fe11e84a2ea4677edfcf55635bce4582f9d08a32
[mono.git] / mono / metadata / ChangeLog
1 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
2
3         * icall.c: Removed GetUninitializedObject method because
4           AllocateUninitializedClassInstance does the same.
5
6 2003-10-18  Martin Baulig  <martin@ximian.com>
7
8         * class.c (inflate_generic_signature): Renamed to
9         mono_class_inflate_generic_signature() and made it public.
10         (my_mono_class_from_generic_parameter): New static function; if we
11         don't already have the generic parameter's MonoClass, create a
12         very simple one which is just used internally in the runtime and
13         not passed back to managed code.
14
15         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
16
17         * metadata.h (MonoMethodSignature): Moved the
18         `MonoGenericParam *gen_params' to the MonoMethodHeader.
19         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
20
21         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
22         ves_icall_MonoMethod_GetGenericArguments(); this is now an
23         interncall on the MonoMethod class, not on MethodInfo.
24         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
25         calling mono_reflection_bind_generic_method_parameters() directly.
26
27         * loader.c (mono_method_get_signature): If this is a MethodSpec;
28         return the already computed `method->signature'.
29         (method_from_methodspec): New static function to load a method
30         from a MethodSpec entry.
31         (mono_get_method_from_token): Call the new method_from_methodspec()
32         for MethodSpec tokens.  
33         (mono_get_method_from_token): If we're a generic method, load the
34         type parameters.
35
36         * reflection.c (mono_image_get_memberref_token): Allow
37         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
38         table.
39         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
40         (mono_image_create_token): First check whether it's a generic
41         method (so we'd need to create a MethodSpec), then do the other
42         two alternatives.
43         (mono_reflection_bind_generic_method_parameters): Return a
44         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
45         called directly from the interncall.
46
47 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
48
49         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
50
51         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
52         fields.
53
54         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
55         culture, hash_alg and public_key. Fixes #49555.
56
57 2003-10-17  Martin Baulig  <martin@ximian.com>
58
59         * class.h (MonoGenericInst): Moved this declaration here and added
60         `MonoMethod *generic_method'.
61
62         * icall.c
63         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
64         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
65
66         * metadata.c (mono_metadata_type_equal): Two types of
67         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
68         index; ie. don't compare the address of the `MonoGenericParam'
69         structure.
70         (mono_metadata_load_generic_params): Removed the `MonoMethod
71         *method' argument.
72
73         * metadata.h (MonoGenericInst): Moved declaration to class.h.
74         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
75
76         * reflection.c (method_encode_signature): Encode the number of
77         generic parameters.
78         (encode_generic_method_sig): New static function.
79         (method_encode_methodspec): New static function; creates an entry
80         in the MethodSpec table for a generic method.
81         (mono_image_get_methodspec_token): New static function.
82         (mono_image_create_token): Call mono_image_get_methodspec_token()
83         for generic methods.
84         (mono_reflection_bind_generic_method_parameters): New public
85         function.  Instantiates a generic method.
86
87 2003-10-16  Martin Baulig  <martin@ximian.com>
88
89         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
90         *gen_params' here from MonoMethodHeader.
91
92         * metadata.c (mono_metadata_parse_method_signature): If we have
93         generic parameters, initialize `method->gen_params' and then set
94         the correct `type->data.generic_param' in all the parameters.
95
96 >>>>>>> 1.1157
97 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
98
99         * threads.c (mono_threads_get_default_stacksize): New function to 
100         return the default stacksize.
101
102         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
103         termination of the finalizer thread, since the previous method had
104         race conditions. Fixes #49628.
105
106         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
107         as for the other managed threads.
108
109 2003-10-16  Martin Baulig  <martin@ximian.com>
110
111         * class.c (inflate_generic_signature): Copy `generic_param_count'
112         and `gen_params'.
113
114         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
115         New interncall.
116
117         * metadata.c (mono_metadata_parse_method_signature): Actually set
118         the `method->generic_param_count' here.
119         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
120
121 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
122
123         * object.h: Add a new field to TypedRef to simplify the implementation
124         of the REFANY opcodes in the JIT.
125
126         * icall.c: Make use of the new field.
127
128         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
129         dynamically.
130
131 2003-10-15  Martin Baulig  <martin@ximian.com>
132
133         * class.c (mono_class_from_gen_param): Renamed to
134         mono_class_from_generic_parameter() and moved most of the
135         functionality from mono_reflection_define_generic_parameter()
136         here; ie. we create a "real" class here.
137         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
138         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
139         previously been called.
140
141         * class.h (MonoGenericParam): Moved the declaration of this struct
142         here from metadata.h and added `MonoMethod *method'.
143
144         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
145         interncall.
146
147         * loader.c (mono_get_method_from_token): If we have any generic
148         parameters, call mono_metadata_load_generic_params() to read them
149         from the MONO_TABLE_GENERICPAR.
150
151         * metadata.c (mono_metadata_load_generic_params): Added
152         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
153
154         * metadata.h (MonoMethodSignature): Replaced
155         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
156         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
157
158         * reflection.c (mono_reflection_define_generic_parameter): Moved
159         most of the functionality into the new
160         mono_class_from_generic_parameter(); set the `method' field if
161         we're a method parameter.       
162
163 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
164
165         * marshal.c (emit_struct_conv): if native size is 0
166         emit no code.
167
168 2003-10-14  Martin Baulig  <martin@ximian.com>
169
170         * icall.c: The generics API has changed in the spec since it was
171         added to System.Type; these modifications make it match the spec
172         again.
173         (ves_icall_Type_GetGenericParameters): Renamed to
174         `ves_icall_Type_GetGenericArguments'.
175         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
176         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
177         `ves_icall_MonoType_get_HasGenericArguments'.
178         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
179         `ves_icall_MonoType_get_IsGenericParameter'.
180         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
181         this is no interncall anymore.
182         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
183         `ves_icall_TypeBuilder_get_IsGenericParameter'.
184
185 2003-10-14  Martin Baulig  <martin@ximian.com>
186
187         * reflection.c (mono_reflection_bind_generic_parameters): Also
188         inflate generic methods if we're reading the class from IL.
189
190 2003-10-13  Martin Baulig  <martin@ximian.com>
191
192         * reflection.c (mono_reflection_define_generic_parameter): This
193         method isn't called directly from the icall anymore; take a
194         `MonoReflectionAssemblyBuilder *' so we can use this for type and
195         method generic parameters.
196         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
197         (method_builder_encode_signature): Encode generic parameters.
198         (mono_image_get_method_info): Write generic params to the
199         MONO_TABLE_GENERICPARAM table.
200
201         * reflection.h (MonoReflectionMethodBuilder): Added
202         `MonoArray *generic_params'.
203
204         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
205
206         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
207         wrapper for mono_reflection_define_generic_parameter().
208         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
209
210 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
211
212         * marshal.h: Add missing function to fix build.
213
214         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
215         the SetLastError pinvoke attribute.
216
217         * marshal.c (mono_marshal_set_last_error): New helper function called
218         by the generated code.
219         
220         * marshal.c (mono_mb_emit_branch): New helper function.
221
222         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
223
224         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
225         classes as parameters and return values of delegates. Fixes #29256. 
226
227 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
228
229         * locales.c: use gint32 in non HAVE_ICU case
230
231 2003-10-11  Martin Baulig  <martin@ximian.com>
232
233         * mono-debug.c (mono_debug_add_method): Added a workaround for
234         bug #48591.
235
236 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
237
238         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
239         delegates passed to native code must use the STDCALL calling 
240         convention. Fixes #35987.
241
242 2003-10-10  Martin Baulig  <martin@ximian.com>
243
244         * class.c (inflate_generic_type): If we're inflating for a generic
245         type instance (and not for a generic method), return
246         MONO_TYPE_MVAR unchanged.
247
248 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
249
250         * string-icalls.c: Join ignores null strings in the source array.
251         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
252         * threads.c: GetAvailableTheads is slightly more accurate.
253
254 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
255
256         * threads.h threads.c : add mono_threads_set_default_stacksize
257         and pass default to CreateThread calls.
258
259 2003-10-09  Dick Porter  <dick@ximian.com>
260
261         * icall.c:
262         * locales.h:
263         * locales.c: Internal calls for constructing CultureInfo and
264         related objects from libicu (if its available.)
265
266 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
267
268         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
269
270 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
271
272         * threadpool.c: added an argument to async_invoke_thread that is the
273         item to process, pass the MonoAsyncResult to the thread start function
274         when creating a new thread. This way we don't need to acquire any lock
275         when we're creating a new thread. Readded a semaphore for faster
276         response times (instead of that Sleep i added).
277
278 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
279
280         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
281         get daylight change dates better on Windows, fix handling
282         of platforms without tm_gmtoff.
283
284 2003-10-06  Martin Baulig  <martin@ximian.com>
285
286         * class.c (inflate_generic_method): Renamed to
287         mono_class_inflate_generic_method() and made public.
288         (mono_class_init): Don't inflate the generic methods here.
289         (mono_class_from_generic): Added `gboolean inflate_methods'
290         argument.  Inflate the methods here.
291
292         * loader.c (mono_method_get_param_names): Ignore instances of
293         generic types for the moment.
294
295         * reflection.c (fixup_method): Added support for inflated methods.
296         (mono_image_create_token): Use mono_image_get_methodref_token()
297         for inflated methods.
298         (mono_custom_attrs_from_param): Ignore instances of generic types
299         for the moment.
300         (mono_reflection_bind_generic_parameters): New public function.
301         Moved all the functionality from
302         ves_icall_Type_BindGenericParameters() here and added support for
303         dynamic types.
304         (mono_reflection_define_generic_parameter): Initialize
305         `klass->methods' here.
306
307         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
308         functionality into mono_reflection_define_generic_parameter().
309         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
310         TypeBuilder, return that TypeBuilder.
311
312 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
313
314         * appdomain.c: removed mono_delegate_semaphore.
315
316         * threadpool.c:
317         (mono_thread_pool_add): moved hash table creation inside and the thread 
318         creation outside of the critical region.
319         (mono_thread_pool_finish): removed obsolete code.
320         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
321         continue or exit the thread depending on the queue.
322
323 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
324
325         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
326         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
327         handle more bool marshalling options
328
329 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
330
331         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
332         arrays of structs. Also add a more descriptive error message when
333         a structure member is marshalled as LPArray.
334
335 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
336
337         * marshal.c (mono_marshal_get_native_wrapper): Add support for
338         marshalling arrays of complex types. Fixes #29098. Also remove an
339         usused and incomplete function.
340
341 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
342
343         * gc.c: report heap_size - free_bytes as total memory allocated
344         (bug#49362).
345
346 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
347
348         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
349         fix timezone handling problems on Windows.
350         
351         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
352         asserts when the year is outside the range handled by ms the functions.
353
354         * class.c (setup_interface_offsets): If the class is an interface,
355         fill out its interface_offsets slot.
356
357 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
358
359         * threadpool.c: mark threadpool threads as background.
360
361 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
362
363         * decimal.c - define DECINLINE to nothing if not using GCC
364
365 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
366
367         * assembly.c: More refcount fixes.
368
369 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
370
371         * string-icalls.c: if we're not trimming, return the same string.
372         When not splitting, don't create a new string.
373
374 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
375
376         * image.c:
377         (mono_image_open): increment the ref_count inside the critical section.
378
379 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
380
381         * image.c (mono_image_open): Fix reference counting bug.
382
383 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
384
385         * marshal.c (mono_marshal_type_size) struct alignment changed for 
386         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
387         64bits. Avoid leak in mono_marshal_get_native_wrapper when
388         mono_lookup_pinvoke_call throws.        
389
390 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
391
392         * reflection.c (mono_reflection_parse_type): Fix #49114.
393
394         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
395         temporary workaround for cygwin header problem.
396
397         * object.c (mono_object_isinst): Synchronize this with the code
398         generated by the JIT for casts.
399
400 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
401
402         * reflection.c (encode_type): Fix #38332.
403
404 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
405
406         * marshal.c (mono_marshal_method_from_wrapper): New function to return
407         the original method from the wrapper method.
408
409 2003-09-25  Martin Baulig  <martin@ximian.com>
410
411         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
412         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
413         (ves_icall_Type_get_IsGenericInstance): New interncall.
414
415 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
416
417         * object.c: fix cast warning in big endian code.
418
419 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
420
421         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
422         
423 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
424
425         * assembly.c: don't call check_env from mono_assembly_load. It's
426         already done once in mono_assemblies_init and may cause headaches when
427         multiple threads are loading assemblies.
428
429 2003-09-19  Martin Baulig  <martin@ximian.com>
430
431         * reflection.c (mono_reflection_define_generic_parameter): Don't
432         allocate `klass->methods', set `klass->flags' to
433         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
434
435 2003-09-18  Martin Baulig  <martin@ximian.com>
436
437         * class.c (mono_class_init): Don't create `class->methods' if it's
438         already initialized.
439
440         * metadata.c (mono_metadata_load_generic_params): Make this
441         actually work.
442
443         * reflection.c (mono_reflection_define_generic_parameter): Set
444         parent class and interfaces from the constraints.
445
446         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
447         to keep this struct in sync with the declaration in TypeBuilder.cs.
448
449 2003-09-17  Martin Baulig  <martin@ximian.com>
450
451         * metadata.h (MonoType): Replaced the data's `int type_param'
452         field with `MonoGenericParam *generic_param'.
453         (MonoGenericParam): Added `MonoClass *klass'.
454
455         * class.c (mono_class_from_gen_param): Removed the
456         `MonoImage *image' and `int type_num' arguments.
457
458         * metadata.c (mono_metadata_parse_generic_param): New static
459         method; creates a MonoGenericParam which just contains the index.
460         (do_mono_metadata_parse_type): Call
461         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
462         MONO_TYPE_MVAR.
463
464         * reflection.c (mono_image_typedef_or_ref): Generic type
465         parameters may be in the same assembly, but never use a typedef
466         for them.
467         (mono_reflection_define_generic_parameter): We're now creating a
468         "real" class for the type parameter; it's now safe to call
469         mono_class_from_mono_type() on the class'es type, it'll do the
470         right thing.
471
472 2003-09-16  Martin Baulig  <martin@ximian.com>
473
474         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
475         `symfile->range_entry_size' and `symfile->class_entry_size' here;
476         the `symfile' data structure must be fully initialized before it
477         gets added to the table.
478
479 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
480
481         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
482
483         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
484         class init trampolines.
485
486 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
487
488         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
489         to the built-in profiler to turn off time and allocation profiling
490         respectively.
491
492 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
493
494         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
495         g_direct_equal.
496
497         * debug-helpers.c (mono_method_full_name): Print the wrapper type
498         in human readable form.
499
500 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
501
502         * reflection.c icall.c: Fixed warnings.
503
504         * image.c (load_class_names): Use a temporary hash table to hold the
505         namespaces in order to avoid doing many string comparisons.
506
507         * image.h: Fix typo.
508
509         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
510         Pass NULL instead of g_direct_equal to the GHashTable constructor 
511         since the NULL case is short-circuited inside g_hash_table_lookup, 
512         leading to better performance.  
513
514         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
515         obtain the first custom attribute for a given index. Depends on the
516         CustomAttribute table being sorted by the parent field.
517
518         * reflection.c (mono_custom_attrs_from_index): Use the new function 
519         for better performance.
520
521 2003-09-07  Martin Baulig  <martin@ximian.com>
522
523         * class.c (mono_class_init): If we're a generic instance, inflate
524         all our methods instead of loading them from the image.
525         (mono_class_from_generic): Set `class->methods = gklass->methods'.
526
527 2003-09-07  Martin Baulig  <martin@ximian.com>
528
529         * mono-debug-debugger.c: Added support for constructors.
530
531 2003-09-06  Martin Baulig  <martin@ximian.com>
532
533         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
534         New interncall.
535
536         * reflection.c (mono_reflection_setup_generic_class): Call
537         ensure_runtime_vtable() to create the vtable.
538
539 2003-09-05  Martin Baulig  <martin@ximian.com>
540
541         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
542         MONO_TYPE_MVAR.
543
544 2003-09-04  Martin Baulig  <martin@ximian.com>
545
546         * reflection.c (mono_reflection_define_generic_parameter): Generic
547         parameters start with zero.
548
549 2003-09-04  Martin Baulig  <martin@ximian.com>
550
551         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
552
553         * reflection.h (MonoReflectionGenericParam): New typedef.
554         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
555         the generic parameters from the managed TypeBuilder.
556
557         * reflection.c (mono_reflection_define_generic_parameter): New function.
558         (mono_reflection_create_runtime_class): Encode generic parameters.
559         (mono_reflection_setup_generic_class): New function; this is
560         called after adding adding all generic params to the TypeBuilder.
561         (encode_type): Added MONO_TYPE_VAR.
562
563 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
564
565         * class.h class.c (mono_class_needs_cctor_run): Moved this method
566         here from the JIT.
567
568         * assembly.h assembly.c: Moved the AOT loading code into an assembly
569         load hook.
570
571 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
572
573         * reflection.h reflection.c class.h class.c: Delete duplicate 
574         definition of mono_type_get_name () from reflection.c and export the
575         one in class.c.
576
577         * class.c: Class loading fixes from Bernie Solomon 
578         (bernard@ugsolutions.com).
579
580         * reflection.c: Endianness fixes from Bernie Solomon 
581         (bernard@ugsolutions.com).
582         
583 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
584
585         * assembly.h assembly.c: Define a file format version for AOT
586         libraries.
587         
588         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
589
590         * appdomain.h (MonoJitInfo): New field to determine whenever the
591         code is domain neutral.
592         
593 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
594
595         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
596
597 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
598
599         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
600         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
601         Avoid caching the result since strings must be domain specific. Fixes
602         #48050.
603
604 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
605
606         * marshal.c (mono_marshal_init): Make this callable multiple times
607         since it is hard to find a correct place to call it.
608
609         * object.c (mono_runtime_class_init): Execute static constructors in
610         the correct appdomain.
611
612         * image.c (build_guid_table): Handle the case when multiple images have
613         the same GUID.
614
615 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
616
617         * icall.c: added a couple of icalls for System.Web.
618
619 2003-08-28  Martin Baulig  <martin@ximian.com>
620
621         * icall.c (ves_icall_Type_BindGenericParameters): Use
622         `klass->generic_inst' instead of `&klass->byval_arg' in the
623         mono_type_get_object() call.  The returned type must be
624         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
625
626 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
627
628         * NOTES: New file.
629
630         * object.c (mono_class_proxy_vtable): Make it thread safe.
631
632         * pedump.c: Fix warning.
633
634         * object.c appdomain.h: Get rid of metadata_section. 
635         It is no longer needed and it was causing deadlocks with domain->lock.
636
637         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
638
639 2003-08-26  Martin Baulig  <martin@ximian.com>
640
641         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
642
643 2003-08-26  Martin Baulig  <martin@ximian.com>
644
645         * pedump.c (main): Call mono_metadata_init(),
646         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
647         and mono_loader_init().
648
649 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
650
651         * loader.h: Add missing include to fix build.
652
653         * image.h: mono_image_load_references is no more.
654
655         * assembly.c: Reworked assembly loading to make it really thread safe.
656         After these changes, the assembly returned by mono_assembly_open is
657         fully initialized, i.e. all its references assemblies are loaded.
658
659         * assembly.c (mono_image_load_references): Renamed to 
660         mono_assembly_load_references, and made private, since clients no
661         longer need to call it.
662
663         * class.c: Removed calls to mono_assembly_load_references, since it was
664         a source of deadlocks.
665
666         * loader.h loader.c class.h class.c: Protect data structures using a 
667         new lock, the loader lock.
668
669         * class.c (mono_class_setup_vtable): Create temporary hash tables and
670         GPtrArrays only when needed.
671
672         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
673         into empty structures by mcs. Fixes pinvoke7.cs.
674         
675         * domain.c (mono_init): Call a new initialization function.
676
677         * appdomain.c (mono_runtime_init): Call the new initializer function
678         of the marshal module.
679
680         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
681         inserted into empty structures by mcs. Fixes pinvoke7.cs.
682
683         * marshal.h marshal.c: Added locks around the wrapper caches to make
684         this module thread safe.
685
686         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
687         this argument. Fixes pinvoke1.exe.
688
689 2003-08-25  Lluis Sanchez <lluis@ximian.com>
690
691         * object.h: Added call_type field to MonoMethodMessage and the corresponding
692         enumeration of values. Removed fields to store remote call output values in
693         MonoAsyncResult. Not needed any more.
694         * object.c: Initialize call_type and async_result fields in mono_message_init.
695         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
696         dispatching the message.
697         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
698         async call to finish. To do it use a message with EndInvoke call type.
699
700 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
701
702         * loader.h loader.c (mono_method_hash_marhal_info): New function which
703         determines whenever a method has marshalling info.
704
705 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
706
707         * assembly.c: fix the build on windows.
708
709 2003-08-22 Lluis Sanchez <lluis@ximian.com>
710
711         * object.cs: Fixed bug #47785.
712
713 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
714
715         * string-icalls.c (StringReplace): If their are no occurances of
716         the old string found return a reference to the supplied
717         string. This saves some memory and matches MS behavoir.
718         
719 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
720
721         * socket-io.c: fixed compilation for systems that define AF_INET6
722         and don't define SOL_IP/SOL_IPV6.
723
724 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
725
726         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
727         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
728
729         * rawbuffer.c rawbuffer.h: Make this module thread safe.
730
731         * domain.c: Make this module thread safe.
732
733         * domain.c (mono_init): Call new initialization function.
734
735         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
736         reference types too. Fixes #38812.
737
738         * image.c (mono_image_init): Fixed warnings.
739
740         * class.c (mono_class_from_typeref): Handle assembly load failure
741         correctly.
742
743         * appdomain.c (add_assemblies_to_domain): Handle the case when
744         the references of an assembly are not yet loaded.
745
746         * metadata.c image.c assembly.c: Moved initialization of global
747         variables to a separate function called at startup since lazy 
748         initialization of these variables is not thread safe.
749         
750         * image.c assembly.c: Made this module thread safe by adding locks in 
751         the appropriate places.
752
753         * domain.c (mono_init): Call the new initialization functions of the
754         three modules.
755
756 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
757
758         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
759           make a direct call. It is proxy's work to make the call asynchronous.
760           mono_delegate_end_invoke(): If the targe is a proxy, just collect
761           the return values.
762         * object.cs: mono_method_call_message_new(): read AsyncResult and
763           state object from parameters list, if this info is requested.
764         * object.h: Added fields to store remote call output values in
765           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
766
767 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
768
769         * object.h: add needed fields to MonoThread.
770         * threads.c, threads.h: allow registering a function to cleanup data
771         allocated per thread by the JIT.
772
773 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
774
775         * loader.h: portability fix by Bernie Solomon
776         * <bernard@ugsolutions.com>.
777
778 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
779
780         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
781         return a MonoArray. This simplifies the code and also ensures that
782         the cache allways contains an object reference as a value.
783
784         * icall.c (ves_icall_get_parameter_info): Simplified using the new
785         function.
786
787 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
788
789         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
790         fixes a problem with byte ordering when getting the address family for
791         a socket.
792
793 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
794
795         * .cvsignore: Added monosn.
796
797         * reflection.h reflection.c loader.c: Added support for parameter
798         marshalling to dynamically created types. Fixes #47295.
799
800 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
801
802         * rand.c: remove useless warnings.
803
804 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
805
806         * class.c: implemented ldtoken for methods and fieldrefs.
807
808 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
809
810         * threadpool.c: when mono_async_invoke was called, no one took care of
811         monitoring the queue. So if the method invoked took some time and we
812         got new async invoke requests after 500 ms (the thread created waited
813         that long in WaitForSingleObject), the new async invoke was not called
814         until the previous one finished.
815
816         This is fixed now. Thanks to Totte for helping with it.
817
818 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
819
820         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
821
822 2003-08-11  Martin Baulig  <martin@ximian.com>
823
824         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
825
826 2003-08-06  Martin Baulig  <martin@ximian.com>
827
828         * mono-debug-debugger.c: Added support for static fields,
829         properties and methods.
830
831 2003-08-06  Martin Baulig  <martin@ximian.com>
832
833         * mono-debug-debugger.c: Don't store the MonoString's vtable to
834         make this work for applications with multiple application domains.
835
836 2003-08-04  Martin Baulig  <martin@ximian.com>
837
838         * mono-debug-debugger.c: Completely reworked the type support; the
839         most important thing is that we're now just using one single
840         `MonoType' instance per type.
841
842 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
843
844         * mono-endian.h, mono-endian.c, icall.c: Added icall
845         ves_icall_System_Double_AssertEndianity to assert double word endianity
846         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
847
848 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
849
850         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
851         support, icalls and fixes.
852
853 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
854
855         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
856         classes that are a punctuation character in .NET is not the same a
857         g_unichar_ispunct.
858
859 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
860
861         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
862
863 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
864
865         * icall.c: Add new MemCopy internalcall.
866         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
867         Simplified code; It is not necessary to handle all the cases here,
868         as the C# code takes care of it.  Only handle the case of the name
869         resource embedded into the assembly.
870
871         Changed signature to return the data pointer and the size of the
872         data. 
873
874 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
875
876         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
877         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
878
879 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
880
881         * socket-io.c: ignore EINTR error in select.
882
883 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
884
885         * class.h, class.c: removed unused subclasses field in MonoClass.
886
887 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
888
889         * icall.c: improve fix of get_base_definition(). If the parent class
890           doesn't have the mehod, look at the parent of the parent.
891         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
892           to check if a parameter is an in or out parameter
893           (PARAM_ATTRIBUTE_IN is not set by default).
894           mono_method_return_message_restore(): Use mono_class_value_size to
895           get the size of a value type. mono_type_stack_size (parameterType)
896           does not return the correct value if parameterType is byRef.
897           mono_load_remote_field(), mono_load_remote_field_new(),
898           mono_store_remote_field(), mono_store_remote_field_new():
899           raise exception if the remote call returns an exception.
900
901 2003-07-28  Martin Baulig  <martin@ximian.com>
902
903         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
904         method.  This is a wrapper around mono_runtime_invoke() which
905         boxes the instance object if neccessary.
906
907 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
908
909         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
910         metadata.h, row-indexes.h, verify.c: first cut of generics support.
911
912 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
913
914         * icall.c: disable mcs bug workaround.
915
916 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
917
918         * object.c (mono_runtime_class_init): Take the metadata_section
919         mutex before obtaining the domain mutex.
920
921         * appdomain.h: Added definition of metadata_section mutex here. 
922
923         * object.c: define metadata_mutex here.
924
925 2003-07-24  Ravi Pratap  <ravi@ximian.com>
926
927         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
928         fixed.
929
930 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
931
932         * reflection.c: Fix bug #46669
933
934 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
935
936         * exception.c:
937         * exception.h:
938         * icall.c:
939         * object.h: fill in the type name for TypeLoadException.
940
941 2003-07-23  Ravi Pratap  <ravi@ximian.com>
942
943         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
944         relationship between TypeBuilders while compiling corlib) and bug
945         45993 (Array types returned from the runtime while compiling
946         corlib were from the loaded corlib).
947
948 2003-07-22  Martin Baulig  <martin@ximian.com>
949
950         * mono-debug-debugger.c: Reworked the type support a bit more;
951         distinguish between types and classes.
952
953 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
954
955         * icall.c: add IsArrayImpl icall.
956
957 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
958
959         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
960         initializing real_size only once. Also fix bug #46602.
961
962 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
963
964         * object.c: Renamed mono_metadata_section to metadata_section.
965
966 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
967
968         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
969           empty array if the type is an array. Fixed.
970           ves_icall_MonoMethod_get_base_definition: if the base method
971           is abstract, get the MethodInfo from the list of methods of
972           the class.
973         * reflection.c: ParameterInfo.PositionImpl should be zero-based
974           and it was 1-based. Fixed in mono_param_get_objects.
975
976 2003-07-20  Martin Baulig  <martin@ximian.com>
977
978         * mono-debug.h: Set version number to 31.
979         (mono_debug_init): Added `MonoDomain *' argument.
980
981         * mono-debug-debugger.c: Reworked the type support; explicitly
982         tell the debugger about builtin types; pass the `klass' address to
983         the debugger.
984
985 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
986
987         * image.c: Allow new metadata tables to be loaded without a
988         warning. Also update the warning message to give the new constant value.
989                 
990 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
991
992         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
993         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
994         array type representation changes.
995
996 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
997
998         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
999         on Environment.Exit () call.
1000
1001 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
1002
1003         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
1004         requires a matching corlib.
1005
1006 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
1007
1008         * Changelog: My editor decided to add a CR to each line. Sorry about that.
1009           Committed again without the CRs.
1010         
1011 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
1012
1013         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
1014           getting it from the "this" socket instance. Did not work
1015           if the socket is a subclass of Socket.
1016           Also fixed bug #35371.
1017
1018 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
1019
1020         * metadata.c: fixed size for TypedByRef.
1021         * loader.c: when searching for a method, consider the vararg amrker.
1022         * unicode.c, decimal.c: constify some arrays.
1023
1024 2003-07-15  Dick Porter  <dick@ximian.com>
1025
1026         * socket-io.c: Fixed compilation for gcc < 3.2.
1027
1028         Fixed compilation for machines that don't have AF_INET6 (thanks to
1029         Bernie Solomon <bernard@ugsolutions.com> for that part.)
1030
1031         Fixed compile warnings.
1032         
1033         Fixed formatting and line endings.
1034
1035 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
1036
1037         * socket-io.h:
1038         * socket-io.c: Added IPv6 support.
1039
1040 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
1041
1042         * class.c (mono_class_is_assignable_from): New function to implement
1043         the is_assignable_from logic. Used by mono_object_isinst, 
1044         Type::IsAssignableFrom () and the interpreter.
1045
1046         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
1047         Object, even interfaces.
1048         
1049         * object.c (mono_object_isinst): Implement in terms of 
1050         is_assignable_from.
1051
1052         * icall.c (ves_icall_type_is_assignable_from): New icall.
1053
1054 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
1055
1056         * domain.c (foreach_domain): fix compiler warning.
1057
1058 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
1059
1060         * image.c (load_metadata_ptrs): use g_strndup because strndup is
1061         not available on all plattforms
1062
1063 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
1064
1065         * image.h image.c: Store the metadata version string in MonoImage.
1066         * icall.c: New icall to retrieve the image version.
1067         * reflection.c (create_dynamic_image): Fill in the image version field
1068         * reflection.c (build_compressed_metadata): Use the image version
1069         from the image structure.
1070
1071 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1072
1073         * appdomain.c: modified comment.
1074         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
1075         That will be its last iteration when mono_gc_cleanup is called from
1076         mono_runtime_cleanup and before the domain is unloaded.
1077
1078         Fixes bug #45962.
1079
1080 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
1081
1082         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
1083         attributes.
1084
1085 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1086
1087         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
1088         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
1089         Bernie Solomon <bernard@ugsolutions.com>.
1090
1091 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
1092
1093         * object.c, object.h: provide mono_object_new_fast() for faster
1094         allocation in some special cases.
1095
1096 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
1097
1098         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
1099         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
1100
1101 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
1102
1103         * threadpool.c: fix leaks.
1104
1105 2003-07-01  Dick Porter  <dick@ximian.com>
1106
1107         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
1108         using MonoGHashTables.  Fixes threadpool bug posted to list.
1109
1110 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
1111
1112         * image.h, image.c: added support to load an assembly from a byte array.
1113         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
1114         assembly bundle support.
1115
1116 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
1117
1118         * threadpool.c (mono_thread_pool_add): keep a reference to the
1119         AsyncResult to prevent GC
1120
1121 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
1122
1123         * class.c: leak fix.
1124
1125 2003-06-25  Dick Porter  <dick@ximian.com>
1126
1127         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
1128         for the async object, the WaitHandle object will close the handle.
1129         Fixes bug 45321.
1130
1131 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
1132
1133         * class.c: in mono_array_class_get (), lookup from the hash with the
1134         same type we insert: this works around a bug in
1135         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
1136         lluis. The real fix will have to wait for after the release.
1137
1138 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1139
1140         * icall.c: fix memory leak when getting type members.
1141
1142 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
1143
1144         * reflection.c: added more pubtoken special cases.
1145
1146 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
1147
1148         * class.c: handle field offset correctly when class size
1149         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
1150
1151 2003-06-20  Martin Baulig  <martin@ximian.com>
1152
1153         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
1154         *image' field.
1155
1156 2003-06-20  Martin Baulig  <martin@ximian.com>
1157
1158         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
1159
1160 2003-06-20  Martin Baulig  <martin@ximian.com>
1161
1162         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
1163         just distinguish between variables in registers and variables at
1164         an offset relative to a register.
1165
1166 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1167
1168         * icall.c: #ifdef out latest changes until mcs is fixed.
1169
1170 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1171
1172         * icall.c: return members in metadata order.
1173
1174 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
1175
1176         * icall.c: avoid infinite loop in GetTimeZoneData.
1177
1178 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
1179
1180         * icall.c: added Marshal.Prelink/All icalls.
1181
1182 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
1183
1184         * object.c, object.h: fix warnings and do some overflow checking
1185         when creating arrays.
1186
1187 2003-06-17  Dick Porter  <dick@ximian.com>
1188
1189         * file-io.h:
1190         * file-io.c: File attributes need to be tweaked slightly when
1191         passed from the managed to the w32 world.
1192
1193 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1194         * profiler.h profiler-private.h profiler.c: Rework last patch
1195         based on suggestion by Paolo.
1196         
1197 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
1198
1199         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
1200         instruction level coverage data collection.
1201         * profiler.h profiler.c (: Added new callback function which can be
1202         used by the profiler to limit which functions should have coverage
1203         instrumentation.
1204         * profiler.c (mono_profiler_load): Call g_module_build_path to
1205         generate the file name of the profiler library.
1206
1207 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
1208
1209         * profiler.c, profiler.h, profiler-private.h: added basic block 
1210         coverage profiling API.
1211
1212 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
1213
1214         * reflection.c (mono_reflection_create_runtime_class): Add support
1215         for events in dynamically generated code.
1216
1217         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
1218         not allocated.
1219
1220 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
1221
1222         * icall.c: when getting timezone info, return reasonable values if we
1223         can't get the actual data.
1224
1225 2003-06-14  Dick Porter  <dick@ximian.com>
1226
1227         * threads.c (start_wrapper): Remove the reference to the thread
1228         object in the TLS data, so the thread object can be finalized.
1229         This won't be reached if the thread threw an uncaught exception,
1230         so those thread handles will stay referenced :-( (This is due to
1231         missing support for scanning thread-specific data in the Boehm GC
1232         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
1233
1234 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
1235
1236         * reflection.c: ensure streams and tables are first allocated with
1237         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
1238
1239 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
1240
1241         * icall.c: fixed GetElementType for byrefs (bug# 44792).
1242
1243 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
1244
1245         * reflection.c (mono_reflection_create_runtime_class): Add support for
1246         properties to dynamically created classes.
1247         * reflection.c: Fix a few places where non-MonoObjects were inserted
1248         into the tokens hashtable.
1249
1250 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1251
1252         * object.c: some support to handle out of memory exceptions.
1253
1254 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
1255
1256         * marshal.c (mono_marshal_get_native_wrapper): support reference
1257         return types
1258
1259 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
1260
1261         * object.h, object.c: more portability stuff from Bernie Solomon.
1262         Unexport mono_object_allocate(). Added mono_object_unbox ().
1263         Set exitcode when an unhandled exception is thrown.
1264
1265 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
1266
1267         * marshal.c (mono_marshal_get_native_wrapper): use custom
1268         marshaler for return types.
1269
1270 2003-06-10  Dick Porter  <dick@ximian.com>
1271
1272         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
1273         ip_mreq is available
1274
1275 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
1276
1277         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
1278         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
1279         by Bernie Solomon <bernard@ugsolutions.com>.
1280
1281 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
1282
1283         * gc.c (mono_gc_init): Avoid error message on shutdown when
1284         GC_DONT_GC=1 is used.
1285
1286         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
1287         New icall to return the GUID of a module.
1288
1289 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
1290
1291         * class.c: ensure instance size always includes the parent's size
1292         even whem class size is set explicitly (fixes bug#44294).
1293
1294 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
1295
1296         * profiler.h, profiler.c: made the simple profiler thread-safe,
1297         get more accurate timing info. Allow the loading of an
1298         externally-developed profiler module.
1299
1300 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
1301
1302         * marshal.c (mono_marshal_get_native_wrapper): improved
1303         class/byref arguments.
1304         (mono_marshal_get_native_wrapper): better string marshaling support.
1305
1306 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
1307
1308         * class.c: ensure .pack and .size are handled correctly and
1309         simplified layout of static fields.
1310
1311 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
1312
1313         * appdomain.c
1314         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
1315
1316         * loader.c (mono_lookup_pinvoke_call): look for modules in the
1317         current directory (fix bug 44008)
1318
1319 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
1320
1321         * marshal.c (mono_marshal_get_native_wrapper): started support for
1322         custom marshalers.
1323         (mono_delegate_to_ftnptr): consider marshalling specifications
1324
1325 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
1326
1327         * reflection.c, reflection.h: emit custom marshal info.
1328
1329 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1330
1331         * object.c: free the GError.
1332         * icall.c: added CloseEvent_internal.
1333         * threads.[ch]:
1334         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
1335         call.
1336
1337 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
1338
1339         * loader.c (mono_method_get_signature): Add support for dynamic
1340         assemblies.
1341
1342 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
1343
1344         * reflection.c: fixed bug #43905.
1345
1346 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
1347
1348         * class.c, domain.c, icall.c, metadata.h, object.h: support for
1349         handling TypedReference and ArgIterator.
1350         * loader.c, loader.h: added function to get signature at call site.
1351
1352 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1353
1354         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
1355         data readonly. Buglets and warning fixes. Some MethodSpec support.
1356
1357 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
1358
1359         * class.h, class.c, object.c: remove relative numbering support.
1360
1361 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
1362
1363         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
1364         free the string, until we get a chance to fix Gtk#
1365
1366 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1367
1368         * marshal.c: revert last patch.
1369
1370 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
1371
1372         * icall.c: updates for new mono_class_vtable() not calling
1373         the type constructor anymore.
1374
1375 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
1376
1377         * object.h, object.c: separate vtable creation from type
1378         initialization. Make running the .cctor thread safe.
1379
1380 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
1381
1382         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
1383
1384 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
1385
1386         * loader.c (mono_get_method): consider calling convention
1387
1388 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
1389
1390         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
1391         to return the invisible global type for a module.
1392
1393         * reflection.c (mono_image_build_metadata): Emit global fields too.
1394
1395 2003-05-20  Peter Williams  <peterw@ximian.com>
1396
1397         * loader.c (mono_lookup_internal_call): Add a few newlines.
1398
1399 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
1400
1401         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
1402         literal strings.
1403
1404         * appdomain.c (set_domain_search_path): Recalculate search path when
1405         AppDomainSetup.PrivateBinPath changes.
1406
1407         * object.c (mono_class_compute_gc_descriptor): It turns out some
1408         parts of the class libs (like System.Thread) holds pointers to
1409         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
1410         to treat native int a pointer type here.
1411         
1412 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
1413
1414         * appdomain.h, domain.c: add hashtable for jump target resolution.
1415
1416 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
1417
1418         * reflection.h reflection.c icall.c: Added new icalls 
1419         GetManifestResourceInfoInternal, GetModulesInternal and support
1420         infrastructure.
1421
1422 2003-05-16  Dick Porter  <dick@ximian.com>
1423
1424         * icall.c:
1425         * file-io.h:
1426         * file-io.c: Implement System.IO.MonoIO::GetTempPath
1427
1428 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
1429
1430         * object.c: mono_store_remote_field: little fix to previous patch.
1431
1432 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
1433
1434         * class.c: add constructors to array classes.
1435         * icall.c: special case array construction for InternalInvoke (),
1436
1437 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
1438
1439         * class.h class.c reflection.c object.c: Added support for field
1440         defaults in dynamically generated classes.
1441
1442 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
1443
1444         * reflection.c: properly encode charset for ddlimport.
1445
1446 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
1447
1448         * threads.c: allow compiling without GC.
1449
1450 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
1451
1452         * appdomain.h, object.c, object.h, threads.c, threads.h: added
1453         handling of thread static data.
1454
1455 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
1456
1457         * reflection.h, reflection.c: added mono_custom_attrs_free ().
1458
1459 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
1460
1461         * class.c (mono_array_class_get): always set the serializable flags
1462         (mono_array_class_get): always set the SEALED attribute for array types
1463
1464 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
1465
1466         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
1467         attributes (fix for bug 42021).
1468
1469 2003-05-12  Dick Porter  <dick@ximian.com>
1470
1471         * gc.c: Don't run finalizers when the finalizer thread is
1472         finishing up, because the default domain has already been
1473         destroyed.
1474
1475 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
1476
1477         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
1478         value is null, we should throw an exception.   This is slightly
1479         different than the other conventions used for the constructor.
1480
1481 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1482
1483         * socket-io.c: fixed windows build.
1484
1485 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1486
1487         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
1488
1489 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
1490
1491         * object.c (mono_string_new_wrapper): Compatibility fix for MS
1492         compilers.
1493
1494 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
1495
1496         * class.c (mono_class_layout_fields): Add experimental GC aware
1497         auto layout facility. Requires class library changes to work correctly.
1498
1499         (mono_class_setup_vtable): Avoid overriding explicit interface
1500         method implementations. Fixes iface3.exe test.
1501
1502         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
1503         object reference.
1504         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
1505         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
1506
1507         * metadata.h: Add new type classification macro which determines
1508         whenever the type holds an object reference.
1509
1510 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
1511
1512         * marshal.c (mono_marshal_get_native_wrapper): cleanups
1513
1514 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
1515
1516         * gc.c (finalizer_thread): Work around a GC bug.
1517
1518 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
1519
1520         * marshal.c (emit_struct_conv): allow unions
1521
1522         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
1523
1524 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
1525
1526         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
1527
1528 2003-05-06  Martin Baulig  <martin@ximian.com>
1529
1530         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
1531
1532 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1533
1534         * socket-io.c:
1535         (Select_internal): allow NULLs, don't create arrays if not needed.
1536         Coupled with Socket.cs changes.
1537
1538         * threadpool.c:
1539         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
1540         register a finalizer for it that will close the semaphore handle. This
1541         fixes the leak and make Lupus' test run with > 4080 loops.
1542
1543 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
1544
1545         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
1546         Jerome Laban (bug #42287)
1547
1548 2003-05-02  Martin Baulig  <martin@ximian.com>
1549
1550         * debug-mono-symfile.h
1551         (MonoSymbolFile): Moved declaration into mono-debug.h.
1552         (MonoDebugMethodJitInfo): Likewise.
1553         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
1554         argument.
1555         (_mono_debug_address_from_il_offset): Take a
1556         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
1557
1558         * mono-debug.h
1559         (MonoDebugDomainData): New struct.
1560         (mono_debug_get_domain_data): New function.
1561         (mono_debug_add_method): Take an additional `MonoDomain *'
1562         argument.
1563         (mono_debug_source_location_from_address): Likewise.
1564         (mono_debug_il_offset_from_address): Likewise.
1565         (mono_debug_address_from_il_offset): Likewise.
1566
1567 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
1568
1569         * reflection.c: one more check for null type in custom attrs.
1570
1571 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1572
1573         * reflection.c: avoid warning (comparison is always false due to limited
1574         range of data type).
1575
1576 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1577
1578         * icall.c: throw an exception in Type.GetField if the argument 'name'
1579         is NULL.
1580
1581 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
1582
1583         * reflection.c: fixed handling of enums in named arguments to custom
1584         attributes (bug #42123).
1585
1586 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
1587
1588         * reflection.c: use the right array element type and handle
1589         a null for a Type argument, too.
1590
1591 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
1592
1593         * reflection.c: handle arrays as arguments to custom attributes.
1594
1595 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
1596
1597         * reflection.c: handle a string value in a custom attr
1598         ctor that takes an object.
1599
1600 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
1601
1602         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
1603         (fix bug #42063)
1604
1605 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
1606
1607         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
1608
1609 2003-04-27  Martin Baulig  <martin@ximian.com>
1610
1611         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
1612         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
1613         MONO_DEBUGGER_EVENT_BREAKPOINT.
1614         (mono_breakpoint_trampoline_code): Removed.
1615         (mono_debugger_event_handler): The last argument is now a
1616         `guint32'.
1617         (mono_debugger_insert_breakpoint_full): Removed the
1618         `use_trampoline' argument.
1619         (mono_debugger_method_has_breakpoint): Likewise.
1620         (mono_debugger_trampoline_breakpoint_callback): Renamed to
1621         mono_debugger_breakpoint_callback(); take the method and
1622         breakpoint number as arguments.
1623
1624 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
1625
1626         * metadata.c: fix off by one when loading parameters attributes.
1627
1628 2003-04-24  Martin Baulig  <martin@ximian.com>
1629
1630         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
1631
1632 2003-04-24  Martin Baulig  <martin@ximian.com>
1633
1634         * mono-debug-debugger.c: Moved all code which interacts with the
1635         Mono Debugger here.
1636
1637         * debug-mono-symfile.c: This code now just deals with the symbol
1638         file itself, the debugger code is now in mono-debug-debugger.c.
1639
1640 2003-04-23  Martin Baulig  <martin@ximian.com>
1641
1642         * mono-debug.c (mono_debug_source_location_from_il_offset):
1643         New method; like mono_debug_source_location_from_address(), but
1644         takes an IL offset instead of a machine address.
1645
1646 2003-04-23  Martin Baulig  <martin@ximian.com>
1647
1648         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
1649         `line' field; this is now computed by the debugger.
1650
1651 2003-04-23  Martin Baulig  <martin@ximian.com>
1652
1653         * mono-debug.[ch]: New files.  This is the new debugging interface.
1654
1655         * mono-debug-debugger.[ch]: New files.  Moved all code which
1656         interacts with the Mono Debugger here.
1657
1658 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
1659
1660         * domain.c (mono_init): initialize mono_defaults.monitor_class
1661
1662 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
1663
1664         * reflection.c (method_encode_code): Add a spicy exception to help
1665         future compiler authors.
1666
1667 2003-04-21  Martin Baulig  <martin@ximian.com>
1668
1669         * icall.c
1670         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1671         Make this work with relative pathnames; g_filename_to_uri() needs
1672         an absolute filename.
1673
1674 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
1675
1676         * icall.c: Track name changes in Object and ValueType.
1677
1678 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
1679
1680         * metadata.c (mono_type_stack_size): size should be a multiple of
1681         sizeof (gpointer)
1682
1683 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1684
1685         * gc.c:
1686         (internal_domain_finalize): moved into mono_domain_finalize. No need
1687         to create another thread because the finalizers will be run in the
1688         finalizer thread.
1689         
1690         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
1691         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
1692         to be run (MS does this too).
1693
1694 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
1695
1696         * object.c (mono_class_compute_gc_descriptor): Update comment.
1697
1698         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
1699
1700         * image.h: Add synchronized wrapper cache.
1701
1702         * image.c (do_mono_image_open): Initialize cache.
1703
1704         * reflection.c (create_dynamic_mono_image): Initialize cache.
1705
1706 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1707
1708         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
1709         ves_icall_System_Buffer_ByteLengthInternal.
1710
1711 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
1712
1713         * reflection.c: setup klass->nested_in earlier. Allow
1714         a dash in the assembly name.
1715
1716 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
1717
1718         * metadata.c (mono_type_to_unmanaged): dont access
1719         type->data.klass for MONO_TYPE_OBJECT
1720         (mono_type_to_unmanaged): consider System.Delegate class
1721
1722 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
1723
1724         * class.c: just setup supertypes in the proper place instead of
1725         initializing the full element class for arrays.
1726
1727 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
1728
1729         * class.c: ensure the element class of arrays is initialized.
1730         Setup the supertype info for array classes, too.
1731
1732 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
1733
1734         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
1735
1736 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1737
1738         * Makefile.am: re-added -m option when running cygpath. This way,
1739         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
1740         separator.
1741         * mono-config.c: same codepath for locating mono config file for WIN32
1742         and the rest.
1743         * assembly.c: if mono_assembly_setrootdir is called, don't override
1744         the value set.
1745
1746 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1747
1748         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
1749         MONO_ASSEMBLIES variable.
1750
1751 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
1752
1753         * icall.c: added Assembly::GetNamespaces() icall.
1754
1755 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1756
1757         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
1758
1759 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
1760
1761         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
1762         * object.c: fixed bug in the construction of vtable for proxies
1763
1764 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
1765
1766         * object.c (mono_array_new): Mark mono_array_new as an icall.
1767
1768 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1769
1770         * class.c: fixed test for public method when overriding interfaces.
1771         Closes bug #40970.
1772
1773 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
1774
1775         * appdomain.h, domain.c: added mono_domain_foreach() to
1776         be able to access the currently loaded appdomains.
1777         * object.c: make string interning work across sppdomains.
1778         Mark some functions for use as icalls.
1779
1780 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
1781
1782         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
1783
1784         * reflection.h reflection.c: Allocate long living data using 
1785         GC_MALLOC_ATOMIC so the collector does not need to scan it.
1786
1787         * reflection.c: Double the allocation size in streams instead of
1788         increasing it, to prevent unneccesary copying on large assemblies.
1789         
1790         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
1791         creation if the assembly does not have the Run flag set.
1792
1793 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
1794
1795         * class.h: avoid the C++ keywords in header files (Jerome Laban
1796         spotted and fixed this).
1797
1798 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1799
1800         * object.c:
1801         (mono_unhandled_exception): fill in the arguments for the
1802         UnhandledException event. Only trigger that event for the default
1803         domain (as MS does).
1804
1805 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
1806
1807         * object.c: Improve typed allocation stuff based on suggestions from
1808         Paolo. Also turn it on if the GC library supports it.
1809
1810 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
1811
1812         * object.c object.h class.h: Added experimental typed allocation
1813         facility using the interfaces in gc_gcj.h.
1814
1815         * os/gc_wrapper.h: Added new include files.
1816         
1817 2003-04-03  Martin Baulig  <martin@ximian.com>
1818
1819         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
1820         which is not yet enabled by default.
1821
1822         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
1823         functions.
1824         (mono_gc_lock, mono_gc_unlock): New static functions.
1825
1826         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
1827         functions; stop/start the world for the garbage collector.  This
1828         is using the windows API; we need to complete the SuspendThread()/
1829         ResumeThread() implementation in the io-layer to make this work on Unix.
1830         (mono_gc_push_all_stacks): New public function; tells the garbage
1831         collector about the stack pointers from all managed threads.
1832
1833 2003-04-03  Martin Baulig  <martin@ximian.com>
1834
1835         * object.h (MonoThread): Added `gpointer stack_ptr'.
1836
1837         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
1838
1839 2003-04-03  Martin Baulig  <martin@ximian.com>
1840
1841         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
1842
1843 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
1844
1845         * reflection.c (typebuilder_setup_fields): Initialize field.first and
1846         field.last.
1847
1848 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
1849
1850         * loader.c (mono_lookup_internal_call): Report the corlib that is
1851         out of sync.
1852
1853 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
1854
1855         * icall.c (ves_icall_type_GetTypeCode): fixed check for
1856         System.DBNull (it's class not valuetype).
1857
1858 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
1859
1860         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
1861         if the array method was already assigned a token (fixes bug#40646).
1862
1863 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
1864
1865         * reflection.c (mono_reflection_get_type): Attempt type resolve even
1866         if no assembly is given.
1867
1868 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
1869
1870         * metadata.h: Added the new tables.
1871
1872         * row-indexes.h: Added definitions for new tables.
1873
1874         * metadata.c: Add schemas for new tables, and add support for
1875         computing the sizes of them.
1876
1877         * class.c: Update for handling the new type cases.
1878
1879 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
1880
1881         * metadata.h (MONO_TYPE_IS_VOID): new macro
1882
1883 2003-03-31  Martin Baulig  <martin@ximian.com>
1884
1885         * threads.h (MonoThreadCallbacks): Added `thread_created'.
1886
1887         * threads.c (mono_thread_new_init): Call `thread_created' in the
1888         mono_thread_callbacks.
1889
1890 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
1891
1892         * loader.h: added marshalbyrefobject_class to mono_defaults
1893         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
1894         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
1895           generation of output parameters.
1896           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
1897         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
1898           contextbound and the target object belongs to the context of the caller.
1899         * object.h: added context and unwrapped_server variables in MonoRealProxy.
1900         * object.c: Implemented support for interfaces and abstract classes
1901           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
1902           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
1903
1904 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
1905
1906         * class.h class.c (mono_class_is_subclass_of): New function.
1907         
1908         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
1909         routines for most common case (calls from ArrayList::ToArray).
1910
1911         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
1912         routine so programs which call Environment::Exit() can be profiled.
1913
1914         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
1915         Added MONO_ARCH_SAVE_REGS.
1916
1917         * icall.c (ves_icall_type_is_subtype_of): Use new function.
1918
1919 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
1920
1921         * blob.h: Add a couple of new MonoType types definitions.
1922
1923         * tabledefs.h: Add a couple of new call convs.
1924
1925 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
1926
1927         * reflection.h (MonoReflectionDynamicAssembly): track changes in
1928         the layout of the class.
1929
1930         * reflection.c (alloc_table): double the size on overflow to avoid
1931         unnecessary copying.
1932
1933         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
1934         avoid filling out metadata tables and blobs. Also set mb->ilgen to
1935         null so it can be garbage collected.
1936         
1937 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
1938
1939         * reflection.c (mono_reflection_get_type): Return the resolved type
1940         only if it is in the assembly we searched.
1941
1942         * reflection.c (ensure_runtime_vtable): Initialize method slots.
1943
1944         * class.c (mono_class_setup_vtable): Set the slot of the overriding
1945         method.
1946
1947 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1948
1949         * appdomain.c:
1950         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
1951         the right one is 'file:///blah', but MS allows it.
1952         * assembly.c:
1953         (mono_assembly_open): allow 'file://blah'
1954
1955         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
1956
1957 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
1958
1959         * socket-io.c: fixes bug #40310.
1960
1961 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
1962
1963         * reflection.c (mono_reflection_parse_type): handle deeply nested
1964         types correctly.
1965
1966         * reflection.c (mono_image_create_token): Use unique token values
1967         since they will be put into a hash table.
1968
1969         * class.c (mono_class_setup_vtable): If a method occurs in more than
1970         one place in the vtable, and it gets overriden, then change the
1971         other occurances too.
1972
1973         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
1974         object as return type.
1975
1976 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
1977
1978         * icall.c: Deleted "ToString" implementation for double and float
1979         because they are full implemented in managed code.
1980
1981 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
1982
1983         * reflection.c, reflection.h: implemented and exported functions
1984         to retrieve info about custom attributes.
1985
1986 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1987
1988         * appdomain.c: moved Uri handling to assembly.c
1989         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
1990         work when using a file Uri in *nix and windows.
1991
1992         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
1993         GetReferencedAssemblies.
1994
1995 2003-03-18  Dick Porter  <dick@ximian.com>
1996
1997         * icall.c: Rename a couple of internal calls
1998
1999         * threads.c: Set the thread state to Stopped when a thread exits.
2000         Fixes bug 39377.
2001
2002 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
2003
2004         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
2005         New icall.
2006
2007         * object.c (mono_class_vtable): fix warning.
2008
2009 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
2010
2011         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
2012
2013         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
2014         memory.
2015         (method_encode_clauses): Create exception info structures in the right
2016         order.
2017         (mono_reflection_setup_internal_class): Initialize supertypes field.
2018
2019         * class.c object.c: Handle interfaces which implement other interfaces 
2020         correctly.
2021
2022         * class.h class.c: Move the supertypes array initialization code into 
2023         a separate function so it can be used for dynamic types too. Also call
2024         it earlier, in mono_class_init(), since it can be used before the
2025         type is initialized.
2026
2027 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2028
2029         * Makefile.am:
2030         * assembly.c:
2031         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
2032
2033         * appdomain.c:
2034         * appdomain.h:
2035         * marshal.c:
2036         * object.c: remove warnings.
2037
2038 2003-03-13  Martin Baulig  <martin@ximian.com>
2039
2040         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
2041         (MonoDebugLexicalBlockEntry): New types.
2042
2043         * debug-mono-symfile.c
2044         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
2045
2046 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2047
2048         * process.c: ret can be any non-zero value accroding to MS doc.
2049
2050 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
2051
2052         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
2053         fixing a warning for a miss-used prototype, would have cause
2054         random memory corruption.
2055
2056 2003-03-07  Martin Baulig  <martin@ximian.com>
2057
2058         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
2059         getting really annoying ....
2060
2061 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
2062
2063         * reflection.c (fixup_method): added support for array methods.
2064
2065 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
2066
2067         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
2068         (pointed out by Michael Adams).
2069
2070 2003-03-04  Dick Porter  <dick@ximian.com>
2071
2072         * icall.c: Temporarily reverted the Double and Single ToString()
2073         change, because it broke nunit.
2074
2075 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
2076
2077         * object.h, threads.h: make include files compatible with C++
2078         (patch by Jerome Laban <jlaban@wanadoo.fr>).
2079
2080 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
2081
2082         * icall.c: Erased ToString helper functions for Double and Single.
2083         Now, that implementations ar all in managed code (Double and Single
2084         Formatters).
2085
2086 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
2087
2088         * appdomain.c: Added method for initializing the default context of
2089         a domain. Added internal call for getting the default context.
2090         * appdomain.h: Added context variable in MonoDomain struct.
2091         * domain.c: mono_domain_set also sets the default context of the domain
2092         * icall.c: Mapped internal method InternalGetDefaultContext.
2093         * object.c: mono_object_get_virtual_method returns always a remoting
2094         wrapper if the object is a transparent proxy.
2095         mono_runtime_invoke_array: when creating an object by calling the
2096         constructor, if the created object is a proxy, then the constructor should
2097         be called using the a remoting wrapper.
2098
2099 2003-03-03  Dick Porter  <dick@ximian.com>
2100
2101         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
2102         variable so it compiles on solaris.  Problem spotted by
2103         Christopher Taylor <ct@cs.clemson.edu>
2104
2105 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2106
2107         * appdomain.c:
2108         (get_info_from_assembly_name): don't leak value.
2109
2110         * icall.c:
2111         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
2112         result.
2113
2114 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
2115
2116         * assembly.c: export mono_image_load_references ().
2117         * class.c: handle function pointers. mono_class_from_name() now
2118         supports nested type names directly.
2119
2120 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
2121
2122         * reflection.h reflection.c: Encode already created dynamic methods 
2123         and fields correctly as a DEF instead of a REF.
2124
2125         * reflection.c: Get rid of the force_ref argument to 
2126         mono_image_typedef_or_ref since it was wrong in the first place.
2127
2128         * string-icalls.c: add error checking to string constructors according
2129         to the MSDN docs.
2130
2131         * reflection.c: Emit types in the order their TypeBuilders were 
2132         created. Previously, a new table index was assigned to each type before
2133         the tables were emitted. This was wrong because the signature blob
2134         might already refer to a type by its original table index.
2135
2136 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
2137
2138         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
2139         change.
2140         
2141 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2142
2143         * Makefile.am: make assemblies dir have \ instead of / on windows.
2144
2145 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
2146
2147         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
2148         iterate over the NESTEDCLASS table using a linear search since the
2149         table is not guaranteed to be sorted by the secondary key.
2150
2151         * class.c (mono_class_create_from_typedef): fixed up call to
2152         mono_metadata_nesting_typedef.
2153         
2154 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
2155
2156         * marshal.c (mono_string_to_byvalstr): clear the memory as
2157         suggested by Jerome Laban <jlaban@wanadoo.fr>
2158
2159 2003-02-26  Dick Porter  <dick@ximian.com>
2160
2161         * process.c: Cope with padding in .rsrc blocks
2162
2163 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
2164
2165         * metadata.h: reverted the filter_len change, it breaks reflection
2166         
2167 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
2168
2169         * metadata.h: added a new field to store the filter_len
2170         
2171
2172 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
2173
2174         * reflection.c: handle custom attributes for types and members
2175         created with Reflection.Emit (bug#38422).
2176
2177 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
2178
2179         * reflection.c: define RTSpecialName automatically for constructors for
2180         compatibility with MS.NET.
2181
2182         * reflection.c (mono_reflection_create_runtime_class): initialize
2183         nested_in field of dynamically created classes.
2184
2185 2003-02-22  Martin Baulig  <martin@ximian.com>
2186
2187         * debug-mono-symfile.h: Incremented version number.
2188
2189 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
2190
2191         * object.h icall.c process.c: fix warnings.
2192
2193 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
2194
2195         * appdomain.h appdomain.c:
2196         (mono_domain_try_type_resolve): split the 
2197         name_or_tb argument into a name and a tb argument.
2198         (mono_domain_has_type_resolve): new function to check whenever the
2199         application has registered a TypeResolve event handler.
2200         
2201         * icall.c reflection.h reflection.c: move the type resolve logic into
2202         mono_reflection_get_type () so it will be invoked when 
2203         Assembly::GetType () is called.
2204
2205         * reflection.c:
2206         (mono_reflection_get_type): renamed to get_type_internal.
2207         (mono_reflection_get_type): fixed type name generation so it works 
2208         for nested types too.
2209         (mono_reflection_get_type): call has_type_resolve () to avoid the 
2210         costly type name generation if there is no resolve event handler.
2211
2212 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
2213
2214         * class.c, image.c: load exported types from file references.
2215
2216 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
2217
2218         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
2219           used to cache the managed methods used to create proxies and make 
2220           remote invocation of methods.
2221         * class.h: Added in MonoVTable a flag to indicate that a class needs 
2222           to be remotely created.
2223         * object.c: Modified the method mono_class_vtable(). It now initializes 
2224           the remote flag of the vtable. Modified mono_object_new_specific(), 
2225           so now it checks the remote flag.
2226         * icall.c: Added a couple of internal methods, one for enabling instance 
2227           creation interception for a type, and one for creating objects bypassing
2228           the remote check.
2229
2230 2003-02-18  Martin Baulig  <martin@ximian.com>
2231
2232         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
2233         New interncall to get a method's metadata token.
2234
2235         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
2236         New interncall for the debugger.
2237
2238 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
2239
2240         * class.c (mono_class_setup_vtable): allocate supertype array
2241
2242 2003-02-18  Martin Baulig  <martin@ximian.com>
2243
2244         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
2245
2246 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2247
2248         * reflection.c:
2249         (assembly_name_to_aname): jump over unknown properties (i've found
2250         something like: 'type, assembly, version=xxx, custom=null, public...',
2251         so now will ignore custom=null and still get the rest of the values).
2252
2253 2003-02-17  Dick Porter  <dick@ximian.com>
2254
2255         * threads.c: Have Thread.Start() wait for a semaphore to signal
2256         that the thread has set up all its local data.  This fixes bug
2257         34323, where Abort() raced the new thread's TLS data.
2258
2259         Also removes the handle_store() call from start_wrapper, because
2260         threads are now always created suspended and there is no longer a
2261         race between the parent and child threads to store the info.
2262
2263 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
2264
2265         * image.c: explain the #- heap issue in a message, hopefully
2266         avoiding FAQs on mono-list.
2267
2268 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2269
2270         * icall.c:
2271         (GetEntryAssembly): if the domain has not invoked
2272         AppDomain.ExecuteAssembly yet, return the assembly of the default
2273         AppDomain.
2274
2275 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
2276
2277         * class.c (mono_ldtoken): make it work in dynamic assemblies.
2278
2279 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
2280
2281         * metadata.c, reflection.c: simple speedup to type hash
2282         and equals code.
2283
2284 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
2285
2286         * image.c, image.h, class.c, assembly.c: move module loading
2287         to MonoImage. When loading metadata, consider alignemnet from
2288         the start of metadata, not from the metadata address in memory.
2289
2290 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
2291
2292         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
2293         AssemblyBuilder objects. Factored out custom attribute creation into
2294         a separate function.
2295         (create_custom_attr): new function to create custom attributes.
2296
2297 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
2298
2299         * Makefile.am: Got tired of typing the full pathname to pedump.
2300         Until there is another option, am installing this.
2301
2302 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
2303
2304         * class.c (class_compute_field_layout): always set field->parent 
2305         (mono_ldtoken): use mono_defaults.fieldhandle_class;
2306
2307 2003-02-11  Dick Porter  <dick@ximian.com>
2308
2309         * threads-types.h:
2310         * monitor.c: Rewrote Monitor, making lock much faster and
2311         Pulse/Wait work as specified.  Also uses much fewer handles, and only
2312         creates them as needed.
2313
2314         * exception.c: Added SynchronizationLockException
2315
2316         * threads.c: Deleted old Monitor implementation.  The new one is
2317         in a new file.
2318
2319 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
2320
2321         * class.c: handled TypedReference type code. Set the correct size for
2322         class data. Setup interface_offsets for interface classes, too.
2323
2324 2003-02-09  Martin Baulig  <martin@ximian.com>
2325
2326         * debug-mono-symfile.h: Reflect latest symbol writer changes.
2327
2328 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
2329
2330         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
2331         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
2332         * object.c: fixed mono_object_get_virtual_method () for interfaces.
2333         * verify.c: check for code that runs after the end of the method.
2334
2335 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
2336
2337         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
2338         "System.Math::Round2".
2339         * sysmath.h: Added Floor, Round and Round2 definitions.
2340         * sysmath.c: Modified certain functions that were not 100% compliant
2341         with MS.NET (math precision) and added the implementation of Floor,
2342         Round and Round2.
2343
2344 2003-02-07  Martin Baulig  <martin@ximian.com>
2345
2346         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
2347
2348 2003-02-07  Martin Baulig  <martin@ximian.com>
2349
2350         * debug-mono-symfile.c: Reflected latest symwriter changes.
2351         (mono_debug_create_mono_symbol_file): Removed.
2352         (mono_debug_open_mono_symbol_file): Take an argument which
2353         specifies whether to create a dynamic symbol file.
2354
2355 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
2356
2357         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
2358
2359 2003-02-05  Martin Baulig  <martin@ximian.com>
2360
2361         * reflection.c (mono_image_build_metadata): Make this public,
2362         protect it against being called multiple times, don't create
2363         resources and don't build the compressed metadata here.
2364         (mono_image_create_pefile): Do this here.
2365
2366         * icall.c
2367         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
2368
2369 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2370
2371         * socket-io.c: fixed bug #36322.
2372
2373 2003-02-06  Piers Haken <piersh@friskit.com>
2374
2375         * appdomain.[ch]:
2376         * class.h:
2377         * debug-mono-symfile.c:
2378         * icall.c:
2379         * loader.c:
2380         * mono-config.c:
2381         * monosn.c:
2382         * reflection.c:
2383         * socket-io.c: warning cleanups
2384
2385 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
2386
2387         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
2388         function. works like remoting invoke, but does a check for the Proxy first.
2389
2390 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
2391
2392         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
2393
2394 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
2395
2396         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
2397         array of pointers.
2398         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
2399         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
2400
2401         * object.c (mono_store_remote_field_new): used by the new jit
2402         instead of mono_store_remote_field
2403         (mono_load_remote_field_new): used by the new jit
2404         instead of mono_load_remote_field
2405
2406 2003-02-05  Patrik Torstensson
2407
2408         * appdomain.c: changed unload to take the domain id instead
2409         of domain
2410         
2411         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
2412
2413
2414 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2415
2416         * appdomain.c: don't look for assemblies in ApplicationBase if
2417         PrivateBinPathProbe is set.
2418
2419 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2420
2421         * object.c: make the first argument in main_args contain the absolute
2422         path to the assembly. Fixes bug #37511.
2423
2424 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2425
2426         * icall.c: get correct UTC offset for countries not using daylight
2427         time saving. Fixes bug #30030.
2428
2429 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2430
2431         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
2432         and 1 are the family).
2433
2434 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
2435
2436         * icall.c (ves_icall_InternalExecute): removed wrong assertion
2437
2438         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
2439
2440 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
2441
2442         * reflection.c: added support for SignatureHelper tokens, which is
2443         needed by the Calli opcode.
2444
2445         * reflection.h: track changes to SignatureHelper class.
2446
2447         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
2448
2449 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2450
2451         * appdomain.c: fixed loading assemblies from PrivateBinPath.
2452
2453 2003-02-03  Patrik Torstensson
2454         * appdomain.[c|h], domain.c : 
2455          - Added support for getting a domain via domain id
2456          - Support for setting and getting domain from System.AppDomain 
2457            (used in cross appdomain channel)
2458          - Added support for get/set for a MonoAppContext on a thread 
2459            (Context class in System.Runtime.Remoting.Contexts),
2460          - Removed hack in Get/SetData and ExecuteAssembly.
2461         
2462         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
2463         the managed world to get control when a proxy is created.
2464
2465         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
2466         
2467 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
2468
2469         * icall.c
2470         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
2471         Populate the codebase field as well.
2472
2473 2003-02-02  Martin Baulig  <martin@ximian.com>
2474
2475         * debug-mono-symfile.c
2476         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
2477         (mono_debug_symfile_add_method): Allow interncalls.
2478
2479 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2480
2481         * icall.c: throw parse exception if strtod fails or the string is empty.
2482
2483 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
2484
2485         * marshal.c: handle object type separately from defined
2486         class types.
2487
2488 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
2489
2490         * marshal.c: handle NATIVE_LPSTR for strings when it's
2491         explicitly specified.
2492
2493 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
2494
2495         * reflection.c, reflection.h, icall.c: setup the reflection
2496         handle cache for ModuleBuilders and AssemblyBuilders.
2497
2498 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
2499
2500         * reflection.c (reflection_methodbuilder_to_mono_method): set
2501         pinvoke flag
2502
2503 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2504
2505         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
2506
2507 2003-01-29  Dick Porter  <dick@ximian.com>
2508
2509         * threads.c: No need for the fake_thread kludge now that Thread
2510         doesn't run a class constructor
2511         
2512 2003-01-29  Dick Porter  <dick@ximian.com>
2513
2514         * threads.c: Use g_direct_hash instead of the rather bogus
2515         g_int_hash
2516
2517 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
2518
2519         * marshal.c (mono_marshal_get_native_wrapper): add check for null
2520         (fix pinvoke12.exe)
2521         (mono_marshal_get_struct_to_ptr): generate valid IL code
2522         (mono_marshal_get_ptr_to_struct): generate valid IL code
2523         (*): correctly set sig->pinvoke, we need to memdup the signature
2524         to do that
2525
2526 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
2527
2528         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
2529         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
2530
2531 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
2532
2533         * profiler.c: provide more callers information.
2534
2535 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
2536
2537         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
2538
2539         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
2540
2541         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
2542
2543 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2544
2545         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
2546         exception instead of going into an infinite loop on dates which it 
2547         can't yet handle.
2548
2549         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
2550         out-of-range exception if needed.
2551
2552         * class.c (mono_class_setup_vtable): allow a virtual method to provide
2553         an implementation for an interface method and to override an inherited
2554         method at the same time. 
2555         Imagine a scenario when a virtual method is used to override a
2556         virtual abstract method in a parent class, and this same method 
2557         provides an implementation for an method inherited from an interface. 
2558         In this case, the interface resolution code will set im->slot, which 
2559         means that the virtual method override pass will skip this method 
2560         which means a pointer to the abstract method inherited from the parent
2561         will remain in the vtable of this non-abstract class.
2562
2563         * class.c: (mono_class_setup_vtable): continue search for a real 
2564         method if only an abstract method is found.     
2565
2566 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
2567
2568         * reflection.c: add size to encoding for ByValStr and ByValArray
2569         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
2570
2571 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2572
2573         * class.c (mono_class_setup_vtable): pass the override info as an
2574         argument.
2575
2576         * class.c (mono_class_setup_vtable): set the slot of overriding methods
2577         correctly.
2578         
2579         * reflection.c (ensure_runtime_vtable); add support for method 
2580         overrides.
2581         
2582 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2583
2584         * reflection.c (resolution_scope_from_image): Hack to work to work with
2585         dynamic assemblies.
2586
2587         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
2588         added a 'force_ref' argument to force this function to allways return 
2589         a TypeRef. This is needed by mono_image_get_memberref_token ().
2590         
2591 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2592
2593         * reflection.c (mono_image_get_type_info): interfaces really don't have
2594         a parent.
2595
2596         * reflection.c (mono_image_basic_init): fill out missing fields of
2597         image structure.
2598
2599         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
2600         dynamic assemblies. This is required so dynamic assemblies show up in
2601         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
2602         Type::GetType() etc. This is consistent with MS behaviour.
2603
2604         * image.c image.h reflection.c: add newly created classes to the name 
2605         cache so mono_class_get () will find them.      
2606
2607 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
2608
2609         First part of changes to get IKVM.NET running under mono.
2610         
2611         * appdomain.h, appdomain.c: added new function 
2612         mono_domain_try_type_resolve() which will emit TypeResolve events. 
2613         This function will call AppDomain::DoTypeResolve to do the actual work.
2614
2615         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
2616         moved existing code dealing with dynamic tokens to a new function 
2617         called mono_reflection_lookup_dynamic_token (). This function will 
2618         raise TypeResolve events when appropriate. Since reflection.c is not 
2619         part of libmetadata, a new hook function called 
2620         mono_lookup_dynamic_token() is added to class.c which will call this.
2621
2622         * assembly.h assembly.c: make the invoke_load_hook function public,
2623         so it can be called for dynamic assemblies.
2624
2625         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
2626
2627         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
2628         type isn't found.
2629
2630         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
2631         MonoGHashTable, since it contains pointers to objects which the GC 
2632         needs to track.
2633
2634         * assembly.c (search_loaded): remove unused variable.
2635         
2636 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
2637
2638         * object.c: fixed issue exposed by gcc-generated IL programs
2639         that use RVA data for pointers.
2640
2641 2003-01-25  Martin Baulig  <martin@ximian.com>
2642
2643         * threads.c (start_wrapper): Moved the initialization of
2644         `start_func' above the mono_new_thread_init() call to which we
2645         pass it as argument.
2646
2647 2003-01-24  Martin Baulig  <martin@ximian.com>
2648
2649         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
2650         the MonoThread pointer.
2651
2652 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
2653
2654         * icall.c: Rename `PowImpl' to Pow.
2655
2656 2003-01-23  Dick Porter  <dick@ximian.com>
2657
2658         * threads.c (start_wrapper): Create a Thread object if needed, so
2659         the Main() thread can do the class initialisation in a subthread
2660         that has been set up to allow managed code execution.
2661
2662         Pass the thread ID instead of the MonoThread pointer to the thread
2663         start and attach callbacks.  This change is required, because the
2664         jit thread start callback must be called _before_ the Thread
2665         object can be created.
2666         
2667         (mono_thread_init): Removed much object creation code that is no
2668         longer needed.  No managed code is called from here now.
2669
2670         * object.c (mono_runtime_exec_managed_code): Create a subthread
2671         for Main, and call back to the runtime to use it.
2672         Set the exit code when Main exits.
2673
2674         * gc.c: Make sure domain finalisation happens in a subthread.
2675         Re-enable threaded GC, fixing bug 31333 (again).
2676
2677         * environment.c: System.Environment internall calls (so far just
2678         ExitCode is here, the others are still in icall.c)
2679
2680         * appdomain.c (mono_runtime_cleanup): All threads running managed
2681         code should have finished before mono_runtime_cleanup() is
2682         reached, so no need to clean up threads.
2683
2684 2003-01-22  Martin Baulig  <martin@ximian.com>
2685
2686         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
2687         `gpointer func' arguments.      
2688         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
2689         but added `MonoThread *thread' argument.
2690         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
2691
2692         * threads.c (mono_new_thread_init): Added `gpointer func' argument
2693         and pass it to the mono_thread_start_cb callback.
2694         (mono_install_thread_callbacks): New public function to install a
2695         set of callbacks which are set by the debugger.
2696         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
2697
2698 2003-01-22  Martin Baulig  <martin@ximian.com>
2699
2700         * Makefile.am: Install debug-mono-symfile.h.
2701
2702 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
2703
2704         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
2705
2706 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
2707
2708         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
2709         * class.c (mono_ptr_class_get): correctly set access levels of pointers
2710         (mono_array_class_get): correctly set access levels of arrays
2711
2712 2003-01-20      Patrik Torstensson
2713         * image.h (MonoAssemblyName): changed major, minor, build, revision
2714         from signed to unsigned.
2715
2716 2003-01-20  sean kasun <skasun@azstarnet.com>
2717
2718         * reflection.c (load_cattr_value): Now this handles
2719         MONO_TYPE_SZARRAY.  Fixes bug #35629
2720
2721 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
2722
2723         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
2724         integer value
2725
2726 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2727
2728         * decimal.c: fixed bug #26056.
2729
2730 2003-01-17  Martin Baulig  <martin@ximian.com>
2731
2732         * gc.c: Raise an ExecutionEngineException instead of using g_error().
2733
2734 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2735
2736         * exception.[ch]:
2737         (mono_get_exception_type_initialization): new function.
2738
2739         * object.c: throw a TypeInitializationException when an exception is
2740         thrown invoking the class constructor.
2741
2742 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2743
2744         * reflection.c: fixed attribute reading.
2745
2746 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2747
2748         * icall.c:
2749         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
2750         provided, look for the type in the calling assembly and then in
2751         mscorlib; if the assembly name is provided, only try that one.
2752
2753 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
2754
2755         * object.c: register the vtable before there is a chance it's
2756         queried again recursively.
2757
2758 2003-01-13  Duncan Mak  <duncan@ximian.com>
2759
2760         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
2761         gc-internal.h. 
2762         
2763 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
2764
2765         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
2766
2767 2003-01-11  Martin Baulig  <martin@ximian.com>
2768
2769         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
2770         this to 20 for the release.
2771
2772 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
2773
2774         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
2775
2776         * loader.c (mono_method_get_marshal_info): bug fix
2777
2778         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
2779         structures with explicit layout
2780
2781 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
2782
2783         * profiler.c: made the output more readable (and sorted). 
2784         Added caller information for the allocation profiler.
2785
2786 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
2787
2788         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
2789
2790 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2791
2792         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
2793         to get value types.
2794         
2795 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
2796
2797         * object.c, profiler.h, profiler.c, profiler-private.h:
2798         Added object allocation profiler.
2799
2800 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
2801
2802         * reflection.h, reflection.c: handle global methods.
2803         Compress blob entries.
2804
2805 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
2806
2807         * marshal.c: fix compilation.
2808
2809 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
2810
2811         * loader.c (mono_method_get_marshal_info): impl.
2812
2813         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
2814
2815 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2816
2817         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
2818         for reference types.
2819
2820 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
2821
2822         * loader.c: fixed off by one error in loaded parameter names.
2823
2824 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
2825
2826         * marshal.c (mono_marshal_get_icall_wrapper): like
2827         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
2828         instead of a MonoMethod.
2829
2830 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2831
2832         * decimal.c: fixed bug #36537.
2833
2834 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
2835
2836         * marshal.c: throw a missing method exception if a
2837         P/Invoke method is not found.
2838
2839 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
2840
2841         * icall.c: allow a null this for constructors.
2842
2843 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
2844
2845         * icall.c: raise the proper exceptions if the arguments to the
2846         internal Invoke are incorrect.
2847
2848 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
2849
2850         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
2851
2852 2003-01-03  Martin Baulig  <martin@ximian.com>
2853
2854         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
2855
2856 2002-12-31  Martin Baulig  <martin@ximian.com>
2857
2858         * debug-mono-symfile.c: Completely rewrote the type section.
2859         Instead of using individual malloc()ed fields, we use one big
2860         continuous memory area and offsets into this area.
2861         See the comments in the source code for details.
2862
2863 2002-12-30  Martin Baulig  <martin@ximian.com>
2864
2865         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
2866
2867 2002-12-30  Martin Baulig  <martin@ximian.com>
2868
2869         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
2870         line number table in this data blob instead of using an external
2871         pointer.
2872
2873 2002-12-28  Martin Baulig  <martin@ximian.com>
2874
2875         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
2876
2877 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
2878
2879         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
2880         as a boxed return type.
2881
2882 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
2883
2884         * appdomain.c
2885         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
2886         g_build_filename to properly get separators on the filename created.
2887
2888         * object.h: Small change, introduce MonoMarshalByRefObject to
2889         track the layout of that structure in the C# universe as we make
2890         changes there.
2891
2892 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
2893
2894         * object.c: removed assert to allow static fields on interfaces.
2895         * loader.c: a TypeSpec may be used for any type, not just arrays.
2896
2897 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
2898
2899         * class.c, class.h: added mono_class_array_element_size ().
2900         Ignore static methods in interfaces.
2901
2902 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2903
2904         * threads.c: fixed the build under cygwin.
2905
2906 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
2907
2908         * reflection.c: handle nullref constants. Allocate keys for
2909         reflection handles with the GC.
2910
2911 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
2912
2913         * threads.c, threads.h: added mono_thread_get_abort_signal()
2914         to get a suitable signal for thread abort.
2915
2916 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
2917
2918         * metadata.c: fix handling of ExportedType table.
2919
2920 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2921
2922         * icall.c: added WriteWindowsDebugString internal call.
2923
2924 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2925
2926         * reflection.h: added fields to match C# implementation.
2927
2928 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2929
2930         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
2931
2932 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
2933
2934         * gc.h, gc-internal.h: Rename header for GC internal calls to
2935         gc-internal.h from gc.h as to not clash with Boehm GC having its
2936         header installed as <gc.h> in outside include paths.
2937         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
2938         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
2939
2940 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2941
2942         * icall.c: assign minor, build and revision in FillName.
2943
2944 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
2945
2946         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
2947         Added support for running code generated by Reflection.Emit.
2948
2949 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2950
2951         * appdomain.c: check for NULL argument in LoadFrom.
2952
2953 2002-12-10  Dick Porter  <dick@ximian.com>
2954
2955         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
2956
2957 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2958
2959         * appdomain.c: fix buglet when building exe file name.  Handle full
2960         assembly name (needed after latest changes to AssemblyName).
2961         * image.c:
2962         (mono_image_close): free some hashtables.
2963
2964 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
2965
2966         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
2967         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
2968         on some systems (redhat 7.3) 
2969
2970 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
2971
2972         * threads.c: delete the critical section of a sync block,
2973         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
2974
2975 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
2976
2977         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
2978
2979 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2980
2981         * appdomain.[ch]: handle the assembly preload event to try loading the
2982         assemblies using the paths we have in the current domain.
2983
2984         * assembly.[ch]: created an assembly preload hook that is called to try
2985         loading the assembly by other means that the ones provided here.
2986
2987         * domain.c: initialize the domain search path.
2988
2989         From now on, assemblies (TODO: except corlib and System) are loaded
2990         according to these rules when using mono_assembly_load ():
2991
2992                 1. It tries to load the assembly from the ApplicationBase
2993                 of the current domain appending .dll and .exe (TODO: have to
2994                 try loading from name/name.dll and name/name.exe).
2995
2996                 2. It tries the search path specified in PrivateBinPath for the
2997                 current domain (if any).
2998
2999                 3. Previous behavior.
3000
3001 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
3002
3003         * icall.c: implemented GetInterfaceMap() related icall.
3004         * domain.c, loader.h: load MethodInfo in mono_defaults.
3005
3006 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
3007
3008         * gc.c: disable the finalizer thread for now, untill all the issues
3009         with it are resolved.
3010
3011 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
3012
3013         * string-icalls.c: handle embedded nulls in string ctor when the
3014         length is specified.
3015
3016 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
3017
3018         * class.c: look for explicit interface implementation in parent
3019         classes, too.
3020
3021 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
3022
3023         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
3024
3025 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
3026
3027         * gc.c: protect handles with a critical section.
3028
3029 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3030
3031         * icall.c:
3032         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
3033         parameters. If no assembly specified, try getting the type from all
3034         the assemblies in the current domain, else, load the assembly and get
3035         the type from it.
3036
3037 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3038
3039         * marshal.c: applied patch from Aleksey Demakov that fixes
3040         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
3041
3042 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3043
3044         * icall.c: fixed get_location.
3045
3046 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
3047
3048         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
3049         declarations to make it work with older gcc. 
3050
3051         * loader.c (mono_get_method): set signature->pinvoke for native calls
3052
3053 2002-11-20  Dick Porter  <dick@ximian.com>
3054
3055         * threads.c (mono_thread_init): Set the main thread's handle
3056
3057 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
3058
3059         * gc.c: allow compilation without GC support. Changed to match the
3060         mono coding style.
3061
3062 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
3063
3064         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
3065
3066 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
3067
3068         * reflection.c: set a public key token on the core assemblies.
3069
3070 2002-11-18  Dick Porter  <dick@ximian.com>
3071
3072         * threads.c: Split out some thread initialisation so that other
3073         files can set the start callback function.
3074
3075         * gc.c: Run finalisers in a separate thread, to avoid stack
3076         overflow.  Fixes bug 31333.
3077
3078         * appdomain.c: Set up GC finalisation thread.
3079
3080         * reflection.c: 
3081         * object.c: 
3082         * domain.c: Use gc.h macros for GC_malloc
3083         
3084 2002-11-15  Dick Porter  <dick@ximian.com>
3085
3086         * threadpool.c: 
3087         * threads.c:
3088         * appdomain.c: Removed mono_runtime_init_with_attach(),
3089         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
3090         merging the extra parameter with the existing function.  Removed
3091         unneeded code in mono_thread_attach().
3092
3093 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
3094
3095         * image.c (mono_image_loaded_by_guid): a method to get loaded
3096         images by guid. 
3097         (load_metadata_ptrs): we store the guid as string.
3098
3099 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
3100
3101         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
3102
3103         * metadata.c (mono_guid_to_string): imported method form Zoltan
3104         Varga (slightly modified)
3105
3106         * assembly.c (mono_assembly_open): load precompiled code
3107
3108         * loader.h (MonoMethod): we store the method token for use in the
3109         aot compiler. 
3110
3111 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3112
3113         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
3114         the hook function called when an assembly is loaded.
3115         
3116         * domain.c: Modified file.
3117         (mono_domain_assembly_load): removed hash table insertion of assemblies.
3118
3119         Fixes bug #33196.
3120
3121 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
3122
3123         * reflection.c: Map PEFileKind to the value expected by the WinNT
3124         image loader. 
3125
3126 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3127
3128         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
3129         Read until the buffer is filled completely.
3130
3131 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3132
3133         * icall.c: implemented MonoType.InternalGetEvent ().
3134
3135 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3136
3137         * appdomain.c: implemented InitAppDomainSetup. Delayed
3138         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
3139         the entry_assembly.
3140
3141         * assembly.c: base_dir is now an absolute path ending with
3142         G_DIR_SEPARATOR.
3143
3144         * icall.c: modified get_location according to the above changes.
3145
3146         * object.c: init AppDomain.SetupInformation for the default domain after
3147         we have the entry assembly.
3148
3149         * domain.c: when unloading a domain, setup = NULL.
3150
3151 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
3152
3153         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
3154
3155 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
3156
3157         * object.h, object.c: introduced mono_object_get_virtual_method ()
3158         to lookup the method invoked on an object when a callvirt is done on
3159         a method.
3160         * icall.c: make MethodInfo::Invoke() always do a virtual call.
3161
3162 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3163
3164         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
3165         current domain when loaded an assembly and failed to load it.
3166
3167         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
3168
3169 2002-10-31  Dick Porter  <dick@ximian.com>
3170
3171         * icall.c: 
3172         * file-io.h: 
3173         * file-io.c: Return the error status in a parameter, as the
3174         GetLastError() value has long since been blown away if we try and
3175         look it up in a subsequent internal call invocation.  Delete the
3176         GetLastError() internal call, because it's useless.
3177
3178 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
3179
3180         * class.[ch]: added cast_class to fix bug 29517
3181
3182 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
3183
3184         * marshal.c: create valid IL code in the filter clause:
3185         the new JIT is less forgiving:-)
3186
3187 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3188
3189         * icall.c: removed get_property internal call.
3190
3191 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
3192
3193         * appdomain.h domain.c: Added an ID to appdomains.
3194         
3195         * threads.c threads.h icall.c: Implement icall
3196         Thread:GetDomainID(), and remove unused icall 
3197         CurrentThreadDomain_internal.
3198
3199 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3200
3201         * icall.c: Don't recurse through the base types in GetConstructor.
3202         Fixes bug #32063. 
3203
3204 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
3205
3206         * mempool.h, mempool.c: added mono_mempool_empty() and
3207         mono_mempool_stats().
3208
3209 2002-10-23  Dick Porter  <dick@ximian.com>
3210
3211         * file-io.c: 
3212         * file-io.h: 
3213         * icall.c: Added MonoIO.GetFileType internal call
3214
3215 2002-10-17  Dick Porter  <dick@ximian.com>
3216
3217         * appdomain.c (mono_runtime_cleanup): Don't signal the async
3218         delegate semaphore before waiting for all threads to finish,
3219         because new threads can also call async delegates.  Fixes bug
3220         32004.
3221
3222         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
3223         of 3 seconds, in case another async job is queued.  (This part is
3224         needed because the bug fix reintroduced the 3s exit lag.)  This
3225         makes the mono_runtime_shutdown flag superfluous.
3226
3227 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
3228
3229         * reflection.c: include ehader size in method section headers.
3230         Really check for suplicated modules entries.
3231
3232 2002-10-17  Martin Baulig  <martin@gnome.org>
3233
3234         * debug-mono-symfile.c: Added back support for locals.
3235
3236 2002-10-14  Martin Baulig  <martin@gnome.org>
3237
3238         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
3239         MONO_TYPE_VOID.
3240
3241 2002-10-14  Martin Baulig  <martin@gnome.org>
3242
3243         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
3244         mono_class_get() instead of looking in the class cache. 
3245
3246 2002-10-13  Martin Baulig  <martin@gnome.org>
3247
3248         * debug-mono-symfile.c: Set version number to 28, include the
3249         signature in method names.
3250
3251 2002-10-13  Martin Baulig  <martin@gnome.org>
3252
3253         * debug-mono-symfile.h: Set version number to 27.
3254
3255 2002-10-11  Martin Baulig  <martin@gnome.org>
3256
3257         * gc.c: Don't register/unregister NULL pointers as disappearing links.
3258
3259 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
3260
3261         * metadata.c, metadata.h: added helper function to allocate signatures.
3262
3263 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3264
3265         * icall.c: added internal call to get the location of machine.config.
3266
3267 2002-10-08  Martin Baulig  <martin@gnome.org>
3268
3269         * debug-mono-symfile.c: Ignore classes with a pending init for the
3270         moment.
3271
3272 2002-10-03  Dick Porter  <dick@ximian.com>
3273
3274         * threads.c: Freebsd pthread_t is a pointer
3275
3276 2002-10-03  Dick Porter  <dick@ximian.com>
3277
3278         * socket-io.c: Implemented GetHostName_internal
3279
3280 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3281
3282         * mono-config.c:
3283         (mono_config_parse_file): don't leak the text.
3284
3285 2002-10-02  Martin Baulig  <martin@gnome.org>
3286
3287         * debug-mono-symfile.c: Added support for methods.
3288
3289 2002-10-01  Martin Baulig  <martin@gnome.org>
3290
3291         * debug-mono-symfile.c: Don't emit methods and line numbers for
3292         the dynamic symbol file, just write the type table.  We can easily
3293         have an external helper program which creates a symbol file for an
3294         IL file.        
3295
3296 2002-10-01  Dick Porter  <dick@ximian.com>
3297
3298         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
3299         Only add the handle to the cleanup array when we're about to
3300         launch the thread.  Bug 31425 deadlocked when the test was run on
3301         mono under w32.
3302
3303 2002-10-01  Martin Baulig  <martin@gnome.org>
3304
3305         * debug-mono-symfile.c: Added support for properties.
3306
3307 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
3308
3309         * reflection.c: unaligned store fix from Mark Crichton
3310         <crichton@gimp.org>.
3311
3312 2002-09-27  Martin Baulig  <martin@gnome.org>
3313
3314         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
3315         New interncall.
3316
3317 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
3318
3319         * assembly.h, assembly.c: use a sane API to hook into the assembly
3320         loading process instead of a useless special-purpouse hack
3321         (ngen needs a hook, too, for example).
3322
3323 2002-09-27  Dick Porter  <dick@ximian.com>
3324
3325         * threads.c (mono_thread_init): Call GetCurrentProcess() so
3326         io-layer can set up some process handle info.  Not needed on w32,
3327         but doesn't hurt either.
3328
3329         * process.c: Pass the program name in the second parameter to
3330         CreateProcess, so the path is searched.  Include the working
3331         directory. Implemented process name, process enumeration, and some
3332         process detail internal calls.
3333         
3334         * icall.c: Added internal calls for process lookup, and some
3335         process details
3336
3337 2002-09-26  Martin Baulig  <martin@gnome.org>
3338
3339         * assembly.c (mono_install_open_assembly_hook): New global
3340         function to install a function to be invoked each time a new
3341         assembly is loaded.
3342         (mono_assembly_open): Run this callback function if set.
3343
3344         * debug-mono-symfile.c: Put back line numbers for the dynamic
3345         symbol file and also record the .il file as source file.  This
3346         allows us to install the temporary symbol file as `file.dbg' just
3347         like a compiler-generated one.
3348
3349 2002-09-26  Nick Zigarovich <nick@chemlab.org>
3350
3351         * Corrected typo in gc.c (BOHEM vs BOEHM).
3352
3353 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3354
3355         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
3356         GetProperties. Also avoid calling g_slist_length in GetProperties and
3357         GetMethods.
3358
3359 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
3360
3361         * reflection.c: avoid unaligned stores (bug spotted by
3362         Mark Crichton  <crichton@gimp.org>).
3363
3364 2002-09-25  Martin Baulig  <martin@gnome.org>
3365
3366         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
3367         instead of guint64 for addresses and added prologue/epilogue info.
3368
3369 2002-09-25  Martin Baulig  <martin@gnome.org>
3370
3371         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
3372         store line number info.  For the dynamic symbol file, we only need
3373         to provide the JIT generated dynamic line number info for the dynamic
3374         symbol file.
3375
3376 2002-09-25  Martin Baulig  <martin@gnome.org>
3377
3378         * debug-mono-symfile.h: Incremented version number.
3379
3380 2002-09-24  Martin Baulig  <martin@gnome.org>
3381
3382         * class.c (mono_debugger_class_init_func): New global function
3383         pointer variable.
3384         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
3385         call it.
3386
3387         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
3388         function.  This is called via the mono_debugger_class_init_func
3389         hook to add all types to the dynamic type table.
3390         (ves_icall_MonoDebugger_GetType): New interncall to get a class
3391         from its metadata token.
3392
3393         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
3394         New interncall for the debugger.
3395
3396 2002-09-24  Nick Drochak <ndrochak@gol.com>
3397
3398         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
3399         before using it in case it is null.
3400         
3401 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
3402
3403         * metadata.c: allow custom modifiers in local var signatures
3404         (bug spotted by Zoltan Varga).
3405
3406 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
3407
3408         * class.c: deal with the <Module> class that may have a NULL vtable.
3409         Eliminate warnings.
3410
3411 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
3412
3413         * image.c, image.h: more strong name helpers.
3414         * monosn.c: more work: convert pem keys to cryptoapi format.
3415
3416 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
3417
3418         * string-icalls.c: speedup IndexOf.
3419
3420 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
3421
3422         * icall.c: updates from Zoltan.2.Varga@nokia.com.
3423
3424 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
3425
3426         * icall.c: cleanup: use mono_object_domain ().
3427
3428 2002-09-23  Martin Baulig  <martin@gnome.org>
3429
3430         * debug-mono-symfile.c: Improved type support.
3431
3432 2002-09-22  Martin Baulig  <martin@gnome.org>
3433
3434         * debug-mono-symfile.c: Added support for reference types and strings.
3435
3436 2002-09-22  Martin Baulig  <martin@gnome.org>
3437
3438         * debug-mono-symfile.c: Started to work on the type table.
3439
3440 2002-09-21  Martin Baulig  <martin@gnome.org>
3441
3442         * debug-mono-symfile.c: Largely reworked the symbol table format.
3443         The symbol table is now incrementally updated each time a new
3444         method is added.  We're now also using our own magic and version
3445         so that you don't need to recompile all your classes if the
3446         dynamic table changes.
3447         (mono_debug_update_mono_symbol_file): Removed.
3448         (mono_debug_symfile_add_method): New function to add a method.
3449
3450 2002-09-21  Martin Baulig  <martin@gnome.org>
3451
3452         * icall.c
3453         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
3454         New interncall.
3455
3456         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
3457         New interncall to get a method from its metadata token.
3458
3459 2002-09-21  Martin Baulig  <martin@gnome.org>
3460
3461         * debug-mono-symfile.c: Create type table.
3462
3463 2002-09-20  Martin Baulig  <martin@gnome.org>
3464
3465         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
3466
3467 2002-09-20  Martin Baulig  <martin@gnome.org>
3468
3469         * debug-mono-symfile.c: Provide information about params and locals.
3470
3471 2002-09-20  Martin Baulig  <martin@gnome.org>
3472
3473         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
3474         New interncall.
3475
3476         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
3477         interncall to get a method from its metadata token.
3478
3479 2002-09-20  Martin Baulig  <martin@gnome.org>
3480
3481         * debug-mono-symfile.c: Added a few checks for method->header
3482         being non-NULL.  This should never happen, but for the moment
3483         let's use a g_warning() rather than a g_assert().
3484
3485 2002-09-19  Mark Crichton  <crichton@gimp.org>
3486
3487         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
3488         even if support for it isn't present.  Added an #ifdef to fix this.
3489
3490         * socket-io.c: Added checks back for Solaris support.
3491
3492 2002-09-19  Martin Baulig  <martin@gnome.org>
3493
3494         * debug-mono-symfile.c (read_string, write_string): Reflect latest
3495         changes in the symbol file format.
3496
3497 2002-09-18  Martin Baulig  <martin@gnome.org>
3498
3499         * debug-mono-symfile.c: Set version number to 21.
3500
3501 2002-09-18  Dick Porter  <dick@ximian.com>
3502
3503         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
3504         on netbsd.  Fixes bug 30051.
3505
3506 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3507
3508         * reflection.c:
3509         (set_version_from_string): little fix.
3510
3511 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
3512
3513         * monosn.c, Makefile.am: added strong name utility.
3514         * reflection.h, reflection.c: implemented delayed signing,
3515         locale, version and hash id assembly attributes.
3516
3517 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
3518
3519         * loader.c, metadata.c: load param attributes in signatures.
3520
3521 2002-09-16  Martin Baulig  <martin@gnome.org>
3522
3523         * debug-mono-symfile.c: Added string table with all method names.
3524
3525 2002-09-14  Martin Baulig  <martin@gnome.org>
3526
3527         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
3528         fast method lookup.
3529
3530 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
3531
3532         * reflection.c: record the public key token of referenced assemblies.
3533
3534 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
3535
3536         * image.c, image.h: added functions to get the strong name and the
3537         public key of an assembly.
3538         * pedump.c: use them.
3539
3540 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
3541
3542         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
3543
3544 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
3545
3546         * marshal.c (mono_marshal_get_managed_wrapper): Added
3547         MONO_TYPE_BOOLEAN 
3548
3549 2002-09-11  Martin Baulig  <martin@gnome.org>
3550
3551         * gc.c: Call GC_unregister_disappearing_link() on all links when
3552         finalizing them, this is necessary to aviod a crash in boehm's
3553         finalize handler.
3554
3555 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
3556
3557         * gc.c: handle GetTarget for finalized objects spotted and fixed by
3558         nick@chemlab.org.
3559
3560 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
3561
3562         * icall.c: implemented MonoType::Module.
3563         * reflection.c, reflection.h: mono_module_get_object () from
3564         Tomi Pakarinen <tomi.pakarinen@welho.com>.
3565
3566 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
3567
3568         * icall.c: ignore overridden methods in GetMethods ().
3569         Fix for FieldInfo::SetValue().
3570         * object.c: handle float/double in runtime invoke.
3571
3572 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
3573
3574         * object.c: allow a constructor to be called again on an object.
3575
3576 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
3577
3578         * class.h, class.c: move field layout code to it's own function and
3579         export it. Get an interface id earlier. Move fields in MonoClass
3580         so they are more cache friendly and align the bitfields.
3581         * loader.c: temporary handle get_param_names() for a runtime method.
3582         * reflection.c, reflection.h: more code to handle runtime creation of
3583         types.
3584
3585 2002-09-09  Martin Baulig  <martin@gnome.org>
3586
3587         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
3588         signature with the pinvoke field being set for the actual call.
3589
3590 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
3591
3592         * icall.c: removed some unused icalls. Start of map of glib charsets
3593         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
3594
3595 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
3596
3597         * debug-helpers.c: break infinite loop (found and fixed by
3598         Holger Arnold <harnold@gmx.de>).
3599
3600 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
3601
3602         * icall.c: target may be null in create_delegate.
3603
3604 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
3605
3606         * marshal.c: handle a boolean return type.
3607
3608 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
3609
3610         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
3611
3612 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
3613
3614         * gc.c: fix weakreferences.
3615
3616 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
3617
3618         * icall.c: added icall to get default codepage.
3619
3620 2002-09-03  Dick Porter  <dick@ximian.com>
3621
3622         * threads.h: 
3623         * threads.c: Use MonoThread instead of MonoObject where
3624         apropriate.
3625
3626         Store running thread objects in a hash table, so that we have all
3627         the info to hand when waiting for them to finish
3628         (means we don't need OpenThread() any more, so mingw builds should
3629         be fully functional again.)
3630
3631         * verify.c:
3632         * object.h: Added thread ID to MonoThread
3633
3634 2002-09-03  Martin Baulig  <martin@gnome.org>
3635
3636         * icall.c (System.Reflection.Assembly::get_location): New interncall.
3637
3638 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3639
3640         * icall.c: fixed leak in get_temp_path. Thanks lupus.
3641
3642 2002-09-03  Martin Baulig  <martin@gnome.org>
3643
3644         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
3645         argument to store the end address of the disassembled instruction.
3646
3647         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
3648         here from debug-symfile.h.
3649         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
3650         JIT into this struct.
3651         (MonoSymbolFile): Added `char *image_file' field.
3652         (MonoDebugGetMethodFunc): Removed.
3653         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
3654         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
3655         (mono_debug_find_method): New method.
3656
3657         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
3658         create a full symbol file.
3659         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
3660         and static symbol files.
3661         (mono_debug_find_method): The symbol file keeps an internal method hash,
3662         call this to get a MonoDebugMethodInfo from a MonoMethod.
3663
3664         * debug-symfile.[ch]: Removed.
3665
3666 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
3667
3668         * image.c (do_mono_image_open): Remove linker version check.
3669
3670 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
3671
3672         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
3673         wrappers for instance methods.
3674         
3675 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3676
3677         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
3678
3679 2002-08-28  Dick Porter  <dick@ximian.com>
3680
3681         * Makefile.am: Export HOST_CC for w32 builds
3682
3683 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
3684
3685         * file-io.c process.c: MonoString are null terminated, no
3686         need for mono_string_to_utf16() anymore.
3687
3688 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
3689
3690         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
3691
3692 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
3693
3694         * icall.c, reflection.h: speedup System.MonoType.
3695
3696 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
3697
3698         * reflection.c: allow null as the value of a string argument in
3699         custom attributes constructors.
3700
3701 2002-08-27  Martin Baulig  <martin@gnome.org>
3702
3703         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
3704         `trampoline_address' field.
3705
3706 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
3707
3708         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
3709         check (fixes bug #29486) 
3710
3711 2002-08-27  Martin Baulig  <martin@gnome.org>
3712
3713         * debug-mono-symfile.c: Changed the file format in a way that allows us
3714         open it read-only and to use a specially malloced area for all the
3715         dynamic data.  We can now also generate a symbol file on-the-fly if we're
3716         debugging IL code and there is no MCS generated symbol file for it.
3717
3718 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
3719
3720         * object.c: added a define for a good string and array
3721         creation speedup (not enabled by default because we need to deal with
3722         the synch stuff).
3723
3724 2002-08-26  Martin Baulig  <martin@gnome.org>
3725
3726         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
3727         function to create a dynamic symbol file.  This is used by the
3728         debugger to create a symbol file for IL code on-the-fly.
3729
3730 2002-08-26  Martin Baulig  <martin@gnome.org>
3731
3732         * loader.c (mono_lookup_pinvoke_call): Include the error message
3733         from g_module_error() in the error message.
3734
3735 2002-08-24  Martin Baulig  <martin@gnome.org>
3736
3737         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
3738         function to update the symbol file.  The symbol file is mmap()ed
3739         writable, but private.  This allows us to install the symbol file
3740         together with the assembly.
3741
3742 2002-08-24  Martin Baulig  <martin@gnome.org>
3743
3744         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
3745         but they can read the new symbol file format which mcs is now creating.
3746
3747         * debug-symfile.c (mono_debug_find_source_location): Moved to
3748         debug-mono-symfile.c; this is now operating on the new symbol file.
3749
3750 2002-08-23  Martin Baulig  <martin@gnome.org>
3751
3752         * debug-helpers.c (mono_method_desc_from_method): New function to get
3753         a MonoMethodDesc from a MonoMethod.
3754
3755 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
3756
3757         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
3758         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
3759
3760 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
3761
3762         * string-icalls.[ch]: make helper methods static.
3763
3764 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3765
3766         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
3767         types to it and to SetValueInternal.
3768
3769         * object.c: Moved handle_enum label to its proper place. This was the
3770         f... bug! ;-)
3771
3772         This time i compiled mcs and gtk-sharp and they both work.
3773
3774 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3775
3776         * icall.c: reverted partially my previous patch until 
3777         object.c:set_value handles enums correcly.
3778
3779 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3780
3781         * icall.c:
3782         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
3783         (ves_icall_System_Environment_get_MachineName): removed warning when
3784         compiling under cygwin.
3785
3786 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
3787
3788         * object.c: fixed field_get_value() for reference types.
3789
3790 2002-08-22  Dick Porter  <dick@ximian.com>
3791
3792         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
3793         Don't free a buffer while it's still needed.  Patch from Jonathan
3794         Liger <Jonathan.liger@wanadoo.fr>
3795
3796 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
3797
3798         * icall.c (ves_icall_System_Environment_get_Platform): Add new
3799         internal call.
3800
3801 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
3802
3803         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
3804         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
3805
3806         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
3807         we call unmanaged code which throws exceptions.
3808
3809 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
3810
3811         * appdomain.h: added per-domain entry_assembly.
3812         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
3813         arguments.
3814         * icall.c: Assembly::GetEntryAssembly icall.
3815         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
3816         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
3817
3818 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
3819
3820         * appdomain.h, gc.c: added mono_domain_finalize ().
3821
3822 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3823
3824         * object.c:
3825         (mono_print_unhandled_exception): changed g_warning by g_printerr
3826         because g_log has a 1024 characters limit (yeah, i got a big stack
3827         trace). Don't print exception name, that should be in ToString 
3828         returned string.
3829
3830 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3831
3832         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
3833         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
3834
3835 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3836
3837         * object.c:
3838         (mono_print_unhandled_exception): after previous commit, i realized
3839         that MS calls ToString on the exception. I changed this function to
3840         do that. This way we get stack_trace for free.
3841
3842 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3843
3844         * object.c:
3845         (mono_print_unhandled_exception): invoke Message property instead of
3846         getting 'message' field from Exception. Don't allocate memory for
3847         'trace' and 'message' if not needed.
3848
3849 2002-08-18  Dick Porter  <dick@ximian.com>
3850
3851         * unicode.c: Fix asserts to match Encoder.cs checks
3852
3853 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
3854
3855         * marshal.c: fix unaligned store issue and a few wrong
3856         opcode argument types.
3857
3858 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3859
3860         * icall.c: added GetUninitializedObjectInternal internal call.
3861
3862 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
3863
3864         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
3865         to the right domain.
3866
3867 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
3868
3869         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
3870
3871         * class.c (class_compute_field_layout): set blittable to false for Strings
3872
3873         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
3874
3875 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
3876
3877         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
3878         first chunk of code to create types at runtime. Code to
3879         handle ReflectedType/DeclaringType. Make reflection handles
3880         domain specific.
3881
3882 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
3883
3884         * class.c: set correct name in arrays.
3885
3886 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
3887
3888         * appdomain.c (mono_domain_transfer_object): make it work with
3889         valuetypes. bug fixes.
3890
3891 2002-08-12  Dick Porter  <dick@ximian.com>
3892
3893         * object.h: Rename some parameters to avoid c++ keywords (Patch
3894         from Joseph Wenninger <kde@jowenn.at>)
3895
3896 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
3897
3898         * icall.c: added icall to implement Assembly.GetFile*.
3899
3900 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
3901
3902         * reflection.h, reflection.c: code to embed managed resources.
3903
3904 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
3905
3906         * class.c: move all the type size stuff into
3907         class_compute_field_layout().
3908
3909 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
3910
3911         * class.c: ensure enums have always the correct instance size.
3912         * unicode.c: remove wrong assert.
3913
3914 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
3915
3916         * assembly.c: fix mem corruption issue.
3917         * image.h, image.c: added mono_image_get_resource () to access
3918         managed resources.
3919         * icall.c: implemented Assembly.EntryPoint property and some
3920         Managed Resources related internalcalls.
3921
3922
3923 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
3924
3925         * image.c, image.h: impemented mono_image_get_entry_point ().
3926         * appdomain.c: use mono_image_get_entry_point.
3927
3928 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
3929
3930         * reflection.c: support the object type argument when loading
3931         custom attributes.
3932
3933 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
3934
3935         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
3936         String as return type.
3937
3938 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
3939
3940         * reflection.c: fix encoding of named args for custom attrs to match
3941         the ms implementation. Read them back when instantiating custom
3942         attributes.
3943
3944 2002-08-02  Radek Doulik  <rodo@ximian.com>
3945
3946         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
3947         by Dietmar as quick fix
3948         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
3949         16 as stack size, used on more places as quick fix before Dietmar
3950         will fix it properly
3951
3952 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
3953
3954         * object.h, object.c: added accessors for fields and properties.
3955
3956 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
3957
3958         * class.c, class.h: made mono_class_get_field_from_name ()
3959         loop on parent types.
3960         Added mono_class_get_property_from_name ().
3961
3962 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
3963
3964         * class.c, class.h: move the code to setup the type vtable in its own
3965         function so that it can be reused also for types created at runtime.
3966         Eliminate the "class" identifier from the header file.
3967         * reflection.c: setup the vtable for enums so that we can create
3968         objects for use in SetConstant ().
3969
3970 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
3971
3972         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
3973         instead of the delegate itself as this pointer (bug #28383)
3974
3975 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
3976
3977         * marshal.c (mono_marshal_get_managed_wrapper): added return type
3978         conversions.
3979
3980 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
3981
3982         * loader.c: don't set the pinvoke bit on icalls.
3983
3984 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
3985
3986         * debug-helpers.c (mono_method_full_name): only print a number to
3987         indicate wrapper type (so that the output is more readable in traces).
3988
3989 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
3990
3991         * class.c (mono_class_init): include method override patch from Paolo
3992
3993 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
3994
3995         * icall.c: fixed GetTypeCode().
3996
3997 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
3998
3999         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
4000         use real delegate invoke function to make it work with multicast
4001         delegates (fix bug# 28291).
4002
4003 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
4004
4005         * object.c: load constant strings.
4006
4007 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
4008
4009         * reflection.c: no magic numbers.
4010         * tabledefs.h: security action enum.
4011
4012 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
4013
4014         * assembly.c: fix possible memory corruption.
4015
4016 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
4017
4018         * reflection.h, reflection.c: added support for linking resources.
4019         * verify.c: check we have an updated corlib.
4020
4021 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
4022
4023         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
4024         string arrays.
4025         (mono_marshal_string_array): null terminate unmanaged string arrays.
4026         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
4027
4028 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
4029
4030         * icall.c: Type.GetType () can now return also types from the
4031         calling assembly.
4032
4033 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
4034
4035         * loader.h, loader.c: stack walking support.
4036         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
4037         GetCallingAssembly.
4038
4039 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
4040
4041         * marshal.c: added optimisations for blittable types 
4042
4043         * class.c (mono_array_class_get): do not set blittable attribute on arrays
4044         (mono_class_setup_mono_type): set blittable attribute for single
4045         and double.
4046
4047         * marshal.c (mono_string_utf8_to_builder): impl.
4048         (mono_string_builder_to_utf8): impl.
4049         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
4050
4051 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
4052
4053         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
4054         (mono_marshal_get_managed_wrapper): impl. byref types
4055
4056 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4057
4058         * icall.c:
4059         (search_method): don't display debug message. 
4060
4061 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
4062
4063         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
4064
4065 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
4066
4067         * appdomain.c: set the missing filename when throwing exception.
4068
4069 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
4070
4071         * metadata.c (mono_type_size): code cleanup
4072         (mono_type_stack_size): removed some test code
4073
4074 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
4075
4076         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
4077         mono_get_exception_file_not_found now.
4078
4079         * exception.c (mono_exception_from_name_two_strings): New version
4080         that will call a constructor with two string arguments. 
4081         (mono_get_exception_file_not_found): New helper routine, used to
4082         report file-not-found errors.
4083
4084 2002-07-20  Dick Porter  <dick@ximian.com>
4085
4086         * process.h:
4087         * process.c: Pass file handles to CreateProcess
4088         
4089         * icall.c:
4090         * file-io.h:
4091         * file-io.c: Implemented CreatePipe
4092
4093 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
4094
4095         * metadata.c (mono_get_param_info): set alignment for value types
4096
4097 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4098
4099         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
4100         Constify mono_domain_assembly_open().
4101         * loader.c: handle null namespace in icalls.
4102
4103 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
4104
4105         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
4106         (emit_str_to_ptr_conv): marshal object as structs
4107
4108         * metadata.c (mono_type_to_unmanaged): marshal object as structs
4109
4110         * marshal.c (mono_marshal_get_runtime_invoke): support value types
4111
4112 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
4113
4114         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
4115         (mono_marshal_get_native_wrapper): we an now return value types
4116
4117 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4118
4119         * verify.c: more checks implemented.
4120
4121 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
4122
4123         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
4124         (fix bug #27695)
4125         (mono_marshal_get_native_wrapper): allow byref arguments
4126         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
4127         impl. PtrToStringXXX methods
4128         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
4129         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
4130         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
4131         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
4132         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
4133
4134 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4135
4136         * reflection.c: fix buglet in parsing an assembly name.
4137
4138 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
4139
4140         * marshal.c (emit_ptr_to_str_conv): first impl.
4141
4142 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
4143
4144         * object.c, class.h: cache the vtable in the class as suggested by
4145         vargaz@freemail.hu (Zoltan Varga).
4146
4147 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4148
4149         * class.h, loader.c: added mono_field_from_token().
4150         * verify.c: first cut of type checking code.
4151
4152 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
4153
4154         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
4155
4156 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
4157
4158         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
4159         (fix bug #27782)
4160         (mono_marshal_get_remoting_invoke): impl.
4161         (mono_delegate_begin_invoke): impl.
4162         (mono_mb_emit_save_args): impl.
4163         (mono_delegate_end_invoke): impl.
4164         (mono_marshal_get_delegate_begin_invoke):
4165         (mono_marshal_get_delegate_end_invoke):
4166         (mono_marshal_get_delegate_invoke): generate a special name for
4167         those methods (including the signature) and associate them whith
4168         the delegate class. 
4169
4170 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
4171
4172         * reflection.[ch]: 
4173         (mono_reflection_type_from_name): now it has a MonoImage parameter
4174         which is used as the default image to search the type in. If the image
4175         is NULL or getting the type from it fails, it defaults to corlib.
4176
4177         * icall.c: changed 1 call to mono_reflection_type_from_name to match
4178         new parameter.
4179
4180 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4181
4182         * reflection.c: update the parameter table index.
4183
4184 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
4185
4186         * domain.c: don't include the mark byte in the string hash.
4187
4188 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
4189
4190         * icall.cs: icall for Type.GetTypeCode ().
4191         * verify: a couple of fixes and disabled local initialization checks.
4192
4193 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
4194
4195         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
4196
4197         * debug-helpers.c (mono_method_full_name): print the type of the
4198         runtime wrapper
4199
4200         * metadata.c (mono_signature_hash): a hash function for signatures
4201         (mono_signature_hash): better hash algorithm
4202
4203         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
4204
4205         * debug-helpers.c (mono_method_full_name): this can now generate
4206         method names with signatures
4207
4208         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
4209         method dont have this pointers.
4210
4211 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
4212
4213         * reflection.c: fixup typebuilder tokens.
4214         * image.c: fix buglet.
4215         * marshal.h: remove whitespace.
4216         * metadata.h, metadata.c: reinstate code that was removed.
4217         * verify.c: handle catch directives and fix another couple of bugs.
4218
4219 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
4220
4221         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
4222         (mono_marshal_get_native_wrapper): make it comp. with the old code
4223         (mono_marshal_get_native_wrapper): support boolean
4224         (mono_marshal_get_managed_wrapper): support more types
4225
4226 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
4227
4228         * class.c (class_compute_field_layout): compute class->blittable attribute.
4229
4230 2002-07-09  Dick Porter  <dick@ximian.com>
4231
4232         * threads.c: Make the thread cleaning up cope with threads that
4233         call ExitThread()
4234
4235 2002-07-08  Radek Doulik  <rodo@ximian.com>
4236
4237         * reflection.c (method_encode_code): use non-translated values to
4238         compute finally_start, this fixes exception handling on ppc, yay!
4239
4240         * decimal.h (struct signscale): fix endianess
4241
4242 2002-07-07  Radek Doulik  <rodo@ximian.com>
4243
4244         * reflection.c: swap box_val and not val
4245
4246 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
4247
4248         * reflection.c, reflection.h: handle full assembly info in type name.
4249         Handle Type arguments when loading custom attributes.
4250         * icall.c: updated to use new mono_reflection_type_from_name () method.
4251
4252 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4253
4254         * loader.c:
4255         (method_from_memberref): also print assembly name when method not found.
4256
4257 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4258
4259         * icall.c:
4260         (ves_icall_TypeGetProperties): fixed bug #27473. 
4261
4262 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4263
4264         * reflection.c: display image name and token when cannot find the
4265         .ctor for an attribute.
4266
4267 2002-07-05  Martin Baulig  <martin@gnome.org>
4268
4269         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
4270
4271 2002-07-04  Dick Porter  <dick@ximian.com>
4272
4273         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
4274         compile on mingw.  This will cause mingw builds to not wait for
4275         subthreads to terminate after the main thread does.  I've lodged a
4276         bug with the mingw developers for them to wrap OpenThread().
4277
4278 2002-07-03  Dick Porter  <dick@ximian.com>
4279
4280         * threads.c: Store thread IDs instead of handles, because
4281         GetCurrentThread() returns a pseudohandle and therefore stores
4282         useless values.  mono_thread_cleanup() continues checking the
4283         array of threads until it is empty, to cope with subthreads
4284         spawning new threads after the main thread has finished.
4285
4286         * profiler.h:
4287         * profiler.c:
4288         * profiler-private.h: Pass the thread ID to thread profiler
4289         functions, instead of a handle
4290
4291 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
4292
4293         * verify.c: fixes to make it more usable.
4294         * pedump.c: added --verify code to verify IL code in an assembly.
4295
4296 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4297
4298         * reflection.c: turn errors into warnings to allow compiling corlib.
4299
4300 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
4301
4302         * reflection.c: add special cases to compile corlib.
4303
4304 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
4305
4306         * reflection.c: handle properties with only a set method.
4307
4308 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
4309
4310         * opcodes.h: add enum with opcodes in opval order.
4311
4312 2002-07-01  Dick Porter  <dick@ximian.com>
4313         
4314         * object.h:
4315         * object.c (mono_runtime_run_main): Removed unneeded argument
4316
4317 2002-06-28  Martin Baulig  <martin@gnome.org>
4318
4319         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
4320
4321 2002-06-27  Dick Porter  <dick@ximian.com>
4322
4323         * threads.c: Store the handle in both the parent thread and in the
4324         subthread, to minimise the time between starting a new thread and
4325         storing its ID.
4326
4327 2002-06-26  Dick Porter  <dick@ximian.com>
4328
4329         * appdomain.c (mono_runtime_cleanup): Close the socket library
4330         after all the threads have finished, not before
4331
4332 2002-06-26  Martin Baulig  <martin@gnome.org>
4333
4334         * debug-symfile.c (mono_debug_find_source_location): Added
4335         `guint32 *line_number' argument.  If it's not NULL, store the line number
4336         there and return the file name without the line number.
4337
4338 2002-06-25  Dick Porter  <dick@ximian.com>
4339
4340         * icall.c:
4341         * process.h:
4342         * process.c: Process forking and other support functions
4343
4344 2002-06-25  Dick Porter  <dick@ximian.com>
4345
4346         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
4347         things dont happen when the image is closed.
4348         (mono_image_lookup_resource): Walk the resource section looking
4349         for a particular entry
4350
4351         * cil-coff.h: PE resource section decoding
4352
4353 2002-06-25  Dick Porter  <dick@ximian.com>
4354         
4355         * assembly.h:
4356         * assembly.c: 
4357         (mono_assembly_foreach): Accessor functions to walk the list of
4358         loaded assemblies
4359         (mono_assembly_set_main):
4360         (mono_assembly_get_main): Process methods need to know which
4361         assembly is the "main" one
4362
4363         * object.c (mono_runtime_run_main): Record the main assembly
4364
4365         * debug-helpers.c: Fix typo
4366
4367 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
4368
4369         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
4370         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
4371
4372 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
4373
4374         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
4375
4376 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
4377
4378         * image.c (do_mono_image_open): Initialize reference count,
4379         otherwise we leak the MonoImage.
4380
4381 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
4382
4383         * reflection.c: small tweak to handle self-hosting.
4384
4385 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
4386
4387         * reflection.c: fix type name parse code.
4388
4389 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
4390
4391         * reflection.c: break out of the loop.
4392         * image.c: special case corlib.
4393
4394 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4395
4396         * reflection.c: add all the custom attrs at the end to ensure the
4397         ctors have been properly initialized when the attributes are defined
4398         in the current assembly.
4399
4400 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
4401
4402         * reflection.c: handle correctly multiple-nested types.
4403
4404 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
4405
4406         * row-indexes.h: fix typos.
4407         * reflection.c: adjust for typos and fix method_def_or_ref
4408         encoding in MethodImpl table.
4409
4410 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
4411
4412         * reflection.c: fix entry point patching (thanks Serge!).
4413
4414 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
4415
4416         * verify.c: add check for System.Exception
4417
4418 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
4419
4420         * image.c, class.c: minifix for code just c&p'ed.
4421         * reflection.c: warning fix.
4422         * object.h, loader.h, domain.c: load also StringBuilder.
4423
4424 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
4425
4426         * marshal.h, marshal.c: some support code to handle complex marshaling.
4427
4428 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4429
4430         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
4431         Better signatures with vtable error dump.
4432
4433 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
4434
4435         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
4436
4437 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
4438
4439         * icall.c (ves_icall_Type_GetField): impl.
4440
4441 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4442
4443         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
4444         to retrieve a marshal description blob for a field or param.
4445
4446 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
4447
4448         * reflection.h, reflection.c: change order of nested type emission
4449         to avoid table corruption. The NestedTypes table is sorted.
4450         * icall.c: change order of GetConstructor results to workaround mcs bug.
4451
4452 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
4453
4454         * reflection.h, reflection.c: handle field and param marshal
4455         information.
4456
4457 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4458
4459         * icall.c, marshal.c marshal.h: more Marshal class implementation.
4460
4461 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4462
4463         * reflection.c: fix call convention.
4464
4465 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4466
4467         * reflection.h, reflection.c: mono_image_get_memberref_token()
4468         takes a type instead of a class, now. Added
4469         mono_image_get_array_token() to create tokens for the special
4470         multi-dim array methods.
4471
4472 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
4473
4474         * assembly.c: handle modules (no assembly table). Split
4475         loading references in its own function.
4476         * class.c: handle moduleref resolution scope.
4477         * image.c, image.h: cache module name in image.
4478
4479 2002-06-07  Martin Baulig  <martin@gnome.org>
4480
4481         * reflection.c (mono_image_get_type_info): Only add a class layout entry
4482         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
4483
4484 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
4485
4486         * icall.c: more signature fixes that used uint instead of int.
4487
4488 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4489
4490         * reflection.c: fixed signature of field refs.
4491
4492 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
4493
4494         * class.c, reflection.c: handle typerefs of nested types
4495         (both on read and when writing files).
4496
4497 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
4498
4499         * icall.c: fix method signatures that tried to workaround the previous
4500         typo, d'oh!
4501
4502 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
4503
4504         * debug-helpers.c: fix typo.
4505
4506 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
4507
4508         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
4509         rewrote the PE/COFF writing code (our programs are understood by the
4510         ms runtime, now).
4511
4512 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
4513
4514         * gc.c, gc.h, icall.c: weakreference support.
4515
4516 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
4517
4518         * Makefile.am, mono-config.c: use $(sysconfdir).
4519
4520 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
4521
4522         * icall.c: changed default precision of Double.ToString() to 15.
4523         Fixed memory leak. Unified with Single.ToString.
4524
4525 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
4526
4527         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
4528
4529 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
4530
4531         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
4532         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
4533         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
4534         and myself.
4535
4536 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
4537
4538         * debug-symfile.c, sysmath.c: yet more compilation fixes.
4539
4540 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
4541
4542         * reflection.c, socket-io.c: more compilation fixes.
4543
4544 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
4545
4546         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
4547         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
4548         unicode.c: warning and compiler compatibility fixes.
4549
4550 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
4551
4552         * class.h, metadata.c: fixed warnings/compilation errors.
4553
4554 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
4555
4556         * Makefile.am, mono-config.c, mono-config.h: configuration file
4557         support routines.
4558         * loader.c, loader.h: make Dll mapping configurable at runtime in the
4559         config file. Export methods to insert and lookup mappings.
4560
4561 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
4562
4563         * reflection.c: handle types and boxed objects in custom attr
4564         constructors.
4565
4566 2002-05-30  Martin Baulig  <martin@gnome.org>
4567
4568         * debug-symfile.c
4569         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
4570
4571 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
4572
4573         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
4574         to lookup the implmap row for a P/Invoke method.
4575         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
4576         P/Invoke method from the runtime on an as needed basis.
4577
4578 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
4579
4580         * metadata.c (mono_metadata_parse_signature): impl.
4581
4582 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4583
4584         * class.c: handle .pack directive.
4585
4586 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
4587
4588         * object.c: initialize static fields with RVA data.
4589
4590 2002-05-25  Martin Baulig  <martin@gnome.org>
4591
4592         * debug-symfile.c
4593         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
4594
4595 2002-05-24  Martin Baulig  <martin@gnome.org>
4596
4597         * debug-symfile.c
4598         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
4599         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
4600         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
4601
4602 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
4603
4604         * object.c: special case string ctros in invoke.
4605         * gc.c: silly whitespace changes.
4606
4607 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
4608
4609         * threadpool.[ch]: impl. a threadpool that can
4610         be used by mint and mono.
4611
4612 2002-05-22  Martin Baulig  <martin@gnome.org>
4613
4614         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
4615         The first argument is now a `MonoReflectionModuleBuilder *', the return
4616         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
4617         `methods' field to get the method builder.  The `token' argument is the
4618         unfixed token.
4619
4620         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
4621         invalid characters instead of g_assert_not_reached()ing.  This seems
4622         to be the behaviour of mscorlib.
4623
4624 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
4625
4626         * object.c (mono_runtime_invoke_array): applied patch from Rachel
4627         Hestilow to fix bug #25104
4628
4629 2002-05-21  Martin Baulig  <martin@gnome.org>
4630
4631         * debug-symfile.c (mono_debug_find_source_location): New function.
4632         Looks up an IL offset in the line number table and returns the source
4633         location as a string.
4634
4635 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4636
4637         * icall.c:
4638         (mono_double_ToStringImpl): changed %f by %g until we have something
4639         better.
4640
4641 2002-05-21  Nick Drochak  <ndrochak@gol.com>
4642
4643         * icall.c : Use different name for Math.Pow's icall.  Needed to check
4644         parameters first in C#.
4645
4646 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
4647
4648         * icall.c, reflection.h: added icall to get info about an event.
4649
4650 2002-05-20  Radek Doulik  <rodo@ximian.com>
4651
4652         * object.c (mono_value_box): don't use memcpy for boxing on BIG
4653         endian
4654         (mono_value_box): don't use memcpy for small sizes on
4655         architectures with unaligned access
4656
4657 2002-05-20  Martin Baulig  <martin@gnome.org>
4658
4659         * reflection.c (mono_reflection_setup_internal_class): Don't crash
4660         if `tb->parent == NULL'.
4661         (mono_reflection_create_internal_class): New function.  This is
4662         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
4663         for enum types.
4664
4665         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
4666         New interncall.
4667
4668 2002-05-19  Martin Baulig  <martin@gnome.org>
4669
4670         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
4671         argument to get the length, don't default to the array length.
4672
4673 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
4674
4675         * assembly.c (mono_assembly_setrootdir): New function used to
4676         override the MONO_ASSEMBLIES directory.
4677
4678 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
4679
4680         * icall.c: ValueType_GetHashCode() initialize local var.
4681
4682 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
4683
4684         * reflection.c: sort custom attributes table.
4685
4686 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
4687
4688         * reflection.c: support named args in custom attributes (write support).
4689
4690 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
4691
4692         * reflection.c: fix finally position calculation.
4693
4694 2002-05-15  Radek Doulik  <rodo@ximian.com>
4695
4696         * reflection.c: fixed endianess at many places
4697
4698         * icall.c (ves_icall_InitializeArray): comment out debug msg
4699
4700 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
4701
4702         * object.c (mono_unhandled_exception): new function to handle
4703         unhandled exceptions.
4704         (mono_unhandled_exception): call the UnhandledException event.
4705         (mono_runtime_delegate_invoke): impl.
4706
4707 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
4708
4709         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
4710         returns the RVA, not the direct pointer to the data. Handle the case
4711         when the class size is fixed.
4712
4713 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
4714
4715         * reflection.c: fix some endianess issues.
4716
4717 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
4718
4719         * object.c (mono_runtime_invoke): is now able to catch exceptions.
4720
4721         * threads.c (mono_thread_init): added a callback which is invoked
4722         at thread start.
4723
4724 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
4725         
4726         * icall.c: make GetHashCode return non-negative values.
4727
4728 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
4729
4730         * object.c, icall.c, gc.c: revert to address-based hashcode.
4731
4732 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
4733
4734         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
4735
4736 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
4737
4738         * icall.c, class.c: special case <Module>.
4739
4740 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
4741
4742         * icall.c: fix bug in GetNow().
4743
4744 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
4745
4746         * object.c (mono_runtime_class_init): make sure that we call all
4747         static class constructors.
4748
4749 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
4750
4751         * reflection.c: sort methodsemantics table.
4752
4753 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
4754
4755         * reflection.h, reflection.c: honour init locals setting.
4756
4757 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
4758
4759         * icall.c: copied Double ToStringImpl for Single ToStringImpl
4760
4761 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
4762
4763         * reflection.c: support ContructorBuilders in attribute blob creation.
4764
4765 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
4766
4767         * reflection.c: some changes to build a binary that can be run
4768         directly in windows.
4769
4770 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
4771
4772         * loader.c: print a big message when an icall can't be found.
4773
4774 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4775
4776         * string-icalls.c: fix bug 24248.
4777
4778 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
4779
4780         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
4781         icall.c, reflection.h: separate assembly loading by pathname and by
4782         assembly name. Use the MONO_PATH env var to search for assemblies.
4783
4784 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
4785
4786         * assembly.c, image.h: add some support for assemblies
4787         with multiple modules.
4788         * class.c, class.h: export mono_class_from_typeref().
4789         * loader.c: remove duplicated code and use mono_class_from_typeref(),
4790         instead.
4791
4792 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
4793
4794         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
4795         documentation says (the ECMA one is correct).
4796
4797 2002-05-02  Dick Porter  <dick@ximian.com>
4798
4799         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
4800         Don't name the synchronisation mutex.
4801
4802 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
4803
4804         * rand.c
4805         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
4806         Make the prototypes match.
4807         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
4808         Same.
4809
4810         * icall.c
4811         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
4812         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
4813         all systems have tm.tm_zone, so use strftime() with %Z to print
4814         the timezone abreviation into a temp string.
4815
4816         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
4817         rather than mono_array_addr() on a MonoString on Big Endian
4818         machines.
4819
4820 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
4821
4822         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
4823         fix bug 24041
4824
4825 2002-04-30  Dick Porter  <dick@ximian.com>
4826
4827         * socket-io.c: Cope with SOCKET being an integer rather than a
4828         pointer now.
4829
4830         * threads.c: Added Thread_free_internal, to deal with thread
4831         handle cleanup.  Moved calls to handle_store() and handle_remove()
4832         to start_wrapper(), so each can only be called once.  Allocate
4833         synchronisation blocks with GC_malloc(), and use GC finalisation
4834         to close the handles.
4835
4836         * icall.c: added System.Threading.Thread::Thread_free_internal
4837
4838 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4839
4840         * icall.c: support Environment.Exit, CommandLineArgs().
4841
4842 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
4843
4844         * object.c, object.h: added mono_runtime_run_main () and
4845         mono_runtime_get_main_args () for use in System.Environment.
4846
4847 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
4848
4849         * gc.c: fix thinko, enable actual finalization since the jit is now
4850         fixed.
4851
4852 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
4853
4854         * gc.c, object.c: take into account that an object may be offset wrt the address
4855         returned by GC_malloc().
4856
4857 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
4858
4859         * image.c: handle files without entries in the assembly table (modules).
4860
4861 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
4862
4863         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
4864         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
4865         allowed to be null when it's System.Object class setup.
4866
4867 2002-04-27  Martin Baulig  <martin@gnome.org>
4868
4869         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
4870         if `tb->parent == NULL' rather than crashing.
4871
4872 2002-04-28  Nick Drochak  <ndrochak@gol.com>
4873
4874         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
4875         calling acos() where asin() should have been called.
4876
4877 2002-04-26  Martin Baulig  <martin@gnome.org>
4878
4879         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
4880         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
4881         there's a subdirectory called `System', but we don't want to read that
4882         subdirectory as an assembly.
4883
4884 2002-04-25  Martin Baulig  <martin@gnome.org>
4885
4886         * debug-symfile.c: Reflect latest MonoString changes.
4887
4888 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
4889
4890         * rand.c, rand.h: instance method icalls need to have an explicit
4891         this pointer as first argument in the C implementation.
4892
4893 2002-04-25  Nick Drochak <ndrochak@gol.com>
4894
4895         * icall.c: Fix typo in map for GetNonZeroBytes
4896
4897 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
4898
4899         * string-icalls.c : String does now passes unit tests without any 
4900         errors, the following changes has been made:
4901         
4902         Implemented replace methods.
4903         Renaming of methods to (try) follow the standard.
4904         Fixed compare ordinal
4905         Made all memory allocated directly to function instead of via icall function.
4906         Small performance fix in is_in_array function
4907                         
4908  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
4909
4910         c (mono_string_Internal_ctor_charp_int_int):
4911         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
4912         sindex < 0, throw ArgumentOutOfRangeException instead of
4913         ArgumentNullException.
4914
4915         Added new check for length == 0, however
4916         I need to make it return String.Empty from the C code.
4917         
4918         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
4919         that calculate the length for us here.
4920         
4921         (mono_string_Internal_ctor_sbytep_int_int): Replaced
4922         mono_string_new_utf16 with mono_string_new, since value is utf8.
4923
4924 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
4925
4926         * object.c: register the object for finalization if needed.
4927         Allocate one more char in the string for the terminating 0 char.
4928
4929 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
4930
4931         * class.c, class.h, image.c: check if a type implemenst a destructor.
4932         Use the proper key for array class lookups.
4933         * icall.c: register the icalls in the System.GC class.
4934         * gc.c, gc.h: GC-related functions and icalls.
4935
4936 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4937
4938         * icall.c:
4939         * socket-io.c:
4940         * unicode.c: free some strings gotten from mono_string_to_utf8 and
4941         changed a couple of free () by g_free ().
4942
4943         * decimal.c: one-liner in the comments for decimal2string ().
4944
4945 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
4946
4947         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
4948
4949 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
4950
4951         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
4952         * object.c (mono_runtime_invoke_array) : handle null in params
4953
4954 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
4955
4956         * string-icalls.c: fixed bug in split (one off bug)
4957
4958 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
4959
4960         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
4961         * icalls.c: added String::Equals as internal method
4962
4963 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
4964
4965         * threads.c: fixed bug in the double interlocked functions
4966
4967 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
4968
4969         * threads.c: implemented all of the new interlocked icalls.
4970         * string-icalls.c: fix a bug in insert.
4971         * icalls.c: added the icalls for interlocked, removed old string functions.
4972         
4973 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
4974
4975         * loader.c: fix off-by-one error when reading argument names.
4976
4977 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
4978
4979         * profiler.c: win32 counter implementation (untested).
4980         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
4981         (the latter needs testing and more complete impl. from win32 folks).
4982
4983 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
4984
4985         * object.c: mono_array_new_full workaround mono_array_class_get
4986         problem.
4987
4988 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
4989
4990         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
4991         * object.h (mono_string_chars): Changed casting type.
4992
4993 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
4994
4995         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
4996                            method signatures to use gunichar2 instead of gint16.
4997
4998 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
4999
5000         * object.h, object.c: domain-specific versions of mono_object_new and
5001         mono_array_new.
5002
5003 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
5004
5005         * object.c: changed String layout
5006
5007         * string-icalls.c (mono_string_Internal_ctor_chara): added
5008         internal string constructors.
5009
5010 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
5011
5012         * threads.c: pass 'this' to the thread start routine.
5013
5014 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5015
5016         * string-icalls.c: fix IndexOf and LastIndexOf. Now
5017         InternalCompareStr don't call twice mono_string_cmp_char for the last
5018         character. Improved performance in mono_string_cmp_char.
5019
5020 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
5021
5022         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
5023         code into its own library: libmonoruntime.
5024
5025 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
5026
5027         * object.h, object.c: changed array format so that szarrays do not
5028         require a bounds structure.
5029         * icall.c, appdomain.c: support for new szarray format.
5030
5031 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
5032
5033         * metadata.c: compare also the retuns type when comparing signatures:
5034         we didn't do this as an optimization since really overloaded methods
5035         must differ also in the arguments, but this doesn't work with
5036         low-level IL code (or when using explicit conversion operators: see
5037         bug#23498 for an example).
5038
5039 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
5040
5041         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
5042
5043 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
5044
5045         * icall.c: make MonoType::GetElementType its own icall.
5046
5047 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
5048
5049         * icall.c: remove MonoMethod_get_Name().
5050         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
5051         object.
5052
5053 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5054
5055         * string-icalls.c: optimized a few methods.
5056
5057 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
5058
5059         * icall.c: added all new string internal calls
5060         * string-icalls.c: added, new string internal call implementation.
5061         * object.c: added mono_string_new_size for allocating a string a size
5062
5063 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
5064
5065         * object.c (mono_object_isinst): use the same code as in the
5066         optimized x86 version.
5067
5068 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
5069
5070         * profiler.c: TSC-based timer code (faster and more accurate).
5071         Not hooked up in configure, yet (set USE_X86TSC to 1).
5072
5073 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
5074
5075         * profiler.c, profiler.h: track time spent compiling methods.
5076         * threads.c: track thread creation/destruction.
5077
5078 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
5079
5080         * profiler.c, profiler.h, profiler-private.h: profiling interface
5081         and sample implementation. Moved here so that it can be used also by
5082         the jit.
5083
5084 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
5085
5086         * reflection.c, reflection.h: keep types and other handles separate in
5087         the hash tables for referred tokens. Add guid for modules.
5088
5089 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
5090
5091         * assembly.c: fix bugs found with valgrind.
5092         * metadata.h, metadata.c: added mono_metadata_guid_heap().
5093
5094 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
5095
5096         * threads: added icall support for getting current domain for
5097                    the thread.
5098  
5099 2002-04-13  Martin Baulig  <martin@gnome.org>
5100
5101         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
5102         (MonoDebugVarInfo): Added `index' field for register based addresses.
5103         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
5104         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
5105         `MonoDebugVarInfo *params' and `guint32 this_offset' with
5106         `MonoDebugVarInfo *this_var'.
5107
5108         * debug-symfile.c (relocate_variable): New static function to write
5109         a location description for a local variable or method parameter.
5110
5111 2002-04-12  Martin Baulig  <martin@gnome.org>
5112
5113         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
5114         stack offset and begin/end scope address of a local variable.
5115         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
5116         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
5117         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
5118
5119         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
5120         Added new relocation types for start/end scope of a local variable.
5121
5122 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
5123
5124         * object.h: add mono_object_domain() macro.
5125         * reflection.c: handle typespecs.
5126         * icall.c: MonoMethod::get_Name() implementation.
5127
5128 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5129
5130         * icall.c: String::GetHashCode() icall implementation.
5131
5132 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5133
5134         * icall.c: String::IndexOfAny icall.
5135         * object.c, object.h: make array->max_length more useful.
5136         Intrduced mono_object_class() and mono_string_length() macros.
5137
5138 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5139
5140         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
5141         instead of g_unichar_isdigit.
5142
5143 2002-04-11  Nick Drochak  <ndrochak@gol.com>
5144
5145         * icall.c: Implement a simple Double.ToString().
5146
5147 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
5148
5149         * appdomain.h: only io-layer.h is supposed to be included.
5150         * icall.c: explicitly import environ. Fix warning.
5151
5152 2002-04-10  Nick Drochak  <ndrochak@gol.com>
5153
5154         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
5155                 return true even if it's not Daylight Savings time.
5156                 Only return false for the case where the function isn't
5157                 implemented for a plaform (read Windows).
5158
5159 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
5160
5161         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
5162         data with a mutex.
5163
5164 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
5165
5166         * mempool.c (mono_mempool_alloc): only use g_malloc when
5167         absolutely necessary.
5168
5169 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
5170
5171         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
5172
5173         * class.c (mono_class_vtable): use domain mempool to allocate vtable
5174         (mono_class_proxy_vtable): use domain mempool
5175
5176 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
5177
5178         * appdomain.h, appdomain.c: split initialization that requires the
5179         execution engine support into mono_runtime_init().
5180
5181 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
5182
5183         * class.c (mono_class_init): don't include vtable inside MonoClass
5184         to save some memory, gather some statistics.
5185         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
5186
5187 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
5188
5189         * icall.c: internalcall implementation for ValueType.Equals().
5190
5191 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
5192
5193         * object.c (mono_message_init): moved 
5194         (mono_runtime_exec_main): new arch. independent impl.
5195         (mono_runtime_invoke_array): new method - like
5196         mono_runtime_invoke, but you can pass an array of objects.
5197         (mono_remoting_invoke): new arch. independent impl.
5198         (mono_message_invoke): new arch. independent impl.
5199         (mono_runtime_class_init): new arch. independent impl.
5200         (mono_runtime_object_init): new arch. independent impl.
5201
5202 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
5203
5204         * metadata.c, object.c, reflection.c: documented the exported
5205         functions.
5206
5207 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
5208
5209         * icall.c: simpler code to pass the assembly builder data to corlib.
5210         Implement GetNestedTypes() internalcall.
5211
5212 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
5213
5214         * class.c: warn if a type can't be loaded.
5215
5216 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
5217
5218         * image.h: typedef MonoImageOpenStatus
5219         * types.h: removed unused file
5220         
5221 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
5222
5223         * icall.c: Enum_ToObject accepts enum value arguments.
5224
5225 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
5226
5227         * class.c: move initialization of properties, events and nested
5228         classes, so that they happen for interfaces, too.
5229
5230 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
5231
5232         * icall.c: cleanup some ugly casts in Array_SetValue*.
5233
5234 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
5235
5236         * icall.c: the values array fro enums is of the correct type, now.
5237         Implement (correctly) getFullName instead of assQualifiedName for
5238         MonoType.
5239         * reflection.h, reflection.c: added mono_type_get_name ().
5240
5241 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
5242
5243         * assembly.c, image.h: for each MonoImage, record from wich assembly
5244         it was loaded.
5245         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
5246         Make Type.Assembly work.
5247
5248 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
5249
5250         * debug-symfile.h: use char* instead of gpointer to avoid
5251         unnecessary casts.
5252
5253         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
5254
5255         * icall.c (ves_icall_InternalExecute): impl. FielSetter
5256         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
5257
5258 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
5259
5260         * icall.c (mono_message_init): impl. (code cleanup)
5261         (ves_icall_InternalExecute): impl. FieldGetter
5262
5263         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
5264         defined we call all (non-static)methods through the vtable. 
5265
5266 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
5267
5268         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
5269         finalizer even though the memory is still referenced (and the chunk of
5270         memory is not freed).
5271
5272 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
5273
5274         * assembly.c: fix brokeness.
5275
5276 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
5277
5278         * class.c: kill some warnings. Check explicit interface method
5279         implementation also without considering the namespace.
5280         Load also literal strings in static class data.
5281
5282 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
5283
5284         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
5285         (default_assembly_name_resolver): Make the resolver take the
5286         "base" directory where the assembly was originally defined, so we
5287         can load DLLs that are in the same directory as the assembly that
5288         is being referenced.
5289
5290 2002-03-28  Dick Porter  <dick@ximian.com>
5291
5292         * file-io.h: 
5293         * file-io.c:
5294         * socket-io.c: 
5295         * unicode.h: 
5296         * unicode.c: Warning cleanups
5297
5298 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
5299
5300         * object.h, reflection.h: use the correct type instead of MonoObject.
5301
5302 2002-03-28  Martin Baulig  <martin@gnome.org>
5303
5304         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
5305         (mono_debug_update_symbol_file): Initialize classes if necessary.
5306
5307 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
5308
5309         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
5310         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
5311
5312 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
5313
5314         * assembly.h: fix function prototype.
5315         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
5316         * mono-endian.h: use const cast.
5317
5318 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
5319
5320         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
5321
5322 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
5323
5324         * loader.c: don't assert when a typeref can't be loaded, give
5325         a chance to the runtime to trow an exception instead.
5326         * loader.h: fix warning.
5327
5328 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
5329
5330         * class.c (mono_class_proxy_vtable): added proxy support
5331
5332 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
5333
5334         * icall.c: removed last of PAL calls, added System.Environment
5335         * file-io.h, file-io.c: MonoIO implementation
5336         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
5337
5338 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
5339
5340         * appdomain.c: do not use the byte marker in ldstr table lookup.
5341         * debug-helpers.c: allow two ':' to separate class and method name.
5342         * object.c: allocate arrays bounds with the GC, too.
5343         * verify: add a few more checks.
5344
5345 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
5346
5347         * reflection.c: output also literal strings. Allocate parameter data
5348         with GC_malloc() (thanks, Martin, for catching this!).
5349
5350 2002-03-26  Martin Baulig  <martin@gnome.org>
5351
5352         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
5353         include the `this' offset in the `param_offsets'.
5354
5355 2002-03-25  Martin Baulig  <martin@gnome.org>
5356
5357         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
5358         mono_debug_get_class() function to get the classes. Added new
5359         relocation types for arrays and strings.
5360         (mono_debug_get_class): New static function to search in all
5361         referenced assemblies for a metadata token.
5362
5363         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
5364
5365 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
5366
5367         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
5368         hold gc-allocated objects. Make the string heap a stream like the
5369         others. Removed duplicated code when writing stream info.
5370         Added asserts to catch possible buffer overflows. Set the sorted map
5371         for tables that need sorting. Added some documentation.
5372
5373 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
5374
5375         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
5376         for interned strings and vtables.
5377
5378 2002-03-24  Martin Baulig  <martin@gnome.org>
5379
5380         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
5381         it in the array since it was created with g_slist_prepend().
5382
5383 2002-03-24  Martin Baulig  <martin@gnome.org>
5384
5385         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
5386         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
5387         (mono_debug_method_from_token): Renamed to
5388         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
5389         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
5390
5391         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
5392         relocation types.
5393
5394         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
5395
5396 2002-03-24  Martin Baulig  <martin@gnome.org>
5397
5398         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
5399         (mono_debug_method_from_token): New func.
5400
5401         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
5402         New interncall, calls mono_debug_local_type_from_signature().
5403         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
5404         calls mono_debug_method_from_token().
5405
5406 2002-03-23  Martin Baulig  <martin@gnome.org>
5407
5408         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
5409         specifies the number of bytes to be converted, not the array size.
5410         Return the number of chars, not the number of bytes.
5411         (ves_icall_iconv_get_chars): The `byteCount' argument
5412         specifies the number of bytes to be converted, not the array size.
5413
5414 2002-03-23  Martin Baulig  <martin@gnome.org>
5415
5416         * reflection.h (MonoReflectionSigHelper): New type.
5417
5418         * reflection.c (mono_reflection_sighelper_get_signature_local),
5419         (mono_reflection_sighelper_get_signature_local): New functions.
5420
5421         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
5422         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
5423         interncalls.
5424
5425 2002-03-23  Martin Baulig  <martin@gnome.org>
5426
5427         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
5428         is_writeable is set.
5429         (mono_raw_buffer_update): New function to write the modified map
5430         back to disk.
5431
5432         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
5433
5434         * debug-symfile.c (mono_debug_update_symbol_file): Call
5435         mono_raw_buffer_update() when done writing.
5436
5437 2002-03-23  Martin Baulig  <martin@gnome.org>
5438
5439         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
5440
5441         * debug-symfile.c: Added support for arguments and local variables.
5442
5443 2002-03-23  Dick Porter  <dick@ximian.com>
5444
5445         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
5446         protected by ifdefs, hence breaking the w32 build.
5447
5448 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
5449
5450         * object.c: implement is_interned() the right way.
5451
5452 2002-03-21  Martin Baulig  <martin@gnome.org>
5453
5454         * debug-symfile.[ch]: New files to handle debugging information
5455         files. There's also support to dynamically update these symbol
5456         files to include machine dependent information.
5457
5458 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
5459
5460         * threads.c (mono_thread_create): new function to create thread
5461         from C
5462
5463 2002-03-20  Martin Baulig  <martin@gnome.org>
5464
5465         * icall.c (ves_icall_InternalInvoke): Create a new object if the
5466         method is a constructor.
5467         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
5468         points to ves_icall_InternalInvoke().
5469
5470 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
5471
5472         * file-io.c: Flush shouldn't throw exceptions.
5473
5474 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
5475
5476         * file-io.c: FileStream flush support; FileSetLength now
5477         restores file pointer.
5478
5479 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
5480
5481         * class.c: set image for pointer classes.
5482
5483 2002/03/19  Nick Drochak <ndrochak@gol.com>
5484
5485         * sysmath.c: Forgot one.
5486
5487 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
5488
5489         * sysmath.c: Avoid redefining existing names.
5490
5491 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
5492
5493         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
5494         handled by runtime as icall rather than dllimport from libm.so
5495         * file-io.c, file-io.h: fixed handle argument type.
5496
5497 2002-03-18  Dick Porter  <dick@ximian.com>
5498
5499         * reflection.c (mono_image_get_type_info): rename interface to
5500         iface, because of "#define interface struct" on windows.
5501
5502 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
5503
5504         * class.c, class.h: rename and export mono_ptr_class_get().
5505         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
5506         * reflection.c, reflection.h, icall.c: better/saner type name
5507         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
5508         method signatures.
5509
5510 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
5511
5512         * class.c (mono_class_init): removed hardcoded GHC_SLOT
5513
5514         * icall.c (ves_icall_InternalInvoke): impl.
5515
5516 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
5517
5518         * reflection.c: output the interface map table, too.
5519
5520 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
5521
5522         * class.c (class_compute_field_layout): separate computation of 
5523         static field layout
5524
5525 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
5526
5527         * icall.c: added System.Buffer support.
5528         * file-io.c: moved file icalls from PAL to FileStream.
5529
5530 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
5531
5532         * icall.c (ves_icall_System_Object_GetHashCode): impl.
5533
5534 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
5535
5536         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
5537
5538 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
5539
5540         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
5541
5542 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
5543
5544         * debug-helpers.{c,h}: moved here from monograph some useful functions
5545         to locate a method by name/signature in a class or image. Included
5546         also a small and flexible IL disassembler.
5547
5548 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
5549
5550         * reflection.c: fixup tokens in methods with small header size, too.
5551
5552 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
5553
5554         * object.c (mono_string_to_utf8): remove assert(!error), instead
5555         print a warning. 
5556
5557 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
5558
5559         * icall.c: update to the new mono_Array_class_get interface.
5560
5561 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
5562
5563         * appdomain.c, object.c: Boehm-GC enable.
5564         * icall.c: make get_data_chunk() support split data requests.
5565         Ensure a class is initialized in more cases. Return only the first
5566         property found in GetProperties() or the compiler gets confused. 
5567         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
5568         * reflection.h, reflection.c: add fixup mechanism for field and method
5569         tokens. Initialize assembly->typeref in a single place. Output
5570         properties after events. Support custom attributes for events, too.
5571         Typo fix for paramter custom attrs.
5572
5573 2002-03-07  Martin Baulig  <martin@gnome.org>
5574
5575         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
5576
5577 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
5578
5579         * class.c (mono_array_class_get): fix. for multi. dim. arrays
5580
5581 2002-03-06  Martin Baulig  <martin@gnome.org>
5582
5583         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
5584         non-zero lower bounds. See testcases #F10-#F13.
5585
5586 2002-03-05  Martin Baulig  <martin@gnome.org>
5587
5588         * exception.c (mono_get_exception_argument_out_of_range): New exception.
5589
5590         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
5591         ves_icall_System_Array_GetValue(), only calculate the absolute array position
5592         here.
5593         (ves_icall_System_Array_SetValue): Likewise.
5594         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
5595         as argument and does the actual work. This function is used when copying a
5596         multi-dimensional array.
5597         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
5598         now do all the widening conversions of value types.
5599         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
5600
5601 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
5602
5603         * class.c: remove some magic numbers and use the smbolic names,
5604         instead. Added init_events() to load event info at class init time.
5605         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
5606         and mono_metadata_methods_from_event().
5607         * reflection.h, reflection.c: added support for writing out the evnets
5608         related information.
5609
5610 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
5611
5612         * reflection.h, icall.c: use a different method (GetInterfaces)
5613         to gather interface info and add isbyref, isprimitive and
5614         ispointer to the ves_icall_get_type_info() return value.
5615
5616 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
5617
5618         * class.h: stared adding support for events.
5619         * icall.c: split find_members implementation. Added debug icall to get
5620         the address of an object.
5621         * reflection.c: handle TypeBuilders in mono_type_get_object().
5622
5623 2002-03-01  Martin Baulig  <martin@gnome.org>
5624
5625         * icall.c (ves_icall_System_Array_GetLength): This must throw an
5626         ArgumentOutOfRangeException(), not an ArgumentException().
5627         (ves_icall_System_Array_GetLowerBound): Likewise.
5628         (ves_icall_System_Array_GetValue): Improved argument checking.
5629         (ves_icall_System_Array_SetValue): Improved argument checking.
5630
5631 2002-03-01  Martin Baulig  <martin@gnome.org>
5632
5633         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
5634         called with invalid arguments rather than just dying with g_assert().
5635         (ves_icall_System_Array_SetValue): Likewise.
5636         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
5637         raise a NotImplementedException instead.
5638         (ves_icall_System_Array_GetLength): Added argument checking.
5639         (ves_icall_System_Array_GetLowerBound): Added argument checking.
5640
5641 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
5642
5643         * object.h (mono_assert): new macros mono_assert and
5644         mono_assert_not_reached
5645
5646 2002-02-28  Martin Baulig  <martin@gnome.org>
5647
5648         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
5649         and "System::String::IsInterned" to "System::String::_IsInterned".
5650
5651 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
5652
5653         * icall.c: remove hacks for typebuilder. Added icall to create a
5654         modified type from a tybebuilder.
5655         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
5656         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
5657         to create a backing MonoClass for a TypeBuilder.
5658
5659 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
5660
5661         * class.c, class.h: more refactoring of class init.
5662         Export mono_class_setup_mono_type() and mono_class_setup_parent().
5663
5664 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
5665
5666         * marshal.c, marshal.h: start of marshaling interface.
5667
5668 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
5669
5670         * icall.c: fix order in assembly qualified name icall.
5671
5672 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
5673
5674         * class.c: do not free str, since we store it in the hash table.
5675         * reflection.h: add label field to MonoILExceptionInfo.
5676         * reflection.c: handle references to more than one assembly. Handle
5677         case when there isn't a module created in the assembly.
5678
5679 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
5680
5681         * class.c: Fix typo. Start refactoring of class init code.
5682
5683 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
5684
5685         * appdomain.c: exit with 1 on error.
5686         * class.c: we already have the name in MonoClassField.
5687         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
5688         MonoStreamHeader instead of an offset of image->raw_metadata.
5689
5690 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
5691
5692         * appdomain.c (mono_init): Be even more descriptive about the error.
5693
5694 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
5695
5696         * appdomain.c: give the user an informative message when corlib can't
5697         be loaded.
5698
5699 2002-02-26  Martin Baulig  <martin@gnome.org>
5700
5701         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
5702         New icall to get the time zone data.
5703
5704 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
5705
5706         * reflection.c: set virtual and raw size of section correctly.
5707         * threads.c: transfer domain information to newly created threads.
5708
5709 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
5710
5711         * class.c: when instancing a class in a domain, load the default
5712         vaules for static fields from the constant table. Fix System.Enum to
5713         not be an enum.
5714         * icall.c: implement Object::GetType() internalcall. Implemented
5715         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
5716         Fixed checking of binding flags in find_members().
5717         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
5718         * reflection.c: handle enumerations when writing to the constant
5719         table. Use a different object cache for types.
5720
5721
5722 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
5723
5724         * object.c (mono_object_isinst): fix for arrays
5725
5726         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
5727
5728 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
5729
5730         * object.c: don't use mprotect ()  and fix intern pool hash table
5731         lookup for big endian systems.
5732
5733 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
5734
5735         * icall.c: change type_is_subtype_of () signature.
5736
5737 2002-02-21  Mark Crichton  <crichton@gimp.org>
5738
5739         * rand.c, rand.h: Added random number generator for
5740         System.Security.Cryptography classes.
5741
5742         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
5743
5744         * icall.c: Added System.Security.Cryptography calls.
5745
5746 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
5747
5748         * class.c, icall.c, metadata.c: better support for pointer types.
5749         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
5750         * reflection.c: Add support for getting custom attrs for properties
5751         and simplify some code.
5752
5753 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
5754
5755         * icall.c: change getToken () and add custom attribute GetBlob()helper
5756         method.
5757         * reflection.h: add custom attrs array to the reflection builder structures.
5758         * reflection.c: encode and emit custom attributes for all the relevant
5759         reflection objects. Cache fieldref and methodref tokens. Change
5760         mono_image_create_token() interface to take a MonoDynamicAssembly.
5761         More complete custom attributes decoder. Load custom attributes for
5762         Assembly, Field, Method and Constructor objects, too. Make the
5763         returned array an Attribute[] one, not object[]. Added
5764         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
5765         custom attribute constructor.
5766
5767 2002-02-20  Dick Porter  <dick@ximian.com>
5768
5769         * icall.c:
5770         * rawbuffer.c:
5771         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
5772         problem code out for now).
5773
5774 2002-02-19  Radek Doulik  <rodo@ximian.com>
5775
5776         * object.c (mono_ldstr): use hash table to avoid multiple swapping
5777
5778 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
5779
5780         * icall.c: register the GetCustomAttributes method.
5781         * object.c, object.h: add mono_string_new_len ().
5782         * reflection.h, reflection.c: added mono_runtime_invoke(),
5783         mono_install_runtime_invoke(). Added
5784         mono_reflection_get_custom_attrs () to load custom attributes and
5785         create the attribute objects.
5786
5787 2002-02-19  Dick Porter  <dick@ximian.com>
5788         * threads-dummy-types.c:
5789         * threads-dummy-types.h:
5790         * threads-dummy.c:
5791         * threads-dummy.h:
5792         * threads-pthread-types.c:
5793         * threads-pthread-types.h:
5794         * threads-pthread.c:
5795         * threads-pthread.h:  Deleted obsolete files
5796
5797 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
5798
5799         * class.c (mono_class_vtable): runtime init the class when we
5800         allocate static class data.
5801
5802         * icall.c (ves_icall_System_Array_SetValue): check for null values.
5803
5804         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
5805         and String - but we will need generic marshalling support in the
5806         future. 
5807         (mono_init): set the domain name in a ms compatible way
5808
5809         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
5810         String[].
5811
5812 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
5813
5814         * object.c (mono_array_clone): use alloca() instead of g_malloc  
5815         for sizes
5816
5817         * appdomain.c (mono_domain_unload): impl.
5818
5819 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
5820
5821         * appdomain.c, object.c: fix intern pool implementation.
5822         * class.c: fix alignment code.
5823
5824 2002-02-16  Radek Doulik  <rodo@ximian.com>
5825
5826         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
5827         and s2 > s1, just copy lower bytes to be compatible with little
5828         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
5829         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
5830
5831         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
5832         force big_endian to be 1 for big endian machines 
5833         (ves_icall_iconv_new_decoder): ditto
5834
5835 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
5836
5837         * socket-io.c (convert_sockopt_level_and_name): If the system
5838         doesn't define SOL_IP or SOL_TCP, get them by hand using
5839         getprotobyname() and caching the values (because this could be a
5840         slow operation).
5841         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
5842         Use the appropriate struct when the system does support it. Ie,
5843         not all systems have struct ip_mreqn so use struct ip_mreq when
5844         appropriate.
5845
5846 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
5847
5848         * reflection.c: handle finally clauses.
5849
5850 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
5851
5852         * socket-io.c: use g_snprintf() instead of snprintf.
5853
5854 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
5855
5856         * reflection.c (mono_param_get_objects): Cast second argument to
5857         mono_method_get_param_names to a const char** to silence the
5858         compiler warning.
5859
5860         * appdomain.c (mono_domain_assembly_open): Put parens around the
5861         truth statement in the for-loop.
5862
5863         * unicode.c (iconv_convert): Got rid of a compiler warning about
5864         int i being unused when the system has a new iconv.
5865         (iconv_get_length): Same.
5866
5867         * image.c (load_class_names): Cast the second argument to
5868         g_hash_table_insert() to char* to hush compiler warnings about the
5869         arg being a const.
5870         (mono_image_open): Same here.
5871
5872         * socket-io.c: Don't conditionally include sys/filio.h or
5873         sys/sockio.h here anymore since we now get them from
5874         io-layer/io-layer.h
5875         (inet_pton): If the system doesn't support inet_aton, implement
5876         using inet_addr and also #define INADDR_NONE if it isn't defined
5877         by the system.
5878
5879 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
5880
5881         * metadata.c, metadata.h: added function to get packing and size info
5882         of a typedef.
5883         * reflection.h, reflection.c: handle field RVA data. Save info about
5884         the table layout if needed. Assign typedef indexes to all the types
5885         before dumping the info about them to avoid forward reference problems.
5886
5887 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
5888
5889         * socket-io.c (convert_sockopt_level_and_name): ifdef
5890         SO_ACCEPTCONN because it is not defined on my system (old debian)
5891
5892 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
5893
5894         * opcode.c: use stddef.h to get NULL.
5895
5896 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
5897
5898         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
5899         for FIONBIO, FIONREAD and SIOCATMARK.
5900         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
5901         define INADDR_NONE and besides, inet_addr() is deprecated and
5902         should not be used. Use inet_pton() instead - it also has the
5903         added bonus that it can easily handle IPv6 addresses as well.
5904         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
5905
5906 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
5907
5908         * decimal.c: remove _MSC_VER conditional.
5909
5910 2002-02-13  Dick Porter  <dick@ximian.com>
5911
5912         * socket-io.c: 
5913         * icall.c: Internal calls for Blocking, Select, Shutdown,
5914         GetSocketOption and SetSocketOption
5915
5916 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
5917
5918         * assembly.cs: better resolver: use it instead of some kludgy
5919         code.
5920
5921 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
5922
5923         * reflection.c: the best way to speed-up the compiler is to avoid
5924         infinite loops.
5925
5926 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
5927
5928         * class.c (mono_class_vtable): changed the object layout
5929         (obj->vtable->class). 
5930         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
5931
5932 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
5933
5934         * assembly.c: look for assemblies in the assembly dir, too.
5935
5936 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
5937
5938         * class.c: fix thinko in mono_class_from_type().
5939
5940 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
5941
5942         * exception.h, exception.c: added TypeLoadException.
5943         * object.h, object.c: added mono_array_clone ().
5944         * icall.c: handle throwOnError in AssemblyGetType().
5945         Added Array.Clone().
5946         * opcode.h, opcode.c: use a single value for the opcode val.
5947         Compile fix for non-gcc compilers.
5948
5949 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
5950
5951         * opcodes.c, opcodes.h: export interesting info about opcodes.
5952
5953 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
5954
5955         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
5956         icalls. 
5957
5958         * class.c (class_compute_field_layout): set element_class for enums
5959         (mono_class_create_from_typedef): set element_class for normal classes
5960
5961         * icall.c (ves_icall_System_Enum_get_value): impl.
5962
5963         * class.c (mono_class_create_from_typedef): do not set valuetype
5964         flag for System.ValueType and System.Enum
5965
5966 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
5967
5968         * unicode.c (iconv_convert): fix big endian problem.
5969
5970 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
5971
5972         * class.c: add asserts if we are ever going to scribble over memory.
5973         * socket-io.c: not all systems have AF_IRDA defined.
5974
5975 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
5976
5977         * class.c (class_compute_field_layout): do not consider static
5978         fields to compute alignment
5979
5980 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
5981
5982         * appdomain.c (mono_appdomain_get): impl.
5983         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
5984
5985 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
5986
5987         * icall.c: ignore "file://" prefix when loading an assembly.
5988
5989 2002-01-23  Dick Porter  <dick@ximian.com>
5990
5991         * socket-io.c:
5992         * icall.c:
5993         * Makefile.am: Added socket support
5994
5995 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
5996
5997         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
5998         code back.  This should return the assemblies that are loaded by
5999         the runtime on behalf of an application domain. 
6000
6001         The current implementation is still broken, it just returns every
6002         assembly loaded, but until we get real applications domain this
6003         will do.
6004
6005 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
6006
6007         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
6008         AppDomain object.
6009
6010 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
6011
6012         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
6013         the mono_class_from_name lookup.
6014         (ves_icall_get_parameter_info): ditto.
6015         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
6016         method.
6017         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
6018
6019 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
6020
6021         * class.c: load also nested classes on class init.
6022         System.ValueType instance methods gets passed boxed
6023         values, unless methods in derived classed that get a pointer to the
6024         data.
6025         * icall.c: use better name parsing code in GetType().
6026         * image.c, image.h: add mono_image_loaded ().
6027         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
6028         * reflection.c, reflection.h: added mono_reflection_parse_type().
6029
6030 2002-01-22  Veronica De Santis <veron78@interfree.it>
6031
6032         * icall.c : Added mapping of internal calls for Manual and Auto reset events
6033         * threads.c : Added the implementation of internal calls for events
6034         * threads.h : Added prototypes of internal calls for events
6035         
6036 2002-01-21  Radek Doulik  <rodo@ximian.com>
6037
6038         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
6039
6040 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
6041
6042         * class.c (mono_class_init): set min_align to 1 (instead of 0)
6043         (mono_class_value_size): use min_align
6044
6045 2002-01-20  Dick Porter  <dick@ximian.com>
6046
6047         * threads.h:
6048         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
6049         so it compiles on w32.
6050
6051 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
6052
6053         * metadata.c (mono_type_stack_size): impl.
6054
6055         * class.c (mono_class_get_field): impl. memberref token
6056
6057 2002-01-16 Veronica De Santis <veron78@@interfree.it>
6058
6059         * icall.h : Added the internal calls mapping for CreateMutex_internal
6060                     and ReleaseMutex_internal.
6061         * threads.h : Added the prototype of mutexes internal calls.
6062         * threads.c : Added the implementations of mutexes internal calls.
6063
6064 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
6065
6066         * metaparse.h: removed unused file.
6067         * reflection.c, reflection.h: added stream_data_align () function 
6068         to align data in streams and keep stream aligned. Add support for
6069         exception support in method headers.
6070
6071 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
6072
6073         * unicode.c: make iconv_convert () return the number of bytess written
6074         in the output buffer.
6075
6076 2002-01-15  Dick Porter  <dick@ximian.com>
6077         * threads.c: Make the runtime's idea of infinite timeouts coincide
6078         with the class library's
6079
6080         Fix a particularly egregious bug in mono_thread_cleanup(). That
6081         code was so utterly bogus it must have been written on a Monday.
6082
6083 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
6084
6085         * reflection.h: add subtypes field to TypeBuilder.
6086         * reflection.c: encode constants for literal fields.
6087         Handle subtypes. Fix user string token (and add a zero byte)
6088         at the end.
6089         
6090 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
6091
6092         * class.c (mono_class_init): bug fix: assign slot numbers for
6093         abstract methods.
6094
6095 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
6096
6097         * reflection.c: don't try to output a code RVA for abstract methods.
6098         Small fixes for method header format. Output parameter info to the
6099         ParamDef table. Save method overriding info to MethodImpl table.
6100         Fix property support. Allow typedef.extends to be a type in the
6101         building assembly.
6102         * verify.c: fix off-by-one error.
6103
6104 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
6105
6106         * class.c: fix mono_class_from_mono_type () for szarray types.
6107         Remove unused cache check in mono_class_from_type_spec().
6108         * icall.c: *type_from_name () functions handle simple arrays and byref.
6109         * reflection.c: handle byref and szarray types. Handle methods without
6110         body (gets P/Invoke compilation working). Handle types and fields in
6111         get_token ().
6112         * reflection.h: add rank to MonoTypeInfo.
6113
6114 2002-01-10  Dick Porter  <dick@ximian.com>
6115
6116         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
6117         internal calls
6118
6119 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
6120
6121         * icall.c: initialize class in type_from_handle ().
6122         Loop also in parent classes for get_method ().
6123         * reflection.c: properly encode class and valuetype types.
6124         Start on encoding TypeBuilder types. Handle fieldrefs.
6125         Use correct length when registering a user string.
6126         Handle ConstructorBuilder and MonoMethod in get_token ().
6127         Make mono_type_get_object () aware of cached types.
6128         * object.c: back out change to mono_string_new ().
6129
6130 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
6131         * object.c: mono_string_new should return a NULL when the string 
6132         passed in is NULL -- not try to deference it.
6133         
6134 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
6135
6136         * icall.c: hack to make IsSubType work for TypeBuilders.
6137         * reflection.c: emit constructors before methods.
6138         Retrieve param names in mono_param_get_objects().
6139
6140 2002/01/05  Nick Drochak  <ndrochak@gol.com>
6141
6142         * Makefile.am: fix list of headers and sources so automake 1.5
6143         doesn't complain. Removed \# at end of list.
6144
6145 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
6146
6147         * reflection.c: get token for a method ref. Set return type of
6148         constructor to void.
6149         * loader.c: debug message.
6150         * class.c: typo fix.
6151
6152 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
6153
6154         * icall.c: fix array init with rank > 1. FindMembers
6155         loops in parent class as well.
6156         * image.c: do not insert nested types in name cache.
6157         * reflection.c: warning fix.
6158         * reflection.h: add override method (for interface impl).
6159
6160 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
6161
6162         * metadata.c: fix customattr decoding.
6163
6164 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
6165
6166         * rawbuffer.cs: Added native Win32 implementation, avoids using
6167         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
6168
6169 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
6170
6171         * class.c: make the low-level routines handle the cache.
6172
6173 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
6174
6175         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
6176
6177 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
6178
6179         * class.c: fix mono_array_element_size() for objects.
6180         * class.h, class.c: add properties to MonoClass and load them
6181         at init time.
6182         * icall.c: check with isinst() when assigning a value to an array
6183         instead of requiring the classes to match exactly.
6184         Implemented icall for System.Type::GetType().
6185         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
6186         enums. Handle bindingflags when looking for methods and fields.
6187         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
6188         and mono_metadata_methods_from_property().
6189         * reflection.h, reflection.c: added structures for propreties,
6190         parameters and enums. Implemented mono_property_get_object() and
6191         mono_param_get_objects().
6192
6193 2001-12-18  Dick Porter  <dick@ximian.com>
6194
6195         * file-io.c: Use mono_string_to_utf16() instead of
6196         mono_string_chars()
6197
6198         * object.c: Added mono_string_to_utf16(), which copies the non
6199         NULL-terminated MonoString into a new double-null-terminated
6200         buffer.
6201
6202 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
6203
6204         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
6205
6206 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
6207
6208         * file-io.c: raise exceptions if handle is invalid.
6209
6210 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
6211
6212         * assembly.c: yet another check for mscorlib.
6213         * class.c, class.h: load nesting info for classes.
6214         * icall.c: many new functions to support the Reflection classes.
6215         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
6216         * reflection.h, reflection.c: mono_image_create_token(),
6217         mono_assembly_get_object(), mono_type_get_object(),
6218         mono_method_get_object(), mono_field_get_object(): methods to return
6219         objects that parallel the C representation of assemblies, types,
6220         methods, fields.
6221
6222 2001-12-11  Dick Porter  <dick@ximian.com>
6223
6224         * icall.c:
6225         * file-io.c: Internal calls for file IO.
6226
6227 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
6228
6229         * tabledefs.h: missing FileAttributes.
6230         * verify.h, verify.c: use is_valid_string () to simplify and check for
6231         valid strings more correctly. Fix warnings and speeling.
6232         Check more tables: Filed, File, ModuleRef, StandAloneSig.
6233         Check code: branches, maxstack, method calls.
6234
6235 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
6236
6237         * object.c (mono_object_allocate): removed static, so that the jit
6238         can allocate value types.
6239
6240         * icall.c (ves_icall_System_DateTime_GetNow): impl.
6241
6242 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
6243
6244         * class.c: init enum types right away and register the
6245         token->MonoClass map in mono_class_create_from_typedef ().
6246         * verify.h, verify.c: first cut of the verifier.
6247         * pedump.c: add --verify switch to verify metadata tables.
6248         * tabledefs.h: add some missing enums.
6249
6250 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
6251
6252         * class.c (mono_install_runtime_class_init): impl.
6253         (mono_class_init): renamed mono_class_metadata_init to
6254         mono_class_init, also removed the metadata_inited flag
6255
6256         * object.c (mono_object_isinst): use faster algorithm
6257
6258 2001-11-30  Radek Doulik  <rodo@ximian.com>
6259
6260         * mono-endian.h: reverted last change
6261         added function prototypes
6262
6263         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
6264         add mono-endian.c back
6265
6266         * mono-endian.c: returned back, as Paolo pointed out, it's needed
6267         for unaligned access, I've mistaked it with endianess. I am
6268         sorry.
6269         (mono_read16): fix reverted endianess
6270         (mono_read64): ditto
6271         (mono_read32): ditto
6272
6273 2001-11-30  Dick Porter  <dick@ximian.com>
6274
6275         * exception.c: Implement mono_exception_from_name()
6276
6277 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
6278
6279         * metadata.h, metadata.c: remove params_size and locals_size and their
6280         calculation from the metadata code: they are only usefult to the
6281         interp.
6282
6283 2001-11-29  Radek Doulik  <rodo@ximian.com>
6284
6285         * object.c (mono_ldstr): swap bytes here, it's probably not the
6286         best place, but works for me now, I'll redo it once I know mono
6287         better, also note that I add PROT_WRITE and don't reset back, also
6288         note that it's only affects big endians, so x86 should be OK
6289
6290         * mono-endian.h (read16): use just glib macros for both endians
6291
6292         * mono-endian.c: removed as glib macros are used in in
6293         mono-endian.h so we don't need to care about endianess for read
6294         macros as glib does that for us already
6295
6296 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
6297
6298         * class.h, class.h: take minimum alignment into consideration so
6299         that the fields of a class remain aligned also when in an array.
6300
6301 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
6302
6303         * loader.h, loader.c: add mono_method_get_param_names().
6304         * class.c: 0-init class fields.
6305
6306 2001-11-26  Dick Porter  <dick@ximian.com>
6307
6308         * icall.c:
6309         * threads-types.h:
6310         * threads.c: New file that handles System.Threading on all platforms
6311
6312         * object.c: 
6313         * object.h: Remove the synchronisation struct from MonoObject,
6314         replace it with a pointer that gets initialised on demand
6315
6316         * Makefile.am: Replace all the system-specific threading code with
6317         a single file that uses the new wrapper library
6318
6319 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
6320
6321         * class.c, class.h: add mono_install_trampoline() so that the runtime
6322         can register a function to create a trampoline: removes the ugly
6323         requirement that a runtime needed to export arch_create_jit_trampoline.
6324         * object.h, object.c: added mono_install_handler() so that the runtime
6325         can install an handler for exceptions generated in C code (with
6326         mono_raise_exception()). Added C struct for System.Delegate.
6327         * pedump.c: removed arch_create_jit_trampoline.
6328         * reflection.c: some cleanups to allow registering user strings and
6329         later getting a token for methodrefs and fieldrefs before the assembly
6330         is built.
6331         * row-indexes.h: updates and fixes from the new ECMA specs.
6332
6333 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
6334
6335         * class.h, class.c: add enum_basetype field to MonoClass.
6336         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
6337         to get index in the constant table reated to a field, param or
6338         property.
6339         * reflection.h, reflection.c: handle constructors. Set public-key and
6340         version number of the built assembly to 0.
6341         * row-indexes.h: update from new ECMA spec.
6342
6343 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
6344
6345         * class.h, class.c: add a max_interface_id to MonoClass.
6346         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
6347         since it's used to do that. Added mono_type_type_from_obj().
6348         Make GetType() return NULL instead of segfaulting if the type was not
6349         found. Handle simple arrays in assQualifiedName.
6350         * object.h: add a struct to represent an Exception.
6351         * reflection.c: output call convention in method signature.
6352         Add code to support P/Invoke methods and fixed offsets for fields.
6353
6354 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
6355
6356         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
6357         the value.
6358         * icall.c: use mono_array_addr instead of array->vector: fixes the
6359         reflection image writing.
6360         * reflection.c: init call convention byte to 0 in method signature.
6361         Encode the property signature. Don't output property-related methods
6362         twice. Really process the properties for a type (don't cast a field to
6363         a property, my mom always told me that).
6364         Fix 64 bit issues in pointer alignment in a different and more
6365         readable way.
6366
6367 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
6368
6369         * loader.h: Removed type class from MonoDefaults, added monotype
6370
6371         * loader.c: Loaded MonoType, removed loading of Type
6372
6373         * icall.c (my_mono_new_object): Now returns a System.MonoType,
6374         and fills in System.Type._impl with a RuntimeTypeHandle rather
6375         than the actual MonoClass *
6376
6377         (ves_icall_type_from_handle): change from type_class to
6378         monotype_class
6379
6380         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
6381         implemented
6382
6383         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
6384         implemented
6385
6386         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
6387
6388         (ves_icall_System_Reflection_Assembly_GetType): implemented
6389
6390         (ves_icall_System_MonoType_assQualifiedName): implemented
6391
6392         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
6393
6394 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
6395
6396         * assembly.c (mono_assembly_open): Implement a cache for the
6397         assemblies. 
6398
6399         (mono_assembly_close): only destroy the assembly when the last
6400         reference is gone.
6401         
6402 2001-11-09  Dick Porter  <dick@ximian.com>
6403
6404         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
6405
6406 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
6407
6408         * class.c (mono_class_metadata_init): bug fix: compute the right slot
6409
6410 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
6411
6412         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
6413         from Martin Weindel.
6414         * object.h: add mono_string_chars ().
6415
6416 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
6417
6418         * reflection.c (build_compressed_metadata): Eliminates warnings
6419         and uses 64-bit clean code.
6420
6421         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
6422         (mono_type_equal): Change signature to eliminate warnings.
6423
6424 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
6425
6426         * icall.c, loader.c: remove the internalcall array constructors.
6427         Changes to match the new MonoArray structure.
6428         * object.h, object.c: an array object doesn't allocate an extra
6429         vector. Add mono_array_new_full () to create jagged arrays easily.
6430
6431 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
6432
6433         * metadata.h, metadata.c: add mono_metadata_field_info () to
6434         retreive all the info about a field from vairous tables.
6435         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
6436         * class.h, class.c: augment MonoClassField with more info.
6437         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
6438         policy and load a field's RVA if needed.
6439
6440 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
6441
6442         * class.c (mono_class_metadata_init): create a trampoline for all
6443         virtual functions instead of actually compiling them.
6444
6445 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
6446
6447         * class.h, class.c: include name in MonoClassField.
6448         * class.c: fix fundamental type of System.Object and System.String.
6449         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
6450         tokens in ldtoken.
6451         * icall.c: remove internalcalls for the Reflection stuff that is now
6452         done in C# code.
6453         * loader.c: mono_field_from_memberref () implementation.
6454         * mono-endian.c: thinko (s/struct/union/g).
6455         * object.c, object.h: make the mono_string_* prototypes actually use
6456         MonoString instead of MonoObject.
6457         * reflection.c, reflection.h: updates for changes in the reflection
6458         code in corlib: we use C structures that map to the actual C# classes.
6459         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
6460         fat method header if needed and use the info from the ILGenerator for
6461         methods. Handle fields in types. Misc fixes.
6462
6463 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
6464
6465         * class.c (mono_class_metadata_init): bug fix: always allocate
6466         space for static class data
6467
6468 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
6469
6470         * class.c (mono_compute_relative_numbering): use relative
6471         numbering to support fast runtime type checks.
6472
6473 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
6474
6475         * class.c (mono_class_create_from_typeref): added debugging output
6476         to print class name when MonoDummy is returned instead of real class
6477
6478 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
6479
6480         * class.c (mono_class_metadata_init): interface offset table now
6481         contains pointers into the vtable - this is more efficient for the jit
6482
6483 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
6484
6485         * class.c (mono_class_metadata_init): use a temporary vtable (the
6486         old algorithm only worked for the interpreter, but not for the jit)
6487
6488 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
6489
6490         * loader.c (method_from_memberref): use mono_class_get to get the
6491         class of an array instead of using System.Array directly.
6492         (mono_get_method): also add MEMBERREF methods to the method cache
6493         which usefull for arrays.
6494
6495 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
6496
6497         * pedump.c (arch_compile_method): added to compute vtable entry
6498
6499         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
6500         number of interfaces.
6501         
6502         * class.h: merged MonoArrayClass into MonoClass
6503
6504         * class.c (mono_class_create_from_typedef): compute the vtable size and
6505         allocate space to include the vtable inside MonoClass
6506         (mono_class_metadata_init): initialize the vtable
6507
6508 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
6509
6510         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
6511         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
6512         * image.c: endian fixes by Laurent Rioux.
6513         * object.h, object.c: rename MonoStringObject to MonoString and
6514         MonoArrayObject to MonoArray. Change some function names to conform to
6515         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
6516         guint16* as first argument, so don't use char*.
6517         Provide macros to do the interesting things on arrays in a portable way.
6518         * threads-pthread.c: updates for the API changes and #include <sched.h>
6519         (required for sched_yield()).
6520         * icall.c: updates for the API changes above.
6521         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
6522         platforms that need them.
6523
6524 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
6525
6526         * class.c: set the correct type for all the fundamental
6527         type when loading the class.
6528
6529 2001-10-05  Dick Porter  <dick@ximian.com>
6530
6531         * threads-pthread.c (pthread_mutex_timedlock): Simple
6532         compatibility version for C libraries that lack this call.
6533
6534 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
6535
6536         * class.c: MonoTypes stored in MonoClass are stored as
6537         fundamental MonoTypes when the class represents a
6538         fundamental type (System.Int32, ...).
6539         The TypeHandle return by ldtoken is a MonoType*.
6540         * icall.c: ves_icall_get_data_chunk () write out all the
6541         PE/COFF stuff. Implement ves_icall_define_method (),
6542         ves_icall_set_method_body (), ves_icall_type_from_handle ().
6543         * image.c: properly skip unknown streams.
6544         * loader.h, loader.c: add type_class to mono_defaults.
6545         * metadata.c, metadata.h: export compute_size () as
6546         mono_metadata_compute_size () with a better interface.
6547         Typo and C&P fixes.
6548         * pedump.c: don't try to print the entry point RVA if there is no entry point.
6549         * reflection.c, reflection.h: many cleanups, fixes, output method
6550         signatures and headers, typedef and typeref info, compress the metadata
6551         tables, output all the heap streams, cli header etc.
6552         * row-indexes.h: typo fixes.
6553
6554 2001-10-04  Dick Porter  <dick@ximian.com>
6555
6556         * object.h: Add a synchronisation mutex struct to MonoObject
6557
6558         * object.c (mono_new_object): Initialise the object
6559         synchronisation mutexes
6560
6561         * icall.c: System.Threading.Monitor internal calls
6562         
6563         * threads-pthread.h:
6564         * threads-pthread.c: System.Threading.Monitor internal calls
6565
6566         * threads-types.h: New file, includes the system-specific thread
6567         structures
6568         
6569         * threads-pthread-types.h:
6570         * threads-pthread-types.c: New files, handle pthread-specific
6571         synchronisation types
6572
6573         * threads-dummy-types.h: 
6574         * threads-dummy-types.c: New files of dummy support for
6575         thread-specific types
6576
6577         * metadata.c:
6578         * image.c:
6579         * pedump.c: include mono-endian.h not endian.h
6580         
6581         * Makefile.am: More threads files.
6582         Name mono-endian.h not endian.h
6583
6584 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
6585
6586         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
6587         stuff and implement a few more bits.
6588         * icall.c: a field needs to be dereferenced twice. Do not use the same
6589         name for two variables in the same scope.
6590         * image.c, image.h: cleanups.
6591
6592 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
6593
6594         * class.c (mono_class_metadata_init): bug fix: compute the right size
6595
6596 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
6597
6598         * icall.c: implemented some of the Reflection internalcalls.
6599         * image.c, image.h: start writing out the PE/COFF image.
6600         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
6601         that does the reverse than decode_blob_size ().
6602         * object.c: use mono_metadata_encode_value (). Move here
6603         temporary implementation of mono_string_to_utf8 ().
6604         * rawbuffer.c: make malloc_map static.
6605
6606 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
6607
6608         * metadata.c: fix type comparison for arrays.
6609         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
6610         Added a couple of new classes to monodefaults.
6611         * icall.c: added a couple of Reflection-related internalcalls.
6612         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
6613         Added a byval_arg MonoType to MonoClass.
6614
6615 2001-09-28  Dick Porter  <dick@ximian.com>
6616
6617         * icall.c:
6618         * threads-pthread.h: 
6619         * threads-pthread.c: Implemented internal calls for
6620         LocalDataStoreSlot operations.  Applied mutexes around all shared
6621         data.  Reworked the thread creation and Start() operations to
6622         avoid a race condition.
6623         
6624         * threads-dummy.h:
6625         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
6626
6627 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
6628
6629         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
6630
6631 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
6632
6633         * class.c, loader.c: warn and return NULL instead of erroring out.
6634         * icall.c: added System.AppDomain::getCurDomain().
6635         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
6636
6637 2001-09-25  Dick Porter  <dick@ximian.com>
6638
6639         * threads-pthread.h:
6640         * threads-pthread.c: Implemented timed thread joining and added
6641         System.Threading.Thread::Join_internal internal call
6642
6643         * icall.c: Added System.Threading.Thread::Join_internal internal call
6644
6645         * threads-dummy.h:
6646         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
6647
6648 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
6649
6650         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
6651         mono_string_intern () to implement the semantics of the ldstr opcode
6652         and the interning of System.Strings.
6653         * icall.c: provide hooks to make String::IsIntern and String::Intern
6654         internalcalls.
6655
6656 2001-09-23  Dick Porter  <dick@ximian.com>
6657
6658         * threads-dummy.c: 
6659         * threads-dummy.h: New files of dummy threading routines
6660
6661         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
6662         support code based on system specifics
6663
6664         Rename PTHREAD_LIBS to THREAD_LIBS
6665         
6666 2001-09-23  Dick Porter  <dick@ximian.com>
6667
6668         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
6669         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
6670         internal calls.
6671         (mono_thread_init): Set up a Thread object instance to return when
6672         the main thread calls Thread.CurrentThread
6673         (mono_thread_cleanup): Wait for all subthreads to exit
6674
6675         * icall.c: New internal calls for System.Threading.Thread::Sleep
6676         (including Schedule) and CurrentThread
6677
6678         * threads.h: New file, to insulate thread-specific stuff from the
6679         rest of the code
6680
6681 2001-09-21  Dick Porter  <dick@ximian.com>
6682
6683         * threads-pthread.h: 
6684         * threads-pthread.c: New file, for handling pthreads-style
6685         threading support.  Start() now starts a new thread and executes
6686         the ThreadStart delegate instance.
6687
6688         * icall.c: Added the internalcall for
6689         System.Threading.Thread::Start_internal
6690
6691         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
6692
6693 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
6694
6695         * loader.c: work around the different signatures for delegates
6696         constructors csc generates in compiled code vs the ones compiled in mscorlib.
6697
6698 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
6699
6700         * class.h, class.c: add mono_class_get_field_from_name ().
6701         * *: Fix C comments and other ANSI C issues.
6702
6703 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
6704
6705         * endian.h, assembly.c: fix some endianness issues.
6706
6707 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
6708
6709         * loader.h, load.c: add delegate_class to mono_defaults.
6710         Handle runtime provided methods in mono_get_method ().
6711
6712 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
6713
6714         * loader.c (mono_get_method): use pinvoke for internal call
6715
6716         * icall.c: use pinvoke for internal call
6717
6718         * loader.c (method_from_memberref): set the method name
6719
6720 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
6721
6722         * metadata.c: help the compiler generate better code for
6723         mono_class_from_mono_type ().
6724
6725 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
6726
6727         * class.c (mono_class_metadata_init): delayed computing of the
6728         class size to mono_class_metadata_init ()
6729
6730 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
6731
6732         * class.c, class.h: add an interfaces member to MonoClass.
6733         * image.c, image.h: add assembly_name field to MonoImage
6734         from the assembly table.
6735         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
6736
6737 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
6738
6739         * class.c: Handle Array in mono_class_from_mono_type ().
6740         * metadata.c, pedump.c: some endian fixes.
6741
6742 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
6743
6744         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
6745         * metadata.c: fix small problem introduced with the latest commit.
6746
6747 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
6748
6749         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
6750         We don't need a MonoMetadata pointer anymore to compare signatures in
6751         mono_metadata_signature_equal (), update callers.
6752         Reduced memory usage an number of allocations for MonoMethodHeader and
6753         MonoMethodSignature.
6754
6755 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
6756
6757         * metadata.c: added compare for szarray.
6758
6759 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
6760
6761         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
6762         and add a couple more types to it and mono_defaults. Give an hint on
6763         classes that need implementing in our corlib and are referenced
6764         in mscorlib.
6765
6766 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
6767
6768         * class.h, class.c: keep track if a class is also an Enum.
6769         * loader.c: Implement a couple more types for use in libffi
6770         marshalling. Gives better diagnostics when failing to dlopen
6771         a library. Set method->klass for P/Invoke methods, too.
6772
6773 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
6774
6775         * class.c, class.h: add a MonoType this_arg to MonoClass that
6776         represents a pointer to an object of the class' type that
6777         can be used by the interpreter and later the type cache.
6778         Add best guess alignment info for valuetype objects.
6779
6780 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
6781
6782         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
6783         into MonoType: one less level of indirection and allocation and
6784         simplifies quite a bit of code. Added cache for MonoTypes that are
6785         used frequently, so that we don't need to allocate them all the time.
6786
6787 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
6788
6789         * class.c (mono_class_create_from_typedef): System.Enum is also a
6790         value type, although it does not derive from System.ValueType
6791         (maybe a bug in the ms compiler?)
6792
6793         * metadata.c (mono_type_size): return the right size for value types
6794
6795         * loader.c (mono_get_method): only initialize method header if not abstract
6796
6797         * class.c (mono_class_from_mono_type): use mono_default values. 
6798
6799 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
6800
6801         * *: use MonoClass pointers instead of <type_tokens>
6802         
6803         * class.h: new flag: metadata_inited.
6804
6805         * class.c (mono_class_metadata_init): impl.
6806         (mono_class_instance_size): impl.
6807         (mono_class_data_size): impl.
6808
6809 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
6810
6811         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
6812         MonoClass now has the name and name_space fields. 
6813         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
6814         mono_get_method () takes and optional MonoClass as argument.
6815         Removed mono_typedef_from_name() and added mono_class_token_from_name()
6816         instead that takes advantage of a map from class names to typedef
6817         tokens in MonoImage.
6818
6819 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
6820
6821         * metadata.c: zero is not a valid alignment boundary.
6822         Merge MONO_TYPE_VOID in default decoding code.
6823
6824 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
6825
6826         * image.h: merged MonoMetadata into MonoImage
6827
6828         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
6829         identify the type of elements.
6830
6831 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
6832
6833         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
6834         * cil-coff.h: split MonoMSDOSHeader and add size info.
6835         * image.c: add some consistency checks.
6836         * metadata.c: fix row size computation: one programmer
6837         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
6838         add explanation for the locator routine.
6839         Fix decoding of size in method header.
6840         
6841 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
6842
6843         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
6844         (g_concat_dir_and_file): Bring g_concat_dir_and_file
6845         function from gnome-libs.  This uses the right path separator
6846         based on the OS, and also works around a bug in some systems where
6847         a double slash is not allowed. 
6848         (default_assembly_name_resolver): Use g_concat_dir_and_file
6849         (mono_assembly_open): ditto.
6850
6851 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
6852
6853         * metadata.c (mono_metadata_signature_equal): impl.
6854
6855         * *: void is now a realy MonoType (instead of using NULL)
6856         
6857         * metadata.c (do_mono_metadata_parse_type): use
6858         mono_metadata_parse_type to parse void value.
6859
6860 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
6861
6862         * metadata.c, metadata.h: in the signature and method header store
6863         only the space required for holding the loca vars and incoming arguments.
6864
6865 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
6866
6867         * metadata.c (do_mono_metadata_parse_type): treat void like any
6868         other type (instead of assigning NULL);
6869
6870 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
6871
6872         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
6873
6874 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
6875
6876         * image.c (do_mono_image_open): added a cache for arrays.
6877
6878 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
6879
6880         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
6881         decode a single column from a row in a metadata table and changes
6882         to take advantage of it in the typedef locator (gives a nice speed up).
6883         Store offset info for function params.
6884
6885 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
6886
6887         * image.h (MONO_IMAGE_IS_CORLIB): removed 
6888
6889 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
6890
6891         * assembly.c: how could mono_assembly_close () had ever worked?
6892         * metadata.c, metadata.h: provide offset info for local vars.
6893         Implement mono_type_size () to take care of alignment as well
6894         as size (it was mono_field_type_size in cli/class.c before).
6895
6896 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
6897
6898         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
6899
6900         * assembly.h (CORLIB_NAME): set to corlib.dll
6901
6902         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
6903
6904 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
6905
6906         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
6907         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
6908         tokentype.h: massive namespace cleanup.
6909
6910 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
6911
6912         * metadata.h, metadata.c: decode exception clauses when parsing method header.
6913
6914 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
6915
6916         * metadata.c (mono_metadata_free_type): added check for type !=
6917         NULL (void) before calling mono_metadata_free_type()
6918
6919 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
6920
6921         * metadata.h, row_indexes.h: added header with enumerations to use
6922         to index in the columns from tables in metadata and to decode coded
6923         tokens: we should start using this instead of embedding magic numbers
6924         all over the code.
6925
6926 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
6927
6928         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
6929         Move metadata_t info from cli_image_info_t to MonoImage, where
6930         it's easily accessible. Changed all the uses accordingly.
6931         Added the method and class caches to MonoImage.
6932         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
6933         and mono_metadata_decode_value () signature to be more consistent
6934         with the other parse functions (and simplify code). Taken advantage
6935         of zero-length array allocation with GCC. Removed reduntant (and
6936         wrong) MonoFieldType struct and use MonoParam instead. Changed
6937         mono_metadata_parse_field_type () to use common code for parsing.
6938         Added mono_metadata_typedef_from_field () and
6939         mono_metadata_typedef_from_method () to lookup a typedef index from a
6940         field or method token.
6941         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
6942
6943 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
6944
6945         * metadata.c (mono_metadata_parse_field_type): Implement. 
6946         (do_mono_metadata_parse_type): Split engine from
6947         mono_metadata_parse_type, so that we can create smaller structures
6948         for things that just have one pointer to the MonoType (look at
6949         the MonoFieldType)
6950
6951 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
6952
6953         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
6954         as Jan Gray found out, it is incorrect. 
6955
6956 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
6957
6958         * assembly.c: Implement asssembly loading.  This loads an image
6959         and loads all the referenced assemblies.  Come to think of it, we
6960         could always do lazy loading of the assemblies. 
6961
6962         * image.c (mono_image_open): Keep loaded images in a hashtable.
6963
6964         * image.h (MonoImage): Add reference count.
6965
6966 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
6967
6968         * assembly.c (mono_assembly_open): Keep track of the file name in
6969         case the assembly has no ASSEMBLY table.
6970
6971         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
6972         from get.c here.
6973
6974 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
6975
6976         * metadata.c, metadata.h: decode local vars in method header
6977         parse function. Change callers accordingly.
6978
6979 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
6980
6981         * metadata.h, cil-coff.h: protect against multiple inclusion.
6982         Added some new structures to hold information decoded from metadata:
6983         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
6984         and relevant decoding/free functions.
6985         * metadata.c: implement decoding functions. Add warning for out of bounds
6986         index in mono_metadata_locate(). Implement mono_get_method () to retreive
6987         all the info about a method signature and invocation. Remove check on
6988         uninitialized local var in parse_mh() and fix memory leak.
6989
6990 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
6991
6992         * metadata.h: More macros.
6993
6994         * tokentype.h: New file.
6995
6996 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
6997
6998         * assembly.c: added a consistency check and initialize
6999         some structures with g_new0().
7000         * metadata.c: fixed a couple more bugs in table size computation
7001         and add other checks for out-of bound access to metadata.
7002
7003 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
7004
7005         * metatada.c: fix bugs computing table sizes. Spew a
7006         warning when index in string heap is out of bounds.
7007
7008 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
7009
7010         * metadata.h: Add a couple of macros to manipulate tokens. 
7011
7012 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
7013
7014         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
7015         cli_section_tables).
7016
7017 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
7018
7019         * metadata.c (mono_metadata_user_string): New function, provides
7020         access to the UserString heap. 
7021
7022 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
7023
7024         * metadata.c: Add inline documentation.
7025
7026 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
7027
7028         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
7029         files. 
7030
7031 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
7032
7033         * typeattr.h: New file, TypeAttribute flags. 
7034
7035 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
7036
7037         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
7038         mono_assembly_ensure_section): Section loading code.
7039         (load_section_tables): Load the sections.
7040
7041         * mono/metadata/metadata.c (mono_metadata_locate_token,
7042         mono_metadata_locate): Functions to locate the information
7043         definition given a token or a table and an index.
7044         (mono_metadata_compute_table_bases): New.
7045         (compute_size): New function to compute the sizes of the various
7046         tables.
7047
7048         * mono/metadata/metadata.h: Finish listing the different index
7049         types. 
7050
7051         * mono/metadata/pedump.c: Improve to dump new information.
7052
7053 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
7054
7055         * mono/metadata/metadata.c: Entered all the tables matching
7056         Beta2. 
7057
7058         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
7059
7060
7061
7062
7063
7064
7065