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