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