2004-11-07 Ben Maurer <bmaurer@ximian.com>
[mono-project.git] / mono / metadata / ChangeLog
blob3617ce14a24b9c1fdf3dc24e0685f0e6b95a9f7e
1 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
3         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
4         three warnings, which are actual bugs (see 69206).
6         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
7         unused. Saves a cool 4 bytes / method.
9 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
11         * metadata.c (builtin_types): Add types for System.Object here.
12         (mono_metadata_parse_type_full): Cache MonoType*'s that are
13         for a class or valuetype from klass->this_arg or klass->byval_arg.
15         On mcs for a hello world, this gets us down from 21836 MonoType's
16         to 14560.
18         (mono_metadata_free_type): Account for the above change.
20 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
23         exception instead of asserting if name is null.
24         (ves_icall_System_AppDomain_GetData): Ditto.
26 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
28         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
29         EnumBuilder.
31         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
32         Return NULL when the domain does not have entry_assembly set.
34         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
35         Add a 'resource_modules' argument.
36         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
38         * reflection.c (mono_reflection_create_runtime_class): Move setting
39         of wastypebuilder here, so mono_get_type_object () returns a MonoType
40         for enums too.
42         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
43         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
44         Throw an ArgumentNullException if 'ptr' is null.
46         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
47         assemblies here. Fixes #69020.
49 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
51         * reflection.c (build_compressed_metadata): Fix the previous patch for
52         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
53         the stack.
55 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
57         * assembly.c (mono_assembly_names_equal): Allow a match if one of
58         the cultures is false. Fixes #69090.
60         * reflection.c (build_compressed_metadata): Fix invalid memory read 
61         detected by valgrind.
62         
63         * reflection.c (mono_reflection_get_type): Avoid triggering a 
64         TypeResolve multiple times for the same type. Fixes #65577.
66 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
68         * marshal.c: Avoid using ldftn to call managed functions. It is
69         much slower than just a call.
71         * reflection.c (mono_module_get_object): free the basename we
72         allocate here from glib.
73         
74         * reflection.c (ensure_runtime_vtable): make sure to free
75         overrides.  Also, we were allocating an array of MonoMethod not an
76         array of MonoMethod*.
78         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
80         * image.c (mono_image_close): free image->guid here.
82 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
84         * reflection.c: Fix some spec conformance issues with the PE file
85         structures so mcs compiled apps run on the Net 2.0 beta.
87 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
89         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
90         Implement this. Fixes #67264.
92         * debug-helpers.h debug-helpers.c marshal.c: Move 
93         mono_find_method_by_name to debug-helpers.c.
95 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
97         * object.c (mono_release_type_locks): type_initialization_hash is
98         a GHashTable.
100         * reflection.c object.c object-internals.h: Fix warnings.
102         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
103         without accessors. Fixes #61561.
105         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
106         application base from the root domain if not set. Fixes #65641.
107         (mono_runtime_init): Fix warning.
109 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
111         * appdomain.c: call mono_thread_pool_init.
112         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
113         of worker threads based on the number of CPUs and the environment
114         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
115         for non-windows (windows) systems.
117 2004-10-27  Chris Toshok  <toshok@ximian.com>
119         * mono-debug-debugger.c (write_class): don't call mono_class_init
120         here, as even with the check for (!klass->init_pending), we get
121         into a situation where we're hitting cycles in class
122         initialization.  Fixes #68816.
124 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
126         * image.c: Avoid overwriting values in the loaded_images_hash when an
127         assembly is loaded multiple times. Fixes #61152.
129         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
130         so multiple satellite assemblies for the same name can be loaded.
131         Fixes #68259.
133         * mono_domain_assembly_preload: Actually return the loaded assembly, 
134         not NULL.
136         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
137         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
139         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
140         pending finalizers are not invoked after the appdomain has been 
141         unloaded. Fixes #67862.
143 2004-10-22  Martin Baulig  <martin@ximian.com>
145         * mono-debug-debugger.c
146         (mono_debugger_runtime_invoke): Don't box valuetypes.
148 2004-10-22  Chris Toshok  <toshok@ximian.com>
150         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
151         don't hide private methods.
153 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
155         * icall.c: Allows the runtime to "share" (when known) the public key
156         token of an assembly. This avoid the need to recalculate the token 
157         (from the public key) in managed code.
159 2004-10-21  Chris Toshok  <toshok@ximian.com>
161         * debug-helpers.c (append_class_name): argh, revert last patch.
162         
163 2004-10-21  Chris Toshok  <toshok@ximian.com>
165         * debug-helpers.c (append_class_name): use '+' as the delimiter,
166         not '/', so that it matches what the debugger uses to look up
167         methods.
169 2004-10-21  Martin Baulig  <martin@ximian.com>
171         * mono-debug-debugger.c (mono_debugger_throw_exception): New
172         public method; this is called each time an exception is thrown and
173         allows the debugger to use exception catch points.
175 2004-10-21  Martin Baulig  <martin@ximian.com>
177         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
178         the stack pointer and the exception object in some struct and pass
179         that to the debugger.
181 2004-10-21  Chris Toshok  <toshok@ximian.com>
183         * mono-debug-debugger.c (do_write_class): add instance/static
184         event support.  We don't expose "raise" or "other" yet.
185         (event_is_static): new method.
187 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
189         * mono-debug-debugger.c
190         (mono_debugger_handle_exception): Remove
191         bogus return value for fussy compilers.
193 2004-10-20  Martin Baulig  <martin@ximian.com>
195         * mono-debug-debugger.c
196         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
197         (mono_debugger_handled_exception): Likewise.
199 2004-10-20  Martin Baulig  <martin@ximian.com>
201         * mono-debug-debugger.h (MonoDebuggerEvent): Added
202         MONO_DEBUGGER_EVENT_EXCEPTION.
204         * mono-debug-debugger.c (mono_debugger_handle_exception): New
205         public function to send the debugger a notification for an
206         exception and inform it about a catch/finally clause.
208 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
210         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
211         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
212         fix 2.95 build. 
214         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
216 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
218         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
219         marshalled as [In,Out]. Fixes #58325.
221 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
223         * reflection.c (mono_method_body_get_object): Implement some fields.
225 2004-10-12  Martin Baulig  <martin@ximian.com>
227         * reflection.c (mono_reflection_bind_generic_parameters): Small
228         fix, correctly retrieve our parent from a generic instance.
230 2004-10-12  Martin Baulig  <martin@ximian.com>
232         * metadata.c (mono_metadata_generic_param_equal): We always have
233         an owner.
235         * class.c
236         (mono_class_from_generic_parameter): We need to have an owner.
237         (my_mono_class_from_generic_parameter): Likewise.
239         * reflection.c (mono_reflection_setup_generic_class): Renamed to
240         mono_reflection_create_generic_class() and added a new
241         mono_reflection_setup_generic_class().  
242         (mono_reflection_initialize_generic_param): If we're a nested
243         generic type and inherited from the containing class, set our
244         owner to the outer class.
246 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
248         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
250         * reflection.c (mono_method_body_get_object): New function to create
251         a MethodBody object.
253         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
255 2004-10-11  Martin Baulig  <martin@ximian.com>
257         * metadata.c (_mono_metadata_type_equal): Renamed to
258         do_mono_metadata_type_equal() and made static.
260 2004-10-11  Martin Baulig  <martin@ximian.com>
262         * appdomain.c: Bump corlib version number to 28.
264 2004-10-10  Martin Baulig  <martin@ximian.com>
266         * class-internals.h
267         (MonoGenericInst): Added `MonoGenericContainer *container'.
268         (MonoGenericMethod): Likewise.
269         (MonoGenericContext): Likewise.
270         (MonoGenericParam): Added `MonoGenericContainer *owner'.
272         * metadata.c
273         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
274         (do_mono_metadata_parse_generic_inst): Likewise.
275         (mono_metadata_parse_type_full): New public method.  This is the actual
276         mono_metadata_parse_type() implementation - with an additional
277         `MonoGenericContainer *' argument.
278         (mono_metadata_parse_array_full): Likewise.
279         (mono_metadata_parse_signature_full): Likewise.
280         (mono_metadata_parse_method_signature_full): Likewise.
281         (mono_metadata_parse_mh_full): Likewise.
282         (mono_type_create_from_typespec): Likewise.
283         (mono_metadata_interfaces_from_typedef_full): New public method;
284         this is similar to the other _full() methods, but we take a
285         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
286         (mono_metadata_parse_generic_param): Take an additional
287         `MonoGenericContainer *' argument and lookup the MonoGenericParam
288         from that container.
289         (mono_metadata_generic_param_equal): New static method to compare
290         two type parameters.
291         (_mono_metadata_type_equal): New static method; takes an
292         additional `gboolean signature_only' argument - if true, we don't
293         compare the owners of generic parameters.
294         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
295         with a TRUE argument - do a signature-only comparision.
297         * loader.c: Use the new _full() methods and pass the
298         MonoGenericContainer to them.
300         * object-internals.h (MonoReflectionTypeBuilder): Added
301         `MonoGenericContainer *generic_container' field.
302         (MonoReflectionMethodBuilder): Likewise.
304 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
306         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
307         case initial images of dynamic assemblies.
309         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
311         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
313         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
314         length of event->other array.
315         (typebuilder_setup_events): Ditto.
317         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
318         'assembly_by_name' and add an 'assemblies' list.
320         * assembly.h assembly.c: Add a new search hook for determining whenever
321         an assembly is already loaded. Use this instead of searching in the
322         loaded_assemblies list.
324         * domain.c appdomain.c: Implement the new search hook so loaded 
325         assemblies are now scoped by appdomain. Fixes #67727.
327 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
329         * threads.c (mono_thread_attach): Initialize synch_lock field so
330         mono_thread_detach works again.
332         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
333         'lib' too. Fixes #63130.
335 2004-10-06  Jackson Harper  <jackson@ximian.com>
337         * culture-info-tables.h: regenerated.
339 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
341         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
342         implemented by other interfaces in the result. Fixes #65764.
343         
344         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
345         Handle unloadable modules without crashing.
347         * image.c (load_modules): Revert the previous patch since modules must
348         have a fixed index inside the array.
349         
350         * image.c (load_modules): Don't include native modules in the modules
351         array.
353 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
355         * reflection.h: Add param_defaults field.
357         * reflection.c: Add support for parameter defaults in dynamic methods.
358         Fixes #64595.
360         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
361         an empty string when a type has no namespace. Fixes #64230.
363 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
365         * tabledefs.h: Added "internal" security actions to support non-CAS
366         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
367         Note: they do not seems to be used anymore in 2.0 (new metadata format)
369 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
371         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
372         constructor of abstract class. Fixes #61689.
374 2004-10-04  Martin Baulig  <martin@ximian.com>
376         * class-internals.h (MonoGenericContainer): New type.
377         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
378         `MonoGenericContainer *generic_container'.
379         (MonoClass): Replaced `gen_params' and `num_gen_params' with
380         `MonoGenericContainer *generic_container'.
382         * metadata.c (mono_metadata_load_generic_params): Return a
383         `MonoGenericContainer *' instead of a `MonoGenericParam *';
384         removed the `num' argument.
386 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
388         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
389         for dynamic images.
391         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
392         machine fields.
394         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
396         * reflection.c: Save pe_kind and machine values into the generated
397         image file.
399         * appdomain.c: Bump corlib version number.
401         * object-internals.h: Reorganize layout of LocalBuilder.
403         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
404         New helper function.
406         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
407         created MonoType for dynamic types. Fixes #66180.
409 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
411         * threadpool.c: the ares hashtable needs a critical section around it.
412         this prevents some nasty segfaults
414 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
416         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
417         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
418         bug 67324).
419         
420 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
422         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
423         
424 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
426         * image.c: Always canonicalize image file names, to avoid loading
427         the same assembly twice when referenced using a relative path.
429 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
431         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
433         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
435         * marshal.c: Fix warnings.
437 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
439         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
440         attempting to marshal the delegate_trampoline as the method_addr.
441         This patch has a static hashtable of marshalled delegates so that 
442         we can map delegate_trampoline addresses back to delegates.  This
443         allows a delegate passed to managed code to be passed back into native
444         code.  Fixes #67039
446 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
448         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
450         * reflection.c (method_encode_code): Align method headers properly.
451         Fixes #66025.
453 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
455         * marshal.c: In the runtime invoke wrapper, reset the abort
456         exception if it is cached. This avoids the automatic rethrowal of 
457         the exception after the catch of the wrapper. Also check for pending
458         interruptions before calling the managed method. This is done using
459         the new method emit_thread_force_interrupt_checkpoint, since the
460         normal checkpoint method is ignored when running the invoke wrapper.
461         * object.c: If the abort exception is rethrown, set the abort_exc
462         field of the thread, so it will be rethrown aftere every catch.
463         * threadpool.c: Only run an interruption checkpoint if what has been
464         requested is a stop of the thread (aborts will be ignored).
465         * threads.c: By default, a thread will now never be interrumped while
466         running the runtime invoke wrapper (this ensures that runtime_invoke
467         will always return to the caller if an exception pointer is provided).
468         There is a new special method mono_thread_force_interruption_checkpoint()
469         to force an interruption checkpoint even if running a protected
470         wrapper, which is used by the same runtime invoke wrapper to do a check
471         at a safe point.
473 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
475         * object.c, object-internals.h: Implemented mono_release_type_locks,
476         which releases the cctor locks held by a thread.
477         * threads.c, threads.h: In thread_cleanup, release cctor locks held
478         by a thread. Added mono_thread_exit() method to be used to safely stop
479         a thread.
481 2004-09-28  Raja R Harinath  <rharinath@novell.com>
483         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
484         Move null check before dereference.  Avoid indexing beyond the end
485         of the 'modules' array.
487 2004-09-28  Raja R Harinath  <rharinath@novell.com>
489         * metadata-internals.h (MonoImage): Add module_count field.
490         * image.c (load_modules): Set image->module_count.
491         (mono_image_load_file_for_image): Use image->module_count.
492         * reflection.c (mono_image_load_module): Append to image->modules array 
493         of dynamic assembly.
494         (mono_module_get_object): Fix loop to actually increment index.
495         Use image->module_count.
496         * assembly.c (mono_assembly_load_references): Use image->module_count.
497         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
498         Likewise.
500 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
502         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
503         Avoid assert on generic types.
505 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
507         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
509         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
511         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
512         function to convert a MarshalSpec structure to its managed counterpart.
514         * reflection.c: Fix warnings.
515         
516         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
517         field.
519         * icall.c (mono_create_icall_signature): Fix build.
521 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
523         * icall.c: Add MakePointType icall.
525         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
526         warnings.
528 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
530         * threadpool.c: reuse allocated slots in the queue.
532 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
534         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
536         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
538         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
539         previous change.
541         * tabledefs.h: Add constants for pinvoke attributes BestFit and
542         ThrowOnUnmappableChar.
544         * icall.c (ves_icall_Type_GetPacking): New icall.
546 2004-09-24  Martin Baulig  <martin@ximian.com>
548         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
550 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
552         * appdomain.c:
553         (mono_domain_set): allow setting a domain that is being unloaded.
554         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
555         being unloaded.
557 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
559         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
560         the GetCustomAttributes icall.
562 2004-09-23  Martin Baulig  <martin@ximian.com>
564         * object-internals.h (MonoReflectionGenericParam): Replaced
565         'has_ctor_constraint', `has_reference_type' and `has_value_type'
566         with `guint32 attrs'.
568 2004-09-23  Martin Baulig  <martin@ximian.com>
570         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
572 2004-09-23  Martin Baulig  <martin@ximian.com>
574         * object-internals.h (GenericParameterAttributes): New enum.
576 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
578         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
579         
580         * class.c (init_events): Fill out event->other field.
582         * class.c: Fix warnings.
584         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
586 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
588         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
589         walk which doesn't supply the IL offset.
591 2004-09-22  Martin Baulig  <martin@ximian.com>
593         * reflection.c (mono_reflection_setup_internal_class): If we're
594         System.ValueType, System.Object or System.Enum, set
595         `klass->instance_size' and create the vtable.
596         (mono_reflection_create_internal_class): If we're an enum type,
597         get the base class from our current corlib.
599 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
601         * reflection.h (MonoResolveTokenError): New type.
603         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
604         icall.
606         * icall.c: Add an 'error' argument to the ResolveToken icalls.
608 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
610         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
611         Support also calling constructors, but only for already allocated objects.
613 2004-09-17  Geoff Norton <gnorton@customerdna.com>
615         * reflection.c (type_get_qualified_name): If the klass is null
616         return the typename to avoid a NullRefEx.
617         (encode_cattr_value): Get the qualified name of the boxed type,
618         not the underlying enumtype.  Fixes #62984.
620 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
622         * marshal.c: Fix problems with previous checkin.
624 2004-09-21    <vargaz@freemail.hu>
626         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
627         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
629         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
631 2004-09-21  Geoff Norton <gnorton@customerdna.com>
633         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
634         should only return a type for pointers, arrays, and passbyref types.
635         Fixes bug #63841.
637 2004-09-21  Martin Baulig  <martin@ximian.com>
639         * domain.c (mono_debugger_check_runtime_version): New public
640         function.
642         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
644 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
646         * reflection.c: Added missing sort to the declarative security 
647         attributes table. MS implementation stops seeing the attributes if the
648         token number regress in the table (as shown by ildasm and permview).
650 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
652         * object-internals.h (MonoReflectionModule): Add 'token' field.
653         
654         * reflection.c (mono_reflection_get_token): Add support for Module
655         and Assembly.
656         (mono_module_get_object): Set 'token' field.
657         (mono_module_file_get_object): Set 'token' field.
659         * icall.c: Add new Assembly and Module icalls.
661         * appdomain.c: Bump corlib version.
663 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
665         * loader.h loader.c class.h class.c: Add helper functions for obtaining
666         tokens of metadata objects.
668         * reflection.h reflection.c (mono_reflection_get_token): New function
669         to obtain the token of a metadata object.
671         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
673 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
675         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
676         
677         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
679 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
681         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
682         * object-internals.h: Added 3 MonoArray* members to MonoReflection
683         AssemblyBuilder to access the permissions set in the class lib.
684         * reflection.c: Added security attributes encoding step in 
685         mono_image_build_metadata.
686         * tabledefs.h: Added new security actions defined in 2.0:
687         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
689 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
691         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
692         macro parameter.
694 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
696         * locales.c: nullify the ICU_collator member of CompareInfo when it is
697           finalized. There where random SIGSEVs at program termination, when
698           an object being finalized was trying to do a string comparison and
699           the current culture was already finalized.
701 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
703         * threads.c: call thread_cleanup before finishing the thread if we get
704         there.
706 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
708         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
709         assemblies from the parent. Fixes #65665.
711 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
713         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
714         modifiers.
716 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
718         * reflection.h: add prototype for mono_get_dbnull_object
719         * reflection.c: add prototypes for get_default_param_value_blobs 
720         and mono_get_object_from_blob for fussier compilers
722 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
724         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
725         false deadlock checks in class initialization.
727 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
729         * image.c (mono_image_addref): Fix comment.
731         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
732         possible.
734 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
736         * reflection.c (mono_param_get_objects): Modified to return
737         ParameterInfo.DefaultValue object.
739         (get_default_param_value_blobs):
740         (mono_get_object_from_blob):
741         (mono_get_dbnull_object): New helper routines. 
743         * object.c (mono_get_constant_value_from_blob): New helper routine
744         carved out from get_default_field_value ()
746         * object-internals.h (mono_get_constant_value_from_blob): Added
747         function declaration.
749 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
751         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
752         referenced assemblies. Fixes #62135.
754         * exception.h exception.c (mono_get_exception_file_not_found2): New
755         helper function.
757 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
759         * class.h class.c: Add mono_type_get_underlying_type ().
761 2004-09-09  Geoff Norton <gnorton@customerndna.com>
763         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
764         Fix GetTypes() to support dynamically created assemblies.
766 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
768         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
769         
770         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
771         previous patch.
773         * reflection.h reflection.c loader.c: Allow dynamic construction of
774         pinvoke methods. Fixes #65571.
775         
776         * reflection.c (mono_reflection_get_type): Revert previous change since
777         it causes regressions.
779 2004-09-08  Martin Baulig  <martin@ximian.com>
781         * class.c (class_compute_field_layout): Don't call
782         mono_class_layout_fields() for open generic instances.
784 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
785         * threads.c appdomain.c: fix typo in GC macro
787 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
789         * threads.c: don't call mono_thread_detach() in start_wrapper(),
790         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
792 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
794         * image.c (mono_image_close): Applied patch from 
795         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
796         assembly is loaded multiple times from data.
797         
798         * image.c (mono_image_open): Fix warning.
800 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
802         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
803         once. Fixes #58334.
804         
805         * reflection.c (mono_reflection_create_runtime_class): Initialize
806         klass->nested_classes. Fixes #61224.
808 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
810         * threads.c: sched_yield() on exit, to allow threads to quit.
812 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
814         * object.c (mono_unhandled_exception): Remove leftover debug code.
816 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
818         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
820 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
822         * marshal.c (emit_marshal_array): Really null terminate string arrays.
823         
824         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
826 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
828         * marshal.c (emit_marshal_array): Null terminate string arrays.
829         
830         * marshal.c (raise_auto_layout_exception): Fix warning.
832         * reflection.c (mono_param_get_objects): Initialize the default value
833         with DBNull.Value, not null. Fixes #62123.
835 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
837         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
838         throw an exception with a cute explanation.
840 2004-09-06  Dick Porter  <dick@ximian.com>
842         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
843         Close the new process's thread handle, as we don't use it.  The
844         handle stays around forever otherwise.
846 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
848         * object.c (arith_overflow): Fix warning.
850         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
851         calling conventions in method refs. Fixes #65352.
853         * reflection.c: Fix warnings.
855 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
857         * icall.c: Add a new icall for Array.Clear
859 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
861         * object.c: When allocating an array, we have to throw
862         an overflow exception if any of the lengths are < 0.
864 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
866         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
867         properly. Also move implementation of string array marshalling to 
868         managed code. Fixes #42316.
870 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
872         * assembly.c: provide more information when loading an assembly fails.
874 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
876         * filewatcher.c: don't expect the development fam package to be
877         installed.
879 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
881         * marshal.c: Make a copy of the signature cookie since it will be
882         freed by the caller.
883         
884         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
886         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
888         * metadata.c (mono_metadata_free_marshal_spec): New function to free
889         marshal specs.
891         * marshal.c: More refactoring.
892         
893         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
894         smaller functions.
896 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
898         * object.c: In mono_message_invoke, fill the output parameter array after
899           calling the managed method (it was done before the call). This fixes
900           bug #59299.
902 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
904         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
905         as well.
907 2004-09-02  Martin Baulig  <martin@ximian.com>
909         * class.c (mono_class_instance_size): Don't allow generic type
910         definitions or open generic instances.
911         (mono_class_array_element_size): If we're a value type, call
912         mono_class_instance_size() on the original class.
914         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
915         handle generic instances.
917         * mono-debug-debugger.c (write_type): Handle generic instances
918         like classes.
920 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
922         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
923         the allocation request fails. Fixes #65089.
925         * object.c (mono_runtime_free_method): Do not call mono_free_method.
926         
927         * object.c (mono_runtime_free_method): New function to free a dynamic
928         method.
930         * marshal.c (mono_delegate_free_ftnptr): New function to free the
931         delegate trampoline.
933         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
934         with hasthis as dynamic,
936         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
938         * domain.c (mono_jit_info_table_remove): New function to remove an
939         entry from the jit info table.
941         * class-internals.h (MonoMethod): Add 'dynamic' field.
943         * loader.c: Fix warnings.
945 2004-09-01  Martin Baulig  <martin@ximian.com>
947         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
948         instead of mono_debugger_lock() because the latter one is a no-op
949         unless running in the debugger.
951 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
953         * class.c (class_compute_field_layout): Classes with auto-layout or
954         reference fields are not blittable.
955         
956 2004-09-01  Dick Porter  <dick@ximian.com>
958         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
959         mono_image_get_filename() to get the assembly location.
961         * icall.c:
962         * metadata.h: Fix compile warnings
964 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
966         * class.c (class_compute_field_layout): System.Object is blittable.
968         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
969         as in/out. Fixes #59909.
971 2004-09-01  Martin Baulig  <martin@ximian.com>
973         * metadata.h (MONO_TYPE_ISREFERENCE): Call
974         mono_metadata_generic_inst_is_valuetype() if we're a generic
975         instance to check whether our underlying type is a reference type.
977 2004-09-01  Martin Baulig  <martin@ximian.com>
979         * metadata.c (mono_type_size): If we're a generic instance, call
980         mono_class_value_size() for value types.
982 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
984         * marshal.c: Implement more custom marshalling functionality. Fixes
985         #64915.
987 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
989         * mono-debug.c, debug-mono-symfile.c: add some locking love.
991 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
993         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
995         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
997         * icall.c: Fix some warnings.
999         * threads.c (abort_appdomain_thread): Fix unref errors.
1000         (mono_thread_current): Fix THREAD_DEBUG define.
1002 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
1004         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
1006         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
1008 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
1010         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
1011         string arrays.
1013 2004-08-28  Martin Baulig  <martin@ximian.com>
1015         * metadata.c
1016         (mono_metadata_generic_inst_is_valuetype): New public function.
1018         * metadata.h (MONO_TYPE_ISSTRUCT): Call
1019         mono_metadata_generic_inst_is_valuetype() if we're a generic
1020         instance to check whether our underlying type is a valuetype.
1022 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
1024         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
1025         #63768.
1027 2004-08-25  Martin Baulig  <martin@ximian.com>
1029         * loader.c (mono_get_method_from_token): Abstract methods can also
1030         be generic and thus have type parameters.
1032         * metadata-internals.h
1033         (MonoDynamicImage): Added `GPtrArray *gen_params'.
1035         * reflection.c (mono_image_get_generic_param_info): Don't create a
1036         metadata row, just add an entry to the `gen_params' array.
1037         (build_compressed_metadata): Sort the `gen_params' array and then
1038         actually create the metadata.
1040 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1042         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
1044 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
1046         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
1048 2004-08-24  Martin Baulig  <martin@ximian.com>
1050         * class.cs (mono_class_is_subclass_of): Like an interface, a
1051         generic instance also derives from System.Object.
1053 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
1055         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
1056         custom modifiers to be in any order. Fixes #61990.
1058 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
1060         * object.c: Register mono_object_new_fast icall.
1061         
1062         * object.c (mono_class_get_allocation_ftn): Return to calling
1063         mono_object_new_fast, since it seems faster to compute the object 
1064         size in unmanaged code than passing it as a parameter.
1066         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
1068         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
1069         this function with Boehm as the oom handler, so we don't have to check
1070         the result of GC_malloc.
1072         * object.c: Remove checks for oom.
1074         * object.h object.c (mono_class_get_allocation_ftn): New function to
1075         return the icall which can be used to allocate an instance of a given
1076         class. 
1078         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
1080         * class-internals.h: Add 'enabled' field.
1082 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
1084         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
1086 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
1087         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
1088         value 0x0010.
1090 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1092         * appdomain.c: use the Tls function for appdomain too,
1093         at Zoltan's request. Actually return in mono_context_get
1095         * appdomain.c, profiler.c, threads.c: use __thread
1097 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1099         * appdomain.c threads.c: Call GC_CreateThread on windows.
1101         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
1102         multiple libraries since this don't work on windows.
1104 2004-08-18  Martin Baulig  <martin@ximian.com>
1106         * class-internals.h
1107         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
1108         MonoMethodHeader.
1110         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
1111         MonoMethodNormal since we also need it for abstract and interface
1112         methods.
1114         * reflection.c
1115         (build_compressed_metadata): Sort the GenericParam table.
1116         (mono_image_create_token): Added `gboolean create_methodspec'
1117         argument; this is false when generating a MethodImpl token.
1118         (reflection_methodbuilder_to_mono_method): Abstract and interface
1119         methods may also have generic parameters.
1121 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1123         * appdomain.c: thread local alloc
1125 2004-08-17  Martin Baulig  <martin@ximian.com>
1127         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
1129         * icall.c
1130         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
1131         argument.
1133         * class.c (mono_type_get_full_name): New public function.
1134         (mono_type_get_name): Don't include the type arguments.
1136 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1138         * Makefile.am: Build static versions of libmetadata and libmonoruntime
1139         for inclusion into the mono executable.
1141 2004-08-16  Martin Baulig  <martin@ximian.com>
1143         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
1144         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
1146 2004-08-14  Martin Baulig  <martin@ximian.com>
1148         * class.c (dup_type): Also copy the `byref' field.
1150 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1152         * reflection.c (create_dynamic_mono_image): Revert the last change 
1153         since it breaks bootstrap.
1155 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1157         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
1159         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
1160         not free them with g_free.
1162 2004-08-11  Martin Baulig  <martin@ximian.com>
1164         * reflection.c (mono_reflection_setup_internal_class): Also call
1165         mono_class_setup_mono_type() if we already have a `tb->type.type'.
1167 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
1169         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
1170         called during default (first) AppDomain creation. Keep track of
1171         Evidence when loading assemblies.
1173 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1175         * opcodes.c, opcodes.h: reduce runtime relocations.
1177 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
1179         * culture-info.h, locales.c: fixes and chages to sue the new
1180         optimized format of the locale data.
1181         * culture-info-tables.h: regenerated.
1183 2004-08-06  Geoff Norton <gnorton@customerdna.com>
1184         
1185         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
1187 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
1189         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
1190         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
1191         * domain-internals.h: icall declaration.
1192         * icall.c: icall registration.
1193         * object-internals.h: New fields in MonoAssembly for CAS.
1195 2004-08-05  Duncan Mak  <duncan@ximian.com>
1197         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
1198         CEE_LDELEM_ANY.
1200 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1202         * reflection.c: fix to deal with object[] arrays in custom ctors
1203         (bug #62550).
1205 2004-08-05  Martin Baulig  <martin@ximian.com>
1207         * class.c (mono_class_array_element_size): Added support for
1208         generic instances and correctly handle "recursive" types.
1210 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1212         * assembly.c: Fix warnings.
1214 2004-08-04  Martin Baulig  <martin@ximian.com>
1216         * class.c
1217         (mono_type_get_name_recurse): Added `gboolean include_arity'
1218         argument specifying whether or not we should include the generic
1219         arity in the type name.
1220         (_mono_type_get_name): New static function.
1221         (mono_class_setup_vtable): If we're a generic instance, don't
1222         include the generic arity in the names of explicit method
1223         implementations.        
1225 2004-08-03  Martin Baulig  <martin@ximian.com>
1227         * class.c (mono_type_get_name_recurse): Enclose the generic type
1228         arguments in `<', '>'.
1230 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1232         * gc.c: make GC warning messages use the trace API, they are just
1233         noise to most of the users.
1235 2004-08-03  Martin Baulig  <martin@ximian.com>
1237         * debug-mono-symfile.c (read_string): Correctly read the string.
1239 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1241         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
1242         
1243         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
1244         icalls.
1245         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
1247 2004-07-30  Martin Baulig  <martin@ximian.com>
1249         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
1250         Reflect latest symbol writer changes.   
1252 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1254         * object.c: always create an object if null is passed
1255         to Invoke() where a valuetype is expected.
1257 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
1259         * marshal.c (mono_marshal_init): make managed
1260         signatures match native ones better for 64bits.
1262 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1264         * appdomain.c: hack to build correctly the private bin path on windows.
1265         Fixes bug #61991.
1267 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1269         * assembly.c: Load mscorlib from the correct framework directory
1270           (mono/<version>/mscorlib.dll).
1271         * appdomain.h: Added prototypes for new functions.
1272         * internals.h: Added some prototypes.
1273         * domain.c: When initializing the runtime, get from the executable and
1274           the configuration files the runtime version that the app supports.
1275           Added support methods for reading app.exe.config. Added list of versions
1276           supported by the JIT. Added two new methods: mono_init_from_assembly,
1277           which initializes the runtime and determines the required version from
1278           the provided exe file, and mono_init_version, which initializes
1279           the runtime using the provided version.
1280         * icall.c: Get machine.config from version-specific directory.
1281         * reflection.c: When generating an image, embed the version number
1282           of the current runtime.
1284 2004-07-28  Dick Porter  <dick@ximian.com>
1286         * socket-io.c
1287         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
1288         returned sockaddr size before creating the remote address object.
1289         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
1290         61608.
1292 2004-07-28  Dick Porter  <dick@ximian.com>
1294         * locales.c (string_invariant_compare_char): Fix invariant char
1295         compares between upper and lower cases.  Fixes bug 61458.
1297 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
1298         
1299         * marshal.c: actually cache stelem.ref wrappers.
1300         
1301 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
1303         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
1304         sections and remove the mono_cli_rva_map () function.
1306 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1308         * debug-mono-symfile.c: fix one more endianess issue, from a patch
1309         by Geoff Norton (<gnorton@customerdna.com>).
1311 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1313         * class.c: fix class loads for pointer types (typeof(int) !=
1314         typeof(int*)).
1316 2004-07-27  Martin Baulig  <martin@ximian.com>
1318         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
1319         reading the debugging information from an external ".mdb" file.
1321 2004-07-24  Martin Baulig  <martin@ximian.com>
1323         * reflection.c (mono_image_get_type_info): Only write a class
1324         layout entry if we actually have a size or a packing size.
1326 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1328         * reflection.c (type_get_fully_qualified_name): 
1329         insert cast to get type checking of ?: with non-gcc compilers
1331 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1333         * rand.c: use g_getenv for both lookups of
1334         MONO_EGD_SOCKET
1336 2004-07-17  Martin Baulig  <martin@ximian.com>
1338         * reflection.c (mono_reflection_bind_generic_method_parameters):
1339         Set `gmethod->reflection_info'.
1341 2004-07-17  Martin Baulig  <martin@ximian.com>
1343         * class.c (mono_class_create_from_typedef): Insert the newly
1344         created class into the hash table before computing the interfaces
1345         since we could be called recursively.
1347 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1349         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
1350         function to implement stelem.ref in managed code
1351         * class-internals.h, debug-helpers.c: a new wrapper type
1352         for the above.
1354 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1356         * gc.c: allow GC handles to work even when no GC is compiled in.
1357         Fix part of bug #61134 (GetAddrOfPinnedObject).
1359 2004-07-13  Peter Williams  <peter@newton.cx>
1361         * process.c (complete_path): Make sure we don't attempt to execute
1362         directories.
1364 2004-07-12  Geoff Norton <gnorton@customerdna.com>
1366         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
1367           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
1368           and will add/subtract the hour if needed
1370 2004-07-12  Martin Baulig  <martin@ximian.com>
1372         * reflection.c (mono_field_get_object): If we have
1373         `field->generic_info', take the attributes from
1374         `field->generic_info->generic_type'.    
1376 2004-07-12  Martin Baulig  <martin@ximian.com>
1378         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
1379         This function must be called before initializing the runtime.
1380         (mono_debug_init_1): New function; call this after initializing
1381         the runtime, but before loading the assembly.  It tells the
1382         debugger to load corlib and the builtin types.
1384         * mono-debug-debugger.c: Did some larger changes in the debugging
1385         code; support recursive class declarations, make sure we actually
1386         add all classes.
1388 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1390         * debug-helpers.c: undo my previous patch and fixed the real issue in
1391         ../mini/exceptions-x86.c
1393 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1395         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
1396         when no HOME env. variable was set and a NullRef was thrown in a .cctor
1397         called from other .cctors.
1399 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
1401         * loader.c: Removed the mono_loader_wine_init hack now that we are
1402         doing a managed version of Windows.Forms.
1404 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1406         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
1407         threadpool.c, threads.c: remove static data from rootset.
1409 2004-07-09  Dick Porter  <dick@ximian.com>
1411         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
1412         Don't do any more processing if the matched length was 0.  It was
1413         increasing the size of the string before.  Fixes bug 61167.
1415 2004-07-09  Dick Porter  <dick@ximian.com>
1417         * socket-io.h:
1418         * socket-io.c
1419         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1420         Add support for SO_PEERCRED if its available.
1422 2004-07-09  Peter Bartok <pbartok@novell.com>
1423         * loader.c: winelib.exe.so error message is now only displayed if
1424         MONO_DEBUG is set. To help us avoid questions when people are trying
1425         out the new Managed.Windows.Forms.
1427 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
1429         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
1430         for isinst and castclass wrappers.
1432         * class-internals.h icall.c: Move registration and lookup of JIT icalls
1433         to libmetadata from the JIT, so they could be used by the marshalling
1434         code and the interpreter.
1436         * marshal.c: Register marshalling related JIT icalls here instead of
1437         in mini.c. Use CEE_MONO_ICALL instead of the family of 
1438         CEE_MONO_PROC<x> opcodes to call marshalling functions.
1440         * metadata.h: Remove unneeded marshalling conversions.
1442         * opcodes.c: Update for new opcodes.
1443         
1444 2004-07-08  Martin Baulig  <martin@ximian.com>
1446         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
1447         (mono_debug_get_domain_data): Make this function static.
1449 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1451         * gc.c, object.h: add nice GC handle API for embedders.
1453 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
1455         * reflection.c: more changes for the new api
1457         * object.c: When we reflect on a field w/ a constant value, it
1458         will not have a memory location, so we must access metadata. Also,
1459         allow easier reading of strings so that we can read them from
1460         the constant data.
1462         * class.c (mono_class_layout_fields): no need for literal fields here.
1464         * class-internals.h: api changes for const fields
1466         * icall.c (ves_icall_get_enum_info): use new apis for const fields
1468 2004-07-06  Martin Baulig  <martin@ximian.com>
1470         * mono-debug.h: Increment version number to 44.
1472         * mono-debug.c (mono_debug_add_wrapper): The second argument is
1473         now a gpointer, rewrote this whole method.
1475         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
1476         function.  Add information about the wrapper in a new "misc table".
1478         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
1479         for the new misc table.
1481 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
1483         * metadata-internals.h image.c: Add a cache for helper signatures.
1485         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
1487 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
1489         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
1490         delegates from a delegate. Fixes #61033.
1491         
1492         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
1493         marshalling of stringbuilder arrays. Fixes #59900.
1495 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1497         * icall.c: Add EnumBuilder:setup_enum_type icall.
1499 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
1501         * icall.c: Added a new icall for the property version of
1502         OffsetOfStringData.
1504 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1506         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
1507         it has a constant size across platforms.
1509         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
1510         stack trace.
1512 2004-06-29  Martin Baulig  <martin@ximian.com>
1514         * mono-debug.c (mono_debug_add_method): Protect the whole function
1515         in mono_debugger_lock(), not just parts of it.
1517 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1519         * reflection.c: make sure padding bytes in heaps are zeroed.
1521 2004-06-24  David Waite  <mass@akuma.org>
1523         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
1524         image.c, loader.c, locales.c, marshal.c, metadata.c,
1525         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
1526         string-icalls.c, threads.c: change to C90-style comments from C99 /
1527         C++ -style
1529 2004-06-24  Dick Porter  <dick@ximian.com>
1531         * threads.c
1532         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
1533         return createdNew.  Fixes bug 60412.
1535         * threads-types.h: 
1536         * icall.c: Add createdNew parameter to CreateMutex icall
1538 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1540         * reflection.c, object-internals.h: save default value in params.
1542 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1544         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
1545         no need to build a new path combining that with the application base.
1546         Fixes bug #60442.
1548 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
1550         * reflection.c: fixed minor standard compliance issues.
1552 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1554         * reflection.c: fixed issue with encoding some custom attributes
1555         (arrays in properties and fields, bug #60411).
1557 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1559         * reflection.c: fix start address when copying the public key token.
1561 2004-06-23  Martin Baulig  <martin@ximian.com>
1563         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
1564         the `exc' object in a static object to put it into the GC's root set.
1566 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
1568         * reflection.c: make mono_reflection_setup_internal_class ()
1569         callable a second time to setup a new parent class.
1571 2004-06-23  Dick Porter  <dick@ximian.com>
1573         * threads.c: Check for WAIT_IO_COMPLETION return values.
1575 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
1577         * appdomain.c: Removed the g_free on the public key token. Now copy 
1578         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
1579         * assembly.c: Added public key token string value when loading 
1580         assemblies. Fix bug #60439.
1581         * icall.c: Added missing informations (like public key) in 
1582         GetReferencedAssemblies. Fix #60519.
1583         * image.h: Changed definition for public key token from const char*
1584         public_tok_value to guchar public_key_token [17];
1585         * reflection.c: Updated for changes to public key token.
1587 2004-06-22  Lluis Sanchez Gual
1589         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
1590         for the field in base classes.
1592 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1594         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
1595         mark headers as not supported, they are installed only for use by the
1596         debugger.
1598 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
1600         * *.c, *.h: avoid namespace pollution in public headers.
1602 2004-06-21  Martin Baulig  <martin@ximian.com>
1604         * exception.c (mono_get_exception_security): It's in
1605         "System.Security", not in "System".
1607         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
1608         the exception classes.
1610 2004-06-21  Martin Baulig  <martin@ximian.com>
1612         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
1613         Protect the exception object from being finalized.
1615 2004-06-21  Martin Baulig  <martin@ximian.com>
1617         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
1618         public function.
1620 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
1622         * reflection.c: Load the assembly in mono_reflection_type_from_name,
1623         if it was not loaded before. Fix parts of #60439.
1625 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
1627         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
1628         code that was broken since Ben's change: wrappers are now
1629         dependent on the method signature only again.
1631 2004-06-21  Martin Baulig  <martin@ximian.com>
1633         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
1634         added interface support.
1636 2004-06-21  Martin Baulig  <martin@ximian.com>
1638         * class.c (mono_vtable_get_static_field_data): New public method.
1640 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
1642         * filewatcher.c : Windows build fix to be compliant with API changes.
1644 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1646         * class.h, class.c: more accessors.
1647         * metadata.h, metadata.c: prepare for hiding MonoType and
1648         MonoMethodSignature: people should use the accessors from now on
1649         outside of the tree.
1651 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1653         * *.c, *.h: more API cleanups.
1655 2004-06-18  Jackson Harper  <jackson@ximian.com>
1657         * assembly.c: Trace loading assemblies.
1658         * loader.c: Trace loading native libraries.
1659         * mono-config.c: Trace loading config files.
1660         
1661 2004-06-18  Dick Porter  <dick@ximian.com>
1663         * locales.c: Tell ICU the lengths of strings, it can cope with
1664         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
1666 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1668         * image.c: swapped name/filename;
1670 2004-06-18  Martin Baulig  <martin@ximian.com>
1672         * mono-debug-debugger.c (write_class): Write the parent class at
1673         the end of the header.
1675 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1677         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
1679 2004-06-17  Raja R Harinath  <rharinath@novell.com>
1681         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
1682         (bundle_obj): New conditional define.
1683         (BUILT_SOURCES): Remove.
1684         ($(bundle_srcs)): Make parallel-make safe.
1685         (libmonoruntime_la_LIBADD): Make unconditional.
1686         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
1687         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
1689 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
1691         * culture-info-tables.h: It was inconsistent with the latest
1692           supp info files.
1694 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
1696         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
1697         be loaded.
1699         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
1700         with gcc 2.95.
1702 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1704         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
1705         cleaned up public header threads.h.
1707 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1709         * Makefile.am, *.c, *.h: more API cleanups.
1711 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1713         * Makefile.am: removed monosn from compilation.
1714         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
1715         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
1716         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
1717         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
1718         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
1719         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
1721 2004-06-15  Jackson Harper  <jackson@ximian.com>
1723         * assembly.c: Make locales lower case when searching the GAC for
1724         assemblies. gacutil will always make locales lowercase when
1725         installing so this effectively makes them case insensitive.
1726         
1727 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
1729         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
1730         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
1731           parameter which allows to choose whether the wait can be interrupted or 
1732           not. Also added the method mono_monitor_enter(), which locks the monitor
1733           using an infinite wait and without allowing interruption.
1734           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
1735           interrupted.
1736         * object.h: Added new fields in MonoThread. suspend_event holds the event
1737           used to susped/resume the thread. synch_lock is the lock object to use for
1738           modifying the thread state.
1739         * threads.c: Use the new synch_lock object for locking, instead of "this",
1740           which can generate deadlocks.
1741           Moved thread state change in Thread.Sleep and Thread.Join from managed
1742           to unmanaged code. This avoids a deadlock when the thread was suspended
1743           just after acquiring the thread lock.
1744           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
1745           Implemented Thread.Suspend using an event instead of ThreadSuspend,
1746           which is not fully implemented in the io-layer.
1747         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
1749 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
1751         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
1752         threads-types.h: more API cleanups.
1754 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1756         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
1757         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
1758         threadpool.c, threads.c: first pass at the exported API cleanup.
1760 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1762         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
1764 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1766         * icall.c: added internalGetHome.
1768 2004-06-14  Dick Porter  <dick@ximian.com>
1770         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
1771         possible to return successfully when '.' or '..' were the only
1772         entries in a directory, but were skipped.  The MonoIOStat was not
1773         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
1774         Fixes bug 59574.
1776 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1778         * reflection.c: make binaries run on .Net 1.1 by default.
1780 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1782         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
1784 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
1786         * marshal.c: keep track of struct size with explicit layout
1787         (bug #59979).
1789 2004-06-12  Martin Baulig  <martin@ximian.com>
1791         * mono-debug-debugger.c: Comment out a debugging g_message().
1793 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1795         * reflection.c, reflection.h: do not free custom attrs that are cached.
1796         * icall.c: use braces to make code clearer.
1798 2004-06-11  Martin Baulig  <martin@ximian.com>
1800         * class.h (MonoInflatedField): New type.
1801         (MonoClassField): Replaced `MonoType *generic_type' with
1802         `MonoInflatedField *generic_info'.
1804         * icall.c
1805         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
1807 2004-06-11  Martin Baulig  <martin@ximian.com>
1809         * reflection.c (mono_image_create_method_token): Correctly encode
1810         varargs methods.
1812 2004-06-11  Martin Baulig  <martin@ximian.com>
1814         * metadata.c (mono_metadata_parse_method_signature): When parsing
1815         a MethodDef which has VarArgs, also set sentinelpos if we don't
1816         have any parameters.
1818 2004-06-11  Martin Baulig  <martin@ximian.com>
1820         * verify.c (mono_method_verify): In CEE_CALL, use
1821         mono_method_get_signature() to get the method's signature, unless
1822         we're a PInvoke method.
1824 2004-06-10  Jackson Harper  <jackson@ximian.com>
1826         * assembly.c: Use <path>/lib/mono/gac for the extra paths
1827         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
1828         logical name as the supplied path is just a prefix to the gac not
1829         the direct path to it.
1830         
1831 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
1833         * reflection.c: make the token for a created method match
1834         the token of the MethodBuilder it was created from
1835         (IKVM requires this behaviour now).
1837 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
1839         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
1840         reflection.c, socket-io.c: leak fixes.
1842 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
1844         * icall.c: handle sentinel pos in vararg methods in position different
1845         from 0.
1847 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1849         * culture-info-tables.h: freshly generated.
1851 2004-06-09  Martin Baulig  <martin@ximian.com>
1853         * loader.c (mono_get_method_constrained): Call `mono_class_init
1854         (constrained_class)'.   
1856 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
1858         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
1859         any methods. Fixes #59629.
1861 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1863         * culture-info-tables.h: reflecting locale-builder updates.
1865 2004-06-08  Dick Porter  <dick@ximian.com>
1867         * object.h:
1868         * locales.c: Fixed compile warnings, including a real bug in
1869         CompareInfo_internal_compare.
1870         
1871 2004-06-08  Dick Porter  <dick@ximian.com>
1873         * locales.c
1874         (ves_icall_System_Globalization_CompareInfo_internal_index):
1875         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1876         Double-check the resuls of usearches, because ICU currently
1877         ignores most of the collator settings here.  Fixes bug 59720.
1878         
1879 2004-06-08  Dick Porter  <dick@ximian.com>
1881         * locales.c
1882         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1883         Fix memory leak and segfault-causing typo.  No idea how this one
1884         lasted so long without being noticed.
1886 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
1888         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
1889         any methods. Fixes #59629.
1891 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1893         * assembly.c:
1894         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
1895         own the critical section before). Removed dead code (that's done
1896         in the preload hook).
1898         (mono_assembly_load_with_partial_name): call the preload hook.
1900 2004-06-08  Martin Baulig  <martin@ximian.com>
1902         * metadata.c (mono_metadata_signature_alloc): Default
1903         `sentinelpos' to -1.
1905         * reflection.c (mono_image_get_array_token): Likewise.
1907 2004-06-08  Martin Baulig  <martin@ximian.com>
1909         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
1911         * metadata.c (mono_metadata_parse_method_signature): When parsing
1912         a MethodDef which has VarArgs, set sentinelpos.
1914         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
1915         `gint16' since we're using -1 for non-varargs methods.
1917         * reflection.c
1918         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
1919         (method_encode_signature): Added varargs support.
1920         (method_builder_encode_signature): Likewise.
1921         (mono_image_get_varargs_method_token): New static method.
1922         (mono_image_create_method_token): New public method; this is
1923         called via an icall instead of mono_image_create_token() when
1924         calling a varargs method.       
1926 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
1928         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
1930 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1932         * culture-info-tables.h : Reflecting the latest locale-builder that
1933           fixed empty array representation ({} to {0}).
1935 2004-06-07  Jackson Harper  <jackson@ximian.com>
1937         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
1938         looking up extra gac paths. This allows MONO_GAC_PATH to act
1939         exactly like a prefix.
1940         
1941 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1943         * reflection.c (mono_reflection_type_from_name): Make a copy of the
1944         type name before modifying it. Fixes #59405.
1946 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1948         * culture-info.h: added fields for "all datetime patterns".
1949         * locales.c: (  ves_icall_System_Globalization_CultureInfo
1950           _construct_datetime_format ()): fill xxx_patterns fields.
1951         * object.h: added fields for "all datetime patterns" to
1952           MonoDateTimeFormatInfo.
1953         * culture-info-tables.h: reflecting locale-builder updates.
1955 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1957         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
1958         the event has no add and remove methods. Fixes #59629.
1960 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1962         * object.c: Fixed possible integer overflow when allocating large
1963         strings.
1965 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1967         * culture-info-tables.h: reflecting locale-builder updates.
1969 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1971         * culture-info-tables.h: reflecting locale-builder updates.
1973 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1975         * culture-info-tables.h: reflecting locale-builder updates.
1977 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
1979         * threads.c: Made Thread.Sleep abortable.
1981 2004-06-02  Martin Baulig  <martin@ximian.com>
1983         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
1985         * debug-mono-symfile.h: Bumped symbol file version number to 37.
1987 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
1989         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
1991 2004-05-30  Jackson Harper  <jackson@ximian.com>
1993         * reflection.c: Do not hardcode assembly versions or public key
1994         tokens anymore. All of this except the corlib section was dead
1995         code anyways.
1996         
1997 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1999         * object.c (mono_runtime_invoke_array): Automatically create boxed
2000         objects for byref valuetypes if needed. Fixes #59300.
2001         
2002         * object.c (mono_method_return_message_restore): Handle 
2003         MONO_TYPE_OBJECT as well.
2005 2004-05-28  Jackson Harper  <jackson@ximian.com>
2007         * reflection.c: The modified type encoding was causing build
2008         problems. Reverted for now.
2009         
2010 2004-05-28  Jackson Harper  <jackson@ximian.com>
2012         * reflection.c/h: Take an assembly ref so that we dont create
2013         fully qualified names when encoding types in the same assembly as
2014         the custom attribute being emitted.
2015         * appdomain.c: Increment version number.
2016         
2017 2004-05-26  Duncan Mak  <duncan@ximian.com>
2019         * icall.c
2020         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
2021         Set the full version number (major, minor, build, revision).
2023 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
2025         * marshal.c (emit_struct_conv): increment src/dst after blit
2026         (mono_marshal_get_managed_wrapper,
2027         mono_marshal_get_native_wrapper): make sure we have marshalling
2028         info before marshalling params (info computation affects
2029         blittable)
2031         * class.c (class_compute_field_layout): correctly deal with
2032         blittable
2033         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
2034         value types (as per what windows dows by default)
2035         (mono_class_setup_mono_type): System.ValueType is blittable
2036         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
2037         blittable
2039         * marshal.c (mono_marshal_load_type_info): flag types  as
2040         non-blittable if the native layout doesn't match the managed
2041         layout
2043 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2045         * appdomain.c: don't add stuff in the private search path that is
2046         above the application base. If application base is not set, there's
2047         no private search path.
2049 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
2051         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
2052         byref struct arguments in native->managed marshalling.
2054 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
2056         * marshal.c (mono_marshal_get_runtime_invoke): correctly
2057         cache methods using signature (special case for methods
2058         that are value type or string class)
2059         
2060         * image.c (mono_image_close): clean up allocated GSList's
2061         in runtime_invoke_cache.
2063 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2065         * mono-config.c: set the correct path for mono_cfg_dir on windows when
2066         there's no MONO_CFG_DIR environment variable defined.
2068 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2070         * threads.c: windows version must be >= 0x0500 to include OpenThread.
2072 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
2074         * threadpool.c: Really wait for 500ms after the async call, even if the wait
2075           is interrumped.
2076         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
2077           before waiting for it, and call CloseHandle after the wait to unref it.
2078           This will make sure that handles are not disposed too early.
2080 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2082         * appdomain.c:
2083         * appdomain.h:
2084         * icall.c: removed
2085         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
2086         needed now.
2088         * object.c: se the application_base only for the domain that runs
2089         Main. Fixes bug #59216,
2091 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2093         * appdomain.c:
2094         * object.c: only the domain in which Main is run have
2095         SetupInformation.ConfigurationFile set, so moved a few lines from
2096         appdomain.c to object.c.
2098 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2100         * appdomain.c: we tried to load [name].(dll|exe), but according
2101         to bug #57710, we must also try [culture]/[name].(dll|exe) and
2102         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
2103         There's a test case attached to bug #58922.
2105 2004-05-27  Dick Porter  <dick@ximian.com>
2107         * icall.c:
2108         * file-io.c: Implemented icalls for locking and unlocking regions
2109         in a file.
2110         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
2111         FALSE on error (fixes both compiler warning and real bug.)
2113 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
2115         * culture-info-tables.h: reflecting locale-builder updates.
2117           (Added missing ChangeLog entry for 05/26)
2119 2004-05-27  Jackson Harper  <jackson@ximian.com>
2121         * locales.c: Fix some cut and paste errors.
2122         
2123 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2125         * mono-config.c: set the correct path for config. directory on windows.
2127 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2129         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
2130           on win32.
2132 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2134         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
2135         from pinvoke functions.
2136         
2137         * marshal.c (mono_ftnptr_to_delegate): Implement this.
2139 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2141         * culture-info-tables.h: reflecting locale-builder updates.
2143 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2145         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
2146         #59086.
2148 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2150         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
2151         * icall.c: Modified icalls for RNG.
2152         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
2153         Windows (CryptoAPI).
2155 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2157         * locales.c: Fix build.
2159 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
2161         * culture-info-tables.h: reflecting locale-builder updates.
2163 2004-05-25  Jackson Harper  <jackson@ximian.com>
2165         * locales.c: When creating the current culture use the $LANGs
2166         specific culture. So DateTimeFormat and NumberFormat entries are created.
2167         
2168 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2170         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
2171         a char array as parameter.
2173 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
2175         * image.c: In mono_image_open(), always use an absolute path name to
2176           look for already loaded images.
2178 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
2180         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
2181         missing in the windows build (like older cygwin include files).
2183 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
2185         * icall.c: Fixed check for possible integer overflow in Buffer_
2186         BlockCopy icall. Replaced comments style // by /* */.
2188 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
2190         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
2191         
2192         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
2193         check after MONO_VTADDR. Fixes pinvoke2.exe.
2195         * marshal.h marshal.c metadata.h: Add beginnings of support for
2196         ftnptr -> delegate marshalling.
2198 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
2200         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
2201         * threads.c: Fix warnings.
2203 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2205         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
2206         * icall.c: Registered icalls for Suspend and Resume.
2207         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
2208           Thread.Abort.
2209         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
2210         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
2211         * process.c: Use WaitForSingleObjectEx.
2212         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
2213           checkpoints.
2214         * threads.c, threads.h: Make use of new Ex wait methods. Improved
2215           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
2216           for Suspend and Resume. Added new mono_thread_stop, used for stoping
2217           background threads. Added basic support for Abort in Windows.
2218           Start new threads using a managed delegate invoke wrapper. This wrapper
2219           has an interruption checkpoint that is needed since an interruption
2220           can be requested before the thread leaves the unmanaged code that starts 
2221           the thread.
2222         * marshal.c: Added interruption checkpoint after every native call, and
2223           also before managed calls for wrappers called from unmanaged code to
2224           go into managed code.
2225         * object.h: Added new field in MonoThread to keep track of interruption
2226           requests.
2228 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
2230         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
2231         calls.
2233 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2235         * appdomain.c:
2236         * assembly.c:
2237         * gc.c:
2238         * locales.c:
2239         * mono-config.c:
2240         * rand.c: getenv -> g_getenv (windows!)
2242         * process.c: complete_path is also used on non-windows platforms.
2244 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2246         * icall.c: new signature for Process_Start.
2248         * process.[ch]: new signature for Process_Start. If we're on windows
2249         and UseShellExecute is false, we have to search for the program by
2250         ourselves if we don't get a full path.
2252 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
2254         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
2255         marshalling and call CleanUpNativeData if needed. Fixes #58646.
2257 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2259         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
2260         Fixes bug #58373.
2262 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2264         * process.c: use double quotes to quote program name and arguments on
2265         windows. Fixes bug #58575.
2267 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2269         * file-io.c: don't return "." and ".." when using windows Find*File.
2271 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
2273         * marshal.c: Don't pass wrappers to message init because method 
2274         addressed used to lookup metadata. part of remoting[2|3] fix.
2276 2004-05-15  Jackson Harper  <jackson@ximian.com>
2278         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
2279         path is essentially the same as MONO_PATH except that it points to
2280         GACs instead of lib directories.
2281         * loader.h: The user gac is gone so we dont need function to
2282         enable/disable it.
2283         * mono-config.c: user gac option is now gone.
2284         
2285 2004-05-15  Jackson Harper  <jackson@ximian.com>
2287         * culture-info.h: Make defines more consistent, add calendar data
2288         to the culture info table.
2289         * culture-info-tables.h: Add basic calendar data. Basically
2290         everyone gets default gregorian until all the data is
2291         updated.
2292         * locales.c: Use the new consistent defines. Set calendar data for
2293         culture info objects.
2294         * object.h: add a field for calendar data to CultureInfo
2295         
2296 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
2298         * image.c: image->runtime_invoke_cache is keyed on signatures now.
2299         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
2300         a signature.
2301         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
2302         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
2303         an extra param that is the pointer of the method to invoke. The IL for
2304         the invoke method is no longer specific to the method, but to the
2305         signature of the method. Thus, we can share the same code for multiple
2306         methods. This reduces the number of methods that have to be compiled.
2308 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2310         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
2312         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2314         * icall.c: Optimize Buffer.BlockCopy.
2316 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2318         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
2319         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
2320         quote). Changed them to "MMMM yyyy".
2322 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
2324         * rand.c
2325         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
2327 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
2329         * reflection.h: Updated after changes to managed structures.
2331         * appdomain.c: Bump corlib version.
2333 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2335         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
2336         windows.
2338 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2340         * Makefile.am: link to ../os/libmonoos.la on windows.
2342         * assembly.c:
2343                 -If MONO_DEBUG, warn about non-existing directories in
2344                 MONO_PATH.
2345                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
2346                 compile time variable.
2347                 -Removed init_default_path and call mono_set_rootdir from
2348                 libmonoos.a instead (windows only).
2350         * assembly.h: declare mono_assembly_getrootdir().
2352         * domain.c:
2353         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
2355         * loader.c: s/getenv/g_getenv/
2357 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2359         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
2361         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
2363         * metadata.h: Add new marshalling conversions.
2365         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
2366         function.
2368         * reflection.c (mono_reflection_get_type): Lookup the type in all
2369         modules of a multi-module assembly. Fixes #58291.
2371 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2373         * threads.c: Before aborting a background, set the StopRequested
2374         state.  This avoids throwing the Abort exception.
2375         In mono_thread_manage, don't continue with the shutdown until all
2376         aborted threads have actually stopped.
2378 2004-05-10  Jackson Harper  <jackson@ximian.com>
2380         * locales.c: Remove the modifier from culture names.
2381         
2382 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2384         * Makefile.am: monosn is not installed any more. It has been deprecated
2385         in favor of sn.
2387 2004-05-07  Jackson Harper  <jackson@ximian.com>
2389         * locales.c
2390         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
2391         Fix array construction, add bailout if the length is 0.
2393 2004-05-07  Dick Porter  <dick@ximian.com>
2395         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
2396         machine doesn't have a DNS entry.  Patch by Urs Muff
2397         (umuff@quark.com), fixes bug 57928.
2399 2004-05-06  Jackson Harper  <jackson@ximian.com>
2401         * reflection.c: Handle null PublicTokens properly. alloc mem for
2402         assembly names culture so we dont crash when freeing it.
2403         
2404 2004-05-06  Jackson Harper  <jackson@ximian.com>
2406         * assembly.c: Check the usergac when loading with partial names.
2407         
2408 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2410         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
2411         does nothing for now (not required for Linux/Windows) but the class
2412         library can call it (and a newer or modified runtime could need it).
2413         * icall.c: Registred icall.
2415 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2417         * loader.c: prints a message on module loading error we set MONO_DEBUG
2418         environment variable.
2420 2004-05-05  Jackson Harper  <jackson@ximian.com>
2422         * appdomain.c: Handle PublicKeyToken=null properly.
2423         
2424 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2426         * environment.c|h: Added icall ves_icall_System_Environment_
2427         GetOSVersionString to get the current OS version as a string.
2428         * icall.c: Registred icall.
2430 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
2432         * object.c: in mono_object_get_virtual_method(), take into account that
2433         non-virtual methods don't have a slot in the vtable. Check needed when
2434         the object is a proxy.
2436 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2438         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
2439         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
2441         * object.c (mono_class_compute_gc_descriptor): Fix warning.
2443         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
2444         passed when a valuetype is expected.
2446         * object.c (mono_unhandled_exception): Only set the exit code if the
2447         exception happens in the main thread. Fixes thread5.exe.
2449         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
2450         invalid names. Fixes #58047.
2452 2004-05-03  Jackson Harper  <jackson@ximian.com>
2454         * assembly.c: This line was committed accidently and is unneeded.
2455         
2456 2004-05-03  Jackson Harper  <jackson@ximian.com>
2458         * icall.c: Add new icall for Assembly::LoadWithPartialName
2459         * assembly.c/.h: new function that probes the GAC to load partial
2460         assembly names by Paolo Molaro.
2461         
2462 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2464         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
2465         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
2466         (type_get_fully_qualified_name): Added PublicKeyToken when building a
2467         full type name.
2469 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2471         * appdomain.c: fixed check for 'neutral' culture and removed warning.
2472         * reflection.c: fix bug when parsing a full type name and Version is not
2473         the last thing in the string.
2475 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
2477         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
2478         crashes when it is freed.
2480 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2482         * assembly.c: print the compat warning to stderr.
2484 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
2486         * assembly.c (mono_assembly_load_references): Add a compatibility
2487         hack to run old applications that might be still referencing the
2488         3300-based assemblies, only do this for System.xxx.
2490 2004-05-01  Jackson Harper  <jackson@ximian.com>
2492         * appdomain.c: If the culture is neutral we set it to "".
2493         
2494 2004-04-29  Jackson Harper  <jackson@ximian.com>
2496         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
2498 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2500         * string-icalls.c: added low overhead function for copying chars
2501         * icall.c: added needed icall for the above function
2503 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2505         * icall.c: fix return value of get_global_assembly_cache.  Implemented
2506         Environment.GetLogicalDrives.
2508 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2510         * rand.c: try and talk to egd or prngd
2511         for random bytes if opening devices fail.
2513 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2515         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
2516         alignment for the type using the native alignment of its members 
2517         instead of using klass->min_align.
2519         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
2521 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2523         * file-io.c:
2524         * socket-io.c: added check for sys/aio.h.
2526 2004-04-28  Dick Porter  <dick@ximian.com>
2528         * threads.c: Don't abort a thread thats already aborting, when
2529         terminating everything.
2531 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2533         * icall.c: added 2 new async calls for Socket.
2535         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
2536         IO on *nix systems.
2538         * threadpool.c: removed unused variable.
2540 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
2542         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
2544 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2546         * locales.c: put back string_invariant_tolower () and
2547         string_invariant_toupper ().
2549 2004-04-26 David Waite <mass@akuma.org>
2551         * file-io.h:
2552         * socket-io.h:
2553         * threads.h:
2554         * unicode.h: remove comma from end of enumeration declarations
2556 2004-04-26 David Waite <mass@akuma.org>
2558         * debug-mono-symfile.h:
2559         * decimal.c:
2560         * mono_debug.h:
2561         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
2564 2004-04-26  Jackson Harper  <jackson@ximian.com>
2566         * appdomain.c: Increment version number.
2567         
2568 2004-04-26  Jackson Harper  <jackson@ximian.com>
2570         * appdomain.c: Set assembly references public token value when
2571         PublicKeyToken is specified, not the hash_value. Free public token
2572         values when free assembly name data. Previously the public key
2573         token was hex decoded, however we are using hex encoded public key
2574         tokens, so this is not neccasary.
2575         * assembly.c: Lookup assemblies in the gac if their public token
2576         value is set. Add function to allow enabling user gac
2577         lookups. Specify whether or not the assembly was loaded from the
2578         GAC. Compare full assembly names when checking the cache for
2579         assemblies (Temporarily disabled see comment in code). Remove
2580         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
2581         specifies trace-loader they get extra info to stdout on the
2582         loading of assemblies.
2583         * image.h: Add a field for an assembly references public token
2584         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
2585         whether an assembly has been loaded from the GAC.
2586         * image.c: Remove a corlib -> mscorlib name mapping.
2587         * loader.h: Add function to enable/disable the user gac.
2588         * mono-config.c: Check if the usergac is enabled in the config
2589         file.
2590         * icall.c: New icall to determine whether or not an assembly has
2591         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
2592         * tabldefs.h: Add constant for assemblyref flag that specifies a
2593         full public key is used instead of a public token.
2594         * reflection.c: Remove mscorlib -> corlib mappings. Set
2595         PublicTokenValue instead of hash value. This value is a hex
2596         string so it does not need to be expanded.
2598 2004-04-26  Martin Baulig  <martin@ximian.com>
2600         * mono-debug-debugger.c (mono_debugger_initialize): Set
2601         `mono_debugger_initialized' before calling mono_debug_lock().
2603 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
2605         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
2606           InternalToUpper/InternalToLower.
2607         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
2608           removed invariant culture shortcut.  This is now done in managed code.
2609         * locales.c: (string_invariant_toupper/tolower) removed.
2611 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2613         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
2614         Added Poll internal call.
2616         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
2617         call for Poll. Select was too heavy for polling a single socket.
2619         * threadpool.[ch]: added mono_threadpool_cleanup.
2620         * threads.c: use it. Don't use Thread_Abort on windows.
2622 2004-04-23  Martin Baulig  <martin@ximian.com>
2624         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
2626 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
2628         * icall.c: Registred new icalls for key pair protection and added an
2629         icall for Environment.GetFolderPath on Windows.
2630         * security.c|h: Added new icalls for key pair protection.
2632 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2634         * socket-io.c: don't display the non-supported family warning for known
2635         families. Now this is not displayed on windows when checking support
2636         for IPv4/IPv6.
2638 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2640         * class.c: don't display the layout warning for static fields.
2642 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
2644         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
2645         * locales.c, locales.h: Added new icalls for culture-specific
2646         Char.ToLower and Char.ToUpper.
2648 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2650         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
2651         by David Waite.
2653 2004-04-20  Martin Baulig  <martin@ximian.com>
2655         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
2656         of the type name before passing it to mono_reflection_type_from_name().
2658 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2660         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
2661         encodings here. Fixes #56965.
2663 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
2665         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2666         fix test on strstr result not that I can see anything that
2667         relies on the result.
2669 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2671         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
2672         Fixes #57081.
2674         * marshal.c (mono_marshal_get_string_encoding): New helper function.
2676         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
2677         function to determine which marshalling to use for strings. Fixes
2678         #56965.
2680         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
2682         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
2684 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
2686         * icall.c: #include mono-config.h
2688 2004-04-15  Jackson Harper  <jackson@ximian.com>
2690         * culture-info-tables.h: Fix date formats for en-US culture.
2691         
2692 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
2694         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
2695         ThreadPool.SetMinThreads.
2696         * threadpool.c: Implemented ThreadPool.GetMinThreads and
2697         ThreadPool.SetMinThreads.
2699 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2701         * mono-config.c: also load the .config file in the directory
2702         where the assembly was found.
2704 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2706         * assembly.c: load per-assembly config files.
2707         * icall.c: decrapified code to get the config dir and moved to
2708         mono-config.c.
2709         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
2710         per-assembly config files. When doing a dll map lookup give precedence
2711         to the per-assembly data.
2713 2004-04-14  Martin Baulig  <martin@ximian.com>
2715         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
2716         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
2717         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
2719         * mono-debugger-debugger.c: While the debugger is locked, remember
2720         whether the symbol tables have changes and send one single
2721         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
2723 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2725         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
2727         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
2728         function.
2730         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
2731         account when marshalling string arrays. Fixes #56965.
2733 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2735         * icall.c: Add new icalls mapping for security.
2736         * security.c|h: Add internal calls for WindowsIdentity,
2737         WindowsImpersonationContext and WindowsPrincipal.
2739 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
2741         * class.c: Added comment to ensure the System.MonoDummy class
2742         is removed when no longer necessary
2744 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2746         * appdomain.c: Pass arguments to the bootstraping exceptions to
2747         minimize JITed methods at boot
2749         * metadata.c (mono_exception_from_name_two_strings): Allow for the
2750         second string to be null.
2752         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2753         Change the protocol to minimize the JIT methods at startup.  Now
2754         it Returns the internal codepage, if the value of "int_code_page"
2755         is 1 at entry, and we can not compute a suitable code page
2756         number, returns the code page as a string.
2758 2004-04-13  Jackson Harper  <jackson@ximian.com>
2760         * culture-info-tables.h: Fix number of decimal digits for all
2761         english locales.
2763 2004-04-13  Jackson Harper  <jackson@ximian.com>
2765         * icall.c: Clairfy out of sync error message. It is not always
2766         your corlib that is out of sync.
2768 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
2770         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
2771         properties when only the set accessor is overriden. Fixes #55874.
2773 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
2775         * assembly.c (mono_assembly_load_references): Make this thread safe.
2776         Fixes #56327.
2778 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2780         * monosn.c: Add missing initialization calls.
2782 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
2784         * locales.c:
2785         ves_icall_System_Globalization_CultureInfo_construct_number_format
2786         Fix g_assert so it compiles on fussier compilers re int/ptr
2787         mismatch
2789 2004-04-08  Dick Porter  <dick@ximian.com>
2791         * socket-io.h:
2792         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
2793         53992.  Also rearrange the code so that the internal calls return
2794         an error value and exceptions are thrown from managed code.
2796         * icall.c: Add type info to the socket icalls.
2798 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2800         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
2801         owes me a beer.
2803 2004-04-07  Martin Baulig  <martin@ximian.com>
2805         * class.c (mono_class_from_generic_parameter): Don't default
2806         `klass->parent' to `mono_defaults.object_type'.
2808 2004-04-07  Martin Baulig  <martin@ximian.com>
2810         * reflection.c (mono_reflection_initialize_generic_parameter): Set
2811         `param->pklass->reflection_info'.       
2813 2004-04-07  Jackson Harper  <jackson@ximian.com>
2815         * culture-info-tables.h: Fix date separator symbol.
2816         
2817 2004-04-07  Martin Baulig  <martin@ximian.com>
2819         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
2820         from System.Type to System.MonoType.
2822 2004-04-07  Martin Baulig  <martin@ximian.com>
2824         * reflection.h
2825         (MonoReflectionGenericParam): Added `has_reference_type' and
2826         `has_value_type' fields.
2828         * reflection.c (mono_image_get_generic_param_info): Encode the
2829         correct flags if we have the `class' or `struct' constraint.
2831 2004-04-07  Martin Baulig  <martin@ximian.com>
2833         * reflection.h
2834         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
2836 2004-04-07  Jackson Harper  <jackson@ximian.com>
2838         * appdomain.c: Revert extra patches, just wanted to bump the
2839         version number.
2840         
2841 2004-04-07  Jackson Harper  <jackson@ximian.com>
2843         * Makefile.am: Add culture-info private headers.
2844         * icall.c: Add new icalls for contructing locales.
2845         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
2846         * locales.h: Declare new culture info construction methods.
2847         * object.h: Add new fields used to avoid the CultureMap to
2848         MonoCultureInfo.
2849         * culture-info.h: Definition of structs used in the culture info
2850         tables.
2851         * culture-info-tables.h: Autogenerated tables that contain culture
2852         info data. This file was generated with the locale-builder tool.
2853         * appdomain.c: Incement corlib version number.
2854         
2855 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
2857         * appdomain.c: (mono_runtime_init) move mono_thread_init
2858         to before mono_object_new calls so critical sections
2859         are initialized before use.
2861 2004-04-07  Martin Baulig  <martin@ximian.com>
2863         * icall.c
2864         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
2865         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
2866         (ves_icall_MonoGenericParam_initialize): Removed.
2867         (monogenericparam_icalls): Removed.
2868         (generictypeparambuilder_icalls): Added new table for
2869         System.Reflection.Emit.GenericTypeParameterBuilder.
2871         * reflection.c
2872         (mono_reflection_define_generic_parameter): Removed.
2873         (mono_reflection_initialize_generic_parameter): This is now called
2874         from GenericTypeParameterBuilder's .ctor.
2876 2004-04-06  Martin Baulig  <martin@ximian.com>
2878         * class.c (mono_class_init): Don't inflate nested classes in a
2879         generic instance.
2880         (mono_type_get_name_recurse): Include the generic arguments for
2881         generic instances and generic type declarations.
2882         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
2883         (_mono_class_get_instantiation_name): Removed.
2884         (mono_class_create_generic): Always use `gklass->name' as our name.
2886         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
2888         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
2889         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
2890         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
2891         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
2892         closed generic methods here.
2894         * reflection.c
2895         (mono_reflection_generic_inst_get_nested_types): Removed.
2896         (inflate_mono_method): Copy the generic parameters from the
2897         MonoMethodHeader into out MonoGenericMethod.
2899 2004-04-06  Martin Baulig  <martin@ximian.com>
2901         * row-indexes.h
2902         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
2904         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
2906         * reflection.c (build_compressed_metadata): If we have any entries
2907         in the GenericParam, MethodSpec or GenericParamConstraint tables,
2908         set the header version to 1.1.
2910 2004-04-06  Martin Baulig  <martin@ximian.com>
2912         * class.c (mono_class_init): If we're a generic instance,
2913         initialize our nested classes, too.
2914         (_mono_class_get_instantiation_name): Deal with the new `!%d'
2915         suffix. 
2917 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2919         * process.c: quote the argument passed to the shell on windows.
2921 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2923         * threads.c (mono_alloc_special_static_data): Allow this to be
2924         called during startup.
2926 2004-04-02  Martin Baulig  <martin@ximian.com>
2928         * icall.c
2929         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
2931 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2933         * icall.c: Fix build.
2935 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2937         * Makefile.am: Added security.c|h.
2938         * icall.c: Added icall for get_UserName;
2939         * security.c: New file for security related icalls. Added function
2940         get_UserName for System.Environment (fix #56144).
2941         * security.h: New. Header file for security.c
2943 2004-04-02  Dick Porter  <dick@ximian.com>
2945         * icall.c: Deleted the icalls that were obsoleted some time ago
2946         by the ICU string code, and which were mixed into the icall
2947         rearranging.  Fixes bug 55969.
2949         * string-icalls.h: 
2950         * string-icalls.c: Deleted the code that those icalls reference.
2952 2004-04-01  Martin Baulig  <martin@ximian.com>
2954         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
2956         * class.c (mono_class_from_generic_parameter): Don't set 
2957         TYPE_ATTRIBUTE_INTERFACE.
2958         (my_mono_class_from_generic_parameter): Likewise.
2960 2004-04-01  Martin Baulig  <martin@ximian.com>
2962         * loader.c (find_method): Added an optional `MonoClass *ic'
2963         argument to search in a specific interface.
2964         (mono_get_method_constrained): New public function.
2966 2004-04-01  Martin Baulig  <martin@ximian.com>
2968         * reflection.c (mono_image_get_generic_field_token): Use the
2969         `handleref' cache here.
2971 2004-04-01  Martin Baulig  <martin@ximian.com>
2973         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
2975         * reflection.c (create_generic_typespec): Use the `typespec' hash
2976         here, not the `typeref' one.    
2978 2004-04-01  Martin Baulig  <martin@ximian.com>
2980         * class.c (mono_class_inflate_generic_type): Moved the
2981         functionality into a new static inflate_generic_type() which
2982         returns NULL if it didn't do anything.  Only increment the
2983         `mono_stats.inflated_type_count' if we actually inflated
2984         something.
2985         (mono_class_get_full): Check the classes type to see whether we
2986         need to inflate it; also inflate MONO_TYPE_(M)VAR.
2988 2004-04-01  Jackson Harper  <jackson@ximian.com>
2990         * reflection.c: Set culture for assembly references.
2991         
2992 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2994         * reflection.[ch], icall.[ch], Fix support for pinning variables.
2996 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2998         * assembly.c:
2999         (do_mono_assembly_open): the critical section also covers
3000         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
3002 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3004         * threads.c:
3005         (mono_manage_threads): abort the background threads when finishing.
3006         Fixes bug #47232.
3008 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3010         * gc.c: only close the done_event handle if there was no timeout.
3011         C-ified comments.
3013 2004-03-30  Martin Baulig  <martin@ximian.com>
3015         * icall.c (icall_entries): It's called "System.Activator", not
3016         "System.Activation".    
3018 2004-03-30  Martin Baulig  <martin@ximian.com>
3020         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
3021         (mono_class_create_from_typespec): Likewise.
3023 2004-03-30  Martin Baulig  <martin@ximian.com>
3025         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
3026         `has_ctor_constraint' and `initialized'.
3028 2004-03-30  Martin Baulig  <martin@ximian.com>
3030         * reflection.c (encode_new_constraint): New static function to add
3031         the constructor constraint attribute to a type parameter.
3032         (encode_constraints): Call encode_new_constraint() if necessary.
3034         * reflection.h
3035         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
3037         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
3038         
3039 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
3041         * reflection.c, icall.c: add support for pinning variables. 
3043 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
3045         * marshal.c (mono_marshal_get_managed_wrapper):
3046         init bool local with zero rather than null.
3048 2004-03-29  Martin Baulig  <martin@ximian.com>
3050         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
3051         the "official" behavior here.
3052         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
3054 2004-03-29  Martin Baulig  <martin@ximian.com>
3056         * icall.c: Reflect latest API changes.
3058 2004-03-29  Martin Baulig  <martin@ximian.com>
3060         * loader.c (mono_get_method_from_token): Also call
3061         mono_metadata_load_generic_params () for abstract and interface
3062         methods; replace the type arguments in the method signature with
3063         the ones which are loaded from the metadata.
3065 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
3067         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
3068         of the lock is not the current thread. MS.NET don't do it, in spite of
3069         what the documentation says. See bug #56157.
3071 2004-03-28  Martin Baulig  <martin@ximian.com>
3073         * class.c (mono_class_init): Don't call init_properties() and
3074         init_events() for generic instances; set `prop->parent' when
3075         inflating properties.
3077         * reflection.c (mono_generic_inst_get_object): Call
3078         `mono_class_init (ginst->klass)'.
3079         (mono_type_get_object): Only create a MonoGenericInst if your
3080         generic type is a TypeBuilder.
3081         (do_mono_reflection_bind_generic_parameters): Only set
3082         `ginst->is_dynamic' if our generic type is a TypeBuilder.
3084 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
3086         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
3087         Fixes #56091.
3089 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3091         * icall.c: added Kill_internal icall.
3092         * process.[ch]: added Kill_internal icall.
3094 2004-03-25  Martin Baulig  <martin@ximian.com>
3096         * class.h (MonoStats): Added `generic_instance_count',
3097         `inflated_method_count', `inflated_type_count' and
3098         `generics_metadata_size'.       
3100 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3102         * reflection.c: no warnings now.
3104 2004-03-25  Martin Baulig  <martin@ximian.com>
3106         * class.c (mono_class_get_full): New public function; does a
3107         mono_class_get(), but also takes a `MonoGenericContext *'.
3109         * loader.c (mono_field_from_memberref): Renamed to
3110         `field_from_memberref', made static and added `MonoGenericContext *'
3111         argument.
3112         (mono_field_from_token): Added `MonoGenericInst *' argument.
3113         (method_from_memberef): Likewise.
3114         (mono_get_method_from_token): Likewise.
3115         (mono_get_method_full): New public function; does a
3116         mono_get_method(), but also takes a `MonoGenericContext *'.
3118         * verify.c (mono_method_verify): Get the method's generic context
3119         and pass it to mono_field_from_token(), mono_get_method_full() and
3120         mono_class_get_full().
3122 2004-03-25  Martin Baulig  <martin@ximian.com>
3124         * class.c (mono_class_inflate_generic_type): Take a
3125         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
3126         `MonoGenericMethod *'.
3128 2004-03-25  Martin Baulig  <martin@ximian.com>
3130         * loader.h (MonoMethodInflated): Store the MonoGenericContext
3131         instead of the MonoGenericMethod here.
3133 2004-03-25  Martin Baulig  <martin@ximian.com>
3135         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
3136         each time we create a new MonoGenericInst, we also create a new
3137         context which points back to us.
3139         * class.c (inflate_method): Use `ginst->context' instead of
3140         creating a new context.
3142         * loader.c (method_from_memberref): Use
3143         `klass->generic_inst->context' instead of creating a new context.
3145 2004-03-25  Martin Baulig  <martin@ximian.com>
3147         * class.h (MonoGenericContext): New struct.
3148         (MonoGenericMethod): Removed `generic_inst'.
3150         * class.c (mono_class_inflate_generic_method): Take a
3151         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
3153 2004-03-25  Martin Baulig  <martin@ximian.com>
3155         * loader.h (MonoMethodInflated): New typedef.
3157         * metadata.h (MonoMethodSignature): Removed `gen_method', make
3158         `generic_param_count' consume just 30 bits, added `is_inflated'
3159         and `has_type_parameters' flags (one bit each).
3161         * class.c (mono_class_inflate_generic_method): Create a
3162         MonoMethodInflated instead of a MonoMethodNormal and set
3163         `is_inflated' in the method signature.
3165         * class.h (MonoGenericMethod): Removed `generic_method'.
3167 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
3169         * image.c: Make sure the name of a MonoImage is always an absolute path.
3170           This fixes bug #54415.
3172 2004-03-24  Martin Baulig  <martin@ximian.com>
3174         * class.c (mono_class_setup_vtable): If we're a generic instance,
3175         use our generic type's vtable size.
3177 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
3179         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
3180         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
3181         problems.
3183 2004-03-23  Martin Baulig  <martin@ximian.com>
3185         * class.h (MonoDynamicGenericInst): Added `int count_events' and
3186         `MonoEvent *events'.
3188         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
3189         (typebuilder_icalls): Added "get_event_info"; calls
3190         mono_reflection_event_builder_get_event_info(). 
3192         * reflection.c (mono_reflection_generic_inst_initialize): Added
3193         `MonoArray *events'.
3194         (mono_reflection_event_builder_get_event_info): New function.
3196 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
3198         * object.h: add mono_type_initialization_init
3200         * object.c (mono_runtime_class_init): 
3201         implement class constructor synchronization rules
3202         to cope with threading issues.  
3203         add mono_type_initialization_init
3205         * appdomain.c (mono_runtime_init): call 
3206         mono_type_initialization_init
3208         * class.h: removing initializing field from MonoVTable
3210 2004-03-23  Martin Baulig  <martin@ximian.com>
3212         * class.c (my_mono_class_from_generic_parameter): Use
3213         `param->name' if it's not NULL. 
3215 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
3217         * class.c: do not insert non-virtual methods in the vtable.
3218         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
3219         that means the method is non-virtual. This never would have
3220         happened before.
3222 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
3224         * profiler.c: Added lock for accessing coverage_hash.
3226 2004-03-22  Martin Baulig  <martin@ximian.com>
3228         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
3229         `method->method->signature->generic_param_count != 0' to make it
3230         work for interface methods.
3232 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3234         * process.c: quote the string passed to the shell using g_shell_quote.
3236 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3238         * threads.c:
3239         (mono_threads_manage): don't remove the finalizer thread and self
3240         from the threads hash table so that mono_thread_manage can be called
3241         more than once.
3243 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3245         * process.c: quote the arguments when UseShellExecute is true. Fixes
3246         bug #55790.
3248 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3250         * threads.c: set mono_thread_detach as a cleanup routine for every
3251         thread. This way it's always executed upon thread termination, either
3252         aborted or finished normally. No more xsp hangs!
3254 2004-03-17  Martin Baulig  <martin@ximian.com>
3256         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
3257         `int count_nested' and a `MonoType **nested'.
3259         * reflection.c (mono_reflection_bind_generic_parameters): Moved
3260         most of the functionality into a new static
3261         do_mono_reflection_bind_generic_parameters() and don't take a
3262         `MonoType *nested_in' argument any more.  Don't compute nested
3263         types here.
3264         (mono_reflection_generic_inst_get_nested_types): New public method
3265         to get nested types.
3267         * class.c (mono_class_create_generic): Set `klass->nested_in' if
3268         we're a nested class.
3270         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
3271         mono_reflection_generic_inst_get_nested_types() to compute the
3272         nested types.
3274 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3276         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
3277         descriptive error message under windows.
3278         
3279 2004-03-17  Martin Baulig  <martin@ximian.com>
3281         * class.c (dup_type): Added `const MonoType *original' argument;
3282         copy the attrs from the original type.
3284 2004-03-17  Martin Baulig  <martin@ximian.com>
3286         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
3287         `m->generic_inst_cache' here.
3289 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3291         * exception.h exception.c: Add stack_overflow_exception.
3293 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3295         * threadpool.c:
3296         (overlapped_callback): call SetEvent *after* invoking the callback.
3297         No need to call CloseHandle.
3299 2004-03-16  Martin Baulig  <martin@ximian.com>
3301         * reflection.c (mono_image_get_fieldref_token): Take a
3302         `MonoReflectionField *' instead of a `MonoClassField *' and a
3303         `MonoClass *'; store the `MonoReflectionField *' in the hash.
3305 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3307         * appdomain.c: don't add the culture to the filename we're looking for
3308         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
3310 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3312         * locales.c: don't ignore symbols when doing case insensitive compares.
3313         Thanks Dick! Fixes bug #54046.
3315         * threads.c: surround 'threads' usage with enter/leave in
3316         mono_thread_manage.
3318 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
3320         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
3321         implicitly marshalled as [Out]. Fixes #55450.
3323         (mono_marshal_get_runtime_invoke): Zero out the result if there is
3324         an exception.
3326 2004-03-16  Martin Baulig  <martin@ximian.com>
3328         * class.c (mono_class_from_generic_parameter): Use the actual
3329         parameter name. 
3331 2004-03-16  Martin Baulig  <martin@ximian.com>
3333         * reflection.c (type_get_signature_size): New static function.
3334         Compues the size of the type in a method signature.
3335         (method_get_signature_size): New static function; calls
3336         type_get_signature_size() to compute the actual size of the
3337         method's signature.
3338         (method_encode_signature): Use method_get_signature_size() to get
3339         the signature's size rather than using `nparams * 10'.
3341 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3343         * file-io.h: define here WapiOverlapped on windows. I don't want the
3344         regular OVERLAPPED one.
3346         * file-io.c:
3347         * threadpool.c: somehow, BindIoCompletionCallback is not found.
3348         Disabling AIO on windows.
3350 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3352         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
3353         bug #55385.
3355 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3357         * appdomain.c: upgraded corlib version.
3359         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
3360         and BeginWrite. Allow opening files for asynchrnous operations.
3362         * file-io.h: new struct that maps FileStreamAsyncResult.
3363         * icall.c: added new icalls.
3364         * process.[ch]: support setting child process environment variables
3365         and use the SHELL or COMSPEC when UseShellExecute is true.
3367         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
3368         callback for async. IO is here and also BindHandle.
3370         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
3371         from here.
3373 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
3375         * reflection.c (create_custom_attr): Allow len == 0.
3377         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
3378         computation on big-endian machines.
3380 2004-03-13  Martin Baulig  <martin@ximian.com>
3382         * class.h (MonoGenericInst): Added `int count_ifaces'.
3384         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
3385         `ginst->count_ifaces' instead `klass->interface_count' since we
3386         may get called before the vtable is created.
3388         * loader.c (mono_method_get_param_names): If we're a generic
3389         instance, return and don't initialize the class.
3391         * reflection.c (mono_reflection_setup_generic_class): Don't call
3392         ensure_runtime_vtable().
3393         (mono_reflection_bind_generic_parameters): Set
3394         `ginst->count_ifaces'.
3396 2004-03-11  Jackson Harper <jackson@ximian.com>
3398         * icall.c:
3399         * unicode.c:
3400         * unicode.h: Remove unused System.Char icalls.
3401         
3402 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
3404         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
3405         code when we P/Invoke the first library in Windows.Forms, instead
3406         of when we first open the assembly.
3408         * assembly.c: Drop the lookup from here.
3410 2004-03-10  Martin Baulig  <martin@ximian.com>
3412         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
3413         class for properties, fields and events.  Finally fixes #54945.
3415 2004-03-10  Martin Baulig  <martin@ximian.com>
3417         * metadata.c (mono_metadata_class_equal): New static function;
3418         checks whether two generic instances or two generic parameters are
3419         equal.
3420         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
3421         compare classes.        
3423 2004-03-10  Martin Baulig  <martin@ximian.com>
3425         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
3427         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
3428         argument and write it into the `reflection_info' field.
3430         * icall.c
3431         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
3432         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
3434 2004-03-09  Jackson Harper  <jackson@ximian.com>
3436         * char-conversions.h: use 8 bits for numeric data its all we need
3437         * icall.c: numeric data is only 8 bits now.
3439 2004-03-09  Martin Baulig  <martin@ximian.com>
3441         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
3443         * class.c (init_properties, init_events): Initialize the new
3444         `parent' field.
3446         * reflection.c (typebuilder_setup_properties): Likewise.
3447         (typebuilder_setup_events): Likewise.
3449         * reflection.h (MonoEventInfo): Replaced `parent with
3450         `declaring_type' and `reflected_type'.
3452         * icall.c (ves_icall_get_property_info): Distinguish between
3453         declaring and reflected type.
3454         (ves_icall_get_event_info): Likewise.
3456 2004-03-09  Martin Baulig  <martin@ximian.com>
3458         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
3459         (ves_icall_Type_GetField): Correctly set field->klass.
3461 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
3463         * loader.h: Fix warning.
3465 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
3467         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
3468         library routine if present.  Notice that it will still continue
3469         executing even if its missing, for those working on the Gtk#
3470         edition of Windows.Forms.
3472         * assembly.c (do_mono_assembly_open): If loading the
3473         System.Windows.Forms call mono_loader_wini_init.
3475 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
3477         * class.h: Added MonoRemoteClass struct.
3478         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
3479         function for MonoStrings.
3480         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
3481         Added internal call for getting the proxy type.
3482         * marshal.c: Get the type of transparent proxies from its remote_class.
3483         Added methods that generate the IL for type checks and casts:
3484         mono_marshal_get_isinst, mono_marshal_get_castclass, 
3485         mono_marshal_get_proxy_cancast.
3486         * marshal.h: Declaration of the previous new methods.
3487         * object.c: Added new moethods for creating and updating MonoRemoteClass
3488         instances: mono_remote_class, mono_upgrade_remote_class, 
3489         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
3490         * verify.c: FIx transparent_proxy_fields layout.
3491         * appdomain.c: Bump corlib version.
3493 2004-03-04  Jackson Harper  <jackson@ximian.com>
3495         * icall.c: Add icall to access char conversion tables.
3496         * char-conversions.h: Character conversion tables.
3497         * Makefile.am: Add char-conversions.h private header file.
3498         
3499 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
3501         * appdomain.c (unload_thread_main): Increase unloading timeout to
3502         10 sec as a temporary workaround for Nant problems.
3504 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
3506         * gc.c: Add checks for GC_enable and GC_disable.
3508         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
3509         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
3510         (bug #54988).
3511         
3512 2004-02-27  Martin Baulig  <martin@ximian.com>
3514         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3515         `MonoReflectionType *' instead of a `MonoType *'.
3517 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
3519         * gc.c (run_finalize): Avoid finalizing the object representing the
3520         finalizer thread.
3521         (finalizer_thread): Fix warning.
3523 2004-02-25  Martin Baulig  <martin@ximian.com>
3525         * class.c (_mono_class_get_instantiation_name): Added `int offset'
3526         argument for nested types.
3527         (mono_class_create_generic): Added support for nested generictypes.
3529         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
3530         `GList *nested'.
3532         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
3534         * reflection.c (method_encode_signature): Increase the minimum
3535         value of `size' from 10 to 11.
3536         (mono_reflection_bind_generic_parameters): Take `int type_argc'
3537         and `MonoType **types' arguments instead of the `MonoArray
3538         *types'; added `MonoType *nested_in'.  Recursively instantiate
3539         nested classes. 
3541 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
3543         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
3544         stack_overflow_ex members which are used by exception handling.
3546         * appdomain.c (mono_runtime_init): Initialize the new members.
3548         * gc.c (mono_gc_enable): New helper function.
3549         * gc.c (mono_gc_disable): New helper function.
3551 2004-02-23  Martin Baulig  <martin@ximian.com>
3553         * icall.c: I must have been really stupid - make it actually work
3554         this time ;-)
3556 2004-02-23  Martin Baulig  <martin@ximian.com>
3558         * loader.c (method_from_memberref): Only inflate the method if
3559         it's in another klass.
3561 2004-02-23  Martin Baulig  <martin@ximian.com>
3563         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
3564         (mono_class_init): If we're a generic instance and an interface,
3565         compute `class->interface_id'; also create `class->interfaces'
3566         here and inflate them.
3568         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
3569         `ginst->is_open'.
3570         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
3572         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
3574 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
3576         * reflection.c (method_encode_code): Improved the error message
3577         generated by the exception.
3579 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3581         * icall.c: Martin did not do what he said in the ChangeLog for
3582         2004-02-18, but put back the changes for properties and events.
3583         Commenting those changes out again and adding comment to bug #54518.
3584         
3585         * process.c: removed warning.
3587 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
3589         * marshal.c (emit_struct_conv): Print an error message instead of
3590         asserting when a type does not have the StructLayout attribute.
3592 2004-02-20  Martin Baulig  <martin@ximian.com>
3594         * reflection.c (mono_type_get_object): Also use the cache for
3595         generic instances.
3596         (mono_reflection_bind_generic_parameters): Always compute
3597         `ginst->ifaces'.        
3599 2004-02-20  Martin Baulig  <martin@ximian.com>
3601         * class.h (MonoGenericMethod): Removed `klass'.
3603         * class.c (mono_class_inflate_generic_method): Added `MonoClass
3604         *klass' argument.
3606 2004-02-20  Martin Baulig  <martin@ximian.com>
3608         * reflection.c (method_encode_methodspec): Actually use the
3609         uninflated signature for the memberref.
3611 2004-02-20  Martin Baulig  <martin@ximian.com>
3613         * class.h (MonoGenericMethod): Removed `declaring'.
3615         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
3616         is NULL, compute it here.
3618 2004-02-20  Martin Baulig  <martin@ximian.com>
3620         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
3622         * metadata.c (mono_metadata_generic_inst_hash): New method.
3623         (mono_metadata_generic_inst_equal): New method.
3625         * reflection.c (mono_reflection_bind_generic_parameters): Use the
3626         `klass->image->generic_inst_cache' cache to avoid creating
3627         duplicate MonoGenericInst's.
3629         * class.c (mono_class_inflate_generic_type): Use the cache.
3631 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3633         * object.c: fixed gc descriptor calculation for embedded valuetypes.
3635 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3637         * icall.c: added Socket.WSAIoctl icall.
3639         * socket-io.[ch]: implemented
3640         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
3642 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
3644         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
3646 2004-02-18  Urs C Muff  <umuff@quark.com>
3648         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
3649         this work on PPC and other big-endian architectures.
3651         * debug-mono-symfile.h: Prepended the names of all the `guint32'
3652         fields with an underscore to make sure they're only accessed by
3653         the read32() macro.
3655 2004-02-18  Martin Baulig  <martin@ximian.com>
3657         * icall.c: Put the klass->refclass changes back for methods and
3658         fields, but not for properties and events.  We're currently not
3659         distinguishing between DeclaringType and ReflectedType for
3660         properties and events, that's what caused the regressions.
3662 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3664         * object.c:
3665         (mono_async_result_new): the handle can be NULL.
3667         * threadpool.c: Use an event instead of a semaphore, don't initialize
3668         it until needed. This saves quite a few semaphores from being created
3669         when using the threadpool.
3671 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
3673         * object.c (mono_string_is_interned_lookup): Fix interning of long
3674         strings. Fixes #54473.
3676         * domain.c (ldstr_equal): Optimize if the two strings are equal.
3678         * icall.c: Revert the klass->refclass changes since they introduce
3679         regressions (bug #54518).
3681 2004-02-18  Martin Baulig  <martin@ximian.com>
3683         * class.c (mono_class_init): If we're a generic instance and don't
3684         come from a TypeBuilder, inflate our members here.
3685         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
3686         (mono_class_create_generic): New public method.
3687         (mono_class_initialize_generic): Removed.
3688         (get_instantiation_name): Renamed to
3689         _mono_class_get_instantiation_name() and made it public.
3691 2004-02-18  Martin Baulig  <martin@ximian.com>
3693         * class.c (mono_class_inflate_generic_type): Clear the new
3694         instance's `nginst->klass' when inflating a generic instance.
3695         (mono_class_is_subclass_of): Added (basic) support for generic
3696         instances.
3698 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
3700         * appdomain.h, domain.c: use a MonoCodeManager instead of a
3701         MonoMempool to hold compiled native code.
3703 2004-02-17  Martin Baulig  <martin@ximian.com>
3705         * class.h (MonoDynamicGenericInst): Added `count_properties' and
3706         `properties'.
3708         * reflection.c (mono_reflection_generic_inst_initialize): Added
3709         `MonoArray *properties' argument.
3711         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
3713 2004-02-17  Martin Baulig  <martin@ximian.com>
3715         * icall.c (ves_icall_Type_GetFields): Renamed to
3716         ves_icall_Type_GetFields_internal() and added a
3717         `MonoReflectionType *rtype' argument; pass it to
3718         mono_field_get_object() to set the field's "reflected" type.
3719         (ves_icall_Type_GetConstructors): Likewise.
3720         (ves_icall_Type_GetEvents): Likewise.
3721         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
3722         argument; pass it to mono_method_get_object() to set the method's
3723         "reflected" type.       
3725 2004-02-17  Martin Baulig  <martin@ximian.com>
3727         * class.h (MonoDynamicGenericInst): New type.
3728         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
3730         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
3731         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
3732         (ves_icall_MonoGenericInst_GetFields): New interncall.
3734         * class.c (mono_class_from_generic): Don't call
3735         mono_class_initialize_generic() if this is a dynamic instance;
3736         ie. it's being created from a TypeBuilder.
3737         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
3738         `class->byval_arg.type'.
3740         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
3741         to `inflate_method' and made static.
3742         (mono_reflection_inflate_field): Removed.
3743         (mono_reflection_generic_inst_initialize): New public method.
3745         * reflection.h (MonoReflectionGenericInst): Removed `methods',
3746         `ctors' and `fields'; added `initialized'.
3748 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3750         * debug-helpers.c (mono_method_full_name): Fix output for empty
3751         namespaces.
3753 2004-02-12  Martin Baulig  <martin@ximian.com>
3755         * class.h (MonoClassField): Added `MonoType *generic_type'.
3757         * reflection.c (mono_image_get_fieldref_token): Added support for
3758         instantiated generic types.
3759         (field_encode_inflated_field): Removed.
3760         (mono_image_get_inflated_field_token): Removed.
3761         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
3763         * reflection.h (MonoReflectionInflatedField): Removed.
3765 2004-02-12  Martin Baulig  <martin@ximian.com>
3767         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
3768         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
3770         * reflection.c (mono_image_get_methodspec_token): Take a
3771         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
3772         (mono_image_create_token): Check whether we have a
3773         `method->signature->gen_method' and call
3774         mono_image_get_methodspec_token() if appropriate.
3775         (inflated_method_get_object): Removed.
3776         (mono_reflection_bind_generic_method_parameters): Return a
3777         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
3778         (mono_reflection_inflate_method_or_ctor): Likewise.
3780         * reflection.h (MonoReflectionInflatedMethod): Removed.
3782 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
3784         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
3785         for custom valuetype marshalling.
3787         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
3789 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3791         * icall.c: fixed WSAGetLastError_internal name.
3793 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
3795         * threads.c (mono_thread_attach): Allow this to be called multiple
3796         times for a thread.
3797         
3798         * threads.c (build_wait_tids): Do not wait for ourselves.
3800         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
3801         appdomain list is empty.
3803         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
3804         memory returned by mono_string_builder_to_utf16, since it points into
3805         managed memory. Thanks to Bernie Solomon for noticing this.
3807         * icall.c: Add AppDomainSetup icalls.
3809         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
3811         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
3812         types.
3814         * reflection.c (reflection_methodbuilder_to_mono_method): Save
3815         custom attributes to the method_aux struct. Also fix array indexes etc.
3817         * loader.c (mono_method_get_param_names): Make dynamic case work again.
3818         
3819 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
3821         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
3822         (both static and runtime) and reduce startup time.
3824 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3826         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
3827         AsAny marshalling conversion instead of crashing.
3829         * marshal.c: Fix warnings.
3831 2004-02-09  Martin Baulig  <martin@ximian.com>
3833         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
3835         * reflection.h (MonoReflectionInflatedMethod): Removed the
3836         `declaring' field, it's now in the unmanaged MonoGenericMethod.
3838         * reflection.c (method_encode_methodspec): Removed the `method'
3839         argument; we get it from `gmethod->declaring'.
3840         (inflated_method_get_object): Removed the `declaring' argument.
3842 2004-02-09  Martin Baulig  <martin@ximian.com>
3844         * class.h (MonoGenericMethod): New type.
3845         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
3846         `generic_method'.
3848         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
3849         a `MonoGenericMethod *gen_method' one.
3851         * class.c (mono_class_inflate_generic_type): Take an additional
3852         `MonoGenericMethod * argument.  This is only non-NULL if we're
3853         inflating types for a generic method.   
3854         (mono_class_inflate_generic_signature): Renamed to
3855         inflate_generic_signature() and made static; take a
3856         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3857         (inflate_generic_header): Take a `MonoGenericMethod *' argument
3858         instead of a `MonoGenericInst *' one.
3859         (mono_class_inflate_generic_method): Likewise.
3861         * reflection.c (encode_generic_method_sig): Take a
3862         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3863         (method_encode_methodspec): Likewise.
3864         (inflated_method_get_object): Likewise. 
3866         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
3867         field with a `MonoGenericMethod *gmethod' one.  
3869 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
3871         * class.h (mono_class_has_parent): add parens to expansion
3872         so you can ! this.
3874 2004-02-08  Martin Baulig  <martin@ximian.com>
3876         * image.h (MonoImage): Removed `generics_cache'.
3878         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
3879         instead of a `MonoType *' argument; removed the `inflate_methods'
3880         argument.  Don't inflate methods here.
3882         * loader.c (find_method): If it's a generic instance, call
3883         mono_class_init() on the `sclass->generic_inst->generic_type'.
3885         * metadata.c (mono_type_size): Make this work on uninitialized
3886         generic instances; call it on the `ginst->generic_type's class.
3888         * reflection.c (mono_reflection_bind_generic_parameters): Call
3889         mono_class_from_generic() to create the `ginst->klass'.
3891 2004-02-08  Martin Baulig  <martin@ximian.com>
3893         * class.h (MonoClass): Changed type of `generic_inst' from
3894         `MonoType *' to `MonoGenericInst *'.
3896 2004-02-08  Martin Baulig  <martin@ximian.com>
3898         * icall.c (ves_icall_Type_BindGenericParameters): Just call
3899         mono_type_get_object(), this is now creating a `MonoGenericInst'
3900         for MONO_TYPE_GENERICINST.
3901         (ves_icall_MonoGenericInst_GetParentType): Likewise.
3902         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
3904         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
3905         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
3906         (inflated_method_get_object): Added `MonoClass *refclass' argument.
3907         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
3908         and reflected type.
3910         * reflection.h (MonoReflectionInflatedMethod): Removed
3911         `declaring_type' and `reflected_type'.
3913 2004-02-08  Martin Baulig  <martin@ximian.com>
3915         * class.h (MonoGenericInst): Added `MonoType *parent' and
3916         `MonoType **ifaces'.
3918         * reflection.h (MonoReflectionGenericInst): Removed `klass',
3919         `parent' and `interfaces'.
3921         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3922         `MonoType *' argument and return a `MonoType *'.
3924         * icall.c
3925         (ves_icall_MonoGenericInst_GetParentType): New interncall.
3926         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
3928 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3930         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
3931         valuetype marshalling.
3933 2004-02-06  Martin Baulig  <martin@ximian.com>
3935         * class.c
3936         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
3937         (my_mono_class_from_generic_parameter): Likewise.
3939 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3941         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
3942         contents of the symbol files lazily.
3944         * object.h (MonoThread): Add 'name' and 'name_len' fields.
3946         * threads.h threads.c icall.c: New icalls for getting and setting the
3947         threads name.
3949 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
3951         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
3952         Raise an exception when the domain is not found.
3954 2004-02-03  Martin Baulig  <martin@ximian.com>
3956         * reflection.c (mono_image_get_methodspec_token): Use the
3957         uninflated signature; fixes gen-33.
3959 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3961         * gc.c threads.c: Make the finalizer thread a normal managed thread so
3962         the finalizer code can use thread functionality.
3964         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
3965         the finalizer thread.
3967         * threads.c: Make some functions more robust.
3969         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
3971         * metadata.h: Add new marshalling conventions.
3973         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
3974         stringbuilder marshalling. Fixes #53700.
3976         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
3978         * reflection.c (mono_image_get_type_info): Save declarative security
3979         info.
3981         * reflection.c (mono_image_get_field_info): Handle uninitialized 
3982         unmanaged fields as well.
3984         * appdomain.c: Bump corlib version.
3986 2004-02-01  Martin Baulig  <martin@ximian.com>
3988         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
3989         method type arguments.  
3991 2004-01-30  Duncan Mak  <duncan@ximian.com>
3993         * marshal.h: Add prototype for
3994         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
3995         and
3996         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
3997         fix the build.
3999 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
4001         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
4002         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
4004 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4006         * marshal.c (mono_marshal_get_native_wrapper): Add support for
4007         custom marshalling of valuetypes.
4009         * marshal.c: Fix some warnings.
4011 2004-01-29  Martin Baulig  <martin@ximian.com>
4013         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
4014         for generic method parameters.
4016         * reflection.c (method_encode_methodspec): Write the uninflated
4017         signature into the methodspec table.
4018         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
4019         is always the uninflated method.
4020         (reflection_methodbuilder_to_mono_method): Copy the generic
4021         parameters from the MethodBuilder into `header->gen_params'.
4023 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
4025         * class.c (mono_class_from_generic_parameter): Fix warning.
4027 2004-01-27  Martin Baulig  <martin@ximian.com>
4029         * class.c (mono_class_from_generic_parameter): Don't create
4030         `klass->methods' here.  
4032 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
4034         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
4035         extension since it does not work with libraries named lib<FOO>.dll.so.
4037 2004-01-25  Martin Baulig  <martin@ximian.com>
4039         * class.c (mono_class_inflate_generic_type): Added support for
4040         MONO_TYPE_GENERICINST.
4042         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
4043         inflate methods on open constructed types.      
4045 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4047         * object.c: fire ProcessExit event in the root AppDomain after running
4048         Main. Fixes bug #53299.
4050 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
4052         * socket-io.c: include the new socket-wrappers.h header.
4053         Use the wrappers instead of the unix socket functions to make the code
4054         more clear.
4056 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
4058         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
4060         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4061         Fixes #22532.
4063 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
4065         * reflection.c (mono_image_create_pefile): Handle the case when the
4066         entry point is not a MethodBuilder.
4068         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4069         field to ReflectionMethod since it is not allways a builder.
4071         * reflection.c (type_get_fully_qualified_name): New helper function to
4072         return the fully qualified name of a type.
4074         * reflection.c (encode_marshal_blob): Always emit the fully qualified
4075         type name for custom marshallers.
4077         * reflection.c (mono_marshal_spec_from_builder): Ditto.
4079         * class.c (mono_class_setup_vtable): If a parent class already 
4080         implements an interface, use the implementing methods from that class.
4081         Fixes #53148.
4083 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4085         * threadpool.c: just return instead of ExitThread to allow for thread
4086         clean up earlier.
4088 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
4090         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
4091         when closing resource modules.
4093         * reflection.c (mono_image_create_pefile): Handle the case when the
4094         entry point is not a MethodBuilder.
4096         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4097         field to ReflectionMethod since it is not allways a builder.
4099 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
4101         * marshal.c (mono_marshal_get_managed_wrapper): 
4102         mono_marshal_alloc takes native int so CONV_I
4103         the arg for 64bits.
4105 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
4107         * reflection.c (fixup_cattrs): New function to fixup the methoddef
4108         tokens in the cattr table. Fixes #53108.
4110 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4112         * loader.c: don't trim ".dll" before looking up in the config file.
4113         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
4115 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
4117         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
4118         Return the module which contains the resource as well.
4119         (ves_icall_System_Reflection_Module_Close): New icall.
4121         * appdomain.c: Bump corlib version number.
4123         * image.c (mono_image_addref): New public function.
4125         * assembly.c: Call mono_image_addref.
4127         * reflection.c (mono_module_get_object): Increase reference count of 
4128         the image.
4130         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4131         Fixes #22532.
4133         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
4134         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
4135         proper exceptions on DllImport problems.
4137 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
4139         * class.c, metadata.c: eliminate CSIZE macro.
4141 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
4143         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
4144         * object.h: Added async_callback field in MonoAsyncResult.
4145         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
4146         * verify.c: Added async_callback in MonoAsyncResult layout.
4148 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
4150         * reflection.c (mono_reflection_get_custom_attrs): Add support
4151         for Modules.
4153 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4155         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
4156         marshalling.
4157         (mono_marshal_method_from_wrapper): Add null pointer check.
4159 2004-01-16  Martin Baulig  <martin@ximian.com>
4161         * debug-mono-symfile.h: Set version number to 36 and reflect
4162         latest symbol writer changes.
4164 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4166         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
4167         multi-dimensional arrays.
4168         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
4169         (mono_class_from_mono_type): Use bounded_array_class_get.
4170         
4171         * class.c (mono_bounded_array_class_get): New function which takes
4172         a 'bounded' bool argument to distinguish vectors from one dimensional
4173         arrays.
4175         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
4176         bounded_array_class_get if the array has bounds.
4178         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4179         Search modules loaded using AssemblyBuilder:AddModule as well.
4181 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4183         * appdomain.c: increased corlib version.
4184         * filewatcher.c: removed g_print.
4185         * icall.c:
4186         (get_property_info): only allocate what is actually requested.
4187         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
4189 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4191         * Makefile.am: added filewatcher.[ch]
4192         * filewatcher.[ch]: FileSystemWatcher runtime support.
4193         * icall.c: added new FSW icalls.
4195 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
4197         * string-icalls.c: fix stringbuilder regression as suggested by
4198         Iain McCoy <iain@mccoy.id.au>.
4200 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
4202         * process.c (process_read_stringtable_block): Recognize '007f' as
4203         a language neutral stringtable block.
4205 2004-01-12  Patrik Torstensson
4207         * object.h (MonoStringBuilder) : Changed layout to support our
4208         new stringbuilder class.
4209         * marshal.c: Change marshalling to support the new layout of 
4210         string builder.
4211         * appdomain.c: increased version number because new layout of
4212         string builder.
4214 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
4216         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
4217         assembly name as an string instead of an AssemblyName, since it is
4218         easier to extract info from it.
4220         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
4221         the culture subdirectories too. Fixes #52231.
4223 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4225         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
4226         It takes 2 new parameters with an optional name for the method to look
4227         for and case ignoring info.
4229         * threadpool.c: removed unused variable.
4231 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4233         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
4234         It takes 2 new parameters with an optional name for the property to look
4235         for and case ignoring info.
4236         Fixes bug #52753.
4238 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
4240         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
4241         Fix #52451.
4243 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4245         * appdomain.c:
4246         * assembly.c: escape the uri before passing it to g_filename_from_uri.
4247         Fixes bug #52630.
4249 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
4251         * reflection.c: Add support for more than one unmanaged resource.
4253         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
4254         in field->def_value, as done in all other cases.
4256         * reflection.c (mono_reflection_get_custom_attrs): Add support for
4257         TypeBuilders.
4259         * reflection.c (mono_reflection_create_runtime_class): Remove 
4260         errorneous assignment to klass->element_class, since it is already
4261         done in mono_reflection_setup_internal_class.
4263 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4265         * gc.c: added missing LeaveCriticalSection.
4266         * icall.c: indented a couple of lines.
4267         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
4268         if we call EndInvoke inside a callback. Fixes bug #52601.
4270 2004-01-07  Martin Baulig  <martin@ximian.com>
4272         * mono-debug-debugger.h
4273         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
4275 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
4277         * appdomain.c: Use messages in NotImplementedException.
4279         * exception.c (mono_get_exception_not_implemented): Now this takes
4280         a message argument.
4282         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
4283         exception instead of g_asserting an aborting when something is not
4284         implemented.
4286         Add some inline docs.
4288 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
4290         * reflection.h: Update after changes to object layout.
4292         * reflection.c: Implement saving of unmanaged aka win32 resources.
4294         * appdomain.c: Bump version number.
4296         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
4297         Handle missing domains gracefully.
4299 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
4301         * file-io.c : On Windows, there are much more invalid_path_chars.
4303 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
4305         * class.h, object.c: prepare for GetType () speedup.
4307 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
4309         * profiler.c: workaround for --profile null reference exception on
4310           cygwin. Patch by Patrik Torstensson.
4312 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
4314         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
4315         make work for unaligned access.
4317 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
4319         * class.c: small cleanup (class->fields [i] -> field).
4320         * image.c: check address of metadata is valid.
4322 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
4324         * assembly.h assembly.c (mono_assembly_loaded): New public function to
4325         search the list of loaded assemblies.
4327         * reflection.c (mono_reflection_type_from_name): Use 
4328         mono_assembly_loaded instead of mono_image_loaded.
4330         * reflection.c: Fix warnings.
4332 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
4334         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
4335         is dynamic. This is needed since an assembly can contain both dynamic and
4336         non-dynamic images.
4338         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
4339         assembly->dynamic.
4341         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
4343         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
4344         to store modules loaded using AddModule.
4346         * reflection.c (mono_image_fill_file_table): Generalize this so it works
4347         on Modules.
4349         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
4351         * reflection.c (mono_image_fill_export_table_from_module): New function to
4352         fill out the EXPORTEDTYPES table from a module.
4354         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
4355         into a separate function. Also handle loaded non-dynamic modules.
4357         * reflection.c (mono_image_basic_init): Fix memory allocation.
4359         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4361         * assembly.c (mono_assembly_load_references): Make this public.
4363 2003-12-19  Martin Baulig  <martin@ximian.com>
4365         * class.c (mono_class_initialize_generic): Made this static, take
4366         a `MonoGenericInst *' instead of a `MonoClass *'.
4367         (mono_class_from_generic): Call mono_class_initialize_generic()
4368         unless we're already initialized or being called from
4369         do_mono_metadata_parse_generic_inst().
4371         * class.h (MonoGenericInst): Added `initialized' and
4372         `init_pending' flags.
4374         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
4375         `mono_class_init (gklass)' or mono_class_initialize_generic()
4376         here; set `generic_inst->init_pending' while parsing the
4377         `type_argv'.
4379 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
4381         * locales.c: include string.h for memxxx prototypes
4383 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
4385         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
4386         constructor when accessing literal fields.
4388 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
4390         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4392         * reflection.c (assembly_add_resource_manifest): New function to fill
4393         the MANIFESTRESOURCE table.
4395         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
4397         * reflection.h: Update to changes in class layout.
4399         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
4400         Reenable call to mono_runtime_is_shutting_down ().
4402         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
4403         determine if the runtime is shutting down.
4405 2003-12-16  Jackson Harper <jackson@ximian.com>
4407         * icall.c: comment out call to mono_runtime_is_shutting_down to
4408         fix build.
4409         
4410 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
4412         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
4413         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
4415 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
4417         * reflection.c: move definition of swap_with_size
4418         to before its first call
4420 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
4422         * appdomain.c (mono_runtime_is_shutting_down): New public function.
4424         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
4425         icall.
4427         * object.c: Fix warnings.
4429         * icall.c (ves_icall_Type_Get...): Only consider inherited static
4430         members if FlattenHierarchy is set.
4432         * reflection.c (mono_image_add_decl_security): New function to emit
4433         declarative security.
4435         * reflection.h reflection.c: Add support for declarative security.
4437         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4438         
4439 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
4441         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4442         
4443         * appdomain.c verify.c: Moved corlib version checking into its own
4444         function in appdomain.c since it needs to create vtables etc.
4446 2003-12-13  Patrik Torstensson <p@rxc.se>
4448         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
4449         instead of unwrapped server.
4451 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
4453         * verify.c (check_corlib): Fix field index.
4455 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
4457         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
4458         GetGacPath icall.
4460 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
4462         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
4463         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
4464         cope with sizeof(size_t) != sizeof(guint32).
4466 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4468         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
4469         in case of failure.
4471 2003-12-10  Mark Crichton <crichton@gimp.org>
4473         * icall.c: removed the GetNonZeroBytes.  We now handle this case
4474         in managed code.
4476         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
4478 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
4480         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
4481         marked as deleted.
4483 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
4485         * verify.c (check_corlib): Handle the case when the version field is 
4486         initialized by a static constructor.
4488 2003-12-08  Patrik Torstensson  <p@rxc.se>
4490     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
4492 2003-12-08  Martin Baulig  <martin@ximian.com>
4494         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
4495         a MonoReflectionGenericParameter, also take the parameter index
4496         and name as arguments.
4497         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
4498         (ves_icall_MonoGenericParam_initialize): New interncall.
4499         (ves_icall_Type_make_byref_type): New interncall.
4501         * reflection.h (MonoReflectionGenericParam): Derive from
4502         MonoReflectionType, not just from MonoObject.  Added `refobj' and
4503         `index' fields.
4505         * reflection.c (mono_reflection_define_generic_parameter): Create
4506         and return a new MonoReflectionGenericParam; don't initialize the
4507         constraints here.
4508         (mono_reflection_initialize_generic_parameter): New public method;
4509         initializes the constraints and creates the `param->pklass'.
4511 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
4513         * reflection.h reflection.c: Use the new fields 'num_types', 
4514         'num_fields' and 'num_methods' to track the number of types etc.
4516         * verify.c (check_corlib): Check corlib version number.
4518 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
4520         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
4521         function works on all methods.
4523 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
4525         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
4526         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
4527         the custom_type_info flag of the transparent proxy.
4528         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
4529         objects that supports IRemotingTypeInfo.
4530         * object.h: Added custom_type_info field in transparent proxy.
4532 2003-12-06  Martin Baulig  <martin@ximian.com>
4534         * class.c (mono_class_create_from_generic): Removed.
4535         (mono_class_from_generic): Check `ginst->klass' before doing
4536         anything else.  This is important to fully support "recursive"
4537         generic types.
4539         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
4540         empty `generic_inst->klass' before doing anything else.
4542 2003-12-06  Dick Porter  <dick@ximian.com>
4544         * verify.c: 
4545         * object.h:
4546         * icall.c:
4547         * locales.c: Use C structs to access class fields.  Don't do a
4548         conversion between MonoString and UChar because both are
4549         platform-endian UTF-16.  Compare now takes startindex and count
4550         parameters.  Add a char overload for IndexOf.  Speed up the
4551         invariant string IndexOf.
4553 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
4555         * Makefile.am (monosn_LDADD): Fix parallel build.
4557 2003-12-04  Martin Baulig  <martin@ximian.com>
4559         * icall.c
4560         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4561         (ves_icall_Type_make_array_type): New interncall.       
4563 2003-12-04  Martin Baulig  <martin@ximian.com>
4565         * locales.c: also change it in the !HAVE_ICU case.
4567 2003-12-04  Dick Porter  <dick@ximian.com>
4569         * icall.c:
4570         * locales.c: construct_compareinfo is now in CompareInfo, not
4571         CultureInfo.
4573 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
4575         * image.c (mono_image_load_file_for_image): Cache loaded images in the
4576         image->files array.
4578         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
4579         table as well.
4581         * assembly.c (mono_assembly_load_references): Only load references
4582         once.
4584         * class.c (mono_class_from_name): Avoid linear search of the 
4585         EXPORTEDTYPE table.
4587         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
4589 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
4591         * image.h (MonoImage): Add 'field_cache' field.
4593         * loader.c (mono_field_from_token): Cache field lookups.
4594         
4595         * reflection.c (mono_module_get_object): Fix name property.
4597         * icall.c (ves_icall_get_enum_info): Update after changes to 
4598         mono_metadata_get_constant_index ().
4600         * icall.c: Get rid of get_type_info icall, use a separate icall for
4601         each type property to avoid needless memory allocations. Fixes #51514.
4603         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
4604         to avoid needless binary searches.
4606         * class.c (class_compute_field_layout): Move the initialization of
4607         field->def_value to mono_class_vtable ().
4609         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
4610         non-corlib types.
4612         * object.c (mono_object_allocate): Make it inline.
4614         * object.c (mono_object_allocate_spec): Make it inline.
4615         
4616 2003-12-02  Dick Porter  <dick@ximian.com>
4618         * locales.c (create_NumberFormat): NumberFormatInfo construction.
4619         Patch by Mohammad DAMT (mdamt@cdl2000.com).
4621 2003-12-01  Dick Porter  <dick@ximian.com>
4623         * threads.c: Fix signature and call in CreateMutex and
4624         CreateEvent.
4626 2003-12-01  Dick Porter  <dick@ximian.com>
4628         * icall.c: 
4629         * locales.c: Implement string compares and searching
4631         * object.h: Add extra Thread field
4633 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
4635         * reflection.c (fixup_method): Add support for MonoCMethod.
4637 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
4639         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
4641         * reflection.c (assembly_name_to_aname): Allow extra characters in
4642         assembly names. Fixes #51468.
4644 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
4646         * exception.c (mono_exception_from_name_domain): New helper function.
4648         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
4649         exception object in the correct domain.
4651         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
4652         formatting + make a copy a the input data.
4654         * loader.c (mono_get_method_from_token): Methods which contain
4655         native code do not have entries in the ImplMap.
4657         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
4658         Thanks to Gonzalo for spotting this.
4659         
4660         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
4661         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
4663         * assembly.h (mono_assembly_load_from): Split the second part of 
4664         assembly loading into a new public function.
4666         * exception.h (mono_get_exception_bad_image_format): New function.
4668 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
4670         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4671         Enumerate all modules inside a dynamic assembly. Fixes #51293.
4672         
4673         * icall.c: Add new icall for creating dynamic methods.
4675         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
4677         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
4679         * reflection.c (mono_reflection_create_dynamic_method): New icall to
4680         create a dynamic method.
4682         * reflection.c (resolve_object): New helper function.
4684         * reflection.c: Generalize ReflectionMethodBuilder and the functions
4685         which manipulate it so they can also work on dynamic methods.
4687         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
4688         creating the MonoReflectionMethodAux structure if it is not needed.
4689         
4690         * reflection.h verify.c: Update after changes to object layout.
4692         * reflection.c (method_builder_encode_signature): Fix compilation on
4693         gcc 2.95.x.
4695 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
4697         * appdomain.h: Added support for context static fields. Added static_data
4698           field to MonoAppContext and renamed thread_static_fields to a more
4699           generic special_static_fields in MonoAppDomain, since it can now contain
4700           context static fields.
4701         * domain.c: Updated hashtable name.
4702         * object.c: Replaced field_is_thread_static() for a more generic
4703           field_is_special_static() which also checks for context static attribute.
4704           In mono_class_vtable(), added support for static context fields.
4705         * threads.c: Changed methods that manage thread static fields to more
4706           generic methods so they can be reused both for thread and context static
4707           data.
4708         * threads.h: Declared some new methods.
4710 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
4712         * reflection.h: Update after changes to the managed types.
4714         * reflection.c (encode_custom_modifiers): New helper function.
4716         * reflection.c (method_encode_signature): Emit custom modifiers.
4718         * reflection.c (field_encode_signature): Emit custom modifiers.
4720 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
4722         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
4724         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
4725         implementation.
4727         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
4728         icall.
4730         * object.c (mono_field_get_value_object): New function.
4732         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
4733         specific.
4735 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
4737         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
4738         return a preallocated out-of-memory exception instance.
4740         * object.c (out_of_memory): Use the new function.
4742         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
4743         flag is before the custom modifiers. Fixes #49802.
4745 2003-11-16  Martin Baulig  <martin@ximian.com>
4747         * class.c (mono_class_is_open_constructed_type): Implemented the
4748         MONO_TYPE_GENERICINST case.
4750 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
4752         * assembly.c (mono_assembly_fill_assembly_name): New function to
4753         fill out the MonoAssemblyName structure.
4754         (mono_assembly_open): Use the new function.
4756         * icall.c (fill_reflection_assembly_name): New helper function.
4758         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
4759         new function.
4761         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
4763 2003-11-15  Martin Baulig  <martin@ximian.com>
4765         * class.c (mono_class_is_open_constructed_type): New public
4766         function; checks whether a type is an open constructed type,
4767         ie. whether it still contains type parameters.
4768         (mono_class_inflate_generic_type): If we're a type parameter and
4769         the inflated type is also a MONO_TYPE_(M)VAR, return the original
4770         type.
4772         * class.h (MonoGenericInst): Added `guint32 is_open'.
4774         * loader.c (method_from_methodspec): Check whether we're an open
4775         or closed constructed type and set `ginst->is_open'.
4777         * reflection.c (mono_reflection_bind_generic_parameters): Check
4778         whether we're an open or closed constructed type and set
4779         `ginst->is_open'.
4780         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
4781         from open constructed types.
4783 2003-11-15  Martin Baulig  <martin@ximian.com>
4785         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4786         a generic instance (instead of a generic type declaration) with
4787         unbound generic parameters, bind them to our actual types.
4789 2003-11-14  Martin Baulig  <martin@ximian.com>
4791         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
4793         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4794         an interface type, populate `res->interfaces' with instantiated
4795         versions of all the interfaces we inherit.
4797 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
4799         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
4800         when MONO_PATH is set but doesn't contain the install dir.
4802 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4804         * icall.c:
4805         (ves_icall_Type_GetInterfaces): don't return an interface twice when
4806         it's also implemented in base classes. Fixes bug #50927.
4808 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
4810         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
4811         if this method is called from a finalizer. Fixes #50913.
4813 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
4815         * threads.c: Implement VolatileRead/VolatileWrite
4817         * icall.c: Add new icalls for VolatileRead/VolatileWrite
4819 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4821         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
4822         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
4823         2.95.3.
4825         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
4826         from Peter Ross (pro@missioncriticalit.com).
4827         
4828 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
4830         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
4832 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4834         * assembly.c (mono_assembly_load_references): Disable check because it
4835         triggers on older corlibs which lots of people have.
4837 2003-11-12  Jackson Harper  <jackson@ximian.com>
4839         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
4840         load corlib.dll if mscorlib.dll is not found.
4841         * assembly.h: Remove corlib name define.
4842         * class.c:
4843         * domain.c:
4844         * image.c: Change corlib name to mscorlib.
4845         
4846 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4848         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
4850 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
4852         * appdomain.h: Added loader_optimization here to sync with the C#
4853         code, and add disallow_binding_redirects field.
4855 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4857         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
4859         * reflection.c (mono_image_build_metadata): Fix crash on modules
4860         with no types.
4862         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
4864         * icall.c (ves_icall_get_method_info): Return callingConvention as
4865         well.
4867         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
4868         namespaces from the EXPORTEDTYPE table as well.
4870         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
4871         from all modules inside the assembly.
4872         
4873 2003-11-11  Martin Baulig  <martin@ximian.com>
4875         * reflection.c (mono_reflection_bind_generic_parameters): Make
4876         this work for interfaces.
4878 2003-11-11  Martin Baulig  <martin@ximian.com>
4880         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
4882 2003-11-11  Martin Baulig  <martin@ximian.com>
4884         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
4885         "MonoInflatedMethod" and "MonoInflatedCtor".
4887 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4889         * reflection.c (resolution_scope_from_image): Use the assembly table
4890         from the manifest module, since other modules don't have it.
4892         * debug-helpers.c (mono_type_full_name): New helper function.
4894         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
4896         * image.c (mono_image_load_file_for_image): New public function which
4897         is a replacement for the load_file_for_image in class.c.
4899         * assembly.c (mono_assembly_load_module): A wrapper for the function
4900         above which does assembly association and reference loading too.
4902         * class.c (mono_class_from_name): Call mono_assembly_load_module.
4904 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4906         * appdomain.c: not all of the attributes for the full assembly name
4907         are required and the order doesn't matter. Fixes bug #50787.
4909 2003-11-10  Dick Porter  <dick@ximian.com>
4911         * locales.c: Use platform-endian UTF16
4913 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4915         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4916         
4917 2003-11-10  Martin Baulig  <martin@ximian.com>
4919         * metadata.c
4920         (mono_metadata_load_generic_params): Make this actually work.
4922         * reflection.c (mono_reflection_bind_generic_parameters): If our
4923         parent is a generic instance, pass all the `types' to it, no
4924         matter whether it has the same number of type parameters or not.
4926 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4928         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4930         * assembly.c (mono_assembly_load_references): Move the image<->assembly
4931         assignment code to this function so it gets called recursively for all
4932         modules.
4934         * image.c (load_modules): Remove the assembly assignment since it is
4935         now done by mono_assembly_load_references.
4936         
4937         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4938         Add 'module' argument.
4939         (mono_module_get_types): New helper function.
4940         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
4942 2003-11-08  Martin Baulig  <martin@ximian.com>
4944         * class.c (mono_class_inflate_generic_method): Interface method
4945         don't have a header.
4947         * reflection.c (mono_image_get_methodspec_token): Take an
4948         additional `MonoGenericInst *' argument instead of reading it from
4949         the header; this is necessary to support interfaces.
4950         (mono_image_create_token): Pass the `MonoGenericInst *' from the
4951         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
4952         (inflated_method_get_object): Take an additional `MonoGenericInst *'
4953         argument.
4955         * reflection.h (MonoReflectionInflatedMethod): Added
4956         `MonoGenericInst *ginst'.
4958 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
4960         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
4962 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
4964         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
4966 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
4968         * reflection.c 
4969         (reflection_methodbuilder_from_method_builder):
4970         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
4971         initialize a ReflectionMethodBuilder structure.
4972         (mono_image_get_methodbuilder_token):
4973         (mono_image_get_ctorbuilder_token): New functions to emit memberref
4974         tokens which point to types in another module inside the same assembly.
4976         * reflection.c: Use the new helper functions.
4977         
4978         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
4980         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
4981         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
4983         * reflection.c (resolution_scope_from_image): Emit a moduleref if
4984         neccesary.
4986         * reflection.c (mono_image_build_metadata): Emit metadata only for the
4987         current module. Emit the manifest only for the main module.
4989         * reflection.c (mono_image_create_token): Add assertion when a 
4990         memberref needs to be created.
4992         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
4994         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
4995         larger buffer for the custom attribute blob. Fixes #50637.
4996         
4997 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4999         * threadpool.c: notify listener on async processing handles after
5000         invoking the async callback. Thanks to Zoltan.
5002 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5004         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
5005         avoid code duplication.
5007         * reflection.h (MonoDynamicImage): New type which is currently unused,
5008         but will be used through the ref.emit code in place of 
5009         MonoDynamicAssembly.
5011         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5012         object layout.
5014         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
5015         a MonoDynamicImage instead of just a MonoImage.
5016         
5017         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
5018         icalls to ModuleBuilder but keep their semantics, so they will work
5019         with moduleb->assemblyb. This will change later.
5020         
5021 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5023         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
5024         object layout.
5026         * reflection.c (mono_image_build_metadata): Avoid creation of a default
5027         main module, since it is now done by the managed code.
5029 2003-11-03  Martin Baulig  <martin@ximian.com>
5031         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
5032         `ginst->klass' here.
5033         (method_encode_methodspec): Don't use the `ginst->generic_method's
5034         klass if it's a generic instance, use `ginst->klass' in this case.
5036 2003-11-03  Martin Baulig  <martin@ximian.com>
5038         * reflection.c (mono_image_get_generic_method_param_info):
5039         Removed, use mono_image_get_generic_param_info() instead.
5040         (mono_image_get_type_info): Write the GenericParam table before
5041         the Method table.  This is neccessary because in the GenericParam
5042         table, type parameters of the class (ie. '!0' etc.) must come
5043         before the ones from its generic methods (ie. '!!0' etc).
5045 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
5047         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
5049 2003-11-02  Martin Baulig  <martin@ximian.com>
5051         * reflection.c (create_generic_typespec): Take a
5052         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
5053         the generic parameters from it.
5055 2003-11-02  Martin Baulig  <martin@ximian.com>
5057         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
5058         instead of a `MonoClassField *' since we just need the type.
5059         (create_generic_typespec): New static function.  Creates a
5060         TypeSpec token for a generic type declaration.
5061         (mono_image_get_generic_field_token): New static function.
5062         (mono_image_create_token): If we're a FieldBuilder in a generic
5063         type declaration, call mono_image_get_generic_field_token() to get
5064         the token.
5066 2003-11-02  Martin Baulig  <martin@ximian.com>
5068         * reflection.h
5069         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
5070         `MonoReflectionGenericInst *declaring_type' and
5071         `MonoReflectionGenericInst *reflected_type' fields.
5073         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
5074         `MonoReflectionGenericInst *declaring_type' and a
5075         `MonoReflectionGenericInst *reflected_type' argument instead of a
5076         single `MonoReflectionGenericInst *type' one.  Set
5077         `res->declaring_type' and `res->reflected_type' from them.
5078         (mono_reflection_inflate_field): Likewise.      
5080 2003-11-02  Martin Baulig  <martin@ximian.com>
5082         * class.c (mono_class_setup_vtable): Don't store generic methods
5083         in the vtable.  
5085 2003-11-02  Martin Baulig  <martin@ximian.com>
5087         * reflection.h (MonoReflectionGenericInst): Added
5088         `MonoReflectionType *declaring_type'.
5090         * reflection.c (mono_reflection_bind_generic_parameters): Use
5091         `if (tb->parent)' instead of `klass->parent'.
5093 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
5095         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
5096         with an empty ASSEMBLY table.
5098         * reflection.c (mono_image_build_metadata): Avoid using the same loop
5099         variable in the inner and outer loops.
5101 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
5103         * metadata.h (mono_metadata_make_token): Put parentheses around macro
5104         argument.
5106         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
5107         
5108         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
5109         icalls. Instead, do everything in managed code. This is needed since
5110         it is hard to restore the original domain etc. in unmanaged code in the
5111         presence of undeniable exceptions.
5113         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
5114         New icalls to push and pop appdomain refs.
5116 2003-10-31  Martin Baulig  <martin@ximian.com>
5118         * class.c (inflate_generic_type): Renamed to
5119         mono_class_inflate_generic_type() and made it public.
5121         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
5122         New interncall.
5124         * loader.c (mono_field_from_memberref): Also set the retklass for
5125         typespecs.
5127         * fielder.c (mono_image_get_inflated_field_token): New static
5128         method; creates a metadata token for an inflated field.
5129         (mono_image_create_token, fixup_method): Added support for
5130         "MonoInflatedField".
5131         (fieldbuilder_to_mono_class_field): New static function.
5132         (mono_reflection_inflate_field): New public function.
5134         * reflection.h
5135         (MonoReflectionGenericInst): Added `MonoArray *fields'.
5136         (MonoReflectionInflatedField): New typedef.     
5138 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
5140         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
5141         for Solaris and other platforms without s6_addr16
5143 2003-10-30  Martin Baulig  <martin@ximian.com>
5145         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
5146         argument instead of two.
5147         (mono_class_inflate_generic_signature): Likewise.
5148         (inflate_generic_header): Likewise.
5149         (mono_class_inflate_generic_method): Likewise.  In addition, if
5150         `ginst->klass' is set, it becomes the new `method->klass'.
5152         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
5153         field.
5155         * reflection.c (encode_generic_method_sig): Write a 0xa as the
5156         first byte. [FIXME]
5157         (method_encode_methodspec): If we have generic parameters, create
5158         a MethodSpec instead of a MethodRef.
5159         (fixup_method): Added support for "MonoInflatedMethod" and
5160         "MonoInflatedCtor".
5161         (mono_image_create_token): Added support for "MonoInflatedMethod"
5162         and "MonoInflatedCtor".
5163         (inflated_method_get_object): New static function; returns a
5164         managed "System.Reflection.MonoInflatedMethod" object.
5165         (mono_reflection_bind_generic_method_parameters): Return a
5166         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
5167         (mono_reflection_inflate_method_or_ctor): Likewise.
5168         (mono_image_get_generic_method_param_info): Initialize unused
5169         fields to zero.
5170         (mono_image_get_generic_param_info): Likewise.
5172         * reflection.h (MonoReflectionInflatedMethod): New public
5173         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
5174         "S.R.MonoInflatedCtor" classes.
5176         * loader.c (method_from_memberref): If we're a TypeSpec and it
5177         resolves to a generic instance, inflate the method.
5179 2003-10-28  Dick Porter  <dick@ximian.com>
5181         * object.c (mono_runtime_run_main): Convert command-line arguments
5182         into utf8, falling back to the user's locale encoding to do so.
5184 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
5186         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
5187         at this time.
5189         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
5191         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
5192         up icalls at method definition time. Partially fixes #33569.
5194 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
5196         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
5197         marshalling of arrays. Fixes #50116.
5199         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
5201         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
5202         points to a vtable in the dying appdomain.
5204         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
5205         listeners into unmanaged code inside the lock.
5207         * object.c (mono_class_vtable): Turn off typed allocation in non-root
5208         domains and add some comments.
5210 2003-10-25  Martin Baulig  <martin@ximian.com>
5212         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
5214         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
5216         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
5217         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
5218         currently parsing.  Create the generic class and store it in
5219         `generic_inst->klass' before parsing the type arguments.  This is
5220         required to support "recursive" definitions; see mcs/tests/gen-23.cs
5221         for an example.
5222         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
5223         to support recursive typespec entries.
5225         * class.c (mono_class_setup_parent): If our parent is a generic
5226         instance, we may get called before it has its name set.
5227         (mono_class_from_generic): Splitted into
5228         mono_class_create_from_generic() and mono_class_initialize_generic().
5230 2003-10-25  Martin Baulig  <martin@ximian.com>
5232         * icall.c (ves_icall_Type_BindGenericParameters): Return a
5233         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
5234         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
5235         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
5237         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
5238         (create_typespec): Likewise.
5239         (mono_reflection_bind_generic_parameters): Return a
5240         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
5241         (mono_reflection_inflate_method_or_ctor): New public function.
5243         * reflection.h (MonoReflectionGenericInst): New typedef.        
5245 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
5247         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
5248         inside the domain lock. Fixes #49993.
5249         
5250         * object.c (mono_class_vtable): When typed allocation is used, 
5251         allocate vtables in the GC heap instead of in the mempool, since the
5252         vtables contain GC descriptors which are used by the collector even
5253         after the domain owning the mempool is unloaded.
5255         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
5257         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
5258         reflect what it does. Also invalidate mempools instead of freeing
5259         them if a define is set.
5261         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
5262         of the appdomain.
5263         
5264         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
5265         hold the finalizable objects in this domain.
5267         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
5268         appdomain.
5270         * appdomain.c (mono_domain_set): New function to set the current
5271         appdomain, but only if it is not being unloaded.
5273         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
5274         appdomain which is being unloaded.
5275         
5276         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
5277         unloading of the root appdomain.
5279         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
5280         icall to execute a method in another appdomain. Intended as a 
5281         replacement for InternalSetDomain, which can confuse the code 
5282         generation in the JIT.
5284         * appdomain.c (mono_domain_is_unloading): New function to determine
5285         whenever an appdomain is unloading.
5287         * appdomain.c (mono_domain_unload): New function to correctly unload
5288         an appdomain.
5290         * assembly.c (mono_assembly_load_references): Check that an assembly
5291         does not references itself.
5293         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
5294         domain manually, it asks the finalizer thread to do it, then waits for
5295         the result. Also added a timeout.
5297         * icall.c: Register the new icalls.
5299         * threads.h threads.c: Export the mono_gc_stop_world and 
5300         mono_gc_start_world functions.
5301         
5302         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
5303         function to fill out the mempool with 0x2a.
5305 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
5307         * reflection.h (MonoReflectionMethodAux): New structure to store
5308         information which is rarely used, thus is not in the MonoMethod
5309         structure.
5311         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
5312         store the aux info.
5314         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
5315         and marshalling info into the aux structure.
5317         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
5318         from the aux structure.
5320         * loader.c (mono_method_get_param_names): Retrieve the param names from
5321         the aux structure.
5322         
5323 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
5325         * exception.h exception.c: Add AppDomainUnloadedException && fix 
5326         warning.
5328 2003-10-21  Dick Porter  <dick@ximian.com>
5330         * socket-io.c
5331         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
5332         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
5334 2003-10-21  Martin Baulig  <martin@ximian.com>
5336         * reflection.c (mono_reflection_bind_generic_parameters):
5337         `klass->parent' is NULL for interfaces.
5339 2003-10-21  Martin Baulig  <martin@ximian.com>
5341         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5343 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
5345         * exception.c (mono_exception_from_name_msg): New helper function for
5346         creating exceptions and initializing their message field.
5348         * exception.c: Simplify functions using the new helper.
5350         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
5351         New function.
5353         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
5354         mono_raise_exception, since otherwise gcc doesn't generate the function
5355         epilog for raise_exception, confusing the stack unwinding in the JIT.
5356         Fixes #45043.
5358         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
5359         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
5360         Fixes #49499.
5362 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5364         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
5365         utf8.
5367 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
5369         * icall.c: Removed GetUninitializedObject method because
5370           AllocateUninitializedClassInstance does the same.
5372 2003-10-18  Martin Baulig  <martin@ximian.com>
5374         * class.c (inflate_generic_signature): Renamed to
5375         mono_class_inflate_generic_signature() and made it public.
5376         (my_mono_class_from_generic_parameter): New static function; if we
5377         don't already have the generic parameter's MonoClass, create a
5378         very simple one which is just used internally in the runtime and
5379         not passed back to managed code.
5381         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
5383         * metadata.h (MonoMethodSignature): Moved the
5384         `MonoGenericParam *gen_params' to the MonoMethodHeader.
5385         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
5387         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
5388         ves_icall_MonoMethod_GetGenericArguments(); this is now an
5389         interncall on the MonoMethod class, not on MethodInfo.
5390         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
5391         calling mono_reflection_bind_generic_method_parameters() directly.
5393         * loader.c (mono_method_get_signature): If this is a MethodSpec;
5394         return the already computed `method->signature'.
5395         (method_from_methodspec): New static function to load a method
5396         from a MethodSpec entry.
5397         (mono_get_method_from_token): Call the new method_from_methodspec()
5398         for MethodSpec tokens.  
5399         (mono_get_method_from_token): If we're a generic method, load the
5400         type parameters.
5402         * reflection.c (mono_image_get_memberref_token): Allow
5403         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
5404         table.
5405         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
5406         (mono_image_create_token): First check whether it's a generic
5407         method (so we'd need to create a MethodSpec), then do the other
5408         two alternatives.
5409         (mono_reflection_bind_generic_method_parameters): Return a
5410         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
5411         called directly from the interncall.
5413 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
5415         * reflection.c (load_public_key): Move loading of the public key
5416         into managed code.
5418         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
5420         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
5421         fields.
5423         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
5424         culture, hash_alg and public_key. Fixes #49555.
5426 2003-10-17  Martin Baulig  <martin@ximian.com>
5428         * class.h (MonoGenericInst): Moved this declaration here and added
5429         `MonoMethod *generic_method'.
5431         * icall.c
5432         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
5433         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
5435         * metadata.c (mono_metadata_type_equal): Two types of
5436         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
5437         index; ie. don't compare the address of the `MonoGenericParam'
5438         structure.
5439         (mono_metadata_load_generic_params): Removed the `MonoMethod
5440         *method' argument.
5442         * metadata.h (MonoGenericInst): Moved declaration to class.h.
5443         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
5445         * reflection.c (method_encode_signature): Encode the number of
5446         generic parameters.
5447         (encode_generic_method_sig): New static function.
5448         (method_encode_methodspec): New static function; creates an entry
5449         in the MethodSpec table for a generic method.
5450         (mono_image_get_methodspec_token): New static function.
5451         (mono_image_create_token): Call mono_image_get_methodspec_token()
5452         for generic methods.
5453         (mono_reflection_bind_generic_method_parameters): New public
5454         function.  Instantiates a generic method.
5456 2003-10-16  Martin Baulig  <martin@ximian.com>
5458         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
5459         *gen_params' here from MonoMethodHeader.
5461         * metadata.c (mono_metadata_parse_method_signature): If we have
5462         generic parameters, initialize `method->gen_params' and then set
5463         the correct `type->data.generic_param' in all the parameters.
5465 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
5467         * threads.c (mono_threads_get_default_stacksize): New function to 
5468         return the default stacksize.
5470         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
5471         termination of the finalizer thread, since the previous method had
5472         race conditions. Fixes #49628.
5474         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
5475         as for the other managed threads.
5477 2003-10-16  Martin Baulig  <martin@ximian.com>
5479         * class.c (inflate_generic_signature): Copy `generic_param_count'
5480         and `gen_params'.
5482         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
5483         New interncall.
5485         * metadata.c (mono_metadata_parse_method_signature): Actually set
5486         the `method->generic_param_count' here.
5487         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
5489 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
5491         * object.h: Add a new field to TypedRef to simplify the implementation
5492         of the REFANY opcodes in the JIT.
5494         * icall.c: Make use of the new field.
5496         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
5497         dynamically.
5499 2003-10-15  Martin Baulig  <martin@ximian.com>
5501         * class.c (mono_class_from_gen_param): Renamed to
5502         mono_class_from_generic_parameter() and moved most of the
5503         functionality from mono_reflection_define_generic_parameter()
5504         here; ie. we create a "real" class here.
5505         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
5506         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
5507         previously been called.
5509         * class.h (MonoGenericParam): Moved the declaration of this struct
5510         here from metadata.h and added `MonoMethod *method'.
5512         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
5513         interncall.
5515         * loader.c (mono_get_method_from_token): If we have any generic
5516         parameters, call mono_metadata_load_generic_params() to read them
5517         from the MONO_TABLE_GENERICPAR.
5519         * metadata.c (mono_metadata_load_generic_params): Added
5520         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
5522         * metadata.h (MonoMethodSignature): Replaced
5523         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
5524         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
5526         * reflection.c (mono_reflection_define_generic_parameter): Moved
5527         most of the functionality into the new
5528         mono_class_from_generic_parameter(); set the `method' field if
5529         we're a method parameter.       
5531 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
5533         * marshal.c (emit_struct_conv): if native size is 0
5534         emit no code.
5536 2003-10-14  Martin Baulig  <martin@ximian.com>
5538         * icall.c: The generics API has changed in the spec since it was
5539         added to System.Type; these modifications make it match the spec
5540         again.
5541         (ves_icall_Type_GetGenericParameters): Renamed to
5542         `ves_icall_Type_GetGenericArguments'.
5543         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
5544         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
5545         `ves_icall_MonoType_get_HasGenericArguments'.
5546         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
5547         `ves_icall_MonoType_get_IsGenericParameter'.
5548         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
5549         this is no interncall anymore.
5550         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
5551         `ves_icall_TypeBuilder_get_IsGenericParameter'.
5553 2003-10-14  Martin Baulig  <martin@ximian.com>
5555         * reflection.c (mono_reflection_bind_generic_parameters): Also
5556         inflate generic methods if we're reading the class from IL.
5558 2003-10-13  Martin Baulig  <martin@ximian.com>
5560         * reflection.c (mono_reflection_define_generic_parameter): This
5561         method isn't called directly from the icall anymore; take a
5562         `MonoReflectionAssemblyBuilder *' so we can use this for type and
5563         method generic parameters.
5564         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
5565         (method_builder_encode_signature): Encode generic parameters.
5566         (mono_image_get_method_info): Write generic params to the
5567         MONO_TABLE_GENERICPARAM table.
5569         * reflection.h (MonoReflectionMethodBuilder): Added
5570         `MonoArray *generic_params'.
5572         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
5574         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
5575         wrapper for mono_reflection_define_generic_parameter().
5576         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
5578 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
5580         * marshal.h: Add missing function to fix build.
5582         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
5583         the SetLastError pinvoke attribute.
5585         * marshal.c (mono_marshal_set_last_error): New helper function called
5586         by the generated code.
5587         
5588         * marshal.c (mono_mb_emit_branch): New helper function.
5590         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
5592         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
5593         classes as parameters and return values of delegates. Fixes #29256. 
5595 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
5597         * locales.c: use gint32 in non HAVE_ICU case
5599 2003-10-11  Martin Baulig  <martin@ximian.com>
5601         * mono-debug.c (mono_debug_add_method): Added a workaround for
5602         bug #48591.
5604 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
5606         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
5607         delegates passed to native code must use the STDCALL calling 
5608         convention. Fixes #35987.
5610 2003-10-10  Martin Baulig  <martin@ximian.com>
5612         * class.c (inflate_generic_type): If we're inflating for a generic
5613         type instance (and not for a generic method), return
5614         MONO_TYPE_MVAR unchanged.
5616 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5618         * string-icalls.c: Join ignores null strings in the source array.
5619         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
5620         * threads.c: GetAvailableTheads is slightly more accurate.
5622 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
5624         * threads.h threads.c : add mono_threads_set_default_stacksize
5625         and pass default to CreateThread calls.
5627 2003-10-09  Dick Porter  <dick@ximian.com>
5629         * icall.c:
5630         * locales.h:
5631         * locales.c: Internal calls for constructing CultureInfo and
5632         related objects from libicu (if its available.)
5634 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
5636         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
5638 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5640         * threadpool.c: added an argument to async_invoke_thread that is the
5641         item to process, pass the MonoAsyncResult to the thread start function
5642         when creating a new thread. This way we don't need to acquire any lock
5643         when we're creating a new thread. Readded a semaphore for faster
5644         response times (instead of that Sleep i added).
5646 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
5648         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
5649         get daylight change dates better on Windows, fix handling
5650         of platforms without tm_gmtoff.
5652 2003-10-06  Martin Baulig  <martin@ximian.com>
5654         * class.c (inflate_generic_method): Renamed to
5655         mono_class_inflate_generic_method() and made public.
5656         (mono_class_init): Don't inflate the generic methods here.
5657         (mono_class_from_generic): Added `gboolean inflate_methods'
5658         argument.  Inflate the methods here.
5660         * loader.c (mono_method_get_param_names): Ignore instances of
5661         generic types for the moment.
5663         * reflection.c (fixup_method): Added support for inflated methods.
5664         (mono_image_create_token): Use mono_image_get_methodref_token()
5665         for inflated methods.
5666         (mono_custom_attrs_from_param): Ignore instances of generic types
5667         for the moment.
5668         (mono_reflection_bind_generic_parameters): New public function.
5669         Moved all the functionality from
5670         ves_icall_Type_BindGenericParameters() here and added support for
5671         dynamic types.
5672         (mono_reflection_define_generic_parameter): Initialize
5673         `klass->methods' here.
5675         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
5676         functionality into mono_reflection_define_generic_parameter().
5677         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
5678         TypeBuilder, return that TypeBuilder.
5680 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5682         * appdomain.c: removed mono_delegate_semaphore.
5684         * threadpool.c:
5685         (mono_thread_pool_add): moved hash table creation inside and the thread 
5686         creation outside of the critical region.
5687         (mono_thread_pool_finish): removed obsolete code.
5688         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
5689         continue or exit the thread depending on the queue.
5691 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
5693         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
5694         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
5695         handle more bool marshalling options
5697 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
5699         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
5700         arrays of structs. Also add a more descriptive error message when
5701         a structure member is marshalled as LPArray.
5703 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
5705         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5706         marshalling arrays of complex types. Fixes #29098. Also remove an
5707         usused and incomplete function.
5709 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5711         * gc.c: report heap_size - free_bytes as total memory allocated
5712         (bug#49362).
5714 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
5716         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
5717         fix timezone handling problems on Windows.
5718         
5719         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
5720         asserts when the year is outside the range handled by ms the functions.
5722         * class.c (setup_interface_offsets): If the class is an interface,
5723         fill out its interface_offsets slot.
5725 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5727         * threadpool.c: mark threadpool threads as background.
5729 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
5731         * decimal.c - define DECINLINE to nothing if not using GCC
5733 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
5735         * assembly.c: More refcount fixes.
5737 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5739         * string-icalls.c: if we're not trimming, return the same string.
5740         When not splitting, don't create a new string.
5742 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5744         * image.c:
5745         (mono_image_open): increment the ref_count inside the critical section.
5747 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
5749         * image.c (mono_image_open): Fix reference counting bug.
5751 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
5753         * marshal.c (mono_marshal_type_size) struct alignment changed for 
5754         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
5755         64bits. Avoid leak in mono_marshal_get_native_wrapper when
5756         mono_lookup_pinvoke_call throws.        
5758 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
5760         * reflection.c (mono_reflection_parse_type): Fix #49114.
5762         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
5763         temporary workaround for cygwin header problem.
5765         * object.c (mono_object_isinst): Synchronize this with the code
5766         generated by the JIT for casts.
5768 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
5770         * reflection.c (encode_type): Fix #38332.
5772 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
5774         * marshal.c (mono_marshal_method_from_wrapper): New function to return
5775         the original method from the wrapper method.
5777 2003-09-25  Martin Baulig  <martin@ximian.com>
5779         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
5780         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
5781         (ves_icall_Type_get_IsGenericInstance): New interncall.
5783 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
5785         * object.c: fix cast warning in big endian code.
5787 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
5789         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
5790         
5791 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5793         * assembly.c: don't call check_env from mono_assembly_load. It's
5794         already done once in mono_assemblies_init and may cause headaches when
5795         multiple threads are loading assemblies.
5797 2003-09-19  Martin Baulig  <martin@ximian.com>
5799         * reflection.c (mono_reflection_define_generic_parameter): Don't
5800         allocate `klass->methods', set `klass->flags' to
5801         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
5803 2003-09-18  Martin Baulig  <martin@ximian.com>
5805         * class.c (mono_class_init): Don't create `class->methods' if it's
5806         already initialized.
5808         * metadata.c (mono_metadata_load_generic_params): Make this
5809         actually work.
5811         * reflection.c (mono_reflection_define_generic_parameter): Set
5812         parent class and interfaces from the constraints.
5814         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
5815         to keep this struct in sync with the declaration in TypeBuilder.cs.
5817 2003-09-17  Martin Baulig  <martin@ximian.com>
5819         * metadata.h (MonoType): Replaced the data's `int type_param'
5820         field with `MonoGenericParam *generic_param'.
5821         (MonoGenericParam): Added `MonoClass *klass'.
5823         * class.c (mono_class_from_gen_param): Removed the
5824         `MonoImage *image' and `int type_num' arguments.
5826         * metadata.c (mono_metadata_parse_generic_param): New static
5827         method; creates a MonoGenericParam which just contains the index.
5828         (do_mono_metadata_parse_type): Call
5829         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
5830         MONO_TYPE_MVAR.
5832         * reflection.c (mono_image_typedef_or_ref): Generic type
5833         parameters may be in the same assembly, but never use a typedef
5834         for them.
5835         (mono_reflection_define_generic_parameter): We're now creating a
5836         "real" class for the type parameter; it's now safe to call
5837         mono_class_from_mono_type() on the class'es type, it'll do the
5838         right thing.
5840 2003-09-16  Martin Baulig  <martin@ximian.com>
5842         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
5843         `symfile->range_entry_size' and `symfile->class_entry_size' here;
5844         the `symfile' data structure must be fully initialized before it
5845         gets added to the table.
5847 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
5849         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
5851         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
5852         class init trampolines.
5854 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
5856         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
5857         to the built-in profiler to turn off time and allocation profiling
5858         respectively.
5860 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
5862         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
5863         g_direct_equal.
5865         * debug-helpers.c (mono_method_full_name): Print the wrapper type
5866         in human readable form.
5868 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
5870         * reflection.c icall.c: Fixed warnings.
5872         * image.c (load_class_names): Use a temporary hash table to hold the
5873         namespaces in order to avoid doing many string comparisons.
5875         * image.h: Fix typo.
5877         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
5878         Pass NULL instead of g_direct_equal to the GHashTable constructor 
5879         since the NULL case is short-circuited inside g_hash_table_lookup, 
5880         leading to better performance.  
5882         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
5883         obtain the first custom attribute for a given index. Depends on the
5884         CustomAttribute table being sorted by the parent field.
5886         * reflection.c (mono_custom_attrs_from_index): Use the new function 
5887         for better performance.
5889 2003-09-07  Martin Baulig  <martin@ximian.com>
5891         * class.c (mono_class_init): If we're a generic instance, inflate
5892         all our methods instead of loading them from the image.
5893         (mono_class_from_generic): Set `class->methods = gklass->methods'.
5895 2003-09-07  Martin Baulig  <martin@ximian.com>
5897         * mono-debug-debugger.c: Added support for constructors.
5899 2003-09-06  Martin Baulig  <martin@ximian.com>
5901         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
5902         New interncall.
5904         * reflection.c (mono_reflection_setup_generic_class): Call
5905         ensure_runtime_vtable() to create the vtable.
5907 2003-09-05  Martin Baulig  <martin@ximian.com>
5909         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
5910         MONO_TYPE_MVAR.
5912 2003-09-04  Martin Baulig  <martin@ximian.com>
5914         * reflection.c (mono_reflection_define_generic_parameter): Generic
5915         parameters start with zero.
5917 2003-09-04  Martin Baulig  <martin@ximian.com>
5919         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5921         * reflection.h (MonoReflectionGenericParam): New typedef.
5922         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
5923         the generic parameters from the managed TypeBuilder.
5925         * reflection.c (mono_reflection_define_generic_parameter): New function.
5926         (mono_reflection_create_runtime_class): Encode generic parameters.
5927         (mono_reflection_setup_generic_class): New function; this is
5928         called after adding adding all generic params to the TypeBuilder.
5929         (encode_type): Added MONO_TYPE_VAR.
5931 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
5933         * class.h class.c (mono_class_needs_cctor_run): Moved this method
5934         here from the JIT.
5936         * assembly.h assembly.c: Moved the AOT loading code into an assembly
5937         load hook.
5939 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
5941         * reflection.h reflection.c class.h class.c: Delete duplicate 
5942         definition of mono_type_get_name () from reflection.c and export the
5943         one in class.c.
5945         * class.c: Class loading fixes from Bernie Solomon 
5946         (bernard@ugsolutions.com).
5948         * reflection.c: Endianness fixes from Bernie Solomon 
5949         (bernard@ugsolutions.com).
5950         
5951 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
5953         * assembly.h assembly.c: Define a file format version for AOT
5954         libraries.
5955         
5956         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
5958         * appdomain.h (MonoJitInfo): New field to determine whenever the
5959         code is domain neutral.
5960         
5961 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
5963         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
5965 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
5967         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
5968         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
5969         Avoid caching the result since strings must be domain specific. Fixes
5970         #48050.
5972 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
5974         * marshal.c (mono_marshal_init): Make this callable multiple times
5975         since it is hard to find a correct place to call it.
5977         * object.c (mono_runtime_class_init): Execute static constructors in
5978         the correct appdomain.
5980         * image.c (build_guid_table): Handle the case when multiple images have
5981         the same GUID.
5983 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5985         * icall.c: added a couple of icalls for System.Web.
5987 2003-08-28  Martin Baulig  <martin@ximian.com>
5989         * icall.c (ves_icall_Type_BindGenericParameters): Use
5990         `klass->generic_inst' instead of `&klass->byval_arg' in the
5991         mono_type_get_object() call.  The returned type must be
5992         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
5994 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
5996         * NOTES: New file.
5998         * object.c (mono_class_proxy_vtable): Make it thread safe.
6000         * pedump.c: Fix warning.
6002         * object.c appdomain.h: Get rid of metadata_section. 
6003         It is no longer needed and it was causing deadlocks with domain->lock.
6005         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
6007 2003-08-26  Martin Baulig  <martin@ximian.com>
6009         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
6011 2003-08-26  Martin Baulig  <martin@ximian.com>
6013         * pedump.c (main): Call mono_metadata_init(),
6014         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
6015         and mono_loader_init().
6017 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
6019         * loader.h: Add missing include to fix build.
6021         * image.h: mono_image_load_references is no more.
6023         * assembly.c: Reworked assembly loading to make it really thread safe.
6024         After these changes, the assembly returned by mono_assembly_open is
6025         fully initialized, i.e. all its references assemblies are loaded.
6027         * assembly.c (mono_image_load_references): Renamed to 
6028         mono_assembly_load_references, and made private, since clients no
6029         longer need to call it.
6031         * class.c: Removed calls to mono_assembly_load_references, since it was
6032         a source of deadlocks.
6034         * loader.h loader.c class.h class.c: Protect data structures using a 
6035         new lock, the loader lock.
6037         * class.c (mono_class_setup_vtable): Create temporary hash tables and
6038         GPtrArrays only when needed.
6040         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
6041         into empty structures by mcs. Fixes pinvoke7.cs.
6042         
6043         * domain.c (mono_init): Call a new initialization function.
6045         * appdomain.c (mono_runtime_init): Call the new initializer function
6046         of the marshal module.
6048         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
6049         inserted into empty structures by mcs. Fixes pinvoke7.cs.
6051         * marshal.h marshal.c: Added locks around the wrapper caches to make
6052         this module thread safe.
6054         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
6055         this argument. Fixes pinvoke1.exe.
6057 2003-08-25  Lluis Sanchez <lluis@ximian.com>
6059         * object.h: Added call_type field to MonoMethodMessage and the corresponding
6060         enumeration of values. Removed fields to store remote call output values in
6061         MonoAsyncResult. Not needed any more.
6062         * object.c: Initialize call_type and async_result fields in mono_message_init.
6063         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
6064         dispatching the message.
6065         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
6066         async call to finish. To do it use a message with EndInvoke call type.
6068 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
6070         * loader.h loader.c (mono_method_hash_marhal_info): New function which
6071         determines whenever a method has marshalling info.
6073 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6075         * assembly.c: fix the build on windows.
6077 2003-08-22 Lluis Sanchez <lluis@ximian.com>
6079         * object.cs: Fixed bug #47785.
6081 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
6083         * string-icalls.c (StringReplace): If their are no occurances of
6084         the old string found return a reference to the supplied
6085         string. This saves some memory and matches MS behavoir.
6086         
6087 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6089         * socket-io.c: fixed compilation for systems that define AF_INET6
6090         and don't define SOL_IP/SOL_IPV6.
6092 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
6094         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
6095         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
6097         * rawbuffer.c rawbuffer.h: Make this module thread safe.
6099         * domain.c: Make this module thread safe.
6101         * domain.c (mono_init): Call new initialization function.
6103         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
6104         reference types too. Fixes #38812.
6106         * image.c (mono_image_init): Fixed warnings.
6108         * class.c (mono_class_from_typeref): Handle assembly load failure
6109         correctly.
6111         * appdomain.c (add_assemblies_to_domain): Handle the case when
6112         the references of an assembly are not yet loaded.
6114         * metadata.c image.c assembly.c: Moved initialization of global
6115         variables to a separate function called at startup since lazy 
6116         initialization of these variables is not thread safe.
6117         
6118         * image.c assembly.c: Made this module thread safe by adding locks in 
6119         the appropriate places.
6121         * domain.c (mono_init): Call the new initialization functions of the
6122         three modules.
6124 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
6126         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
6127           make a direct call. It is proxy's work to make the call asynchronous.
6128           mono_delegate_end_invoke(): If the targe is a proxy, just collect
6129           the return values.
6130         * object.cs: mono_method_call_message_new(): read AsyncResult and
6131           state object from parameters list, if this info is requested.
6132         * object.h: Added fields to store remote call output values in
6133           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
6135 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6137         * object.h: add needed fields to MonoThread.
6138         * threads.c, threads.h: allow registering a function to cleanup data
6139         allocated per thread by the JIT.
6141 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6143         * loader.h: portability fix by Bernie Solomon
6144         * <bernard@ugsolutions.com>.
6146 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
6148         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
6149         return a MonoArray. This simplifies the code and also ensures that
6150         the cache allways contains an object reference as a value.
6152         * icall.c (ves_icall_get_parameter_info): Simplified using the new
6153         function.
6155 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6157         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
6158         fixes a problem with byte ordering when getting the address family for
6159         a socket.
6161 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
6163         * .cvsignore: Added monosn.
6165         * reflection.h reflection.c loader.c: Added support for parameter
6166         marshalling to dynamically created types. Fixes #47295.
6168 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
6170         * rand.c: remove useless warnings.
6172 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6174         * class.c: implemented ldtoken for methods and fieldrefs.
6176 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6178         * threadpool.c: when mono_async_invoke was called, no one took care of
6179         monitoring the queue. So if the method invoked took some time and we
6180         got new async invoke requests after 500 ms (the thread created waited
6181         that long in WaitForSingleObject), the new async invoke was not called
6182         until the previous one finished.
6184         This is fixed now. Thanks to Totte for helping with it.
6186 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6188         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
6190 2003-08-11  Martin Baulig  <martin@ximian.com>
6192         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
6194 2003-08-06  Martin Baulig  <martin@ximian.com>
6196         * mono-debug-debugger.c: Added support for static fields,
6197         properties and methods.
6199 2003-08-06  Martin Baulig  <martin@ximian.com>
6201         * mono-debug-debugger.c: Don't store the MonoString's vtable to
6202         make this work for applications with multiple application domains.
6204 2003-08-04  Martin Baulig  <martin@ximian.com>
6206         * mono-debug-debugger.c: Completely reworked the type support; the
6207         most important thing is that we're now just using one single
6208         `MonoType' instance per type.
6210 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
6212         * mono-endian.h, mono-endian.c, icall.c: Added icall
6213         ves_icall_System_Double_AssertEndianity to assert double word endianity
6214         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
6216 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6218         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
6219         support, icalls and fixes.
6221 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
6223         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
6224         classes that are a punctuation character in .NET is not the same a
6225         g_unichar_ispunct.
6227 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6229         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
6231 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
6233         * icall.c: Add new MemCopy internalcall.
6234         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
6235         Simplified code; It is not necessary to handle all the cases here,
6236         as the C# code takes care of it.  Only handle the case of the name
6237         resource embedded into the assembly.
6239         Changed signature to return the data pointer and the size of the
6240         data. 
6242 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
6244         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
6245         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
6247 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6249         * socket-io.c: ignore EINTR error in select.
6251 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6253         * class.h, class.c: removed unused subclasses field in MonoClass.
6255 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6257         * icall.c: improve fix of get_base_definition(). If the parent class
6258           doesn't have the mehod, look at the parent of the parent.
6259         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
6260           to check if a parameter is an in or out parameter
6261           (PARAM_ATTRIBUTE_IN is not set by default).
6262           mono_method_return_message_restore(): Use mono_class_value_size to
6263           get the size of a value type. mono_type_stack_size (parameterType)
6264           does not return the correct value if parameterType is byRef.
6265           mono_load_remote_field(), mono_load_remote_field_new(),
6266           mono_store_remote_field(), mono_store_remote_field_new():
6267           raise exception if the remote call returns an exception.
6269 2003-07-28  Martin Baulig  <martin@ximian.com>
6271         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
6272         method.  This is a wrapper around mono_runtime_invoke() which
6273         boxes the instance object if neccessary.
6275 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6277         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
6278         metadata.h, row-indexes.h, verify.c: first cut of generics support.
6280 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6282         * icall.c: disable mcs bug workaround.
6284 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
6286         * object.c (mono_runtime_class_init): Take the metadata_section
6287         mutex before obtaining the domain mutex.
6289         * appdomain.h: Added definition of metadata_section mutex here. 
6291         * object.c: define metadata_mutex here.
6293 2003-07-24  Ravi Pratap  <ravi@ximian.com>
6295         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
6296         fixed.
6298 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
6300         * reflection.c: Fix bug #46669
6302 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6304         * exception.c:
6305         * exception.h:
6306         * icall.c:
6307         * object.h: fill in the type name for TypeLoadException.
6309 2003-07-23  Ravi Pratap  <ravi@ximian.com>
6311         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
6312         relationship between TypeBuilders while compiling corlib) and bug
6313         45993 (Array types returned from the runtime while compiling
6314         corlib were from the loaded corlib).
6316 2003-07-22  Martin Baulig  <martin@ximian.com>
6318         * mono-debug-debugger.c: Reworked the type support a bit more;
6319         distinguish between types and classes.
6321 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
6323         * icall.c: add IsArrayImpl icall.
6325 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
6327         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
6328         initializing real_size only once. Also fix bug #46602.
6330 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
6332         * object.c: Renamed mono_metadata_section to metadata_section.
6334 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
6336         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
6337           empty array if the type is an array. Fixed.
6338           ves_icall_MonoMethod_get_base_definition: if the base method
6339           is abstract, get the MethodInfo from the list of methods of
6340           the class.
6341         * reflection.c: ParameterInfo.PositionImpl should be zero-based
6342           and it was 1-based. Fixed in mono_param_get_objects.
6344 2003-07-20  Martin Baulig  <martin@ximian.com>
6346         * mono-debug.h: Set version number to 31.
6347         (mono_debug_init): Added `MonoDomain *' argument.
6349         * mono-debug-debugger.c: Reworked the type support; explicitly
6350         tell the debugger about builtin types; pass the `klass' address to
6351         the debugger.
6353 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
6355         * image.c: Allow new metadata tables to be loaded without a
6356         warning. Also update the warning message to give the new constant value.
6357                 
6358 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
6360         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
6361         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
6362         array type representation changes.
6364 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6366         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
6367         on Environment.Exit () call.
6369 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6371         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
6372         requires a matching corlib.
6374 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6376         * Changelog: My editor decided to add a CR to each line. Sorry about that.
6377           Committed again without the CRs.
6378         
6379 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6381         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
6382           getting it from the "this" socket instance. Did not work
6383           if the socket is a subclass of Socket.
6384           Also fixed bug #35371.
6386 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6388         * metadata.c: fixed size for TypedByRef.
6389         * loader.c: when searching for a method, consider the vararg amrker.
6390         * unicode.c, decimal.c: constify some arrays.
6392 2003-07-15  Dick Porter  <dick@ximian.com>
6394         * socket-io.c: Fixed compilation for gcc < 3.2.
6396         Fixed compilation for machines that don't have AF_INET6 (thanks to
6397         Bernie Solomon <bernard@ugsolutions.com> for that part.)
6399         Fixed compile warnings.
6400         
6401         Fixed formatting and line endings.
6403 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
6405         * socket-io.h:
6406         * socket-io.c: Added IPv6 support.
6408 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
6410         * class.c (mono_class_is_assignable_from): New function to implement
6411         the is_assignable_from logic. Used by mono_object_isinst, 
6412         Type::IsAssignableFrom () and the interpreter.
6414         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
6415         Object, even interfaces.
6416         
6417         * object.c (mono_object_isinst): Implement in terms of 
6418         is_assignable_from.
6420         * icall.c (ves_icall_type_is_assignable_from): New icall.
6422 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
6424         * domain.c (foreach_domain): fix compiler warning.
6426 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
6428         * image.c (load_metadata_ptrs): use g_strndup because strndup is
6429         not available on all plattforms
6431 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
6433         * image.h image.c: Store the metadata version string in MonoImage.
6434         * icall.c: New icall to retrieve the image version.
6435         * reflection.c (create_dynamic_image): Fill in the image version field
6436         * reflection.c (build_compressed_metadata): Use the image version
6437         from the image structure.
6439 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6441         * appdomain.c: modified comment.
6442         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
6443         That will be its last iteration when mono_gc_cleanup is called from
6444         mono_runtime_cleanup and before the domain is unloaded.
6446         Fixes bug #45962.
6448 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
6450         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
6451         attributes.
6453 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6455         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
6456         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
6457         Bernie Solomon <bernard@ugsolutions.com>.
6459 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6461         * object.c, object.h: provide mono_object_new_fast() for faster
6462         allocation in some special cases.
6464 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
6466         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
6467         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
6469 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
6471         * threadpool.c: fix leaks.
6473 2003-07-01  Dick Porter  <dick@ximian.com>
6475         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
6476         using MonoGHashTables.  Fixes threadpool bug posted to list.
6478 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6480         * image.h, image.c: added support to load an assembly from a byte array.
6481         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
6482         assembly bundle support.
6484 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
6486         * threadpool.c (mono_thread_pool_add): keep a reference to the
6487         AsyncResult to prevent GC
6489 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6491         * class.c: leak fix.
6493 2003-06-25  Dick Porter  <dick@ximian.com>
6495         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
6496         for the async object, the WaitHandle object will close the handle.
6497         Fixes bug 45321.
6499 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6501         * class.c: in mono_array_class_get (), lookup from the hash with the
6502         same type we insert: this works around a bug in
6503         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
6504         lluis. The real fix will have to wait for after the release.
6506 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6508         * icall.c: fix memory leak when getting type members.
6510 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6512         * reflection.c: added more pubtoken special cases.
6514 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
6516         * class.c: handle field offset correctly when class size
6517         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
6519 2003-06-20  Martin Baulig  <martin@ximian.com>
6521         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
6522         *image' field.
6524 2003-06-20  Martin Baulig  <martin@ximian.com>
6526         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
6528 2003-06-20  Martin Baulig  <martin@ximian.com>
6530         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
6531         just distinguish between variables in registers and variables at
6532         an offset relative to a register.
6534 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6536         * icall.c: #ifdef out latest changes until mcs is fixed.
6538 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6540         * icall.c: return members in metadata order.
6542 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6544         * icall.c: avoid infinite loop in GetTimeZoneData.
6546 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
6548         * icall.c: added Marshal.Prelink/All icalls.
6550 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6552         * object.c, object.h: fix warnings and do some overflow checking
6553         when creating arrays.
6555 2003-06-17  Dick Porter  <dick@ximian.com>
6557         * file-io.h:
6558         * file-io.c: File attributes need to be tweaked slightly when
6559         passed from the managed to the w32 world.
6561 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6562         * profiler.h profiler-private.h profiler.c: Rework last patch
6563         based on suggestion by Paolo.
6564         
6565 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6567         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
6568         instruction level coverage data collection.
6569         * profiler.h profiler.c (: Added new callback function which can be
6570         used by the profiler to limit which functions should have coverage
6571         instrumentation.
6572         * profiler.c (mono_profiler_load): Call g_module_build_path to
6573         generate the file name of the profiler library.
6575 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6577         * profiler.c, profiler.h, profiler-private.h: added basic block 
6578         coverage profiling API.
6580 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
6582         * reflection.c (mono_reflection_create_runtime_class): Add support
6583         for events in dynamically generated code.
6585         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
6586         not allocated.
6588 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6590         * icall.c: when getting timezone info, return reasonable values if we
6591         can't get the actual data.
6593 2003-06-14  Dick Porter  <dick@ximian.com>
6595         * threads.c (start_wrapper): Remove the reference to the thread
6596         object in the TLS data, so the thread object can be finalized.
6597         This won't be reached if the thread threw an uncaught exception,
6598         so those thread handles will stay referenced :-( (This is due to
6599         missing support for scanning thread-specific data in the Boehm GC
6600         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
6602 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
6604         * reflection.c: ensure streams and tables are first allocated with
6605         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
6607 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6609         * icall.c: fixed GetElementType for byrefs (bug# 44792).
6611 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
6613         * reflection.c (mono_reflection_create_runtime_class): Add support for
6614         properties to dynamically created classes.
6615         * reflection.c: Fix a few places where non-MonoObjects were inserted
6616         into the tokens hashtable.
6618 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6620         * object.c: some support to handle out of memory exceptions.
6622 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
6624         * marshal.c (mono_marshal_get_native_wrapper): support reference
6625         return types
6627 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6629         * object.h, object.c: more portability stuff from Bernie Solomon.
6630         Unexport mono_object_allocate(). Added mono_object_unbox ().
6631         Set exitcode when an unhandled exception is thrown.
6633 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
6635         * marshal.c (mono_marshal_get_native_wrapper): use custom
6636         marshaler for return types.
6638 2003-06-10  Dick Porter  <dick@ximian.com>
6640         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
6641         ip_mreq is available
6643 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
6645         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
6646         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
6647         by Bernie Solomon <bernard@ugsolutions.com>.
6649 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
6651         * gc.c (mono_gc_init): Avoid error message on shutdown when
6652         GC_DONT_GC=1 is used.
6654         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
6655         New icall to return the GUID of a module.
6657 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6659         * class.c: ensure instance size always includes the parent's size
6660         even whem class size is set explicitly (fixes bug#44294).
6662 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6664         * profiler.h, profiler.c: made the simple profiler thread-safe,
6665         get more accurate timing info. Allow the loading of an
6666         externally-developed profiler module.
6668 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
6670         * marshal.c (mono_marshal_get_native_wrapper): improved
6671         class/byref arguments.
6672         (mono_marshal_get_native_wrapper): better string marshaling support.
6674 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
6676         * class.c: ensure .pack and .size are handled correctly and
6677         simplified layout of static fields.
6679 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
6681         * appdomain.c
6682         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
6684         * loader.c (mono_lookup_pinvoke_call): look for modules in the
6685         current directory (fix bug 44008)
6687 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
6689         * marshal.c (mono_marshal_get_native_wrapper): started support for
6690         custom marshalers.
6691         (mono_delegate_to_ftnptr): consider marshalling specifications
6693 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
6695         * reflection.c, reflection.h: emit custom marshal info.
6697 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6699         * object.c: free the GError.
6700         * icall.c: added CloseEvent_internal.
6701         * threads.[ch]:
6702         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
6703         call.
6705 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
6707         * loader.c (mono_method_get_signature): Add support for dynamic
6708         assemblies.
6710 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
6712         * reflection.c: fixed bug #43905.
6714 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6716         * class.c, domain.c, icall.c, metadata.h, object.h: support for
6717         handling TypedReference and ArgIterator.
6718         * loader.c, loader.h: added function to get signature at call site.
6720 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6722         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
6723         data readonly. Buglets and warning fixes. Some MethodSpec support.
6725 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6727         * class.h, class.c, object.c: remove relative numbering support.
6729 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
6731         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
6732         free the string, until we get a chance to fix Gtk#
6734 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6736         * marshal.c: revert last patch.
6738 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
6740         * icall.c: updates for new mono_class_vtable() not calling
6741         the type constructor anymore.
6743 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6745         * object.h, object.c: separate vtable creation from type
6746         initialization. Make running the .cctor thread safe.
6748 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
6750         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
6752 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
6754         * loader.c (mono_get_method): consider calling convention
6756 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
6758         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
6759         to return the invisible global type for a module.
6761         * reflection.c (mono_image_build_metadata): Emit global fields too.
6763 2003-05-20  Peter Williams  <peterw@ximian.com>
6765         * loader.c (mono_lookup_internal_call): Add a few newlines.
6767 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
6769         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
6770         literal strings.
6772         * appdomain.c (set_domain_search_path): Recalculate search path when
6773         AppDomainSetup.PrivateBinPath changes.
6775         * object.c (mono_class_compute_gc_descriptor): It turns out some
6776         parts of the class libs (like System.Thread) holds pointers to
6777         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
6778         to treat native int a pointer type here.
6779         
6780 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6782         * appdomain.h, domain.c: add hashtable for jump target resolution.
6784 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
6786         * reflection.h reflection.c icall.c: Added new icalls 
6787         GetManifestResourceInfoInternal, GetModulesInternal and support
6788         infrastructure.
6790 2003-05-16  Dick Porter  <dick@ximian.com>
6792         * icall.c:
6793         * file-io.h:
6794         * file-io.c: Implement System.IO.MonoIO::GetTempPath
6796 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
6798         * object.c: mono_store_remote_field: little fix to previous patch.
6800 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6802         * class.c: add constructors to array classes.
6803         * icall.c: special case array construction for InternalInvoke (),
6805 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
6807         * class.h class.c reflection.c object.c: Added support for field
6808         defaults in dynamically generated classes.
6810 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
6812         * reflection.c: properly encode charset for ddlimport.
6814 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
6816         * threads.c: allow compiling without GC.
6818 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6820         * appdomain.h, object.c, object.h, threads.c, threads.h: added
6821         handling of thread static data.
6823 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6825         * reflection.h, reflection.c: added mono_custom_attrs_free ().
6827 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
6829         * class.c (mono_array_class_get): always set the serializable flags
6830         (mono_array_class_get): always set the SEALED attribute for array types
6832 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
6834         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
6835         attributes (fix for bug 42021).
6837 2003-05-12  Dick Porter  <dick@ximian.com>
6839         * gc.c: Don't run finalizers when the finalizer thread is
6840         finishing up, because the default domain has already been
6841         destroyed.
6843 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
6845         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
6846         value is null, we should throw an exception.   This is slightly
6847         different than the other conventions used for the constructor.
6849 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6851         * socket-io.c: fixed windows build.
6853 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6855         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
6857 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
6859         * object.c (mono_string_new_wrapper): Compatibility fix for MS
6860         compilers.
6862 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6864         * class.c (mono_class_layout_fields): Add experimental GC aware
6865         auto layout facility. Requires class library changes to work correctly.
6867         (mono_class_setup_vtable): Avoid overriding explicit interface
6868         method implementations. Fixes iface3.exe test.
6870         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
6871         object reference.
6872         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
6873         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
6875         * metadata.h: Add new type classification macro which determines
6876         whenever the type holds an object reference.
6878 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
6880         * marshal.c (mono_marshal_get_native_wrapper): cleanups
6882 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
6884         * gc.c (finalizer_thread): Work around a GC bug.
6886 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
6888         * marshal.c (emit_struct_conv): allow unions
6890         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
6892 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
6894         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
6896 2003-05-06  Martin Baulig  <martin@ximian.com>
6898         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
6900 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6902         * socket-io.c:
6903         (Select_internal): allow NULLs, don't create arrays if not needed.
6904         Coupled with Socket.cs changes.
6906         * threadpool.c:
6907         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
6908         register a finalizer for it that will close the semaphore handle. This
6909         fixes the leak and make Lupus' test run with > 4080 loops.
6911 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
6913         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
6914         Jerome Laban (bug #42287)
6916 2003-05-02  Martin Baulig  <martin@ximian.com>
6918         * debug-mono-symfile.h
6919         (MonoSymbolFile): Moved declaration into mono-debug.h.
6920         (MonoDebugMethodJitInfo): Likewise.
6921         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
6922         argument.
6923         (_mono_debug_address_from_il_offset): Take a
6924         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
6926         * mono-debug.h
6927         (MonoDebugDomainData): New struct.
6928         (mono_debug_get_domain_data): New function.
6929         (mono_debug_add_method): Take an additional `MonoDomain *'
6930         argument.
6931         (mono_debug_source_location_from_address): Likewise.
6932         (mono_debug_il_offset_from_address): Likewise.
6933         (mono_debug_address_from_il_offset): Likewise.
6935 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
6937         * reflection.c: one more check for null type in custom attrs.
6939 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6941         * reflection.c: avoid warning (comparison is always false due to limited
6942         range of data type).
6944 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6946         * icall.c: throw an exception in Type.GetField if the argument 'name'
6947         is NULL.
6949 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
6951         * reflection.c: fixed handling of enums in named arguments to custom
6952         attributes (bug #42123).
6954 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
6956         * reflection.c: use the right array element type and handle
6957         a null for a Type argument, too.
6959 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
6961         * reflection.c: handle arrays as arguments to custom attributes.
6963 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6965         * reflection.c: handle a string value in a custom attr
6966         ctor that takes an object.
6968 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
6970         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
6971         (fix bug #42063)
6973 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
6975         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
6977 2003-04-27  Martin Baulig  <martin@ximian.com>
6979         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
6980         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
6981         MONO_DEBUGGER_EVENT_BREAKPOINT.
6982         (mono_breakpoint_trampoline_code): Removed.
6983         (mono_debugger_event_handler): The last argument is now a
6984         `guint32'.
6985         (mono_debugger_insert_breakpoint_full): Removed the
6986         `use_trampoline' argument.
6987         (mono_debugger_method_has_breakpoint): Likewise.
6988         (mono_debugger_trampoline_breakpoint_callback): Renamed to
6989         mono_debugger_breakpoint_callback(); take the method and
6990         breakpoint number as arguments.
6992 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
6994         * metadata.c: fix off by one when loading parameters attributes.
6996 2003-04-24  Martin Baulig  <martin@ximian.com>
6998         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
7000 2003-04-24  Martin Baulig  <martin@ximian.com>
7002         * mono-debug-debugger.c: Moved all code which interacts with the
7003         Mono Debugger here.
7005         * debug-mono-symfile.c: This code now just deals with the symbol
7006         file itself, the debugger code is now in mono-debug-debugger.c.
7008 2003-04-23  Martin Baulig  <martin@ximian.com>
7010         * mono-debug.c (mono_debug_source_location_from_il_offset):
7011         New method; like mono_debug_source_location_from_address(), but
7012         takes an IL offset instead of a machine address.
7014 2003-04-23  Martin Baulig  <martin@ximian.com>
7016         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
7017         `line' field; this is now computed by the debugger.
7019 2003-04-23  Martin Baulig  <martin@ximian.com>
7021         * mono-debug.[ch]: New files.  This is the new debugging interface.
7023         * mono-debug-debugger.[ch]: New files.  Moved all code which
7024         interacts with the Mono Debugger here.
7026 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
7028         * domain.c (mono_init): initialize mono_defaults.monitor_class
7030 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
7032         * reflection.c (method_encode_code): Add a spicy exception to help
7033         future compiler authors.
7035 2003-04-21  Martin Baulig  <martin@ximian.com>
7037         * icall.c
7038         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7039         Make this work with relative pathnames; g_filename_to_uri() needs
7040         an absolute filename.
7042 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
7044         * icall.c: Track name changes in Object and ValueType.
7046 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
7048         * metadata.c (mono_type_stack_size): size should be a multiple of
7049         sizeof (gpointer)
7051 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7053         * gc.c:
7054         (internal_domain_finalize): moved into mono_domain_finalize. No need
7055         to create another thread because the finalizers will be run in the
7056         finalizer thread.
7057         
7058         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
7059         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
7060         to be run (MS does this too).
7062 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
7064         * object.c (mono_class_compute_gc_descriptor): Update comment.
7066         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
7068         * image.h: Add synchronized wrapper cache.
7070         * image.c (do_mono_image_open): Initialize cache.
7072         * reflection.c (create_dynamic_mono_image): Initialize cache.
7074 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7076         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
7077         ves_icall_System_Buffer_ByteLengthInternal.
7079 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7081         * reflection.c: setup klass->nested_in earlier. Allow
7082         a dash in the assembly name.
7084 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
7086         * metadata.c (mono_type_to_unmanaged): dont access
7087         type->data.klass for MONO_TYPE_OBJECT
7088         (mono_type_to_unmanaged): consider System.Delegate class
7090 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
7092         * class.c: just setup supertypes in the proper place instead of
7093         initializing the full element class for arrays.
7095 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7097         * class.c: ensure the element class of arrays is initialized.
7098         Setup the supertype info for array classes, too.
7100 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
7102         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
7104 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7106         * Makefile.am: re-added -m option when running cygpath. This way,
7107         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
7108         separator.
7109         * mono-config.c: same codepath for locating mono config file for WIN32
7110         and the rest.
7111         * assembly.c: if mono_assembly_setrootdir is called, don't override
7112         the value set.
7114 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7116         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
7117         MONO_ASSEMBLIES variable.
7119 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
7121         * icall.c: added Assembly::GetNamespaces() icall.
7123 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7125         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
7127 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
7129         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
7130         * object.c: fixed bug in the construction of vtable for proxies
7132 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
7134         * object.c (mono_array_new): Mark mono_array_new as an icall.
7136 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7138         * class.c: fixed test for public method when overriding interfaces.
7139         Closes bug #40970.
7141 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7143         * appdomain.h, domain.c: added mono_domain_foreach() to
7144         be able to access the currently loaded appdomains.
7145         * object.c: make string interning work across sppdomains.
7146         Mark some functions for use as icalls.
7148 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
7150         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
7152         * reflection.h reflection.c: Allocate long living data using 
7153         GC_MALLOC_ATOMIC so the collector does not need to scan it.
7155         * reflection.c: Double the allocation size in streams instead of
7156         increasing it, to prevent unneccesary copying on large assemblies.
7157         
7158         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
7159         creation if the assembly does not have the Run flag set.
7161 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
7163         * class.h: avoid the C++ keywords in header files (Jerome Laban
7164         spotted and fixed this).
7166 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7168         * object.c:
7169         (mono_unhandled_exception): fill in the arguments for the
7170         UnhandledException event. Only trigger that event for the default
7171         domain (as MS does).
7173 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
7175         * object.c: Improve typed allocation stuff based on suggestions from
7176         Paolo. Also turn it on if the GC library supports it.
7178 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7180         * object.c object.h class.h: Added experimental typed allocation
7181         facility using the interfaces in gc_gcj.h.
7183         * os/gc_wrapper.h: Added new include files.
7184         
7185 2003-04-03  Martin Baulig  <martin@ximian.com>
7187         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
7188         which is not yet enabled by default.
7190         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
7191         functions.
7192         (mono_gc_lock, mono_gc_unlock): New static functions.
7194         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
7195         functions; stop/start the world for the garbage collector.  This
7196         is using the windows API; we need to complete the SuspendThread()/
7197         ResumeThread() implementation in the io-layer to make this work on Unix.
7198         (mono_gc_push_all_stacks): New public function; tells the garbage
7199         collector about the stack pointers from all managed threads.
7201 2003-04-03  Martin Baulig  <martin@ximian.com>
7203         * object.h (MonoThread): Added `gpointer stack_ptr'.
7205         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
7207 2003-04-03  Martin Baulig  <martin@ximian.com>
7209         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
7211 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7213         * reflection.c (typebuilder_setup_fields): Initialize field.first and
7214         field.last.
7216 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
7218         * loader.c (mono_lookup_internal_call): Report the corlib that is
7219         out of sync.
7221 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
7223         * icall.c (ves_icall_type_GetTypeCode): fixed check for
7224         System.DBNull (it's class not valuetype).
7226 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7228         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
7229         if the array method was already assigned a token (fixes bug#40646).
7231 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
7233         * reflection.c (mono_reflection_get_type): Attempt type resolve even
7234         if no assembly is given.
7236 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
7238         * metadata.h: Added the new tables.
7240         * row-indexes.h: Added definitions for new tables.
7242         * metadata.c: Add schemas for new tables, and add support for
7243         computing the sizes of them.
7245         * class.c: Update for handling the new type cases.
7247 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
7249         * metadata.h (MONO_TYPE_IS_VOID): new macro
7251 2003-03-31  Martin Baulig  <martin@ximian.com>
7253         * threads.h (MonoThreadCallbacks): Added `thread_created'.
7255         * threads.c (mono_thread_new_init): Call `thread_created' in the
7256         mono_thread_callbacks.
7258 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
7260         * loader.h: added marshalbyrefobject_class to mono_defaults
7261         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
7262         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
7263           generation of output parameters.
7264           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
7265         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
7266           contextbound and the target object belongs to the context of the caller.
7267         * object.h: added context and unwrapped_server variables in MonoRealProxy.
7268         * object.c: Implemented support for interfaces and abstract classes
7269           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
7270           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
7272 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
7274         * class.h class.c (mono_class_is_subclass_of): New function.
7275         
7276         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
7277         routines for most common case (calls from ArrayList::ToArray).
7279         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
7280         routine so programs which call Environment::Exit() can be profiled.
7282         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
7283         Added MONO_ARCH_SAVE_REGS.
7285         * icall.c (ves_icall_type_is_subtype_of): Use new function.
7287 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
7289         * blob.h: Add a couple of new MonoType types definitions.
7291         * tabledefs.h: Add a couple of new call convs.
7293 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
7295         * reflection.h (MonoReflectionDynamicAssembly): track changes in
7296         the layout of the class.
7298         * reflection.c (alloc_table): double the size on overflow to avoid
7299         unnecessary copying.
7301         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
7302         avoid filling out metadata tables and blobs. Also set mb->ilgen to
7303         null so it can be garbage collected.
7304         
7305 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
7307         * reflection.c (mono_reflection_get_type): Return the resolved type
7308         only if it is in the assembly we searched.
7310         * reflection.c (ensure_runtime_vtable): Initialize method slots.
7312         * class.c (mono_class_setup_vtable): Set the slot of the overriding
7313         method.
7315 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7317         * appdomain.c:
7318         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
7319         the right one is 'file:///blah', but MS allows it.
7320         * assembly.c:
7321         (mono_assembly_open): allow 'file://blah'
7323         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
7325 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
7327         * socket-io.c: fixes bug #40310.
7329 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
7331         * reflection.c (mono_reflection_parse_type): handle deeply nested
7332         types correctly.
7334         * reflection.c (mono_image_create_token): Use unique token values
7335         since they will be put into a hash table.
7337         * class.c (mono_class_setup_vtable): If a method occurs in more than
7338         one place in the vtable, and it gets overriden, then change the
7339         other occurances too.
7341         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7342         object as return type.
7344 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7346         * icall.c: Deleted "ToString" implementation for double and float
7347         because they are full implemented in managed code.
7349 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7351         * reflection.c, reflection.h: implemented and exported functions
7352         to retrieve info about custom attributes.
7354 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7356         * appdomain.c: moved Uri handling to assembly.c
7357         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
7358         work when using a file Uri in *nix and windows.
7360         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
7361         GetReferencedAssemblies.
7363 2003-03-18  Dick Porter  <dick@ximian.com>
7365         * icall.c: Rename a couple of internal calls
7367         * threads.c: Set the thread state to Stopped when a thread exits.
7368         Fixes bug 39377.
7370 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
7372         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
7373         New icall.
7375         * object.c (mono_class_vtable): fix warning.
7377 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
7379         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
7381         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
7382         memory.
7383         (method_encode_clauses): Create exception info structures in the right
7384         order.
7385         (mono_reflection_setup_internal_class): Initialize supertypes field.
7387         * class.c object.c: Handle interfaces which implement other interfaces 
7388         correctly.
7390         * class.h class.c: Move the supertypes array initialization code into 
7391         a separate function so it can be used for dynamic types too. Also call
7392         it earlier, in mono_class_init(), since it can be used before the
7393         type is initialized.
7395 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7397         * Makefile.am:
7398         * assembly.c:
7399         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
7401         * appdomain.c:
7402         * appdomain.h:
7403         * marshal.c:
7404         * object.c: remove warnings.
7406 2003-03-13  Martin Baulig  <martin@ximian.com>
7408         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
7409         (MonoDebugLexicalBlockEntry): New types.
7411         * debug-mono-symfile.c
7412         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
7414 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7416         * process.c: ret can be any non-zero value accroding to MS doc.
7418 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
7420         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
7421         fixing a warning for a miss-used prototype, would have cause
7422         random memory corruption.
7424 2003-03-07  Martin Baulig  <martin@ximian.com>
7426         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
7427         getting really annoying ....
7429 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
7431         * reflection.c (fixup_method): added support for array methods.
7433 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7435         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
7436         (pointed out by Michael Adams).
7438 2003-03-04  Dick Porter  <dick@ximian.com>
7440         * icall.c: Temporarily reverted the Double and Single ToString()
7441         change, because it broke nunit.
7443 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
7445         * object.h, threads.h: make include files compatible with C++
7446         (patch by Jerome Laban <jlaban@wanadoo.fr>).
7448 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7450         * icall.c: Erased ToString helper functions for Double and Single.
7451         Now, that implementations ar all in managed code (Double and Single
7452         Formatters).
7454 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
7456         * appdomain.c: Added method for initializing the default context of
7457         a domain. Added internal call for getting the default context.
7458         * appdomain.h: Added context variable in MonoDomain struct.
7459         * domain.c: mono_domain_set also sets the default context of the domain
7460         * icall.c: Mapped internal method InternalGetDefaultContext.
7461         * object.c: mono_object_get_virtual_method returns always a remoting
7462         wrapper if the object is a transparent proxy.
7463         mono_runtime_invoke_array: when creating an object by calling the
7464         constructor, if the created object is a proxy, then the constructor should
7465         be called using the a remoting wrapper.
7467 2003-03-03  Dick Porter  <dick@ximian.com>
7469         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
7470         variable so it compiles on solaris.  Problem spotted by
7471         Christopher Taylor <ct@cs.clemson.edu>
7473 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7475         * appdomain.c:
7476         (get_info_from_assembly_name): don't leak value.
7478         * icall.c:
7479         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
7480         result.
7482 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
7484         * assembly.c: export mono_image_load_references ().
7485         * class.c: handle function pointers. mono_class_from_name() now
7486         supports nested type names directly.
7488 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
7490         * reflection.h reflection.c: Encode already created dynamic methods 
7491         and fields correctly as a DEF instead of a REF.
7493         * reflection.c: Get rid of the force_ref argument to 
7494         mono_image_typedef_or_ref since it was wrong in the first place.
7496         * string-icalls.c: add error checking to string constructors according
7497         to the MSDN docs.
7499         * reflection.c: Emit types in the order their TypeBuilders were 
7500         created. Previously, a new table index was assigned to each type before
7501         the tables were emitted. This was wrong because the signature blob
7502         might already refer to a type by its original table index.
7504 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
7506         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
7507         change.
7508         
7509 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7511         * Makefile.am: make assemblies dir have \ instead of / on windows.
7513 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
7515         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
7516         iterate over the NESTEDCLASS table using a linear search since the
7517         table is not guaranteed to be sorted by the secondary key.
7519         * class.c (mono_class_create_from_typedef): fixed up call to
7520         mono_metadata_nesting_typedef.
7521         
7522 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
7524         * marshal.c (mono_string_to_byvalstr): clear the memory as
7525         suggested by Jerome Laban <jlaban@wanadoo.fr>
7527 2003-02-26  Dick Porter  <dick@ximian.com>
7529         * process.c: Cope with padding in .rsrc blocks
7531 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7533         * metadata.h: reverted the filter_len change, it breaks reflection
7534         
7535 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7537         * metadata.h: added a new field to store the filter_len
7538         
7540 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
7542         * reflection.c: handle custom attributes for types and members
7543         created with Reflection.Emit (bug#38422).
7545 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
7547         * reflection.c: define RTSpecialName automatically for constructors for
7548         compatibility with MS.NET.
7550         * reflection.c (mono_reflection_create_runtime_class): initialize
7551         nested_in field of dynamically created classes.
7553 2003-02-22  Martin Baulig  <martin@ximian.com>
7555         * debug-mono-symfile.h: Incremented version number.
7557 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7559         * object.h icall.c process.c: fix warnings.
7561 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7563         * appdomain.h appdomain.c:
7564         (mono_domain_try_type_resolve): split the 
7565         name_or_tb argument into a name and a tb argument.
7566         (mono_domain_has_type_resolve): new function to check whenever the
7567         application has registered a TypeResolve event handler.
7568         
7569         * icall.c reflection.h reflection.c: move the type resolve logic into
7570         mono_reflection_get_type () so it will be invoked when 
7571         Assembly::GetType () is called.
7573         * reflection.c:
7574         (mono_reflection_get_type): renamed to get_type_internal.
7575         (mono_reflection_get_type): fixed type name generation so it works 
7576         for nested types too.
7577         (mono_reflection_get_type): call has_type_resolve () to avoid the 
7578         costly type name generation if there is no resolve event handler.
7580 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7582         * class.c, image.c: load exported types from file references.
7584 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
7586         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
7587           used to cache the managed methods used to create proxies and make 
7588           remote invocation of methods.
7589         * class.h: Added in MonoVTable a flag to indicate that a class needs 
7590           to be remotely created.
7591         * object.c: Modified the method mono_class_vtable(). It now initializes 
7592           the remote flag of the vtable. Modified mono_object_new_specific(), 
7593           so now it checks the remote flag.
7594         * icall.c: Added a couple of internal methods, one for enabling instance 
7595           creation interception for a type, and one for creating objects bypassing
7596           the remote check.
7598 2003-02-18  Martin Baulig  <martin@ximian.com>
7600         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
7601         New interncall to get a method's metadata token.
7603         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
7604         New interncall for the debugger.
7606 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
7608         * class.c (mono_class_setup_vtable): allocate supertype array
7610 2003-02-18  Martin Baulig  <martin@ximian.com>
7612         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
7614 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7616         * reflection.c:
7617         (assembly_name_to_aname): jump over unknown properties (i've found
7618         something like: 'type, assembly, version=xxx, custom=null, public...',
7619         so now will ignore custom=null and still get the rest of the values).
7621 2003-02-17  Dick Porter  <dick@ximian.com>
7623         * threads.c: Have Thread.Start() wait for a semaphore to signal
7624         that the thread has set up all its local data.  This fixes bug
7625         34323, where Abort() raced the new thread's TLS data.
7627         Also removes the handle_store() call from start_wrapper, because
7628         threads are now always created suspended and there is no longer a
7629         race between the parent and child threads to store the info.
7631 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
7633         * image.c: explain the #- heap issue in a message, hopefully
7634         avoiding FAQs on mono-list.
7636 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7638         * icall.c:
7639         (GetEntryAssembly): if the domain has not invoked
7640         AppDomain.ExecuteAssembly yet, return the assembly of the default
7641         AppDomain.
7643 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
7645         * class.c (mono_ldtoken): make it work in dynamic assemblies.
7647 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
7649         * metadata.c, reflection.c: simple speedup to type hash
7650         and equals code.
7652 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
7654         * image.c, image.h, class.c, assembly.c: move module loading
7655         to MonoImage. When loading metadata, consider alignemnet from
7656         the start of metadata, not from the metadata address in memory.
7658 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
7660         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
7661         AssemblyBuilder objects. Factored out custom attribute creation into
7662         a separate function.
7663         (create_custom_attr): new function to create custom attributes.
7665 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
7667         * Makefile.am: Got tired of typing the full pathname to pedump.
7668         Until there is another option, am installing this.
7670 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
7672         * class.c (class_compute_field_layout): always set field->parent 
7673         (mono_ldtoken): use mono_defaults.fieldhandle_class;
7675 2003-02-11  Dick Porter  <dick@ximian.com>
7677         * threads-types.h:
7678         * monitor.c: Rewrote Monitor, making lock much faster and
7679         Pulse/Wait work as specified.  Also uses much fewer handles, and only
7680         creates them as needed.
7682         * exception.c: Added SynchronizationLockException
7684         * threads.c: Deleted old Monitor implementation.  The new one is
7685         in a new file.
7687 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7689         * class.c: handled TypedReference type code. Set the correct size for
7690         class data. Setup interface_offsets for interface classes, too.
7692 2003-02-09  Martin Baulig  <martin@ximian.com>
7694         * debug-mono-symfile.h: Reflect latest symbol writer changes.
7696 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
7698         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
7699         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
7700         * object.c: fixed mono_object_get_virtual_method () for interfaces.
7701         * verify.c: check for code that runs after the end of the method.
7703 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7705         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
7706         "System.Math::Round2".
7707         * sysmath.h: Added Floor, Round and Round2 definitions.
7708         * sysmath.c: Modified certain functions that were not 100% compliant
7709         with MS.NET (math precision) and added the implementation of Floor,
7710         Round and Round2.
7712 2003-02-07  Martin Baulig  <martin@ximian.com>
7714         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
7716 2003-02-07  Martin Baulig  <martin@ximian.com>
7718         * debug-mono-symfile.c: Reflected latest symwriter changes.
7719         (mono_debug_create_mono_symbol_file): Removed.
7720         (mono_debug_open_mono_symbol_file): Take an argument which
7721         specifies whether to create a dynamic symbol file.
7723 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
7725         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
7727 2003-02-05  Martin Baulig  <martin@ximian.com>
7729         * reflection.c (mono_image_build_metadata): Make this public,
7730         protect it against being called multiple times, don't create
7731         resources and don't build the compressed metadata here.
7732         (mono_image_create_pefile): Do this here.
7734         * icall.c
7735         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
7737 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7739         * socket-io.c: fixed bug #36322.
7741 2003-02-06  Piers Haken <piersh@friskit.com>
7743         * appdomain.[ch]:
7744         * class.h:
7745         * debug-mono-symfile.c:
7746         * icall.c:
7747         * loader.c:
7748         * mono-config.c:
7749         * monosn.c:
7750         * reflection.c:
7751         * socket-io.c: warning cleanups
7753 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
7755         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
7756         function. works like remoting invoke, but does a check for the Proxy first.
7758 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
7760         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
7762 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
7764         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
7765         array of pointers.
7766         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
7767         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
7769         * object.c (mono_store_remote_field_new): used by the new jit
7770         instead of mono_store_remote_field
7771         (mono_load_remote_field_new): used by the new jit
7772         instead of mono_load_remote_field
7774 2003-02-05  Patrik Torstensson
7776         * appdomain.c: changed unload to take the domain id instead
7777         of domain
7778         
7779         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
7782 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7784         * appdomain.c: don't look for assemblies in ApplicationBase if
7785         PrivateBinPathProbe is set.
7787 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7789         * object.c: make the first argument in main_args contain the absolute
7790         path to the assembly. Fixes bug #37511.
7792 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7794         * icall.c: get correct UTC offset for countries not using daylight
7795         time saving. Fixes bug #30030.
7797 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7799         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
7800         and 1 are the family).
7802 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
7804         * icall.c (ves_icall_InternalExecute): removed wrong assertion
7806         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
7808 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
7810         * reflection.c: added support for SignatureHelper tokens, which is
7811         needed by the Calli opcode.
7813         * reflection.h: track changes to SignatureHelper class.
7815         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
7817 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7819         * appdomain.c: fixed loading assemblies from PrivateBinPath.
7821 2003-02-03  Patrik Torstensson
7822         * appdomain.[c|h], domain.c : 
7823          - Added support for getting a domain via domain id
7824          - Support for setting and getting domain from System.AppDomain 
7825            (used in cross appdomain channel)
7826          - Added support for get/set for a MonoAppContext on a thread 
7827            (Context class in System.Runtime.Remoting.Contexts),
7828          - Removed hack in Get/SetData and ExecuteAssembly.
7829         
7830         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
7831         the managed world to get control when a proxy is created.
7833         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
7834         
7835 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
7837         * icall.c
7838         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7839         Populate the codebase field as well.
7841 2003-02-02  Martin Baulig  <martin@ximian.com>
7843         * debug-mono-symfile.c
7844         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
7845         (mono_debug_symfile_add_method): Allow interncalls.
7847 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7849         * icall.c: throw parse exception if strtod fails or the string is empty.
7851 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
7853         * marshal.c: handle object type separately from defined
7854         class types.
7856 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
7858         * marshal.c: handle NATIVE_LPSTR for strings when it's
7859         explicitly specified.
7861 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
7863         * reflection.c, reflection.h, icall.c: setup the reflection
7864         handle cache for ModuleBuilders and AssemblyBuilders.
7866 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
7868         * reflection.c (reflection_methodbuilder_to_mono_method): set
7869         pinvoke flag
7871 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7873         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
7875 2003-01-29  Dick Porter  <dick@ximian.com>
7877         * threads.c: No need for the fake_thread kludge now that Thread
7878         doesn't run a class constructor
7879         
7880 2003-01-29  Dick Porter  <dick@ximian.com>
7882         * threads.c: Use g_direct_hash instead of the rather bogus
7883         g_int_hash
7885 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
7887         * marshal.c (mono_marshal_get_native_wrapper): add check for null
7888         (fix pinvoke12.exe)
7889         (mono_marshal_get_struct_to_ptr): generate valid IL code
7890         (mono_marshal_get_ptr_to_struct): generate valid IL code
7891         (*): correctly set sig->pinvoke, we need to memdup the signature
7892         to do that
7894 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7896         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
7897         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
7899 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7901         * profiler.c: provide more callers information.
7903 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
7905         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
7907         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
7909         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
7911 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7913         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
7914         exception instead of going into an infinite loop on dates which it 
7915         can't yet handle.
7917         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
7918         out-of-range exception if needed.
7920         * class.c (mono_class_setup_vtable): allow a virtual method to provide
7921         an implementation for an interface method and to override an inherited
7922         method at the same time. 
7923         Imagine a scenario when a virtual method is used to override a
7924         virtual abstract method in a parent class, and this same method 
7925         provides an implementation for an method inherited from an interface. 
7926         In this case, the interface resolution code will set im->slot, which 
7927         means that the virtual method override pass will skip this method 
7928         which means a pointer to the abstract method inherited from the parent
7929         will remain in the vtable of this non-abstract class.
7931         * class.c: (mono_class_setup_vtable): continue search for a real 
7932         method if only an abstract method is found.     
7934 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7936         * reflection.c: add size to encoding for ByValStr and ByValArray
7937         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
7939 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7941         * class.c (mono_class_setup_vtable): pass the override info as an
7942         argument.
7944         * class.c (mono_class_setup_vtable): set the slot of overriding methods
7945         correctly.
7946         
7947         * reflection.c (ensure_runtime_vtable); add support for method 
7948         overrides.
7949         
7950 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7952         * reflection.c (resolution_scope_from_image): Hack to work to work with
7953         dynamic assemblies.
7955         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
7956         added a 'force_ref' argument to force this function to allways return 
7957         a TypeRef. This is needed by mono_image_get_memberref_token ().
7958         
7959 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7961         * reflection.c (mono_image_get_type_info): interfaces really don't have
7962         a parent.
7964         * reflection.c (mono_image_basic_init): fill out missing fields of
7965         image structure.
7967         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
7968         dynamic assemblies. This is required so dynamic assemblies show up in
7969         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
7970         Type::GetType() etc. This is consistent with MS behaviour.
7972         * image.c image.h reflection.c: add newly created classes to the name 
7973         cache so mono_class_get () will find them.      
7975 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7977         First part of changes to get IKVM.NET running under mono.
7978         
7979         * appdomain.h, appdomain.c: added new function 
7980         mono_domain_try_type_resolve() which will emit TypeResolve events. 
7981         This function will call AppDomain::DoTypeResolve to do the actual work.
7983         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
7984         moved existing code dealing with dynamic tokens to a new function 
7985         called mono_reflection_lookup_dynamic_token (). This function will 
7986         raise TypeResolve events when appropriate. Since reflection.c is not 
7987         part of libmetadata, a new hook function called 
7988         mono_lookup_dynamic_token() is added to class.c which will call this.
7990         * assembly.h assembly.c: make the invoke_load_hook function public,
7991         so it can be called for dynamic assemblies.
7993         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
7995         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
7996         type isn't found.
7998         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
7999         MonoGHashTable, since it contains pointers to objects which the GC 
8000         needs to track.
8002         * assembly.c (search_loaded): remove unused variable.
8003         
8004 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
8006         * object.c: fixed issue exposed by gcc-generated IL programs
8007         that use RVA data for pointers.
8009 2003-01-25  Martin Baulig  <martin@ximian.com>
8011         * threads.c (start_wrapper): Moved the initialization of
8012         `start_func' above the mono_new_thread_init() call to which we
8013         pass it as argument.
8015 2003-01-24  Martin Baulig  <martin@ximian.com>
8017         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
8018         the MonoThread pointer.
8020 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
8022         * icall.c: Rename `PowImpl' to Pow.
8024 2003-01-23  Dick Porter  <dick@ximian.com>
8026         * threads.c (start_wrapper): Create a Thread object if needed, so
8027         the Main() thread can do the class initialisation in a subthread
8028         that has been set up to allow managed code execution.
8030         Pass the thread ID instead of the MonoThread pointer to the thread
8031         start and attach callbacks.  This change is required, because the
8032         jit thread start callback must be called _before_ the Thread
8033         object can be created.
8034         
8035         (mono_thread_init): Removed much object creation code that is no
8036         longer needed.  No managed code is called from here now.
8038         * object.c (mono_runtime_exec_managed_code): Create a subthread
8039         for Main, and call back to the runtime to use it.
8040         Set the exit code when Main exits.
8042         * gc.c: Make sure domain finalisation happens in a subthread.
8043         Re-enable threaded GC, fixing bug 31333 (again).
8045         * environment.c: System.Environment internall calls (so far just
8046         ExitCode is here, the others are still in icall.c)
8048         * appdomain.c (mono_runtime_cleanup): All threads running managed
8049         code should have finished before mono_runtime_cleanup() is
8050         reached, so no need to clean up threads.
8052 2003-01-22  Martin Baulig  <martin@ximian.com>
8054         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
8055         `gpointer func' arguments.      
8056         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
8057         but added `MonoThread *thread' argument.
8058         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
8060         * threads.c (mono_new_thread_init): Added `gpointer func' argument
8061         and pass it to the mono_thread_start_cb callback.
8062         (mono_install_thread_callbacks): New public function to install a
8063         set of callbacks which are set by the debugger.
8064         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
8066 2003-01-22  Martin Baulig  <martin@ximian.com>
8068         * Makefile.am: Install debug-mono-symfile.h.
8070 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
8072         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
8074 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
8076         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
8077         * class.c (mono_ptr_class_get): correctly set access levels of pointers
8078         (mono_array_class_get): correctly set access levels of arrays
8080 2003-01-20      Patrik Torstensson
8081         * image.h (MonoAssemblyName): changed major, minor, build, revision
8082         from signed to unsigned.
8084 2003-01-20  sean kasun <skasun@azstarnet.com>
8086         * reflection.c (load_cattr_value): Now this handles
8087         MONO_TYPE_SZARRAY.  Fixes bug #35629
8089 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
8091         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
8092         integer value
8094 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8096         * decimal.c: fixed bug #26056.
8098 2003-01-17  Martin Baulig  <martin@ximian.com>
8100         * gc.c: Raise an ExecutionEngineException instead of using g_error().
8102 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8104         * exception.[ch]:
8105         (mono_get_exception_type_initialization): new function.
8107         * object.c: throw a TypeInitializationException when an exception is
8108         thrown invoking the class constructor.
8110 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8112         * reflection.c: fixed attribute reading.
8114 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8116         * icall.c:
8117         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
8118         provided, look for the type in the calling assembly and then in
8119         mscorlib; if the assembly name is provided, only try that one.
8121 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
8123         * object.c: register the vtable before there is a chance it's
8124         queried again recursively.
8126 2003-01-13  Duncan Mak  <duncan@ximian.com>
8128         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
8129         gc-internal.h. 
8130         
8131 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
8133         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
8135 2003-01-11  Martin Baulig  <martin@ximian.com>
8137         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
8138         this to 20 for the release.
8140 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
8142         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
8144         * loader.c (mono_method_get_marshal_info): bug fix
8146         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
8147         structures with explicit layout
8149 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8151         * profiler.c: made the output more readable (and sorted). 
8152         Added caller information for the allocation profiler.
8154 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
8156         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
8158 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8160         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
8161         to get value types.
8162         
8163 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
8165         * object.c, profiler.h, profiler.c, profiler-private.h:
8166         Added object allocation profiler.
8168 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
8170         * reflection.h, reflection.c: handle global methods.
8171         Compress blob entries.
8173 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
8175         * marshal.c: fix compilation.
8177 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
8179         * loader.c (mono_method_get_marshal_info): impl.
8181         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
8183 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8185         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
8186         for reference types.
8188 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
8190         * loader.c: fixed off by one error in loaded parameter names.
8192 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
8194         * marshal.c (mono_marshal_get_icall_wrapper): like
8195         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
8196         instead of a MonoMethod.
8198 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8200         * decimal.c: fixed bug #36537.
8202 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
8204         * marshal.c: throw a missing method exception if a
8205         P/Invoke method is not found.
8207 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8209         * icall.c: allow a null this for constructors.
8211 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
8213         * icall.c: raise the proper exceptions if the arguments to the
8214         internal Invoke are incorrect.
8216 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
8218         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
8220 2003-01-03  Martin Baulig  <martin@ximian.com>
8222         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8224 2002-12-31  Martin Baulig  <martin@ximian.com>
8226         * debug-mono-symfile.c: Completely rewrote the type section.
8227         Instead of using individual malloc()ed fields, we use one big
8228         continuous memory area and offsets into this area.
8229         See the comments in the source code for details.
8231 2002-12-30  Martin Baulig  <martin@ximian.com>
8233         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
8235 2002-12-30  Martin Baulig  <martin@ximian.com>
8237         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
8238         line number table in this data blob instead of using an external
8239         pointer.
8241 2002-12-28  Martin Baulig  <martin@ximian.com>
8243         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8245 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
8247         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
8248         as a boxed return type.
8250 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
8252         * appdomain.c
8253         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
8254         g_build_filename to properly get separators on the filename created.
8256         * object.h: Small change, introduce MonoMarshalByRefObject to
8257         track the layout of that structure in the C# universe as we make
8258         changes there.
8260 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
8262         * object.c: removed assert to allow static fields on interfaces.
8263         * loader.c: a TypeSpec may be used for any type, not just arrays.
8265 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8267         * class.c, class.h: added mono_class_array_element_size ().
8268         Ignore static methods in interfaces.
8270 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8272         * threads.c: fixed the build under cygwin.
8274 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
8276         * reflection.c: handle nullref constants. Allocate keys for
8277         reflection handles with the GC.
8279 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8281         * threads.c, threads.h: added mono_thread_get_abort_signal()
8282         to get a suitable signal for thread abort.
8284 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8286         * metadata.c: fix handling of ExportedType table.
8288 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8290         * icall.c: added WriteWindowsDebugString internal call.
8292 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8294         * reflection.h: added fields to match C# implementation.
8296 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8298         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
8300 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
8302         * gc.h, gc-internal.h: Rename header for GC internal calls to
8303         gc-internal.h from gc.h as to not clash with Boehm GC having its
8304         header installed as <gc.h> in outside include paths.
8305         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
8306         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
8308 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8310         * icall.c: assign minor, build and revision in FillName.
8312 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
8314         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
8315         Added support for running code generated by Reflection.Emit.
8317 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8319         * appdomain.c: check for NULL argument in LoadFrom.
8321 2002-12-10  Dick Porter  <dick@ximian.com>
8323         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
8325 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8327         * appdomain.c: fix buglet when building exe file name.  Handle full
8328         assembly name (needed after latest changes to AssemblyName).
8329         * image.c:
8330         (mono_image_close): free some hashtables.
8332 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
8334         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
8335         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
8336         on some systems (redhat 7.3) 
8338 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
8340         * threads.c: delete the critical section of a sync block,
8341         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
8343 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
8345         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
8347 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8349         * appdomain.[ch]: handle the assembly preload event to try loading the
8350         assemblies using the paths we have in the current domain.
8352         * assembly.[ch]: created an assembly preload hook that is called to try
8353         loading the assembly by other means that the ones provided here.
8355         * domain.c: initialize the domain search path.
8357         From now on, assemblies (TODO: except corlib and System) are loaded
8358         according to these rules when using mono_assembly_load ():
8360                 1. It tries to load the assembly from the ApplicationBase
8361                 of the current domain appending .dll and .exe (TODO: have to
8362                 try loading from name/name.dll and name/name.exe).
8364                 2. It tries the search path specified in PrivateBinPath for the
8365                 current domain (if any).
8367                 3. Previous behavior.
8369 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
8371         * icall.c: implemented GetInterfaceMap() related icall.
8372         * domain.c, loader.h: load MethodInfo in mono_defaults.
8374 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8376         * gc.c: disable the finalizer thread for now, untill all the issues
8377         with it are resolved.
8379 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8381         * string-icalls.c: handle embedded nulls in string ctor when the
8382         length is specified.
8384 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8386         * class.c: look for explicit interface implementation in parent
8387         classes, too.
8389 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
8391         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
8393 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8395         * gc.c: protect handles with a critical section.
8397 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8399         * icall.c:
8400         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
8401         parameters. If no assembly specified, try getting the type from all
8402         the assemblies in the current domain, else, load the assembly and get
8403         the type from it.
8405 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8407         * marshal.c: applied patch from Aleksey Demakov that fixes
8408         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
8410 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8412         * icall.c: fixed get_location.
8414 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
8416         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
8417         declarations to make it work with older gcc. 
8419         * loader.c (mono_get_method): set signature->pinvoke for native calls
8421 2002-11-20  Dick Porter  <dick@ximian.com>
8423         * threads.c (mono_thread_init): Set the main thread's handle
8425 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
8427         * gc.c: allow compilation without GC support. Changed to match the
8428         mono coding style.
8430 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8432         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
8434 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
8436         * reflection.c: set a public key token on the core assemblies.
8438 2002-11-18  Dick Porter  <dick@ximian.com>
8440         * threads.c: Split out some thread initialisation so that other
8441         files can set the start callback function.
8443         * gc.c: Run finalisers in a separate thread, to avoid stack
8444         overflow.  Fixes bug 31333.
8446         * appdomain.c: Set up GC finalisation thread.
8448         * reflection.c: 
8449         * object.c: 
8450         * domain.c: Use gc.h macros for GC_malloc
8451         
8452 2002-11-15  Dick Porter  <dick@ximian.com>
8454         * threadpool.c: 
8455         * threads.c:
8456         * appdomain.c: Removed mono_runtime_init_with_attach(),
8457         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
8458         merging the extra parameter with the existing function.  Removed
8459         unneeded code in mono_thread_attach().
8461 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
8463         * image.c (mono_image_loaded_by_guid): a method to get loaded
8464         images by guid. 
8465         (load_metadata_ptrs): we store the guid as string.
8467 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
8469         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
8471         * metadata.c (mono_guid_to_string): imported method form Zoltan
8472         Varga (slightly modified)
8474         * assembly.c (mono_assembly_open): load precompiled code
8476         * loader.h (MonoMethod): we store the method token for use in the
8477         aot compiler. 
8479 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8481         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
8482         the hook function called when an assembly is loaded.
8483         
8484         * domain.c: Modified file.
8485         (mono_domain_assembly_load): removed hash table insertion of assemblies.
8487         Fixes bug #33196.
8489 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
8491         * reflection.c: Map PEFileKind to the value expected by the WinNT
8492         image loader. 
8494 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8496         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
8497         Read until the buffer is filled completely.
8499 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8501         * icall.c: implemented MonoType.InternalGetEvent ().
8503 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8505         * appdomain.c: implemented InitAppDomainSetup. Delayed
8506         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
8507         the entry_assembly.
8509         * assembly.c: base_dir is now an absolute path ending with
8510         G_DIR_SEPARATOR.
8512         * icall.c: modified get_location according to the above changes.
8514         * object.c: init AppDomain.SetupInformation for the default domain after
8515         we have the entry assembly.
8517         * domain.c: when unloading a domain, setup = NULL.
8519 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
8521         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
8523 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
8525         * object.h, object.c: introduced mono_object_get_virtual_method ()
8526         to lookup the method invoked on an object when a callvirt is done on
8527         a method.
8528         * icall.c: make MethodInfo::Invoke() always do a virtual call.
8530 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8532         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
8533         current domain when loaded an assembly and failed to load it.
8535         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
8537 2002-10-31  Dick Porter  <dick@ximian.com>
8539         * icall.c: 
8540         * file-io.h: 
8541         * file-io.c: Return the error status in a parameter, as the
8542         GetLastError() value has long since been blown away if we try and
8543         look it up in a subsequent internal call invocation.  Delete the
8544         GetLastError() internal call, because it's useless.
8546 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
8548         * class.[ch]: added cast_class to fix bug 29517
8550 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
8552         * marshal.c: create valid IL code in the filter clause:
8553         the new JIT is less forgiving:-)
8555 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8557         * icall.c: removed get_property internal call.
8559 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
8561         * appdomain.h domain.c: Added an ID to appdomains.
8562         
8563         * threads.c threads.h icall.c: Implement icall
8564         Thread:GetDomainID(), and remove unused icall 
8565         CurrentThreadDomain_internal.
8567 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8569         * icall.c: Don't recurse through the base types in GetConstructor.
8570         Fixes bug #32063. 
8572 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8574         * mempool.h, mempool.c: added mono_mempool_empty() and
8575         mono_mempool_stats().
8577 2002-10-23  Dick Porter  <dick@ximian.com>
8579         * file-io.c: 
8580         * file-io.h: 
8581         * icall.c: Added MonoIO.GetFileType internal call
8583 2002-10-17  Dick Porter  <dick@ximian.com>
8585         * appdomain.c (mono_runtime_cleanup): Don't signal the async
8586         delegate semaphore before waiting for all threads to finish,
8587         because new threads can also call async delegates.  Fixes bug
8588         32004.
8590         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
8591         of 3 seconds, in case another async job is queued.  (This part is
8592         needed because the bug fix reintroduced the 3s exit lag.)  This
8593         makes the mono_runtime_shutdown flag superfluous.
8595 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
8597         * reflection.c: include ehader size in method section headers.
8598         Really check for suplicated modules entries.
8600 2002-10-17  Martin Baulig  <martin@gnome.org>
8602         * debug-mono-symfile.c: Added back support for locals.
8604 2002-10-14  Martin Baulig  <martin@gnome.org>
8606         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
8607         MONO_TYPE_VOID.
8609 2002-10-14  Martin Baulig  <martin@gnome.org>
8611         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
8612         mono_class_get() instead of looking in the class cache. 
8614 2002-10-13  Martin Baulig  <martin@gnome.org>
8616         * debug-mono-symfile.c: Set version number to 28, include the
8617         signature in method names.
8619 2002-10-13  Martin Baulig  <martin@gnome.org>
8621         * debug-mono-symfile.h: Set version number to 27.
8623 2002-10-11  Martin Baulig  <martin@gnome.org>
8625         * gc.c: Don't register/unregister NULL pointers as disappearing links.
8627 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8629         * metadata.c, metadata.h: added helper function to allocate signatures.
8631 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8633         * icall.c: added internal call to get the location of machine.config.
8635 2002-10-08  Martin Baulig  <martin@gnome.org>
8637         * debug-mono-symfile.c: Ignore classes with a pending init for the
8638         moment.
8640 2002-10-03  Dick Porter  <dick@ximian.com>
8642         * threads.c: Freebsd pthread_t is a pointer
8644 2002-10-03  Dick Porter  <dick@ximian.com>
8646         * socket-io.c: Implemented GetHostName_internal
8648 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8650         * mono-config.c:
8651         (mono_config_parse_file): don't leak the text.
8653 2002-10-02  Martin Baulig  <martin@gnome.org>
8655         * debug-mono-symfile.c: Added support for methods.
8657 2002-10-01  Martin Baulig  <martin@gnome.org>
8659         * debug-mono-symfile.c: Don't emit methods and line numbers for
8660         the dynamic symbol file, just write the type table.  We can easily
8661         have an external helper program which creates a symbol file for an
8662         IL file.        
8664 2002-10-01  Dick Porter  <dick@ximian.com>
8666         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
8667         Only add the handle to the cleanup array when we're about to
8668         launch the thread.  Bug 31425 deadlocked when the test was run on
8669         mono under w32.
8671 2002-10-01  Martin Baulig  <martin@gnome.org>
8673         * debug-mono-symfile.c: Added support for properties.
8675 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8677         * reflection.c: unaligned store fix from Mark Crichton
8678         <crichton@gimp.org>.
8680 2002-09-27  Martin Baulig  <martin@gnome.org>
8682         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
8683         New interncall.
8685 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
8687         * assembly.h, assembly.c: use a sane API to hook into the assembly
8688         loading process instead of a useless special-purpouse hack
8689         (ngen needs a hook, too, for example).
8691 2002-09-27  Dick Porter  <dick@ximian.com>
8693         * threads.c (mono_thread_init): Call GetCurrentProcess() so
8694         io-layer can set up some process handle info.  Not needed on w32,
8695         but doesn't hurt either.
8697         * process.c: Pass the program name in the second parameter to
8698         CreateProcess, so the path is searched.  Include the working
8699         directory. Implemented process name, process enumeration, and some
8700         process detail internal calls.
8701         
8702         * icall.c: Added internal calls for process lookup, and some
8703         process details
8705 2002-09-26  Martin Baulig  <martin@gnome.org>
8707         * assembly.c (mono_install_open_assembly_hook): New global
8708         function to install a function to be invoked each time a new
8709         assembly is loaded.
8710         (mono_assembly_open): Run this callback function if set.
8712         * debug-mono-symfile.c: Put back line numbers for the dynamic
8713         symbol file and also record the .il file as source file.  This
8714         allows us to install the temporary symbol file as `file.dbg' just
8715         like a compiler-generated one.
8717 2002-09-26  Nick Zigarovich <nick@chemlab.org>
8719         * Corrected typo in gc.c (BOHEM vs BOEHM).
8721 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8723         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
8724         GetProperties. Also avoid calling g_slist_length in GetProperties and
8725         GetMethods.
8727 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8729         * reflection.c: avoid unaligned stores (bug spotted by
8730         Mark Crichton  <crichton@gimp.org>).
8732 2002-09-25  Martin Baulig  <martin@gnome.org>
8734         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
8735         instead of guint64 for addresses and added prologue/epilogue info.
8737 2002-09-25  Martin Baulig  <martin@gnome.org>
8739         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
8740         store line number info.  For the dynamic symbol file, we only need
8741         to provide the JIT generated dynamic line number info for the dynamic
8742         symbol file.
8744 2002-09-25  Martin Baulig  <martin@gnome.org>
8746         * debug-mono-symfile.h: Incremented version number.
8748 2002-09-24  Martin Baulig  <martin@gnome.org>
8750         * class.c (mono_debugger_class_init_func): New global function
8751         pointer variable.
8752         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
8753         call it.
8755         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
8756         function.  This is called via the mono_debugger_class_init_func
8757         hook to add all types to the dynamic type table.
8758         (ves_icall_MonoDebugger_GetType): New interncall to get a class
8759         from its metadata token.
8761         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
8762         New interncall for the debugger.
8764 2002-09-24  Nick Drochak <ndrochak@gol.com>
8766         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
8767         before using it in case it is null.
8768         
8769 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8771         * metadata.c: allow custom modifiers in local var signatures
8772         (bug spotted by Zoltan Varga).
8774 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8776         * class.c: deal with the <Module> class that may have a NULL vtable.
8777         Eliminate warnings.
8779 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8781         * image.c, image.h: more strong name helpers.
8782         * monosn.c: more work: convert pem keys to cryptoapi format.
8784 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8786         * string-icalls.c: speedup IndexOf.
8788 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8790         * icall.c: updates from Zoltan.2.Varga@nokia.com.
8792 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8794         * icall.c: cleanup: use mono_object_domain ().
8796 2002-09-23  Martin Baulig  <martin@gnome.org>
8798         * debug-mono-symfile.c: Improved type support.
8800 2002-09-22  Martin Baulig  <martin@gnome.org>
8802         * debug-mono-symfile.c: Added support for reference types and strings.
8804 2002-09-22  Martin Baulig  <martin@gnome.org>
8806         * debug-mono-symfile.c: Started to work on the type table.
8808 2002-09-21  Martin Baulig  <martin@gnome.org>
8810         * debug-mono-symfile.c: Largely reworked the symbol table format.
8811         The symbol table is now incrementally updated each time a new
8812         method is added.  We're now also using our own magic and version
8813         so that you don't need to recompile all your classes if the
8814         dynamic table changes.
8815         (mono_debug_update_mono_symbol_file): Removed.
8816         (mono_debug_symfile_add_method): New function to add a method.
8818 2002-09-21  Martin Baulig  <martin@gnome.org>
8820         * icall.c
8821         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
8822         New interncall.
8824         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
8825         New interncall to get a method from its metadata token.
8827 2002-09-21  Martin Baulig  <martin@gnome.org>
8829         * debug-mono-symfile.c: Create type table.
8831 2002-09-20  Martin Baulig  <martin@gnome.org>
8833         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
8835 2002-09-20  Martin Baulig  <martin@gnome.org>
8837         * debug-mono-symfile.c: Provide information about params and locals.
8839 2002-09-20  Martin Baulig  <martin@gnome.org>
8841         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
8842         New interncall.
8844         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
8845         interncall to get a method from its metadata token.
8847 2002-09-20  Martin Baulig  <martin@gnome.org>
8849         * debug-mono-symfile.c: Added a few checks for method->header
8850         being non-NULL.  This should never happen, but for the moment
8851         let's use a g_warning() rather than a g_assert().
8853 2002-09-19  Mark Crichton  <crichton@gimp.org>
8855         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
8856         even if support for it isn't present.  Added an #ifdef to fix this.
8858         * socket-io.c: Added checks back for Solaris support.
8860 2002-09-19  Martin Baulig  <martin@gnome.org>
8862         * debug-mono-symfile.c (read_string, write_string): Reflect latest
8863         changes in the symbol file format.
8865 2002-09-18  Martin Baulig  <martin@gnome.org>
8867         * debug-mono-symfile.c: Set version number to 21.
8869 2002-09-18  Dick Porter  <dick@ximian.com>
8871         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
8872         on netbsd.  Fixes bug 30051.
8874 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8876         * reflection.c:
8877         (set_version_from_string): little fix.
8879 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8881         * monosn.c, Makefile.am: added strong name utility.
8882         * reflection.h, reflection.c: implemented delayed signing,
8883         locale, version and hash id assembly attributes.
8885 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8887         * loader.c, metadata.c: load param attributes in signatures.
8889 2002-09-16  Martin Baulig  <martin@gnome.org>
8891         * debug-mono-symfile.c: Added string table with all method names.
8893 2002-09-14  Martin Baulig  <martin@gnome.org>
8895         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
8896         fast method lookup.
8898 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8900         * reflection.c: record the public key token of referenced assemblies.
8902 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8904         * image.c, image.h: added functions to get the strong name and the
8905         public key of an assembly.
8906         * pedump.c: use them.
8908 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
8910         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
8912 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
8914         * marshal.c (mono_marshal_get_managed_wrapper): Added
8915         MONO_TYPE_BOOLEAN 
8917 2002-09-11  Martin Baulig  <martin@gnome.org>
8919         * gc.c: Call GC_unregister_disappearing_link() on all links when
8920         finalizing them, this is necessary to aviod a crash in boehm's
8921         finalize handler.
8923 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8925         * gc.c: handle GetTarget for finalized objects spotted and fixed by
8926         nick@chemlab.org.
8928 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8930         * icall.c: implemented MonoType::Module.
8931         * reflection.c, reflection.h: mono_module_get_object () from
8932         Tomi Pakarinen <tomi.pakarinen@welho.com>.
8934 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8936         * icall.c: ignore overridden methods in GetMethods ().
8937         Fix for FieldInfo::SetValue().
8938         * object.c: handle float/double in runtime invoke.
8940 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8942         * object.c: allow a constructor to be called again on an object.
8944 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8946         * class.h, class.c: move field layout code to it's own function and
8947         export it. Get an interface id earlier. Move fields in MonoClass
8948         so they are more cache friendly and align the bitfields.
8949         * loader.c: temporary handle get_param_names() for a runtime method.
8950         * reflection.c, reflection.h: more code to handle runtime creation of
8951         types.
8953 2002-09-09  Martin Baulig  <martin@gnome.org>
8955         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
8956         signature with the pinvoke field being set for the actual call.
8958 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8960         * icall.c: removed some unused icalls. Start of map of glib charsets
8961         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
8963 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8965         * debug-helpers.c: break infinite loop (found and fixed by
8966         Holger Arnold <harnold@gmx.de>).
8968 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8970         * icall.c: target may be null in create_delegate.
8972 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8974         * marshal.c: handle a boolean return type.
8976 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8978         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
8980 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8982         * gc.c: fix weakreferences.
8984 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8986         * icall.c: added icall to get default codepage.
8988 2002-09-03  Dick Porter  <dick@ximian.com>
8990         * threads.h: 
8991         * threads.c: Use MonoThread instead of MonoObject where
8992         apropriate.
8994         Store running thread objects in a hash table, so that we have all
8995         the info to hand when waiting for them to finish
8996         (means we don't need OpenThread() any more, so mingw builds should
8997         be fully functional again.)
8999         * verify.c:
9000         * object.h: Added thread ID to MonoThread
9002 2002-09-03  Martin Baulig  <martin@gnome.org>
9004         * icall.c (System.Reflection.Assembly::get_location): New interncall.
9006 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9008         * icall.c: fixed leak in get_temp_path. Thanks lupus.
9010 2002-09-03  Martin Baulig  <martin@gnome.org>
9012         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
9013         argument to store the end address of the disassembled instruction.
9015         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
9016         here from debug-symfile.h.
9017         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
9018         JIT into this struct.
9019         (MonoSymbolFile): Added `char *image_file' field.
9020         (MonoDebugGetMethodFunc): Removed.
9021         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
9022         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
9023         (mono_debug_find_method): New method.
9025         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
9026         create a full symbol file.
9027         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
9028         and static symbol files.
9029         (mono_debug_find_method): The symbol file keeps an internal method hash,
9030         call this to get a MonoDebugMethodInfo from a MonoMethod.
9032         * debug-symfile.[ch]: Removed.
9034 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
9036         * image.c (do_mono_image_open): Remove linker version check.
9038 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
9040         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
9041         wrappers for instance methods.
9042         
9043 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9045         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
9047 2002-08-28  Dick Porter  <dick@ximian.com>
9049         * Makefile.am: Export HOST_CC for w32 builds
9051 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9053         * file-io.c process.c: MonoString are null terminated, no
9054         need for mono_string_to_utf16() anymore.
9056 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9058         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
9060 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
9062         * icall.c, reflection.h: speedup System.MonoType.
9064 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9066         * reflection.c: allow null as the value of a string argument in
9067         custom attributes constructors.
9069 2002-08-27  Martin Baulig  <martin@gnome.org>
9071         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
9072         `trampoline_address' field.
9074 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
9076         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
9077         check (fixes bug #29486) 
9079 2002-08-27  Martin Baulig  <martin@gnome.org>
9081         * debug-mono-symfile.c: Changed the file format in a way that allows us
9082         open it read-only and to use a specially malloced area for all the
9083         dynamic data.  We can now also generate a symbol file on-the-fly if we're
9084         debugging IL code and there is no MCS generated symbol file for it.
9086 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9088         * object.c: added a define for a good string and array
9089         creation speedup (not enabled by default because we need to deal with
9090         the synch stuff).
9092 2002-08-26  Martin Baulig  <martin@gnome.org>
9094         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
9095         function to create a dynamic symbol file.  This is used by the
9096         debugger to create a symbol file for IL code on-the-fly.
9098 2002-08-26  Martin Baulig  <martin@gnome.org>
9100         * loader.c (mono_lookup_pinvoke_call): Include the error message
9101         from g_module_error() in the error message.
9103 2002-08-24  Martin Baulig  <martin@gnome.org>
9105         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
9106         function to update the symbol file.  The symbol file is mmap()ed
9107         writable, but private.  This allows us to install the symbol file
9108         together with the assembly.
9110 2002-08-24  Martin Baulig  <martin@gnome.org>
9112         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
9113         but they can read the new symbol file format which mcs is now creating.
9115         * debug-symfile.c (mono_debug_find_source_location): Moved to
9116         debug-mono-symfile.c; this is now operating on the new symbol file.
9118 2002-08-23  Martin Baulig  <martin@gnome.org>
9120         * debug-helpers.c (mono_method_desc_from_method): New function to get
9121         a MonoMethodDesc from a MonoMethod.
9123 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9125         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
9126         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
9128 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9130         * string-icalls.[ch]: make helper methods static.
9132 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9134         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
9135         types to it and to SetValueInternal.
9137         * object.c: Moved handle_enum label to its proper place. This was the
9138         f... bug! ;-)
9140         This time i compiled mcs and gtk-sharp and they both work.
9142 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9144         * icall.c: reverted partially my previous patch until 
9145         object.c:set_value handles enums correcly.
9147 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9149         * icall.c:
9150         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
9151         (ves_icall_System_Environment_get_MachineName): removed warning when
9152         compiling under cygwin.
9154 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9156         * object.c: fixed field_get_value() for reference types.
9158 2002-08-22  Dick Porter  <dick@ximian.com>
9160         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
9161         Don't free a buffer while it's still needed.  Patch from Jonathan
9162         Liger <Jonathan.liger@wanadoo.fr>
9164 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
9166         * icall.c (ves_icall_System_Environment_get_Platform): Add new
9167         internal call.
9169 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
9171         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
9172         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
9174         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
9175         we call unmanaged code which throws exceptions.
9177 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9179         * appdomain.h: added per-domain entry_assembly.
9180         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
9181         arguments.
9182         * icall.c: Assembly::GetEntryAssembly icall.
9183         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
9184         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
9186 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9188         * appdomain.h, gc.c: added mono_domain_finalize ().
9190 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9192         * object.c:
9193         (mono_print_unhandled_exception): changed g_warning by g_printerr
9194         because g_log has a 1024 characters limit (yeah, i got a big stack
9195         trace). Don't print exception name, that should be in ToString 
9196         returned string.
9198 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9200         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
9201         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
9203 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9205         * object.c:
9206         (mono_print_unhandled_exception): after previous commit, i realized
9207         that MS calls ToString on the exception. I changed this function to
9208         do that. This way we get stack_trace for free.
9210 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9212         * object.c:
9213         (mono_print_unhandled_exception): invoke Message property instead of
9214         getting 'message' field from Exception. Don't allocate memory for
9215         'trace' and 'message' if not needed.
9217 2002-08-18  Dick Porter  <dick@ximian.com>
9219         * unicode.c: Fix asserts to match Encoder.cs checks
9221 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9223         * marshal.c: fix unaligned store issue and a few wrong
9224         opcode argument types.
9226 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9228         * icall.c: added GetUninitializedObjectInternal internal call.
9230 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
9232         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
9233         to the right domain.
9235 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
9237         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
9239         * class.c (class_compute_field_layout): set blittable to false for Strings
9241         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
9243 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9245         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
9246         first chunk of code to create types at runtime. Code to
9247         handle ReflectedType/DeclaringType. Make reflection handles
9248         domain specific.
9250 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9252         * class.c: set correct name in arrays.
9254 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
9256         * appdomain.c (mono_domain_transfer_object): make it work with
9257         valuetypes. bug fixes.
9259 2002-08-12  Dick Porter  <dick@ximian.com>
9261         * object.h: Rename some parameters to avoid c++ keywords (Patch
9262         from Joseph Wenninger <kde@jowenn.at>)
9264 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
9266         * icall.c: added icall to implement Assembly.GetFile*.
9268 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9270         * reflection.h, reflection.c: code to embed managed resources.
9272 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9274         * class.c: move all the type size stuff into
9275         class_compute_field_layout().
9277 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9279         * class.c: ensure enums have always the correct instance size.
9280         * unicode.c: remove wrong assert.
9282 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9284         * assembly.c: fix mem corruption issue.
9285         * image.h, image.c: added mono_image_get_resource () to access
9286         managed resources.
9287         * icall.c: implemented Assembly.EntryPoint property and some
9288         Managed Resources related internalcalls.
9291 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9293         * image.c, image.h: impemented mono_image_get_entry_point ().
9294         * appdomain.c: use mono_image_get_entry_point.
9296 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9298         * reflection.c: support the object type argument when loading
9299         custom attributes.
9301 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
9303         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
9304         String as return type.
9306 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
9308         * reflection.c: fix encoding of named args for custom attrs to match
9309         the ms implementation. Read them back when instantiating custom
9310         attributes.
9312 2002-08-02  Radek Doulik  <rodo@ximian.com>
9314         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
9315         by Dietmar as quick fix
9316         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
9317         16 as stack size, used on more places as quick fix before Dietmar
9318         will fix it properly
9320 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9322         * object.h, object.c: added accessors for fields and properties.
9324 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9326         * class.c, class.h: made mono_class_get_field_from_name ()
9327         loop on parent types.
9328         Added mono_class_get_property_from_name ().
9330 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9332         * class.c, class.h: move the code to setup the type vtable in its own
9333         function so that it can be reused also for types created at runtime.
9334         Eliminate the "class" identifier from the header file.
9335         * reflection.c: setup the vtable for enums so that we can create
9336         objects for use in SetConstant ().
9338 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
9340         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
9341         instead of the delegate itself as this pointer (bug #28383)
9343 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
9345         * marshal.c (mono_marshal_get_managed_wrapper): added return type
9346         conversions.
9348 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9350         * loader.c: don't set the pinvoke bit on icalls.
9352 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
9354         * debug-helpers.c (mono_method_full_name): only print a number to
9355         indicate wrapper type (so that the output is more readable in traces).
9357 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
9359         * class.c (mono_class_init): include method override patch from Paolo
9361 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
9363         * icall.c: fixed GetTypeCode().
9365 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
9367         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
9368         use real delegate invoke function to make it work with multicast
9369         delegates (fix bug# 28291).
9371 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9373         * object.c: load constant strings.
9375 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9377         * reflection.c: no magic numbers.
9378         * tabledefs.h: security action enum.
9380 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9382         * assembly.c: fix possible memory corruption.
9384 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9386         * reflection.h, reflection.c: added support for linking resources.
9387         * verify.c: check we have an updated corlib.
9389 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
9391         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
9392         string arrays.
9393         (mono_marshal_string_array): null terminate unmanaged string arrays.
9394         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
9396 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9398         * icall.c: Type.GetType () can now return also types from the
9399         calling assembly.
9401 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9403         * loader.h, loader.c: stack walking support.
9404         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
9405         GetCallingAssembly.
9407 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
9409         * marshal.c: added optimisations for blittable types 
9411         * class.c (mono_array_class_get): do not set blittable attribute on arrays
9412         (mono_class_setup_mono_type): set blittable attribute for single
9413         and double.
9415         * marshal.c (mono_string_utf8_to_builder): impl.
9416         (mono_string_builder_to_utf8): impl.
9417         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
9419 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
9421         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
9422         (mono_marshal_get_managed_wrapper): impl. byref types
9424 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9426         * icall.c:
9427         (search_method): don't display debug message. 
9429 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9431         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
9433 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9435         * appdomain.c: set the missing filename when throwing exception.
9437 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9439         * metadata.c (mono_type_size): code cleanup
9440         (mono_type_stack_size): removed some test code
9442 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
9444         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
9445         mono_get_exception_file_not_found now.
9447         * exception.c (mono_exception_from_name_two_strings): New version
9448         that will call a constructor with two string arguments. 
9449         (mono_get_exception_file_not_found): New helper routine, used to
9450         report file-not-found errors.
9452 2002-07-20  Dick Porter  <dick@ximian.com>
9454         * process.h:
9455         * process.c: Pass file handles to CreateProcess
9456         
9457         * icall.c:
9458         * file-io.h:
9459         * file-io.c: Implemented CreatePipe
9461 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9463         * metadata.c (mono_get_param_info): set alignment for value types
9465 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9467         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
9468         Constify mono_domain_assembly_open().
9469         * loader.c: handle null namespace in icalls.
9471 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9473         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
9474         (emit_str_to_ptr_conv): marshal object as structs
9476         * metadata.c (mono_type_to_unmanaged): marshal object as structs
9478         * marshal.c (mono_marshal_get_runtime_invoke): support value types
9480 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
9482         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
9483         (mono_marshal_get_native_wrapper): we an now return value types
9485 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9487         * verify.c: more checks implemented.
9489 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
9491         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
9492         (fix bug #27695)
9493         (mono_marshal_get_native_wrapper): allow byref arguments
9494         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
9495         impl. PtrToStringXXX methods
9496         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
9497         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
9498         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
9499         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
9500         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
9502 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9504         * reflection.c: fix buglet in parsing an assembly name.
9506 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9508         * marshal.c (emit_ptr_to_str_conv): first impl.
9510 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9512         * object.c, class.h: cache the vtable in the class as suggested by
9513         vargaz@freemail.hu (Zoltan Varga).
9515 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9517         * class.h, loader.c: added mono_field_from_token().
9518         * verify.c: first cut of type checking code.
9520 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9522         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
9524 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
9526         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
9527         (fix bug #27782)
9528         (mono_marshal_get_remoting_invoke): impl.
9529         (mono_delegate_begin_invoke): impl.
9530         (mono_mb_emit_save_args): impl.
9531         (mono_delegate_end_invoke): impl.
9532         (mono_marshal_get_delegate_begin_invoke):
9533         (mono_marshal_get_delegate_end_invoke):
9534         (mono_marshal_get_delegate_invoke): generate a special name for
9535         those methods (including the signature) and associate them whith
9536         the delegate class. 
9538 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
9540         * reflection.[ch]: 
9541         (mono_reflection_type_from_name): now it has a MonoImage parameter
9542         which is used as the default image to search the type in. If the image
9543         is NULL or getting the type from it fails, it defaults to corlib.
9545         * icall.c: changed 1 call to mono_reflection_type_from_name to match
9546         new parameter.
9548 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9550         * reflection.c: update the parameter table index.
9552 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9554         * domain.c: don't include the mark byte in the string hash.
9556 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9558         * icall.cs: icall for Type.GetTypeCode ().
9559         * verify: a couple of fixes and disabled local initialization checks.
9561 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
9563         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
9565         * debug-helpers.c (mono_method_full_name): print the type of the
9566         runtime wrapper
9568         * metadata.c (mono_signature_hash): a hash function for signatures
9569         (mono_signature_hash): better hash algorithm
9571         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
9573         * debug-helpers.c (mono_method_full_name): this can now generate
9574         method names with signatures
9576         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
9577         method dont have this pointers.
9579 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9581         * reflection.c: fixup typebuilder tokens.
9582         * image.c: fix buglet.
9583         * marshal.h: remove whitespace.
9584         * metadata.h, metadata.c: reinstate code that was removed.
9585         * verify.c: handle catch directives and fix another couple of bugs.
9587 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
9589         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
9590         (mono_marshal_get_native_wrapper): make it comp. with the old code
9591         (mono_marshal_get_native_wrapper): support boolean
9592         (mono_marshal_get_managed_wrapper): support more types
9594 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
9596         * class.c (class_compute_field_layout): compute class->blittable attribute.
9598 2002-07-09  Dick Porter  <dick@ximian.com>
9600         * threads.c: Make the thread cleaning up cope with threads that
9601         call ExitThread()
9603 2002-07-08  Radek Doulik  <rodo@ximian.com>
9605         * reflection.c (method_encode_code): use non-translated values to
9606         compute finally_start, this fixes exception handling on ppc, yay!
9608         * decimal.h (struct signscale): fix endianess
9610 2002-07-07  Radek Doulik  <rodo@ximian.com>
9612         * reflection.c: swap box_val and not val
9614 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9616         * reflection.c, reflection.h: handle full assembly info in type name.
9617         Handle Type arguments when loading custom attributes.
9618         * icall.c: updated to use new mono_reflection_type_from_name () method.
9620 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9622         * loader.c:
9623         (method_from_memberref): also print assembly name when method not found.
9625 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9627         * icall.c:
9628         (ves_icall_TypeGetProperties): fixed bug #27473. 
9630 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9632         * reflection.c: display image name and token when cannot find the
9633         .ctor for an attribute.
9635 2002-07-05  Martin Baulig  <martin@gnome.org>
9637         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9639 2002-07-04  Dick Porter  <dick@ximian.com>
9641         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
9642         compile on mingw.  This will cause mingw builds to not wait for
9643         subthreads to terminate after the main thread does.  I've lodged a
9644         bug with the mingw developers for them to wrap OpenThread().
9646 2002-07-03  Dick Porter  <dick@ximian.com>
9648         * threads.c: Store thread IDs instead of handles, because
9649         GetCurrentThread() returns a pseudohandle and therefore stores
9650         useless values.  mono_thread_cleanup() continues checking the
9651         array of threads until it is empty, to cope with subthreads
9652         spawning new threads after the main thread has finished.
9654         * profiler.h:
9655         * profiler.c:
9656         * profiler-private.h: Pass the thread ID to thread profiler
9657         functions, instead of a handle
9659 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9661         * verify.c: fixes to make it more usable.
9662         * pedump.c: added --verify code to verify IL code in an assembly.
9664 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9666         * reflection.c: turn errors into warnings to allow compiling corlib.
9668 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9670         * reflection.c: add special cases to compile corlib.
9672 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9674         * reflection.c: handle properties with only a set method.
9676 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9678         * opcodes.h: add enum with opcodes in opval order.
9680 2002-07-01  Dick Porter  <dick@ximian.com>
9681         
9682         * object.h:
9683         * object.c (mono_runtime_run_main): Removed unneeded argument
9685 2002-06-28  Martin Baulig  <martin@gnome.org>
9687         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9689 2002-06-27  Dick Porter  <dick@ximian.com>
9691         * threads.c: Store the handle in both the parent thread and in the
9692         subthread, to minimise the time between starting a new thread and
9693         storing its ID.
9695 2002-06-26  Dick Porter  <dick@ximian.com>
9697         * appdomain.c (mono_runtime_cleanup): Close the socket library
9698         after all the threads have finished, not before
9700 2002-06-26  Martin Baulig  <martin@gnome.org>
9702         * debug-symfile.c (mono_debug_find_source_location): Added
9703         `guint32 *line_number' argument.  If it's not NULL, store the line number
9704         there and return the file name without the line number.
9706 2002-06-25  Dick Porter  <dick@ximian.com>
9708         * icall.c:
9709         * process.h:
9710         * process.c: Process forking and other support functions
9712 2002-06-25  Dick Porter  <dick@ximian.com>
9714         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
9715         things dont happen when the image is closed.
9716         (mono_image_lookup_resource): Walk the resource section looking
9717         for a particular entry
9719         * cil-coff.h: PE resource section decoding
9721 2002-06-25  Dick Porter  <dick@ximian.com>
9722         
9723         * assembly.h:
9724         * assembly.c: 
9725         (mono_assembly_foreach): Accessor functions to walk the list of
9726         loaded assemblies
9727         (mono_assembly_set_main):
9728         (mono_assembly_get_main): Process methods need to know which
9729         assembly is the "main" one
9731         * object.c (mono_runtime_run_main): Record the main assembly
9733         * debug-helpers.c: Fix typo
9735 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
9737         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
9738         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
9740 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9742         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
9744 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
9746         * image.c (do_mono_image_open): Initialize reference count,
9747         otherwise we leak the MonoImage.
9749 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9751         * reflection.c: small tweak to handle self-hosting.
9753 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9755         * reflection.c: fix type name parse code.
9757 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9759         * reflection.c: break out of the loop.
9760         * image.c: special case corlib.
9762 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9764         * reflection.c: add all the custom attrs at the end to ensure the
9765         ctors have been properly initialized when the attributes are defined
9766         in the current assembly.
9768 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9770         * reflection.c: handle correctly multiple-nested types.
9772 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9774         * row-indexes.h: fix typos.
9775         * reflection.c: adjust for typos and fix method_def_or_ref
9776         encoding in MethodImpl table.
9778 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9780         * reflection.c: fix entry point patching (thanks Serge!).
9782 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
9784         * verify.c: add check for System.Exception
9786 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9788         * image.c, class.c: minifix for code just c&p'ed.
9789         * reflection.c: warning fix.
9790         * object.h, loader.h, domain.c: load also StringBuilder.
9792 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9794         * marshal.h, marshal.c: some support code to handle complex marshaling.
9796 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9798         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
9799         Better signatures with vtable error dump.
9801 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
9803         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
9805 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
9807         * icall.c (ves_icall_Type_GetField): impl.
9809 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9811         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
9812         to retrieve a marshal description blob for a field or param.
9814 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9816         * reflection.h, reflection.c: change order of nested type emission
9817         to avoid table corruption. The NestedTypes table is sorted.
9818         * icall.c: change order of GetConstructor results to workaround mcs bug.
9820 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9822         * reflection.h, reflection.c: handle field and param marshal
9823         information.
9825 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9827         * icall.c, marshal.c marshal.h: more Marshal class implementation.
9829 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9831         * reflection.c: fix call convention.
9833 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9835         * reflection.h, reflection.c: mono_image_get_memberref_token()
9836         takes a type instead of a class, now. Added
9837         mono_image_get_array_token() to create tokens for the special
9838         multi-dim array methods.
9840 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9842         * assembly.c: handle modules (no assembly table). Split
9843         loading references in its own function.
9844         * class.c: handle moduleref resolution scope.
9845         * image.c, image.h: cache module name in image.
9847 2002-06-07  Martin Baulig  <martin@gnome.org>
9849         * reflection.c (mono_image_get_type_info): Only add a class layout entry
9850         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
9852 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9854         * icall.c: more signature fixes that used uint instead of int.
9856 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9858         * reflection.c: fixed signature of field refs.
9860 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9862         * class.c, reflection.c: handle typerefs of nested types
9863         (both on read and when writing files).
9865 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9867         * icall.c: fix method signatures that tried to workaround the previous
9868         typo, d'oh!
9870 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9872         * debug-helpers.c: fix typo.
9874 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9876         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
9877         rewrote the PE/COFF writing code (our programs are understood by the
9878         ms runtime, now).
9880 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9882         * gc.c, gc.h, icall.c: weakreference support.
9884 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9886         * Makefile.am, mono-config.c: use $(sysconfdir).
9888 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9890         * icall.c: changed default precision of Double.ToString() to 15.
9891         Fixed memory leak. Unified with Single.ToString.
9893 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9895         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
9897 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9899         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
9900         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
9901         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
9902         and myself.
9904 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9906         * debug-symfile.c, sysmath.c: yet more compilation fixes.
9908 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9910         * reflection.c, socket-io.c: more compilation fixes.
9912 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9914         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
9915         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
9916         unicode.c: warning and compiler compatibility fixes.
9918 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9920         * class.h, metadata.c: fixed warnings/compilation errors.
9922 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9924         * Makefile.am, mono-config.c, mono-config.h: configuration file
9925         support routines.
9926         * loader.c, loader.h: make Dll mapping configurable at runtime in the
9927         config file. Export methods to insert and lookup mappings.
9929 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9931         * reflection.c: handle types and boxed objects in custom attr
9932         constructors.
9934 2002-05-30  Martin Baulig  <martin@gnome.org>
9936         * debug-symfile.c
9937         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
9939 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
9941         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
9942         to lookup the implmap row for a P/Invoke method.
9943         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
9944         P/Invoke method from the runtime on an as needed basis.
9946 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
9948         * metadata.c (mono_metadata_parse_signature): impl.
9950 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9952         * class.c: handle .pack directive.
9954 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9956         * object.c: initialize static fields with RVA data.
9958 2002-05-25  Martin Baulig  <martin@gnome.org>
9960         * debug-symfile.c
9961         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
9963 2002-05-24  Martin Baulig  <martin@gnome.org>
9965         * debug-symfile.c
9966         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
9967         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
9968         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
9970 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9972         * object.c: special case string ctros in invoke.
9973         * gc.c: silly whitespace changes.
9975 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
9977         * threadpool.[ch]: impl. a threadpool that can
9978         be used by mint and mono.
9980 2002-05-22  Martin Baulig  <martin@gnome.org>
9982         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
9983         The first argument is now a `MonoReflectionModuleBuilder *', the return
9984         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
9985         `methods' field to get the method builder.  The `token' argument is the
9986         unfixed token.
9988         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
9989         invalid characters instead of g_assert_not_reached()ing.  This seems
9990         to be the behaviour of mscorlib.
9992 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
9994         * object.c (mono_runtime_invoke_array): applied patch from Rachel
9995         Hestilow to fix bug #25104
9997 2002-05-21  Martin Baulig  <martin@gnome.org>
9999         * debug-symfile.c (mono_debug_find_source_location): New function.
10000         Looks up an IL offset in the line number table and returns the source
10001         location as a string.
10003 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10005         * icall.c:
10006         (mono_double_ToStringImpl): changed %f by %g until we have something
10007         better.
10009 2002-05-21  Nick Drochak  <ndrochak@gol.com>
10011         * icall.c : Use different name for Math.Pow's icall.  Needed to check
10012         parameters first in C#.
10014 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10016         * icall.c, reflection.h: added icall to get info about an event.
10018 2002-05-20  Radek Doulik  <rodo@ximian.com>
10020         * object.c (mono_value_box): don't use memcpy for boxing on BIG
10021         endian
10022         (mono_value_box): don't use memcpy for small sizes on
10023         architectures with unaligned access
10025 2002-05-20  Martin Baulig  <martin@gnome.org>
10027         * reflection.c (mono_reflection_setup_internal_class): Don't crash
10028         if `tb->parent == NULL'.
10029         (mono_reflection_create_internal_class): New function.  This is
10030         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
10031         for enum types.
10033         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
10034         New interncall.
10036 2002-05-19  Martin Baulig  <martin@gnome.org>
10038         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
10039         argument to get the length, don't default to the array length.
10041 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
10043         * assembly.c (mono_assembly_setrootdir): New function used to
10044         override the MONO_ASSEMBLIES directory.
10046 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10048         * icall.c: ValueType_GetHashCode() initialize local var.
10050 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10052         * reflection.c: sort custom attributes table.
10054 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10056         * reflection.c: support named args in custom attributes (write support).
10058 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
10060         * reflection.c: fix finally position calculation.
10062 2002-05-15  Radek Doulik  <rodo@ximian.com>
10064         * reflection.c: fixed endianess at many places
10066         * icall.c (ves_icall_InitializeArray): comment out debug msg
10068 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
10070         * object.c (mono_unhandled_exception): new function to handle
10071         unhandled exceptions.
10072         (mono_unhandled_exception): call the UnhandledException event.
10073         (mono_runtime_delegate_invoke): impl.
10075 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
10077         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
10078         returns the RVA, not the direct pointer to the data. Handle the case
10079         when the class size is fixed.
10081 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10083         * reflection.c: fix some endianess issues.
10085 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
10087         * object.c (mono_runtime_invoke): is now able to catch exceptions.
10089         * threads.c (mono_thread_init): added a callback which is invoked
10090         at thread start.
10092 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10093         
10094         * icall.c: make GetHashCode return non-negative values.
10096 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10098         * object.c, icall.c, gc.c: revert to address-based hashcode.
10100 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
10102         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
10104 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10106         * icall.c, class.c: special case <Module>.
10108 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
10110         * icall.c: fix bug in GetNow().
10112 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
10114         * object.c (mono_runtime_class_init): make sure that we call all
10115         static class constructors.
10117 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10119         * reflection.c: sort methodsemantics table.
10121 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10123         * reflection.h, reflection.c: honour init locals setting.
10125 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
10127         * icall.c: copied Double ToStringImpl for Single ToStringImpl
10129 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10131         * reflection.c: support ContructorBuilders in attribute blob creation.
10133 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10135         * reflection.c: some changes to build a binary that can be run
10136         directly in windows.
10138 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10140         * loader.c: print a big message when an icall can't be found.
10142 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10144         * string-icalls.c: fix bug 24248.
10146 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10148         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
10149         icall.c, reflection.h: separate assembly loading by pathname and by
10150         assembly name. Use the MONO_PATH env var to search for assemblies.
10152 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10154         * assembly.c, image.h: add some support for assemblies
10155         with multiple modules.
10156         * class.c, class.h: export mono_class_from_typeref().
10157         * loader.c: remove duplicated code and use mono_class_from_typeref(),
10158         instead.
10160 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10162         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
10163         documentation says (the ECMA one is correct).
10165 2002-05-02  Dick Porter  <dick@ximian.com>
10167         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
10168         Don't name the synchronisation mutex.
10170 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
10172         * rand.c
10173         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
10174         Make the prototypes match.
10175         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
10176         Same.
10178         * icall.c
10179         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
10180         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
10181         all systems have tm.tm_zone, so use strftime() with %Z to print
10182         the timezone abreviation into a temp string.
10184         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
10185         rather than mono_array_addr() on a MonoString on Big Endian
10186         machines.
10188 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
10190         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
10191         fix bug 24041
10193 2002-04-30  Dick Porter  <dick@ximian.com>
10195         * socket-io.c: Cope with SOCKET being an integer rather than a
10196         pointer now.
10198         * threads.c: Added Thread_free_internal, to deal with thread
10199         handle cleanup.  Moved calls to handle_store() and handle_remove()
10200         to start_wrapper(), so each can only be called once.  Allocate
10201         synchronisation blocks with GC_malloc(), and use GC finalisation
10202         to close the handles.
10204         * icall.c: added System.Threading.Thread::Thread_free_internal
10206 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10208         * icall.c: support Environment.Exit, CommandLineArgs().
10210 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10212         * object.c, object.h: added mono_runtime_run_main () and
10213         mono_runtime_get_main_args () for use in System.Environment.
10215 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10217         * gc.c: fix thinko, enable actual finalization since the jit is now
10218         fixed.
10220 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10222         * gc.c, object.c: take into account that an object may be offset wrt the address
10223         returned by GC_malloc().
10225 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10227         * image.c: handle files without entries in the assembly table (modules).
10229 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
10231         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
10232         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
10233         allowed to be null when it's System.Object class setup.
10235 2002-04-27  Martin Baulig  <martin@gnome.org>
10237         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
10238         if `tb->parent == NULL' rather than crashing.
10240 2002-04-28  Nick Drochak  <ndrochak@gol.com>
10242         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
10243         calling acos() where asin() should have been called.
10245 2002-04-26  Martin Baulig  <martin@gnome.org>
10247         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
10248         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
10249         there's a subdirectory called `System', but we don't want to read that
10250         subdirectory as an assembly.
10252 2002-04-25  Martin Baulig  <martin@gnome.org>
10254         * debug-symfile.c: Reflect latest MonoString changes.
10256 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10258         * rand.c, rand.h: instance method icalls need to have an explicit
10259         this pointer as first argument in the C implementation.
10261 2002-04-25  Nick Drochak <ndrochak@gol.com>
10263         * icall.c: Fix typo in map for GetNonZeroBytes
10265 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10267         * string-icalls.c : String does now passes unit tests without any 
10268         errors, the following changes has been made:
10269         
10270         Implemented replace methods.
10271         Renaming of methods to (try) follow the standard.
10272         Fixed compare ordinal
10273         Made all memory allocated directly to function instead of via icall function.
10274         Small performance fix in is_in_array function
10275                         
10276  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
10278         c (mono_string_Internal_ctor_charp_int_int):
10279         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
10280         sindex < 0, throw ArgumentOutOfRangeException instead of
10281         ArgumentNullException.
10283         Added new check for length == 0, however
10284         I need to make it return String.Empty from the C code.
10285         
10286         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
10287         that calculate the length for us here.
10288         
10289         (mono_string_Internal_ctor_sbytep_int_int): Replaced
10290         mono_string_new_utf16 with mono_string_new, since value is utf8.
10292 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10294         * object.c: register the object for finalization if needed.
10295         Allocate one more char in the string for the terminating 0 char.
10297 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10299         * class.c, class.h, image.c: check if a type implemenst a destructor.
10300         Use the proper key for array class lookups.
10301         * icall.c: register the icalls in the System.GC class.
10302         * gc.c, gc.h: GC-related functions and icalls.
10304 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10306         * icall.c:
10307         * socket-io.c:
10308         * unicode.c: free some strings gotten from mono_string_to_utf8 and
10309         changed a couple of free () by g_free ().
10311         * decimal.c: one-liner in the comments for decimal2string ().
10313 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10315         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
10317 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10319         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
10320         * object.c (mono_runtime_invoke_array) : handle null in params
10322 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10324         * string-icalls.c: fixed bug in split (one off bug)
10326 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10328         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
10329         * icalls.c: added String::Equals as internal method
10331 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10333         * threads.c: fixed bug in the double interlocked functions
10335 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
10337         * threads.c: implemented all of the new interlocked icalls.
10338         * string-icalls.c: fix a bug in insert.
10339         * icalls.c: added the icalls for interlocked, removed old string functions.
10340         
10341 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10343         * loader.c: fix off-by-one error when reading argument names.
10345 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10347         * profiler.c: win32 counter implementation (untested).
10348         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
10349         (the latter needs testing and more complete impl. from win32 folks).
10351 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
10353         * object.c: mono_array_new_full workaround mono_array_class_get
10354         problem.
10356 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10358         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
10359         * object.h (mono_string_chars): Changed casting type.
10361 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10363         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
10364                            method signatures to use gunichar2 instead of gint16.
10366 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
10368         * object.h, object.c: domain-specific versions of mono_object_new and
10369         mono_array_new.
10371 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
10373         * object.c: changed String layout
10375         * string-icalls.c (mono_string_Internal_ctor_chara): added
10376         internal string constructors.
10378 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
10380         * threads.c: pass 'this' to the thread start routine.
10382 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10384         * string-icalls.c: fix IndexOf and LastIndexOf. Now
10385         InternalCompareStr don't call twice mono_string_cmp_char for the last
10386         character. Improved performance in mono_string_cmp_char.
10388 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10390         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
10391         code into its own library: libmonoruntime.
10393 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
10395         * object.h, object.c: changed array format so that szarrays do not
10396         require a bounds structure.
10397         * icall.c, appdomain.c: support for new szarray format.
10399 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10401         * metadata.c: compare also the retuns type when comparing signatures:
10402         we didn't do this as an optimization since really overloaded methods
10403         must differ also in the arguments, but this doesn't work with
10404         low-level IL code (or when using explicit conversion operators: see
10405         bug#23498 for an example).
10407 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10409         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
10411 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10413         * icall.c: make MonoType::GetElementType its own icall.
10415 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10417         * icall.c: remove MonoMethod_get_Name().
10418         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
10419         object.
10421 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10423         * string-icalls.c: optimized a few methods.
10425 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10427         * icall.c: added all new string internal calls
10428         * string-icalls.c: added, new string internal call implementation.
10429         * object.c: added mono_string_new_size for allocating a string a size
10431 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
10433         * object.c (mono_object_isinst): use the same code as in the
10434         optimized x86 version.
10436 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10438         * profiler.c: TSC-based timer code (faster and more accurate).
10439         Not hooked up in configure, yet (set USE_X86TSC to 1).
10441 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
10443         * profiler.c, profiler.h: track time spent compiling methods.
10444         * threads.c: track thread creation/destruction.
10446 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
10448         * profiler.c, profiler.h, profiler-private.h: profiling interface
10449         and sample implementation. Moved here so that it can be used also by
10450         the jit.
10452 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
10454         * reflection.c, reflection.h: keep types and other handles separate in
10455         the hash tables for referred tokens. Add guid for modules.
10457 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10459         * assembly.c: fix bugs found with valgrind.
10460         * metadata.h, metadata.c: added mono_metadata_guid_heap().
10462 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
10464         * threads: added icall support for getting current domain for
10465                    the thread.
10467 2002-04-13  Martin Baulig  <martin@gnome.org>
10469         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
10470         (MonoDebugVarInfo): Added `index' field for register based addresses.
10471         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
10472         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
10473         `MonoDebugVarInfo *params' and `guint32 this_offset' with
10474         `MonoDebugVarInfo *this_var'.
10476         * debug-symfile.c (relocate_variable): New static function to write
10477         a location description for a local variable or method parameter.
10479 2002-04-12  Martin Baulig  <martin@gnome.org>
10481         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
10482         stack offset and begin/end scope address of a local variable.
10483         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
10484         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
10485         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
10487         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
10488         Added new relocation types for start/end scope of a local variable.
10490 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10492         * object.h: add mono_object_domain() macro.
10493         * reflection.c: handle typespecs.
10494         * icall.c: MonoMethod::get_Name() implementation.
10496 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10498         * icall.c: String::GetHashCode() icall implementation.
10500 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10502         * icall.c: String::IndexOfAny icall.
10503         * object.c, object.h: make array->max_length more useful.
10504         Intrduced mono_object_class() and mono_string_length() macros.
10506 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10508         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
10509         instead of g_unichar_isdigit.
10511 2002-04-11  Nick Drochak  <ndrochak@gol.com>
10513         * icall.c: Implement a simple Double.ToString().
10515 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10517         * appdomain.h: only io-layer.h is supposed to be included.
10518         * icall.c: explicitly import environ. Fix warning.
10520 2002-04-10  Nick Drochak  <ndrochak@gol.com>
10522         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
10523                 return true even if it's not Daylight Savings time.
10524                 Only return false for the case where the function isn't
10525                 implemented for a plaform (read Windows).
10527 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10529         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
10530         data with a mutex.
10532 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
10534         * mempool.c (mono_mempool_alloc): only use g_malloc when
10535         absolutely necessary.
10537 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10539         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
10541         * class.c (mono_class_vtable): use domain mempool to allocate vtable
10542         (mono_class_proxy_vtable): use domain mempool
10544 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10546         * appdomain.h, appdomain.c: split initialization that requires the
10547         execution engine support into mono_runtime_init().
10549 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10551         * class.c (mono_class_init): don't include vtable inside MonoClass
10552         to save some memory, gather some statistics.
10553         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
10555 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10557         * icall.c: internalcall implementation for ValueType.Equals().
10559 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
10561         * object.c (mono_message_init): moved 
10562         (mono_runtime_exec_main): new arch. independent impl.
10563         (mono_runtime_invoke_array): new method - like
10564         mono_runtime_invoke, but you can pass an array of objects.
10565         (mono_remoting_invoke): new arch. independent impl.
10566         (mono_message_invoke): new arch. independent impl.
10567         (mono_runtime_class_init): new arch. independent impl.
10568         (mono_runtime_object_init): new arch. independent impl.
10570 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10572         * metadata.c, object.c, reflection.c: documented the exported
10573         functions.
10575 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10577         * icall.c: simpler code to pass the assembly builder data to corlib.
10578         Implement GetNestedTypes() internalcall.
10580 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10582         * class.c: warn if a type can't be loaded.
10584 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
10586         * image.h: typedef MonoImageOpenStatus
10587         * types.h: removed unused file
10588         
10589 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
10591         * icall.c: Enum_ToObject accepts enum value arguments.
10593 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10595         * class.c: move initialization of properties, events and nested
10596         classes, so that they happen for interfaces, too.
10598 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10600         * icall.c: cleanup some ugly casts in Array_SetValue*.
10602 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10604         * icall.c: the values array fro enums is of the correct type, now.
10605         Implement (correctly) getFullName instead of assQualifiedName for
10606         MonoType.
10607         * reflection.h, reflection.c: added mono_type_get_name ().
10609 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10611         * assembly.c, image.h: for each MonoImage, record from wich assembly
10612         it was loaded.
10613         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
10614         Make Type.Assembly work.
10616 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
10618         * debug-symfile.h: use char* instead of gpointer to avoid
10619         unnecessary casts.
10621         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
10623         * icall.c (ves_icall_InternalExecute): impl. FielSetter
10624         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
10626 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
10628         * icall.c (mono_message_init): impl. (code cleanup)
10629         (ves_icall_InternalExecute): impl. FieldGetter
10631         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
10632         defined we call all (non-static)methods through the vtable. 
10634 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
10636         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
10637         finalizer even though the memory is still referenced (and the chunk of
10638         memory is not freed).
10640 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10642         * assembly.c: fix brokeness.
10644 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
10646         * class.c: kill some warnings. Check explicit interface method
10647         implementation also without considering the namespace.
10648         Load also literal strings in static class data.
10650 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
10652         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
10653         (default_assembly_name_resolver): Make the resolver take the
10654         "base" directory where the assembly was originally defined, so we
10655         can load DLLs that are in the same directory as the assembly that
10656         is being referenced.
10658 2002-03-28  Dick Porter  <dick@ximian.com>
10660         * file-io.h: 
10661         * file-io.c:
10662         * socket-io.c: 
10663         * unicode.h: 
10664         * unicode.c: Warning cleanups
10666 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
10668         * object.h, reflection.h: use the correct type instead of MonoObject.
10670 2002-03-28  Martin Baulig  <martin@gnome.org>
10672         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
10673         (mono_debug_update_symbol_file): Initialize classes if necessary.
10675 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10677         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
10678         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
10680 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
10682         * assembly.h: fix function prototype.
10683         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
10684         * mono-endian.h: use const cast.
10686 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10688         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
10690 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10692         * loader.c: don't assert when a typeref can't be loaded, give
10693         a chance to the runtime to trow an exception instead.
10694         * loader.h: fix warning.
10696 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10698         * class.c (mono_class_proxy_vtable): added proxy support
10700 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
10702         * icall.c: removed last of PAL calls, added System.Environment
10703         * file-io.h, file-io.c: MonoIO implementation
10704         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
10706 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10708         * appdomain.c: do not use the byte marker in ldstr table lookup.
10709         * debug-helpers.c: allow two ':' to separate class and method name.
10710         * object.c: allocate arrays bounds with the GC, too.
10711         * verify: add a few more checks.
10713 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
10715         * reflection.c: output also literal strings. Allocate parameter data
10716         with GC_malloc() (thanks, Martin, for catching this!).
10718 2002-03-26  Martin Baulig  <martin@gnome.org>
10720         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
10721         include the `this' offset in the `param_offsets'.
10723 2002-03-25  Martin Baulig  <martin@gnome.org>
10725         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
10726         mono_debug_get_class() function to get the classes. Added new
10727         relocation types for arrays and strings.
10728         (mono_debug_get_class): New static function to search in all
10729         referenced assemblies for a metadata token.
10731         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
10733 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10735         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
10736         hold gc-allocated objects. Make the string heap a stream like the
10737         others. Removed duplicated code when writing stream info.
10738         Added asserts to catch possible buffer overflows. Set the sorted map
10739         for tables that need sorting. Added some documentation.
10741 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
10743         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
10744         for interned strings and vtables.
10746 2002-03-24  Martin Baulig  <martin@gnome.org>
10748         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
10749         it in the array since it was created with g_slist_prepend().
10751 2002-03-24  Martin Baulig  <martin@gnome.org>
10753         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
10754         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
10755         (mono_debug_method_from_token): Renamed to
10756         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
10757         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
10759         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
10760         relocation types.
10762         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
10764 2002-03-24  Martin Baulig  <martin@gnome.org>
10766         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
10767         (mono_debug_method_from_token): New func.
10769         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
10770         New interncall, calls mono_debug_local_type_from_signature().
10771         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
10772         calls mono_debug_method_from_token().
10774 2002-03-23  Martin Baulig  <martin@gnome.org>
10776         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
10777         specifies the number of bytes to be converted, not the array size.
10778         Return the number of chars, not the number of bytes.
10779         (ves_icall_iconv_get_chars): The `byteCount' argument
10780         specifies the number of bytes to be converted, not the array size.
10782 2002-03-23  Martin Baulig  <martin@gnome.org>
10784         * reflection.h (MonoReflectionSigHelper): New type.
10786         * reflection.c (mono_reflection_sighelper_get_signature_local),
10787         (mono_reflection_sighelper_get_signature_local): New functions.
10789         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
10790         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
10791         interncalls.
10793 2002-03-23  Martin Baulig  <martin@gnome.org>
10795         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
10796         is_writeable is set.
10797         (mono_raw_buffer_update): New function to write the modified map
10798         back to disk.
10800         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
10802         * debug-symfile.c (mono_debug_update_symbol_file): Call
10803         mono_raw_buffer_update() when done writing.
10805 2002-03-23  Martin Baulig  <martin@gnome.org>
10807         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
10809         * debug-symfile.c: Added support for arguments and local variables.
10811 2002-03-23  Dick Porter  <dick@ximian.com>
10813         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
10814         protected by ifdefs, hence breaking the w32 build.
10816 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10818         * object.c: implement is_interned() the right way.
10820 2002-03-21  Martin Baulig  <martin@gnome.org>
10822         * debug-symfile.[ch]: New files to handle debugging information
10823         files. There's also support to dynamically update these symbol
10824         files to include machine dependent information.
10826 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
10828         * threads.c (mono_thread_create): new function to create thread
10829         from C
10831 2002-03-20  Martin Baulig  <martin@gnome.org>
10833         * icall.c (ves_icall_InternalInvoke): Create a new object if the
10834         method is a constructor.
10835         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
10836         points to ves_icall_InternalInvoke().
10838 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
10840         * file-io.c: Flush shouldn't throw exceptions.
10842 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
10844         * file-io.c: FileStream flush support; FileSetLength now
10845         restores file pointer.
10847 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10849         * class.c: set image for pointer classes.
10851 2002/03/19  Nick Drochak <ndrochak@gol.com>
10853         * sysmath.c: Forgot one.
10855 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
10857         * sysmath.c: Avoid redefining existing names.
10859 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
10861         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
10862         handled by runtime as icall rather than dllimport from libm.so
10863         * file-io.c, file-io.h: fixed handle argument type.
10865 2002-03-18  Dick Porter  <dick@ximian.com>
10867         * reflection.c (mono_image_get_type_info): rename interface to
10868         iface, because of "#define interface struct" on windows.
10870 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
10872         * class.c, class.h: rename and export mono_ptr_class_get().
10873         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
10874         * reflection.c, reflection.h, icall.c: better/saner type name
10875         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
10876         method signatures.
10878 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
10880         * class.c (mono_class_init): removed hardcoded GHC_SLOT
10882         * icall.c (ves_icall_InternalInvoke): impl.
10884 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10886         * reflection.c: output the interface map table, too.
10888 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10890         * class.c (class_compute_field_layout): separate computation of 
10891         static field layout
10893 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
10895         * icall.c: added System.Buffer support.
10896         * file-io.c: moved file icalls from PAL to FileStream.
10898 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10900         * icall.c (ves_icall_System_Object_GetHashCode): impl.
10902 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
10904         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
10906 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10908         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
10910 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10912         * debug-helpers.{c,h}: moved here from monograph some useful functions
10913         to locate a method by name/signature in a class or image. Included
10914         also a small and flexible IL disassembler.
10916 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10918         * reflection.c: fixup tokens in methods with small header size, too.
10920 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
10922         * object.c (mono_string_to_utf8): remove assert(!error), instead
10923         print a warning. 
10925 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
10927         * icall.c: update to the new mono_Array_class_get interface.
10929 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10931         * appdomain.c, object.c: Boehm-GC enable.
10932         * icall.c: make get_data_chunk() support split data requests.
10933         Ensure a class is initialized in more cases. Return only the first
10934         property found in GetProperties() or the compiler gets confused. 
10935         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
10936         * reflection.h, reflection.c: add fixup mechanism for field and method
10937         tokens. Initialize assembly->typeref in a single place. Output
10938         properties after events. Support custom attributes for events, too.
10939         Typo fix for paramter custom attrs.
10941 2002-03-07  Martin Baulig  <martin@gnome.org>
10943         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
10945 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
10947         * class.c (mono_array_class_get): fix. for multi. dim. arrays
10949 2002-03-06  Martin Baulig  <martin@gnome.org>
10951         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
10952         non-zero lower bounds. See testcases #F10-#F13.
10954 2002-03-05  Martin Baulig  <martin@gnome.org>
10956         * exception.c (mono_get_exception_argument_out_of_range): New exception.
10958         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
10959         ves_icall_System_Array_GetValue(), only calculate the absolute array position
10960         here.
10961         (ves_icall_System_Array_SetValue): Likewise.
10962         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
10963         as argument and does the actual work. This function is used when copying a
10964         multi-dimensional array.
10965         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
10966         now do all the widening conversions of value types.
10967         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
10969 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10971         * class.c: remove some magic numbers and use the smbolic names,
10972         instead. Added init_events() to load event info at class init time.
10973         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
10974         and mono_metadata_methods_from_event().
10975         * reflection.h, reflection.c: added support for writing out the evnets
10976         related information.
10978 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10980         * reflection.h, icall.c: use a different method (GetInterfaces)
10981         to gather interface info and add isbyref, isprimitive and
10982         ispointer to the ves_icall_get_type_info() return value.
10984 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10986         * class.h: stared adding support for events.
10987         * icall.c: split find_members implementation. Added debug icall to get
10988         the address of an object.
10989         * reflection.c: handle TypeBuilders in mono_type_get_object().
10991 2002-03-01  Martin Baulig  <martin@gnome.org>
10993         * icall.c (ves_icall_System_Array_GetLength): This must throw an
10994         ArgumentOutOfRangeException(), not an ArgumentException().
10995         (ves_icall_System_Array_GetLowerBound): Likewise.
10996         (ves_icall_System_Array_GetValue): Improved argument checking.
10997         (ves_icall_System_Array_SetValue): Improved argument checking.
10999 2002-03-01  Martin Baulig  <martin@gnome.org>
11001         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
11002         called with invalid arguments rather than just dying with g_assert().
11003         (ves_icall_System_Array_SetValue): Likewise.
11004         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
11005         raise a NotImplementedException instead.
11006         (ves_icall_System_Array_GetLength): Added argument checking.
11007         (ves_icall_System_Array_GetLowerBound): Added argument checking.
11009 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
11011         * object.h (mono_assert): new macros mono_assert and
11012         mono_assert_not_reached
11014 2002-02-28  Martin Baulig  <martin@gnome.org>
11016         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
11017         and "System::String::IsInterned" to "System::String::_IsInterned".
11019 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
11021         * icall.c: remove hacks for typebuilder. Added icall to create a
11022         modified type from a tybebuilder.
11023         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
11024         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
11025         to create a backing MonoClass for a TypeBuilder.
11027 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11029         * class.c, class.h: more refactoring of class init.
11030         Export mono_class_setup_mono_type() and mono_class_setup_parent().
11032 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
11034         * marshal.c, marshal.h: start of marshaling interface.
11036 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11038         * icall.c: fix order in assembly qualified name icall.
11040 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11042         * class.c: do not free str, since we store it in the hash table.
11043         * reflection.h: add label field to MonoILExceptionInfo.
11044         * reflection.c: handle references to more than one assembly. Handle
11045         case when there isn't a module created in the assembly.
11047 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
11049         * class.c: Fix typo. Start refactoring of class init code.
11051 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
11053         * appdomain.c: exit with 1 on error.
11054         * class.c: we already have the name in MonoClassField.
11055         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
11056         MonoStreamHeader instead of an offset of image->raw_metadata.
11058 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
11060         * appdomain.c (mono_init): Be even more descriptive about the error.
11062 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
11064         * appdomain.c: give the user an informative message when corlib can't
11065         be loaded.
11067 2002-02-26  Martin Baulig  <martin@gnome.org>
11069         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
11070         New icall to get the time zone data.
11072 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11074         * reflection.c: set virtual and raw size of section correctly.
11075         * threads.c: transfer domain information to newly created threads.
11077 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11079         * class.c: when instancing a class in a domain, load the default
11080         vaules for static fields from the constant table. Fix System.Enum to
11081         not be an enum.
11082         * icall.c: implement Object::GetType() internalcall. Implemented
11083         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
11084         Fixed checking of binding flags in find_members().
11085         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
11086         * reflection.c: handle enumerations when writing to the constant
11087         table. Use a different object cache for types.
11090 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
11092         * object.c (mono_object_isinst): fix for arrays
11094         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
11096 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11098         * object.c: don't use mprotect ()  and fix intern pool hash table
11099         lookup for big endian systems.
11101 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11103         * icall.c: change type_is_subtype_of () signature.
11105 2002-02-21  Mark Crichton  <crichton@gimp.org>
11107         * rand.c, rand.h: Added random number generator for
11108         System.Security.Cryptography classes.
11110         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
11112         * icall.c: Added System.Security.Cryptography calls.
11114 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11116         * class.c, icall.c, metadata.c: better support for pointer types.
11117         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
11118         * reflection.c: Add support for getting custom attrs for properties
11119         and simplify some code.
11121 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11123         * icall.c: change getToken () and add custom attribute GetBlob()helper
11124         method.
11125         * reflection.h: add custom attrs array to the reflection builder structures.
11126         * reflection.c: encode and emit custom attributes for all the relevant
11127         reflection objects. Cache fieldref and methodref tokens. Change
11128         mono_image_create_token() interface to take a MonoDynamicAssembly.
11129         More complete custom attributes decoder. Load custom attributes for
11130         Assembly, Field, Method and Constructor objects, too. Make the
11131         returned array an Attribute[] one, not object[]. Added
11132         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
11133         custom attribute constructor.
11135 2002-02-20  Dick Porter  <dick@ximian.com>
11137         * icall.c:
11138         * rawbuffer.c:
11139         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
11140         problem code out for now).
11142 2002-02-19  Radek Doulik  <rodo@ximian.com>
11144         * object.c (mono_ldstr): use hash table to avoid multiple swapping
11146 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
11148         * icall.c: register the GetCustomAttributes method.
11149         * object.c, object.h: add mono_string_new_len ().
11150         * reflection.h, reflection.c: added mono_runtime_invoke(),
11151         mono_install_runtime_invoke(). Added
11152         mono_reflection_get_custom_attrs () to load custom attributes and
11153         create the attribute objects.
11155 2002-02-19  Dick Porter  <dick@ximian.com>
11156         * threads-dummy-types.c:
11157         * threads-dummy-types.h:
11158         * threads-dummy.c:
11159         * threads-dummy.h:
11160         * threads-pthread-types.c:
11161         * threads-pthread-types.h:
11162         * threads-pthread.c:
11163         * threads-pthread.h:  Deleted obsolete files
11165 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
11167         * class.c (mono_class_vtable): runtime init the class when we
11168         allocate static class data.
11170         * icall.c (ves_icall_System_Array_SetValue): check for null values.
11172         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
11173         and String - but we will need generic marshalling support in the
11174         future. 
11175         (mono_init): set the domain name in a ms compatible way
11177         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
11178         String[].
11180 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
11182         * object.c (mono_array_clone): use alloca() instead of g_malloc  
11183         for sizes
11185         * appdomain.c (mono_domain_unload): impl.
11187 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11189         * appdomain.c, object.c: fix intern pool implementation.
11190         * class.c: fix alignment code.
11192 2002-02-16  Radek Doulik  <rodo@ximian.com>
11194         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
11195         and s2 > s1, just copy lower bytes to be compatible with little
11196         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
11197         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
11199         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
11200         force big_endian to be 1 for big endian machines 
11201         (ves_icall_iconv_new_decoder): ditto
11203 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
11205         * socket-io.c (convert_sockopt_level_and_name): If the system
11206         doesn't define SOL_IP or SOL_TCP, get them by hand using
11207         getprotobyname() and caching the values (because this could be a
11208         slow operation).
11209         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
11210         Use the appropriate struct when the system does support it. Ie,
11211         not all systems have struct ip_mreqn so use struct ip_mreq when
11212         appropriate.
11214 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
11216         * reflection.c: handle finally clauses.
11218 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
11220         * socket-io.c: use g_snprintf() instead of snprintf.
11222 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11224         * reflection.c (mono_param_get_objects): Cast second argument to
11225         mono_method_get_param_names to a const char** to silence the
11226         compiler warning.
11228         * appdomain.c (mono_domain_assembly_open): Put parens around the
11229         truth statement in the for-loop.
11231         * unicode.c (iconv_convert): Got rid of a compiler warning about
11232         int i being unused when the system has a new iconv.
11233         (iconv_get_length): Same.
11235         * image.c (load_class_names): Cast the second argument to
11236         g_hash_table_insert() to char* to hush compiler warnings about the
11237         arg being a const.
11238         (mono_image_open): Same here.
11240         * socket-io.c: Don't conditionally include sys/filio.h or
11241         sys/sockio.h here anymore since we now get them from
11242         io-layer/io-layer.h
11243         (inet_pton): If the system doesn't support inet_aton, implement
11244         using inet_addr and also #define INADDR_NONE if it isn't defined
11245         by the system.
11247 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
11249         * metadata.c, metadata.h: added function to get packing and size info
11250         of a typedef.
11251         * reflection.h, reflection.c: handle field RVA data. Save info about
11252         the table layout if needed. Assign typedef indexes to all the types
11253         before dumping the info about them to avoid forward reference problems.
11255 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
11257         * socket-io.c (convert_sockopt_level_and_name): ifdef
11258         SO_ACCEPTCONN because it is not defined on my system (old debian)
11260 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11262         * opcode.c: use stddef.h to get NULL.
11264 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11266         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
11267         for FIONBIO, FIONREAD and SIOCATMARK.
11268         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
11269         define INADDR_NONE and besides, inet_addr() is deprecated and
11270         should not be used. Use inet_pton() instead - it also has the
11271         added bonus that it can easily handle IPv6 addresses as well.
11272         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
11274 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11276         * decimal.c: remove _MSC_VER conditional.
11278 2002-02-13  Dick Porter  <dick@ximian.com>
11280         * socket-io.c: 
11281         * icall.c: Internal calls for Blocking, Select, Shutdown,
11282         GetSocketOption and SetSocketOption
11284 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11286         * assembly.cs: better resolver: use it instead of some kludgy
11287         code.
11289 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
11291         * reflection.c: the best way to speed-up the compiler is to avoid
11292         infinite loops.
11294 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
11296         * class.c (mono_class_vtable): changed the object layout
11297         (obj->vtable->class). 
11298         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
11300 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11302         * assembly.c: look for assemblies in the assembly dir, too.
11304 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11306         * class.c: fix thinko in mono_class_from_type().
11308 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11310         * exception.h, exception.c: added TypeLoadException.
11311         * object.h, object.c: added mono_array_clone ().
11312         * icall.c: handle throwOnError in AssemblyGetType().
11313         Added Array.Clone().
11314         * opcode.h, opcode.c: use a single value for the opcode val.
11315         Compile fix for non-gcc compilers.
11317 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
11319         * opcodes.c, opcodes.h: export interesting info about opcodes.
11321 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
11323         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
11324         icalls. 
11326         * class.c (class_compute_field_layout): set element_class for enums
11327         (mono_class_create_from_typedef): set element_class for normal classes
11329         * icall.c (ves_icall_System_Enum_get_value): impl.
11331         * class.c (mono_class_create_from_typedef): do not set valuetype
11332         flag for System.ValueType and System.Enum
11334 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
11336         * unicode.c (iconv_convert): fix big endian problem.
11338 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11340         * class.c: add asserts if we are ever going to scribble over memory.
11341         * socket-io.c: not all systems have AF_IRDA defined.
11343 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
11345         * class.c (class_compute_field_layout): do not consider static
11346         fields to compute alignment
11348 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
11350         * appdomain.c (mono_appdomain_get): impl.
11351         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
11353 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11355         * icall.c: ignore "file://" prefix when loading an assembly.
11357 2002-01-23  Dick Porter  <dick@ximian.com>
11359         * socket-io.c:
11360         * icall.c:
11361         * Makefile.am: Added socket support
11363 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11365         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
11366         code back.  This should return the assemblies that are loaded by
11367         the runtime on behalf of an application domain. 
11369         The current implementation is still broken, it just returns every
11370         assembly loaded, but until we get real applications domain this
11371         will do.
11373 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
11375         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
11376         AppDomain object.
11378 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11380         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
11381         the mono_class_from_name lookup.
11382         (ves_icall_get_parameter_info): ditto.
11383         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
11384         method.
11385         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
11387 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
11389         * class.c: load also nested classes on class init.
11390         System.ValueType instance methods gets passed boxed
11391         values, unless methods in derived classed that get a pointer to the
11392         data.
11393         * icall.c: use better name parsing code in GetType().
11394         * image.c, image.h: add mono_image_loaded ().
11395         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
11396         * reflection.c, reflection.h: added mono_reflection_parse_type().
11398 2002-01-22  Veronica De Santis <veron78@interfree.it>
11400         * icall.c : Added mapping of internal calls for Manual and Auto reset events
11401         * threads.c : Added the implementation of internal calls for events
11402         * threads.h : Added prototypes of internal calls for events
11403         
11404 2002-01-21  Radek Doulik  <rodo@ximian.com>
11406         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
11408 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
11410         * class.c (mono_class_init): set min_align to 1 (instead of 0)
11411         (mono_class_value_size): use min_align
11413 2002-01-20  Dick Porter  <dick@ximian.com>
11415         * threads.h:
11416         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
11417         so it compiles on w32.
11419 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
11421         * metadata.c (mono_type_stack_size): impl.
11423         * class.c (mono_class_get_field): impl. memberref token
11425 2002-01-16 Veronica De Santis <veron78@@interfree.it>
11427         * icall.h : Added the internal calls mapping for CreateMutex_internal
11428                     and ReleaseMutex_internal.
11429         * threads.h : Added the prototype of mutexes internal calls.
11430         * threads.c : Added the implementations of mutexes internal calls.
11432 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11434         * metaparse.h: removed unused file.
11435         * reflection.c, reflection.h: added stream_data_align () function 
11436         to align data in streams and keep stream aligned. Add support for
11437         exception support in method headers.
11439 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
11441         * unicode.c: make iconv_convert () return the number of bytess written
11442         in the output buffer.
11444 2002-01-15  Dick Porter  <dick@ximian.com>
11445         * threads.c: Make the runtime's idea of infinite timeouts coincide
11446         with the class library's
11448         Fix a particularly egregious bug in mono_thread_cleanup(). That
11449         code was so utterly bogus it must have been written on a Monday.
11451 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11453         * reflection.h: add subtypes field to TypeBuilder.
11454         * reflection.c: encode constants for literal fields.
11455         Handle subtypes. Fix user string token (and add a zero byte)
11456         at the end.
11457         
11458 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
11460         * class.c (mono_class_init): bug fix: assign slot numbers for
11461         abstract methods.
11463 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11465         * reflection.c: don't try to output a code RVA for abstract methods.
11466         Small fixes for method header format. Output parameter info to the
11467         ParamDef table. Save method overriding info to MethodImpl table.
11468         Fix property support. Allow typedef.extends to be a type in the
11469         building assembly.
11470         * verify.c: fix off-by-one error.
11472 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
11474         * class.c: fix mono_class_from_mono_type () for szarray types.
11475         Remove unused cache check in mono_class_from_type_spec().
11476         * icall.c: *type_from_name () functions handle simple arrays and byref.
11477         * reflection.c: handle byref and szarray types. Handle methods without
11478         body (gets P/Invoke compilation working). Handle types and fields in
11479         get_token ().
11480         * reflection.h: add rank to MonoTypeInfo.
11482 2002-01-10  Dick Porter  <dick@ximian.com>
11484         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
11485         internal calls
11487 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11489         * icall.c: initialize class in type_from_handle ().
11490         Loop also in parent classes for get_method ().
11491         * reflection.c: properly encode class and valuetype types.
11492         Start on encoding TypeBuilder types. Handle fieldrefs.
11493         Use correct length when registering a user string.
11494         Handle ConstructorBuilder and MonoMethod in get_token ().
11495         Make mono_type_get_object () aware of cached types.
11496         * object.c: back out change to mono_string_new ().
11498 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
11499         * object.c: mono_string_new should return a NULL when the string 
11500         passed in is NULL -- not try to deference it.
11501         
11502 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11504         * icall.c: hack to make IsSubType work for TypeBuilders.
11505         * reflection.c: emit constructors before methods.
11506         Retrieve param names in mono_param_get_objects().
11508 2002/01/05  Nick Drochak  <ndrochak@gol.com>
11510         * Makefile.am: fix list of headers and sources so automake 1.5
11511         doesn't complain. Removed \# at end of list.
11513 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11515         * reflection.c: get token for a method ref. Set return type of
11516         constructor to void.
11517         * loader.c: debug message.
11518         * class.c: typo fix.
11520 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
11522         * icall.c: fix array init with rank > 1. FindMembers
11523         loops in parent class as well.
11524         * image.c: do not insert nested types in name cache.
11525         * reflection.c: warning fix.
11526         * reflection.h: add override method (for interface impl).
11528 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
11530         * metadata.c: fix customattr decoding.
11532 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
11534         * rawbuffer.cs: Added native Win32 implementation, avoids using
11535         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
11537 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
11539         * class.c: make the low-level routines handle the cache.
11541 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
11543         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
11545 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
11547         * class.c: fix mono_array_element_size() for objects.
11548         * class.h, class.c: add properties to MonoClass and load them
11549         at init time.
11550         * icall.c: check with isinst() when assigning a value to an array
11551         instead of requiring the classes to match exactly.
11552         Implemented icall for System.Type::GetType().
11553         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
11554         enums. Handle bindingflags when looking for methods and fields.
11555         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
11556         and mono_metadata_methods_from_property().
11557         * reflection.h, reflection.c: added structures for propreties,
11558         parameters and enums. Implemented mono_property_get_object() and
11559         mono_param_get_objects().
11561 2001-12-18  Dick Porter  <dick@ximian.com>
11563         * file-io.c: Use mono_string_to_utf16() instead of
11564         mono_string_chars()
11566         * object.c: Added mono_string_to_utf16(), which copies the non
11567         NULL-terminated MonoString into a new double-null-terminated
11568         buffer.
11570 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
11572         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
11574 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
11576         * file-io.c: raise exceptions if handle is invalid.
11578 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
11580         * assembly.c: yet another check for mscorlib.
11581         * class.c, class.h: load nesting info for classes.
11582         * icall.c: many new functions to support the Reflection classes.
11583         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
11584         * reflection.h, reflection.c: mono_image_create_token(),
11585         mono_assembly_get_object(), mono_type_get_object(),
11586         mono_method_get_object(), mono_field_get_object(): methods to return
11587         objects that parallel the C representation of assemblies, types,
11588         methods, fields.
11590 2001-12-11  Dick Porter  <dick@ximian.com>
11592         * icall.c:
11593         * file-io.c: Internal calls for file IO.
11595 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
11597         * tabledefs.h: missing FileAttributes.
11598         * verify.h, verify.c: use is_valid_string () to simplify and check for
11599         valid strings more correctly. Fix warnings and speeling.
11600         Check more tables: Filed, File, ModuleRef, StandAloneSig.
11601         Check code: branches, maxstack, method calls.
11603 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
11605         * object.c (mono_object_allocate): removed static, so that the jit
11606         can allocate value types.
11608         * icall.c (ves_icall_System_DateTime_GetNow): impl.
11610 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11612         * class.c: init enum types right away and register the
11613         token->MonoClass map in mono_class_create_from_typedef ().
11614         * verify.h, verify.c: first cut of the verifier.
11615         * pedump.c: add --verify switch to verify metadata tables.
11616         * tabledefs.h: add some missing enums.
11618 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
11620         * class.c (mono_install_runtime_class_init): impl.
11621         (mono_class_init): renamed mono_class_metadata_init to
11622         mono_class_init, also removed the metadata_inited flag
11624         * object.c (mono_object_isinst): use faster algorithm
11626 2001-11-30  Radek Doulik  <rodo@ximian.com>
11628         * mono-endian.h: reverted last change
11629         added function prototypes
11631         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
11632         add mono-endian.c back
11634         * mono-endian.c: returned back, as Paolo pointed out, it's needed
11635         for unaligned access, I've mistaked it with endianess. I am
11636         sorry.
11637         (mono_read16): fix reverted endianess
11638         (mono_read64): ditto
11639         (mono_read32): ditto
11641 2001-11-30  Dick Porter  <dick@ximian.com>
11643         * exception.c: Implement mono_exception_from_name()
11645 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11647         * metadata.h, metadata.c: remove params_size and locals_size and their
11648         calculation from the metadata code: they are only usefult to the
11649         interp.
11651 2001-11-29  Radek Doulik  <rodo@ximian.com>
11653         * object.c (mono_ldstr): swap bytes here, it's probably not the
11654         best place, but works for me now, I'll redo it once I know mono
11655         better, also note that I add PROT_WRITE and don't reset back, also
11656         note that it's only affects big endians, so x86 should be OK
11658         * mono-endian.h (read16): use just glib macros for both endians
11660         * mono-endian.c: removed as glib macros are used in in
11661         mono-endian.h so we don't need to care about endianess for read
11662         macros as glib does that for us already
11664 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
11666         * class.h, class.h: take minimum alignment into consideration so
11667         that the fields of a class remain aligned also when in an array.
11669 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11671         * loader.h, loader.c: add mono_method_get_param_names().
11672         * class.c: 0-init class fields.
11674 2001-11-26  Dick Porter  <dick@ximian.com>
11676         * icall.c:
11677         * threads-types.h:
11678         * threads.c: New file that handles System.Threading on all platforms
11680         * object.c: 
11681         * object.h: Remove the synchronisation struct from MonoObject,
11682         replace it with a pointer that gets initialised on demand
11684         * Makefile.am: Replace all the system-specific threading code with
11685         a single file that uses the new wrapper library
11687 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
11689         * class.c, class.h: add mono_install_trampoline() so that the runtime
11690         can register a function to create a trampoline: removes the ugly
11691         requirement that a runtime needed to export arch_create_jit_trampoline.
11692         * object.h, object.c: added mono_install_handler() so that the runtime
11693         can install an handler for exceptions generated in C code (with
11694         mono_raise_exception()). Added C struct for System.Delegate.
11695         * pedump.c: removed arch_create_jit_trampoline.
11696         * reflection.c: some cleanups to allow registering user strings and
11697         later getting a token for methodrefs and fieldrefs before the assembly
11698         is built.
11699         * row-indexes.h: updates and fixes from the new ECMA specs.
11701 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
11703         * class.h, class.c: add enum_basetype field to MonoClass.
11704         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
11705         to get index in the constant table reated to a field, param or
11706         property.
11707         * reflection.h, reflection.c: handle constructors. Set public-key and
11708         version number of the built assembly to 0.
11709         * row-indexes.h: update from new ECMA spec.
11711 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11713         * class.h, class.c: add a max_interface_id to MonoClass.
11714         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
11715         since it's used to do that. Added mono_type_type_from_obj().
11716         Make GetType() return NULL instead of segfaulting if the type was not
11717         found. Handle simple arrays in assQualifiedName.
11718         * object.h: add a struct to represent an Exception.
11719         * reflection.c: output call convention in method signature.
11720         Add code to support P/Invoke methods and fixed offsets for fields.
11722 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
11724         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
11725         the value.
11726         * icall.c: use mono_array_addr instead of array->vector: fixes the
11727         reflection image writing.
11728         * reflection.c: init call convention byte to 0 in method signature.
11729         Encode the property signature. Don't output property-related methods
11730         twice. Really process the properties for a type (don't cast a field to
11731         a property, my mom always told me that).
11732         Fix 64 bit issues in pointer alignment in a different and more
11733         readable way.
11735 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
11737         * loader.h: Removed type class from MonoDefaults, added monotype
11739         * loader.c: Loaded MonoType, removed loading of Type
11741         * icall.c (my_mono_new_object): Now returns a System.MonoType,
11742         and fills in System.Type._impl with a RuntimeTypeHandle rather
11743         than the actual MonoClass *
11745         (ves_icall_type_from_handle): change from type_class to
11746         monotype_class
11748         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
11749         implemented
11751         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
11752         implemented
11754         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
11756         (ves_icall_System_Reflection_Assembly_GetType): implemented
11758         (ves_icall_System_MonoType_assQualifiedName): implemented
11760         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
11762 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
11764         * assembly.c (mono_assembly_open): Implement a cache for the
11765         assemblies. 
11767         (mono_assembly_close): only destroy the assembly when the last
11768         reference is gone.
11769         
11770 2001-11-09  Dick Porter  <dick@ximian.com>
11772         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
11774 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
11776         * class.c (mono_class_metadata_init): bug fix: compute the right slot
11778 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11780         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
11781         from Martin Weindel.
11782         * object.h: add mono_string_chars ().
11784 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
11786         * reflection.c (build_compressed_metadata): Eliminates warnings
11787         and uses 64-bit clean code.
11789         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
11790         (mono_type_equal): Change signature to eliminate warnings.
11792 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11794         * icall.c, loader.c: remove the internalcall array constructors.
11795         Changes to match the new MonoArray structure.
11796         * object.h, object.c: an array object doesn't allocate an extra
11797         vector. Add mono_array_new_full () to create jagged arrays easily.
11799 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11801         * metadata.h, metadata.c: add mono_metadata_field_info () to
11802         retreive all the info about a field from vairous tables.
11803         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
11804         * class.h, class.c: augment MonoClassField with more info.
11805         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
11806         policy and load a field's RVA if needed.
11808 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
11810         * class.c (mono_class_metadata_init): create a trampoline for all
11811         virtual functions instead of actually compiling them.
11813 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
11815         * class.h, class.c: include name in MonoClassField.
11816         * class.c: fix fundamental type of System.Object and System.String.
11817         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
11818         tokens in ldtoken.
11819         * icall.c: remove internalcalls for the Reflection stuff that is now
11820         done in C# code.
11821         * loader.c: mono_field_from_memberref () implementation.
11822         * mono-endian.c: thinko (s/struct/union/g).
11823         * object.c, object.h: make the mono_string_* prototypes actually use
11824         MonoString instead of MonoObject.
11825         * reflection.c, reflection.h: updates for changes in the reflection
11826         code in corlib: we use C structures that map to the actual C# classes.
11827         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
11828         fat method header if needed and use the info from the ILGenerator for
11829         methods. Handle fields in types. Misc fixes.
11831 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
11833         * class.c (mono_class_metadata_init): bug fix: always allocate
11834         space for static class data
11836 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
11838         * class.c (mono_compute_relative_numbering): use relative
11839         numbering to support fast runtime type checks.
11841 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
11843         * class.c (mono_class_create_from_typeref): added debugging output
11844         to print class name when MonoDummy is returned instead of real class
11846 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
11848         * class.c (mono_class_metadata_init): interface offset table now
11849         contains pointers into the vtable - this is more efficient for the jit
11851 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
11853         * class.c (mono_class_metadata_init): use a temporary vtable (the
11854         old algorithm only worked for the interpreter, but not for the jit)
11856 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
11858         * loader.c (method_from_memberref): use mono_class_get to get the
11859         class of an array instead of using System.Array directly.
11860         (mono_get_method): also add MEMBERREF methods to the method cache
11861         which usefull for arrays.
11863 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
11865         * pedump.c (arch_compile_method): added to compute vtable entry
11867         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
11868         number of interfaces.
11869         
11870         * class.h: merged MonoArrayClass into MonoClass
11872         * class.c (mono_class_create_from_typedef): compute the vtable size and
11873         allocate space to include the vtable inside MonoClass
11874         (mono_class_metadata_init): initialize the vtable
11876 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
11878         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
11879         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
11880         * image.c: endian fixes by Laurent Rioux.
11881         * object.h, object.c: rename MonoStringObject to MonoString and
11882         MonoArrayObject to MonoArray. Change some function names to conform to
11883         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
11884         guint16* as first argument, so don't use char*.
11885         Provide macros to do the interesting things on arrays in a portable way.
11886         * threads-pthread.c: updates for the API changes and #include <sched.h>
11887         (required for sched_yield()).
11888         * icall.c: updates for the API changes above.
11889         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
11890         platforms that need them.
11892 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11894         * class.c: set the correct type for all the fundamental
11895         type when loading the class.
11897 2001-10-05  Dick Porter  <dick@ximian.com>
11899         * threads-pthread.c (pthread_mutex_timedlock): Simple
11900         compatibility version for C libraries that lack this call.
11902 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11904         * class.c: MonoTypes stored in MonoClass are stored as
11905         fundamental MonoTypes when the class represents a
11906         fundamental type (System.Int32, ...).
11907         The TypeHandle return by ldtoken is a MonoType*.
11908         * icall.c: ves_icall_get_data_chunk () write out all the
11909         PE/COFF stuff. Implement ves_icall_define_method (),
11910         ves_icall_set_method_body (), ves_icall_type_from_handle ().
11911         * image.c: properly skip unknown streams.
11912         * loader.h, loader.c: add type_class to mono_defaults.
11913         * metadata.c, metadata.h: export compute_size () as
11914         mono_metadata_compute_size () with a better interface.
11915         Typo and C&P fixes.
11916         * pedump.c: don't try to print the entry point RVA if there is no entry point.
11917         * reflection.c, reflection.h: many cleanups, fixes, output method
11918         signatures and headers, typedef and typeref info, compress the metadata
11919         tables, output all the heap streams, cli header etc.
11920         * row-indexes.h: typo fixes.
11922 2001-10-04  Dick Porter  <dick@ximian.com>
11924         * object.h: Add a synchronisation mutex struct to MonoObject
11926         * object.c (mono_new_object): Initialise the object
11927         synchronisation mutexes
11929         * icall.c: System.Threading.Monitor internal calls
11930         
11931         * threads-pthread.h:
11932         * threads-pthread.c: System.Threading.Monitor internal calls
11934         * threads-types.h: New file, includes the system-specific thread
11935         structures
11936         
11937         * threads-pthread-types.h:
11938         * threads-pthread-types.c: New files, handle pthread-specific
11939         synchronisation types
11941         * threads-dummy-types.h: 
11942         * threads-dummy-types.c: New files of dummy support for
11943         thread-specific types
11945         * metadata.c:
11946         * image.c:
11947         * pedump.c: include mono-endian.h not endian.h
11948         
11949         * Makefile.am: More threads files.
11950         Name mono-endian.h not endian.h
11952 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
11954         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
11955         stuff and implement a few more bits.
11956         * icall.c: a field needs to be dereferenced twice. Do not use the same
11957         name for two variables in the same scope.
11958         * image.c, image.h: cleanups.
11960 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
11962         * class.c (mono_class_metadata_init): bug fix: compute the right size
11964 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
11966         * icall.c: implemented some of the Reflection internalcalls.
11967         * image.c, image.h: start writing out the PE/COFF image.
11968         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
11969         that does the reverse than decode_blob_size ().
11970         * object.c: use mono_metadata_encode_value (). Move here
11971         temporary implementation of mono_string_to_utf8 ().
11972         * rawbuffer.c: make malloc_map static.
11974 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11976         * metadata.c: fix type comparison for arrays.
11977         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
11978         Added a couple of new classes to monodefaults.
11979         * icall.c: added a couple of Reflection-related internalcalls.
11980         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
11981         Added a byval_arg MonoType to MonoClass.
11983 2001-09-28  Dick Porter  <dick@ximian.com>
11985         * icall.c:
11986         * threads-pthread.h: 
11987         * threads-pthread.c: Implemented internal calls for
11988         LocalDataStoreSlot operations.  Applied mutexes around all shared
11989         data.  Reworked the thread creation and Start() operations to
11990         avoid a race condition.
11991         
11992         * threads-dummy.h:
11993         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
11995 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
11997         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
11999 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
12001         * class.c, loader.c: warn and return NULL instead of erroring out.
12002         * icall.c: added System.AppDomain::getCurDomain().
12003         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
12005 2001-09-25  Dick Porter  <dick@ximian.com>
12007         * threads-pthread.h:
12008         * threads-pthread.c: Implemented timed thread joining and added
12009         System.Threading.Thread::Join_internal internal call
12011         * icall.c: Added System.Threading.Thread::Join_internal internal call
12013         * threads-dummy.h:
12014         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
12016 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
12018         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
12019         mono_string_intern () to implement the semantics of the ldstr opcode
12020         and the interning of System.Strings.
12021         * icall.c: provide hooks to make String::IsIntern and String::Intern
12022         internalcalls.
12024 2001-09-23  Dick Porter  <dick@ximian.com>
12026         * threads-dummy.c: 
12027         * threads-dummy.h: New files of dummy threading routines
12029         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
12030         support code based on system specifics
12032         Rename PTHREAD_LIBS to THREAD_LIBS
12033         
12034 2001-09-23  Dick Porter  <dick@ximian.com>
12036         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
12037         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
12038         internal calls.
12039         (mono_thread_init): Set up a Thread object instance to return when
12040         the main thread calls Thread.CurrentThread
12041         (mono_thread_cleanup): Wait for all subthreads to exit
12043         * icall.c: New internal calls for System.Threading.Thread::Sleep
12044         (including Schedule) and CurrentThread
12046         * threads.h: New file, to insulate thread-specific stuff from the
12047         rest of the code
12049 2001-09-21  Dick Porter  <dick@ximian.com>
12051         * threads-pthread.h: 
12052         * threads-pthread.c: New file, for handling pthreads-style
12053         threading support.  Start() now starts a new thread and executes
12054         the ThreadStart delegate instance.
12056         * icall.c: Added the internalcall for
12057         System.Threading.Thread::Start_internal
12059         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
12061 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
12063         * loader.c: work around the different signatures for delegates
12064         constructors csc generates in compiled code vs the ones compiled in mscorlib.
12066 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12068         * class.h, class.c: add mono_class_get_field_from_name ().
12069         * *: Fix C comments and other ANSI C issues.
12071 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
12073         * endian.h, assembly.c: fix some endianness issues.
12075 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
12077         * loader.h, load.c: add delegate_class to mono_defaults.
12078         Handle runtime provided methods in mono_get_method ().
12080 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
12082         * loader.c (mono_get_method): use pinvoke for internal call
12084         * icall.c: use pinvoke for internal call
12086         * loader.c (method_from_memberref): set the method name
12088 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
12090         * metadata.c: help the compiler generate better code for
12091         mono_class_from_mono_type ().
12093 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
12095         * class.c (mono_class_metadata_init): delayed computing of the
12096         class size to mono_class_metadata_init ()
12098 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
12100         * class.c, class.h: add an interfaces member to MonoClass.
12101         * image.c, image.h: add assembly_name field to MonoImage
12102         from the assembly table.
12103         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
12105 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12107         * class.c: Handle Array in mono_class_from_mono_type ().
12108         * metadata.c, pedump.c: some endian fixes.
12110 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12112         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
12113         * metadata.c: fix small problem introduced with the latest commit.
12115 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
12117         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
12118         We don't need a MonoMetadata pointer anymore to compare signatures in
12119         mono_metadata_signature_equal (), update callers.
12120         Reduced memory usage an number of allocations for MonoMethodHeader and
12121         MonoMethodSignature.
12123 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
12125         * metadata.c: added compare for szarray.
12127 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
12129         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
12130         and add a couple more types to it and mono_defaults. Give an hint on
12131         classes that need implementing in our corlib and are referenced
12132         in mscorlib.
12134 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
12136         * class.h, class.c: keep track if a class is also an Enum.
12137         * loader.c: Implement a couple more types for use in libffi
12138         marshalling. Gives better diagnostics when failing to dlopen
12139         a library. Set method->klass for P/Invoke methods, too.
12141 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
12143         * class.c, class.h: add a MonoType this_arg to MonoClass that
12144         represents a pointer to an object of the class' type that
12145         can be used by the interpreter and later the type cache.
12146         Add best guess alignment info for valuetype objects.
12148 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
12150         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
12151         into MonoType: one less level of indirection and allocation and
12152         simplifies quite a bit of code. Added cache for MonoTypes that are
12153         used frequently, so that we don't need to allocate them all the time.
12155 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
12157         * class.c (mono_class_create_from_typedef): System.Enum is also a
12158         value type, although it does not derive from System.ValueType
12159         (maybe a bug in the ms compiler?)
12161         * metadata.c (mono_type_size): return the right size for value types
12163         * loader.c (mono_get_method): only initialize method header if not abstract
12165         * class.c (mono_class_from_mono_type): use mono_default values. 
12167 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
12169         * *: use MonoClass pointers instead of <type_tokens>
12170         
12171         * class.h: new flag: metadata_inited.
12173         * class.c (mono_class_metadata_init): impl.
12174         (mono_class_instance_size): impl.
12175         (mono_class_data_size): impl.
12177 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12179         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
12180         MonoClass now has the name and name_space fields. 
12181         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
12182         mono_get_method () takes and optional MonoClass as argument.
12183         Removed mono_typedef_from_name() and added mono_class_token_from_name()
12184         instead that takes advantage of a map from class names to typedef
12185         tokens in MonoImage.
12187 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
12189         * metadata.c: zero is not a valid alignment boundary.
12190         Merge MONO_TYPE_VOID in default decoding code.
12192 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
12194         * image.h: merged MonoMetadata into MonoImage
12196         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
12197         identify the type of elements.
12199 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
12201         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
12202         * cil-coff.h: split MonoMSDOSHeader and add size info.
12203         * image.c: add some consistency checks.
12204         * metadata.c: fix row size computation: one programmer
12205         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
12206         add explanation for the locator routine.
12207         Fix decoding of size in method header.
12208         
12209 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
12211         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
12212         (g_concat_dir_and_file): Bring g_concat_dir_and_file
12213         function from gnome-libs.  This uses the right path separator
12214         based on the OS, and also works around a bug in some systems where
12215         a double slash is not allowed. 
12216         (default_assembly_name_resolver): Use g_concat_dir_and_file
12217         (mono_assembly_open): ditto.
12219 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
12221         * metadata.c (mono_metadata_signature_equal): impl.
12223         * *: void is now a realy MonoType (instead of using NULL)
12224         
12225         * metadata.c (do_mono_metadata_parse_type): use
12226         mono_metadata_parse_type to parse void value.
12228 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
12230         * metadata.c, metadata.h: in the signature and method header store
12231         only the space required for holding the loca vars and incoming arguments.
12233 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
12235         * metadata.c (do_mono_metadata_parse_type): treat void like any
12236         other type (instead of assigning NULL);
12238 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
12240         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
12242 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
12244         * image.c (do_mono_image_open): added a cache for arrays.
12246 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12248         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
12249         decode a single column from a row in a metadata table and changes
12250         to take advantage of it in the typedef locator (gives a nice speed up).
12251         Store offset info for function params.
12253 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
12255         * image.h (MONO_IMAGE_IS_CORLIB): removed 
12257 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
12259         * assembly.c: how could mono_assembly_close () had ever worked?
12260         * metadata.c, metadata.h: provide offset info for local vars.
12261         Implement mono_type_size () to take care of alignment as well
12262         as size (it was mono_field_type_size in cli/class.c before).
12264 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
12266         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
12268         * assembly.h (CORLIB_NAME): set to corlib.dll
12270         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
12272 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12274         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
12275         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
12276         tokentype.h: massive namespace cleanup.
12278 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12280         * metadata.h, metadata.c: decode exception clauses when parsing method header.
12282 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
12284         * metadata.c (mono_metadata_free_type): added check for type !=
12285         NULL (void) before calling mono_metadata_free_type()
12287 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
12289         * metadata.h, row_indexes.h: added header with enumerations to use
12290         to index in the columns from tables in metadata and to decode coded
12291         tokens: we should start using this instead of embedding magic numbers
12292         all over the code.
12294 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
12296         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
12297         Move metadata_t info from cli_image_info_t to MonoImage, where
12298         it's easily accessible. Changed all the uses accordingly.
12299         Added the method and class caches to MonoImage.
12300         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
12301         and mono_metadata_decode_value () signature to be more consistent
12302         with the other parse functions (and simplify code). Taken advantage
12303         of zero-length array allocation with GCC. Removed reduntant (and
12304         wrong) MonoFieldType struct and use MonoParam instead. Changed
12305         mono_metadata_parse_field_type () to use common code for parsing.
12306         Added mono_metadata_typedef_from_field () and
12307         mono_metadata_typedef_from_method () to lookup a typedef index from a
12308         field or method token.
12309         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
12311 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
12313         * metadata.c (mono_metadata_parse_field_type): Implement. 
12314         (do_mono_metadata_parse_type): Split engine from
12315         mono_metadata_parse_type, so that we can create smaller structures
12316         for things that just have one pointer to the MonoType (look at
12317         the MonoFieldType)
12319 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
12321         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
12322         as Jan Gray found out, it is incorrect. 
12324 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
12326         * assembly.c: Implement asssembly loading.  This loads an image
12327         and loads all the referenced assemblies.  Come to think of it, we
12328         could always do lazy loading of the assemblies. 
12330         * image.c (mono_image_open): Keep loaded images in a hashtable.
12332         * image.h (MonoImage): Add reference count.
12334 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
12336         * assembly.c (mono_assembly_open): Keep track of the file name in
12337         case the assembly has no ASSEMBLY table.
12339         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
12340         from get.c here.
12342 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
12344         * metadata.c, metadata.h: decode local vars in method header
12345         parse function. Change callers accordingly.
12347 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
12349         * metadata.h, cil-coff.h: protect against multiple inclusion.
12350         Added some new structures to hold information decoded from metadata:
12351         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
12352         and relevant decoding/free functions.
12353         * metadata.c: implement decoding functions. Add warning for out of bounds
12354         index in mono_metadata_locate(). Implement mono_get_method () to retreive
12355         all the info about a method signature and invocation. Remove check on
12356         uninitialized local var in parse_mh() and fix memory leak.
12358 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
12360         * metadata.h: More macros.
12362         * tokentype.h: New file.
12364 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
12366         * assembly.c: added a consistency check and initialize
12367         some structures with g_new0().
12368         * metadata.c: fixed a couple more bugs in table size computation
12369         and add other checks for out-of bound access to metadata.
12371 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
12373         * metatada.c: fix bugs computing table sizes. Spew a
12374         warning when index in string heap is out of bounds.
12376 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
12378         * metadata.h: Add a couple of macros to manipulate tokens. 
12380 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12382         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
12383         cli_section_tables).
12385 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
12387         * metadata.c (mono_metadata_user_string): New function, provides
12388         access to the UserString heap. 
12390 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
12392         * metadata.c: Add inline documentation.
12394 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
12396         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
12397         files. 
12399 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
12401         * typeattr.h: New file, TypeAttribute flags. 
12403 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
12405         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
12406         mono_assembly_ensure_section): Section loading code.
12407         (load_section_tables): Load the sections.
12409         * mono/metadata/metadata.c (mono_metadata_locate_token,
12410         mono_metadata_locate): Functions to locate the information
12411         definition given a token or a table and an index.
12412         (mono_metadata_compute_table_bases): New.
12413         (compute_size): New function to compute the sizes of the various
12414         tables.
12416         * mono/metadata/metadata.h: Finish listing the different index
12417         types. 
12419         * mono/metadata/pedump.c: Improve to dump new information.
12421 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
12423         * mono/metadata/metadata.c: Entered all the tables matching
12424         Beta2. 
12426         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2