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