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