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