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