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