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