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