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