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