2004-03-23 Martin Baulig <martin@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2004-03-23  Martin Baulig  <martin@ximian.com>
2
3         * class.h (MonoDynamicGenericInst): Added `int count_events' and
4         `MonoEvent *events'.
5
6         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
7         (typebuilder_icalls): Added "get_event_info"; calls
8         mono_reflection_event_builder_get_event_info(). 
9
10         * reflection.c (mono_reflection_generic_inst_initialize): Added
11         `MonoArray *events'.
12         (mono_reflection_event_builder_get_event_info): New function.
13
14 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
15
16         * object.h: add mono_type_initialization_init
17
18         * object.c (mono_runtime_class_init): 
19         implement class constructor synchronization rules
20         to cope with threading issues.  
21         add mono_type_initialization_init
22
23         * appdomain.c (mono_runtime_init): call 
24         mono_type_initialization_init
25
26         * class.h: removing initializing field from MonoVTable
27
28 2004-03-23  Martin Baulig  <martin@ximian.com>
29
30         * class.c (my_mono_class_from_generic_parameter): Use
31         `param->name' if it's not NULL. 
32
33 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
34
35         * class.c: do not insert non-virtual methods in the vtable.
36         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
37         that means the method is non-virtual. This never would have
38         happened before.
39
40 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
41
42         * profiler.c: Added lock for accessing coverage_hash.
43
44 2004-03-22  Martin Baulig  <martin@ximian.com>
45
46         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
47         `method->method->signature->generic_param_count != 0' to make it
48         work for interface methods.
49
50 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
51
52         * process.c: quote the string passed to the shell using g_shell_quote.
53
54 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
55
56         * threads.c:
57         (mono_threads_manage): don't remove the finalizer thread and self
58         from the threads hash table so that mono_thread_manage can be called
59         more than once.
60
61 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
62
63         * process.c: quote the arguments when UseShellExecute is true. Fixes
64         bug #55790.
65
66 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
67
68         * threads.c: set mono_thread_detach as a cleanup routine for every
69         thread. This way it's always executed upon thread termination, either
70         aborted or finished normally. No more xsp hangs!
71
72 2004-03-17  Martin Baulig  <martin@ximian.com>
73
74         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
75         `int count_nested' and a `MonoType **nested'.
76
77         * reflection.c (mono_reflection_bind_generic_parameters): Moved
78         most of the functionality into a new static
79         do_mono_reflection_bind_generic_parameters() and don't take a
80         `MonoType *nested_in' argument any more.  Don't compute nested
81         types here.
82         (mono_reflection_generic_inst_get_nested_types): New public method
83         to get nested types.
84
85         * class.c (mono_class_create_generic): Set `klass->nested_in' if
86         we're a nested class.
87
88         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
89         mono_reflection_generic_inst_get_nested_types() to compute the
90         nested types.
91
92 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
93
94         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
95         descriptive error message under windows.
96         
97 2004-03-17  Martin Baulig  <martin@ximian.com>
98
99         * class.c (dup_type): Added `const MonoType *original' argument;
100         copy the attrs from the original type.
101
102 2004-03-17  Martin Baulig  <martin@ximian.com>
103
104         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
105         `m->generic_inst_cache' here.
106
107 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
108
109         * exception.h exception.c: Add stack_overflow_exception.
110
111 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
112
113         * threadpool.c:
114         (overlapped_callback): call SetEvent *after* invoking the callback.
115         No need to call CloseHandle.
116
117 2004-03-16  Martin Baulig  <martin@ximian.com>
118
119         * reflection.c (mono_image_get_fieldref_token): Take a
120         `MonoReflectionField *' instead of a `MonoClassField *' and a
121         `MonoClass *'; store the `MonoReflectionField *' in the hash.
122
123 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
124
125         * appdomain.c: don't add the culture to the filename we're looking for
126         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
127
128 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
129
130         * locales.c: don't ignore symbols when doing case insensitive compares.
131         Thanks Dick! Fixes bug #54046.
132
133         * threads.c: surround 'threads' usage with enter/leave in
134         mono_thread_manage.
135
136 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
137
138         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
139         implicitly marshalled as [Out]. Fixes #55450.
140
141         (mono_marshal_get_runtime_invoke): Zero out the result if there is
142         an exception.
143
144 2004-03-16  Martin Baulig  <martin@ximian.com>
145
146         * class.c (mono_class_from_generic_parameter): Use the actual
147         parameter name. 
148
149 2004-03-16  Martin Baulig  <martin@ximian.com>
150
151         * reflection.c (type_get_signature_size): New static function.
152         Compues the size of the type in a method signature.
153         (method_get_signature_size): New static function; calls
154         type_get_signature_size() to compute the actual size of the
155         method's signature.
156         (method_encode_signature): Use method_get_signature_size() to get
157         the signature's size rather than using `nparams * 10'.
158
159 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
160
161         * file-io.h: define here WapiOverlapped on windows. I don't want the
162         regular OVERLAPPED one.
163
164         * file-io.c:
165         * threadpool.c: somehow, BindIoCompletionCallback is not found.
166         Disabling AIO on windows.
167
168 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
169
170         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
171         bug #55385.
172
173 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
174
175         * appdomain.c: upgraded corlib version.
176
177         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
178         and BeginWrite. Allow opening files for asynchrnous operations.
179
180         * file-io.h: new struct that maps FileStreamAsyncResult.
181         * icall.c: added new icalls.
182         * process.[ch]: support setting child process environment variables
183         and use the SHELL or COMSPEC when UseShellExecute is true.
184
185         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
186         callback for async. IO is here and also BindHandle.
187
188         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
189         from here.
190
191 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
192
193         * reflection.c (create_custom_attr): Allow len == 0.
194
195         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
196         computation on big-endian machines.
197
198 2004-03-13  Martin Baulig  <martin@ximian.com>
199
200         * class.h (MonoGenericInst): Added `int count_ifaces'.
201
202         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
203         `ginst->count_ifaces' instead `klass->interface_count' since we
204         may get called before the vtable is created.
205
206         * loader.c (mono_method_get_param_names): If we're a generic
207         instance, return and don't initialize the class.
208
209         * reflection.c (mono_reflection_setup_generic_class): Don't call
210         ensure_runtime_vtable().
211         (mono_reflection_bind_generic_parameters): Set
212         `ginst->count_ifaces'.
213
214 2004-03-11  Jackson Harper <jackson@ximian.com>
215
216         * icall.c:
217         * unicode.c:
218         * unicode.h: Remove unused System.Char icalls.
219         
220 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
221
222         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
223         code when we P/Invoke the first library in Windows.Forms, instead
224         of when we first open the assembly.
225
226         * assembly.c: Drop the lookup from here.
227
228 2004-03-10  Martin Baulig  <martin@ximian.com>
229
230         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
231         class for properties, fields and events.  Finally fixes #54945.
232
233 2004-03-10  Martin Baulig  <martin@ximian.com>
234
235         * metadata.c (mono_metadata_class_equal): New static function;
236         checks whether two generic instances or two generic parameters are
237         equal.
238         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
239         compare classes.        
240
241 2004-03-10  Martin Baulig  <martin@ximian.com>
242
243         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
244
245         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
246         argument and write it into the `reflection_info' field.
247
248         * icall.c
249         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
250         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
251
252 2004-03-09  Jackson Harper  <jackson@ximian.com>
253
254         * char-conversions.h: use 8 bits for numeric data its all we need
255         * icall.c: numeric data is only 8 bits now.
256
257 2004-03-09  Martin Baulig  <martin@ximian.com>
258
259         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
260
261         * class.c (init_properties, init_events): Initialize the new
262         `parent' field.
263
264         * reflection.c (typebuilder_setup_properties): Likewise.
265         (typebuilder_setup_events): Likewise.
266
267         * reflection.h (MonoEventInfo): Replaced `parent with
268         `declaring_type' and `reflected_type'.
269
270         * icall.c (ves_icall_get_property_info): Distinguish between
271         declaring and reflected type.
272         (ves_icall_get_event_info): Likewise.
273
274 2004-03-09  Martin Baulig  <martin@ximian.com>
275
276         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
277         (ves_icall_Type_GetField): Correctly set field->klass.
278
279 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
280
281         * loader.h: Fix warning.
282
283 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
284
285         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
286         library routine if present.  Notice that it will still continue
287         executing even if its missing, for those working on the Gtk#
288         edition of Windows.Forms.
289
290         * assembly.c (do_mono_assembly_open): If loading the
291         System.Windows.Forms call mono_loader_wini_init.
292
293 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
294
295         * class.h: Added MonoRemoteClass struct.
296         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
297         function for MonoStrings.
298         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
299         Added internal call for getting the proxy type.
300         * marshal.c: Get the type of transparent proxies from its remote_class.
301         Added methods that generate the IL for type checks and casts:
302         mono_marshal_get_isinst, mono_marshal_get_castclass, 
303         mono_marshal_get_proxy_cancast.
304         * marshal.h: Declaration of the previous new methods.
305         * object.c: Added new moethods for creating and updating MonoRemoteClass
306         instances: mono_remote_class, mono_upgrade_remote_class, 
307         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
308         * verify.c: FIx transparent_proxy_fields layout.
309         * appdomain.c: Bump corlib version.
310
311 2004-03-04  Jackson Harper  <jackson@ximian.com>
312
313         * icall.c: Add icall to access char conversion tables.
314         * char-conversions.h: Character conversion tables.
315         * Makefile.am: Add char-conversions.h private header file.
316         
317 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
318
319         * appdomain.c (unload_thread_main): Increase unloading timeout to
320         10 sec as a temporary workaround for Nant problems.
321
322 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
323
324         * gc.c: Add checks for GC_enable and GC_disable.
325
326         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
327         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
328         (bug #54988).
329         
330 2004-02-27  Martin Baulig  <martin@ximian.com>
331
332         * reflection.c (mono_reflection_bind_generic_parameters): Take a
333         `MonoReflectionType *' instead of a `MonoType *'.
334
335 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
336
337         * gc.c (run_finalize): Avoid finalizing the object representing the
338         finalizer thread.
339         (finalizer_thread): Fix warning.
340
341 2004-02-25  Martin Baulig  <martin@ximian.com>
342
343         * class.c (_mono_class_get_instantiation_name): Added `int offset'
344         argument for nested types.
345         (mono_class_create_generic): Added support for nested generictypes.
346
347         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
348         `GList *nested'.
349
350         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
351
352         * reflection.c (method_encode_signature): Increase the minimum
353         value of `size' from 10 to 11.
354         (mono_reflection_bind_generic_parameters): Take `int type_argc'
355         and `MonoType **types' arguments instead of the `MonoArray
356         *types'; added `MonoType *nested_in'.  Recursively instantiate
357         nested classes. 
358
359 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
360
361         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
362         stack_overflow_ex members which are used by exception handling.
363
364         * appdomain.c (mono_runtime_init): Initialize the new members.
365
366         * gc.c (mono_gc_enable): New helper function.
367         * gc.c (mono_gc_disable): New helper function.
368
369 2004-02-23  Martin Baulig  <martin@ximian.com>
370
371         * icall.c: I must have been really stupid - make it actually work
372         this time ;-)
373
374 2004-02-23  Martin Baulig  <martin@ximian.com>
375
376         * loader.c (method_from_memberref): Only inflate the method if
377         it's in another klass.
378
379 2004-02-23  Martin Baulig  <martin@ximian.com>
380
381         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
382         (mono_class_init): If we're a generic instance and an interface,
383         compute `class->interface_id'; also create `class->interfaces'
384         here and inflate them.
385
386         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
387         `ginst->is_open'.
388         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
389
390         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
391
392 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
393
394         * reflection.c (method_encode_code): Improved the error message
395         generated by the exception.
396
397 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
398
399         * icall.c: Martin did not do what he said in the ChangeLog for
400         2004-02-18, but put back the changes for properties and events.
401         Commenting those changes out again and adding comment to bug #54518.
402         
403         * process.c: removed warning.
404
405 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
406
407         * marshal.c (emit_struct_conv): Print an error message instead of
408         asserting when a type does not have the StructLayout attribute.
409
410 2004-02-20  Martin Baulig  <martin@ximian.com>
411
412         * reflection.c (mono_type_get_object): Also use the cache for
413         generic instances.
414         (mono_reflection_bind_generic_parameters): Always compute
415         `ginst->ifaces'.        
416
417 2004-02-20  Martin Baulig  <martin@ximian.com>
418
419         * class.h (MonoGenericMethod): Removed `klass'.
420
421         * class.c (mono_class_inflate_generic_method): Added `MonoClass
422         *klass' argument.
423
424 2004-02-20  Martin Baulig  <martin@ximian.com>
425
426         * reflection.c (method_encode_methodspec): Actually use the
427         uninflated signature for the memberref.
428
429 2004-02-20  Martin Baulig  <martin@ximian.com>
430
431         * class.h (MonoGenericMethod): Removed `declaring'.
432
433         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
434         is NULL, compute it here.
435
436 2004-02-20  Martin Baulig  <martin@ximian.com>
437
438         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
439
440         * metadata.c (mono_metadata_generic_inst_hash): New method.
441         (mono_metadata_generic_inst_equal): New method.
442
443         * reflection.c (mono_reflection_bind_generic_parameters): Use the
444         `klass->image->generic_inst_cache' cache to avoid creating
445         duplicate MonoGenericInst's.
446
447         * class.c (mono_class_inflate_generic_type): Use the cache.
448
449 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
450
451         * object.c: fixed gc descriptor calculation for embedded valuetypes.
452
453 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
454
455         * icall.c: added Socket.WSAIoctl icall.
456
457         * socket-io.[ch]: implemented
458         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
459
460 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
461
462         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
463
464 2004-02-18  Urs C Muff  <umuff@quark.com>
465
466         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
467         this work on PPC and other big-endian architectures.
468
469         * debug-mono-symfile.h: Prepended the names of all the `guint32'
470         fields with an underscore to make sure they're only accessed by
471         the read32() macro.
472
473 2004-02-18  Martin Baulig  <martin@ximian.com>
474
475         * icall.c: Put the klass->refclass changes back for methods and
476         fields, but not for properties and events.  We're currently not
477         distinguishing between DeclaringType and ReflectedType for
478         properties and events, that's what caused the regressions.
479
480 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
481
482         * object.c:
483         (mono_async_result_new): the handle can be NULL.
484
485         * threadpool.c: Use an event instead of a semaphore, don't initialize
486         it until needed. This saves quite a few semaphores from being created
487         when using the threadpool.
488
489 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
490
491         * object.c (mono_string_is_interned_lookup): Fix interning of long
492         strings. Fixes #54473.
493
494         * domain.c (ldstr_equal): Optimize if the two strings are equal.
495
496         * icall.c: Revert the klass->refclass changes since they introduce
497         regressions (bug #54518).
498
499 2004-02-18  Martin Baulig  <martin@ximian.com>
500
501         * class.c (mono_class_init): If we're a generic instance and don't
502         come from a TypeBuilder, inflate our members here.
503         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
504         (mono_class_create_generic): New public method.
505         (mono_class_initialize_generic): Removed.
506         (get_instantiation_name): Renamed to
507         _mono_class_get_instantiation_name() and made it public.
508
509 2004-02-18  Martin Baulig  <martin@ximian.com>
510
511         * class.c (mono_class_inflate_generic_type): Clear the new
512         instance's `nginst->klass' when inflating a generic instance.
513         (mono_class_is_subclass_of): Added (basic) support for generic
514         instances.
515
516 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
517
518         * appdomain.h, domain.c: use a MonoCodeManager instead of a
519         MonoMempool to hold compiled native code.
520
521 2004-02-17  Martin Baulig  <martin@ximian.com>
522
523         * class.h (MonoDynamicGenericInst): Added `count_properties' and
524         `properties'.
525
526         * reflection.c (mono_reflection_generic_inst_initialize): Added
527         `MonoArray *properties' argument.
528
529         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
530
531 2004-02-17  Martin Baulig  <martin@ximian.com>
532
533         * icall.c (ves_icall_Type_GetFields): Renamed to
534         ves_icall_Type_GetFields_internal() and added a
535         `MonoReflectionType *rtype' argument; pass it to
536         mono_field_get_object() to set the field's "reflected" type.
537         (ves_icall_Type_GetConstructors): Likewise.
538         (ves_icall_Type_GetEvents): Likewise.
539         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
540         argument; pass it to mono_method_get_object() to set the method's
541         "reflected" type.       
542
543 2004-02-17  Martin Baulig  <martin@ximian.com>
544
545         * class.h (MonoDynamicGenericInst): New type.
546         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
547
548         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
549         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
550         (ves_icall_MonoGenericInst_GetFields): New interncall.
551
552         * class.c (mono_class_from_generic): Don't call
553         mono_class_initialize_generic() if this is a dynamic instance;
554         ie. it's being created from a TypeBuilder.
555         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
556         `class->byval_arg.type'.
557
558         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
559         to `inflate_method' and made static.
560         (mono_reflection_inflate_field): Removed.
561         (mono_reflection_generic_inst_initialize): New public method.
562
563         * reflection.h (MonoReflectionGenericInst): Removed `methods',
564         `ctors' and `fields'; added `initialized'.
565
566 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
567
568         * debug-helpers.c (mono_method_full_name): Fix output for empty
569         namespaces.
570
571 2004-02-12  Martin Baulig  <martin@ximian.com>
572
573         * class.h (MonoClassField): Added `MonoType *generic_type'.
574
575         * reflection.c (mono_image_get_fieldref_token): Added support for
576         instantiated generic types.
577         (field_encode_inflated_field): Removed.
578         (mono_image_get_inflated_field_token): Removed.
579         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
580
581         * reflection.h (MonoReflectionInflatedField): Removed.
582
583 2004-02-12  Martin Baulig  <martin@ximian.com>
584
585         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
586         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
587
588         * reflection.c (mono_image_get_methodspec_token): Take a
589         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
590         (mono_image_create_token): Check whether we have a
591         `method->signature->gen_method' and call
592         mono_image_get_methodspec_token() if appropriate.
593         (inflated_method_get_object): Removed.
594         (mono_reflection_bind_generic_method_parameters): Return a
595         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
596         (mono_reflection_inflate_method_or_ctor): Likewise.
597
598         * reflection.h (MonoReflectionInflatedMethod): Removed.
599
600 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
601
602         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
603         for custom valuetype marshalling.
604
605         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
606
607 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
608
609         * icall.c: fixed WSAGetLastError_internal name.
610
611 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
612
613         * threads.c (mono_thread_attach): Allow this to be called multiple
614         times for a thread.
615         
616         * threads.c (build_wait_tids): Do not wait for ourselves.
617
618         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
619         appdomain list is empty.
620
621         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
622         memory returned by mono_string_builder_to_utf16, since it points into
623         managed memory. Thanks to Bernie Solomon for noticing this.
624
625         * icall.c: Add AppDomainSetup icalls.
626
627         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
628
629         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
630         types.
631
632         * reflection.c (reflection_methodbuilder_to_mono_method): Save
633         custom attributes to the method_aux struct. Also fix array indexes etc.
634
635         * loader.c (mono_method_get_param_names): Make dynamic case work again.
636         
637 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
638
639         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
640         (both static and runtime) and reduce startup time.
641
642 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
643
644         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
645         AsAny marshalling conversion instead of crashing.
646
647         * marshal.c: Fix warnings.
648
649 2004-02-09  Martin Baulig  <martin@ximian.com>
650
651         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
652
653         * reflection.h (MonoReflectionInflatedMethod): Removed the
654         `declaring' field, it's now in the unmanaged MonoGenericMethod.
655
656         * reflection.c (method_encode_methodspec): Removed the `method'
657         argument; we get it from `gmethod->declaring'.
658         (inflated_method_get_object): Removed the `declaring' argument.
659
660 2004-02-09  Martin Baulig  <martin@ximian.com>
661
662         * class.h (MonoGenericMethod): New type.
663         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
664         `generic_method'.
665
666         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
667         a `MonoGenericMethod *gen_method' one.
668
669         * class.c (mono_class_inflate_generic_type): Take an additional
670         `MonoGenericMethod * argument.  This is only non-NULL if we're
671         inflating types for a generic method.   
672         (mono_class_inflate_generic_signature): Renamed to
673         inflate_generic_signature() and made static; take a
674         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
675         (inflate_generic_header): Take a `MonoGenericMethod *' argument
676         instead of a `MonoGenericInst *' one.
677         (mono_class_inflate_generic_method): Likewise.
678
679         * reflection.c (encode_generic_method_sig): Take a
680         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
681         (method_encode_methodspec): Likewise.
682         (inflated_method_get_object): Likewise. 
683
684         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
685         field with a `MonoGenericMethod *gmethod' one.  
686
687 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
688
689         * class.h (mono_class_has_parent): add parens to expansion
690         so you can ! this.
691
692 2004-02-08  Martin Baulig  <martin@ximian.com>
693
694         * image.h (MonoImage): Removed `generics_cache'.
695
696         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
697         instead of a `MonoType *' argument; removed the `inflate_methods'
698         argument.  Don't inflate methods here.
699
700         * loader.c (find_method): If it's a generic instance, call
701         mono_class_init() on the `sclass->generic_inst->generic_type'.
702
703         * metadata.c (mono_type_size): Make this work on uninitialized
704         generic instances; call it on the `ginst->generic_type's class.
705
706         * reflection.c (mono_reflection_bind_generic_parameters): Call
707         mono_class_from_generic() to create the `ginst->klass'.
708
709 2004-02-08  Martin Baulig  <martin@ximian.com>
710
711         * class.h (MonoClass): Changed type of `generic_inst' from
712         `MonoType *' to `MonoGenericInst *'.
713
714 2004-02-08  Martin Baulig  <martin@ximian.com>
715
716         * icall.c (ves_icall_Type_BindGenericParameters): Just call
717         mono_type_get_object(), this is now creating a `MonoGenericInst'
718         for MONO_TYPE_GENERICINST.
719         (ves_icall_MonoGenericInst_GetParentType): Likewise.
720         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
721
722         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
723         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
724         (inflated_method_get_object): Added `MonoClass *refclass' argument.
725         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
726         and reflected type.
727
728         * reflection.h (MonoReflectionInflatedMethod): Removed
729         `declaring_type' and `reflected_type'.
730
731 2004-02-08  Martin Baulig  <martin@ximian.com>
732
733         * class.h (MonoGenericInst): Added `MonoType *parent' and
734         `MonoType **ifaces'.
735
736         * reflection.h (MonoReflectionGenericInst): Removed `klass',
737         `parent' and `interfaces'.
738
739         * reflection.c (mono_reflection_bind_generic_parameters): Take a
740         `MonoType *' argument and return a `MonoType *'.
741
742         * icall.c
743         (ves_icall_MonoGenericInst_GetParentType): New interncall.
744         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
745
746 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
747
748         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
749         valuetype marshalling.
750
751 2004-02-06  Martin Baulig  <martin@ximian.com>
752
753         * class.c
754         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
755         (my_mono_class_from_generic_parameter): Likewise.
756
757 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
758
759         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
760         contents of the symbol files lazily.
761
762         * object.h (MonoThread): Add 'name' and 'name_len' fields.
763
764         * threads.h threads.c icall.c: New icalls for getting and setting the
765         threads name.
766
767 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
768
769         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
770         Raise an exception when the domain is not found.
771
772 2004-02-03  Martin Baulig  <martin@ximian.com>
773
774         * reflection.c (mono_image_get_methodspec_token): Use the
775         uninflated signature; fixes gen-33.
776
777 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
778
779         * gc.c threads.c: Make the finalizer thread a normal managed thread so
780         the finalizer code can use thread functionality.
781
782         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
783         the finalizer thread.
784
785         * threads.c: Make some functions more robust.
786
787         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
788
789         * metadata.h: Add new marshalling conventions.
790
791         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
792         stringbuilder marshalling. Fixes #53700.
793
794         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
795
796         * reflection.c (mono_image_get_type_info): Save declarative security
797         info.
798
799         * reflection.c (mono_image_get_field_info): Handle uninitialized 
800         unmanaged fields as well.
801
802         * appdomain.c: Bump corlib version.
803
804 2004-02-01  Martin Baulig  <martin@ximian.com>
805
806         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
807         method type arguments.  
808
809 2004-01-30  Duncan Mak  <duncan@ximian.com>
810
811         * marshal.h: Add prototype for
812         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
813         and
814         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
815         fix the build.
816
817 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
818
819         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
820         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
821
822 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
823
824         * marshal.c (mono_marshal_get_native_wrapper): Add support for
825         custom marshalling of valuetypes.
826
827         * marshal.c: Fix some warnings.
828
829 2004-01-29  Martin Baulig  <martin@ximian.com>
830
831         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
832         for generic method parameters.
833
834         * reflection.c (method_encode_methodspec): Write the uninflated
835         signature into the methodspec table.
836         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
837         is always the uninflated method.
838         (reflection_methodbuilder_to_mono_method): Copy the generic
839         parameters from the MethodBuilder into `header->gen_params'.
840
841 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
842
843         * class.c (mono_class_from_generic_parameter): Fix warning.
844
845 2004-01-27  Martin Baulig  <martin@ximian.com>
846
847         * class.c (mono_class_from_generic_parameter): Don't create
848         `klass->methods' here.  
849
850 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
851
852         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
853         extension since it does not work with libraries named lib<FOO>.dll.so.
854
855 2004-01-25  Martin Baulig  <martin@ximian.com>
856
857         * class.c (mono_class_inflate_generic_type): Added support for
858         MONO_TYPE_GENERICINST.
859
860         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
861         inflate methods on open constructed types.      
862
863 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
864
865         * object.c: fire ProcessExit event in the root AppDomain after running
866         Main. Fixes bug #53299.
867
868 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
869
870         * socket-io.c: include the new socket-wrappers.h header.
871         Use the wrappers instead of the unix socket functions to make the code
872         more clear.
873
874 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
875
876         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
877
878         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
879         Fixes #22532.
880
881 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
882
883         * reflection.c (mono_image_create_pefile): Handle the case when the
884         entry point is not a MethodBuilder.
885
886         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
887         field to ReflectionMethod since it is not allways a builder.
888
889         * reflection.c (type_get_fully_qualified_name): New helper function to
890         return the fully qualified name of a type.
891
892         * reflection.c (encode_marshal_blob): Always emit the fully qualified
893         type name for custom marshallers.
894
895         * reflection.c (mono_marshal_spec_from_builder): Ditto.
896
897         * class.c (mono_class_setup_vtable): If a parent class already 
898         implements an interface, use the implementing methods from that class.
899         Fixes #53148.
900
901 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
902
903         * threadpool.c: just return instead of ExitThread to allow for thread
904         clean up earlier.
905
906 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
907
908         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
909         when closing resource modules.
910
911         * reflection.c (mono_image_create_pefile): Handle the case when the
912         entry point is not a MethodBuilder.
913
914         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
915         field to ReflectionMethod since it is not allways a builder.
916
917 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
918
919         * marshal.c (mono_marshal_get_managed_wrapper): 
920         mono_marshal_alloc takes native int so CONV_I
921         the arg for 64bits.
922
923 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
924
925         * reflection.c (fixup_cattrs): New function to fixup the methoddef
926         tokens in the cattr table. Fixes #53108.
927
928 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
929
930         * loader.c: don't trim ".dll" before looking up in the config file.
931         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
932
933 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
934
935         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
936         Return the module which contains the resource as well.
937         (ves_icall_System_Reflection_Module_Close): New icall.
938
939         * appdomain.c: Bump corlib version number.
940
941         * image.c (mono_image_addref): New public function.
942
943         * assembly.c: Call mono_image_addref.
944
945         * reflection.c (mono_module_get_object): Increase reference count of 
946         the image.
947
948         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
949         Fixes #22532.
950
951         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
952         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
953         proper exceptions on DllImport problems.
954
955 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
956
957         * class.c, metadata.c: eliminate CSIZE macro.
958
959 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
960
961         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
962         * object.h: Added async_callback field in MonoAsyncResult.
963         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
964         * verify.c: Added async_callback in MonoAsyncResult layout.
965
966 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
967
968         * reflection.c (mono_reflection_get_custom_attrs): Add support
969         for Modules.
970
971 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
972
973         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
974         marshalling.
975         (mono_marshal_method_from_wrapper): Add null pointer check.
976
977 2004-01-16  Martin Baulig  <martin@ximian.com>
978
979         * debug-mono-symfile.h: Set version number to 36 and reflect
980         latest symbol writer changes.
981
982 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
983
984         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
985         multi-dimensional arrays.
986         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
987         (mono_class_from_mono_type): Use bounded_array_class_get.
988         
989         * class.c (mono_bounded_array_class_get): New function which takes
990         a 'bounded' bool argument to distinguish vectors from one dimensional
991         arrays.
992
993         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
994         bounded_array_class_get if the array has bounds.
995
996         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
997         Search modules loaded using AssemblyBuilder:AddModule as well.
998
999 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1000
1001         * appdomain.c: increased corlib version.
1002         * filewatcher.c: removed g_print.
1003         * icall.c:
1004         (get_property_info): only allocate what is actually requested.
1005         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
1006
1007 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1008
1009         * Makefile.am: added filewatcher.[ch]
1010         * filewatcher.[ch]: FileSystemWatcher runtime support.
1011         * icall.c: added new FSW icalls.
1012
1013 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
1014
1015         * string-icalls.c: fix stringbuilder regression as suggested by
1016         Iain McCoy <iain@mccoy.id.au>.
1017
1018 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
1019
1020         * process.c (process_read_stringtable_block): Recognize '007f' as
1021         a language neutral stringtable block.
1022
1023 2004-01-12  Patrik Torstensson
1024
1025         * object.h (MonoStringBuilder) : Changed layout to support our
1026         new stringbuilder class.
1027         * marshal.c: Change marshalling to support the new layout of 
1028         string builder.
1029         * appdomain.c: increased version number because new layout of
1030         string builder.
1031
1032 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
1033
1034         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
1035         assembly name as an string instead of an AssemblyName, since it is
1036         easier to extract info from it.
1037
1038         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
1039         the culture subdirectories too. Fixes #52231.
1040
1041 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1042
1043         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
1044         It takes 2 new parameters with an optional name for the method to look
1045         for and case ignoring info.
1046
1047         * threadpool.c: removed unused variable.
1048
1049 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1050
1051         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
1052         It takes 2 new parameters with an optional name for the property to look
1053         for and case ignoring info.
1054         Fixes bug #52753.
1055
1056 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
1057
1058         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
1059         Fix #52451.
1060
1061 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1062
1063         * appdomain.c:
1064         * assembly.c: escape the uri before passing it to g_filename_from_uri.
1065         Fixes bug #52630.
1066
1067 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
1068
1069         * reflection.c: Add support for more than one unmanaged resource.
1070
1071         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
1072         in field->def_value, as done in all other cases.
1073
1074         * reflection.c (mono_reflection_get_custom_attrs): Add support for
1075         TypeBuilders.
1076
1077         * reflection.c (mono_reflection_create_runtime_class): Remove 
1078         errorneous assignment to klass->element_class, since it is already
1079         done in mono_reflection_setup_internal_class.
1080
1081 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1082
1083         * gc.c: added missing LeaveCriticalSection.
1084         * icall.c: indented a couple of lines.
1085         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
1086         if we call EndInvoke inside a callback. Fixes bug #52601.
1087
1088 2004-01-07  Martin Baulig  <martin@ximian.com>
1089
1090         * mono-debug-debugger.h
1091         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
1092
1093 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
1094
1095         * appdomain.c: Use messages in NotImplementedException.
1096
1097         * exception.c (mono_get_exception_not_implemented): Now this takes
1098         a message argument.
1099
1100         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
1101         exception instead of g_asserting an aborting when something is not
1102         implemented.
1103
1104         Add some inline docs.
1105
1106 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
1107
1108         * reflection.h: Update after changes to object layout.
1109
1110         * reflection.c: Implement saving of unmanaged aka win32 resources.
1111
1112         * appdomain.c: Bump version number.
1113
1114         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
1115         Handle missing domains gracefully.
1116
1117 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
1118
1119         * file-io.c : On Windows, there are much more invalid_path_chars.
1120
1121 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
1122
1123         * class.h, object.c: prepare for GetType () speedup.
1124
1125 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
1126
1127         * profiler.c: workaround for --profile null reference exception on
1128           cygwin. Patch by Patrik Torstensson.
1129
1130 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
1131
1132         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
1133         make work for unaligned access.
1134
1135 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
1136
1137         * class.c: small cleanup (class->fields [i] -> field).
1138         * image.c: check address of metadata is valid.
1139
1140 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
1141
1142         * assembly.h assembly.c (mono_assembly_loaded): New public function to
1143         search the list of loaded assemblies.
1144
1145         * reflection.c (mono_reflection_type_from_name): Use 
1146         mono_assembly_loaded instead of mono_image_loaded.
1147
1148         * reflection.c: Fix warnings.
1149
1150 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
1151
1152         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
1153         is dynamic. This is needed since an assembly can contain both dynamic and
1154         non-dynamic images.
1155
1156         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
1157         assembly->dynamic.
1158
1159         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
1160
1161         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
1162         to store modules loaded using AddModule.
1163
1164         * reflection.c (mono_image_fill_file_table): Generalize this so it works
1165         on Modules.
1166
1167         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
1168
1169         * reflection.c (mono_image_fill_export_table_from_module): New function to
1170         fill out the EXPORTEDTYPES table from a module.
1171
1172         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
1173         into a separate function. Also handle loaded non-dynamic modules.
1174
1175         * reflection.c (mono_image_basic_init): Fix memory allocation.
1176
1177         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1178
1179         * assembly.c (mono_assembly_load_references): Make this public.
1180
1181 2003-12-19  Martin Baulig  <martin@ximian.com>
1182
1183         * class.c (mono_class_initialize_generic): Made this static, take
1184         a `MonoGenericInst *' instead of a `MonoClass *'.
1185         (mono_class_from_generic): Call mono_class_initialize_generic()
1186         unless we're already initialized or being called from
1187         do_mono_metadata_parse_generic_inst().
1188
1189         * class.h (MonoGenericInst): Added `initialized' and
1190         `init_pending' flags.
1191
1192         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
1193         `mono_class_init (gklass)' or mono_class_initialize_generic()
1194         here; set `generic_inst->init_pending' while parsing the
1195         `type_argv'.
1196
1197 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
1198
1199         * locales.c: include string.h for memxxx prototypes
1200
1201 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
1202
1203         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
1204         constructor when accessing literal fields.
1205
1206 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
1207
1208         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1209
1210         * reflection.c (assembly_add_resource_manifest): New function to fill
1211         the MANIFESTRESOURCE table.
1212
1213         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
1214
1215         * reflection.h: Update to changes in class layout.
1216
1217         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
1218         Reenable call to mono_runtime_is_shutting_down ().
1219
1220         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
1221         determine if the runtime is shutting down.
1222
1223 2003-12-16  Jackson Harper <jackson@ximian.com>
1224
1225         * icall.c: comment out call to mono_runtime_is_shutting_down to
1226         fix build.
1227         
1228 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
1229
1230         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
1231         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
1232
1233 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
1234
1235         * reflection.c: move definition of swap_with_size
1236         to before its first call
1237
1238 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
1239
1240         * appdomain.c (mono_runtime_is_shutting_down): New public function.
1241
1242         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
1243         icall.
1244
1245         * object.c: Fix warnings.
1246
1247         * icall.c (ves_icall_Type_Get...): Only consider inherited static
1248         members if FlattenHierarchy is set.
1249
1250         * reflection.c (mono_image_add_decl_security): New function to emit
1251         declarative security.
1252
1253         * reflection.h reflection.c: Add support for declarative security.
1254
1255         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
1256         
1257 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
1258
1259         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
1260         
1261         * appdomain.c verify.c: Moved corlib version checking into its own
1262         function in appdomain.c since it needs to create vtables etc.
1263
1264 2003-12-13  Patrik Torstensson <p@rxc.se>
1265
1266         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
1267         instead of unwrapped server.
1268
1269 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
1270
1271         * verify.c (check_corlib): Fix field index.
1272
1273 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
1274
1275         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
1276         GetGacPath icall.
1277
1278 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
1279
1280         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
1281         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
1282         cope with sizeof(size_t) != sizeof(guint32).
1283
1284 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1285
1286         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
1287         in case of failure.
1288
1289 2003-12-10  Mark Crichton <crichton@gimp.org>
1290
1291         * icall.c: removed the GetNonZeroBytes.  We now handle this case
1292         in managed code.
1293
1294         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
1295
1296 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
1297
1298         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
1299         marked as deleted.
1300
1301 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
1302
1303         * verify.c (check_corlib): Handle the case when the version field is 
1304         initialized by a static constructor.
1305
1306 2003-12-08  Patrik Torstensson  <p@rxc.se>
1307
1308     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
1309
1310 2003-12-08  Martin Baulig  <martin@ximian.com>
1311
1312         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
1313         a MonoReflectionGenericParameter, also take the parameter index
1314         and name as arguments.
1315         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
1316         (ves_icall_MonoGenericParam_initialize): New interncall.
1317         (ves_icall_Type_make_byref_type): New interncall.
1318
1319         * reflection.h (MonoReflectionGenericParam): Derive from
1320         MonoReflectionType, not just from MonoObject.  Added `refobj' and
1321         `index' fields.
1322
1323         * reflection.c (mono_reflection_define_generic_parameter): Create
1324         and return a new MonoReflectionGenericParam; don't initialize the
1325         constraints here.
1326         (mono_reflection_initialize_generic_parameter): New public method;
1327         initializes the constraints and creates the `param->pklass'.
1328
1329 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
1330
1331         * reflection.h reflection.c: Use the new fields 'num_types', 
1332         'num_fields' and 'num_methods' to track the number of types etc.
1333
1334         * verify.c (check_corlib): Check corlib version number.
1335
1336 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
1337
1338         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
1339         function works on all methods.
1340
1341 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
1342
1343         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
1344         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
1345         the custom_type_info flag of the transparent proxy.
1346         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
1347         objects that supports IRemotingTypeInfo.
1348         * object.h: Added custom_type_info field in transparent proxy.
1349
1350 2003-12-06  Martin Baulig  <martin@ximian.com>
1351
1352         * class.c (mono_class_create_from_generic): Removed.
1353         (mono_class_from_generic): Check `ginst->klass' before doing
1354         anything else.  This is important to fully support "recursive"
1355         generic types.
1356
1357         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
1358         empty `generic_inst->klass' before doing anything else.
1359
1360 2003-12-06  Dick Porter  <dick@ximian.com>
1361
1362         * verify.c: 
1363         * object.h:
1364         * icall.c:
1365         * locales.c: Use C structs to access class fields.  Don't do a
1366         conversion between MonoString and UChar because both are
1367         platform-endian UTF-16.  Compare now takes startindex and count
1368         parameters.  Add a char overload for IndexOf.  Speed up the
1369         invariant string IndexOf.
1370
1371 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
1372
1373         * Makefile.am (monosn_LDADD): Fix parallel build.
1374
1375 2003-12-04  Martin Baulig  <martin@ximian.com>
1376
1377         * icall.c
1378         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
1379         (ves_icall_Type_make_array_type): New interncall.       
1380
1381 2003-12-04  Martin Baulig  <martin@ximian.com>
1382
1383         * locales.c: also change it in the !HAVE_ICU case.
1384
1385 2003-12-04  Dick Porter  <dick@ximian.com>
1386
1387         * icall.c:
1388         * locales.c: construct_compareinfo is now in CompareInfo, not
1389         CultureInfo.
1390
1391 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
1392
1393         * image.c (mono_image_load_file_for_image): Cache loaded images in the
1394         image->files array.
1395
1396         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
1397         table as well.
1398
1399         * assembly.c (mono_assembly_load_references): Only load references
1400         once.
1401
1402         * class.c (mono_class_from_name): Avoid linear search of the 
1403         EXPORTEDTYPE table.
1404
1405         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
1406
1407 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
1408
1409         * image.h (MonoImage): Add 'field_cache' field.
1410
1411         * loader.c (mono_field_from_token): Cache field lookups.
1412         
1413         * reflection.c (mono_module_get_object): Fix name property.
1414
1415         * icall.c (ves_icall_get_enum_info): Update after changes to 
1416         mono_metadata_get_constant_index ().
1417
1418         * icall.c: Get rid of get_type_info icall, use a separate icall for
1419         each type property to avoid needless memory allocations. Fixes #51514.
1420
1421         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
1422         to avoid needless binary searches.
1423
1424         * class.c (class_compute_field_layout): Move the initialization of
1425         field->def_value to mono_class_vtable ().
1426
1427         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
1428         non-corlib types.
1429
1430         * object.c (mono_object_allocate): Make it inline.
1431
1432         * object.c (mono_object_allocate_spec): Make it inline.
1433         
1434 2003-12-02  Dick Porter  <dick@ximian.com>
1435
1436         * locales.c (create_NumberFormat): NumberFormatInfo construction.
1437         Patch by Mohammad DAMT (mdamt@cdl2000.com).
1438
1439 2003-12-01  Dick Porter  <dick@ximian.com>
1440
1441         * threads.c: Fix signature and call in CreateMutex and
1442         CreateEvent.
1443
1444 2003-12-01  Dick Porter  <dick@ximian.com>
1445
1446         * icall.c: 
1447         * locales.c: Implement string compares and searching
1448
1449         * object.h: Add extra Thread field
1450
1451 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
1452
1453         * reflection.c (fixup_method): Add support for MonoCMethod.
1454
1455 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
1456
1457         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
1458
1459         * reflection.c (assembly_name_to_aname): Allow extra characters in
1460         assembly names. Fixes #51468.
1461
1462 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
1463
1464         * exception.c (mono_exception_from_name_domain): New helper function.
1465
1466         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
1467         exception object in the correct domain.
1468
1469         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
1470         formatting + make a copy a the input data.
1471
1472         * loader.c (mono_get_method_from_token): Methods which contain
1473         native code do not have entries in the ImplMap.
1474
1475         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
1476         Thanks to Gonzalo for spotting this.
1477         
1478         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
1479         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
1480
1481         * assembly.h (mono_assembly_load_from): Split the second part of 
1482         assembly loading into a new public function.
1483
1484         * exception.h (mono_get_exception_bad_image_format): New function.
1485
1486 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
1487
1488         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
1489         Enumerate all modules inside a dynamic assembly. Fixes #51293.
1490         
1491         * icall.c: Add new icall for creating dynamic methods.
1492
1493         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
1494
1495         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
1496
1497         * reflection.c (mono_reflection_create_dynamic_method): New icall to
1498         create a dynamic method.
1499
1500         * reflection.c (resolve_object): New helper function.
1501
1502         * reflection.c: Generalize ReflectionMethodBuilder and the functions
1503         which manipulate it so they can also work on dynamic methods.
1504
1505         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
1506         creating the MonoReflectionMethodAux structure if it is not needed.
1507         
1508         * reflection.h verify.c: Update after changes to object layout.
1509
1510         * reflection.c (method_builder_encode_signature): Fix compilation on
1511         gcc 2.95.x.
1512
1513 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
1514
1515         * appdomain.h: Added support for context static fields. Added static_data
1516           field to MonoAppContext and renamed thread_static_fields to a more
1517           generic special_static_fields in MonoAppDomain, since it can now contain
1518           context static fields.
1519         * domain.c: Updated hashtable name.
1520         * object.c: Replaced field_is_thread_static() for a more generic
1521           field_is_special_static() which also checks for context static attribute.
1522           In mono_class_vtable(), added support for static context fields.
1523         * threads.c: Changed methods that manage thread static fields to more
1524           generic methods so they can be reused both for thread and context static
1525           data.
1526         * threads.h: Declared some new methods.
1527
1528 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
1529
1530         * reflection.h: Update after changes to the managed types.
1531
1532         * reflection.c (encode_custom_modifiers): New helper function.
1533
1534         * reflection.c (method_encode_signature): Emit custom modifiers.
1535
1536         * reflection.c (field_encode_signature): Emit custom modifiers.
1537
1538 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
1539
1540         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
1541
1542         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
1543         implementation.
1544
1545         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
1546         icall.
1547
1548         * object.c (mono_field_get_value_object): New function.
1549
1550         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
1551         specific.
1552
1553 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
1554
1555         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
1556         return a preallocated out-of-memory exception instance.
1557
1558         * object.c (out_of_memory): Use the new function.
1559
1560         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
1561         flag is before the custom modifiers. Fixes #49802.
1562
1563 2003-11-16  Martin Baulig  <martin@ximian.com>
1564
1565         * class.c (mono_class_is_open_constructed_type): Implemented the
1566         MONO_TYPE_GENERICINST case.
1567
1568 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
1569
1570         * assembly.c (mono_assembly_fill_assembly_name): New function to
1571         fill out the MonoAssemblyName structure.
1572         (mono_assembly_open): Use the new function.
1573
1574         * icall.c (fill_reflection_assembly_name): New helper function.
1575
1576         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
1577         new function.
1578
1579         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
1580
1581 2003-11-15  Martin Baulig  <martin@ximian.com>
1582
1583         * class.c (mono_class_is_open_constructed_type): New public
1584         function; checks whether a type is an open constructed type,
1585         ie. whether it still contains type parameters.
1586         (mono_class_inflate_generic_type): If we're a type parameter and
1587         the inflated type is also a MONO_TYPE_(M)VAR, return the original
1588         type.
1589
1590         * class.h (MonoGenericInst): Added `guint32 is_open'.
1591
1592         * loader.c (method_from_methodspec): Check whether we're an open
1593         or closed constructed type and set `ginst->is_open'.
1594
1595         * reflection.c (mono_reflection_bind_generic_parameters): Check
1596         whether we're an open or closed constructed type and set
1597         `ginst->is_open'.
1598         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
1599         from open constructed types.
1600
1601 2003-11-15  Martin Baulig  <martin@ximian.com>
1602
1603         * reflection.c (mono_reflection_bind_generic_parameters): If we're
1604         a generic instance (instead of a generic type declaration) with
1605         unbound generic parameters, bind them to our actual types.
1606
1607 2003-11-14  Martin Baulig  <martin@ximian.com>
1608
1609         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
1610
1611         * reflection.c (mono_reflection_bind_generic_parameters): If we're
1612         an interface type, populate `res->interfaces' with instantiated
1613         versions of all the interfaces we inherit.
1614
1615 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
1616
1617         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
1618         when MONO_PATH is set but doesn't contain the install dir.
1619
1620 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1621
1622         * icall.c:
1623         (ves_icall_Type_GetInterfaces): don't return an interface twice when
1624         it's also implemented in base classes. Fixes bug #50927.
1625
1626 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
1627
1628         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
1629         if this method is called from a finalizer. Fixes #50913.
1630
1631 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
1632
1633         * threads.c: Implement VolatileRead/VolatileWrite
1634
1635         * icall.c: Add new icalls for VolatileRead/VolatileWrite
1636
1637 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
1638
1639         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
1640         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
1641         2.95.3.
1642
1643         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
1644         from Peter Ross (pro@missioncriticalit.com).
1645         
1646 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
1647
1648         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
1649
1650 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
1651
1652         * assembly.c (mono_assembly_load_references): Disable check because it
1653         triggers on older corlibs which lots of people have.
1654
1655 2003-11-12  Jackson Harper  <jackson@ximian.com>
1656
1657         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
1658         load corlib.dll if mscorlib.dll is not found.
1659         * assembly.h: Remove corlib name define.
1660         * class.c:
1661         * domain.c:
1662         * image.c: Change corlib name to mscorlib.
1663         
1664 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
1665
1666         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
1667
1668 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
1669
1670         * appdomain.h: Added loader_optimization here to sync with the C#
1671         code, and add disallow_binding_redirects field.
1672
1673 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
1674
1675         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
1676
1677         * reflection.c (mono_image_build_metadata): Fix crash on modules
1678         with no types.
1679
1680         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
1681
1682         * icall.c (ves_icall_get_method_info): Return callingConvention as
1683         well.
1684
1685         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
1686         namespaces from the EXPORTEDTYPE table as well.
1687
1688         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
1689         from all modules inside the assembly.
1690         
1691 2003-11-11  Martin Baulig  <martin@ximian.com>
1692
1693         * reflection.c (mono_reflection_bind_generic_parameters): Make
1694         this work for interfaces.
1695
1696 2003-11-11  Martin Baulig  <martin@ximian.com>
1697
1698         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
1699
1700 2003-11-11  Martin Baulig  <martin@ximian.com>
1701
1702         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
1703         "MonoInflatedMethod" and "MonoInflatedCtor".
1704
1705 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
1706
1707         * reflection.c (resolution_scope_from_image): Use the assembly table
1708         from the manifest module, since other modules don't have it.
1709
1710         * debug-helpers.c (mono_type_full_name): New helper function.
1711
1712         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
1713
1714         * image.c (mono_image_load_file_for_image): New public function which
1715         is a replacement for the load_file_for_image in class.c.
1716
1717         * assembly.c (mono_assembly_load_module): A wrapper for the function
1718         above which does assembly association and reference loading too.
1719
1720         * class.c (mono_class_from_name): Call mono_assembly_load_module.
1721
1722 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1723
1724         * appdomain.c: not all of the attributes for the full assembly name
1725         are required and the order doesn't matter. Fixes bug #50787.
1726
1727 2003-11-10  Dick Porter  <dick@ximian.com>
1728
1729         * locales.c: Use platform-endian UTF16
1730
1731 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
1732
1733         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
1734         
1735 2003-11-10  Martin Baulig  <martin@ximian.com>
1736
1737         * metadata.c
1738         (mono_metadata_load_generic_params): Make this actually work.
1739
1740         * reflection.c (mono_reflection_bind_generic_parameters): If our
1741         parent is a generic instance, pass all the `types' to it, no
1742         matter whether it has the same number of type parameters or not.
1743
1744 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
1745
1746         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
1747
1748         * assembly.c (mono_assembly_load_references): Move the image<->assembly
1749         assignment code to this function so it gets called recursively for all
1750         modules.
1751
1752         * image.c (load_modules): Remove the assembly assignment since it is
1753         now done by mono_assembly_load_references.
1754         
1755         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
1756         Add 'module' argument.
1757         (mono_module_get_types): New helper function.
1758         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
1759
1760 2003-11-08  Martin Baulig  <martin@ximian.com>
1761
1762         * class.c (mono_class_inflate_generic_method): Interface method
1763         don't have a header.
1764
1765         * reflection.c (mono_image_get_methodspec_token): Take an
1766         additional `MonoGenericInst *' argument instead of reading it from
1767         the header; this is necessary to support interfaces.
1768         (mono_image_create_token): Pass the `MonoGenericInst *' from the
1769         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
1770         (inflated_method_get_object): Take an additional `MonoGenericInst *'
1771         argument.
1772
1773         * reflection.h (MonoReflectionInflatedMethod): Added
1774         `MonoGenericInst *ginst'.
1775
1776 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
1777
1778         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
1779
1780 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
1781
1782         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
1783
1784 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
1785
1786         * reflection.c 
1787         (reflection_methodbuilder_from_method_builder):
1788         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
1789         initialize a ReflectionMethodBuilder structure.
1790         (mono_image_get_methodbuilder_token):
1791         (mono_image_get_ctorbuilder_token): New functions to emit memberref
1792         tokens which point to types in another module inside the same assembly.
1793
1794         * reflection.c: Use the new helper functions.
1795         
1796         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
1797
1798         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
1799         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
1800
1801         * reflection.c (resolution_scope_from_image): Emit a moduleref if
1802         neccesary.
1803
1804         * reflection.c (mono_image_build_metadata): Emit metadata only for the
1805         current module. Emit the manifest only for the main module.
1806
1807         * reflection.c (mono_image_create_token): Add assertion when a 
1808         memberref needs to be created.
1809
1810         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
1811
1812         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
1813         larger buffer for the custom attribute blob. Fixes #50637.
1814         
1815 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1816
1817         * threadpool.c: notify listener on async processing handles after
1818         invoking the async callback. Thanks to Zoltan.
1819
1820 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
1821
1822         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
1823         avoid code duplication.
1824
1825         * reflection.h (MonoDynamicImage): New type which is currently unused,
1826         but will be used through the ref.emit code in place of 
1827         MonoDynamicAssembly.
1828
1829         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
1830         object layout.
1831
1832         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
1833         a MonoDynamicImage instead of just a MonoImage.
1834         
1835         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
1836         icalls to ModuleBuilder but keep their semantics, so they will work
1837         with moduleb->assemblyb. This will change later.
1838         
1839 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
1840
1841         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
1842         object layout.
1843
1844         * reflection.c (mono_image_build_metadata): Avoid creation of a default
1845         main module, since it is now done by the managed code.
1846
1847 2003-11-03  Martin Baulig  <martin@ximian.com>
1848
1849         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
1850         `ginst->klass' here.
1851         (method_encode_methodspec): Don't use the `ginst->generic_method's
1852         klass if it's a generic instance, use `ginst->klass' in this case.
1853
1854 2003-11-03  Martin Baulig  <martin@ximian.com>
1855
1856         * reflection.c (mono_image_get_generic_method_param_info):
1857         Removed, use mono_image_get_generic_param_info() instead.
1858         (mono_image_get_type_info): Write the GenericParam table before
1859         the Method table.  This is neccessary because in the GenericParam
1860         table, type parameters of the class (ie. '!0' etc.) must come
1861         before the ones from its generic methods (ie. '!!0' etc).
1862
1863 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
1864
1865         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
1866
1867 2003-11-02  Martin Baulig  <martin@ximian.com>
1868
1869         * reflection.c (create_generic_typespec): Take a
1870         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
1871         the generic parameters from it.
1872
1873 2003-11-02  Martin Baulig  <martin@ximian.com>
1874
1875         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
1876         instead of a `MonoClassField *' since we just need the type.
1877         (create_generic_typespec): New static function.  Creates a
1878         TypeSpec token for a generic type declaration.
1879         (mono_image_get_generic_field_token): New static function.
1880         (mono_image_create_token): If we're a FieldBuilder in a generic
1881         type declaration, call mono_image_get_generic_field_token() to get
1882         the token.
1883
1884 2003-11-02  Martin Baulig  <martin@ximian.com>
1885
1886         * reflection.h
1887         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
1888         `MonoReflectionGenericInst *declaring_type' and
1889         `MonoReflectionGenericInst *reflected_type' fields.
1890
1891         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
1892         `MonoReflectionGenericInst *declaring_type' and a
1893         `MonoReflectionGenericInst *reflected_type' argument instead of a
1894         single `MonoReflectionGenericInst *type' one.  Set
1895         `res->declaring_type' and `res->reflected_type' from them.
1896         (mono_reflection_inflate_field): Likewise.      
1897
1898 2003-11-02  Martin Baulig  <martin@ximian.com>
1899
1900         * class.c (mono_class_setup_vtable): Don't store generic methods
1901         in the vtable.  
1902
1903 2003-11-02  Martin Baulig  <martin@ximian.com>
1904
1905         * reflection.h (MonoReflectionGenericInst): Added
1906         `MonoReflectionType *declaring_type'.
1907
1908         * reflection.c (mono_reflection_bind_generic_parameters): Use
1909         `if (tb->parent)' instead of `klass->parent'.
1910
1911 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
1912
1913         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
1914         with an empty ASSEMBLY table.
1915
1916         * reflection.c (mono_image_build_metadata): Avoid using the same loop
1917         variable in the inner and outer loops.
1918
1919 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
1920
1921         * metadata.h (mono_metadata_make_token): Put parentheses around macro
1922         argument.
1923
1924         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
1925         
1926         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
1927         icalls. Instead, do everything in managed code. This is needed since
1928         it is hard to restore the original domain etc. in unmanaged code in the
1929         presence of undeniable exceptions.
1930
1931         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
1932         New icalls to push and pop appdomain refs.
1933
1934 2003-10-31  Martin Baulig  <martin@ximian.com>
1935
1936         * class.c (inflate_generic_type): Renamed to
1937         mono_class_inflate_generic_type() and made it public.
1938
1939         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
1940         New interncall.
1941
1942         * loader.c (mono_field_from_memberref): Also set the retklass for
1943         typespecs.
1944
1945         * fielder.c (mono_image_get_inflated_field_token): New static
1946         method; creates a metadata token for an inflated field.
1947         (mono_image_create_token, fixup_method): Added support for
1948         "MonoInflatedField".
1949         (fieldbuilder_to_mono_class_field): New static function.
1950         (mono_reflection_inflate_field): New public function.
1951
1952         * reflection.h
1953         (MonoReflectionGenericInst): Added `MonoArray *fields'.
1954         (MonoReflectionInflatedField): New typedef.     
1955
1956 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
1957
1958         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
1959         for Solaris and other platforms without s6_addr16
1960
1961 2003-10-30  Martin Baulig  <martin@ximian.com>
1962
1963         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
1964         argument instead of two.
1965         (mono_class_inflate_generic_signature): Likewise.
1966         (inflate_generic_header): Likewise.
1967         (mono_class_inflate_generic_method): Likewise.  In addition, if
1968         `ginst->klass' is set, it becomes the new `method->klass'.
1969
1970         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
1971         field.
1972
1973         * reflection.c (encode_generic_method_sig): Write a 0xa as the
1974         first byte. [FIXME]
1975         (method_encode_methodspec): If we have generic parameters, create
1976         a MethodSpec instead of a MethodRef.
1977         (fixup_method): Added support for "MonoInflatedMethod" and
1978         "MonoInflatedCtor".
1979         (mono_image_create_token): Added support for "MonoInflatedMethod"
1980         and "MonoInflatedCtor".
1981         (inflated_method_get_object): New static function; returns a
1982         managed "System.Reflection.MonoInflatedMethod" object.
1983         (mono_reflection_bind_generic_method_parameters): Return a
1984         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
1985         (mono_reflection_inflate_method_or_ctor): Likewise.
1986         (mono_image_get_generic_method_param_info): Initialize unused
1987         fields to zero.
1988         (mono_image_get_generic_param_info): Likewise.
1989
1990         * reflection.h (MonoReflectionInflatedMethod): New public
1991         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
1992         "S.R.MonoInflatedCtor" classes.
1993
1994         * loader.c (method_from_memberref): If we're a TypeSpec and it
1995         resolves to a generic instance, inflate the method.
1996
1997 2003-10-28  Dick Porter  <dick@ximian.com>
1998
1999         * object.c (mono_runtime_run_main): Convert command-line arguments
2000         into utf8, falling back to the user's locale encoding to do so.
2001
2002 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
2003
2004         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
2005         at this time.
2006
2007         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
2008
2009         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
2010         up icalls at method definition time. Partially fixes #33569.
2011
2012 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
2013
2014         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
2015         marshalling of arrays. Fixes #50116.
2016
2017         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
2018
2019         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
2020         points to a vtable in the dying appdomain.
2021
2022         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
2023         listeners into unmanaged code inside the lock.
2024
2025         * object.c (mono_class_vtable): Turn off typed allocation in non-root
2026         domains and add some comments.
2027
2028 2003-10-25  Martin Baulig  <martin@ximian.com>
2029
2030         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
2031
2032         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
2033
2034         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
2035         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
2036         currently parsing.  Create the generic class and store it in
2037         `generic_inst->klass' before parsing the type arguments.  This is
2038         required to support "recursive" definitions; see mcs/tests/gen-23.cs
2039         for an example.
2040         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
2041         to support recursive typespec entries.
2042
2043         * class.c (mono_class_setup_parent): If our parent is a generic
2044         instance, we may get called before it has its name set.
2045         (mono_class_from_generic): Splitted into
2046         mono_class_create_from_generic() and mono_class_initialize_generic().
2047
2048 2003-10-25  Martin Baulig  <martin@ximian.com>
2049
2050         * icall.c (ves_icall_Type_BindGenericParameters): Return a
2051         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
2052         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
2053         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
2054
2055         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
2056         (create_typespec): Likewise.
2057         (mono_reflection_bind_generic_parameters): Return a
2058         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
2059         (mono_reflection_inflate_method_or_ctor): New public function.
2060
2061         * reflection.h (MonoReflectionGenericInst): New typedef.        
2062
2063 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
2064
2065         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
2066         inside the domain lock. Fixes #49993.
2067         
2068         * object.c (mono_class_vtable): When typed allocation is used, 
2069         allocate vtables in the GC heap instead of in the mempool, since the
2070         vtables contain GC descriptors which are used by the collector even
2071         after the domain owning the mempool is unloaded.
2072
2073         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
2074
2075         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
2076         reflect what it does. Also invalidate mempools instead of freeing
2077         them if a define is set.
2078
2079         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
2080         of the appdomain.
2081         
2082         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
2083         hold the finalizable objects in this domain.
2084
2085         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
2086         appdomain.
2087
2088         * appdomain.c (mono_domain_set): New function to set the current
2089         appdomain, but only if it is not being unloaded.
2090
2091         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
2092         appdomain which is being unloaded.
2093         
2094         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
2095         unloading of the root appdomain.
2096
2097         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
2098         icall to execute a method in another appdomain. Intended as a 
2099         replacement for InternalSetDomain, which can confuse the code 
2100         generation in the JIT.
2101
2102         * appdomain.c (mono_domain_is_unloading): New function to determine
2103         whenever an appdomain is unloading.
2104
2105         * appdomain.c (mono_domain_unload): New function to correctly unload
2106         an appdomain.
2107
2108         * assembly.c (mono_assembly_load_references): Check that an assembly
2109         does not references itself.
2110
2111         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
2112         domain manually, it asks the finalizer thread to do it, then waits for
2113         the result. Also added a timeout.
2114
2115         * icall.c: Register the new icalls.
2116
2117         * threads.h threads.c: Export the mono_gc_stop_world and 
2118         mono_gc_start_world functions.
2119         
2120         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
2121         function to fill out the mempool with 0x2a.
2122
2123 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
2124
2125         * reflection.h (MonoReflectionMethodAux): New structure to store
2126         information which is rarely used, thus is not in the MonoMethod
2127         structure.
2128
2129         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
2130         store the aux info.
2131
2132         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
2133         and marshalling info into the aux structure.
2134
2135         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
2136         from the aux structure.
2137
2138         * loader.c (mono_method_get_param_names): Retrieve the param names from
2139         the aux structure.
2140         
2141 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
2142
2143         * exception.h exception.c: Add AppDomainUnloadedException && fix 
2144         warning.
2145
2146 2003-10-21  Dick Porter  <dick@ximian.com>
2147
2148         * socket-io.c
2149         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
2150         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
2151
2152 2003-10-21  Martin Baulig  <martin@ximian.com>
2153
2154         * reflection.c (mono_reflection_bind_generic_parameters):
2155         `klass->parent' is NULL for interfaces.
2156
2157 2003-10-21  Martin Baulig  <martin@ximian.com>
2158
2159         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
2160
2161 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
2162
2163         * exception.c (mono_exception_from_name_msg): New helper function for
2164         creating exceptions and initializing their message field.
2165
2166         * exception.c: Simplify functions using the new helper.
2167
2168         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
2169         New function.
2170
2171         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
2172         mono_raise_exception, since otherwise gcc doesn't generate the function
2173         epilog for raise_exception, confusing the stack unwinding in the JIT.
2174         Fixes #45043.
2175
2176         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
2177         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
2178         Fixes #49499.
2179
2180 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2181
2182         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
2183         utf8.
2184
2185 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
2186
2187         * icall.c: Removed GetUninitializedObject method because
2188           AllocateUninitializedClassInstance does the same.
2189
2190 2003-10-18  Martin Baulig  <martin@ximian.com>
2191
2192         * class.c (inflate_generic_signature): Renamed to
2193         mono_class_inflate_generic_signature() and made it public.
2194         (my_mono_class_from_generic_parameter): New static function; if we
2195         don't already have the generic parameter's MonoClass, create a
2196         very simple one which is just used internally in the runtime and
2197         not passed back to managed code.
2198
2199         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
2200
2201         * metadata.h (MonoMethodSignature): Moved the
2202         `MonoGenericParam *gen_params' to the MonoMethodHeader.
2203         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
2204
2205         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
2206         ves_icall_MonoMethod_GetGenericArguments(); this is now an
2207         interncall on the MonoMethod class, not on MethodInfo.
2208         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
2209         calling mono_reflection_bind_generic_method_parameters() directly.
2210
2211         * loader.c (mono_method_get_signature): If this is a MethodSpec;
2212         return the already computed `method->signature'.
2213         (method_from_methodspec): New static function to load a method
2214         from a MethodSpec entry.
2215         (mono_get_method_from_token): Call the new method_from_methodspec()
2216         for MethodSpec tokens.  
2217         (mono_get_method_from_token): If we're a generic method, load the
2218         type parameters.
2219
2220         * reflection.c (mono_image_get_memberref_token): Allow
2221         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
2222         table.
2223         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
2224         (mono_image_create_token): First check whether it's a generic
2225         method (so we'd need to create a MethodSpec), then do the other
2226         two alternatives.
2227         (mono_reflection_bind_generic_method_parameters): Return a
2228         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
2229         called directly from the interncall.
2230
2231 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
2232
2233         * reflection.c (load_public_key): Move loading of the public key
2234         into managed code.
2235
2236         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
2237
2238         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
2239         fields.
2240
2241         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
2242         culture, hash_alg and public_key. Fixes #49555.
2243
2244 2003-10-17  Martin Baulig  <martin@ximian.com>
2245
2246         * class.h (MonoGenericInst): Moved this declaration here and added
2247         `MonoMethod *generic_method'.
2248
2249         * icall.c
2250         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
2251         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
2252
2253         * metadata.c (mono_metadata_type_equal): Two types of
2254         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
2255         index; ie. don't compare the address of the `MonoGenericParam'
2256         structure.
2257         (mono_metadata_load_generic_params): Removed the `MonoMethod
2258         *method' argument.
2259
2260         * metadata.h (MonoGenericInst): Moved declaration to class.h.
2261         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
2262
2263         * reflection.c (method_encode_signature): Encode the number of
2264         generic parameters.
2265         (encode_generic_method_sig): New static function.
2266         (method_encode_methodspec): New static function; creates an entry
2267         in the MethodSpec table for a generic method.
2268         (mono_image_get_methodspec_token): New static function.
2269         (mono_image_create_token): Call mono_image_get_methodspec_token()
2270         for generic methods.
2271         (mono_reflection_bind_generic_method_parameters): New public
2272         function.  Instantiates a generic method.
2273
2274 2003-10-16  Martin Baulig  <martin@ximian.com>
2275
2276         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
2277         *gen_params' here from MonoMethodHeader.
2278
2279         * metadata.c (mono_metadata_parse_method_signature): If we have
2280         generic parameters, initialize `method->gen_params' and then set
2281         the correct `type->data.generic_param' in all the parameters.
2282
2283 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
2284
2285         * threads.c (mono_threads_get_default_stacksize): New function to 
2286         return the default stacksize.
2287
2288         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
2289         termination of the finalizer thread, since the previous method had
2290         race conditions. Fixes #49628.
2291
2292         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
2293         as for the other managed threads.
2294
2295 2003-10-16  Martin Baulig  <martin@ximian.com>
2296
2297         * class.c (inflate_generic_signature): Copy `generic_param_count'
2298         and `gen_params'.
2299
2300         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
2301         New interncall.
2302
2303         * metadata.c (mono_metadata_parse_method_signature): Actually set
2304         the `method->generic_param_count' here.
2305         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
2306
2307 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
2308
2309         * object.h: Add a new field to TypedRef to simplify the implementation
2310         of the REFANY opcodes in the JIT.
2311
2312         * icall.c: Make use of the new field.
2313
2314         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
2315         dynamically.
2316
2317 2003-10-15  Martin Baulig  <martin@ximian.com>
2318
2319         * class.c (mono_class_from_gen_param): Renamed to
2320         mono_class_from_generic_parameter() and moved most of the
2321         functionality from mono_reflection_define_generic_parameter()
2322         here; ie. we create a "real" class here.
2323         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
2324         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
2325         previously been called.
2326
2327         * class.h (MonoGenericParam): Moved the declaration of this struct
2328         here from metadata.h and added `MonoMethod *method'.
2329
2330         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
2331         interncall.
2332
2333         * loader.c (mono_get_method_from_token): If we have any generic
2334         parameters, call mono_metadata_load_generic_params() to read them
2335         from the MONO_TABLE_GENERICPAR.
2336
2337         * metadata.c (mono_metadata_load_generic_params): Added
2338         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
2339
2340         * metadata.h (MonoMethodSignature): Replaced
2341         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
2342         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
2343
2344         * reflection.c (mono_reflection_define_generic_parameter): Moved
2345         most of the functionality into the new
2346         mono_class_from_generic_parameter(); set the `method' field if
2347         we're a method parameter.       
2348
2349 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
2350
2351         * marshal.c (emit_struct_conv): if native size is 0
2352         emit no code.
2353
2354 2003-10-14  Martin Baulig  <martin@ximian.com>
2355
2356         * icall.c: The generics API has changed in the spec since it was
2357         added to System.Type; these modifications make it match the spec
2358         again.
2359         (ves_icall_Type_GetGenericParameters): Renamed to
2360         `ves_icall_Type_GetGenericArguments'.
2361         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
2362         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
2363         `ves_icall_MonoType_get_HasGenericArguments'.
2364         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
2365         `ves_icall_MonoType_get_IsGenericParameter'.
2366         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
2367         this is no interncall anymore.
2368         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
2369         `ves_icall_TypeBuilder_get_IsGenericParameter'.
2370
2371 2003-10-14  Martin Baulig  <martin@ximian.com>
2372
2373         * reflection.c (mono_reflection_bind_generic_parameters): Also
2374         inflate generic methods if we're reading the class from IL.
2375
2376 2003-10-13  Martin Baulig  <martin@ximian.com>
2377
2378         * reflection.c (mono_reflection_define_generic_parameter): This
2379         method isn't called directly from the icall anymore; take a
2380         `MonoReflectionAssemblyBuilder *' so we can use this for type and
2381         method generic parameters.
2382         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
2383         (method_builder_encode_signature): Encode generic parameters.
2384         (mono_image_get_method_info): Write generic params to the
2385         MONO_TABLE_GENERICPARAM table.
2386
2387         * reflection.h (MonoReflectionMethodBuilder): Added
2388         `MonoArray *generic_params'.
2389
2390         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
2391
2392         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
2393         wrapper for mono_reflection_define_generic_parameter().
2394         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
2395
2396 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
2397
2398         * marshal.h: Add missing function to fix build.
2399
2400         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
2401         the SetLastError pinvoke attribute.
2402
2403         * marshal.c (mono_marshal_set_last_error): New helper function called
2404         by the generated code.
2405         
2406         * marshal.c (mono_mb_emit_branch): New helper function.
2407
2408         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
2409
2410         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
2411         classes as parameters and return values of delegates. Fixes #29256. 
2412
2413 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
2414
2415         * locales.c: use gint32 in non HAVE_ICU case
2416
2417 2003-10-11  Martin Baulig  <martin@ximian.com>
2418
2419         * mono-debug.c (mono_debug_add_method): Added a workaround for
2420         bug #48591.
2421
2422 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
2423
2424         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
2425         delegates passed to native code must use the STDCALL calling 
2426         convention. Fixes #35987.
2427
2428 2003-10-10  Martin Baulig  <martin@ximian.com>
2429
2430         * class.c (inflate_generic_type): If we're inflating for a generic
2431         type instance (and not for a generic method), return
2432         MONO_TYPE_MVAR unchanged.
2433
2434 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2435
2436         * string-icalls.c: Join ignores null strings in the source array.
2437         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
2438         * threads.c: GetAvailableTheads is slightly more accurate.
2439
2440 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
2441
2442         * threads.h threads.c : add mono_threads_set_default_stacksize
2443         and pass default to CreateThread calls.
2444
2445 2003-10-09  Dick Porter  <dick@ximian.com>
2446
2447         * icall.c:
2448         * locales.h:
2449         * locales.c: Internal calls for constructing CultureInfo and
2450         related objects from libicu (if its available.)
2451
2452 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
2453
2454         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
2455
2456 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2457
2458         * threadpool.c: added an argument to async_invoke_thread that is the
2459         item to process, pass the MonoAsyncResult to the thread start function
2460         when creating a new thread. This way we don't need to acquire any lock
2461         when we're creating a new thread. Readded a semaphore for faster
2462         response times (instead of that Sleep i added).
2463
2464 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
2465
2466         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
2467         get daylight change dates better on Windows, fix handling
2468         of platforms without tm_gmtoff.
2469
2470 2003-10-06  Martin Baulig  <martin@ximian.com>
2471
2472         * class.c (inflate_generic_method): Renamed to
2473         mono_class_inflate_generic_method() and made public.
2474         (mono_class_init): Don't inflate the generic methods here.
2475         (mono_class_from_generic): Added `gboolean inflate_methods'
2476         argument.  Inflate the methods here.
2477
2478         * loader.c (mono_method_get_param_names): Ignore instances of
2479         generic types for the moment.
2480
2481         * reflection.c (fixup_method): Added support for inflated methods.
2482         (mono_image_create_token): Use mono_image_get_methodref_token()
2483         for inflated methods.
2484         (mono_custom_attrs_from_param): Ignore instances of generic types
2485         for the moment.
2486         (mono_reflection_bind_generic_parameters): New public function.
2487         Moved all the functionality from
2488         ves_icall_Type_BindGenericParameters() here and added support for
2489         dynamic types.
2490         (mono_reflection_define_generic_parameter): Initialize
2491         `klass->methods' here.
2492
2493         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
2494         functionality into mono_reflection_define_generic_parameter().
2495         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
2496         TypeBuilder, return that TypeBuilder.
2497
2498 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2499
2500         * appdomain.c: removed mono_delegate_semaphore.
2501
2502         * threadpool.c:
2503         (mono_thread_pool_add): moved hash table creation inside and the thread 
2504         creation outside of the critical region.
2505         (mono_thread_pool_finish): removed obsolete code.
2506         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
2507         continue or exit the thread depending on the queue.
2508
2509 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
2510
2511         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
2512         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
2513         handle more bool marshalling options
2514
2515 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
2516
2517         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
2518         arrays of structs. Also add a more descriptive error message when
2519         a structure member is marshalled as LPArray.
2520
2521 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
2522
2523         * marshal.c (mono_marshal_get_native_wrapper): Add support for
2524         marshalling arrays of complex types. Fixes #29098. Also remove an
2525         usused and incomplete function.
2526
2527 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
2528
2529         * gc.c: report heap_size - free_bytes as total memory allocated
2530         (bug#49362).
2531
2532 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
2533
2534         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
2535         fix timezone handling problems on Windows.
2536         
2537         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
2538         asserts when the year is outside the range handled by ms the functions.
2539
2540         * class.c (setup_interface_offsets): If the class is an interface,
2541         fill out its interface_offsets slot.
2542
2543 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2544
2545         * threadpool.c: mark threadpool threads as background.
2546
2547 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
2548
2549         * decimal.c - define DECINLINE to nothing if not using GCC
2550
2551 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
2552
2553         * assembly.c: More refcount fixes.
2554
2555 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2556
2557         * string-icalls.c: if we're not trimming, return the same string.
2558         When not splitting, don't create a new string.
2559
2560 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2561
2562         * image.c:
2563         (mono_image_open): increment the ref_count inside the critical section.
2564
2565 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
2566
2567         * image.c (mono_image_open): Fix reference counting bug.
2568
2569 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
2570
2571         * marshal.c (mono_marshal_type_size) struct alignment changed for 
2572         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
2573         64bits. Avoid leak in mono_marshal_get_native_wrapper when
2574         mono_lookup_pinvoke_call throws.        
2575
2576 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
2577
2578         * reflection.c (mono_reflection_parse_type): Fix #49114.
2579
2580         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
2581         temporary workaround for cygwin header problem.
2582
2583         * object.c (mono_object_isinst): Synchronize this with the code
2584         generated by the JIT for casts.
2585
2586 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
2587
2588         * reflection.c (encode_type): Fix #38332.
2589
2590 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
2591
2592         * marshal.c (mono_marshal_method_from_wrapper): New function to return
2593         the original method from the wrapper method.
2594
2595 2003-09-25  Martin Baulig  <martin@ximian.com>
2596
2597         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
2598         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
2599         (ves_icall_Type_get_IsGenericInstance): New interncall.
2600
2601 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
2602
2603         * object.c: fix cast warning in big endian code.
2604
2605 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
2606
2607         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
2608         
2609 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2610
2611         * assembly.c: don't call check_env from mono_assembly_load. It's
2612         already done once in mono_assemblies_init and may cause headaches when
2613         multiple threads are loading assemblies.
2614
2615 2003-09-19  Martin Baulig  <martin@ximian.com>
2616
2617         * reflection.c (mono_reflection_define_generic_parameter): Don't
2618         allocate `klass->methods', set `klass->flags' to
2619         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
2620
2621 2003-09-18  Martin Baulig  <martin@ximian.com>
2622
2623         * class.c (mono_class_init): Don't create `class->methods' if it's
2624         already initialized.
2625
2626         * metadata.c (mono_metadata_load_generic_params): Make this
2627         actually work.
2628
2629         * reflection.c (mono_reflection_define_generic_parameter): Set
2630         parent class and interfaces from the constraints.
2631
2632         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
2633         to keep this struct in sync with the declaration in TypeBuilder.cs.
2634
2635 2003-09-17  Martin Baulig  <martin@ximian.com>
2636
2637         * metadata.h (MonoType): Replaced the data's `int type_param'
2638         field with `MonoGenericParam *generic_param'.
2639         (MonoGenericParam): Added `MonoClass *klass'.
2640
2641         * class.c (mono_class_from_gen_param): Removed the
2642         `MonoImage *image' and `int type_num' arguments.
2643
2644         * metadata.c (mono_metadata_parse_generic_param): New static
2645         method; creates a MonoGenericParam which just contains the index.
2646         (do_mono_metadata_parse_type): Call
2647         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
2648         MONO_TYPE_MVAR.
2649
2650         * reflection.c (mono_image_typedef_or_ref): Generic type
2651         parameters may be in the same assembly, but never use a typedef
2652         for them.
2653         (mono_reflection_define_generic_parameter): We're now creating a
2654         "real" class for the type parameter; it's now safe to call
2655         mono_class_from_mono_type() on the class'es type, it'll do the
2656         right thing.
2657
2658 2003-09-16  Martin Baulig  <martin@ximian.com>
2659
2660         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
2661         `symfile->range_entry_size' and `symfile->class_entry_size' here;
2662         the `symfile' data structure must be fully initialized before it
2663         gets added to the table.
2664
2665 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
2666
2667         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
2668
2669         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
2670         class init trampolines.
2671
2672 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
2673
2674         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
2675         to the built-in profiler to turn off time and allocation profiling
2676         respectively.
2677
2678 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
2679
2680         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
2681         g_direct_equal.
2682
2683         * debug-helpers.c (mono_method_full_name): Print the wrapper type
2684         in human readable form.
2685
2686 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
2687
2688         * reflection.c icall.c: Fixed warnings.
2689
2690         * image.c (load_class_names): Use a temporary hash table to hold the
2691         namespaces in order to avoid doing many string comparisons.
2692
2693         * image.h: Fix typo.
2694
2695         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
2696         Pass NULL instead of g_direct_equal to the GHashTable constructor 
2697         since the NULL case is short-circuited inside g_hash_table_lookup, 
2698         leading to better performance.  
2699
2700         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
2701         obtain the first custom attribute for a given index. Depends on the
2702         CustomAttribute table being sorted by the parent field.
2703
2704         * reflection.c (mono_custom_attrs_from_index): Use the new function 
2705         for better performance.
2706
2707 2003-09-07  Martin Baulig  <martin@ximian.com>
2708
2709         * class.c (mono_class_init): If we're a generic instance, inflate
2710         all our methods instead of loading them from the image.
2711         (mono_class_from_generic): Set `class->methods = gklass->methods'.
2712
2713 2003-09-07  Martin Baulig  <martin@ximian.com>
2714
2715         * mono-debug-debugger.c: Added support for constructors.
2716
2717 2003-09-06  Martin Baulig  <martin@ximian.com>
2718
2719         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
2720         New interncall.
2721
2722         * reflection.c (mono_reflection_setup_generic_class): Call
2723         ensure_runtime_vtable() to create the vtable.
2724
2725 2003-09-05  Martin Baulig  <martin@ximian.com>
2726
2727         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
2728         MONO_TYPE_MVAR.
2729
2730 2003-09-04  Martin Baulig  <martin@ximian.com>
2731
2732         * reflection.c (mono_reflection_define_generic_parameter): Generic
2733         parameters start with zero.
2734
2735 2003-09-04  Martin Baulig  <martin@ximian.com>
2736
2737         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
2738
2739         * reflection.h (MonoReflectionGenericParam): New typedef.
2740         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
2741         the generic parameters from the managed TypeBuilder.
2742
2743         * reflection.c (mono_reflection_define_generic_parameter): New function.
2744         (mono_reflection_create_runtime_class): Encode generic parameters.
2745         (mono_reflection_setup_generic_class): New function; this is
2746         called after adding adding all generic params to the TypeBuilder.
2747         (encode_type): Added MONO_TYPE_VAR.
2748
2749 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
2750
2751         * class.h class.c (mono_class_needs_cctor_run): Moved this method
2752         here from the JIT.
2753
2754         * assembly.h assembly.c: Moved the AOT loading code into an assembly
2755         load hook.
2756
2757 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
2758
2759         * reflection.h reflection.c class.h class.c: Delete duplicate 
2760         definition of mono_type_get_name () from reflection.c and export the
2761         one in class.c.
2762
2763         * class.c: Class loading fixes from Bernie Solomon 
2764         (bernard@ugsolutions.com).
2765
2766         * reflection.c: Endianness fixes from Bernie Solomon 
2767         (bernard@ugsolutions.com).
2768         
2769 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
2770
2771         * assembly.h assembly.c: Define a file format version for AOT
2772         libraries.
2773         
2774         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
2775
2776         * appdomain.h (MonoJitInfo): New field to determine whenever the
2777         code is domain neutral.
2778         
2779 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
2780
2781         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
2782
2783 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
2784
2785         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
2786         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
2787         Avoid caching the result since strings must be domain specific. Fixes
2788         #48050.
2789
2790 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
2791
2792         * marshal.c (mono_marshal_init): Make this callable multiple times
2793         since it is hard to find a correct place to call it.
2794
2795         * object.c (mono_runtime_class_init): Execute static constructors in
2796         the correct appdomain.
2797
2798         * image.c (build_guid_table): Handle the case when multiple images have
2799         the same GUID.
2800
2801 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2802
2803         * icall.c: added a couple of icalls for System.Web.
2804
2805 2003-08-28  Martin Baulig  <martin@ximian.com>
2806
2807         * icall.c (ves_icall_Type_BindGenericParameters): Use
2808         `klass->generic_inst' instead of `&klass->byval_arg' in the
2809         mono_type_get_object() call.  The returned type must be
2810         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
2811
2812 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
2813
2814         * NOTES: New file.
2815
2816         * object.c (mono_class_proxy_vtable): Make it thread safe.
2817
2818         * pedump.c: Fix warning.
2819
2820         * object.c appdomain.h: Get rid of metadata_section. 
2821         It is no longer needed and it was causing deadlocks with domain->lock.
2822
2823         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
2824
2825 2003-08-26  Martin Baulig  <martin@ximian.com>
2826
2827         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
2828
2829 2003-08-26  Martin Baulig  <martin@ximian.com>
2830
2831         * pedump.c (main): Call mono_metadata_init(),
2832         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
2833         and mono_loader_init().
2834
2835 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
2836
2837         * loader.h: Add missing include to fix build.
2838
2839         * image.h: mono_image_load_references is no more.
2840
2841         * assembly.c: Reworked assembly loading to make it really thread safe.
2842         After these changes, the assembly returned by mono_assembly_open is
2843         fully initialized, i.e. all its references assemblies are loaded.
2844
2845         * assembly.c (mono_image_load_references): Renamed to 
2846         mono_assembly_load_references, and made private, since clients no
2847         longer need to call it.
2848
2849         * class.c: Removed calls to mono_assembly_load_references, since it was
2850         a source of deadlocks.
2851
2852         * loader.h loader.c class.h class.c: Protect data structures using a 
2853         new lock, the loader lock.
2854
2855         * class.c (mono_class_setup_vtable): Create temporary hash tables and
2856         GPtrArrays only when needed.
2857
2858         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
2859         into empty structures by mcs. Fixes pinvoke7.cs.
2860         
2861         * domain.c (mono_init): Call a new initialization function.
2862
2863         * appdomain.c (mono_runtime_init): Call the new initializer function
2864         of the marshal module.
2865
2866         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
2867         inserted into empty structures by mcs. Fixes pinvoke7.cs.
2868
2869         * marshal.h marshal.c: Added locks around the wrapper caches to make
2870         this module thread safe.
2871
2872         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
2873         this argument. Fixes pinvoke1.exe.
2874
2875 2003-08-25  Lluis Sanchez <lluis@ximian.com>
2876
2877         * object.h: Added call_type field to MonoMethodMessage and the corresponding
2878         enumeration of values. Removed fields to store remote call output values in
2879         MonoAsyncResult. Not needed any more.
2880         * object.c: Initialize call_type and async_result fields in mono_message_init.
2881         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
2882         dispatching the message.
2883         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
2884         async call to finish. To do it use a message with EndInvoke call type.
2885
2886 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
2887
2888         * loader.h loader.c (mono_method_hash_marhal_info): New function which
2889         determines whenever a method has marshalling info.
2890
2891 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2892
2893         * assembly.c: fix the build on windows.
2894
2895 2003-08-22 Lluis Sanchez <lluis@ximian.com>
2896
2897         * object.cs: Fixed bug #47785.
2898
2899 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
2900
2901         * string-icalls.c (StringReplace): If their are no occurances of
2902         the old string found return a reference to the supplied
2903         string. This saves some memory and matches MS behavoir.
2904         
2905 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2906
2907         * socket-io.c: fixed compilation for systems that define AF_INET6
2908         and don't define SOL_IP/SOL_IPV6.
2909
2910 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
2911
2912         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
2913         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
2914
2915         * rawbuffer.c rawbuffer.h: Make this module thread safe.
2916
2917         * domain.c: Make this module thread safe.
2918
2919         * domain.c (mono_init): Call new initialization function.
2920
2921         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
2922         reference types too. Fixes #38812.
2923
2924         * image.c (mono_image_init): Fixed warnings.
2925
2926         * class.c (mono_class_from_typeref): Handle assembly load failure
2927         correctly.
2928
2929         * appdomain.c (add_assemblies_to_domain): Handle the case when
2930         the references of an assembly are not yet loaded.
2931
2932         * metadata.c image.c assembly.c: Moved initialization of global
2933         variables to a separate function called at startup since lazy 
2934         initialization of these variables is not thread safe.
2935         
2936         * image.c assembly.c: Made this module thread safe by adding locks in 
2937         the appropriate places.
2938
2939         * domain.c (mono_init): Call the new initialization functions of the
2940         three modules.
2941
2942 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
2943
2944         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
2945           make a direct call. It is proxy's work to make the call asynchronous.
2946           mono_delegate_end_invoke(): If the targe is a proxy, just collect
2947           the return values.
2948         * object.cs: mono_method_call_message_new(): read AsyncResult and
2949           state object from parameters list, if this info is requested.
2950         * object.h: Added fields to store remote call output values in
2951           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
2952
2953 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
2954
2955         * object.h: add needed fields to MonoThread.
2956         * threads.c, threads.h: allow registering a function to cleanup data
2957         allocated per thread by the JIT.
2958
2959 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
2960
2961         * loader.h: portability fix by Bernie Solomon
2962         * <bernard@ugsolutions.com>.
2963
2964 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
2965
2966         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
2967         return a MonoArray. This simplifies the code and also ensures that
2968         the cache allways contains an object reference as a value.
2969
2970         * icall.c (ves_icall_get_parameter_info): Simplified using the new
2971         function.
2972
2973 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2974
2975         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
2976         fixes a problem with byte ordering when getting the address family for
2977         a socket.
2978
2979 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
2980
2981         * .cvsignore: Added monosn.
2982
2983         * reflection.h reflection.c loader.c: Added support for parameter
2984         marshalling to dynamically created types. Fixes #47295.
2985
2986 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
2987
2988         * rand.c: remove useless warnings.
2989
2990 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
2991
2992         * class.c: implemented ldtoken for methods and fieldrefs.
2993
2994 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2995
2996         * threadpool.c: when mono_async_invoke was called, no one took care of
2997         monitoring the queue. So if the method invoked took some time and we
2998         got new async invoke requests after 500 ms (the thread created waited
2999         that long in WaitForSingleObject), the new async invoke was not called
3000         until the previous one finished.
3001
3002         This is fixed now. Thanks to Totte for helping with it.
3003
3004 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3005
3006         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
3007
3008 2003-08-11  Martin Baulig  <martin@ximian.com>
3009
3010         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
3011
3012 2003-08-06  Martin Baulig  <martin@ximian.com>
3013
3014         * mono-debug-debugger.c: Added support for static fields,
3015         properties and methods.
3016
3017 2003-08-06  Martin Baulig  <martin@ximian.com>
3018
3019         * mono-debug-debugger.c: Don't store the MonoString's vtable to
3020         make this work for applications with multiple application domains.
3021
3022 2003-08-04  Martin Baulig  <martin@ximian.com>
3023
3024         * mono-debug-debugger.c: Completely reworked the type support; the
3025         most important thing is that we're now just using one single
3026         `MonoType' instance per type.
3027
3028 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
3029
3030         * mono-endian.h, mono-endian.c, icall.c: Added icall
3031         ves_icall_System_Double_AssertEndianity to assert double word endianity
3032         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
3033
3034 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
3035
3036         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
3037         support, icalls and fixes.
3038
3039 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
3040
3041         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
3042         classes that are a punctuation character in .NET is not the same a
3043         g_unichar_ispunct.
3044
3045 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
3046
3047         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
3048
3049 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
3050
3051         * icall.c: Add new MemCopy internalcall.
3052         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
3053         Simplified code; It is not necessary to handle all the cases here,
3054         as the C# code takes care of it.  Only handle the case of the name
3055         resource embedded into the assembly.
3056
3057         Changed signature to return the data pointer and the size of the
3058         data. 
3059
3060 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
3061
3062         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
3063         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
3064
3065 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
3066
3067         * socket-io.c: ignore EINTR error in select.
3068
3069 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
3070
3071         * class.h, class.c: removed unused subclasses field in MonoClass.
3072
3073 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
3074
3075         * icall.c: improve fix of get_base_definition(). If the parent class
3076           doesn't have the mehod, look at the parent of the parent.
3077         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
3078           to check if a parameter is an in or out parameter
3079           (PARAM_ATTRIBUTE_IN is not set by default).
3080           mono_method_return_message_restore(): Use mono_class_value_size to
3081           get the size of a value type. mono_type_stack_size (parameterType)
3082           does not return the correct value if parameterType is byRef.
3083           mono_load_remote_field(), mono_load_remote_field_new(),
3084           mono_store_remote_field(), mono_store_remote_field_new():
3085           raise exception if the remote call returns an exception.
3086
3087 2003-07-28  Martin Baulig  <martin@ximian.com>
3088
3089         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
3090         method.  This is a wrapper around mono_runtime_invoke() which
3091         boxes the instance object if neccessary.
3092
3093 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
3094
3095         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
3096         metadata.h, row-indexes.h, verify.c: first cut of generics support.
3097
3098 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
3099
3100         * icall.c: disable mcs bug workaround.
3101
3102 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
3103
3104         * object.c (mono_runtime_class_init): Take the metadata_section
3105         mutex before obtaining the domain mutex.
3106
3107         * appdomain.h: Added definition of metadata_section mutex here. 
3108
3109         * object.c: define metadata_mutex here.
3110
3111 2003-07-24  Ravi Pratap  <ravi@ximian.com>
3112
3113         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
3114         fixed.
3115
3116 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
3117
3118         * reflection.c: Fix bug #46669
3119
3120 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3121
3122         * exception.c:
3123         * exception.h:
3124         * icall.c:
3125         * object.h: fill in the type name for TypeLoadException.
3126
3127 2003-07-23  Ravi Pratap  <ravi@ximian.com>
3128
3129         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
3130         relationship between TypeBuilders while compiling corlib) and bug
3131         45993 (Array types returned from the runtime while compiling
3132         corlib were from the loaded corlib).
3133
3134 2003-07-22  Martin Baulig  <martin@ximian.com>
3135
3136         * mono-debug-debugger.c: Reworked the type support a bit more;
3137         distinguish between types and classes.
3138
3139 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
3140
3141         * icall.c: add IsArrayImpl icall.
3142
3143 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
3144
3145         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
3146         initializing real_size only once. Also fix bug #46602.
3147
3148 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
3149
3150         * object.c: Renamed mono_metadata_section to metadata_section.
3151
3152 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
3153
3154         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
3155           empty array if the type is an array. Fixed.
3156           ves_icall_MonoMethod_get_base_definition: if the base method
3157           is abstract, get the MethodInfo from the list of methods of
3158           the class.
3159         * reflection.c: ParameterInfo.PositionImpl should be zero-based
3160           and it was 1-based. Fixed in mono_param_get_objects.
3161
3162 2003-07-20  Martin Baulig  <martin@ximian.com>
3163
3164         * mono-debug.h: Set version number to 31.
3165         (mono_debug_init): Added `MonoDomain *' argument.
3166
3167         * mono-debug-debugger.c: Reworked the type support; explicitly
3168         tell the debugger about builtin types; pass the `klass' address to
3169         the debugger.
3170
3171 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
3172
3173         * image.c: Allow new metadata tables to be loaded without a
3174         warning. Also update the warning message to give the new constant value.
3175                 
3176 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
3177
3178         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
3179         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
3180         array type representation changes.
3181
3182 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
3183
3184         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
3185         on Environment.Exit () call.
3186
3187 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
3188
3189         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
3190         requires a matching corlib.
3191
3192 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
3193
3194         * Changelog: My editor decided to add a CR to each line. Sorry about that.
3195           Committed again without the CRs.
3196         
3197 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
3198
3199         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
3200           getting it from the "this" socket instance. Did not work
3201           if the socket is a subclass of Socket.
3202           Also fixed bug #35371.
3203
3204 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
3205
3206         * metadata.c: fixed size for TypedByRef.
3207         * loader.c: when searching for a method, consider the vararg amrker.
3208         * unicode.c, decimal.c: constify some arrays.
3209
3210 2003-07-15  Dick Porter  <dick@ximian.com>
3211
3212         * socket-io.c: Fixed compilation for gcc < 3.2.
3213
3214         Fixed compilation for machines that don't have AF_INET6 (thanks to
3215         Bernie Solomon <bernard@ugsolutions.com> for that part.)
3216
3217         Fixed compile warnings.
3218         
3219         Fixed formatting and line endings.
3220
3221 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
3222
3223         * socket-io.h:
3224         * socket-io.c: Added IPv6 support.
3225
3226 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
3227
3228         * class.c (mono_class_is_assignable_from): New function to implement
3229         the is_assignable_from logic. Used by mono_object_isinst, 
3230         Type::IsAssignableFrom () and the interpreter.
3231
3232         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
3233         Object, even interfaces.
3234         
3235         * object.c (mono_object_isinst): Implement in terms of 
3236         is_assignable_from.
3237
3238         * icall.c (ves_icall_type_is_assignable_from): New icall.
3239
3240 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
3241
3242         * domain.c (foreach_domain): fix compiler warning.
3243
3244 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
3245
3246         * image.c (load_metadata_ptrs): use g_strndup because strndup is
3247         not available on all plattforms
3248
3249 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
3250
3251         * image.h image.c: Store the metadata version string in MonoImage.
3252         * icall.c: New icall to retrieve the image version.
3253         * reflection.c (create_dynamic_image): Fill in the image version field
3254         * reflection.c (build_compressed_metadata): Use the image version
3255         from the image structure.
3256
3257 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3258
3259         * appdomain.c: modified comment.
3260         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
3261         That will be its last iteration when mono_gc_cleanup is called from
3262         mono_runtime_cleanup and before the domain is unloaded.
3263
3264         Fixes bug #45962.
3265
3266 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
3267
3268         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
3269         attributes.
3270
3271 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
3272
3273         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
3274         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
3275         Bernie Solomon <bernard@ugsolutions.com>.
3276
3277 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
3278
3279         * object.c, object.h: provide mono_object_new_fast() for faster
3280         allocation in some special cases.
3281
3282 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
3283
3284         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
3285         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
3286
3287 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
3288
3289         * threadpool.c: fix leaks.
3290
3291 2003-07-01  Dick Porter  <dick@ximian.com>
3292
3293         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
3294         using MonoGHashTables.  Fixes threadpool bug posted to list.
3295
3296 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
3297
3298         * image.h, image.c: added support to load an assembly from a byte array.
3299         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
3300         assembly bundle support.
3301
3302 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
3303
3304         * threadpool.c (mono_thread_pool_add): keep a reference to the
3305         AsyncResult to prevent GC
3306
3307 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
3308
3309         * class.c: leak fix.
3310
3311 2003-06-25  Dick Porter  <dick@ximian.com>
3312
3313         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
3314         for the async object, the WaitHandle object will close the handle.
3315         Fixes bug 45321.
3316
3317 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
3318
3319         * class.c: in mono_array_class_get (), lookup from the hash with the
3320         same type we insert: this works around a bug in
3321         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
3322         lluis. The real fix will have to wait for after the release.
3323
3324 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
3325
3326         * icall.c: fix memory leak when getting type members.
3327
3328 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
3329
3330         * reflection.c: added more pubtoken special cases.
3331
3332 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
3333
3334         * class.c: handle field offset correctly when class size
3335         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
3336
3337 2003-06-20  Martin Baulig  <martin@ximian.com>
3338
3339         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
3340         *image' field.
3341
3342 2003-06-20  Martin Baulig  <martin@ximian.com>
3343
3344         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
3345
3346 2003-06-20  Martin Baulig  <martin@ximian.com>
3347
3348         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
3349         just distinguish between variables in registers and variables at
3350         an offset relative to a register.
3351
3352 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3353
3354         * icall.c: #ifdef out latest changes until mcs is fixed.
3355
3356 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
3357
3358         * icall.c: return members in metadata order.
3359
3360 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
3361
3362         * icall.c: avoid infinite loop in GetTimeZoneData.
3363
3364 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
3365
3366         * icall.c: added Marshal.Prelink/All icalls.
3367
3368 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
3369
3370         * object.c, object.h: fix warnings and do some overflow checking
3371         when creating arrays.
3372
3373 2003-06-17  Dick Porter  <dick@ximian.com>
3374
3375         * file-io.h:
3376         * file-io.c: File attributes need to be tweaked slightly when
3377         passed from the managed to the w32 world.
3378
3379 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
3380         * profiler.h profiler-private.h profiler.c: Rework last patch
3381         based on suggestion by Paolo.
3382         
3383 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
3384
3385         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
3386         instruction level coverage data collection.
3387         * profiler.h profiler.c (: Added new callback function which can be
3388         used by the profiler to limit which functions should have coverage
3389         instrumentation.
3390         * profiler.c (mono_profiler_load): Call g_module_build_path to
3391         generate the file name of the profiler library.
3392
3393 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
3394
3395         * profiler.c, profiler.h, profiler-private.h: added basic block 
3396         coverage profiling API.
3397
3398 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
3399
3400         * reflection.c (mono_reflection_create_runtime_class): Add support
3401         for events in dynamically generated code.
3402
3403         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
3404         not allocated.
3405
3406 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
3407
3408         * icall.c: when getting timezone info, return reasonable values if we
3409         can't get the actual data.
3410
3411 2003-06-14  Dick Porter  <dick@ximian.com>
3412
3413         * threads.c (start_wrapper): Remove the reference to the thread
3414         object in the TLS data, so the thread object can be finalized.
3415         This won't be reached if the thread threw an uncaught exception,
3416         so those thread handles will stay referenced :-( (This is due to
3417         missing support for scanning thread-specific data in the Boehm GC
3418         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
3419
3420 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
3421
3422         * reflection.c: ensure streams and tables are first allocated with
3423         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
3424
3425 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
3426
3427         * icall.c: fixed GetElementType for byrefs (bug# 44792).
3428
3429 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
3430
3431         * reflection.c (mono_reflection_create_runtime_class): Add support for
3432         properties to dynamically created classes.
3433         * reflection.c: Fix a few places where non-MonoObjects were inserted
3434         into the tokens hashtable.
3435
3436 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
3437
3438         * object.c: some support to handle out of memory exceptions.
3439
3440 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
3441
3442         * marshal.c (mono_marshal_get_native_wrapper): support reference
3443         return types
3444
3445 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
3446
3447         * object.h, object.c: more portability stuff from Bernie Solomon.
3448         Unexport mono_object_allocate(). Added mono_object_unbox ().
3449         Set exitcode when an unhandled exception is thrown.
3450
3451 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
3452
3453         * marshal.c (mono_marshal_get_native_wrapper): use custom
3454         marshaler for return types.
3455
3456 2003-06-10  Dick Porter  <dick@ximian.com>
3457
3458         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
3459         ip_mreq is available
3460
3461 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
3462
3463         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
3464         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
3465         by Bernie Solomon <bernard@ugsolutions.com>.
3466
3467 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
3468
3469         * gc.c (mono_gc_init): Avoid error message on shutdown when
3470         GC_DONT_GC=1 is used.
3471
3472         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
3473         New icall to return the GUID of a module.
3474
3475 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
3476
3477         * class.c: ensure instance size always includes the parent's size
3478         even whem class size is set explicitly (fixes bug#44294).
3479
3480 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
3481
3482         * profiler.h, profiler.c: made the simple profiler thread-safe,
3483         get more accurate timing info. Allow the loading of an
3484         externally-developed profiler module.
3485
3486 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
3487
3488         * marshal.c (mono_marshal_get_native_wrapper): improved
3489         class/byref arguments.
3490         (mono_marshal_get_native_wrapper): better string marshaling support.
3491
3492 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
3493
3494         * class.c: ensure .pack and .size are handled correctly and
3495         simplified layout of static fields.
3496
3497 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
3498
3499         * appdomain.c
3500         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
3501
3502         * loader.c (mono_lookup_pinvoke_call): look for modules in the
3503         current directory (fix bug 44008)
3504
3505 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
3506
3507         * marshal.c (mono_marshal_get_native_wrapper): started support for
3508         custom marshalers.
3509         (mono_delegate_to_ftnptr): consider marshalling specifications
3510
3511 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
3512
3513         * reflection.c, reflection.h: emit custom marshal info.
3514
3515 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3516
3517         * object.c: free the GError.
3518         * icall.c: added CloseEvent_internal.
3519         * threads.[ch]:
3520         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
3521         call.
3522
3523 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
3524
3525         * loader.c (mono_method_get_signature): Add support for dynamic
3526         assemblies.
3527
3528 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
3529
3530         * reflection.c: fixed bug #43905.
3531
3532 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
3533
3534         * class.c, domain.c, icall.c, metadata.h, object.h: support for
3535         handling TypedReference and ArgIterator.
3536         * loader.c, loader.h: added function to get signature at call site.
3537
3538 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
3539
3540         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
3541         data readonly. Buglets and warning fixes. Some MethodSpec support.
3542
3543 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
3544
3545         * class.h, class.c, object.c: remove relative numbering support.
3546
3547 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
3548
3549         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
3550         free the string, until we get a chance to fix Gtk#
3551
3552 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3553
3554         * marshal.c: revert last patch.
3555
3556 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
3557
3558         * icall.c: updates for new mono_class_vtable() not calling
3559         the type constructor anymore.
3560
3561 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
3562
3563         * object.h, object.c: separate vtable creation from type
3564         initialization. Make running the .cctor thread safe.
3565
3566 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
3567
3568         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
3569
3570 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
3571
3572         * loader.c (mono_get_method): consider calling convention
3573
3574 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
3575
3576         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
3577         to return the invisible global type for a module.
3578
3579         * reflection.c (mono_image_build_metadata): Emit global fields too.
3580
3581 2003-05-20  Peter Williams  <peterw@ximian.com>
3582
3583         * loader.c (mono_lookup_internal_call): Add a few newlines.
3584
3585 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
3586
3587         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
3588         literal strings.
3589
3590         * appdomain.c (set_domain_search_path): Recalculate search path when
3591         AppDomainSetup.PrivateBinPath changes.
3592
3593         * object.c (mono_class_compute_gc_descriptor): It turns out some
3594         parts of the class libs (like System.Thread) holds pointers to
3595         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
3596         to treat native int a pointer type here.
3597         
3598 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
3599
3600         * appdomain.h, domain.c: add hashtable for jump target resolution.
3601
3602 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
3603
3604         * reflection.h reflection.c icall.c: Added new icalls 
3605         GetManifestResourceInfoInternal, GetModulesInternal and support
3606         infrastructure.
3607
3608 2003-05-16  Dick Porter  <dick@ximian.com>
3609
3610         * icall.c:
3611         * file-io.h:
3612         * file-io.c: Implement System.IO.MonoIO::GetTempPath
3613
3614 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
3615
3616         * object.c: mono_store_remote_field: little fix to previous patch.
3617
3618 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
3619
3620         * class.c: add constructors to array classes.
3621         * icall.c: special case array construction for InternalInvoke (),
3622
3623 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
3624
3625         * class.h class.c reflection.c object.c: Added support for field
3626         defaults in dynamically generated classes.
3627
3628 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
3629
3630         * reflection.c: properly encode charset for ddlimport.
3631
3632 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
3633
3634         * threads.c: allow compiling without GC.
3635
3636 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
3637
3638         * appdomain.h, object.c, object.h, threads.c, threads.h: added
3639         handling of thread static data.
3640
3641 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
3642
3643         * reflection.h, reflection.c: added mono_custom_attrs_free ().
3644
3645 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
3646
3647         * class.c (mono_array_class_get): always set the serializable flags
3648         (mono_array_class_get): always set the SEALED attribute for array types
3649
3650 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
3651
3652         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
3653         attributes (fix for bug 42021).
3654
3655 2003-05-12  Dick Porter  <dick@ximian.com>
3656
3657         * gc.c: Don't run finalizers when the finalizer thread is
3658         finishing up, because the default domain has already been
3659         destroyed.
3660
3661 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
3662
3663         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
3664         value is null, we should throw an exception.   This is slightly
3665         different than the other conventions used for the constructor.
3666
3667 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3668
3669         * socket-io.c: fixed windows build.
3670
3671 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3672
3673         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
3674
3675 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
3676
3677         * object.c (mono_string_new_wrapper): Compatibility fix for MS
3678         compilers.
3679
3680 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
3681
3682         * class.c (mono_class_layout_fields): Add experimental GC aware
3683         auto layout facility. Requires class library changes to work correctly.
3684
3685         (mono_class_setup_vtable): Avoid overriding explicit interface
3686         method implementations. Fixes iface3.exe test.
3687
3688         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
3689         object reference.
3690         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
3691         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
3692
3693         * metadata.h: Add new type classification macro which determines
3694         whenever the type holds an object reference.
3695
3696 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
3697
3698         * marshal.c (mono_marshal_get_native_wrapper): cleanups
3699
3700 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
3701
3702         * gc.c (finalizer_thread): Work around a GC bug.
3703
3704 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
3705
3706         * marshal.c (emit_struct_conv): allow unions
3707
3708         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
3709
3710 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
3711
3712         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
3713
3714 2003-05-06  Martin Baulig  <martin@ximian.com>
3715
3716         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
3717
3718 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3719
3720         * socket-io.c:
3721         (Select_internal): allow NULLs, don't create arrays if not needed.
3722         Coupled with Socket.cs changes.
3723
3724         * threadpool.c:
3725         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
3726         register a finalizer for it that will close the semaphore handle. This
3727         fixes the leak and make Lupus' test run with > 4080 loops.
3728
3729 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
3730
3731         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
3732         Jerome Laban (bug #42287)
3733
3734 2003-05-02  Martin Baulig  <martin@ximian.com>
3735
3736         * debug-mono-symfile.h
3737         (MonoSymbolFile): Moved declaration into mono-debug.h.
3738         (MonoDebugMethodJitInfo): Likewise.
3739         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
3740         argument.
3741         (_mono_debug_address_from_il_offset): Take a
3742         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
3743
3744         * mono-debug.h
3745         (MonoDebugDomainData): New struct.
3746         (mono_debug_get_domain_data): New function.
3747         (mono_debug_add_method): Take an additional `MonoDomain *'
3748         argument.
3749         (mono_debug_source_location_from_address): Likewise.
3750         (mono_debug_il_offset_from_address): Likewise.
3751         (mono_debug_address_from_il_offset): Likewise.
3752
3753 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
3754
3755         * reflection.c: one more check for null type in custom attrs.
3756
3757 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3758
3759         * reflection.c: avoid warning (comparison is always false due to limited
3760         range of data type).
3761
3762 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3763
3764         * icall.c: throw an exception in Type.GetField if the argument 'name'
3765         is NULL.
3766
3767 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
3768
3769         * reflection.c: fixed handling of enums in named arguments to custom
3770         attributes (bug #42123).
3771
3772 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
3773
3774         * reflection.c: use the right array element type and handle
3775         a null for a Type argument, too.
3776
3777 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
3778
3779         * reflection.c: handle arrays as arguments to custom attributes.
3780
3781 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
3782
3783         * reflection.c: handle a string value in a custom attr
3784         ctor that takes an object.
3785
3786 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
3787
3788         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
3789         (fix bug #42063)
3790
3791 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
3792
3793         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
3794
3795 2003-04-27  Martin Baulig  <martin@ximian.com>
3796
3797         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3798         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
3799         MONO_DEBUGGER_EVENT_BREAKPOINT.
3800         (mono_breakpoint_trampoline_code): Removed.
3801         (mono_debugger_event_handler): The last argument is now a
3802         `guint32'.
3803         (mono_debugger_insert_breakpoint_full): Removed the
3804         `use_trampoline' argument.
3805         (mono_debugger_method_has_breakpoint): Likewise.
3806         (mono_debugger_trampoline_breakpoint_callback): Renamed to
3807         mono_debugger_breakpoint_callback(); take the method and
3808         breakpoint number as arguments.
3809
3810 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
3811
3812         * metadata.c: fix off by one when loading parameters attributes.
3813
3814 2003-04-24  Martin Baulig  <martin@ximian.com>
3815
3816         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
3817
3818 2003-04-24  Martin Baulig  <martin@ximian.com>
3819
3820         * mono-debug-debugger.c: Moved all code which interacts with the
3821         Mono Debugger here.
3822
3823         * debug-mono-symfile.c: This code now just deals with the symbol
3824         file itself, the debugger code is now in mono-debug-debugger.c.
3825
3826 2003-04-23  Martin Baulig  <martin@ximian.com>
3827
3828         * mono-debug.c (mono_debug_source_location_from_il_offset):
3829         New method; like mono_debug_source_location_from_address(), but
3830         takes an IL offset instead of a machine address.
3831
3832 2003-04-23  Martin Baulig  <martin@ximian.com>
3833
3834         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
3835         `line' field; this is now computed by the debugger.
3836
3837 2003-04-23  Martin Baulig  <martin@ximian.com>
3838
3839         * mono-debug.[ch]: New files.  This is the new debugging interface.
3840
3841         * mono-debug-debugger.[ch]: New files.  Moved all code which
3842         interacts with the Mono Debugger here.
3843
3844 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
3845
3846         * domain.c (mono_init): initialize mono_defaults.monitor_class
3847
3848 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
3849
3850         * reflection.c (method_encode_code): Add a spicy exception to help
3851         future compiler authors.
3852
3853 2003-04-21  Martin Baulig  <martin@ximian.com>
3854
3855         * icall.c
3856         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
3857         Make this work with relative pathnames; g_filename_to_uri() needs
3858         an absolute filename.
3859
3860 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
3861
3862         * icall.c: Track name changes in Object and ValueType.
3863
3864 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
3865
3866         * metadata.c (mono_type_stack_size): size should be a multiple of
3867         sizeof (gpointer)
3868
3869 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3870
3871         * gc.c:
3872         (internal_domain_finalize): moved into mono_domain_finalize. No need
3873         to create another thread because the finalizers will be run in the
3874         finalizer thread.
3875         
3876         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
3877         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
3878         to be run (MS does this too).
3879
3880 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
3881
3882         * object.c (mono_class_compute_gc_descriptor): Update comment.
3883
3884         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
3885
3886         * image.h: Add synchronized wrapper cache.
3887
3888         * image.c (do_mono_image_open): Initialize cache.
3889
3890         * reflection.c (create_dynamic_mono_image): Initialize cache.
3891
3892 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3893
3894         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
3895         ves_icall_System_Buffer_ByteLengthInternal.
3896
3897 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
3898
3899         * reflection.c: setup klass->nested_in earlier. Allow
3900         a dash in the assembly name.
3901
3902 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
3903
3904         * metadata.c (mono_type_to_unmanaged): dont access
3905         type->data.klass for MONO_TYPE_OBJECT
3906         (mono_type_to_unmanaged): consider System.Delegate class
3907
3908 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
3909
3910         * class.c: just setup supertypes in the proper place instead of
3911         initializing the full element class for arrays.
3912
3913 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
3914
3915         * class.c: ensure the element class of arrays is initialized.
3916         Setup the supertype info for array classes, too.
3917
3918 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
3919
3920         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
3921
3922 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3923
3924         * Makefile.am: re-added -m option when running cygpath. This way,
3925         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
3926         separator.
3927         * mono-config.c: same codepath for locating mono config file for WIN32
3928         and the rest.
3929         * assembly.c: if mono_assembly_setrootdir is called, don't override
3930         the value set.
3931
3932 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3933
3934         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
3935         MONO_ASSEMBLIES variable.
3936
3937 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
3938
3939         * icall.c: added Assembly::GetNamespaces() icall.
3940
3941 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3942
3943         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
3944
3945 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
3946
3947         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
3948         * object.c: fixed bug in the construction of vtable for proxies
3949
3950 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
3951
3952         * object.c (mono_array_new): Mark mono_array_new as an icall.
3953
3954 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3955
3956         * class.c: fixed test for public method when overriding interfaces.
3957         Closes bug #40970.
3958
3959 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
3960
3961         * appdomain.h, domain.c: added mono_domain_foreach() to
3962         be able to access the currently loaded appdomains.
3963         * object.c: make string interning work across sppdomains.
3964         Mark some functions for use as icalls.
3965
3966 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
3967
3968         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
3969
3970         * reflection.h reflection.c: Allocate long living data using 
3971         GC_MALLOC_ATOMIC so the collector does not need to scan it.
3972
3973         * reflection.c: Double the allocation size in streams instead of
3974         increasing it, to prevent unneccesary copying on large assemblies.
3975         
3976         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
3977         creation if the assembly does not have the Run flag set.
3978
3979 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
3980
3981         * class.h: avoid the C++ keywords in header files (Jerome Laban
3982         spotted and fixed this).
3983
3984 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3985
3986         * object.c:
3987         (mono_unhandled_exception): fill in the arguments for the
3988         UnhandledException event. Only trigger that event for the default
3989         domain (as MS does).
3990
3991 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
3992
3993         * object.c: Improve typed allocation stuff based on suggestions from
3994         Paolo. Also turn it on if the GC library supports it.
3995
3996 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
3997
3998         * object.c object.h class.h: Added experimental typed allocation
3999         facility using the interfaces in gc_gcj.h.
4000
4001         * os/gc_wrapper.h: Added new include files.
4002         
4003 2003-04-03  Martin Baulig  <martin@ximian.com>
4004
4005         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
4006         which is not yet enabled by default.
4007
4008         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
4009         functions.
4010         (mono_gc_lock, mono_gc_unlock): New static functions.
4011
4012         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
4013         functions; stop/start the world for the garbage collector.  This
4014         is using the windows API; we need to complete the SuspendThread()/
4015         ResumeThread() implementation in the io-layer to make this work on Unix.
4016         (mono_gc_push_all_stacks): New public function; tells the garbage
4017         collector about the stack pointers from all managed threads.
4018
4019 2003-04-03  Martin Baulig  <martin@ximian.com>
4020
4021         * object.h (MonoThread): Added `gpointer stack_ptr'.
4022
4023         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
4024
4025 2003-04-03  Martin Baulig  <martin@ximian.com>
4026
4027         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
4028
4029 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
4030
4031         * reflection.c (typebuilder_setup_fields): Initialize field.first and
4032         field.last.
4033
4034 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
4035
4036         * loader.c (mono_lookup_internal_call): Report the corlib that is
4037         out of sync.
4038
4039 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
4040
4041         * icall.c (ves_icall_type_GetTypeCode): fixed check for
4042         System.DBNull (it's class not valuetype).
4043
4044 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
4045
4046         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
4047         if the array method was already assigned a token (fixes bug#40646).
4048
4049 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
4050
4051         * reflection.c (mono_reflection_get_type): Attempt type resolve even
4052         if no assembly is given.
4053
4054 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
4055
4056         * metadata.h: Added the new tables.
4057
4058         * row-indexes.h: Added definitions for new tables.
4059
4060         * metadata.c: Add schemas for new tables, and add support for
4061         computing the sizes of them.
4062
4063         * class.c: Update for handling the new type cases.
4064
4065 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
4066
4067         * metadata.h (MONO_TYPE_IS_VOID): new macro
4068
4069 2003-03-31  Martin Baulig  <martin@ximian.com>
4070
4071         * threads.h (MonoThreadCallbacks): Added `thread_created'.
4072
4073         * threads.c (mono_thread_new_init): Call `thread_created' in the
4074         mono_thread_callbacks.
4075
4076 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
4077
4078         * loader.h: added marshalbyrefobject_class to mono_defaults
4079         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
4080         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
4081           generation of output parameters.
4082           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
4083         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
4084           contextbound and the target object belongs to the context of the caller.
4085         * object.h: added context and unwrapped_server variables in MonoRealProxy.
4086         * object.c: Implemented support for interfaces and abstract classes
4087           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
4088           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
4089
4090 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
4091
4092         * class.h class.c (mono_class_is_subclass_of): New function.
4093         
4094         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
4095         routines for most common case (calls from ArrayList::ToArray).
4096
4097         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
4098         routine so programs which call Environment::Exit() can be profiled.
4099
4100         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
4101         Added MONO_ARCH_SAVE_REGS.
4102
4103         * icall.c (ves_icall_type_is_subtype_of): Use new function.
4104
4105 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
4106
4107         * blob.h: Add a couple of new MonoType types definitions.
4108
4109         * tabledefs.h: Add a couple of new call convs.
4110
4111 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
4112
4113         * reflection.h (MonoReflectionDynamicAssembly): track changes in
4114         the layout of the class.
4115
4116         * reflection.c (alloc_table): double the size on overflow to avoid
4117         unnecessary copying.
4118
4119         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
4120         avoid filling out metadata tables and blobs. Also set mb->ilgen to
4121         null so it can be garbage collected.
4122         
4123 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
4124
4125         * reflection.c (mono_reflection_get_type): Return the resolved type
4126         only if it is in the assembly we searched.
4127
4128         * reflection.c (ensure_runtime_vtable): Initialize method slots.
4129
4130         * class.c (mono_class_setup_vtable): Set the slot of the overriding
4131         method.
4132
4133 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4134
4135         * appdomain.c:
4136         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
4137         the right one is 'file:///blah', but MS allows it.
4138         * assembly.c:
4139         (mono_assembly_open): allow 'file://blah'
4140
4141         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
4142
4143 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
4144
4145         * socket-io.c: fixes bug #40310.
4146
4147 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
4148
4149         * reflection.c (mono_reflection_parse_type): handle deeply nested
4150         types correctly.
4151
4152         * reflection.c (mono_image_create_token): Use unique token values
4153         since they will be put into a hash table.
4154
4155         * class.c (mono_class_setup_vtable): If a method occurs in more than
4156         one place in the vtable, and it gets overriden, then change the
4157         other occurances too.
4158
4159         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
4160         object as return type.
4161
4162 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
4163
4164         * icall.c: Deleted "ToString" implementation for double and float
4165         because they are full implemented in managed code.
4166
4167 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
4168
4169         * reflection.c, reflection.h: implemented and exported functions
4170         to retrieve info about custom attributes.
4171
4172 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4173
4174         * appdomain.c: moved Uri handling to assembly.c
4175         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
4176         work when using a file Uri in *nix and windows.
4177
4178         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
4179         GetReferencedAssemblies.
4180
4181 2003-03-18  Dick Porter  <dick@ximian.com>
4182
4183         * icall.c: Rename a couple of internal calls
4184
4185         * threads.c: Set the thread state to Stopped when a thread exits.
4186         Fixes bug 39377.
4187
4188 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
4189
4190         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
4191         New icall.
4192
4193         * object.c (mono_class_vtable): fix warning.
4194
4195 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
4196
4197         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
4198
4199         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
4200         memory.
4201         (method_encode_clauses): Create exception info structures in the right
4202         order.
4203         (mono_reflection_setup_internal_class): Initialize supertypes field.
4204
4205         * class.c object.c: Handle interfaces which implement other interfaces 
4206         correctly.
4207
4208         * class.h class.c: Move the supertypes array initialization code into 
4209         a separate function so it can be used for dynamic types too. Also call
4210         it earlier, in mono_class_init(), since it can be used before the
4211         type is initialized.
4212
4213 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4214
4215         * Makefile.am:
4216         * assembly.c:
4217         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
4218
4219         * appdomain.c:
4220         * appdomain.h:
4221         * marshal.c:
4222         * object.c: remove warnings.
4223
4224 2003-03-13  Martin Baulig  <martin@ximian.com>
4225
4226         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
4227         (MonoDebugLexicalBlockEntry): New types.
4228
4229         * debug-mono-symfile.c
4230         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
4231
4232 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4233
4234         * process.c: ret can be any non-zero value accroding to MS doc.
4235
4236 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
4237
4238         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
4239         fixing a warning for a miss-used prototype, would have cause
4240         random memory corruption.
4241
4242 2003-03-07  Martin Baulig  <martin@ximian.com>
4243
4244         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
4245         getting really annoying ....
4246
4247 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
4248
4249         * reflection.c (fixup_method): added support for array methods.
4250
4251 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
4252
4253         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
4254         (pointed out by Michael Adams).
4255
4256 2003-03-04  Dick Porter  <dick@ximian.com>
4257
4258         * icall.c: Temporarily reverted the Double and Single ToString()
4259         change, because it broke nunit.
4260
4261 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
4262
4263         * object.h, threads.h: make include files compatible with C++
4264         (patch by Jerome Laban <jlaban@wanadoo.fr>).
4265
4266 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
4267
4268         * icall.c: Erased ToString helper functions for Double and Single.
4269         Now, that implementations ar all in managed code (Double and Single
4270         Formatters).
4271
4272 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
4273
4274         * appdomain.c: Added method for initializing the default context of
4275         a domain. Added internal call for getting the default context.
4276         * appdomain.h: Added context variable in MonoDomain struct.
4277         * domain.c: mono_domain_set also sets the default context of the domain
4278         * icall.c: Mapped internal method InternalGetDefaultContext.
4279         * object.c: mono_object_get_virtual_method returns always a remoting
4280         wrapper if the object is a transparent proxy.
4281         mono_runtime_invoke_array: when creating an object by calling the
4282         constructor, if the created object is a proxy, then the constructor should
4283         be called using the a remoting wrapper.
4284
4285 2003-03-03  Dick Porter  <dick@ximian.com>
4286
4287         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
4288         variable so it compiles on solaris.  Problem spotted by
4289         Christopher Taylor <ct@cs.clemson.edu>
4290
4291 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4292
4293         * appdomain.c:
4294         (get_info_from_assembly_name): don't leak value.
4295
4296         * icall.c:
4297         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
4298         result.
4299
4300 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
4301
4302         * assembly.c: export mono_image_load_references ().
4303         * class.c: handle function pointers. mono_class_from_name() now
4304         supports nested type names directly.
4305
4306 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
4307
4308         * reflection.h reflection.c: Encode already created dynamic methods 
4309         and fields correctly as a DEF instead of a REF.
4310
4311         * reflection.c: Get rid of the force_ref argument to 
4312         mono_image_typedef_or_ref since it was wrong in the first place.
4313
4314         * string-icalls.c: add error checking to string constructors according
4315         to the MSDN docs.
4316
4317         * reflection.c: Emit types in the order their TypeBuilders were 
4318         created. Previously, a new table index was assigned to each type before
4319         the tables were emitted. This was wrong because the signature blob
4320         might already refer to a type by its original table index.
4321
4322 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
4323
4324         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
4325         change.
4326         
4327 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4328
4329         * Makefile.am: make assemblies dir have \ instead of / on windows.
4330
4331 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
4332
4333         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
4334         iterate over the NESTEDCLASS table using a linear search since the
4335         table is not guaranteed to be sorted by the secondary key.
4336
4337         * class.c (mono_class_create_from_typedef): fixed up call to
4338         mono_metadata_nesting_typedef.
4339         
4340 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
4341
4342         * marshal.c (mono_string_to_byvalstr): clear the memory as
4343         suggested by Jerome Laban <jlaban@wanadoo.fr>
4344
4345 2003-02-26  Dick Porter  <dick@ximian.com>
4346
4347         * process.c: Cope with padding in .rsrc blocks
4348
4349 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
4350
4351         * metadata.h: reverted the filter_len change, it breaks reflection
4352         
4353 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
4354
4355         * metadata.h: added a new field to store the filter_len
4356         
4357
4358 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
4359
4360         * reflection.c: handle custom attributes for types and members
4361         created with Reflection.Emit (bug#38422).
4362
4363 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
4364
4365         * reflection.c: define RTSpecialName automatically for constructors for
4366         compatibility with MS.NET.
4367
4368         * reflection.c (mono_reflection_create_runtime_class): initialize
4369         nested_in field of dynamically created classes.
4370
4371 2003-02-22  Martin Baulig  <martin@ximian.com>
4372
4373         * debug-mono-symfile.h: Incremented version number.
4374
4375 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
4376
4377         * object.h icall.c process.c: fix warnings.
4378
4379 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
4380
4381         * appdomain.h appdomain.c:
4382         (mono_domain_try_type_resolve): split the 
4383         name_or_tb argument into a name and a tb argument.
4384         (mono_domain_has_type_resolve): new function to check whenever the
4385         application has registered a TypeResolve event handler.
4386         
4387         * icall.c reflection.h reflection.c: move the type resolve logic into
4388         mono_reflection_get_type () so it will be invoked when 
4389         Assembly::GetType () is called.
4390
4391         * reflection.c:
4392         (mono_reflection_get_type): renamed to get_type_internal.
4393         (mono_reflection_get_type): fixed type name generation so it works 
4394         for nested types too.
4395         (mono_reflection_get_type): call has_type_resolve () to avoid the 
4396         costly type name generation if there is no resolve event handler.
4397
4398 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
4399
4400         * class.c, image.c: load exported types from file references.
4401
4402 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
4403
4404         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
4405           used to cache the managed methods used to create proxies and make 
4406           remote invocation of methods.
4407         * class.h: Added in MonoVTable a flag to indicate that a class needs 
4408           to be remotely created.
4409         * object.c: Modified the method mono_class_vtable(). It now initializes 
4410           the remote flag of the vtable. Modified mono_object_new_specific(), 
4411           so now it checks the remote flag.
4412         * icall.c: Added a couple of internal methods, one for enabling instance 
4413           creation interception for a type, and one for creating objects bypassing
4414           the remote check.
4415
4416 2003-02-18  Martin Baulig  <martin@ximian.com>
4417
4418         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
4419         New interncall to get a method's metadata token.
4420
4421         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
4422         New interncall for the debugger.
4423
4424 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
4425
4426         * class.c (mono_class_setup_vtable): allocate supertype array
4427
4428 2003-02-18  Martin Baulig  <martin@ximian.com>
4429
4430         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
4431
4432 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4433
4434         * reflection.c:
4435         (assembly_name_to_aname): jump over unknown properties (i've found
4436         something like: 'type, assembly, version=xxx, custom=null, public...',
4437         so now will ignore custom=null and still get the rest of the values).
4438
4439 2003-02-17  Dick Porter  <dick@ximian.com>
4440
4441         * threads.c: Have Thread.Start() wait for a semaphore to signal
4442         that the thread has set up all its local data.  This fixes bug
4443         34323, where Abort() raced the new thread's TLS data.
4444
4445         Also removes the handle_store() call from start_wrapper, because
4446         threads are now always created suspended and there is no longer a
4447         race between the parent and child threads to store the info.
4448
4449 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
4450
4451         * image.c: explain the #- heap issue in a message, hopefully
4452         avoiding FAQs on mono-list.
4453
4454 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4455
4456         * icall.c:
4457         (GetEntryAssembly): if the domain has not invoked
4458         AppDomain.ExecuteAssembly yet, return the assembly of the default
4459         AppDomain.
4460
4461 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
4462
4463         * class.c (mono_ldtoken): make it work in dynamic assemblies.
4464
4465 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
4466
4467         * metadata.c, reflection.c: simple speedup to type hash
4468         and equals code.
4469
4470 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
4471
4472         * image.c, image.h, class.c, assembly.c: move module loading
4473         to MonoImage. When loading metadata, consider alignemnet from
4474         the start of metadata, not from the metadata address in memory.
4475
4476 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
4477
4478         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
4479         AssemblyBuilder objects. Factored out custom attribute creation into
4480         a separate function.
4481         (create_custom_attr): new function to create custom attributes.
4482
4483 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
4484
4485         * Makefile.am: Got tired of typing the full pathname to pedump.
4486         Until there is another option, am installing this.
4487
4488 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
4489
4490         * class.c (class_compute_field_layout): always set field->parent 
4491         (mono_ldtoken): use mono_defaults.fieldhandle_class;
4492
4493 2003-02-11  Dick Porter  <dick@ximian.com>
4494
4495         * threads-types.h:
4496         * monitor.c: Rewrote Monitor, making lock much faster and
4497         Pulse/Wait work as specified.  Also uses much fewer handles, and only
4498         creates them as needed.
4499
4500         * exception.c: Added SynchronizationLockException
4501
4502         * threads.c: Deleted old Monitor implementation.  The new one is
4503         in a new file.
4504
4505 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
4506
4507         * class.c: handled TypedReference type code. Set the correct size for
4508         class data. Setup interface_offsets for interface classes, too.
4509
4510 2003-02-09  Martin Baulig  <martin@ximian.com>
4511
4512         * debug-mono-symfile.h: Reflect latest symbol writer changes.
4513
4514 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
4515
4516         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
4517         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
4518         * object.c: fixed mono_object_get_virtual_method () for interfaces.
4519         * verify.c: check for code that runs after the end of the method.
4520
4521 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
4522
4523         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
4524         "System.Math::Round2".
4525         * sysmath.h: Added Floor, Round and Round2 definitions.
4526         * sysmath.c: Modified certain functions that were not 100% compliant
4527         with MS.NET (math precision) and added the implementation of Floor,
4528         Round and Round2.
4529
4530 2003-02-07  Martin Baulig  <martin@ximian.com>
4531
4532         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
4533
4534 2003-02-07  Martin Baulig  <martin@ximian.com>
4535
4536         * debug-mono-symfile.c: Reflected latest symwriter changes.
4537         (mono_debug_create_mono_symbol_file): Removed.
4538         (mono_debug_open_mono_symbol_file): Take an argument which
4539         specifies whether to create a dynamic symbol file.
4540
4541 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
4542
4543         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
4544
4545 2003-02-05  Martin Baulig  <martin@ximian.com>
4546
4547         * reflection.c (mono_image_build_metadata): Make this public,
4548         protect it against being called multiple times, don't create
4549         resources and don't build the compressed metadata here.
4550         (mono_image_create_pefile): Do this here.
4551
4552         * icall.c
4553         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
4554
4555 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * socket-io.c: fixed bug #36322.
4558
4559 2003-02-06  Piers Haken <piersh@friskit.com>
4560
4561         * appdomain.[ch]:
4562         * class.h:
4563         * debug-mono-symfile.c:
4564         * icall.c:
4565         * loader.c:
4566         * mono-config.c:
4567         * monosn.c:
4568         * reflection.c:
4569         * socket-io.c: warning cleanups
4570
4571 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
4572
4573         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
4574         function. works like remoting invoke, but does a check for the Proxy first.
4575
4576 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
4577
4578         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
4579
4580 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
4581
4582         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
4583         array of pointers.
4584         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
4585         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
4586
4587         * object.c (mono_store_remote_field_new): used by the new jit
4588         instead of mono_store_remote_field
4589         (mono_load_remote_field_new): used by the new jit
4590         instead of mono_load_remote_field
4591
4592 2003-02-05  Patrik Torstensson
4593
4594         * appdomain.c: changed unload to take the domain id instead
4595         of domain
4596         
4597         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
4598
4599
4600 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4601
4602         * appdomain.c: don't look for assemblies in ApplicationBase if
4603         PrivateBinPathProbe is set.
4604
4605 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4606
4607         * object.c: make the first argument in main_args contain the absolute
4608         path to the assembly. Fixes bug #37511.
4609
4610 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4611
4612         * icall.c: get correct UTC offset for countries not using daylight
4613         time saving. Fixes bug #30030.
4614
4615 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4616
4617         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
4618         and 1 are the family).
4619
4620 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
4621
4622         * icall.c (ves_icall_InternalExecute): removed wrong assertion
4623
4624         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
4625
4626 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
4627
4628         * reflection.c: added support for SignatureHelper tokens, which is
4629         needed by the Calli opcode.
4630
4631         * reflection.h: track changes to SignatureHelper class.
4632
4633         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
4634
4635 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4636
4637         * appdomain.c: fixed loading assemblies from PrivateBinPath.
4638
4639 2003-02-03  Patrik Torstensson
4640         * appdomain.[c|h], domain.c : 
4641          - Added support for getting a domain via domain id
4642          - Support for setting and getting domain from System.AppDomain 
4643            (used in cross appdomain channel)
4644          - Added support for get/set for a MonoAppContext on a thread 
4645            (Context class in System.Runtime.Remoting.Contexts),
4646          - Removed hack in Get/SetData and ExecuteAssembly.
4647         
4648         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
4649         the managed world to get control when a proxy is created.
4650
4651         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
4652         
4653 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
4654
4655         * icall.c
4656         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4657         Populate the codebase field as well.
4658
4659 2003-02-02  Martin Baulig  <martin@ximian.com>
4660
4661         * debug-mono-symfile.c
4662         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
4663         (mono_debug_symfile_add_method): Allow interncalls.
4664
4665 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4666
4667         * icall.c: throw parse exception if strtod fails or the string is empty.
4668
4669 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
4670
4671         * marshal.c: handle object type separately from defined
4672         class types.
4673
4674 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
4675
4676         * marshal.c: handle NATIVE_LPSTR for strings when it's
4677         explicitly specified.
4678
4679 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
4680
4681         * reflection.c, reflection.h, icall.c: setup the reflection
4682         handle cache for ModuleBuilders and AssemblyBuilders.
4683
4684 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
4685
4686         * reflection.c (reflection_methodbuilder_to_mono_method): set
4687         pinvoke flag
4688
4689 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4690
4691         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
4692
4693 2003-01-29  Dick Porter  <dick@ximian.com>
4694
4695         * threads.c: No need for the fake_thread kludge now that Thread
4696         doesn't run a class constructor
4697         
4698 2003-01-29  Dick Porter  <dick@ximian.com>
4699
4700         * threads.c: Use g_direct_hash instead of the rather bogus
4701         g_int_hash
4702
4703 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
4704
4705         * marshal.c (mono_marshal_get_native_wrapper): add check for null
4706         (fix pinvoke12.exe)
4707         (mono_marshal_get_struct_to_ptr): generate valid IL code
4708         (mono_marshal_get_ptr_to_struct): generate valid IL code
4709         (*): correctly set sig->pinvoke, we need to memdup the signature
4710         to do that
4711
4712 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
4713
4714         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
4715         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
4716
4717 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
4718
4719         * profiler.c: provide more callers information.
4720
4721 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
4722
4723         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
4724
4725         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
4726
4727         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
4728
4729 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4730
4731         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
4732         exception instead of going into an infinite loop on dates which it 
4733         can't yet handle.
4734
4735         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
4736         out-of-range exception if needed.
4737
4738         * class.c (mono_class_setup_vtable): allow a virtual method to provide
4739         an implementation for an interface method and to override an inherited
4740         method at the same time. 
4741         Imagine a scenario when a virtual method is used to override a
4742         virtual abstract method in a parent class, and this same method 
4743         provides an implementation for an method inherited from an interface. 
4744         In this case, the interface resolution code will set im->slot, which 
4745         means that the virtual method override pass will skip this method 
4746         which means a pointer to the abstract method inherited from the parent
4747         will remain in the vtable of this non-abstract class.
4748
4749         * class.c: (mono_class_setup_vtable): continue search for a real 
4750         method if only an abstract method is found.     
4751
4752 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
4753
4754         * reflection.c: add size to encoding for ByValStr and ByValArray
4755         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
4756
4757 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4758
4759         * class.c (mono_class_setup_vtable): pass the override info as an
4760         argument.
4761
4762         * class.c (mono_class_setup_vtable): set the slot of overriding methods
4763         correctly.
4764         
4765         * reflection.c (ensure_runtime_vtable); add support for method 
4766         overrides.
4767         
4768 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4769
4770         * reflection.c (resolution_scope_from_image): Hack to work to work with
4771         dynamic assemblies.
4772
4773         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
4774         added a 'force_ref' argument to force this function to allways return 
4775         a TypeRef. This is needed by mono_image_get_memberref_token ().
4776         
4777 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4778
4779         * reflection.c (mono_image_get_type_info): interfaces really don't have
4780         a parent.
4781
4782         * reflection.c (mono_image_basic_init): fill out missing fields of
4783         image structure.
4784
4785         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
4786         dynamic assemblies. This is required so dynamic assemblies show up in
4787         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
4788         Type::GetType() etc. This is consistent with MS behaviour.
4789
4790         * image.c image.h reflection.c: add newly created classes to the name 
4791         cache so mono_class_get () will find them.      
4792
4793 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
4794
4795         First part of changes to get IKVM.NET running under mono.
4796         
4797         * appdomain.h, appdomain.c: added new function 
4798         mono_domain_try_type_resolve() which will emit TypeResolve events. 
4799         This function will call AppDomain::DoTypeResolve to do the actual work.
4800
4801         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
4802         moved existing code dealing with dynamic tokens to a new function 
4803         called mono_reflection_lookup_dynamic_token (). This function will 
4804         raise TypeResolve events when appropriate. Since reflection.c is not 
4805         part of libmetadata, a new hook function called 
4806         mono_lookup_dynamic_token() is added to class.c which will call this.
4807
4808         * assembly.h assembly.c: make the invoke_load_hook function public,
4809         so it can be called for dynamic assemblies.
4810
4811         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
4812
4813         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
4814         type isn't found.
4815
4816         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
4817         MonoGHashTable, since it contains pointers to objects which the GC 
4818         needs to track.
4819
4820         * assembly.c (search_loaded): remove unused variable.
4821         
4822 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
4823
4824         * object.c: fixed issue exposed by gcc-generated IL programs
4825         that use RVA data for pointers.
4826
4827 2003-01-25  Martin Baulig  <martin@ximian.com>
4828
4829         * threads.c (start_wrapper): Moved the initialization of
4830         `start_func' above the mono_new_thread_init() call to which we
4831         pass it as argument.
4832
4833 2003-01-24  Martin Baulig  <martin@ximian.com>
4834
4835         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
4836         the MonoThread pointer.
4837
4838 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
4839
4840         * icall.c: Rename `PowImpl' to Pow.
4841
4842 2003-01-23  Dick Porter  <dick@ximian.com>
4843
4844         * threads.c (start_wrapper): Create a Thread object if needed, so
4845         the Main() thread can do the class initialisation in a subthread
4846         that has been set up to allow managed code execution.
4847
4848         Pass the thread ID instead of the MonoThread pointer to the thread
4849         start and attach callbacks.  This change is required, because the
4850         jit thread start callback must be called _before_ the Thread
4851         object can be created.
4852         
4853         (mono_thread_init): Removed much object creation code that is no
4854         longer needed.  No managed code is called from here now.
4855
4856         * object.c (mono_runtime_exec_managed_code): Create a subthread
4857         for Main, and call back to the runtime to use it.
4858         Set the exit code when Main exits.
4859
4860         * gc.c: Make sure domain finalisation happens in a subthread.
4861         Re-enable threaded GC, fixing bug 31333 (again).
4862
4863         * environment.c: System.Environment internall calls (so far just
4864         ExitCode is here, the others are still in icall.c)
4865
4866         * appdomain.c (mono_runtime_cleanup): All threads running managed
4867         code should have finished before mono_runtime_cleanup() is
4868         reached, so no need to clean up threads.
4869
4870 2003-01-22  Martin Baulig  <martin@ximian.com>
4871
4872         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
4873         `gpointer func' arguments.      
4874         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
4875         but added `MonoThread *thread' argument.
4876         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
4877
4878         * threads.c (mono_new_thread_init): Added `gpointer func' argument
4879         and pass it to the mono_thread_start_cb callback.
4880         (mono_install_thread_callbacks): New public function to install a
4881         set of callbacks which are set by the debugger.
4882         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
4883
4884 2003-01-22  Martin Baulig  <martin@ximian.com>
4885
4886         * Makefile.am: Install debug-mono-symfile.h.
4887
4888 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
4889
4890         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
4891
4892 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
4893
4894         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
4895         * class.c (mono_ptr_class_get): correctly set access levels of pointers
4896         (mono_array_class_get): correctly set access levels of arrays
4897
4898 2003-01-20      Patrik Torstensson
4899         * image.h (MonoAssemblyName): changed major, minor, build, revision
4900         from signed to unsigned.
4901
4902 2003-01-20  sean kasun <skasun@azstarnet.com>
4903
4904         * reflection.c (load_cattr_value): Now this handles
4905         MONO_TYPE_SZARRAY.  Fixes bug #35629
4906
4907 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
4908
4909         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
4910         integer value
4911
4912 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4913
4914         * decimal.c: fixed bug #26056.
4915
4916 2003-01-17  Martin Baulig  <martin@ximian.com>
4917
4918         * gc.c: Raise an ExecutionEngineException instead of using g_error().
4919
4920 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4921
4922         * exception.[ch]:
4923         (mono_get_exception_type_initialization): new function.
4924
4925         * object.c: throw a TypeInitializationException when an exception is
4926         thrown invoking the class constructor.
4927
4928 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4929
4930         * reflection.c: fixed attribute reading.
4931
4932 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4933
4934         * icall.c:
4935         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
4936         provided, look for the type in the calling assembly and then in
4937         mscorlib; if the assembly name is provided, only try that one.
4938
4939 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
4940
4941         * object.c: register the vtable before there is a chance it's
4942         queried again recursively.
4943
4944 2003-01-13  Duncan Mak  <duncan@ximian.com>
4945
4946         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
4947         gc-internal.h. 
4948         
4949 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
4950
4951         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
4952
4953 2003-01-11  Martin Baulig  <martin@ximian.com>
4954
4955         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
4956         this to 20 for the release.
4957
4958 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
4959
4960         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
4961
4962         * loader.c (mono_method_get_marshal_info): bug fix
4963
4964         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
4965         structures with explicit layout
4966
4967 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
4968
4969         * profiler.c: made the output more readable (and sorted). 
4970         Added caller information for the allocation profiler.
4971
4972 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
4973
4974         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
4975
4976 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4977
4978         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
4979         to get value types.
4980         
4981 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
4982
4983         * object.c, profiler.h, profiler.c, profiler-private.h:
4984         Added object allocation profiler.
4985
4986 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
4987
4988         * reflection.h, reflection.c: handle global methods.
4989         Compress blob entries.
4990
4991 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
4992
4993         * marshal.c: fix compilation.
4994
4995 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
4996
4997         * loader.c (mono_method_get_marshal_info): impl.
4998
4999         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
5000
5001 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5002
5003         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
5004         for reference types.
5005
5006 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
5007
5008         * loader.c: fixed off by one error in loaded parameter names.
5009
5010 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
5011
5012         * marshal.c (mono_marshal_get_icall_wrapper): like
5013         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
5014         instead of a MonoMethod.
5015
5016 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5017
5018         * decimal.c: fixed bug #36537.
5019
5020 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
5021
5022         * marshal.c: throw a missing method exception if a
5023         P/Invoke method is not found.
5024
5025 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
5026
5027         * icall.c: allow a null this for constructors.
5028
5029 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
5030
5031         * icall.c: raise the proper exceptions if the arguments to the
5032         internal Invoke are incorrect.
5033
5034 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
5035
5036         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
5037
5038 2003-01-03  Martin Baulig  <martin@ximian.com>
5039
5040         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
5041
5042 2002-12-31  Martin Baulig  <martin@ximian.com>
5043
5044         * debug-mono-symfile.c: Completely rewrote the type section.
5045         Instead of using individual malloc()ed fields, we use one big
5046         continuous memory area and offsets into this area.
5047         See the comments in the source code for details.
5048
5049 2002-12-30  Martin Baulig  <martin@ximian.com>
5050
5051         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
5052
5053 2002-12-30  Martin Baulig  <martin@ximian.com>
5054
5055         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
5056         line number table in this data blob instead of using an external
5057         pointer.
5058
5059 2002-12-28  Martin Baulig  <martin@ximian.com>
5060
5061         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
5062
5063 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
5064
5065         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
5066         as a boxed return type.
5067
5068 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
5069
5070         * appdomain.c
5071         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
5072         g_build_filename to properly get separators on the filename created.
5073
5074         * object.h: Small change, introduce MonoMarshalByRefObject to
5075         track the layout of that structure in the C# universe as we make
5076         changes there.
5077
5078 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
5079
5080         * object.c: removed assert to allow static fields on interfaces.
5081         * loader.c: a TypeSpec may be used for any type, not just arrays.
5082
5083 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
5084
5085         * class.c, class.h: added mono_class_array_element_size ().
5086         Ignore static methods in interfaces.
5087
5088 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5089
5090         * threads.c: fixed the build under cygwin.
5091
5092 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
5093
5094         * reflection.c: handle nullref constants. Allocate keys for
5095         reflection handles with the GC.
5096
5097 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
5098
5099         * threads.c, threads.h: added mono_thread_get_abort_signal()
5100         to get a suitable signal for thread abort.
5101
5102 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
5103
5104         * metadata.c: fix handling of ExportedType table.
5105
5106 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5107
5108         * icall.c: added WriteWindowsDebugString internal call.
5109
5110 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5111
5112         * reflection.h: added fields to match C# implementation.
5113
5114 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5115
5116         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
5117
5118 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
5119
5120         * gc.h, gc-internal.h: Rename header for GC internal calls to
5121         gc-internal.h from gc.h as to not clash with Boehm GC having its
5122         header installed as <gc.h> in outside include paths.
5123         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
5124         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
5125
5126 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5127
5128         * icall.c: assign minor, build and revision in FillName.
5129
5130 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
5131
5132         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
5133         Added support for running code generated by Reflection.Emit.
5134
5135 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5136
5137         * appdomain.c: check for NULL argument in LoadFrom.
5138
5139 2002-12-10  Dick Porter  <dick@ximian.com>
5140
5141         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
5142
5143 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5144
5145         * appdomain.c: fix buglet when building exe file name.  Handle full
5146         assembly name (needed after latest changes to AssemblyName).
5147         * image.c:
5148         (mono_image_close): free some hashtables.
5149
5150 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
5151
5152         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
5153         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
5154         on some systems (redhat 7.3) 
5155
5156 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
5157
5158         * threads.c: delete the critical section of a sync block,
5159         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
5160
5161 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
5162
5163         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
5164
5165 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5166
5167         * appdomain.[ch]: handle the assembly preload event to try loading the
5168         assemblies using the paths we have in the current domain.
5169
5170         * assembly.[ch]: created an assembly preload hook that is called to try
5171         loading the assembly by other means that the ones provided here.
5172
5173         * domain.c: initialize the domain search path.
5174
5175         From now on, assemblies (TODO: except corlib and System) are loaded
5176         according to these rules when using mono_assembly_load ():
5177
5178                 1. It tries to load the assembly from the ApplicationBase
5179                 of the current domain appending .dll and .exe (TODO: have to
5180                 try loading from name/name.dll and name/name.exe).
5181
5182                 2. It tries the search path specified in PrivateBinPath for the
5183                 current domain (if any).
5184
5185                 3. Previous behavior.
5186
5187 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
5188
5189         * icall.c: implemented GetInterfaceMap() related icall.
5190         * domain.c, loader.h: load MethodInfo in mono_defaults.
5191
5192 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
5193
5194         * gc.c: disable the finalizer thread for now, untill all the issues
5195         with it are resolved.
5196
5197 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
5198
5199         * string-icalls.c: handle embedded nulls in string ctor when the
5200         length is specified.
5201
5202 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
5203
5204         * class.c: look for explicit interface implementation in parent
5205         classes, too.
5206
5207 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
5208
5209         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
5210
5211 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
5212
5213         * gc.c: protect handles with a critical section.
5214
5215 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5216
5217         * icall.c:
5218         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
5219         parameters. If no assembly specified, try getting the type from all
5220         the assemblies in the current domain, else, load the assembly and get
5221         the type from it.
5222
5223 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5224
5225         * marshal.c: applied patch from Aleksey Demakov that fixes
5226         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
5227
5228 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5229
5230         * icall.c: fixed get_location.
5231
5232 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
5233
5234         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
5235         declarations to make it work with older gcc. 
5236
5237         * loader.c (mono_get_method): set signature->pinvoke for native calls
5238
5239 2002-11-20  Dick Porter  <dick@ximian.com>
5240
5241         * threads.c (mono_thread_init): Set the main thread's handle
5242
5243 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
5244
5245         * gc.c: allow compilation without GC support. Changed to match the
5246         mono coding style.
5247
5248 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
5249
5250         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
5251
5252 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
5253
5254         * reflection.c: set a public key token on the core assemblies.
5255
5256 2002-11-18  Dick Porter  <dick@ximian.com>
5257
5258         * threads.c: Split out some thread initialisation so that other
5259         files can set the start callback function.
5260
5261         * gc.c: Run finalisers in a separate thread, to avoid stack
5262         overflow.  Fixes bug 31333.
5263
5264         * appdomain.c: Set up GC finalisation thread.
5265
5266         * reflection.c: 
5267         * object.c: 
5268         * domain.c: Use gc.h macros for GC_malloc
5269         
5270 2002-11-15  Dick Porter  <dick@ximian.com>
5271
5272         * threadpool.c: 
5273         * threads.c:
5274         * appdomain.c: Removed mono_runtime_init_with_attach(),
5275         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
5276         merging the extra parameter with the existing function.  Removed
5277         unneeded code in mono_thread_attach().
5278
5279 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
5280
5281         * image.c (mono_image_loaded_by_guid): a method to get loaded
5282         images by guid. 
5283         (load_metadata_ptrs): we store the guid as string.
5284
5285 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
5286
5287         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
5288
5289         * metadata.c (mono_guid_to_string): imported method form Zoltan
5290         Varga (slightly modified)
5291
5292         * assembly.c (mono_assembly_open): load precompiled code
5293
5294         * loader.h (MonoMethod): we store the method token for use in the
5295         aot compiler. 
5296
5297 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5298
5299         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
5300         the hook function called when an assembly is loaded.
5301         
5302         * domain.c: Modified file.
5303         (mono_domain_assembly_load): removed hash table insertion of assemblies.
5304
5305         Fixes bug #33196.
5306
5307 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
5308
5309         * reflection.c: Map PEFileKind to the value expected by the WinNT
5310         image loader. 
5311
5312 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5313
5314         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
5315         Read until the buffer is filled completely.
5316
5317 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5318
5319         * icall.c: implemented MonoType.InternalGetEvent ().
5320
5321 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5322
5323         * appdomain.c: implemented InitAppDomainSetup. Delayed
5324         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
5325         the entry_assembly.
5326
5327         * assembly.c: base_dir is now an absolute path ending with
5328         G_DIR_SEPARATOR.
5329
5330         * icall.c: modified get_location according to the above changes.
5331
5332         * object.c: init AppDomain.SetupInformation for the default domain after
5333         we have the entry assembly.
5334
5335         * domain.c: when unloading a domain, setup = NULL.
5336
5337 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
5338
5339         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
5340
5341 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
5342
5343         * object.h, object.c: introduced mono_object_get_virtual_method ()
5344         to lookup the method invoked on an object when a callvirt is done on
5345         a method.
5346         * icall.c: make MethodInfo::Invoke() always do a virtual call.
5347
5348 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5349
5350         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
5351         current domain when loaded an assembly and failed to load it.
5352
5353         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
5354
5355 2002-10-31  Dick Porter  <dick@ximian.com>
5356
5357         * icall.c: 
5358         * file-io.h: 
5359         * file-io.c: Return the error status in a parameter, as the
5360         GetLastError() value has long since been blown away if we try and
5361         look it up in a subsequent internal call invocation.  Delete the
5362         GetLastError() internal call, because it's useless.
5363
5364 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
5365
5366         * class.[ch]: added cast_class to fix bug 29517
5367
5368 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
5369
5370         * marshal.c: create valid IL code in the filter clause:
5371         the new JIT is less forgiving:-)
5372
5373 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5374
5375         * icall.c: removed get_property internal call.
5376
5377 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
5378
5379         * appdomain.h domain.c: Added an ID to appdomains.
5380         
5381         * threads.c threads.h icall.c: Implement icall
5382         Thread:GetDomainID(), and remove unused icall 
5383         CurrentThreadDomain_internal.
5384
5385 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5386
5387         * icall.c: Don't recurse through the base types in GetConstructor.
5388         Fixes bug #32063. 
5389
5390 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
5391
5392         * mempool.h, mempool.c: added mono_mempool_empty() and
5393         mono_mempool_stats().
5394
5395 2002-10-23  Dick Porter  <dick@ximian.com>
5396
5397         * file-io.c: 
5398         * file-io.h: 
5399         * icall.c: Added MonoIO.GetFileType internal call
5400
5401 2002-10-17  Dick Porter  <dick@ximian.com>
5402
5403         * appdomain.c (mono_runtime_cleanup): Don't signal the async
5404         delegate semaphore before waiting for all threads to finish,
5405         because new threads can also call async delegates.  Fixes bug
5406         32004.
5407
5408         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
5409         of 3 seconds, in case another async job is queued.  (This part is
5410         needed because the bug fix reintroduced the 3s exit lag.)  This
5411         makes the mono_runtime_shutdown flag superfluous.
5412
5413 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
5414
5415         * reflection.c: include ehader size in method section headers.
5416         Really check for suplicated modules entries.
5417
5418 2002-10-17  Martin Baulig  <martin@gnome.org>
5419
5420         * debug-mono-symfile.c: Added back support for locals.
5421
5422 2002-10-14  Martin Baulig  <martin@gnome.org>
5423
5424         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
5425         MONO_TYPE_VOID.
5426
5427 2002-10-14  Martin Baulig  <martin@gnome.org>
5428
5429         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
5430         mono_class_get() instead of looking in the class cache. 
5431
5432 2002-10-13  Martin Baulig  <martin@gnome.org>
5433
5434         * debug-mono-symfile.c: Set version number to 28, include the
5435         signature in method names.
5436
5437 2002-10-13  Martin Baulig  <martin@gnome.org>
5438
5439         * debug-mono-symfile.h: Set version number to 27.
5440
5441 2002-10-11  Martin Baulig  <martin@gnome.org>
5442
5443         * gc.c: Don't register/unregister NULL pointers as disappearing links.
5444
5445 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
5446
5447         * metadata.c, metadata.h: added helper function to allocate signatures.
5448
5449 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5450
5451         * icall.c: added internal call to get the location of machine.config.
5452
5453 2002-10-08  Martin Baulig  <martin@gnome.org>
5454
5455         * debug-mono-symfile.c: Ignore classes with a pending init for the
5456         moment.
5457
5458 2002-10-03  Dick Porter  <dick@ximian.com>
5459
5460         * threads.c: Freebsd pthread_t is a pointer
5461
5462 2002-10-03  Dick Porter  <dick@ximian.com>
5463
5464         * socket-io.c: Implemented GetHostName_internal
5465
5466 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5467
5468         * mono-config.c:
5469         (mono_config_parse_file): don't leak the text.
5470
5471 2002-10-02  Martin Baulig  <martin@gnome.org>
5472
5473         * debug-mono-symfile.c: Added support for methods.
5474
5475 2002-10-01  Martin Baulig  <martin@gnome.org>
5476
5477         * debug-mono-symfile.c: Don't emit methods and line numbers for
5478         the dynamic symbol file, just write the type table.  We can easily
5479         have an external helper program which creates a symbol file for an
5480         IL file.        
5481
5482 2002-10-01  Dick Porter  <dick@ximian.com>
5483
5484         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
5485         Only add the handle to the cleanup array when we're about to
5486         launch the thread.  Bug 31425 deadlocked when the test was run on
5487         mono under w32.
5488
5489 2002-10-01  Martin Baulig  <martin@gnome.org>
5490
5491         * debug-mono-symfile.c: Added support for properties.
5492
5493 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
5494
5495         * reflection.c: unaligned store fix from Mark Crichton
5496         <crichton@gimp.org>.
5497
5498 2002-09-27  Martin Baulig  <martin@gnome.org>
5499
5500         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
5501         New interncall.
5502
5503 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
5504
5505         * assembly.h, assembly.c: use a sane API to hook into the assembly
5506         loading process instead of a useless special-purpouse hack
5507         (ngen needs a hook, too, for example).
5508
5509 2002-09-27  Dick Porter  <dick@ximian.com>
5510
5511         * threads.c (mono_thread_init): Call GetCurrentProcess() so
5512         io-layer can set up some process handle info.  Not needed on w32,
5513         but doesn't hurt either.
5514
5515         * process.c: Pass the program name in the second parameter to
5516         CreateProcess, so the path is searched.  Include the working
5517         directory. Implemented process name, process enumeration, and some
5518         process detail internal calls.
5519         
5520         * icall.c: Added internal calls for process lookup, and some
5521         process details
5522
5523 2002-09-26  Martin Baulig  <martin@gnome.org>
5524
5525         * assembly.c (mono_install_open_assembly_hook): New global
5526         function to install a function to be invoked each time a new
5527         assembly is loaded.
5528         (mono_assembly_open): Run this callback function if set.
5529
5530         * debug-mono-symfile.c: Put back line numbers for the dynamic
5531         symbol file and also record the .il file as source file.  This
5532         allows us to install the temporary symbol file as `file.dbg' just
5533         like a compiler-generated one.
5534
5535 2002-09-26  Nick Zigarovich <nick@chemlab.org>
5536
5537         * Corrected typo in gc.c (BOHEM vs BOEHM).
5538
5539 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5540
5541         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
5542         GetProperties. Also avoid calling g_slist_length in GetProperties and
5543         GetMethods.
5544
5545 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
5546
5547         * reflection.c: avoid unaligned stores (bug spotted by
5548         Mark Crichton  <crichton@gimp.org>).
5549
5550 2002-09-25  Martin Baulig  <martin@gnome.org>
5551
5552         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
5553         instead of guint64 for addresses and added prologue/epilogue info.
5554
5555 2002-09-25  Martin Baulig  <martin@gnome.org>
5556
5557         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
5558         store line number info.  For the dynamic symbol file, we only need
5559         to provide the JIT generated dynamic line number info for the dynamic
5560         symbol file.
5561
5562 2002-09-25  Martin Baulig  <martin@gnome.org>
5563
5564         * debug-mono-symfile.h: Incremented version number.
5565
5566 2002-09-24  Martin Baulig  <martin@gnome.org>
5567
5568         * class.c (mono_debugger_class_init_func): New global function
5569         pointer variable.
5570         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
5571         call it.
5572
5573         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
5574         function.  This is called via the mono_debugger_class_init_func
5575         hook to add all types to the dynamic type table.
5576         (ves_icall_MonoDebugger_GetType): New interncall to get a class
5577         from its metadata token.
5578
5579         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
5580         New interncall for the debugger.
5581
5582 2002-09-24  Nick Drochak <ndrochak@gol.com>
5583
5584         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
5585         before using it in case it is null.
5586         
5587 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5588
5589         * metadata.c: allow custom modifiers in local var signatures
5590         (bug spotted by Zoltan Varga).
5591
5592 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
5593
5594         * class.c: deal with the <Module> class that may have a NULL vtable.
5595         Eliminate warnings.
5596
5597 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
5598
5599         * image.c, image.h: more strong name helpers.
5600         * monosn.c: more work: convert pem keys to cryptoapi format.
5601
5602 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
5603
5604         * string-icalls.c: speedup IndexOf.
5605
5606 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
5607
5608         * icall.c: updates from Zoltan.2.Varga@nokia.com.
5609
5610 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
5611
5612         * icall.c: cleanup: use mono_object_domain ().
5613
5614 2002-09-23  Martin Baulig  <martin@gnome.org>
5615
5616         * debug-mono-symfile.c: Improved type support.
5617
5618 2002-09-22  Martin Baulig  <martin@gnome.org>
5619
5620         * debug-mono-symfile.c: Added support for reference types and strings.
5621
5622 2002-09-22  Martin Baulig  <martin@gnome.org>
5623
5624         * debug-mono-symfile.c: Started to work on the type table.
5625
5626 2002-09-21  Martin Baulig  <martin@gnome.org>
5627
5628         * debug-mono-symfile.c: Largely reworked the symbol table format.
5629         The symbol table is now incrementally updated each time a new
5630         method is added.  We're now also using our own magic and version
5631         so that you don't need to recompile all your classes if the
5632         dynamic table changes.
5633         (mono_debug_update_mono_symbol_file): Removed.
5634         (mono_debug_symfile_add_method): New function to add a method.
5635
5636 2002-09-21  Martin Baulig  <martin@gnome.org>
5637
5638         * icall.c
5639         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
5640         New interncall.
5641
5642         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
5643         New interncall to get a method from its metadata token.
5644
5645 2002-09-21  Martin Baulig  <martin@gnome.org>
5646
5647         * debug-mono-symfile.c: Create type table.
5648
5649 2002-09-20  Martin Baulig  <martin@gnome.org>
5650
5651         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
5652
5653 2002-09-20  Martin Baulig  <martin@gnome.org>
5654
5655         * debug-mono-symfile.c: Provide information about params and locals.
5656
5657 2002-09-20  Martin Baulig  <martin@gnome.org>
5658
5659         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
5660         New interncall.
5661
5662         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
5663         interncall to get a method from its metadata token.
5664
5665 2002-09-20  Martin Baulig  <martin@gnome.org>
5666
5667         * debug-mono-symfile.c: Added a few checks for method->header
5668         being non-NULL.  This should never happen, but for the moment
5669         let's use a g_warning() rather than a g_assert().
5670
5671 2002-09-19  Mark Crichton  <crichton@gimp.org>
5672
5673         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
5674         even if support for it isn't present.  Added an #ifdef to fix this.
5675
5676         * socket-io.c: Added checks back for Solaris support.
5677
5678 2002-09-19  Martin Baulig  <martin@gnome.org>
5679
5680         * debug-mono-symfile.c (read_string, write_string): Reflect latest
5681         changes in the symbol file format.
5682
5683 2002-09-18  Martin Baulig  <martin@gnome.org>
5684
5685         * debug-mono-symfile.c: Set version number to 21.
5686
5687 2002-09-18  Dick Porter  <dick@ximian.com>
5688
5689         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
5690         on netbsd.  Fixes bug 30051.
5691
5692 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5693
5694         * reflection.c:
5695         (set_version_from_string): little fix.
5696
5697 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
5698
5699         * monosn.c, Makefile.am: added strong name utility.
5700         * reflection.h, reflection.c: implemented delayed signing,
5701         locale, version and hash id assembly attributes.
5702
5703 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
5704
5705         * loader.c, metadata.c: load param attributes in signatures.
5706
5707 2002-09-16  Martin Baulig  <martin@gnome.org>
5708
5709         * debug-mono-symfile.c: Added string table with all method names.
5710
5711 2002-09-14  Martin Baulig  <martin@gnome.org>
5712
5713         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
5714         fast method lookup.
5715
5716 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
5717
5718         * reflection.c: record the public key token of referenced assemblies.
5719
5720 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
5721
5722         * image.c, image.h: added functions to get the strong name and the
5723         public key of an assembly.
5724         * pedump.c: use them.
5725
5726 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
5727
5728         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
5729
5730 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
5731
5732         * marshal.c (mono_marshal_get_managed_wrapper): Added
5733         MONO_TYPE_BOOLEAN 
5734
5735 2002-09-11  Martin Baulig  <martin@gnome.org>
5736
5737         * gc.c: Call GC_unregister_disappearing_link() on all links when
5738         finalizing them, this is necessary to aviod a crash in boehm's
5739         finalize handler.
5740
5741 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
5742
5743         * gc.c: handle GetTarget for finalized objects spotted and fixed by
5744         nick@chemlab.org.
5745
5746 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
5747
5748         * icall.c: implemented MonoType::Module.
5749         * reflection.c, reflection.h: mono_module_get_object () from
5750         Tomi Pakarinen <tomi.pakarinen@welho.com>.
5751
5752 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5753
5754         * icall.c: ignore overridden methods in GetMethods ().
5755         Fix for FieldInfo::SetValue().
5756         * object.c: handle float/double in runtime invoke.
5757
5758 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
5759
5760         * object.c: allow a constructor to be called again on an object.
5761
5762 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
5763
5764         * class.h, class.c: move field layout code to it's own function and
5765         export it. Get an interface id earlier. Move fields in MonoClass
5766         so they are more cache friendly and align the bitfields.
5767         * loader.c: temporary handle get_param_names() for a runtime method.
5768         * reflection.c, reflection.h: more code to handle runtime creation of
5769         types.
5770
5771 2002-09-09  Martin Baulig  <martin@gnome.org>
5772
5773         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
5774         signature with the pinvoke field being set for the actual call.
5775
5776 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
5777
5778         * icall.c: removed some unused icalls. Start of map of glib charsets
5779         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
5780
5781 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
5782
5783         * debug-helpers.c: break infinite loop (found and fixed by
5784         Holger Arnold <harnold@gmx.de>).
5785
5786 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
5787
5788         * icall.c: target may be null in create_delegate.
5789
5790 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
5791
5792         * marshal.c: handle a boolean return type.
5793
5794 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
5795
5796         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
5797
5798 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
5799
5800         * gc.c: fix weakreferences.
5801
5802 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
5803
5804         * icall.c: added icall to get default codepage.
5805
5806 2002-09-03  Dick Porter  <dick@ximian.com>
5807
5808         * threads.h: 
5809         * threads.c: Use MonoThread instead of MonoObject where
5810         apropriate.
5811
5812         Store running thread objects in a hash table, so that we have all
5813         the info to hand when waiting for them to finish
5814         (means we don't need OpenThread() any more, so mingw builds should
5815         be fully functional again.)
5816
5817         * verify.c:
5818         * object.h: Added thread ID to MonoThread
5819
5820 2002-09-03  Martin Baulig  <martin@gnome.org>
5821
5822         * icall.c (System.Reflection.Assembly::get_location): New interncall.
5823
5824 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5825
5826         * icall.c: fixed leak in get_temp_path. Thanks lupus.
5827
5828 2002-09-03  Martin Baulig  <martin@gnome.org>
5829
5830         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
5831         argument to store the end address of the disassembled instruction.
5832
5833         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
5834         here from debug-symfile.h.
5835         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
5836         JIT into this struct.
5837         (MonoSymbolFile): Added `char *image_file' field.
5838         (MonoDebugGetMethodFunc): Removed.
5839         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
5840         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
5841         (mono_debug_find_method): New method.
5842
5843         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
5844         create a full symbol file.
5845         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
5846         and static symbol files.
5847         (mono_debug_find_method): The symbol file keeps an internal method hash,
5848         call this to get a MonoDebugMethodInfo from a MonoMethod.
5849
5850         * debug-symfile.[ch]: Removed.
5851
5852 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
5853
5854         * image.c (do_mono_image_open): Remove linker version check.
5855
5856 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
5857
5858         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
5859         wrappers for instance methods.
5860         
5861 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5862
5863         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
5864
5865 2002-08-28  Dick Porter  <dick@ximian.com>
5866
5867         * Makefile.am: Export HOST_CC for w32 builds
5868
5869 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
5870
5871         * file-io.c process.c: MonoString are null terminated, no
5872         need for mono_string_to_utf16() anymore.
5873
5874 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
5875
5876         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
5877
5878 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
5879
5880         * icall.c, reflection.h: speedup System.MonoType.
5881
5882 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
5883
5884         * reflection.c: allow null as the value of a string argument in
5885         custom attributes constructors.
5886
5887 2002-08-27  Martin Baulig  <martin@gnome.org>
5888
5889         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
5890         `trampoline_address' field.
5891
5892 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
5893
5894         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
5895         check (fixes bug #29486) 
5896
5897 2002-08-27  Martin Baulig  <martin@gnome.org>
5898
5899         * debug-mono-symfile.c: Changed the file format in a way that allows us
5900         open it read-only and to use a specially malloced area for all the
5901         dynamic data.  We can now also generate a symbol file on-the-fly if we're
5902         debugging IL code and there is no MCS generated symbol file for it.
5903
5904 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
5905
5906         * object.c: added a define for a good string and array
5907         creation speedup (not enabled by default because we need to deal with
5908         the synch stuff).
5909
5910 2002-08-26  Martin Baulig  <martin@gnome.org>
5911
5912         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
5913         function to create a dynamic symbol file.  This is used by the
5914         debugger to create a symbol file for IL code on-the-fly.
5915
5916 2002-08-26  Martin Baulig  <martin@gnome.org>
5917
5918         * loader.c (mono_lookup_pinvoke_call): Include the error message
5919         from g_module_error() in the error message.
5920
5921 2002-08-24  Martin Baulig  <martin@gnome.org>
5922
5923         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
5924         function to update the symbol file.  The symbol file is mmap()ed
5925         writable, but private.  This allows us to install the symbol file
5926         together with the assembly.
5927
5928 2002-08-24  Martin Baulig  <martin@gnome.org>
5929
5930         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
5931         but they can read the new symbol file format which mcs is now creating.
5932
5933         * debug-symfile.c (mono_debug_find_source_location): Moved to
5934         debug-mono-symfile.c; this is now operating on the new symbol file.
5935
5936 2002-08-23  Martin Baulig  <martin@gnome.org>
5937
5938         * debug-helpers.c (mono_method_desc_from_method): New function to get
5939         a MonoMethodDesc from a MonoMethod.
5940
5941 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
5942
5943         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
5944         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
5945
5946 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
5947
5948         * string-icalls.[ch]: make helper methods static.
5949
5950 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5951
5952         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
5953         types to it and to SetValueInternal.
5954
5955         * object.c: Moved handle_enum label to its proper place. This was the
5956         f... bug! ;-)
5957
5958         This time i compiled mcs and gtk-sharp and they both work.
5959
5960 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5961
5962         * icall.c: reverted partially my previous patch until 
5963         object.c:set_value handles enums correcly.
5964
5965 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5966
5967         * icall.c:
5968         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
5969         (ves_icall_System_Environment_get_MachineName): removed warning when
5970         compiling under cygwin.
5971
5972 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
5973
5974         * object.c: fixed field_get_value() for reference types.
5975
5976 2002-08-22  Dick Porter  <dick@ximian.com>
5977
5978         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
5979         Don't free a buffer while it's still needed.  Patch from Jonathan
5980         Liger <Jonathan.liger@wanadoo.fr>
5981
5982 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
5983
5984         * icall.c (ves_icall_System_Environment_get_Platform): Add new
5985         internal call.
5986
5987 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
5988
5989         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
5990         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
5991
5992         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
5993         we call unmanaged code which throws exceptions.
5994
5995 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
5996
5997         * appdomain.h: added per-domain entry_assembly.
5998         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
5999         arguments.
6000         * icall.c: Assembly::GetEntryAssembly icall.
6001         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
6002         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
6003
6004 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
6005
6006         * appdomain.h, gc.c: added mono_domain_finalize ().
6007
6008 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6009
6010         * object.c:
6011         (mono_print_unhandled_exception): changed g_warning by g_printerr
6012         because g_log has a 1024 characters limit (yeah, i got a big stack
6013         trace). Don't print exception name, that should be in ToString 
6014         returned string.
6015
6016 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6017
6018         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
6019         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
6020
6021 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6022
6023         * object.c:
6024         (mono_print_unhandled_exception): after previous commit, i realized
6025         that MS calls ToString on the exception. I changed this function to
6026         do that. This way we get stack_trace for free.
6027
6028 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6029
6030         * object.c:
6031         (mono_print_unhandled_exception): invoke Message property instead of
6032         getting 'message' field from Exception. Don't allocate memory for
6033         'trace' and 'message' if not needed.
6034
6035 2002-08-18  Dick Porter  <dick@ximian.com>
6036
6037         * unicode.c: Fix asserts to match Encoder.cs checks
6038
6039 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
6040
6041         * marshal.c: fix unaligned store issue and a few wrong
6042         opcode argument types.
6043
6044 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6045
6046         * icall.c: added GetUninitializedObjectInternal internal call.
6047
6048 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
6049
6050         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
6051         to the right domain.
6052
6053 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
6054
6055         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
6056
6057         * class.c (class_compute_field_layout): set blittable to false for Strings
6058
6059         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
6060
6061 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
6062
6063         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
6064         first chunk of code to create types at runtime. Code to
6065         handle ReflectedType/DeclaringType. Make reflection handles
6066         domain specific.
6067
6068 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
6069
6070         * class.c: set correct name in arrays.
6071
6072 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
6073
6074         * appdomain.c (mono_domain_transfer_object): make it work with
6075         valuetypes. bug fixes.
6076
6077 2002-08-12  Dick Porter  <dick@ximian.com>
6078
6079         * object.h: Rename some parameters to avoid c++ keywords (Patch
6080         from Joseph Wenninger <kde@jowenn.at>)
6081
6082 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
6083
6084         * icall.c: added icall to implement Assembly.GetFile*.
6085
6086 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
6087
6088         * reflection.h, reflection.c: code to embed managed resources.
6089
6090 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
6091
6092         * class.c: move all the type size stuff into
6093         class_compute_field_layout().
6094
6095 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
6096
6097         * class.c: ensure enums have always the correct instance size.
6098         * unicode.c: remove wrong assert.
6099
6100 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
6101
6102         * assembly.c: fix mem corruption issue.
6103         * image.h, image.c: added mono_image_get_resource () to access
6104         managed resources.
6105         * icall.c: implemented Assembly.EntryPoint property and some
6106         Managed Resources related internalcalls.
6107
6108
6109 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
6110
6111         * image.c, image.h: impemented mono_image_get_entry_point ().
6112         * appdomain.c: use mono_image_get_entry_point.
6113
6114 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
6115
6116         * reflection.c: support the object type argument when loading
6117         custom attributes.
6118
6119 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
6120
6121         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
6122         String as return type.
6123
6124 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
6125
6126         * reflection.c: fix encoding of named args for custom attrs to match
6127         the ms implementation. Read them back when instantiating custom
6128         attributes.
6129
6130 2002-08-02  Radek Doulik  <rodo@ximian.com>
6131
6132         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
6133         by Dietmar as quick fix
6134         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
6135         16 as stack size, used on more places as quick fix before Dietmar
6136         will fix it properly
6137
6138 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
6139
6140         * object.h, object.c: added accessors for fields and properties.
6141
6142 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
6143
6144         * class.c, class.h: made mono_class_get_field_from_name ()
6145         loop on parent types.
6146         Added mono_class_get_property_from_name ().
6147
6148 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
6149
6150         * class.c, class.h: move the code to setup the type vtable in its own
6151         function so that it can be reused also for types created at runtime.
6152         Eliminate the "class" identifier from the header file.
6153         * reflection.c: setup the vtable for enums so that we can create
6154         objects for use in SetConstant ().
6155
6156 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
6157
6158         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
6159         instead of the delegate itself as this pointer (bug #28383)
6160
6161 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
6162
6163         * marshal.c (mono_marshal_get_managed_wrapper): added return type
6164         conversions.
6165
6166 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
6167
6168         * loader.c: don't set the pinvoke bit on icalls.
6169
6170 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
6171
6172         * debug-helpers.c (mono_method_full_name): only print a number to
6173         indicate wrapper type (so that the output is more readable in traces).
6174
6175 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
6176
6177         * class.c (mono_class_init): include method override patch from Paolo
6178
6179 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
6180
6181         * icall.c: fixed GetTypeCode().
6182
6183 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
6184
6185         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
6186         use real delegate invoke function to make it work with multicast
6187         delegates (fix bug# 28291).
6188
6189 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
6190
6191         * object.c: load constant strings.
6192
6193 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
6194
6195         * reflection.c: no magic numbers.
6196         * tabledefs.h: security action enum.
6197
6198 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
6199
6200         * assembly.c: fix possible memory corruption.
6201
6202 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
6203
6204         * reflection.h, reflection.c: added support for linking resources.
6205         * verify.c: check we have an updated corlib.
6206
6207 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
6208
6209         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
6210         string arrays.
6211         (mono_marshal_string_array): null terminate unmanaged string arrays.
6212         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
6213
6214 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
6215
6216         * icall.c: Type.GetType () can now return also types from the
6217         calling assembly.
6218
6219 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
6220
6221         * loader.h, loader.c: stack walking support.
6222         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
6223         GetCallingAssembly.
6224
6225 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
6226
6227         * marshal.c: added optimisations for blittable types 
6228
6229         * class.c (mono_array_class_get): do not set blittable attribute on arrays
6230         (mono_class_setup_mono_type): set blittable attribute for single
6231         and double.
6232
6233         * marshal.c (mono_string_utf8_to_builder): impl.
6234         (mono_string_builder_to_utf8): impl.
6235         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
6236
6237 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
6238
6239         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
6240         (mono_marshal_get_managed_wrapper): impl. byref types
6241
6242 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6243
6244         * icall.c:
6245         (search_method): don't display debug message. 
6246
6247 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
6248
6249         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
6250
6251 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
6252
6253         * appdomain.c: set the missing filename when throwing exception.
6254
6255 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
6256
6257         * metadata.c (mono_type_size): code cleanup
6258         (mono_type_stack_size): removed some test code
6259
6260 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
6261
6262         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
6263         mono_get_exception_file_not_found now.
6264
6265         * exception.c (mono_exception_from_name_two_strings): New version
6266         that will call a constructor with two string arguments. 
6267         (mono_get_exception_file_not_found): New helper routine, used to
6268         report file-not-found errors.
6269
6270 2002-07-20  Dick Porter  <dick@ximian.com>
6271
6272         * process.h:
6273         * process.c: Pass file handles to CreateProcess
6274         
6275         * icall.c:
6276         * file-io.h:
6277         * file-io.c: Implemented CreatePipe
6278
6279 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
6280
6281         * metadata.c (mono_get_param_info): set alignment for value types
6282
6283 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
6284
6285         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
6286         Constify mono_domain_assembly_open().
6287         * loader.c: handle null namespace in icalls.
6288
6289 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
6290
6291         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
6292         (emit_str_to_ptr_conv): marshal object as structs
6293
6294         * metadata.c (mono_type_to_unmanaged): marshal object as structs
6295
6296         * marshal.c (mono_marshal_get_runtime_invoke): support value types
6297
6298 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
6299
6300         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
6301         (mono_marshal_get_native_wrapper): we an now return value types
6302
6303 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
6304
6305         * verify.c: more checks implemented.
6306
6307 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
6308
6309         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
6310         (fix bug #27695)
6311         (mono_marshal_get_native_wrapper): allow byref arguments
6312         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
6313         impl. PtrToStringXXX methods
6314         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
6315         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
6316         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
6317         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
6318         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
6319
6320 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
6321
6322         * reflection.c: fix buglet in parsing an assembly name.
6323
6324 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
6325
6326         * marshal.c (emit_ptr_to_str_conv): first impl.
6327
6328 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
6329
6330         * object.c, class.h: cache the vtable in the class as suggested by
6331         vargaz@freemail.hu (Zoltan Varga).
6332
6333 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
6334
6335         * class.h, loader.c: added mono_field_from_token().
6336         * verify.c: first cut of type checking code.
6337
6338 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
6339
6340         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
6341
6342 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
6343
6344         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
6345         (fix bug #27782)
6346         (mono_marshal_get_remoting_invoke): impl.
6347         (mono_delegate_begin_invoke): impl.
6348         (mono_mb_emit_save_args): impl.
6349         (mono_delegate_end_invoke): impl.
6350         (mono_marshal_get_delegate_begin_invoke):
6351         (mono_marshal_get_delegate_end_invoke):
6352         (mono_marshal_get_delegate_invoke): generate a special name for
6353         those methods (including the signature) and associate them whith
6354         the delegate class. 
6355
6356 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
6357
6358         * reflection.[ch]: 
6359         (mono_reflection_type_from_name): now it has a MonoImage parameter
6360         which is used as the default image to search the type in. If the image
6361         is NULL or getting the type from it fails, it defaults to corlib.
6362
6363         * icall.c: changed 1 call to mono_reflection_type_from_name to match
6364         new parameter.
6365
6366 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
6367
6368         * reflection.c: update the parameter table index.
6369
6370 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
6371
6372         * domain.c: don't include the mark byte in the string hash.
6373
6374 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
6375
6376         * icall.cs: icall for Type.GetTypeCode ().
6377         * verify: a couple of fixes and disabled local initialization checks.
6378
6379 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
6380
6381         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
6382
6383         * debug-helpers.c (mono_method_full_name): print the type of the
6384         runtime wrapper
6385
6386         * metadata.c (mono_signature_hash): a hash function for signatures
6387         (mono_signature_hash): better hash algorithm
6388
6389         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
6390
6391         * debug-helpers.c (mono_method_full_name): this can now generate
6392         method names with signatures
6393
6394         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
6395         method dont have this pointers.
6396
6397 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
6398
6399         * reflection.c: fixup typebuilder tokens.
6400         * image.c: fix buglet.
6401         * marshal.h: remove whitespace.
6402         * metadata.h, metadata.c: reinstate code that was removed.
6403         * verify.c: handle catch directives and fix another couple of bugs.
6404
6405 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
6406
6407         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
6408         (mono_marshal_get_native_wrapper): make it comp. with the old code
6409         (mono_marshal_get_native_wrapper): support boolean
6410         (mono_marshal_get_managed_wrapper): support more types
6411
6412 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
6413
6414         * class.c (class_compute_field_layout): compute class->blittable attribute.
6415
6416 2002-07-09  Dick Porter  <dick@ximian.com>
6417
6418         * threads.c: Make the thread cleaning up cope with threads that
6419         call ExitThread()
6420
6421 2002-07-08  Radek Doulik  <rodo@ximian.com>
6422
6423         * reflection.c (method_encode_code): use non-translated values to
6424         compute finally_start, this fixes exception handling on ppc, yay!
6425
6426         * decimal.h (struct signscale): fix endianess
6427
6428 2002-07-07  Radek Doulik  <rodo@ximian.com>
6429
6430         * reflection.c: swap box_val and not val
6431
6432 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
6433
6434         * reflection.c, reflection.h: handle full assembly info in type name.
6435         Handle Type arguments when loading custom attributes.
6436         * icall.c: updated to use new mono_reflection_type_from_name () method.
6437
6438 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6439
6440         * loader.c:
6441         (method_from_memberref): also print assembly name when method not found.
6442
6443 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6444
6445         * icall.c:
6446         (ves_icall_TypeGetProperties): fixed bug #27473. 
6447
6448 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6449
6450         * reflection.c: display image name and token when cannot find the
6451         .ctor for an attribute.
6452
6453 2002-07-05  Martin Baulig  <martin@gnome.org>
6454
6455         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
6456
6457 2002-07-04  Dick Porter  <dick@ximian.com>
6458
6459         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
6460         compile on mingw.  This will cause mingw builds to not wait for
6461         subthreads to terminate after the main thread does.  I've lodged a
6462         bug with the mingw developers for them to wrap OpenThread().
6463
6464 2002-07-03  Dick Porter  <dick@ximian.com>
6465
6466         * threads.c: Store thread IDs instead of handles, because
6467         GetCurrentThread() returns a pseudohandle and therefore stores
6468         useless values.  mono_thread_cleanup() continues checking the
6469         array of threads until it is empty, to cope with subthreads
6470         spawning new threads after the main thread has finished.
6471
6472         * profiler.h:
6473         * profiler.c:
6474         * profiler-private.h: Pass the thread ID to thread profiler
6475         functions, instead of a handle
6476
6477 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
6478
6479         * verify.c: fixes to make it more usable.
6480         * pedump.c: added --verify code to verify IL code in an assembly.
6481
6482 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6483
6484         * reflection.c: turn errors into warnings to allow compiling corlib.
6485
6486 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
6487
6488         * reflection.c: add special cases to compile corlib.
6489
6490 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
6491
6492         * reflection.c: handle properties with only a set method.
6493
6494 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
6495
6496         * opcodes.h: add enum with opcodes in opval order.
6497
6498 2002-07-01  Dick Porter  <dick@ximian.com>
6499         
6500         * object.h:
6501         * object.c (mono_runtime_run_main): Removed unneeded argument
6502
6503 2002-06-28  Martin Baulig  <martin@gnome.org>
6504
6505         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
6506
6507 2002-06-27  Dick Porter  <dick@ximian.com>
6508
6509         * threads.c: Store the handle in both the parent thread and in the
6510         subthread, to minimise the time between starting a new thread and
6511         storing its ID.
6512
6513 2002-06-26  Dick Porter  <dick@ximian.com>
6514
6515         * appdomain.c (mono_runtime_cleanup): Close the socket library
6516         after all the threads have finished, not before
6517
6518 2002-06-26  Martin Baulig  <martin@gnome.org>
6519
6520         * debug-symfile.c (mono_debug_find_source_location): Added
6521         `guint32 *line_number' argument.  If it's not NULL, store the line number
6522         there and return the file name without the line number.
6523
6524 2002-06-25  Dick Porter  <dick@ximian.com>
6525
6526         * icall.c:
6527         * process.h:
6528         * process.c: Process forking and other support functions
6529
6530 2002-06-25  Dick Porter  <dick@ximian.com>
6531
6532         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
6533         things dont happen when the image is closed.
6534         (mono_image_lookup_resource): Walk the resource section looking
6535         for a particular entry
6536
6537         * cil-coff.h: PE resource section decoding
6538
6539 2002-06-25  Dick Porter  <dick@ximian.com>
6540         
6541         * assembly.h:
6542         * assembly.c: 
6543         (mono_assembly_foreach): Accessor functions to walk the list of
6544         loaded assemblies
6545         (mono_assembly_set_main):
6546         (mono_assembly_get_main): Process methods need to know which
6547         assembly is the "main" one
6548
6549         * object.c (mono_runtime_run_main): Record the main assembly
6550
6551         * debug-helpers.c: Fix typo
6552
6553 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
6554
6555         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
6556         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
6557
6558 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
6559
6560         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
6561
6562 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
6563
6564         * image.c (do_mono_image_open): Initialize reference count,
6565         otherwise we leak the MonoImage.
6566
6567 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
6568
6569         * reflection.c: small tweak to handle self-hosting.
6570
6571 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
6572
6573         * reflection.c: fix type name parse code.
6574
6575 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
6576
6577         * reflection.c: break out of the loop.
6578         * image.c: special case corlib.
6579
6580 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
6581
6582         * reflection.c: add all the custom attrs at the end to ensure the
6583         ctors have been properly initialized when the attributes are defined
6584         in the current assembly.
6585
6586 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
6587
6588         * reflection.c: handle correctly multiple-nested types.
6589
6590 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
6591
6592         * row-indexes.h: fix typos.
6593         * reflection.c: adjust for typos and fix method_def_or_ref
6594         encoding in MethodImpl table.
6595
6596 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
6597
6598         * reflection.c: fix entry point patching (thanks Serge!).
6599
6600 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
6601
6602         * verify.c: add check for System.Exception
6603
6604 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
6605
6606         * image.c, class.c: minifix for code just c&p'ed.
6607         * reflection.c: warning fix.
6608         * object.h, loader.h, domain.c: load also StringBuilder.
6609
6610 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
6611
6612         * marshal.h, marshal.c: some support code to handle complex marshaling.
6613
6614 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6615
6616         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
6617         Better signatures with vtable error dump.
6618
6619 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
6620
6621         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
6622
6623 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
6624
6625         * icall.c (ves_icall_Type_GetField): impl.
6626
6627 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6628
6629         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
6630         to retrieve a marshal description blob for a field or param.
6631
6632 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
6633
6634         * reflection.h, reflection.c: change order of nested type emission
6635         to avoid table corruption. The NestedTypes table is sorted.
6636         * icall.c: change order of GetConstructor results to workaround mcs bug.
6637
6638 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
6639
6640         * reflection.h, reflection.c: handle field and param marshal
6641         information.
6642
6643 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
6644
6645         * icall.c, marshal.c marshal.h: more Marshal class implementation.
6646
6647 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
6648
6649         * reflection.c: fix call convention.
6650
6651 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
6652
6653         * reflection.h, reflection.c: mono_image_get_memberref_token()
6654         takes a type instead of a class, now. Added
6655         mono_image_get_array_token() to create tokens for the special
6656         multi-dim array methods.
6657
6658 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
6659
6660         * assembly.c: handle modules (no assembly table). Split
6661         loading references in its own function.
6662         * class.c: handle moduleref resolution scope.
6663         * image.c, image.h: cache module name in image.
6664
6665 2002-06-07  Martin Baulig  <martin@gnome.org>
6666
6667         * reflection.c (mono_image_get_type_info): Only add a class layout entry
6668         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
6669
6670 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
6671
6672         * icall.c: more signature fixes that used uint instead of int.
6673
6674 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6675
6676         * reflection.c: fixed signature of field refs.
6677
6678 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
6679
6680         * class.c, reflection.c: handle typerefs of nested types
6681         (both on read and when writing files).
6682
6683 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
6684
6685         * icall.c: fix method signatures that tried to workaround the previous
6686         typo, d'oh!
6687
6688 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
6689
6690         * debug-helpers.c: fix typo.
6691
6692 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
6693
6694         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
6695         rewrote the PE/COFF writing code (our programs are understood by the
6696         ms runtime, now).
6697
6698 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
6699
6700         * gc.c, gc.h, icall.c: weakreference support.
6701
6702 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
6703
6704         * Makefile.am, mono-config.c: use $(sysconfdir).
6705
6706 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
6707
6708         * icall.c: changed default precision of Double.ToString() to 15.
6709         Fixed memory leak. Unified with Single.ToString.
6710
6711 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
6712
6713         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
6714
6715 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
6716
6717         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
6718         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
6719         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
6720         and myself.
6721
6722 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
6723
6724         * debug-symfile.c, sysmath.c: yet more compilation fixes.
6725
6726 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
6727
6728         * reflection.c, socket-io.c: more compilation fixes.
6729
6730 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
6731
6732         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
6733         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
6734         unicode.c: warning and compiler compatibility fixes.
6735
6736 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
6737
6738         * class.h, metadata.c: fixed warnings/compilation errors.
6739
6740 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
6741
6742         * Makefile.am, mono-config.c, mono-config.h: configuration file
6743         support routines.
6744         * loader.c, loader.h: make Dll mapping configurable at runtime in the
6745         config file. Export methods to insert and lookup mappings.
6746
6747 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
6748
6749         * reflection.c: handle types and boxed objects in custom attr
6750         constructors.
6751
6752 2002-05-30  Martin Baulig  <martin@gnome.org>
6753
6754         * debug-symfile.c
6755         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
6756
6757 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
6758
6759         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
6760         to lookup the implmap row for a P/Invoke method.
6761         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
6762         P/Invoke method from the runtime on an as needed basis.
6763
6764 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
6765
6766         * metadata.c (mono_metadata_parse_signature): impl.
6767
6768 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
6769
6770         * class.c: handle .pack directive.
6771
6772 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
6773
6774         * object.c: initialize static fields with RVA data.
6775
6776 2002-05-25  Martin Baulig  <martin@gnome.org>
6777
6778         * debug-symfile.c
6779         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
6780
6781 2002-05-24  Martin Baulig  <martin@gnome.org>
6782
6783         * debug-symfile.c
6784         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
6785         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
6786         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
6787
6788 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
6789
6790         * object.c: special case string ctros in invoke.
6791         * gc.c: silly whitespace changes.
6792
6793 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
6794
6795         * threadpool.[ch]: impl. a threadpool that can
6796         be used by mint and mono.
6797
6798 2002-05-22  Martin Baulig  <martin@gnome.org>
6799
6800         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
6801         The first argument is now a `MonoReflectionModuleBuilder *', the return
6802         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
6803         `methods' field to get the method builder.  The `token' argument is the
6804         unfixed token.
6805
6806         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
6807         invalid characters instead of g_assert_not_reached()ing.  This seems
6808         to be the behaviour of mscorlib.
6809
6810 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
6811
6812         * object.c (mono_runtime_invoke_array): applied patch from Rachel
6813         Hestilow to fix bug #25104
6814
6815 2002-05-21  Martin Baulig  <martin@gnome.org>
6816
6817         * debug-symfile.c (mono_debug_find_source_location): New function.
6818         Looks up an IL offset in the line number table and returns the source
6819         location as a string.
6820
6821 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6822
6823         * icall.c:
6824         (mono_double_ToStringImpl): changed %f by %g until we have something
6825         better.
6826
6827 2002-05-21  Nick Drochak  <ndrochak@gol.com>
6828
6829         * icall.c : Use different name for Math.Pow's icall.  Needed to check
6830         parameters first in C#.
6831
6832 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
6833
6834         * icall.c, reflection.h: added icall to get info about an event.
6835
6836 2002-05-20  Radek Doulik  <rodo@ximian.com>
6837
6838         * object.c (mono_value_box): don't use memcpy for boxing on BIG
6839         endian
6840         (mono_value_box): don't use memcpy for small sizes on
6841         architectures with unaligned access
6842
6843 2002-05-20  Martin Baulig  <martin@gnome.org>
6844
6845         * reflection.c (mono_reflection_setup_internal_class): Don't crash
6846         if `tb->parent == NULL'.
6847         (mono_reflection_create_internal_class): New function.  This is
6848         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
6849         for enum types.
6850
6851         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
6852         New interncall.
6853
6854 2002-05-19  Martin Baulig  <martin@gnome.org>
6855
6856         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
6857         argument to get the length, don't default to the array length.
6858
6859 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
6860
6861         * assembly.c (mono_assembly_setrootdir): New function used to
6862         override the MONO_ASSEMBLIES directory.
6863
6864 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
6865
6866         * icall.c: ValueType_GetHashCode() initialize local var.
6867
6868 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
6869
6870         * reflection.c: sort custom attributes table.
6871
6872 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
6873
6874         * reflection.c: support named args in custom attributes (write support).
6875
6876 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
6877
6878         * reflection.c: fix finally position calculation.
6879
6880 2002-05-15  Radek Doulik  <rodo@ximian.com>
6881
6882         * reflection.c: fixed endianess at many places
6883
6884         * icall.c (ves_icall_InitializeArray): comment out debug msg
6885
6886 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
6887
6888         * object.c (mono_unhandled_exception): new function to handle
6889         unhandled exceptions.
6890         (mono_unhandled_exception): call the UnhandledException event.
6891         (mono_runtime_delegate_invoke): impl.
6892
6893 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
6894
6895         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
6896         returns the RVA, not the direct pointer to the data. Handle the case
6897         when the class size is fixed.
6898
6899 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
6900
6901         * reflection.c: fix some endianess issues.
6902
6903 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
6904
6905         * object.c (mono_runtime_invoke): is now able to catch exceptions.
6906
6907         * threads.c (mono_thread_init): added a callback which is invoked
6908         at thread start.
6909
6910 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
6911         
6912         * icall.c: make GetHashCode return non-negative values.
6913
6914 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
6915
6916         * object.c, icall.c, gc.c: revert to address-based hashcode.
6917
6918 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
6919
6920         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
6921
6922 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
6923
6924         * icall.c, class.c: special case <Module>.
6925
6926 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
6927
6928         * icall.c: fix bug in GetNow().
6929
6930 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
6931
6932         * object.c (mono_runtime_class_init): make sure that we call all
6933         static class constructors.
6934
6935 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
6936
6937         * reflection.c: sort methodsemantics table.
6938
6939 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
6940
6941         * reflection.h, reflection.c: honour init locals setting.
6942
6943 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
6944
6945         * icall.c: copied Double ToStringImpl for Single ToStringImpl
6946
6947 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
6948
6949         * reflection.c: support ContructorBuilders in attribute blob creation.
6950
6951 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
6952
6953         * reflection.c: some changes to build a binary that can be run
6954         directly in windows.
6955
6956 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
6957
6958         * loader.c: print a big message when an icall can't be found.
6959
6960 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6961
6962         * string-icalls.c: fix bug 24248.
6963
6964 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
6965
6966         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
6967         icall.c, reflection.h: separate assembly loading by pathname and by
6968         assembly name. Use the MONO_PATH env var to search for assemblies.
6969
6970 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
6971
6972         * assembly.c, image.h: add some support for assemblies
6973         with multiple modules.
6974         * class.c, class.h: export mono_class_from_typeref().
6975         * loader.c: remove duplicated code and use mono_class_from_typeref(),
6976         instead.
6977
6978 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
6979
6980         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
6981         documentation says (the ECMA one is correct).
6982
6983 2002-05-02  Dick Porter  <dick@ximian.com>
6984
6985         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
6986         Don't name the synchronisation mutex.
6987
6988 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
6989
6990         * rand.c
6991         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
6992         Make the prototypes match.
6993         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
6994         Same.
6995
6996         * icall.c
6997         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
6998         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
6999         all systems have tm.tm_zone, so use strftime() with %Z to print
7000         the timezone abreviation into a temp string.
7001
7002         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
7003         rather than mono_array_addr() on a MonoString on Big Endian
7004         machines.
7005
7006 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
7007
7008         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
7009         fix bug 24041
7010
7011 2002-04-30  Dick Porter  <dick@ximian.com>
7012
7013         * socket-io.c: Cope with SOCKET being an integer rather than a
7014         pointer now.
7015
7016         * threads.c: Added Thread_free_internal, to deal with thread
7017         handle cleanup.  Moved calls to handle_store() and handle_remove()
7018         to start_wrapper(), so each can only be called once.  Allocate
7019         synchronisation blocks with GC_malloc(), and use GC finalisation
7020         to close the handles.
7021
7022         * icall.c: added System.Threading.Thread::Thread_free_internal
7023
7024 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
7025
7026         * icall.c: support Environment.Exit, CommandLineArgs().
7027
7028 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
7029
7030         * object.c, object.h: added mono_runtime_run_main () and
7031         mono_runtime_get_main_args () for use in System.Environment.
7032
7033 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
7034
7035         * gc.c: fix thinko, enable actual finalization since the jit is now
7036         fixed.
7037
7038 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
7039
7040         * gc.c, object.c: take into account that an object may be offset wrt the address
7041         returned by GC_malloc().
7042
7043 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
7044
7045         * image.c: handle files without entries in the assembly table (modules).
7046
7047 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
7048
7049         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
7050         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
7051         allowed to be null when it's System.Object class setup.
7052
7053 2002-04-27  Martin Baulig  <martin@gnome.org>
7054
7055         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
7056         if `tb->parent == NULL' rather than crashing.
7057
7058 2002-04-28  Nick Drochak  <ndrochak@gol.com>
7059
7060         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
7061         calling acos() where asin() should have been called.
7062
7063 2002-04-26  Martin Baulig  <martin@gnome.org>
7064
7065         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
7066         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
7067         there's a subdirectory called `System', but we don't want to read that
7068         subdirectory as an assembly.
7069
7070 2002-04-25  Martin Baulig  <martin@gnome.org>
7071
7072         * debug-symfile.c: Reflect latest MonoString changes.
7073
7074 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
7075
7076         * rand.c, rand.h: instance method icalls need to have an explicit
7077         this pointer as first argument in the C implementation.
7078
7079 2002-04-25  Nick Drochak <ndrochak@gol.com>
7080
7081         * icall.c: Fix typo in map for GetNonZeroBytes
7082
7083 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
7084
7085         * string-icalls.c : String does now passes unit tests without any 
7086         errors, the following changes has been made:
7087         
7088         Implemented replace methods.
7089         Renaming of methods to (try) follow the standard.
7090         Fixed compare ordinal
7091         Made all memory allocated directly to function instead of via icall function.
7092         Small performance fix in is_in_array function
7093                         
7094  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
7095
7096         c (mono_string_Internal_ctor_charp_int_int):
7097         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
7098         sindex < 0, throw ArgumentOutOfRangeException instead of
7099         ArgumentNullException.
7100
7101         Added new check for length == 0, however
7102         I need to make it return String.Empty from the C code.
7103         
7104         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
7105         that calculate the length for us here.
7106         
7107         (mono_string_Internal_ctor_sbytep_int_int): Replaced
7108         mono_string_new_utf16 with mono_string_new, since value is utf8.
7109
7110 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7111
7112         * object.c: register the object for finalization if needed.
7113         Allocate one more char in the string for the terminating 0 char.
7114
7115 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
7116
7117         * class.c, class.h, image.c: check if a type implemenst a destructor.
7118         Use the proper key for array class lookups.
7119         * icall.c: register the icalls in the System.GC class.
7120         * gc.c, gc.h: GC-related functions and icalls.
7121
7122 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7123
7124         * icall.c:
7125         * socket-io.c:
7126         * unicode.c: free some strings gotten from mono_string_to_utf8 and
7127         changed a couple of free () by g_free ().
7128
7129         * decimal.c: one-liner in the comments for decimal2string ().
7130
7131 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
7132
7133         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
7134
7135 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
7136
7137         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
7138         * object.c (mono_runtime_invoke_array) : handle null in params
7139
7140 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
7141
7142         * string-icalls.c: fixed bug in split (one off bug)
7143
7144 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
7145
7146         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
7147         * icalls.c: added String::Equals as internal method
7148
7149 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
7150
7151         * threads.c: fixed bug in the double interlocked functions
7152
7153 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
7154
7155         * threads.c: implemented all of the new interlocked icalls.
7156         * string-icalls.c: fix a bug in insert.
7157         * icalls.c: added the icalls for interlocked, removed old string functions.
7158         
7159 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
7160
7161         * loader.c: fix off-by-one error when reading argument names.
7162
7163 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
7164
7165         * profiler.c: win32 counter implementation (untested).
7166         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
7167         (the latter needs testing and more complete impl. from win32 folks).
7168
7169 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
7170
7171         * object.c: mono_array_new_full workaround mono_array_class_get
7172         problem.
7173
7174 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
7175
7176         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
7177         * object.h (mono_string_chars): Changed casting type.
7178
7179 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
7180
7181         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
7182                            method signatures to use gunichar2 instead of gint16.
7183
7184 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
7185
7186         * object.h, object.c: domain-specific versions of mono_object_new and
7187         mono_array_new.
7188
7189 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
7190
7191         * object.c: changed String layout
7192
7193         * string-icalls.c (mono_string_Internal_ctor_chara): added
7194         internal string constructors.
7195
7196 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
7197
7198         * threads.c: pass 'this' to the thread start routine.
7199
7200 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7201
7202         * string-icalls.c: fix IndexOf and LastIndexOf. Now
7203         InternalCompareStr don't call twice mono_string_cmp_char for the last
7204         character. Improved performance in mono_string_cmp_char.
7205
7206 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
7207
7208         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
7209         code into its own library: libmonoruntime.
7210
7211 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
7212
7213         * object.h, object.c: changed array format so that szarrays do not
7214         require a bounds structure.
7215         * icall.c, appdomain.c: support for new szarray format.
7216
7217 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
7218
7219         * metadata.c: compare also the retuns type when comparing signatures:
7220         we didn't do this as an optimization since really overloaded methods
7221         must differ also in the arguments, but this doesn't work with
7222         low-level IL code (or when using explicit conversion operators: see
7223         bug#23498 for an example).
7224
7225 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
7226
7227         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
7228
7229 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
7230
7231         * icall.c: make MonoType::GetElementType its own icall.
7232
7233 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
7234
7235         * icall.c: remove MonoMethod_get_Name().
7236         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
7237         object.
7238
7239 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
7240
7241         * string-icalls.c: optimized a few methods.
7242
7243 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
7244
7245         * icall.c: added all new string internal calls
7246         * string-icalls.c: added, new string internal call implementation.
7247         * object.c: added mono_string_new_size for allocating a string a size
7248
7249 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
7250
7251         * object.c (mono_object_isinst): use the same code as in the
7252         optimized x86 version.
7253
7254 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
7255
7256         * profiler.c: TSC-based timer code (faster and more accurate).
7257         Not hooked up in configure, yet (set USE_X86TSC to 1).
7258
7259 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
7260
7261         * profiler.c, profiler.h: track time spent compiling methods.
7262         * threads.c: track thread creation/destruction.
7263
7264 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
7265
7266         * profiler.c, profiler.h, profiler-private.h: profiling interface
7267         and sample implementation. Moved here so that it can be used also by
7268         the jit.
7269
7270 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
7271
7272         * reflection.c, reflection.h: keep types and other handles separate in
7273         the hash tables for referred tokens. Add guid for modules.
7274
7275 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
7276
7277         * assembly.c: fix bugs found with valgrind.
7278         * metadata.h, metadata.c: added mono_metadata_guid_heap().
7279
7280 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
7281
7282         * threads: added icall support for getting current domain for
7283                    the thread.
7284  
7285 2002-04-13  Martin Baulig  <martin@gnome.org>
7286
7287         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
7288         (MonoDebugVarInfo): Added `index' field for register based addresses.
7289         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
7290         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
7291         `MonoDebugVarInfo *params' and `guint32 this_offset' with
7292         `MonoDebugVarInfo *this_var'.
7293
7294         * debug-symfile.c (relocate_variable): New static function to write
7295         a location description for a local variable or method parameter.
7296
7297 2002-04-12  Martin Baulig  <martin@gnome.org>
7298
7299         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
7300         stack offset and begin/end scope address of a local variable.
7301         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
7302         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
7303         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
7304
7305         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
7306         Added new relocation types for start/end scope of a local variable.
7307
7308 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
7309
7310         * object.h: add mono_object_domain() macro.
7311         * reflection.c: handle typespecs.
7312         * icall.c: MonoMethod::get_Name() implementation.
7313
7314 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
7315
7316         * icall.c: String::GetHashCode() icall implementation.
7317
7318 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7319
7320         * icall.c: String::IndexOfAny icall.
7321         * object.c, object.h: make array->max_length more useful.
7322         Intrduced mono_object_class() and mono_string_length() macros.
7323
7324 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7325
7326         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
7327         instead of g_unichar_isdigit.
7328
7329 2002-04-11  Nick Drochak  <ndrochak@gol.com>
7330
7331         * icall.c: Implement a simple Double.ToString().
7332
7333 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
7334
7335         * appdomain.h: only io-layer.h is supposed to be included.
7336         * icall.c: explicitly import environ. Fix warning.
7337
7338 2002-04-10  Nick Drochak  <ndrochak@gol.com>
7339
7340         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
7341                 return true even if it's not Daylight Savings time.
7342                 Only return false for the case where the function isn't
7343                 implemented for a plaform (read Windows).
7344
7345 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
7346
7347         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
7348         data with a mutex.
7349
7350 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
7351
7352         * mempool.c (mono_mempool_alloc): only use g_malloc when
7353         absolutely necessary.
7354
7355 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
7356
7357         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
7358
7359         * class.c (mono_class_vtable): use domain mempool to allocate vtable
7360         (mono_class_proxy_vtable): use domain mempool
7361
7362 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
7363
7364         * appdomain.h, appdomain.c: split initialization that requires the
7365         execution engine support into mono_runtime_init().
7366
7367 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
7368
7369         * class.c (mono_class_init): don't include vtable inside MonoClass
7370         to save some memory, gather some statistics.
7371         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
7372
7373 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
7374
7375         * icall.c: internalcall implementation for ValueType.Equals().
7376
7377 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
7378
7379         * object.c (mono_message_init): moved 
7380         (mono_runtime_exec_main): new arch. independent impl.
7381         (mono_runtime_invoke_array): new method - like
7382         mono_runtime_invoke, but you can pass an array of objects.
7383         (mono_remoting_invoke): new arch. independent impl.
7384         (mono_message_invoke): new arch. independent impl.
7385         (mono_runtime_class_init): new arch. independent impl.
7386         (mono_runtime_object_init): new arch. independent impl.
7387
7388 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
7389
7390         * metadata.c, object.c, reflection.c: documented the exported
7391         functions.
7392
7393 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
7394
7395         * icall.c: simpler code to pass the assembly builder data to corlib.
7396         Implement GetNestedTypes() internalcall.
7397
7398 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
7399
7400         * class.c: warn if a type can't be loaded.
7401
7402 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
7403
7404         * image.h: typedef MonoImageOpenStatus
7405         * types.h: removed unused file
7406         
7407 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
7408
7409         * icall.c: Enum_ToObject accepts enum value arguments.
7410
7411 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
7412
7413         * class.c: move initialization of properties, events and nested
7414         classes, so that they happen for interfaces, too.
7415
7416 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
7417
7418         * icall.c: cleanup some ugly casts in Array_SetValue*.
7419
7420 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
7421
7422         * icall.c: the values array fro enums is of the correct type, now.
7423         Implement (correctly) getFullName instead of assQualifiedName for
7424         MonoType.
7425         * reflection.h, reflection.c: added mono_type_get_name ().
7426
7427 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
7428
7429         * assembly.c, image.h: for each MonoImage, record from wich assembly
7430         it was loaded.
7431         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
7432         Make Type.Assembly work.
7433
7434 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
7435
7436         * debug-symfile.h: use char* instead of gpointer to avoid
7437         unnecessary casts.
7438
7439         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
7440
7441         * icall.c (ves_icall_InternalExecute): impl. FielSetter
7442         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
7443
7444 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
7445
7446         * icall.c (mono_message_init): impl. (code cleanup)
7447         (ves_icall_InternalExecute): impl. FieldGetter
7448
7449         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
7450         defined we call all (non-static)methods through the vtable. 
7451
7452 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
7453
7454         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
7455         finalizer even though the memory is still referenced (and the chunk of
7456         memory is not freed).
7457
7458 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
7459
7460         * assembly.c: fix brokeness.
7461
7462 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
7463
7464         * class.c: kill some warnings. Check explicit interface method
7465         implementation also without considering the namespace.
7466         Load also literal strings in static class data.
7467
7468 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
7469
7470         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
7471         (default_assembly_name_resolver): Make the resolver take the
7472         "base" directory where the assembly was originally defined, so we
7473         can load DLLs that are in the same directory as the assembly that
7474         is being referenced.
7475
7476 2002-03-28  Dick Porter  <dick@ximian.com>
7477
7478         * file-io.h: 
7479         * file-io.c:
7480         * socket-io.c: 
7481         * unicode.h: 
7482         * unicode.c: Warning cleanups
7483
7484 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
7485
7486         * object.h, reflection.h: use the correct type instead of MonoObject.
7487
7488 2002-03-28  Martin Baulig  <martin@gnome.org>
7489
7490         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
7491         (mono_debug_update_symbol_file): Initialize classes if necessary.
7492
7493 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
7494
7495         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
7496         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
7497
7498 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
7499
7500         * assembly.h: fix function prototype.
7501         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
7502         * mono-endian.h: use const cast.
7503
7504 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
7505
7506         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
7507
7508 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
7509
7510         * loader.c: don't assert when a typeref can't be loaded, give
7511         a chance to the runtime to trow an exception instead.
7512         * loader.h: fix warning.
7513
7514 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
7515
7516         * class.c (mono_class_proxy_vtable): added proxy support
7517
7518 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
7519
7520         * icall.c: removed last of PAL calls, added System.Environment
7521         * file-io.h, file-io.c: MonoIO implementation
7522         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
7523
7524 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
7525
7526         * appdomain.c: do not use the byte marker in ldstr table lookup.
7527         * debug-helpers.c: allow two ':' to separate class and method name.
7528         * object.c: allocate arrays bounds with the GC, too.
7529         * verify: add a few more checks.
7530
7531 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
7532
7533         * reflection.c: output also literal strings. Allocate parameter data
7534         with GC_malloc() (thanks, Martin, for catching this!).
7535
7536 2002-03-26  Martin Baulig  <martin@gnome.org>
7537
7538         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
7539         include the `this' offset in the `param_offsets'.
7540
7541 2002-03-25  Martin Baulig  <martin@gnome.org>
7542
7543         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
7544         mono_debug_get_class() function to get the classes. Added new
7545         relocation types for arrays and strings.
7546         (mono_debug_get_class): New static function to search in all
7547         referenced assemblies for a metadata token.
7548
7549         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
7550
7551 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7552
7553         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
7554         hold gc-allocated objects. Make the string heap a stream like the
7555         others. Removed duplicated code when writing stream info.
7556         Added asserts to catch possible buffer overflows. Set the sorted map
7557         for tables that need sorting. Added some documentation.
7558
7559 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
7560
7561         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
7562         for interned strings and vtables.
7563
7564 2002-03-24  Martin Baulig  <martin@gnome.org>
7565
7566         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
7567         it in the array since it was created with g_slist_prepend().
7568
7569 2002-03-24  Martin Baulig  <martin@gnome.org>
7570
7571         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
7572         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
7573         (mono_debug_method_from_token): Renamed to
7574         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
7575         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
7576
7577         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
7578         relocation types.
7579
7580         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
7581
7582 2002-03-24  Martin Baulig  <martin@gnome.org>
7583
7584         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
7585         (mono_debug_method_from_token): New func.
7586
7587         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
7588         New interncall, calls mono_debug_local_type_from_signature().
7589         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
7590         calls mono_debug_method_from_token().
7591
7592 2002-03-23  Martin Baulig  <martin@gnome.org>
7593
7594         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
7595         specifies the number of bytes to be converted, not the array size.
7596         Return the number of chars, not the number of bytes.
7597         (ves_icall_iconv_get_chars): The `byteCount' argument
7598         specifies the number of bytes to be converted, not the array size.
7599
7600 2002-03-23  Martin Baulig  <martin@gnome.org>
7601
7602         * reflection.h (MonoReflectionSigHelper): New type.
7603
7604         * reflection.c (mono_reflection_sighelper_get_signature_local),
7605         (mono_reflection_sighelper_get_signature_local): New functions.
7606
7607         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
7608         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
7609         interncalls.
7610
7611 2002-03-23  Martin Baulig  <martin@gnome.org>
7612
7613         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
7614         is_writeable is set.
7615         (mono_raw_buffer_update): New function to write the modified map
7616         back to disk.
7617
7618         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
7619
7620         * debug-symfile.c (mono_debug_update_symbol_file): Call
7621         mono_raw_buffer_update() when done writing.
7622
7623 2002-03-23  Martin Baulig  <martin@gnome.org>
7624
7625         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
7626
7627         * debug-symfile.c: Added support for arguments and local variables.
7628
7629 2002-03-23  Dick Porter  <dick@ximian.com>
7630
7631         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
7632         protected by ifdefs, hence breaking the w32 build.
7633
7634 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
7635
7636         * object.c: implement is_interned() the right way.
7637
7638 2002-03-21  Martin Baulig  <martin@gnome.org>
7639
7640         * debug-symfile.[ch]: New files to handle debugging information
7641         files. There's also support to dynamically update these symbol
7642         files to include machine dependent information.
7643
7644 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
7645
7646         * threads.c (mono_thread_create): new function to create thread
7647         from C
7648
7649 2002-03-20  Martin Baulig  <martin@gnome.org>
7650
7651         * icall.c (ves_icall_InternalInvoke): Create a new object if the
7652         method is a constructor.
7653         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
7654         points to ves_icall_InternalInvoke().
7655
7656 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
7657
7658         * file-io.c: Flush shouldn't throw exceptions.
7659
7660 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
7661
7662         * file-io.c: FileStream flush support; FileSetLength now
7663         restores file pointer.
7664
7665 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
7666
7667         * class.c: set image for pointer classes.
7668
7669 2002/03/19  Nick Drochak <ndrochak@gol.com>
7670
7671         * sysmath.c: Forgot one.
7672
7673 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
7674
7675         * sysmath.c: Avoid redefining existing names.
7676
7677 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
7678
7679         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
7680         handled by runtime as icall rather than dllimport from libm.so
7681         * file-io.c, file-io.h: fixed handle argument type.
7682
7683 2002-03-18  Dick Porter  <dick@ximian.com>
7684
7685         * reflection.c (mono_image_get_type_info): rename interface to
7686         iface, because of "#define interface struct" on windows.
7687
7688 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
7689
7690         * class.c, class.h: rename and export mono_ptr_class_get().
7691         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
7692         * reflection.c, reflection.h, icall.c: better/saner type name
7693         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
7694         method signatures.
7695
7696 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
7697
7698         * class.c (mono_class_init): removed hardcoded GHC_SLOT
7699
7700         * icall.c (ves_icall_InternalInvoke): impl.
7701
7702 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
7703
7704         * reflection.c: output the interface map table, too.
7705
7706 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
7707
7708         * class.c (class_compute_field_layout): separate computation of 
7709         static field layout
7710
7711 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
7712
7713         * icall.c: added System.Buffer support.
7714         * file-io.c: moved file icalls from PAL to FileStream.
7715
7716 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
7717
7718         * icall.c (ves_icall_System_Object_GetHashCode): impl.
7719
7720 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
7721
7722         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
7723
7724 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
7725
7726         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
7727
7728 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
7729
7730         * debug-helpers.{c,h}: moved here from monograph some useful functions
7731         to locate a method by name/signature in a class or image. Included
7732         also a small and flexible IL disassembler.
7733
7734 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
7735
7736         * reflection.c: fixup tokens in methods with small header size, too.
7737
7738 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
7739
7740         * object.c (mono_string_to_utf8): remove assert(!error), instead
7741         print a warning. 
7742
7743 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
7744
7745         * icall.c: update to the new mono_Array_class_get interface.
7746
7747 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
7748
7749         * appdomain.c, object.c: Boehm-GC enable.
7750         * icall.c: make get_data_chunk() support split data requests.
7751         Ensure a class is initialized in more cases. Return only the first
7752         property found in GetProperties() or the compiler gets confused. 
7753         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
7754         * reflection.h, reflection.c: add fixup mechanism for field and method
7755         tokens. Initialize assembly->typeref in a single place. Output
7756         properties after events. Support custom attributes for events, too.
7757         Typo fix for paramter custom attrs.
7758
7759 2002-03-07  Martin Baulig  <martin@gnome.org>
7760
7761         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
7762
7763 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
7764
7765         * class.c (mono_array_class_get): fix. for multi. dim. arrays
7766
7767 2002-03-06  Martin Baulig  <martin@gnome.org>
7768
7769         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
7770         non-zero lower bounds. See testcases #F10-#F13.
7771
7772 2002-03-05  Martin Baulig  <martin@gnome.org>
7773
7774         * exception.c (mono_get_exception_argument_out_of_range): New exception.
7775
7776         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
7777         ves_icall_System_Array_GetValue(), only calculate the absolute array position
7778         here.
7779         (ves_icall_System_Array_SetValue): Likewise.
7780         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
7781         as argument and does the actual work. This function is used when copying a
7782         multi-dimensional array.
7783         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
7784         now do all the widening conversions of value types.
7785         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
7786
7787 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
7788
7789         * class.c: remove some magic numbers and use the smbolic names,
7790         instead. Added init_events() to load event info at class init time.
7791         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
7792         and mono_metadata_methods_from_event().
7793         * reflection.h, reflection.c: added support for writing out the evnets
7794         related information.
7795
7796 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
7797
7798         * reflection.h, icall.c: use a different method (GetInterfaces)
7799         to gather interface info and add isbyref, isprimitive and
7800         ispointer to the ves_icall_get_type_info() return value.
7801
7802 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
7803
7804         * class.h: stared adding support for events.
7805         * icall.c: split find_members implementation. Added debug icall to get
7806         the address of an object.
7807         * reflection.c: handle TypeBuilders in mono_type_get_object().
7808
7809 2002-03-01  Martin Baulig  <martin@gnome.org>
7810
7811         * icall.c (ves_icall_System_Array_GetLength): This must throw an
7812         ArgumentOutOfRangeException(), not an ArgumentException().
7813         (ves_icall_System_Array_GetLowerBound): Likewise.
7814         (ves_icall_System_Array_GetValue): Improved argument checking.
7815         (ves_icall_System_Array_SetValue): Improved argument checking.
7816
7817 2002-03-01  Martin Baulig  <martin@gnome.org>
7818
7819         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
7820         called with invalid arguments rather than just dying with g_assert().
7821         (ves_icall_System_Array_SetValue): Likewise.
7822         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
7823         raise a NotImplementedException instead.
7824         (ves_icall_System_Array_GetLength): Added argument checking.
7825         (ves_icall_System_Array_GetLowerBound): Added argument checking.
7826
7827 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
7828
7829         * object.h (mono_assert): new macros mono_assert and
7830         mono_assert_not_reached
7831
7832 2002-02-28  Martin Baulig  <martin@gnome.org>
7833
7834         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
7835         and "System::String::IsInterned" to "System::String::_IsInterned".
7836
7837 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
7838
7839         * icall.c: remove hacks for typebuilder. Added icall to create a
7840         modified type from a tybebuilder.
7841         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
7842         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
7843         to create a backing MonoClass for a TypeBuilder.
7844
7845 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
7846
7847         * class.c, class.h: more refactoring of class init.
7848         Export mono_class_setup_mono_type() and mono_class_setup_parent().
7849
7850 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
7851
7852         * marshal.c, marshal.h: start of marshaling interface.
7853
7854 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
7855
7856         * icall.c: fix order in assembly qualified name icall.
7857
7858 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
7859
7860         * class.c: do not free str, since we store it in the hash table.
7861         * reflection.h: add label field to MonoILExceptionInfo.
7862         * reflection.c: handle references to more than one assembly. Handle
7863         case when there isn't a module created in the assembly.
7864
7865 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
7866
7867         * class.c: Fix typo. Start refactoring of class init code.
7868
7869 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
7870
7871         * appdomain.c: exit with 1 on error.
7872         * class.c: we already have the name in MonoClassField.
7873         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
7874         MonoStreamHeader instead of an offset of image->raw_metadata.
7875
7876 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
7877
7878         * appdomain.c (mono_init): Be even more descriptive about the error.
7879
7880 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
7881
7882         * appdomain.c: give the user an informative message when corlib can't
7883         be loaded.
7884
7885 2002-02-26  Martin Baulig  <martin@gnome.org>
7886
7887         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
7888         New icall to get the time zone data.
7889
7890 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
7891
7892         * reflection.c: set virtual and raw size of section correctly.
7893         * threads.c: transfer domain information to newly created threads.
7894
7895 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
7896
7897         * class.c: when instancing a class in a domain, load the default
7898         vaules for static fields from the constant table. Fix System.Enum to
7899         not be an enum.
7900         * icall.c: implement Object::GetType() internalcall. Implemented
7901         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
7902         Fixed checking of binding flags in find_members().
7903         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
7904         * reflection.c: handle enumerations when writing to the constant
7905         table. Use a different object cache for types.
7906
7907
7908 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
7909
7910         * object.c (mono_object_isinst): fix for arrays
7911
7912         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
7913
7914 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
7915
7916         * object.c: don't use mprotect ()  and fix intern pool hash table
7917         lookup for big endian systems.
7918
7919 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
7920
7921         * icall.c: change type_is_subtype_of () signature.
7922
7923 2002-02-21  Mark Crichton  <crichton@gimp.org>
7924
7925         * rand.c, rand.h: Added random number generator for
7926         System.Security.Cryptography classes.
7927
7928         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
7929
7930         * icall.c: Added System.Security.Cryptography calls.
7931
7932 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
7933
7934         * class.c, icall.c, metadata.c: better support for pointer types.
7935         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
7936         * reflection.c: Add support for getting custom attrs for properties
7937         and simplify some code.
7938
7939 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
7940
7941         * icall.c: change getToken () and add custom attribute GetBlob()helper
7942         method.
7943         * reflection.h: add custom attrs array to the reflection builder structures.
7944         * reflection.c: encode and emit custom attributes for all the relevant
7945         reflection objects. Cache fieldref and methodref tokens. Change
7946         mono_image_create_token() interface to take a MonoDynamicAssembly.
7947         More complete custom attributes decoder. Load custom attributes for
7948         Assembly, Field, Method and Constructor objects, too. Make the
7949         returned array an Attribute[] one, not object[]. Added
7950         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
7951         custom attribute constructor.
7952
7953 2002-02-20  Dick Porter  <dick@ximian.com>
7954
7955         * icall.c:
7956         * rawbuffer.c:
7957         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
7958         problem code out for now).
7959
7960 2002-02-19  Radek Doulik  <rodo@ximian.com>
7961
7962         * object.c (mono_ldstr): use hash table to avoid multiple swapping
7963
7964 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
7965
7966         * icall.c: register the GetCustomAttributes method.
7967         * object.c, object.h: add mono_string_new_len ().
7968         * reflection.h, reflection.c: added mono_runtime_invoke(),
7969         mono_install_runtime_invoke(). Added
7970         mono_reflection_get_custom_attrs () to load custom attributes and
7971         create the attribute objects.
7972
7973 2002-02-19  Dick Porter  <dick@ximian.com>
7974         * threads-dummy-types.c:
7975         * threads-dummy-types.h:
7976         * threads-dummy.c:
7977         * threads-dummy.h:
7978         * threads-pthread-types.c:
7979         * threads-pthread-types.h:
7980         * threads-pthread.c:
7981         * threads-pthread.h:  Deleted obsolete files
7982
7983 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
7984
7985         * class.c (mono_class_vtable): runtime init the class when we
7986         allocate static class data.
7987
7988         * icall.c (ves_icall_System_Array_SetValue): check for null values.
7989
7990         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
7991         and String - but we will need generic marshalling support in the
7992         future. 
7993         (mono_init): set the domain name in a ms compatible way
7994
7995         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
7996         String[].
7997
7998 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
7999
8000         * object.c (mono_array_clone): use alloca() instead of g_malloc  
8001         for sizes
8002
8003         * appdomain.c (mono_domain_unload): impl.
8004
8005 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8006
8007         * appdomain.c, object.c: fix intern pool implementation.
8008         * class.c: fix alignment code.
8009
8010 2002-02-16  Radek Doulik  <rodo@ximian.com>
8011
8012         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
8013         and s2 > s1, just copy lower bytes to be compatible with little
8014         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
8015         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
8016
8017         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
8018         force big_endian to be 1 for big endian machines 
8019         (ves_icall_iconv_new_decoder): ditto
8020
8021 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
8022
8023         * socket-io.c (convert_sockopt_level_and_name): If the system
8024         doesn't define SOL_IP or SOL_TCP, get them by hand using
8025         getprotobyname() and caching the values (because this could be a
8026         slow operation).
8027         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
8028         Use the appropriate struct when the system does support it. Ie,
8029         not all systems have struct ip_mreqn so use struct ip_mreq when
8030         appropriate.
8031
8032 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
8033
8034         * reflection.c: handle finally clauses.
8035
8036 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
8037
8038         * socket-io.c: use g_snprintf() instead of snprintf.
8039
8040 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
8041
8042         * reflection.c (mono_param_get_objects): Cast second argument to
8043         mono_method_get_param_names to a const char** to silence the
8044         compiler warning.
8045
8046         * appdomain.c (mono_domain_assembly_open): Put parens around the
8047         truth statement in the for-loop.
8048
8049         * unicode.c (iconv_convert): Got rid of a compiler warning about
8050         int i being unused when the system has a new iconv.
8051         (iconv_get_length): Same.
8052
8053         * image.c (load_class_names): Cast the second argument to
8054         g_hash_table_insert() to char* to hush compiler warnings about the
8055         arg being a const.
8056         (mono_image_open): Same here.
8057
8058         * socket-io.c: Don't conditionally include sys/filio.h or
8059         sys/sockio.h here anymore since we now get them from
8060         io-layer/io-layer.h
8061         (inet_pton): If the system doesn't support inet_aton, implement
8062         using inet_addr and also #define INADDR_NONE if it isn't defined
8063         by the system.
8064
8065 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8066
8067         * metadata.c, metadata.h: added function to get packing and size info
8068         of a typedef.
8069         * reflection.h, reflection.c: handle field RVA data. Save info about
8070         the table layout if needed. Assign typedef indexes to all the types
8071         before dumping the info about them to avoid forward reference problems.
8072
8073 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
8074
8075         * socket-io.c (convert_sockopt_level_and_name): ifdef
8076         SO_ACCEPTCONN because it is not defined on my system (old debian)
8077
8078 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8079
8080         * opcode.c: use stddef.h to get NULL.
8081
8082 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
8083
8084         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
8085         for FIONBIO, FIONREAD and SIOCATMARK.
8086         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
8087         define INADDR_NONE and besides, inet_addr() is deprecated and
8088         should not be used. Use inet_pton() instead - it also has the
8089         added bonus that it can easily handle IPv6 addresses as well.
8090         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
8091
8092 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
8093
8094         * decimal.c: remove _MSC_VER conditional.
8095
8096 2002-02-13  Dick Porter  <dick@ximian.com>
8097
8098         * socket-io.c: 
8099         * icall.c: Internal calls for Blocking, Select, Shutdown,
8100         GetSocketOption and SetSocketOption
8101
8102 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8103
8104         * assembly.cs: better resolver: use it instead of some kludgy
8105         code.
8106
8107 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
8108
8109         * reflection.c: the best way to speed-up the compiler is to avoid
8110         infinite loops.
8111
8112 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
8113
8114         * class.c (mono_class_vtable): changed the object layout
8115         (obj->vtable->class). 
8116         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
8117
8118 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8119
8120         * assembly.c: look for assemblies in the assembly dir, too.
8121
8122 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8123
8124         * class.c: fix thinko in mono_class_from_type().
8125
8126 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8127
8128         * exception.h, exception.c: added TypeLoadException.
8129         * object.h, object.c: added mono_array_clone ().
8130         * icall.c: handle throwOnError in AssemblyGetType().
8131         Added Array.Clone().
8132         * opcode.h, opcode.c: use a single value for the opcode val.
8133         Compile fix for non-gcc compilers.
8134
8135 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
8136
8137         * opcodes.c, opcodes.h: export interesting info about opcodes.
8138
8139 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
8140
8141         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
8142         icalls. 
8143
8144         * class.c (class_compute_field_layout): set element_class for enums
8145         (mono_class_create_from_typedef): set element_class for normal classes
8146
8147         * icall.c (ves_icall_System_Enum_get_value): impl.
8148
8149         * class.c (mono_class_create_from_typedef): do not set valuetype
8150         flag for System.ValueType and System.Enum
8151
8152 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
8153
8154         * unicode.c (iconv_convert): fix big endian problem.
8155
8156 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8157
8158         * class.c: add asserts if we are ever going to scribble over memory.
8159         * socket-io.c: not all systems have AF_IRDA defined.
8160
8161 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
8162
8163         * class.c (class_compute_field_layout): do not consider static
8164         fields to compute alignment
8165
8166 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
8167
8168         * appdomain.c (mono_appdomain_get): impl.
8169         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
8170
8171 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
8172
8173         * icall.c: ignore "file://" prefix when loading an assembly.
8174
8175 2002-01-23  Dick Porter  <dick@ximian.com>
8176
8177         * socket-io.c:
8178         * icall.c:
8179         * Makefile.am: Added socket support
8180
8181 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
8182
8183         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
8184         code back.  This should return the assemblies that are loaded by
8185         the runtime on behalf of an application domain. 
8186
8187         The current implementation is still broken, it just returns every
8188         assembly loaded, but until we get real applications domain this
8189         will do.
8190
8191 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
8192
8193         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
8194         AppDomain object.
8195
8196 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
8197
8198         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
8199         the mono_class_from_name lookup.
8200         (ves_icall_get_parameter_info): ditto.
8201         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
8202         method.
8203         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
8204
8205 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
8206
8207         * class.c: load also nested classes on class init.
8208         System.ValueType instance methods gets passed boxed
8209         values, unless methods in derived classed that get a pointer to the
8210         data.
8211         * icall.c: use better name parsing code in GetType().
8212         * image.c, image.h: add mono_image_loaded ().
8213         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
8214         * reflection.c, reflection.h: added mono_reflection_parse_type().
8215
8216 2002-01-22  Veronica De Santis <veron78@interfree.it>
8217
8218         * icall.c : Added mapping of internal calls for Manual and Auto reset events
8219         * threads.c : Added the implementation of internal calls for events
8220         * threads.h : Added prototypes of internal calls for events
8221         
8222 2002-01-21  Radek Doulik  <rodo@ximian.com>
8223
8224         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
8225
8226 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
8227
8228         * class.c (mono_class_init): set min_align to 1 (instead of 0)
8229         (mono_class_value_size): use min_align
8230
8231 2002-01-20  Dick Porter  <dick@ximian.com>
8232
8233         * threads.h:
8234         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
8235         so it compiles on w32.
8236
8237 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
8238
8239         * metadata.c (mono_type_stack_size): impl.
8240
8241         * class.c (mono_class_get_field): impl. memberref token
8242
8243 2002-01-16 Veronica De Santis <veron78@@interfree.it>
8244
8245         * icall.h : Added the internal calls mapping for CreateMutex_internal
8246                     and ReleaseMutex_internal.
8247         * threads.h : Added the prototype of mutexes internal calls.
8248         * threads.c : Added the implementations of mutexes internal calls.
8249
8250 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
8251
8252         * metaparse.h: removed unused file.
8253         * reflection.c, reflection.h: added stream_data_align () function 
8254         to align data in streams and keep stream aligned. Add support for
8255         exception support in method headers.
8256
8257 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
8258
8259         * unicode.c: make iconv_convert () return the number of bytess written
8260         in the output buffer.
8261
8262 2002-01-15  Dick Porter  <dick@ximian.com>
8263         * threads.c: Make the runtime's idea of infinite timeouts coincide
8264         with the class library's
8265
8266         Fix a particularly egregious bug in mono_thread_cleanup(). That
8267         code was so utterly bogus it must have been written on a Monday.
8268
8269 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
8270
8271         * reflection.h: add subtypes field to TypeBuilder.
8272         * reflection.c: encode constants for literal fields.
8273         Handle subtypes. Fix user string token (and add a zero byte)
8274         at the end.
8275         
8276 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
8277
8278         * class.c (mono_class_init): bug fix: assign slot numbers for
8279         abstract methods.
8280
8281 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8282
8283         * reflection.c: don't try to output a code RVA for abstract methods.
8284         Small fixes for method header format. Output parameter info to the
8285         ParamDef table. Save method overriding info to MethodImpl table.
8286         Fix property support. Allow typedef.extends to be a type in the
8287         building assembly.
8288         * verify.c: fix off-by-one error.
8289
8290 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
8291
8292         * class.c: fix mono_class_from_mono_type () for szarray types.
8293         Remove unused cache check in mono_class_from_type_spec().
8294         * icall.c: *type_from_name () functions handle simple arrays and byref.
8295         * reflection.c: handle byref and szarray types. Handle methods without
8296         body (gets P/Invoke compilation working). Handle types and fields in
8297         get_token ().
8298         * reflection.h: add rank to MonoTypeInfo.
8299
8300 2002-01-10  Dick Porter  <dick@ximian.com>
8301
8302         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
8303         internal calls
8304
8305 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
8306
8307         * icall.c: initialize class in type_from_handle ().
8308         Loop also in parent classes for get_method ().
8309         * reflection.c: properly encode class and valuetype types.
8310         Start on encoding TypeBuilder types. Handle fieldrefs.
8311         Use correct length when registering a user string.
8312         Handle ConstructorBuilder and MonoMethod in get_token ().
8313         Make mono_type_get_object () aware of cached types.
8314         * object.c: back out change to mono_string_new ().
8315
8316 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
8317         * object.c: mono_string_new should return a NULL when the string 
8318         passed in is NULL -- not try to deference it.
8319         
8320 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
8321
8322         * icall.c: hack to make IsSubType work for TypeBuilders.
8323         * reflection.c: emit constructors before methods.
8324         Retrieve param names in mono_param_get_objects().
8325
8326 2002/01/05  Nick Drochak  <ndrochak@gol.com>
8327
8328         * Makefile.am: fix list of headers and sources so automake 1.5
8329         doesn't complain. Removed \# at end of list.
8330
8331 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
8332
8333         * reflection.c: get token for a method ref. Set return type of
8334         constructor to void.
8335         * loader.c: debug message.
8336         * class.c: typo fix.
8337
8338 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
8339
8340         * icall.c: fix array init with rank > 1. FindMembers
8341         loops in parent class as well.
8342         * image.c: do not insert nested types in name cache.
8343         * reflection.c: warning fix.
8344         * reflection.h: add override method (for interface impl).
8345
8346 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
8347
8348         * metadata.c: fix customattr decoding.
8349
8350 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
8351
8352         * rawbuffer.cs: Added native Win32 implementation, avoids using
8353         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
8354
8355 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
8356
8357         * class.c: make the low-level routines handle the cache.
8358
8359 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
8360
8361         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
8362
8363 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
8364
8365         * class.c: fix mono_array_element_size() for objects.
8366         * class.h, class.c: add properties to MonoClass and load them
8367         at init time.
8368         * icall.c: check with isinst() when assigning a value to an array
8369         instead of requiring the classes to match exactly.
8370         Implemented icall for System.Type::GetType().
8371         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
8372         enums. Handle bindingflags when looking for methods and fields.
8373         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
8374         and mono_metadata_methods_from_property().
8375         * reflection.h, reflection.c: added structures for propreties,
8376         parameters and enums. Implemented mono_property_get_object() and
8377         mono_param_get_objects().
8378
8379 2001-12-18  Dick Porter  <dick@ximian.com>
8380
8381         * file-io.c: Use mono_string_to_utf16() instead of
8382         mono_string_chars()
8383
8384         * object.c: Added mono_string_to_utf16(), which copies the non
8385         NULL-terminated MonoString into a new double-null-terminated
8386         buffer.
8387
8388 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
8389
8390         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
8391
8392 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
8393
8394         * file-io.c: raise exceptions if handle is invalid.
8395
8396 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
8397
8398         * assembly.c: yet another check for mscorlib.
8399         * class.c, class.h: load nesting info for classes.
8400         * icall.c: many new functions to support the Reflection classes.
8401         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
8402         * reflection.h, reflection.c: mono_image_create_token(),
8403         mono_assembly_get_object(), mono_type_get_object(),
8404         mono_method_get_object(), mono_field_get_object(): methods to return
8405         objects that parallel the C representation of assemblies, types,
8406         methods, fields.
8407
8408 2001-12-11  Dick Porter  <dick@ximian.com>
8409
8410         * icall.c:
8411         * file-io.c: Internal calls for file IO.
8412
8413 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
8414
8415         * tabledefs.h: missing FileAttributes.
8416         * verify.h, verify.c: use is_valid_string () to simplify and check for
8417         valid strings more correctly. Fix warnings and speeling.
8418         Check more tables: Filed, File, ModuleRef, StandAloneSig.
8419         Check code: branches, maxstack, method calls.
8420
8421 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
8422
8423         * object.c (mono_object_allocate): removed static, so that the jit
8424         can allocate value types.
8425
8426         * icall.c (ves_icall_System_DateTime_GetNow): impl.
8427
8428 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
8429
8430         * class.c: init enum types right away and register the
8431         token->MonoClass map in mono_class_create_from_typedef ().
8432         * verify.h, verify.c: first cut of the verifier.
8433         * pedump.c: add --verify switch to verify metadata tables.
8434         * tabledefs.h: add some missing enums.
8435
8436 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
8437
8438         * class.c (mono_install_runtime_class_init): impl.
8439         (mono_class_init): renamed mono_class_metadata_init to
8440         mono_class_init, also removed the metadata_inited flag
8441
8442         * object.c (mono_object_isinst): use faster algorithm
8443
8444 2001-11-30  Radek Doulik  <rodo@ximian.com>
8445
8446         * mono-endian.h: reverted last change
8447         added function prototypes
8448
8449         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
8450         add mono-endian.c back
8451
8452         * mono-endian.c: returned back, as Paolo pointed out, it's needed
8453         for unaligned access, I've mistaked it with endianess. I am
8454         sorry.
8455         (mono_read16): fix reverted endianess
8456         (mono_read64): ditto
8457         (mono_read32): ditto
8458
8459 2001-11-30  Dick Porter  <dick@ximian.com>
8460
8461         * exception.c: Implement mono_exception_from_name()
8462
8463 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
8464
8465         * metadata.h, metadata.c: remove params_size and locals_size and their
8466         calculation from the metadata code: they are only usefult to the
8467         interp.
8468
8469 2001-11-29  Radek Doulik  <rodo@ximian.com>
8470
8471         * object.c (mono_ldstr): swap bytes here, it's probably not the
8472         best place, but works for me now, I'll redo it once I know mono
8473         better, also note that I add PROT_WRITE and don't reset back, also
8474         note that it's only affects big endians, so x86 should be OK
8475
8476         * mono-endian.h (read16): use just glib macros for both endians
8477
8478         * mono-endian.c: removed as glib macros are used in in
8479         mono-endian.h so we don't need to care about endianess for read
8480         macros as glib does that for us already
8481
8482 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
8483
8484         * class.h, class.h: take minimum alignment into consideration so
8485         that the fields of a class remain aligned also when in an array.
8486
8487 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
8488
8489         * loader.h, loader.c: add mono_method_get_param_names().
8490         * class.c: 0-init class fields.
8491
8492 2001-11-26  Dick Porter  <dick@ximian.com>
8493
8494         * icall.c:
8495         * threads-types.h:
8496         * threads.c: New file that handles System.Threading on all platforms
8497
8498         * object.c: 
8499         * object.h: Remove the synchronisation struct from MonoObject,
8500         replace it with a pointer that gets initialised on demand
8501
8502         * Makefile.am: Replace all the system-specific threading code with
8503         a single file that uses the new wrapper library
8504
8505 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
8506
8507         * class.c, class.h: add mono_install_trampoline() so that the runtime
8508         can register a function to create a trampoline: removes the ugly
8509         requirement that a runtime needed to export arch_create_jit_trampoline.
8510         * object.h, object.c: added mono_install_handler() so that the runtime
8511         can install an handler for exceptions generated in C code (with
8512         mono_raise_exception()). Added C struct for System.Delegate.
8513         * pedump.c: removed arch_create_jit_trampoline.
8514         * reflection.c: some cleanups to allow registering user strings and
8515         later getting a token for methodrefs and fieldrefs before the assembly
8516         is built.
8517         * row-indexes.h: updates and fixes from the new ECMA specs.
8518
8519 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
8520
8521         * class.h, class.c: add enum_basetype field to MonoClass.
8522         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
8523         to get index in the constant table reated to a field, param or
8524         property.
8525         * reflection.h, reflection.c: handle constructors. Set public-key and
8526         version number of the built assembly to 0.
8527         * row-indexes.h: update from new ECMA spec.
8528
8529 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
8530
8531         * class.h, class.c: add a max_interface_id to MonoClass.
8532         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
8533         since it's used to do that. Added mono_type_type_from_obj().
8534         Make GetType() return NULL instead of segfaulting if the type was not
8535         found. Handle simple arrays in assQualifiedName.
8536         * object.h: add a struct to represent an Exception.
8537         * reflection.c: output call convention in method signature.
8538         Add code to support P/Invoke methods and fixed offsets for fields.
8539
8540 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
8541
8542         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
8543         the value.
8544         * icall.c: use mono_array_addr instead of array->vector: fixes the
8545         reflection image writing.
8546         * reflection.c: init call convention byte to 0 in method signature.
8547         Encode the property signature. Don't output property-related methods
8548         twice. Really process the properties for a type (don't cast a field to
8549         a property, my mom always told me that).
8550         Fix 64 bit issues in pointer alignment in a different and more
8551         readable way.
8552
8553 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
8554
8555         * loader.h: Removed type class from MonoDefaults, added monotype
8556
8557         * loader.c: Loaded MonoType, removed loading of Type
8558
8559         * icall.c (my_mono_new_object): Now returns a System.MonoType,
8560         and fills in System.Type._impl with a RuntimeTypeHandle rather
8561         than the actual MonoClass *
8562
8563         (ves_icall_type_from_handle): change from type_class to
8564         monotype_class
8565
8566         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
8567         implemented
8568
8569         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
8570         implemented
8571
8572         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
8573
8574         (ves_icall_System_Reflection_Assembly_GetType): implemented
8575
8576         (ves_icall_System_MonoType_assQualifiedName): implemented
8577
8578         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
8579
8580 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
8581
8582         * assembly.c (mono_assembly_open): Implement a cache for the
8583         assemblies. 
8584
8585         (mono_assembly_close): only destroy the assembly when the last
8586         reference is gone.
8587         
8588 2001-11-09  Dick Porter  <dick@ximian.com>
8589
8590         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
8591
8592 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
8593
8594         * class.c (mono_class_metadata_init): bug fix: compute the right slot
8595
8596 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
8597
8598         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
8599         from Martin Weindel.
8600         * object.h: add mono_string_chars ().
8601
8602 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
8603
8604         * reflection.c (build_compressed_metadata): Eliminates warnings
8605         and uses 64-bit clean code.
8606
8607         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
8608         (mono_type_equal): Change signature to eliminate warnings.
8609
8610 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
8611
8612         * icall.c, loader.c: remove the internalcall array constructors.
8613         Changes to match the new MonoArray structure.
8614         * object.h, object.c: an array object doesn't allocate an extra
8615         vector. Add mono_array_new_full () to create jagged arrays easily.
8616
8617 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
8618
8619         * metadata.h, metadata.c: add mono_metadata_field_info () to
8620         retreive all the info about a field from vairous tables.
8621         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
8622         * class.h, class.c: augment MonoClassField with more info.
8623         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
8624         policy and load a field's RVA if needed.
8625
8626 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
8627
8628         * class.c (mono_class_metadata_init): create a trampoline for all
8629         virtual functions instead of actually compiling them.
8630
8631 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
8632
8633         * class.h, class.c: include name in MonoClassField.
8634         * class.c: fix fundamental type of System.Object and System.String.
8635         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
8636         tokens in ldtoken.
8637         * icall.c: remove internalcalls for the Reflection stuff that is now
8638         done in C# code.
8639         * loader.c: mono_field_from_memberref () implementation.
8640         * mono-endian.c: thinko (s/struct/union/g).
8641         * object.c, object.h: make the mono_string_* prototypes actually use
8642         MonoString instead of MonoObject.
8643         * reflection.c, reflection.h: updates for changes in the reflection
8644         code in corlib: we use C structures that map to the actual C# classes.
8645         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
8646         fat method header if needed and use the info from the ILGenerator for
8647         methods. Handle fields in types. Misc fixes.
8648
8649 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
8650
8651         * class.c (mono_class_metadata_init): bug fix: always allocate
8652         space for static class data
8653
8654 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
8655
8656         * class.c (mono_compute_relative_numbering): use relative
8657         numbering to support fast runtime type checks.
8658
8659 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
8660
8661         * class.c (mono_class_create_from_typeref): added debugging output
8662         to print class name when MonoDummy is returned instead of real class
8663
8664 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
8665
8666         * class.c (mono_class_metadata_init): interface offset table now
8667         contains pointers into the vtable - this is more efficient for the jit
8668
8669 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
8670
8671         * class.c (mono_class_metadata_init): use a temporary vtable (the
8672         old algorithm only worked for the interpreter, but not for the jit)
8673
8674 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
8675
8676         * loader.c (method_from_memberref): use mono_class_get to get the
8677         class of an array instead of using System.Array directly.
8678         (mono_get_method): also add MEMBERREF methods to the method cache
8679         which usefull for arrays.
8680
8681 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
8682
8683         * pedump.c (arch_compile_method): added to compute vtable entry
8684
8685         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
8686         number of interfaces.
8687         
8688         * class.h: merged MonoArrayClass into MonoClass
8689
8690         * class.c (mono_class_create_from_typedef): compute the vtable size and
8691         allocate space to include the vtable inside MonoClass
8692         (mono_class_metadata_init): initialize the vtable
8693
8694 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
8695
8696         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
8697         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
8698         * image.c: endian fixes by Laurent Rioux.
8699         * object.h, object.c: rename MonoStringObject to MonoString and
8700         MonoArrayObject to MonoArray. Change some function names to conform to
8701         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
8702         guint16* as first argument, so don't use char*.
8703         Provide macros to do the interesting things on arrays in a portable way.
8704         * threads-pthread.c: updates for the API changes and #include <sched.h>
8705         (required for sched_yield()).
8706         * icall.c: updates for the API changes above.
8707         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
8708         platforms that need them.
8709
8710 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
8711
8712         * class.c: set the correct type for all the fundamental
8713         type when loading the class.
8714
8715 2001-10-05  Dick Porter  <dick@ximian.com>
8716
8717         * threads-pthread.c (pthread_mutex_timedlock): Simple
8718         compatibility version for C libraries that lack this call.
8719
8720 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
8721
8722         * class.c: MonoTypes stored in MonoClass are stored as
8723         fundamental MonoTypes when the class represents a
8724         fundamental type (System.Int32, ...).
8725         The TypeHandle return by ldtoken is a MonoType*.
8726         * icall.c: ves_icall_get_data_chunk () write out all the
8727         PE/COFF stuff. Implement ves_icall_define_method (),
8728         ves_icall_set_method_body (), ves_icall_type_from_handle ().
8729         * image.c: properly skip unknown streams.
8730         * loader.h, loader.c: add type_class to mono_defaults.
8731         * metadata.c, metadata.h: export compute_size () as
8732         mono_metadata_compute_size () with a better interface.
8733         Typo and C&P fixes.
8734         * pedump.c: don't try to print the entry point RVA if there is no entry point.
8735         * reflection.c, reflection.h: many cleanups, fixes, output method
8736         signatures and headers, typedef and typeref info, compress the metadata
8737         tables, output all the heap streams, cli header etc.
8738         * row-indexes.h: typo fixes.
8739
8740 2001-10-04  Dick Porter  <dick@ximian.com>
8741
8742         * object.h: Add a synchronisation mutex struct to MonoObject
8743
8744         * object.c (mono_new_object): Initialise the object
8745         synchronisation mutexes
8746
8747         * icall.c: System.Threading.Monitor internal calls
8748         
8749         * threads-pthread.h:
8750         * threads-pthread.c: System.Threading.Monitor internal calls
8751
8752         * threads-types.h: New file, includes the system-specific thread
8753         structures
8754         
8755         * threads-pthread-types.h:
8756         * threads-pthread-types.c: New files, handle pthread-specific
8757         synchronisation types
8758
8759         * threads-dummy-types.h: 
8760         * threads-dummy-types.c: New files of dummy support for
8761         thread-specific types
8762
8763         * metadata.c:
8764         * image.c:
8765         * pedump.c: include mono-endian.h not endian.h
8766         
8767         * Makefile.am: More threads files.
8768         Name mono-endian.h not endian.h
8769
8770 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
8771
8772         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
8773         stuff and implement a few more bits.
8774         * icall.c: a field needs to be dereferenced twice. Do not use the same
8775         name for two variables in the same scope.
8776         * image.c, image.h: cleanups.
8777
8778 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
8779
8780         * class.c (mono_class_metadata_init): bug fix: compute the right size
8781
8782 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
8783
8784         * icall.c: implemented some of the Reflection internalcalls.
8785         * image.c, image.h: start writing out the PE/COFF image.
8786         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
8787         that does the reverse than decode_blob_size ().
8788         * object.c: use mono_metadata_encode_value (). Move here
8789         temporary implementation of mono_string_to_utf8 ().
8790         * rawbuffer.c: make malloc_map static.
8791
8792 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
8793
8794         * metadata.c: fix type comparison for arrays.
8795         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
8796         Added a couple of new classes to monodefaults.
8797         * icall.c: added a couple of Reflection-related internalcalls.
8798         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
8799         Added a byval_arg MonoType to MonoClass.
8800
8801 2001-09-28  Dick Porter  <dick@ximian.com>
8802
8803         * icall.c:
8804         * threads-pthread.h: 
8805         * threads-pthread.c: Implemented internal calls for
8806         LocalDataStoreSlot operations.  Applied mutexes around all shared
8807         data.  Reworked the thread creation and Start() operations to
8808         avoid a race condition.
8809         
8810         * threads-dummy.h:
8811         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
8812
8813 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
8814
8815         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
8816
8817 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
8818
8819         * class.c, loader.c: warn and return NULL instead of erroring out.
8820         * icall.c: added System.AppDomain::getCurDomain().
8821         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
8822
8823 2001-09-25  Dick Porter  <dick@ximian.com>
8824
8825         * threads-pthread.h:
8826         * threads-pthread.c: Implemented timed thread joining and added
8827         System.Threading.Thread::Join_internal internal call
8828
8829         * icall.c: Added System.Threading.Thread::Join_internal internal call
8830
8831         * threads-dummy.h:
8832         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
8833
8834 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
8835
8836         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
8837         mono_string_intern () to implement the semantics of the ldstr opcode
8838         and the interning of System.Strings.
8839         * icall.c: provide hooks to make String::IsIntern and String::Intern
8840         internalcalls.
8841
8842 2001-09-23  Dick Porter  <dick@ximian.com>
8843
8844         * threads-dummy.c: 
8845         * threads-dummy.h: New files of dummy threading routines
8846
8847         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
8848         support code based on system specifics
8849
8850         Rename PTHREAD_LIBS to THREAD_LIBS
8851         
8852 2001-09-23  Dick Porter  <dick@ximian.com>
8853
8854         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
8855         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
8856         internal calls.
8857         (mono_thread_init): Set up a Thread object instance to return when
8858         the main thread calls Thread.CurrentThread
8859         (mono_thread_cleanup): Wait for all subthreads to exit
8860
8861         * icall.c: New internal calls for System.Threading.Thread::Sleep
8862         (including Schedule) and CurrentThread
8863
8864         * threads.h: New file, to insulate thread-specific stuff from the
8865         rest of the code
8866
8867 2001-09-21  Dick Porter  <dick@ximian.com>
8868
8869         * threads-pthread.h: 
8870         * threads-pthread.c: New file, for handling pthreads-style
8871         threading support.  Start() now starts a new thread and executes
8872         the ThreadStart delegate instance.
8873
8874         * icall.c: Added the internalcall for
8875         System.Threading.Thread::Start_internal
8876
8877         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
8878
8879 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
8880
8881         * loader.c: work around the different signatures for delegates
8882         constructors csc generates in compiled code vs the ones compiled in mscorlib.
8883
8884 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
8885
8886         * class.h, class.c: add mono_class_get_field_from_name ().
8887         * *: Fix C comments and other ANSI C issues.
8888
8889 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
8890
8891         * endian.h, assembly.c: fix some endianness issues.
8892
8893 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
8894
8895         * loader.h, load.c: add delegate_class to mono_defaults.
8896         Handle runtime provided methods in mono_get_method ().
8897
8898 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
8899
8900         * loader.c (mono_get_method): use pinvoke for internal call
8901
8902         * icall.c: use pinvoke for internal call
8903
8904         * loader.c (method_from_memberref): set the method name
8905
8906 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
8907
8908         * metadata.c: help the compiler generate better code for
8909         mono_class_from_mono_type ().
8910
8911 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
8912
8913         * class.c (mono_class_metadata_init): delayed computing of the
8914         class size to mono_class_metadata_init ()
8915
8916 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
8917
8918         * class.c, class.h: add an interfaces member to MonoClass.
8919         * image.c, image.h: add assembly_name field to MonoImage
8920         from the assembly table.
8921         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
8922
8923 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
8924
8925         * class.c: Handle Array in mono_class_from_mono_type ().
8926         * metadata.c, pedump.c: some endian fixes.
8927
8928 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
8929
8930         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
8931         * metadata.c: fix small problem introduced with the latest commit.
8932
8933 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
8934
8935         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
8936         We don't need a MonoMetadata pointer anymore to compare signatures in
8937         mono_metadata_signature_equal (), update callers.
8938         Reduced memory usage an number of allocations for MonoMethodHeader and
8939         MonoMethodSignature.
8940
8941 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
8942
8943         * metadata.c: added compare for szarray.
8944
8945 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
8946
8947         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
8948         and add a couple more types to it and mono_defaults. Give an hint on
8949         classes that need implementing in our corlib and are referenced
8950         in mscorlib.
8951
8952 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
8953
8954         * class.h, class.c: keep track if a class is also an Enum.
8955         * loader.c: Implement a couple more types for use in libffi
8956         marshalling. Gives better diagnostics when failing to dlopen
8957         a library. Set method->klass for P/Invoke methods, too.
8958
8959 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
8960
8961         * class.c, class.h: add a MonoType this_arg to MonoClass that
8962         represents a pointer to an object of the class' type that
8963         can be used by the interpreter and later the type cache.
8964         Add best guess alignment info for valuetype objects.
8965
8966 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
8967
8968         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
8969         into MonoType: one less level of indirection and allocation and
8970         simplifies quite a bit of code. Added cache for MonoTypes that are
8971         used frequently, so that we don't need to allocate them all the time.
8972
8973 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
8974
8975         * class.c (mono_class_create_from_typedef): System.Enum is also a
8976         value type, although it does not derive from System.ValueType
8977         (maybe a bug in the ms compiler?)
8978
8979         * metadata.c (mono_type_size): return the right size for value types
8980
8981         * loader.c (mono_get_method): only initialize method header if not abstract
8982
8983         * class.c (mono_class_from_mono_type): use mono_default values. 
8984
8985 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
8986
8987         * *: use MonoClass pointers instead of <type_tokens>
8988         
8989         * class.h: new flag: metadata_inited.
8990
8991         * class.c (mono_class_metadata_init): impl.
8992         (mono_class_instance_size): impl.
8993         (mono_class_data_size): impl.
8994
8995 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
8996
8997         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
8998         MonoClass now has the name and name_space fields. 
8999         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
9000         mono_get_method () takes and optional MonoClass as argument.
9001         Removed mono_typedef_from_name() and added mono_class_token_from_name()
9002         instead that takes advantage of a map from class names to typedef
9003         tokens in MonoImage.
9004
9005 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
9006
9007         * metadata.c: zero is not a valid alignment boundary.
9008         Merge MONO_TYPE_VOID in default decoding code.
9009
9010 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
9011
9012         * image.h: merged MonoMetadata into MonoImage
9013
9014         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
9015         identify the type of elements.
9016
9017 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
9018
9019         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
9020         * cil-coff.h: split MonoMSDOSHeader and add size info.
9021         * image.c: add some consistency checks.
9022         * metadata.c: fix row size computation: one programmer
9023         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
9024         add explanation for the locator routine.
9025         Fix decoding of size in method header.
9026         
9027 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
9028
9029         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
9030         (g_concat_dir_and_file): Bring g_concat_dir_and_file
9031         function from gnome-libs.  This uses the right path separator
9032         based on the OS, and also works around a bug in some systems where
9033         a double slash is not allowed. 
9034         (default_assembly_name_resolver): Use g_concat_dir_and_file
9035         (mono_assembly_open): ditto.
9036
9037 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
9038
9039         * metadata.c (mono_metadata_signature_equal): impl.
9040
9041         * *: void is now a realy MonoType (instead of using NULL)
9042         
9043         * metadata.c (do_mono_metadata_parse_type): use
9044         mono_metadata_parse_type to parse void value.
9045
9046 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
9047
9048         * metadata.c, metadata.h: in the signature and method header store
9049         only the space required for holding the loca vars and incoming arguments.
9050
9051 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
9052
9053         * metadata.c (do_mono_metadata_parse_type): treat void like any
9054         other type (instead of assigning NULL);
9055
9056 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
9057
9058         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
9059
9060 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
9061
9062         * image.c (do_mono_image_open): added a cache for arrays.
9063
9064 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
9065
9066         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
9067         decode a single column from a row in a metadata table and changes
9068         to take advantage of it in the typedef locator (gives a nice speed up).
9069         Store offset info for function params.
9070
9071 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
9072
9073         * image.h (MONO_IMAGE_IS_CORLIB): removed 
9074
9075 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
9076
9077         * assembly.c: how could mono_assembly_close () had ever worked?
9078         * metadata.c, metadata.h: provide offset info for local vars.
9079         Implement mono_type_size () to take care of alignment as well
9080         as size (it was mono_field_type_size in cli/class.c before).
9081
9082 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
9083
9084         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
9085
9086         * assembly.h (CORLIB_NAME): set to corlib.dll
9087
9088         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
9089
9090 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
9091
9092         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
9093         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
9094         tokentype.h: massive namespace cleanup.
9095
9096 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
9097
9098         * metadata.h, metadata.c: decode exception clauses when parsing method header.
9099
9100 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
9101
9102         * metadata.c (mono_metadata_free_type): added check for type !=
9103         NULL (void) before calling mono_metadata_free_type()
9104
9105 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
9106
9107         * metadata.h, row_indexes.h: added header with enumerations to use
9108         to index in the columns from tables in metadata and to decode coded
9109         tokens: we should start using this instead of embedding magic numbers
9110         all over the code.
9111
9112 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
9113
9114         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
9115         Move metadata_t info from cli_image_info_t to MonoImage, where
9116         it's easily accessible. Changed all the uses accordingly.
9117         Added the method and class caches to MonoImage.
9118         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
9119         and mono_metadata_decode_value () signature to be more consistent
9120         with the other parse functions (and simplify code). Taken advantage
9121         of zero-length array allocation with GCC. Removed reduntant (and
9122         wrong) MonoFieldType struct and use MonoParam instead. Changed
9123         mono_metadata_parse_field_type () to use common code for parsing.
9124         Added mono_metadata_typedef_from_field () and
9125         mono_metadata_typedef_from_method () to lookup a typedef index from a
9126         field or method token.
9127         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
9128
9129 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
9130
9131         * metadata.c (mono_metadata_parse_field_type): Implement. 
9132         (do_mono_metadata_parse_type): Split engine from
9133         mono_metadata_parse_type, so that we can create smaller structures
9134         for things that just have one pointer to the MonoType (look at
9135         the MonoFieldType)
9136
9137 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
9138
9139         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
9140         as Jan Gray found out, it is incorrect. 
9141
9142 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
9143
9144         * assembly.c: Implement asssembly loading.  This loads an image
9145         and loads all the referenced assemblies.  Come to think of it, we
9146         could always do lazy loading of the assemblies. 
9147
9148         * image.c (mono_image_open): Keep loaded images in a hashtable.
9149
9150         * image.h (MonoImage): Add reference count.
9151
9152 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
9153
9154         * assembly.c (mono_assembly_open): Keep track of the file name in
9155         case the assembly has no ASSEMBLY table.
9156
9157         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
9158         from get.c here.
9159
9160 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
9161
9162         * metadata.c, metadata.h: decode local vars in method header
9163         parse function. Change callers accordingly.
9164
9165 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
9166
9167         * metadata.h, cil-coff.h: protect against multiple inclusion.
9168         Added some new structures to hold information decoded from metadata:
9169         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
9170         and relevant decoding/free functions.
9171         * metadata.c: implement decoding functions. Add warning for out of bounds
9172         index in mono_metadata_locate(). Implement mono_get_method () to retreive
9173         all the info about a method signature and invocation. Remove check on
9174         uninitialized local var in parse_mh() and fix memory leak.
9175
9176 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
9177
9178         * metadata.h: More macros.
9179
9180         * tokentype.h: New file.
9181
9182 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
9183
9184         * assembly.c: added a consistency check and initialize
9185         some structures with g_new0().
9186         * metadata.c: fixed a couple more bugs in table size computation
9187         and add other checks for out-of bound access to metadata.
9188
9189 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
9190
9191         * metatada.c: fix bugs computing table sizes. Spew a
9192         warning when index in string heap is out of bounds.
9193
9194 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
9195
9196         * metadata.h: Add a couple of macros to manipulate tokens. 
9197
9198 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
9199
9200         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
9201         cli_section_tables).
9202
9203 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
9204
9205         * metadata.c (mono_metadata_user_string): New function, provides
9206         access to the UserString heap. 
9207
9208 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
9209
9210         * metadata.c: Add inline documentation.
9211
9212 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
9213
9214         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
9215         files. 
9216
9217 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
9218
9219         * typeattr.h: New file, TypeAttribute flags. 
9220
9221 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
9222
9223         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
9224         mono_assembly_ensure_section): Section loading code.
9225         (load_section_tables): Load the sections.
9226
9227         * mono/metadata/metadata.c (mono_metadata_locate_token,
9228         mono_metadata_locate): Functions to locate the information
9229         definition given a token or a table and an index.
9230         (mono_metadata_compute_table_bases): New.
9231         (compute_size): New function to compute the sizes of the various
9232         tables.
9233
9234         * mono/metadata/metadata.h: Finish listing the different index
9235         types. 
9236
9237         * mono/metadata/pedump.c: Improve to dump new information.
9238
9239 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
9240
9241         * mono/metadata/metadata.c: Entered all the tables matching
9242         Beta2. 
9243
9244         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
9245
9246
9247
9248
9249
9250
9251