2004-11-04 Ben Maurer <bmaurer@ximian.com>
[mono-project.git] / mono / metadata / ChangeLog
blob7efaf8fd4063c30b3f08905de2624a4cb8ddf233
1 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
3         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
5         * image.c (mono_image_close): free image->guid here.
7 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9         * reflection.c: Fix some spec conformance issues with the PE file
10         structures so mcs compiled apps run on the Net 2.0 beta.
12 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
14         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
15         Implement this. Fixes #67264.
17         * debug-helpers.h debug-helpers.c marshal.c: Move 
18         mono_find_method_by_name to debug-helpers.c.
20 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22         * object.c (mono_release_type_locks): type_initialization_hash is
23         a GHashTable.
25         * reflection.c object.c object-internals.h: Fix warnings.
27         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
28         without accessors. Fixes #61561.
30         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
31         application base from the root domain if not set. Fixes #65641.
32         (mono_runtime_init): Fix warning.
34 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
36         * appdomain.c: call mono_thread_pool_init.
37         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
38         of worker threads based on the number of CPUs and the environment
39         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
40         for non-windows (windows) systems.
42 2004-10-27  Chris Toshok  <toshok@ximian.com>
44         * mono-debug-debugger.c (write_class): don't call mono_class_init
45         here, as even with the check for (!klass->init_pending), we get
46         into a situation where we're hitting cycles in class
47         initialization.  Fixes #68816.
49 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
51         * image.c: Avoid overwriting values in the loaded_images_hash when an
52         assembly is loaded multiple times. Fixes #61152.
54         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
55         so multiple satellite assemblies for the same name can be loaded.
56         Fixes #68259.
58         * mono_domain_assembly_preload: Actually return the loaded assembly, 
59         not NULL.
61         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
62         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
64         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
65         pending finalizers are not invoked after the appdomain has been 
66         unloaded. Fixes #67862.
68 2004-10-22  Martin Baulig  <martin@ximian.com>
70         * mono-debug-debugger.c
71         (mono_debugger_runtime_invoke): Don't box valuetypes.
73 2004-10-22  Chris Toshok  <toshok@ximian.com>
75         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
76         don't hide private methods.
78 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
80         * icall.c: Allows the runtime to "share" (when known) the public key
81         token of an assembly. This avoid the need to recalculate the token 
82         (from the public key) in managed code.
84 2004-10-21  Chris Toshok  <toshok@ximian.com>
86         * debug-helpers.c (append_class_name): argh, revert last patch.
87         
88 2004-10-21  Chris Toshok  <toshok@ximian.com>
90         * debug-helpers.c (append_class_name): use '+' as the delimiter,
91         not '/', so that it matches what the debugger uses to look up
92         methods.
94 2004-10-21  Martin Baulig  <martin@ximian.com>
96         * mono-debug-debugger.c (mono_debugger_throw_exception): New
97         public method; this is called each time an exception is thrown and
98         allows the debugger to use exception catch points.
100 2004-10-21  Martin Baulig  <martin@ximian.com>
102         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
103         the stack pointer and the exception object in some struct and pass
104         that to the debugger.
106 2004-10-21  Chris Toshok  <toshok@ximian.com>
108         * mono-debug-debugger.c (do_write_class): add instance/static
109         event support.  We don't expose "raise" or "other" yet.
110         (event_is_static): new method.
112 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
114         * mono-debug-debugger.c
115         (mono_debugger_handle_exception): Remove
116         bogus return value for fussy compilers.
118 2004-10-20  Martin Baulig  <martin@ximian.com>
120         * mono-debug-debugger.c
121         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
122         (mono_debugger_handled_exception): Likewise.
124 2004-10-20  Martin Baulig  <martin@ximian.com>
126         * mono-debug-debugger.h (MonoDebuggerEvent): Added
127         MONO_DEBUGGER_EVENT_EXCEPTION.
129         * mono-debug-debugger.c (mono_debugger_handle_exception): New
130         public function to send the debugger a notification for an
131         exception and inform it about a catch/finally clause.
133 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
135         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
136         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
137         fix 2.95 build. 
139         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
141 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
143         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
144         marshalled as [In,Out]. Fixes #58325.
146 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
148         * reflection.c (mono_method_body_get_object): Implement some fields.
150 2004-10-12  Martin Baulig  <martin@ximian.com>
152         * reflection.c (mono_reflection_bind_generic_parameters): Small
153         fix, correctly retrieve our parent from a generic instance.
155 2004-10-12  Martin Baulig  <martin@ximian.com>
157         * metadata.c (mono_metadata_generic_param_equal): We always have
158         an owner.
160         * class.c
161         (mono_class_from_generic_parameter): We need to have an owner.
162         (my_mono_class_from_generic_parameter): Likewise.
164         * reflection.c (mono_reflection_setup_generic_class): Renamed to
165         mono_reflection_create_generic_class() and added a new
166         mono_reflection_setup_generic_class().  
167         (mono_reflection_initialize_generic_param): If we're a nested
168         generic type and inherited from the containing class, set our
169         owner to the outer class.
171 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
173         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
175         * reflection.c (mono_method_body_get_object): New function to create
176         a MethodBody object.
178         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
180 2004-10-11  Martin Baulig  <martin@ximian.com>
182         * metadata.c (_mono_metadata_type_equal): Renamed to
183         do_mono_metadata_type_equal() and made static.
185 2004-10-11  Martin Baulig  <martin@ximian.com>
187         * appdomain.c: Bump corlib version number to 28.
189 2004-10-10  Martin Baulig  <martin@ximian.com>
191         * class-internals.h
192         (MonoGenericInst): Added `MonoGenericContainer *container'.
193         (MonoGenericMethod): Likewise.
194         (MonoGenericContext): Likewise.
195         (MonoGenericParam): Added `MonoGenericContainer *owner'.
197         * metadata.c
198         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
199         (do_mono_metadata_parse_generic_inst): Likewise.
200         (mono_metadata_parse_type_full): New public method.  This is the actual
201         mono_metadata_parse_type() implementation - with an additional
202         `MonoGenericContainer *' argument.
203         (mono_metadata_parse_array_full): Likewise.
204         (mono_metadata_parse_signature_full): Likewise.
205         (mono_metadata_parse_method_signature_full): Likewise.
206         (mono_metadata_parse_mh_full): Likewise.
207         (mono_type_create_from_typespec): Likewise.
208         (mono_metadata_interfaces_from_typedef_full): New public method;
209         this is similar to the other _full() methods, but we take a
210         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
211         (mono_metadata_parse_generic_param): Take an additional
212         `MonoGenericContainer *' argument and lookup the MonoGenericParam
213         from that container.
214         (mono_metadata_generic_param_equal): New static method to compare
215         two type parameters.
216         (_mono_metadata_type_equal): New static method; takes an
217         additional `gboolean signature_only' argument - if true, we don't
218         compare the owners of generic parameters.
219         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
220         with a TRUE argument - do a signature-only comparision.
222         * loader.c: Use the new _full() methods and pass the
223         MonoGenericContainer to them.
225         * object-internals.h (MonoReflectionTypeBuilder): Added
226         `MonoGenericContainer *generic_container' field.
227         (MonoReflectionMethodBuilder): Likewise.
229 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
231         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
232         case initial images of dynamic assemblies.
234         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
236         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
238         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
239         length of event->other array.
240         (typebuilder_setup_events): Ditto.
242         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
243         'assembly_by_name' and add an 'assemblies' list.
245         * assembly.h assembly.c: Add a new search hook for determining whenever
246         an assembly is already loaded. Use this instead of searching in the
247         loaded_assemblies list.
249         * domain.c appdomain.c: Implement the new search hook so loaded 
250         assemblies are now scoped by appdomain. Fixes #67727.
252 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
254         * threads.c (mono_thread_attach): Initialize synch_lock field so
255         mono_thread_detach works again.
257         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
258         'lib' too. Fixes #63130.
260 2004-10-06  Jackson Harper  <jackson@ximian.com>
262         * culture-info-tables.h: regenerated.
264 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
266         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
267         implemented by other interfaces in the result. Fixes #65764.
268         
269         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
270         Handle unloadable modules without crashing.
272         * image.c (load_modules): Revert the previous patch since modules must
273         have a fixed index inside the array.
274         
275         * image.c (load_modules): Don't include native modules in the modules
276         array.
278 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
280         * reflection.h: Add param_defaults field.
282         * reflection.c: Add support for parameter defaults in dynamic methods.
283         Fixes #64595.
285         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
286         an empty string when a type has no namespace. Fixes #64230.
288 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
290         * tabledefs.h: Added "internal" security actions to support non-CAS
291         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
292         Note: they do not seems to be used anymore in 2.0 (new metadata format)
294 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
296         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
297         constructor of abstract class. Fixes #61689.
299 2004-10-04  Martin Baulig  <martin@ximian.com>
301         * class-internals.h (MonoGenericContainer): New type.
302         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
303         `MonoGenericContainer *generic_container'.
304         (MonoClass): Replaced `gen_params' and `num_gen_params' with
305         `MonoGenericContainer *generic_container'.
307         * metadata.c (mono_metadata_load_generic_params): Return a
308         `MonoGenericContainer *' instead of a `MonoGenericParam *';
309         removed the `num' argument.
311 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
313         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
314         for dynamic images.
316         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
317         machine fields.
319         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
321         * reflection.c: Save pe_kind and machine values into the generated
322         image file.
324         * appdomain.c: Bump corlib version number.
326         * object-internals.h: Reorganize layout of LocalBuilder.
328         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
329         New helper function.
331         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
332         created MonoType for dynamic types. Fixes #66180.
334 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
336         * threadpool.c: the ares hashtable needs a critical section around it.
337         this prevents some nasty segfaults
339 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
341         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
342         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
343         bug 67324).
344         
345 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
347         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
348         
349 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
351         * image.c: Always canonicalize image file names, to avoid loading
352         the same assembly twice when referenced using a relative path.
354 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
356         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
358         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
360         * marshal.c: Fix warnings.
362 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
364         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
365         attempting to marshal the delegate_trampoline as the method_addr.
366         This patch has a static hashtable of marshalled delegates so that 
367         we can map delegate_trampoline addresses back to delegates.  This
368         allows a delegate passed to managed code to be passed back into native
369         code.  Fixes #67039
371 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
373         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
375         * reflection.c (method_encode_code): Align method headers properly.
376         Fixes #66025.
378 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
380         * marshal.c: In the runtime invoke wrapper, reset the abort
381         exception if it is cached. This avoids the automatic rethrowal of 
382         the exception after the catch of the wrapper. Also check for pending
383         interruptions before calling the managed method. This is done using
384         the new method emit_thread_force_interrupt_checkpoint, since the
385         normal checkpoint method is ignored when running the invoke wrapper.
386         * object.c: If the abort exception is rethrown, set the abort_exc
387         field of the thread, so it will be rethrown aftere every catch.
388         * threadpool.c: Only run an interruption checkpoint if what has been
389         requested is a stop of the thread (aborts will be ignored).
390         * threads.c: By default, a thread will now never be interrumped while
391         running the runtime invoke wrapper (this ensures that runtime_invoke
392         will always return to the caller if an exception pointer is provided).
393         There is a new special method mono_thread_force_interruption_checkpoint()
394         to force an interruption checkpoint even if running a protected
395         wrapper, which is used by the same runtime invoke wrapper to do a check
396         at a safe point.
398 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
400         * object.c, object-internals.h: Implemented mono_release_type_locks,
401         which releases the cctor locks held by a thread.
402         * threads.c, threads.h: In thread_cleanup, release cctor locks held
403         by a thread. Added mono_thread_exit() method to be used to safely stop
404         a thread.
406 2004-09-28  Raja R Harinath  <rharinath@novell.com>
408         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
409         Move null check before dereference.  Avoid indexing beyond the end
410         of the 'modules' array.
412 2004-09-28  Raja R Harinath  <rharinath@novell.com>
414         * metadata-internals.h (MonoImage): Add module_count field.
415         * image.c (load_modules): Set image->module_count.
416         (mono_image_load_file_for_image): Use image->module_count.
417         * reflection.c (mono_image_load_module): Append to image->modules array 
418         of dynamic assembly.
419         (mono_module_get_object): Fix loop to actually increment index.
420         Use image->module_count.
421         * assembly.c (mono_assembly_load_references): Use image->module_count.
422         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
423         Likewise.
425 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
427         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
428         Avoid assert on generic types.
430 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
432         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
434         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
436         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
437         function to convert a MarshalSpec structure to its managed counterpart.
439         * reflection.c: Fix warnings.
440         
441         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
442         field.
444         * icall.c (mono_create_icall_signature): Fix build.
446 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
448         * icall.c: Add MakePointType icall.
450         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
451         warnings.
453 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
455         * threadpool.c: reuse allocated slots in the queue.
457 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
459         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
461         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
463         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
464         previous change.
466         * tabledefs.h: Add constants for pinvoke attributes BestFit and
467         ThrowOnUnmappableChar.
469         * icall.c (ves_icall_Type_GetPacking): New icall.
471 2004-09-24  Martin Baulig  <martin@ximian.com>
473         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
475 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
477         * appdomain.c:
478         (mono_domain_set): allow setting a domain that is being unloaded.
479         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
480         being unloaded.
482 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
484         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
485         the GetCustomAttributes icall.
487 2004-09-23  Martin Baulig  <martin@ximian.com>
489         * object-internals.h (MonoReflectionGenericParam): Replaced
490         'has_ctor_constraint', `has_reference_type' and `has_value_type'
491         with `guint32 attrs'.
493 2004-09-23  Martin Baulig  <martin@ximian.com>
495         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
497 2004-09-23  Martin Baulig  <martin@ximian.com>
499         * object-internals.h (GenericParameterAttributes): New enum.
501 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
503         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
504         
505         * class.c (init_events): Fill out event->other field.
507         * class.c: Fix warnings.
509         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
511 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
513         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
514         walk which doesn't supply the IL offset.
516 2004-09-22  Martin Baulig  <martin@ximian.com>
518         * reflection.c (mono_reflection_setup_internal_class): If we're
519         System.ValueType, System.Object or System.Enum, set
520         `klass->instance_size' and create the vtable.
521         (mono_reflection_create_internal_class): If we're an enum type,
522         get the base class from our current corlib.
524 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
526         * reflection.h (MonoResolveTokenError): New type.
528         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
529         icall.
531         * icall.c: Add an 'error' argument to the ResolveToken icalls.
533 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
535         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
536         Support also calling constructors, but only for already allocated objects.
538 2004-09-17  Geoff Norton <gnorton@customerdna.com>
540         * reflection.c (type_get_qualified_name): If the klass is null
541         return the typename to avoid a NullRefEx.
542         (encode_cattr_value): Get the qualified name of the boxed type,
543         not the underlying enumtype.  Fixes #62984.
545 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
547         * marshal.c: Fix problems with previous checkin.
549 2004-09-21    <vargaz@freemail.hu>
551         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
552         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
554         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
556 2004-09-21  Geoff Norton <gnorton@customerdna.com>
558         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
559         should only return a type for pointers, arrays, and passbyref types.
560         Fixes bug #63841.
562 2004-09-21  Martin Baulig  <martin@ximian.com>
564         * domain.c (mono_debugger_check_runtime_version): New public
565         function.
567         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
569 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
571         * reflection.c: Added missing sort to the declarative security 
572         attributes table. MS implementation stops seeing the attributes if the
573         token number regress in the table (as shown by ildasm and permview).
575 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
577         * object-internals.h (MonoReflectionModule): Add 'token' field.
578         
579         * reflection.c (mono_reflection_get_token): Add support for Module
580         and Assembly.
581         (mono_module_get_object): Set 'token' field.
582         (mono_module_file_get_object): Set 'token' field.
584         * icall.c: Add new Assembly and Module icalls.
586         * appdomain.c: Bump corlib version.
588 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
590         * loader.h loader.c class.h class.c: Add helper functions for obtaining
591         tokens of metadata objects.
593         * reflection.h reflection.c (mono_reflection_get_token): New function
594         to obtain the token of a metadata object.
596         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
598 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
600         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
601         
602         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
604 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
606         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
607         * object-internals.h: Added 3 MonoArray* members to MonoReflection
608         AssemblyBuilder to access the permissions set in the class lib.
609         * reflection.c: Added security attributes encoding step in 
610         mono_image_build_metadata.
611         * tabledefs.h: Added new security actions defined in 2.0:
612         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
614 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
616         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
617         macro parameter.
619 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
621         * locales.c: nullify the ICU_collator member of CompareInfo when it is
622           finalized. There where random SIGSEVs at program termination, when
623           an object being finalized was trying to do a string comparison and
624           the current culture was already finalized.
626 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
628         * threads.c: call thread_cleanup before finishing the thread if we get
629         there.
631 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
633         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
634         assemblies from the parent. Fixes #65665.
636 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
638         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
639         modifiers.
641 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
643         * reflection.h: add prototype for mono_get_dbnull_object
644         * reflection.c: add prototypes for get_default_param_value_blobs 
645         and mono_get_object_from_blob for fussier compilers
647 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
649         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
650         false deadlock checks in class initialization.
652 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
654         * image.c (mono_image_addref): Fix comment.
656         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
657         possible.
659 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
661         * reflection.c (mono_param_get_objects): Modified to return
662         ParameterInfo.DefaultValue object.
664         (get_default_param_value_blobs):
665         (mono_get_object_from_blob):
666         (mono_get_dbnull_object): New helper routines. 
668         * object.c (mono_get_constant_value_from_blob): New helper routine
669         carved out from get_default_field_value ()
671         * object-internals.h (mono_get_constant_value_from_blob): Added
672         function declaration.
674 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
676         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
677         referenced assemblies. Fixes #62135.
679         * exception.h exception.c (mono_get_exception_file_not_found2): New
680         helper function.
682 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
684         * class.h class.c: Add mono_type_get_underlying_type ().
686 2004-09-09  Geoff Norton <gnorton@customerndna.com>
688         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
689         Fix GetTypes() to support dynamically created assemblies.
691 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
693         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
694         
695         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
696         previous patch.
698         * reflection.h reflection.c loader.c: Allow dynamic construction of
699         pinvoke methods. Fixes #65571.
700         
701         * reflection.c (mono_reflection_get_type): Revert previous change since
702         it causes regressions.
704 2004-09-08  Martin Baulig  <martin@ximian.com>
706         * class.c (class_compute_field_layout): Don't call
707         mono_class_layout_fields() for open generic instances.
709 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
710         * threads.c appdomain.c: fix typo in GC macro
712 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
714         * threads.c: don't call mono_thread_detach() in start_wrapper(),
715         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
717 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
719         * image.c (mono_image_close): Applied patch from 
720         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
721         assembly is loaded multiple times from data.
722         
723         * image.c (mono_image_open): Fix warning.
725 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
727         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
728         once. Fixes #58334.
729         
730         * reflection.c (mono_reflection_create_runtime_class): Initialize
731         klass->nested_classes. Fixes #61224.
733 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
735         * threads.c: sched_yield() on exit, to allow threads to quit.
737 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
739         * object.c (mono_unhandled_exception): Remove leftover debug code.
741 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
743         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
745 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
747         * marshal.c (emit_marshal_array): Really null terminate string arrays.
748         
749         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
751 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
753         * marshal.c (emit_marshal_array): Null terminate string arrays.
754         
755         * marshal.c (raise_auto_layout_exception): Fix warning.
757         * reflection.c (mono_param_get_objects): Initialize the default value
758         with DBNull.Value, not null. Fixes #62123.
760 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
762         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
763         throw an exception with a cute explanation.
765 2004-09-06  Dick Porter  <dick@ximian.com>
767         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
768         Close the new process's thread handle, as we don't use it.  The
769         handle stays around forever otherwise.
771 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
773         * object.c (arith_overflow): Fix warning.
775         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
776         calling conventions in method refs. Fixes #65352.
778         * reflection.c: Fix warnings.
780 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
782         * icall.c: Add a new icall for Array.Clear
784 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
786         * object.c: When allocating an array, we have to throw
787         an overflow exception if any of the lengths are < 0.
789 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
791         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
792         properly. Also move implementation of string array marshalling to 
793         managed code. Fixes #42316.
795 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
797         * assembly.c: provide more information when loading an assembly fails.
799 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
801         * filewatcher.c: don't expect the development fam package to be
802         installed.
804 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
806         * marshal.c: Make a copy of the signature cookie since it will be
807         freed by the caller.
808         
809         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
811         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
813         * metadata.c (mono_metadata_free_marshal_spec): New function to free
814         marshal specs.
816         * marshal.c: More refactoring.
817         
818         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
819         smaller functions.
821 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
823         * object.c: In mono_message_invoke, fill the output parameter array after
824           calling the managed method (it was done before the call). This fixes
825           bug #59299.
827 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
829         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
830         as well.
832 2004-09-02  Martin Baulig  <martin@ximian.com>
834         * class.c (mono_class_instance_size): Don't allow generic type
835         definitions or open generic instances.
836         (mono_class_array_element_size): If we're a value type, call
837         mono_class_instance_size() on the original class.
839         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
840         handle generic instances.
842         * mono-debug-debugger.c (write_type): Handle generic instances
843         like classes.
845 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
847         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
848         the allocation request fails. Fixes #65089.
850         * object.c (mono_runtime_free_method): Do not call mono_free_method.
851         
852         * object.c (mono_runtime_free_method): New function to free a dynamic
853         method.
855         * marshal.c (mono_delegate_free_ftnptr): New function to free the
856         delegate trampoline.
858         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
859         with hasthis as dynamic,
861         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
863         * domain.c (mono_jit_info_table_remove): New function to remove an
864         entry from the jit info table.
866         * class-internals.h (MonoMethod): Add 'dynamic' field.
868         * loader.c: Fix warnings.
870 2004-09-01  Martin Baulig  <martin@ximian.com>
872         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
873         instead of mono_debugger_lock() because the latter one is a no-op
874         unless running in the debugger.
876 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
878         * class.c (class_compute_field_layout): Classes with auto-layout or
879         reference fields are not blittable.
880         
881 2004-09-01  Dick Porter  <dick@ximian.com>
883         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
884         mono_image_get_filename() to get the assembly location.
886         * icall.c:
887         * metadata.h: Fix compile warnings
889 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
891         * class.c (class_compute_field_layout): System.Object is blittable.
893         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
894         as in/out. Fixes #59909.
896 2004-09-01  Martin Baulig  <martin@ximian.com>
898         * metadata.h (MONO_TYPE_ISREFERENCE): Call
899         mono_metadata_generic_inst_is_valuetype() if we're a generic
900         instance to check whether our underlying type is a reference type.
902 2004-09-01  Martin Baulig  <martin@ximian.com>
904         * metadata.c (mono_type_size): If we're a generic instance, call
905         mono_class_value_size() for value types.
907 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
909         * marshal.c: Implement more custom marshalling functionality. Fixes
910         #64915.
912 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
914         * mono-debug.c, debug-mono-symfile.c: add some locking love.
916 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
918         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
920         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
922         * icall.c: Fix some warnings.
924         * threads.c (abort_appdomain_thread): Fix unref errors.
925         (mono_thread_current): Fix THREAD_DEBUG define.
927 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
929         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
931         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
933 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
935         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
936         string arrays.
938 2004-08-28  Martin Baulig  <martin@ximian.com>
940         * metadata.c
941         (mono_metadata_generic_inst_is_valuetype): New public function.
943         * metadata.h (MONO_TYPE_ISSTRUCT): Call
944         mono_metadata_generic_inst_is_valuetype() if we're a generic
945         instance to check whether our underlying type is a valuetype.
947 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
949         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
950         #63768.
952 2004-08-25  Martin Baulig  <martin@ximian.com>
954         * loader.c (mono_get_method_from_token): Abstract methods can also
955         be generic and thus have type parameters.
957         * metadata-internals.h
958         (MonoDynamicImage): Added `GPtrArray *gen_params'.
960         * reflection.c (mono_image_get_generic_param_info): Don't create a
961         metadata row, just add an entry to the `gen_params' array.
962         (build_compressed_metadata): Sort the `gen_params' array and then
963         actually create the metadata.
965 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
967         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
969 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
971         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
973 2004-08-24  Martin Baulig  <martin@ximian.com>
975         * class.cs (mono_class_is_subclass_of): Like an interface, a
976         generic instance also derives from System.Object.
978 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
980         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
981         custom modifiers to be in any order. Fixes #61990.
983 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
985         * object.c: Register mono_object_new_fast icall.
986         
987         * object.c (mono_class_get_allocation_ftn): Return to calling
988         mono_object_new_fast, since it seems faster to compute the object 
989         size in unmanaged code than passing it as a parameter.
991         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
993         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
994         this function with Boehm as the oom handler, so we don't have to check
995         the result of GC_malloc.
997         * object.c: Remove checks for oom.
999         * object.h object.c (mono_class_get_allocation_ftn): New function to
1000         return the icall which can be used to allocate an instance of a given
1001         class. 
1003         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
1005         * class-internals.h: Add 'enabled' field.
1007 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
1009         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
1011 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
1012         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
1013         value 0x0010.
1015 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
1017         * appdomain.c: use the Tls function for appdomain too,
1018         at Zoltan's request. Actually return in mono_context_get
1020         * appdomain.c, profiler.c, threads.c: use __thread
1022 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
1024         * appdomain.c threads.c: Call GC_CreateThread on windows.
1026         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
1027         multiple libraries since this don't work on windows.
1029 2004-08-18  Martin Baulig  <martin@ximian.com>
1031         * class-internals.h
1032         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
1033         MonoMethodHeader.
1035         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
1036         MonoMethodNormal since we also need it for abstract and interface
1037         methods.
1039         * reflection.c
1040         (build_compressed_metadata): Sort the GenericParam table.
1041         (mono_image_create_token): Added `gboolean create_methodspec'
1042         argument; this is false when generating a MethodImpl token.
1043         (reflection_methodbuilder_to_mono_method): Abstract and interface
1044         methods may also have generic parameters.
1046 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
1048         * appdomain.c: thread local alloc
1050 2004-08-17  Martin Baulig  <martin@ximian.com>
1052         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
1054         * icall.c
1055         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
1056         argument.
1058         * class.c (mono_type_get_full_name): New public function.
1059         (mono_type_get_name): Don't include the type arguments.
1061 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
1063         * Makefile.am: Build static versions of libmetadata and libmonoruntime
1064         for inclusion into the mono executable.
1066 2004-08-16  Martin Baulig  <martin@ximian.com>
1068         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
1069         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
1071 2004-08-14  Martin Baulig  <martin@ximian.com>
1073         * class.c (dup_type): Also copy the `byref' field.
1075 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
1077         * reflection.c (create_dynamic_mono_image): Revert the last change 
1078         since it breaks bootstrap.
1080 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
1082         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
1084         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
1085         not free them with g_free.
1087 2004-08-11  Martin Baulig  <martin@ximian.com>
1089         * reflection.c (mono_reflection_setup_internal_class): Also call
1090         mono_class_setup_mono_type() if we already have a `tb->type.type'.
1092 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
1094         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
1095         called during default (first) AppDomain creation. Keep track of
1096         Evidence when loading assemblies.
1098 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1100         * opcodes.c, opcodes.h: reduce runtime relocations.
1102 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
1104         * culture-info.h, locales.c: fixes and chages to sue the new
1105         optimized format of the locale data.
1106         * culture-info-tables.h: regenerated.
1108 2004-08-06  Geoff Norton <gnorton@customerdna.com>
1109         
1110         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
1112 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
1114         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
1115         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
1116         * domain-internals.h: icall declaration.
1117         * icall.c: icall registration.
1118         * object-internals.h: New fields in MonoAssembly for CAS.
1120 2004-08-05  Duncan Mak  <duncan@ximian.com>
1122         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
1123         CEE_LDELEM_ANY.
1125 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1127         * reflection.c: fix to deal with object[] arrays in custom ctors
1128         (bug #62550).
1130 2004-08-05  Martin Baulig  <martin@ximian.com>
1132         * class.c (mono_class_array_element_size): Added support for
1133         generic instances and correctly handle "recursive" types.
1135 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
1137         * assembly.c: Fix warnings.
1139 2004-08-04  Martin Baulig  <martin@ximian.com>
1141         * class.c
1142         (mono_type_get_name_recurse): Added `gboolean include_arity'
1143         argument specifying whether or not we should include the generic
1144         arity in the type name.
1145         (_mono_type_get_name): New static function.
1146         (mono_class_setup_vtable): If we're a generic instance, don't
1147         include the generic arity in the names of explicit method
1148         implementations.        
1150 2004-08-03  Martin Baulig  <martin@ximian.com>
1152         * class.c (mono_type_get_name_recurse): Enclose the generic type
1153         arguments in `<', '>'.
1155 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1157         * gc.c: make GC warning messages use the trace API, they are just
1158         noise to most of the users.
1160 2004-08-03  Martin Baulig  <martin@ximian.com>
1162         * debug-mono-symfile.c (read_string): Correctly read the string.
1164 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
1166         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
1167         
1168         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
1169         icalls.
1170         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
1172 2004-07-30  Martin Baulig  <martin@ximian.com>
1174         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
1175         Reflect latest symbol writer changes.   
1177 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1179         * object.c: always create an object if null is passed
1180         to Invoke() where a valuetype is expected.
1182 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
1184         * marshal.c (mono_marshal_init): make managed
1185         signatures match native ones better for 64bits.
1187 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1189         * appdomain.c: hack to build correctly the private bin path on windows.
1190         Fixes bug #61991.
1192 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
1194         * assembly.c: Load mscorlib from the correct framework directory
1195           (mono/<version>/mscorlib.dll).
1196         * appdomain.h: Added prototypes for new functions.
1197         * internals.h: Added some prototypes.
1198         * domain.c: When initializing the runtime, get from the executable and
1199           the configuration files the runtime version that the app supports.
1200           Added support methods for reading app.exe.config. Added list of versions
1201           supported by the JIT. Added two new methods: mono_init_from_assembly,
1202           which initializes the runtime and determines the required version from
1203           the provided exe file, and mono_init_version, which initializes
1204           the runtime using the provided version.
1205         * icall.c: Get machine.config from version-specific directory.
1206         * reflection.c: When generating an image, embed the version number
1207           of the current runtime.
1209 2004-07-28  Dick Porter  <dick@ximian.com>
1211         * socket-io.c
1212         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
1213         returned sockaddr size before creating the remote address object.
1214         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
1215         61608.
1217 2004-07-28  Dick Porter  <dick@ximian.com>
1219         * locales.c (string_invariant_compare_char): Fix invariant char
1220         compares between upper and lower cases.  Fixes bug 61458.
1222 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
1223         
1224         * marshal.c: actually cache stelem.ref wrappers.
1225         
1226 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
1228         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
1229         sections and remove the mono_cli_rva_map () function.
1231 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1233         * debug-mono-symfile.c: fix one more endianess issue, from a patch
1234         by Geoff Norton (<gnorton@customerdna.com>).
1236 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1238         * class.c: fix class loads for pointer types (typeof(int) !=
1239         typeof(int*)).
1241 2004-07-27  Martin Baulig  <martin@ximian.com>
1243         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
1244         reading the debugging information from an external ".mdb" file.
1246 2004-07-24  Martin Baulig  <martin@ximian.com>
1248         * reflection.c (mono_image_get_type_info): Only write a class
1249         layout entry if we actually have a size or a packing size.
1251 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1253         * reflection.c (type_get_fully_qualified_name): 
1254         insert cast to get type checking of ?: with non-gcc compilers
1256 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
1258         * rand.c: use g_getenv for both lookups of
1259         MONO_EGD_SOCKET
1261 2004-07-17  Martin Baulig  <martin@ximian.com>
1263         * reflection.c (mono_reflection_bind_generic_method_parameters):
1264         Set `gmethod->reflection_info'.
1266 2004-07-17  Martin Baulig  <martin@ximian.com>
1268         * class.c (mono_class_create_from_typedef): Insert the newly
1269         created class into the hash table before computing the interfaces
1270         since we could be called recursively.
1272 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1274         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
1275         function to implement stelem.ref in managed code
1276         * class-internals.h, debug-helpers.c: a new wrapper type
1277         for the above.
1279 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1281         * gc.c: allow GC handles to work even when no GC is compiled in.
1282         Fix part of bug #61134 (GetAddrOfPinnedObject).
1284 2004-07-13  Peter Williams  <peter@newton.cx>
1286         * process.c (complete_path): Make sure we don't attempt to execute
1287         directories.
1289 2004-07-12  Geoff Norton <gnorton@customerdna.com>
1291         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
1292           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
1293           and will add/subtract the hour if needed
1295 2004-07-12  Martin Baulig  <martin@ximian.com>
1297         * reflection.c (mono_field_get_object): If we have
1298         `field->generic_info', take the attributes from
1299         `field->generic_info->generic_type'.    
1301 2004-07-12  Martin Baulig  <martin@ximian.com>
1303         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
1304         This function must be called before initializing the runtime.
1305         (mono_debug_init_1): New function; call this after initializing
1306         the runtime, but before loading the assembly.  It tells the
1307         debugger to load corlib and the builtin types.
1309         * mono-debug-debugger.c: Did some larger changes in the debugging
1310         code; support recursive class declarations, make sure we actually
1311         add all classes.
1313 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1315         * debug-helpers.c: undo my previous patch and fixed the real issue in
1316         ../mini/exceptions-x86.c
1318 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1320         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
1321         when no HOME env. variable was set and a NullRef was thrown in a .cctor
1322         called from other .cctors.
1324 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
1326         * loader.c: Removed the mono_loader_wine_init hack now that we are
1327         doing a managed version of Windows.Forms.
1329 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1331         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
1332         threadpool.c, threads.c: remove static data from rootset.
1334 2004-07-09  Dick Porter  <dick@ximian.com>
1336         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
1337         Don't do any more processing if the matched length was 0.  It was
1338         increasing the size of the string before.  Fixes bug 61167.
1340 2004-07-09  Dick Porter  <dick@ximian.com>
1342         * socket-io.h:
1343         * socket-io.c
1344         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1345         Add support for SO_PEERCRED if its available.
1347 2004-07-09  Peter Bartok <pbartok@novell.com>
1348         * loader.c: winelib.exe.so error message is now only displayed if
1349         MONO_DEBUG is set. To help us avoid questions when people are trying
1350         out the new Managed.Windows.Forms.
1352 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
1354         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
1355         for isinst and castclass wrappers.
1357         * class-internals.h icall.c: Move registration and lookup of JIT icalls
1358         to libmetadata from the JIT, so they could be used by the marshalling
1359         code and the interpreter.
1361         * marshal.c: Register marshalling related JIT icalls here instead of
1362         in mini.c. Use CEE_MONO_ICALL instead of the family of 
1363         CEE_MONO_PROC<x> opcodes to call marshalling functions.
1365         * metadata.h: Remove unneeded marshalling conversions.
1367         * opcodes.c: Update for new opcodes.
1368         
1369 2004-07-08  Martin Baulig  <martin@ximian.com>
1371         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
1372         (mono_debug_get_domain_data): Make this function static.
1374 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1376         * gc.c, object.h: add nice GC handle API for embedders.
1378 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
1380         * reflection.c: more changes for the new api
1382         * object.c: When we reflect on a field w/ a constant value, it
1383         will not have a memory location, so we must access metadata. Also,
1384         allow easier reading of strings so that we can read them from
1385         the constant data.
1387         * class.c (mono_class_layout_fields): no need for literal fields here.
1389         * class-internals.h: api changes for const fields
1391         * icall.c (ves_icall_get_enum_info): use new apis for const fields
1393 2004-07-06  Martin Baulig  <martin@ximian.com>
1395         * mono-debug.h: Increment version number to 44.
1397         * mono-debug.c (mono_debug_add_wrapper): The second argument is
1398         now a gpointer, rewrote this whole method.
1400         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
1401         function.  Add information about the wrapper in a new "misc table".
1403         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
1404         for the new misc table.
1406 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
1408         * metadata-internals.h image.c: Add a cache for helper signatures.
1410         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
1412 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
1414         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
1415         delegates from a delegate. Fixes #61033.
1416         
1417         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
1418         marshalling of stringbuilder arrays. Fixes #59900.
1420 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1422         * icall.c: Add EnumBuilder:setup_enum_type icall.
1424 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
1426         * icall.c: Added a new icall for the property version of
1427         OffsetOfStringData.
1429 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1431         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
1432         it has a constant size across platforms.
1434         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
1435         stack trace.
1437 2004-06-29  Martin Baulig  <martin@ximian.com>
1439         * mono-debug.c (mono_debug_add_method): Protect the whole function
1440         in mono_debugger_lock(), not just parts of it.
1442 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1444         * reflection.c: make sure padding bytes in heaps are zeroed.
1446 2004-06-24  David Waite  <mass@akuma.org>
1448         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
1449         image.c, loader.c, locales.c, marshal.c, metadata.c,
1450         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
1451         string-icalls.c, threads.c: change to C90-style comments from C99 /
1452         C++ -style
1454 2004-06-24  Dick Porter  <dick@ximian.com>
1456         * threads.c
1457         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
1458         return createdNew.  Fixes bug 60412.
1460         * threads-types.h: 
1461         * icall.c: Add createdNew parameter to CreateMutex icall
1463 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1465         * reflection.c, object-internals.h: save default value in params.
1467 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1469         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
1470         no need to build a new path combining that with the application base.
1471         Fixes bug #60442.
1473 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
1475         * reflection.c: fixed minor standard compliance issues.
1477 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1479         * reflection.c: fixed issue with encoding some custom attributes
1480         (arrays in properties and fields, bug #60411).
1482 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1484         * reflection.c: fix start address when copying the public key token.
1486 2004-06-23  Martin Baulig  <martin@ximian.com>
1488         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
1489         the `exc' object in a static object to put it into the GC's root set.
1491 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
1493         * reflection.c: make mono_reflection_setup_internal_class ()
1494         callable a second time to setup a new parent class.
1496 2004-06-23  Dick Porter  <dick@ximian.com>
1498         * threads.c: Check for WAIT_IO_COMPLETION return values.
1500 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
1502         * appdomain.c: Removed the g_free on the public key token. Now copy 
1503         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
1504         * assembly.c: Added public key token string value when loading 
1505         assemblies. Fix bug #60439.
1506         * icall.c: Added missing informations (like public key) in 
1507         GetReferencedAssemblies. Fix #60519.
1508         * image.h: Changed definition for public key token from const char*
1509         public_tok_value to guchar public_key_token [17];
1510         * reflection.c: Updated for changes to public key token.
1512 2004-06-22  Lluis Sanchez Gual
1514         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
1515         for the field in base classes.
1517 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1519         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
1520         mark headers as not supported, they are installed only for use by the
1521         debugger.
1523 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
1525         * *.c, *.h: avoid namespace pollution in public headers.
1527 2004-06-21  Martin Baulig  <martin@ximian.com>
1529         * exception.c (mono_get_exception_security): It's in
1530         "System.Security", not in "System".
1532         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
1533         the exception classes.
1535 2004-06-21  Martin Baulig  <martin@ximian.com>
1537         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
1538         Protect the exception object from being finalized.
1540 2004-06-21  Martin Baulig  <martin@ximian.com>
1542         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
1543         public function.
1545 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
1547         * reflection.c: Load the assembly in mono_reflection_type_from_name,
1548         if it was not loaded before. Fix parts of #60439.
1550 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
1552         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
1553         code that was broken since Ben's change: wrappers are now
1554         dependent on the method signature only again.
1556 2004-06-21  Martin Baulig  <martin@ximian.com>
1558         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
1559         added interface support.
1561 2004-06-21  Martin Baulig  <martin@ximian.com>
1563         * class.c (mono_vtable_get_static_field_data): New public method.
1565 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
1567         * filewatcher.c : Windows build fix to be compliant with API changes.
1569 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1571         * class.h, class.c: more accessors.
1572         * metadata.h, metadata.c: prepare for hiding MonoType and
1573         MonoMethodSignature: people should use the accessors from now on
1574         outside of the tree.
1576 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1578         * *.c, *.h: more API cleanups.
1580 2004-06-18  Jackson Harper  <jackson@ximian.com>
1582         * assembly.c: Trace loading assemblies.
1583         * loader.c: Trace loading native libraries.
1584         * mono-config.c: Trace loading config files.
1585         
1586 2004-06-18  Dick Porter  <dick@ximian.com>
1588         * locales.c: Tell ICU the lengths of strings, it can cope with
1589         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
1591 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1593         * image.c: swapped name/filename;
1595 2004-06-18  Martin Baulig  <martin@ximian.com>
1597         * mono-debug-debugger.c (write_class): Write the parent class at
1598         the end of the header.
1600 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1602         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
1604 2004-06-17  Raja R Harinath  <rharinath@novell.com>
1606         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
1607         (bundle_obj): New conditional define.
1608         (BUILT_SOURCES): Remove.
1609         ($(bundle_srcs)): Make parallel-make safe.
1610         (libmonoruntime_la_LIBADD): Make unconditional.
1611         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
1612         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
1614 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
1616         * culture-info-tables.h: It was inconsistent with the latest
1617           supp info files.
1619 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
1621         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
1622         be loaded.
1624         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
1625         with gcc 2.95.
1627 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1629         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
1630         cleaned up public header threads.h.
1632 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1634         * Makefile.am, *.c, *.h: more API cleanups.
1636 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1638         * Makefile.am: removed monosn from compilation.
1639         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
1640         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
1641         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
1642         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
1643         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
1644         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
1646 2004-06-15  Jackson Harper  <jackson@ximian.com>
1648         * assembly.c: Make locales lower case when searching the GAC for
1649         assemblies. gacutil will always make locales lowercase when
1650         installing so this effectively makes them case insensitive.
1651         
1652 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
1654         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
1655         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
1656           parameter which allows to choose whether the wait can be interrupted or 
1657           not. Also added the method mono_monitor_enter(), which locks the monitor
1658           using an infinite wait and without allowing interruption.
1659           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
1660           interrupted.
1661         * object.h: Added new fields in MonoThread. suspend_event holds the event
1662           used to susped/resume the thread. synch_lock is the lock object to use for
1663           modifying the thread state.
1664         * threads.c: Use the new synch_lock object for locking, instead of "this",
1665           which can generate deadlocks.
1666           Moved thread state change in Thread.Sleep and Thread.Join from managed
1667           to unmanaged code. This avoids a deadlock when the thread was suspended
1668           just after acquiring the thread lock.
1669           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
1670           Implemented Thread.Suspend using an event instead of ThreadSuspend,
1671           which is not fully implemented in the io-layer.
1672         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
1674 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
1676         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
1677         threads-types.h: more API cleanups.
1679 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1681         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
1682         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
1683         threadpool.c, threads.c: first pass at the exported API cleanup.
1685 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1687         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
1689 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1691         * icall.c: added internalGetHome.
1693 2004-06-14  Dick Porter  <dick@ximian.com>
1695         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
1696         possible to return successfully when '.' or '..' were the only
1697         entries in a directory, but were skipped.  The MonoIOStat was not
1698         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
1699         Fixes bug 59574.
1701 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1703         * reflection.c: make binaries run on .Net 1.1 by default.
1705 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1707         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
1709 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
1711         * marshal.c: keep track of struct size with explicit layout
1712         (bug #59979).
1714 2004-06-12  Martin Baulig  <martin@ximian.com>
1716         * mono-debug-debugger.c: Comment out a debugging g_message().
1718 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1720         * reflection.c, reflection.h: do not free custom attrs that are cached.
1721         * icall.c: use braces to make code clearer.
1723 2004-06-11  Martin Baulig  <martin@ximian.com>
1725         * class.h (MonoInflatedField): New type.
1726         (MonoClassField): Replaced `MonoType *generic_type' with
1727         `MonoInflatedField *generic_info'.
1729         * icall.c
1730         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
1732 2004-06-11  Martin Baulig  <martin@ximian.com>
1734         * reflection.c (mono_image_create_method_token): Correctly encode
1735         varargs methods.
1737 2004-06-11  Martin Baulig  <martin@ximian.com>
1739         * metadata.c (mono_metadata_parse_method_signature): When parsing
1740         a MethodDef which has VarArgs, also set sentinelpos if we don't
1741         have any parameters.
1743 2004-06-11  Martin Baulig  <martin@ximian.com>
1745         * verify.c (mono_method_verify): In CEE_CALL, use
1746         mono_method_get_signature() to get the method's signature, unless
1747         we're a PInvoke method.
1749 2004-06-10  Jackson Harper  <jackson@ximian.com>
1751         * assembly.c: Use <path>/lib/mono/gac for the extra paths
1752         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
1753         logical name as the supplied path is just a prefix to the gac not
1754         the direct path to it.
1755         
1756 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
1758         * reflection.c: make the token for a created method match
1759         the token of the MethodBuilder it was created from
1760         (IKVM requires this behaviour now).
1762 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
1764         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
1765         reflection.c, socket-io.c: leak fixes.
1767 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
1769         * icall.c: handle sentinel pos in vararg methods in position different
1770         from 0.
1772 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1774         * culture-info-tables.h: freshly generated.
1776 2004-06-09  Martin Baulig  <martin@ximian.com>
1778         * loader.c (mono_get_method_constrained): Call `mono_class_init
1779         (constrained_class)'.   
1781 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
1783         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
1784         any methods. Fixes #59629.
1786 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1788         * culture-info-tables.h: reflecting locale-builder updates.
1790 2004-06-08  Dick Porter  <dick@ximian.com>
1792         * object.h:
1793         * locales.c: Fixed compile warnings, including a real bug in
1794         CompareInfo_internal_compare.
1795         
1796 2004-06-08  Dick Porter  <dick@ximian.com>
1798         * locales.c
1799         (ves_icall_System_Globalization_CompareInfo_internal_index):
1800         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1801         Double-check the resuls of usearches, because ICU currently
1802         ignores most of the collator settings here.  Fixes bug 59720.
1803         
1804 2004-06-08  Dick Porter  <dick@ximian.com>
1806         * locales.c
1807         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1808         Fix memory leak and segfault-causing typo.  No idea how this one
1809         lasted so long without being noticed.
1811 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
1813         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
1814         any methods. Fixes #59629.
1816 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1818         * assembly.c:
1819         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
1820         own the critical section before). Removed dead code (that's done
1821         in the preload hook).
1823         (mono_assembly_load_with_partial_name): call the preload hook.
1825 2004-06-08  Martin Baulig  <martin@ximian.com>
1827         * metadata.c (mono_metadata_signature_alloc): Default
1828         `sentinelpos' to -1.
1830         * reflection.c (mono_image_get_array_token): Likewise.
1832 2004-06-08  Martin Baulig  <martin@ximian.com>
1834         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
1836         * metadata.c (mono_metadata_parse_method_signature): When parsing
1837         a MethodDef which has VarArgs, set sentinelpos.
1839         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
1840         `gint16' since we're using -1 for non-varargs methods.
1842         * reflection.c
1843         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
1844         (method_encode_signature): Added varargs support.
1845         (method_builder_encode_signature): Likewise.
1846         (mono_image_get_varargs_method_token): New static method.
1847         (mono_image_create_method_token): New public method; this is
1848         called via an icall instead of mono_image_create_token() when
1849         calling a varargs method.       
1851 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
1853         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
1855 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1857         * culture-info-tables.h : Reflecting the latest locale-builder that
1858           fixed empty array representation ({} to {0}).
1860 2004-06-07  Jackson Harper  <jackson@ximian.com>
1862         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
1863         looking up extra gac paths. This allows MONO_GAC_PATH to act
1864         exactly like a prefix.
1865         
1866 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1868         * reflection.c (mono_reflection_type_from_name): Make a copy of the
1869         type name before modifying it. Fixes #59405.
1871 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1873         * culture-info.h: added fields for "all datetime patterns".
1874         * locales.c: (  ves_icall_System_Globalization_CultureInfo
1875           _construct_datetime_format ()): fill xxx_patterns fields.
1876         * object.h: added fields for "all datetime patterns" to
1877           MonoDateTimeFormatInfo.
1878         * culture-info-tables.h: reflecting locale-builder updates.
1880 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1882         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
1883         the event has no add and remove methods. Fixes #59629.
1885 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1887         * object.c: Fixed possible integer overflow when allocating large
1888         strings.
1890 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1892         * culture-info-tables.h: reflecting locale-builder updates.
1894 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1896         * culture-info-tables.h: reflecting locale-builder updates.
1898 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1900         * culture-info-tables.h: reflecting locale-builder updates.
1902 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
1904         * threads.c: Made Thread.Sleep abortable.
1906 2004-06-02  Martin Baulig  <martin@ximian.com>
1908         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
1910         * debug-mono-symfile.h: Bumped symbol file version number to 37.
1912 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
1914         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
1916 2004-05-30  Jackson Harper  <jackson@ximian.com>
1918         * reflection.c: Do not hardcode assembly versions or public key
1919         tokens anymore. All of this except the corlib section was dead
1920         code anyways.
1921         
1922 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1924         * object.c (mono_runtime_invoke_array): Automatically create boxed
1925         objects for byref valuetypes if needed. Fixes #59300.
1926         
1927         * object.c (mono_method_return_message_restore): Handle 
1928         MONO_TYPE_OBJECT as well.
1930 2004-05-28  Jackson Harper  <jackson@ximian.com>
1932         * reflection.c: The modified type encoding was causing build
1933         problems. Reverted for now.
1934         
1935 2004-05-28  Jackson Harper  <jackson@ximian.com>
1937         * reflection.c/h: Take an assembly ref so that we dont create
1938         fully qualified names when encoding types in the same assembly as
1939         the custom attribute being emitted.
1940         * appdomain.c: Increment version number.
1941         
1942 2004-05-26  Duncan Mak  <duncan@ximian.com>
1944         * icall.c
1945         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1946         Set the full version number (major, minor, build, revision).
1948 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
1950         * marshal.c (emit_struct_conv): increment src/dst after blit
1951         (mono_marshal_get_managed_wrapper,
1952         mono_marshal_get_native_wrapper): make sure we have marshalling
1953         info before marshalling params (info computation affects
1954         blittable)
1956         * class.c (class_compute_field_layout): correctly deal with
1957         blittable
1958         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
1959         value types (as per what windows dows by default)
1960         (mono_class_setup_mono_type): System.ValueType is blittable
1961         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
1962         blittable
1964         * marshal.c (mono_marshal_load_type_info): flag types  as
1965         non-blittable if the native layout doesn't match the managed
1966         layout
1968 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1970         * appdomain.c: don't add stuff in the private search path that is
1971         above the application base. If application base is not set, there's
1972         no private search path.
1974 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
1976         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
1977         byref struct arguments in native->managed marshalling.
1979 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
1981         * marshal.c (mono_marshal_get_runtime_invoke): correctly
1982         cache methods using signature (special case for methods
1983         that are value type or string class)
1984         
1985         * image.c (mono_image_close): clean up allocated GSList's
1986         in runtime_invoke_cache.
1988 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1990         * mono-config.c: set the correct path for mono_cfg_dir on windows when
1991         there's no MONO_CFG_DIR environment variable defined.
1993 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1995         * threads.c: windows version must be >= 0x0500 to include OpenThread.
1997 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
1999         * threadpool.c: Really wait for 500ms after the async call, even if the wait
2000           is interrumped.
2001         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
2002           before waiting for it, and call CloseHandle after the wait to unref it.
2003           This will make sure that handles are not disposed too early.
2005 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2007         * appdomain.c:
2008         * appdomain.h:
2009         * icall.c: removed
2010         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
2011         needed now.
2013         * object.c: se the application_base only for the domain that runs
2014         Main. Fixes bug #59216,
2016 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2018         * appdomain.c:
2019         * object.c: only the domain in which Main is run have
2020         SetupInformation.ConfigurationFile set, so moved a few lines from
2021         appdomain.c to object.c.
2023 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2025         * appdomain.c: we tried to load [name].(dll|exe), but according
2026         to bug #57710, we must also try [culture]/[name].(dll|exe) and
2027         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
2028         There's a test case attached to bug #58922.
2030 2004-05-27  Dick Porter  <dick@ximian.com>
2032         * icall.c:
2033         * file-io.c: Implemented icalls for locking and unlocking regions
2034         in a file.
2035         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
2036         FALSE on error (fixes both compiler warning and real bug.)
2038 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
2040         * culture-info-tables.h: reflecting locale-builder updates.
2042           (Added missing ChangeLog entry for 05/26)
2044 2004-05-27  Jackson Harper  <jackson@ximian.com>
2046         * locales.c: Fix some cut and paste errors.
2047         
2048 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2050         * mono-config.c: set the correct path for config. directory on windows.
2052 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2054         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
2055           on win32.
2057 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2059         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
2060         from pinvoke functions.
2061         
2062         * marshal.c (mono_ftnptr_to_delegate): Implement this.
2064 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
2066         * culture-info-tables.h: reflecting locale-builder updates.
2068 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
2070         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
2071         #59086.
2073 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
2075         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
2076         * icall.c: Modified icalls for RNG.
2077         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
2078         Windows (CryptoAPI).
2080 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2082         * locales.c: Fix build.
2084 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
2086         * culture-info-tables.h: reflecting locale-builder updates.
2088 2004-05-25  Jackson Harper  <jackson@ximian.com>
2090         * locales.c: When creating the current culture use the $LANGs
2091         specific culture. So DateTimeFormat and NumberFormat entries are created.
2092         
2093 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
2095         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
2096         a char array as parameter.
2098 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
2100         * image.c: In mono_image_open(), always use an absolute path name to
2101           look for already loaded images.
2103 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
2105         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
2106         missing in the windows build (like older cygwin include files).
2108 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
2110         * icall.c: Fixed check for possible integer overflow in Buffer_
2111         BlockCopy icall. Replaced comments style // by /* */.
2113 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
2115         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
2116         
2117         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
2118         check after MONO_VTADDR. Fixes pinvoke2.exe.
2120         * marshal.h marshal.c metadata.h: Add beginnings of support for
2121         ftnptr -> delegate marshalling.
2123 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
2125         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
2126         * threads.c: Fix warnings.
2128 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2130         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
2131         * icall.c: Registered icalls for Suspend and Resume.
2132         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
2133           Thread.Abort.
2134         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
2135         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
2136         * process.c: Use WaitForSingleObjectEx.
2137         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
2138           checkpoints.
2139         * threads.c, threads.h: Make use of new Ex wait methods. Improved
2140           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
2141           for Suspend and Resume. Added new mono_thread_stop, used for stoping
2142           background threads. Added basic support for Abort in Windows.
2143           Start new threads using a managed delegate invoke wrapper. This wrapper
2144           has an interruption checkpoint that is needed since an interruption
2145           can be requested before the thread leaves the unmanaged code that starts 
2146           the thread.
2147         * marshal.c: Added interruption checkpoint after every native call, and
2148           also before managed calls for wrappers called from unmanaged code to
2149           go into managed code.
2150         * object.h: Added new field in MonoThread to keep track of interruption
2151           requests.
2153 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
2155         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
2156         calls.
2158 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2160         * appdomain.c:
2161         * assembly.c:
2162         * gc.c:
2163         * locales.c:
2164         * mono-config.c:
2165         * rand.c: getenv -> g_getenv (windows!)
2167         * process.c: complete_path is also used on non-windows platforms.
2169 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2171         * icall.c: new signature for Process_Start.
2173         * process.[ch]: new signature for Process_Start. If we're on windows
2174         and UseShellExecute is false, we have to search for the program by
2175         ourselves if we don't get a full path.
2177 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
2179         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
2180         marshalling and call CleanUpNativeData if needed. Fixes #58646.
2182 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2184         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
2185         Fixes bug #58373.
2187 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2189         * process.c: use double quotes to quote program name and arguments on
2190         windows. Fixes bug #58575.
2192 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2194         * file-io.c: don't return "." and ".." when using windows Find*File.
2196 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
2198         * marshal.c: Don't pass wrappers to message init because method 
2199         addressed used to lookup metadata. part of remoting[2|3] fix.
2201 2004-05-15  Jackson Harper  <jackson@ximian.com>
2203         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
2204         path is essentially the same as MONO_PATH except that it points to
2205         GACs instead of lib directories.
2206         * loader.h: The user gac is gone so we dont need function to
2207         enable/disable it.
2208         * mono-config.c: user gac option is now gone.
2209         
2210 2004-05-15  Jackson Harper  <jackson@ximian.com>
2212         * culture-info.h: Make defines more consistent, add calendar data
2213         to the culture info table.
2214         * culture-info-tables.h: Add basic calendar data. Basically
2215         everyone gets default gregorian until all the data is
2216         updated.
2217         * locales.c: Use the new consistent defines. Set calendar data for
2218         culture info objects.
2219         * object.h: add a field for calendar data to CultureInfo
2220         
2221 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
2223         * image.c: image->runtime_invoke_cache is keyed on signatures now.
2224         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
2225         a signature.
2226         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
2227         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
2228         an extra param that is the pointer of the method to invoke. The IL for
2229         the invoke method is no longer specific to the method, but to the
2230         signature of the method. Thus, we can share the same code for multiple
2231         methods. This reduces the number of methods that have to be compiled.
2233 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
2235         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
2237         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2239         * icall.c: Optimize Buffer.BlockCopy.
2241 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2243         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
2244         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
2245         quote). Changed them to "MMMM yyyy".
2247 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
2249         * rand.c
2250         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
2252 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
2254         * reflection.h: Updated after changes to managed structures.
2256         * appdomain.c: Bump corlib version.
2258 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2260         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
2261         windows.
2263 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2265         * Makefile.am: link to ../os/libmonoos.la on windows.
2267         * assembly.c:
2268                 -If MONO_DEBUG, warn about non-existing directories in
2269                 MONO_PATH.
2270                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
2271                 compile time variable.
2272                 -Removed init_default_path and call mono_set_rootdir from
2273                 libmonoos.a instead (windows only).
2275         * assembly.h: declare mono_assembly_getrootdir().
2277         * domain.c:
2278         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
2280         * loader.c: s/getenv/g_getenv/
2282 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2284         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
2286         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
2288         * metadata.h: Add new marshalling conversions.
2290         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
2291         function.
2293         * reflection.c (mono_reflection_get_type): Lookup the type in all
2294         modules of a multi-module assembly. Fixes #58291.
2296 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2298         * threads.c: Before aborting a background, set the StopRequested
2299         state.  This avoids throwing the Abort exception.
2300         In mono_thread_manage, don't continue with the shutdown until all
2301         aborted threads have actually stopped.
2303 2004-05-10  Jackson Harper  <jackson@ximian.com>
2305         * locales.c: Remove the modifier from culture names.
2306         
2307 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2309         * Makefile.am: monosn is not installed any more. It has been deprecated
2310         in favor of sn.
2312 2004-05-07  Jackson Harper  <jackson@ximian.com>
2314         * locales.c
2315         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
2316         Fix array construction, add bailout if the length is 0.
2318 2004-05-07  Dick Porter  <dick@ximian.com>
2320         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
2321         machine doesn't have a DNS entry.  Patch by Urs Muff
2322         (umuff@quark.com), fixes bug 57928.
2324 2004-05-06  Jackson Harper  <jackson@ximian.com>
2326         * reflection.c: Handle null PublicTokens properly. alloc mem for
2327         assembly names culture so we dont crash when freeing it.
2328         
2329 2004-05-06  Jackson Harper  <jackson@ximian.com>
2331         * assembly.c: Check the usergac when loading with partial names.
2332         
2333 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2335         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
2336         does nothing for now (not required for Linux/Windows) but the class
2337         library can call it (and a newer or modified runtime could need it).
2338         * icall.c: Registred icall.
2340 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2342         * loader.c: prints a message on module loading error we set MONO_DEBUG
2343         environment variable.
2345 2004-05-05  Jackson Harper  <jackson@ximian.com>
2347         * appdomain.c: Handle PublicKeyToken=null properly.
2348         
2349 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2351         * environment.c|h: Added icall ves_icall_System_Environment_
2352         GetOSVersionString to get the current OS version as a string.
2353         * icall.c: Registred icall.
2355 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
2357         * object.c: in mono_object_get_virtual_method(), take into account that
2358         non-virtual methods don't have a slot in the vtable. Check needed when
2359         the object is a proxy.
2361 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2363         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
2364         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
2366         * object.c (mono_class_compute_gc_descriptor): Fix warning.
2368         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
2369         passed when a valuetype is expected.
2371         * object.c (mono_unhandled_exception): Only set the exit code if the
2372         exception happens in the main thread. Fixes thread5.exe.
2374         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
2375         invalid names. Fixes #58047.
2377 2004-05-03  Jackson Harper  <jackson@ximian.com>
2379         * assembly.c: This line was committed accidently and is unneeded.
2380         
2381 2004-05-03  Jackson Harper  <jackson@ximian.com>
2383         * icall.c: Add new icall for Assembly::LoadWithPartialName
2384         * assembly.c/.h: new function that probes the GAC to load partial
2385         assembly names by Paolo Molaro.
2386         
2387 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2389         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
2390         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
2391         (type_get_fully_qualified_name): Added PublicKeyToken when building a
2392         full type name.
2394 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2396         * appdomain.c: fixed check for 'neutral' culture and removed warning.
2397         * reflection.c: fix bug when parsing a full type name and Version is not
2398         the last thing in the string.
2400 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
2402         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
2403         crashes when it is freed.
2405 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2407         * assembly.c: print the compat warning to stderr.
2409 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
2411         * assembly.c (mono_assembly_load_references): Add a compatibility
2412         hack to run old applications that might be still referencing the
2413         3300-based assemblies, only do this for System.xxx.
2415 2004-05-01  Jackson Harper  <jackson@ximian.com>
2417         * appdomain.c: If the culture is neutral we set it to "".
2418         
2419 2004-04-29  Jackson Harper  <jackson@ximian.com>
2421         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
2423 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2425         * string-icalls.c: added low overhead function for copying chars
2426         * icall.c: added needed icall for the above function
2428 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2430         * icall.c: fix return value of get_global_assembly_cache.  Implemented
2431         Environment.GetLogicalDrives.
2433 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2435         * rand.c: try and talk to egd or prngd
2436         for random bytes if opening devices fail.
2438 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2440         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
2441         alignment for the type using the native alignment of its members 
2442         instead of using klass->min_align.
2444         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
2446 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2448         * file-io.c:
2449         * socket-io.c: added check for sys/aio.h.
2451 2004-04-28  Dick Porter  <dick@ximian.com>
2453         * threads.c: Don't abort a thread thats already aborting, when
2454         terminating everything.
2456 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2458         * icall.c: added 2 new async calls for Socket.
2460         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
2461         IO on *nix systems.
2463         * threadpool.c: removed unused variable.
2465 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
2467         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
2469 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2471         * locales.c: put back string_invariant_tolower () and
2472         string_invariant_toupper ().
2474 2004-04-26 David Waite <mass@akuma.org>
2476         * file-io.h:
2477         * socket-io.h:
2478         * threads.h:
2479         * unicode.h: remove comma from end of enumeration declarations
2481 2004-04-26 David Waite <mass@akuma.org>
2483         * debug-mono-symfile.h:
2484         * decimal.c:
2485         * mono_debug.h:
2486         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
2489 2004-04-26  Jackson Harper  <jackson@ximian.com>
2491         * appdomain.c: Increment version number.
2492         
2493 2004-04-26  Jackson Harper  <jackson@ximian.com>
2495         * appdomain.c: Set assembly references public token value when
2496         PublicKeyToken is specified, not the hash_value. Free public token
2497         values when free assembly name data. Previously the public key
2498         token was hex decoded, however we are using hex encoded public key
2499         tokens, so this is not neccasary.
2500         * assembly.c: Lookup assemblies in the gac if their public token
2501         value is set. Add function to allow enabling user gac
2502         lookups. Specify whether or not the assembly was loaded from the
2503         GAC. Compare full assembly names when checking the cache for
2504         assemblies (Temporarily disabled see comment in code). Remove
2505         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
2506         specifies trace-loader they get extra info to stdout on the
2507         loading of assemblies.
2508         * image.h: Add a field for an assembly references public token
2509         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
2510         whether an assembly has been loaded from the GAC.
2511         * image.c: Remove a corlib -> mscorlib name mapping.
2512         * loader.h: Add function to enable/disable the user gac.
2513         * mono-config.c: Check if the usergac is enabled in the config
2514         file.
2515         * icall.c: New icall to determine whether or not an assembly has
2516         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
2517         * tabldefs.h: Add constant for assemblyref flag that specifies a
2518         full public key is used instead of a public token.
2519         * reflection.c: Remove mscorlib -> corlib mappings. Set
2520         PublicTokenValue instead of hash value. This value is a hex
2521         string so it does not need to be expanded.
2523 2004-04-26  Martin Baulig  <martin@ximian.com>
2525         * mono-debug-debugger.c (mono_debugger_initialize): Set
2526         `mono_debugger_initialized' before calling mono_debug_lock().
2528 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
2530         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
2531           InternalToUpper/InternalToLower.
2532         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
2533           removed invariant culture shortcut.  This is now done in managed code.
2534         * locales.c: (string_invariant_toupper/tolower) removed.
2536 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2538         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
2539         Added Poll internal call.
2541         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
2542         call for Poll. Select was too heavy for polling a single socket.
2544         * threadpool.[ch]: added mono_threadpool_cleanup.
2545         * threads.c: use it. Don't use Thread_Abort on windows.
2547 2004-04-23  Martin Baulig  <martin@ximian.com>
2549         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
2551 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
2553         * icall.c: Registred new icalls for key pair protection and added an
2554         icall for Environment.GetFolderPath on Windows.
2555         * security.c|h: Added new icalls for key pair protection.
2557 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2559         * socket-io.c: don't display the non-supported family warning for known
2560         families. Now this is not displayed on windows when checking support
2561         for IPv4/IPv6.
2563 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2565         * class.c: don't display the layout warning for static fields.
2567 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
2569         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
2570         * locales.c, locales.h: Added new icalls for culture-specific
2571         Char.ToLower and Char.ToUpper.
2573 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2575         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
2576         by David Waite.
2578 2004-04-20  Martin Baulig  <martin@ximian.com>
2580         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
2581         of the type name before passing it to mono_reflection_type_from_name().
2583 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2585         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
2586         encodings here. Fixes #56965.
2588 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
2590         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2591         fix test on strstr result not that I can see anything that
2592         relies on the result.
2594 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2596         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
2597         Fixes #57081.
2599         * marshal.c (mono_marshal_get_string_encoding): New helper function.
2601         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
2602         function to determine which marshalling to use for strings. Fixes
2603         #56965.
2605         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
2607         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
2609 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
2611         * icall.c: #include mono-config.h
2613 2004-04-15  Jackson Harper  <jackson@ximian.com>
2615         * culture-info-tables.h: Fix date formats for en-US culture.
2616         
2617 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
2619         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
2620         ThreadPool.SetMinThreads.
2621         * threadpool.c: Implemented ThreadPool.GetMinThreads and
2622         ThreadPool.SetMinThreads.
2624 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2626         * mono-config.c: also load the .config file in the directory
2627         where the assembly was found.
2629 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2631         * assembly.c: load per-assembly config files.
2632         * icall.c: decrapified code to get the config dir and moved to
2633         mono-config.c.
2634         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
2635         per-assembly config files. When doing a dll map lookup give precedence
2636         to the per-assembly data.
2638 2004-04-14  Martin Baulig  <martin@ximian.com>
2640         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
2641         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
2642         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
2644         * mono-debugger-debugger.c: While the debugger is locked, remember
2645         whether the symbol tables have changes and send one single
2646         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
2648 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2650         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
2652         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
2653         function.
2655         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
2656         account when marshalling string arrays. Fixes #56965.
2658 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2660         * icall.c: Add new icalls mapping for security.
2661         * security.c|h: Add internal calls for WindowsIdentity,
2662         WindowsImpersonationContext and WindowsPrincipal.
2664 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
2666         * class.c: Added comment to ensure the System.MonoDummy class
2667         is removed when no longer necessary
2669 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2671         * appdomain.c: Pass arguments to the bootstraping exceptions to
2672         minimize JITed methods at boot
2674         * metadata.c (mono_exception_from_name_two_strings): Allow for the
2675         second string to be null.
2677         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2678         Change the protocol to minimize the JIT methods at startup.  Now
2679         it Returns the internal codepage, if the value of "int_code_page"
2680         is 1 at entry, and we can not compute a suitable code page
2681         number, returns the code page as a string.
2683 2004-04-13  Jackson Harper  <jackson@ximian.com>
2685         * culture-info-tables.h: Fix number of decimal digits for all
2686         english locales.
2688 2004-04-13  Jackson Harper  <jackson@ximian.com>
2690         * icall.c: Clairfy out of sync error message. It is not always
2691         your corlib that is out of sync.
2693 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
2695         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
2696         properties when only the set accessor is overriden. Fixes #55874.
2698 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
2700         * assembly.c (mono_assembly_load_references): Make this thread safe.
2701         Fixes #56327.
2703 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2705         * monosn.c: Add missing initialization calls.
2707 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
2709         * locales.c:
2710         ves_icall_System_Globalization_CultureInfo_construct_number_format
2711         Fix g_assert so it compiles on fussier compilers re int/ptr
2712         mismatch
2714 2004-04-08  Dick Porter  <dick@ximian.com>
2716         * socket-io.h:
2717         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
2718         53992.  Also rearrange the code so that the internal calls return
2719         an error value and exceptions are thrown from managed code.
2721         * icall.c: Add type info to the socket icalls.
2723 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2725         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
2726         owes me a beer.
2728 2004-04-07  Martin Baulig  <martin@ximian.com>
2730         * class.c (mono_class_from_generic_parameter): Don't default
2731         `klass->parent' to `mono_defaults.object_type'.
2733 2004-04-07  Martin Baulig  <martin@ximian.com>
2735         * reflection.c (mono_reflection_initialize_generic_parameter): Set
2736         `param->pklass->reflection_info'.       
2738 2004-04-07  Jackson Harper  <jackson@ximian.com>
2740         * culture-info-tables.h: Fix date separator symbol.
2741         
2742 2004-04-07  Martin Baulig  <martin@ximian.com>
2744         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
2745         from System.Type to System.MonoType.
2747 2004-04-07  Martin Baulig  <martin@ximian.com>
2749         * reflection.h
2750         (MonoReflectionGenericParam): Added `has_reference_type' and
2751         `has_value_type' fields.
2753         * reflection.c (mono_image_get_generic_param_info): Encode the
2754         correct flags if we have the `class' or `struct' constraint.
2756 2004-04-07  Martin Baulig  <martin@ximian.com>
2758         * reflection.h
2759         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
2761 2004-04-07  Jackson Harper  <jackson@ximian.com>
2763         * appdomain.c: Revert extra patches, just wanted to bump the
2764         version number.
2765         
2766 2004-04-07  Jackson Harper  <jackson@ximian.com>
2768         * Makefile.am: Add culture-info private headers.
2769         * icall.c: Add new icalls for contructing locales.
2770         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
2771         * locales.h: Declare new culture info construction methods.
2772         * object.h: Add new fields used to avoid the CultureMap to
2773         MonoCultureInfo.
2774         * culture-info.h: Definition of structs used in the culture info
2775         tables.
2776         * culture-info-tables.h: Autogenerated tables that contain culture
2777         info data. This file was generated with the locale-builder tool.
2778         * appdomain.c: Incement corlib version number.
2779         
2780 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
2782         * appdomain.c: (mono_runtime_init) move mono_thread_init
2783         to before mono_object_new calls so critical sections
2784         are initialized before use.
2786 2004-04-07  Martin Baulig  <martin@ximian.com>
2788         * icall.c
2789         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
2790         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
2791         (ves_icall_MonoGenericParam_initialize): Removed.
2792         (monogenericparam_icalls): Removed.
2793         (generictypeparambuilder_icalls): Added new table for
2794         System.Reflection.Emit.GenericTypeParameterBuilder.
2796         * reflection.c
2797         (mono_reflection_define_generic_parameter): Removed.
2798         (mono_reflection_initialize_generic_parameter): This is now called
2799         from GenericTypeParameterBuilder's .ctor.
2801 2004-04-06  Martin Baulig  <martin@ximian.com>
2803         * class.c (mono_class_init): Don't inflate nested classes in a
2804         generic instance.
2805         (mono_type_get_name_recurse): Include the generic arguments for
2806         generic instances and generic type declarations.
2807         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
2808         (_mono_class_get_instantiation_name): Removed.
2809         (mono_class_create_generic): Always use `gklass->name' as our name.
2811         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
2813         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
2814         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
2815         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
2816         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
2817         closed generic methods here.
2819         * reflection.c
2820         (mono_reflection_generic_inst_get_nested_types): Removed.
2821         (inflate_mono_method): Copy the generic parameters from the
2822         MonoMethodHeader into out MonoGenericMethod.
2824 2004-04-06  Martin Baulig  <martin@ximian.com>
2826         * row-indexes.h
2827         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
2829         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
2831         * reflection.c (build_compressed_metadata): If we have any entries
2832         in the GenericParam, MethodSpec or GenericParamConstraint tables,
2833         set the header version to 1.1.
2835 2004-04-06  Martin Baulig  <martin@ximian.com>
2837         * class.c (mono_class_init): If we're a generic instance,
2838         initialize our nested classes, too.
2839         (_mono_class_get_instantiation_name): Deal with the new `!%d'
2840         suffix. 
2842 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2844         * process.c: quote the argument passed to the shell on windows.
2846 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2848         * threads.c (mono_alloc_special_static_data): Allow this to be
2849         called during startup.
2851 2004-04-02  Martin Baulig  <martin@ximian.com>
2853         * icall.c
2854         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
2856 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2858         * icall.c: Fix build.
2860 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2862         * Makefile.am: Added security.c|h.
2863         * icall.c: Added icall for get_UserName;
2864         * security.c: New file for security related icalls. Added function
2865         get_UserName for System.Environment (fix #56144).
2866         * security.h: New. Header file for security.c
2868 2004-04-02  Dick Porter  <dick@ximian.com>
2870         * icall.c: Deleted the icalls that were obsoleted some time ago
2871         by the ICU string code, and which were mixed into the icall
2872         rearranging.  Fixes bug 55969.
2874         * string-icalls.h: 
2875         * string-icalls.c: Deleted the code that those icalls reference.
2877 2004-04-01  Martin Baulig  <martin@ximian.com>
2879         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
2881         * class.c (mono_class_from_generic_parameter): Don't set 
2882         TYPE_ATTRIBUTE_INTERFACE.
2883         (my_mono_class_from_generic_parameter): Likewise.
2885 2004-04-01  Martin Baulig  <martin@ximian.com>
2887         * loader.c (find_method): Added an optional `MonoClass *ic'
2888         argument to search in a specific interface.
2889         (mono_get_method_constrained): New public function.
2891 2004-04-01  Martin Baulig  <martin@ximian.com>
2893         * reflection.c (mono_image_get_generic_field_token): Use the
2894         `handleref' cache here.
2896 2004-04-01  Martin Baulig  <martin@ximian.com>
2898         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
2900         * reflection.c (create_generic_typespec): Use the `typespec' hash
2901         here, not the `typeref' one.    
2903 2004-04-01  Martin Baulig  <martin@ximian.com>
2905         * class.c (mono_class_inflate_generic_type): Moved the
2906         functionality into a new static inflate_generic_type() which
2907         returns NULL if it didn't do anything.  Only increment the
2908         `mono_stats.inflated_type_count' if we actually inflated
2909         something.
2910         (mono_class_get_full): Check the classes type to see whether we
2911         need to inflate it; also inflate MONO_TYPE_(M)VAR.
2913 2004-04-01  Jackson Harper  <jackson@ximian.com>
2915         * reflection.c: Set culture for assembly references.
2916         
2917 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2919         * reflection.[ch], icall.[ch], Fix support for pinning variables.
2921 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2923         * assembly.c:
2924         (do_mono_assembly_open): the critical section also covers
2925         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
2927 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2929         * threads.c:
2930         (mono_manage_threads): abort the background threads when finishing.
2931         Fixes bug #47232.
2933 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2935         * gc.c: only close the done_event handle if there was no timeout.
2936         C-ified comments.
2938 2004-03-30  Martin Baulig  <martin@ximian.com>
2940         * icall.c (icall_entries): It's called "System.Activator", not
2941         "System.Activation".    
2943 2004-03-30  Martin Baulig  <martin@ximian.com>
2945         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
2946         (mono_class_create_from_typespec): Likewise.
2948 2004-03-30  Martin Baulig  <martin@ximian.com>
2950         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
2951         `has_ctor_constraint' and `initialized'.
2953 2004-03-30  Martin Baulig  <martin@ximian.com>
2955         * reflection.c (encode_new_constraint): New static function to add
2956         the constructor constraint attribute to a type parameter.
2957         (encode_constraints): Call encode_new_constraint() if necessary.
2959         * reflection.h
2960         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
2962         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
2963         
2964 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2966         * reflection.c, icall.c: add support for pinning variables. 
2968 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
2970         * marshal.c (mono_marshal_get_managed_wrapper):
2971         init bool local with zero rather than null.
2973 2004-03-29  Martin Baulig  <martin@ximian.com>
2975         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
2976         the "official" behavior here.
2977         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
2979 2004-03-29  Martin Baulig  <martin@ximian.com>
2981         * icall.c: Reflect latest API changes.
2983 2004-03-29  Martin Baulig  <martin@ximian.com>
2985         * loader.c (mono_get_method_from_token): Also call
2986         mono_metadata_load_generic_params () for abstract and interface
2987         methods; replace the type arguments in the method signature with
2988         the ones which are loaded from the metadata.
2990 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
2992         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
2993         of the lock is not the current thread. MS.NET don't do it, in spite of
2994         what the documentation says. See bug #56157.
2996 2004-03-28  Martin Baulig  <martin@ximian.com>
2998         * class.c (mono_class_init): Don't call init_properties() and
2999         init_events() for generic instances; set `prop->parent' when
3000         inflating properties.
3002         * reflection.c (mono_generic_inst_get_object): Call
3003         `mono_class_init (ginst->klass)'.
3004         (mono_type_get_object): Only create a MonoGenericInst if your
3005         generic type is a TypeBuilder.
3006         (do_mono_reflection_bind_generic_parameters): Only set
3007         `ginst->is_dynamic' if our generic type is a TypeBuilder.
3009 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
3011         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
3012         Fixes #56091.
3014 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3016         * icall.c: added Kill_internal icall.
3017         * process.[ch]: added Kill_internal icall.
3019 2004-03-25  Martin Baulig  <martin@ximian.com>
3021         * class.h (MonoStats): Added `generic_instance_count',
3022         `inflated_method_count', `inflated_type_count' and
3023         `generics_metadata_size'.       
3025 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3027         * reflection.c: no warnings now.
3029 2004-03-25  Martin Baulig  <martin@ximian.com>
3031         * class.c (mono_class_get_full): New public function; does a
3032         mono_class_get(), but also takes a `MonoGenericContext *'.
3034         * loader.c (mono_field_from_memberref): Renamed to
3035         `field_from_memberref', made static and added `MonoGenericContext *'
3036         argument.
3037         (mono_field_from_token): Added `MonoGenericInst *' argument.
3038         (method_from_memberef): Likewise.
3039         (mono_get_method_from_token): Likewise.
3040         (mono_get_method_full): New public function; does a
3041         mono_get_method(), but also takes a `MonoGenericContext *'.
3043         * verify.c (mono_method_verify): Get the method's generic context
3044         and pass it to mono_field_from_token(), mono_get_method_full() and
3045         mono_class_get_full().
3047 2004-03-25  Martin Baulig  <martin@ximian.com>
3049         * class.c (mono_class_inflate_generic_type): Take a
3050         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
3051         `MonoGenericMethod *'.
3053 2004-03-25  Martin Baulig  <martin@ximian.com>
3055         * loader.h (MonoMethodInflated): Store the MonoGenericContext
3056         instead of the MonoGenericMethod here.
3058 2004-03-25  Martin Baulig  <martin@ximian.com>
3060         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
3061         each time we create a new MonoGenericInst, we also create a new
3062         context which points back to us.
3064         * class.c (inflate_method): Use `ginst->context' instead of
3065         creating a new context.
3067         * loader.c (method_from_memberref): Use
3068         `klass->generic_inst->context' instead of creating a new context.
3070 2004-03-25  Martin Baulig  <martin@ximian.com>
3072         * class.h (MonoGenericContext): New struct.
3073         (MonoGenericMethod): Removed `generic_inst'.
3075         * class.c (mono_class_inflate_generic_method): Take a
3076         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
3078 2004-03-25  Martin Baulig  <martin@ximian.com>
3080         * loader.h (MonoMethodInflated): New typedef.
3082         * metadata.h (MonoMethodSignature): Removed `gen_method', make
3083         `generic_param_count' consume just 30 bits, added `is_inflated'
3084         and `has_type_parameters' flags (one bit each).
3086         * class.c (mono_class_inflate_generic_method): Create a
3087         MonoMethodInflated instead of a MonoMethodNormal and set
3088         `is_inflated' in the method signature.
3090         * class.h (MonoGenericMethod): Removed `generic_method'.
3092 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
3094         * image.c: Make sure the name of a MonoImage is always an absolute path.
3095           This fixes bug #54415.
3097 2004-03-24  Martin Baulig  <martin@ximian.com>
3099         * class.c (mono_class_setup_vtable): If we're a generic instance,
3100         use our generic type's vtable size.
3102 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
3104         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
3105         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
3106         problems.
3108 2004-03-23  Martin Baulig  <martin@ximian.com>
3110         * class.h (MonoDynamicGenericInst): Added `int count_events' and
3111         `MonoEvent *events'.
3113         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
3114         (typebuilder_icalls): Added "get_event_info"; calls
3115         mono_reflection_event_builder_get_event_info(). 
3117         * reflection.c (mono_reflection_generic_inst_initialize): Added
3118         `MonoArray *events'.
3119         (mono_reflection_event_builder_get_event_info): New function.
3121 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
3123         * object.h: add mono_type_initialization_init
3125         * object.c (mono_runtime_class_init): 
3126         implement class constructor synchronization rules
3127         to cope with threading issues.  
3128         add mono_type_initialization_init
3130         * appdomain.c (mono_runtime_init): call 
3131         mono_type_initialization_init
3133         * class.h: removing initializing field from MonoVTable
3135 2004-03-23  Martin Baulig  <martin@ximian.com>
3137         * class.c (my_mono_class_from_generic_parameter): Use
3138         `param->name' if it's not NULL. 
3140 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
3142         * class.c: do not insert non-virtual methods in the vtable.
3143         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
3144         that means the method is non-virtual. This never would have
3145         happened before.
3147 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
3149         * profiler.c: Added lock for accessing coverage_hash.
3151 2004-03-22  Martin Baulig  <martin@ximian.com>
3153         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
3154         `method->method->signature->generic_param_count != 0' to make it
3155         work for interface methods.
3157 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3159         * process.c: quote the string passed to the shell using g_shell_quote.
3161 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3163         * threads.c:
3164         (mono_threads_manage): don't remove the finalizer thread and self
3165         from the threads hash table so that mono_thread_manage can be called
3166         more than once.
3168 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3170         * process.c: quote the arguments when UseShellExecute is true. Fixes
3171         bug #55790.
3173 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3175         * threads.c: set mono_thread_detach as a cleanup routine for every
3176         thread. This way it's always executed upon thread termination, either
3177         aborted or finished normally. No more xsp hangs!
3179 2004-03-17  Martin Baulig  <martin@ximian.com>
3181         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
3182         `int count_nested' and a `MonoType **nested'.
3184         * reflection.c (mono_reflection_bind_generic_parameters): Moved
3185         most of the functionality into a new static
3186         do_mono_reflection_bind_generic_parameters() and don't take a
3187         `MonoType *nested_in' argument any more.  Don't compute nested
3188         types here.
3189         (mono_reflection_generic_inst_get_nested_types): New public method
3190         to get nested types.
3192         * class.c (mono_class_create_generic): Set `klass->nested_in' if
3193         we're a nested class.
3195         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
3196         mono_reflection_generic_inst_get_nested_types() to compute the
3197         nested types.
3199 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3201         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
3202         descriptive error message under windows.
3203         
3204 2004-03-17  Martin Baulig  <martin@ximian.com>
3206         * class.c (dup_type): Added `const MonoType *original' argument;
3207         copy the attrs from the original type.
3209 2004-03-17  Martin Baulig  <martin@ximian.com>
3211         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
3212         `m->generic_inst_cache' here.
3214 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
3216         * exception.h exception.c: Add stack_overflow_exception.
3218 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3220         * threadpool.c:
3221         (overlapped_callback): call SetEvent *after* invoking the callback.
3222         No need to call CloseHandle.
3224 2004-03-16  Martin Baulig  <martin@ximian.com>
3226         * reflection.c (mono_image_get_fieldref_token): Take a
3227         `MonoReflectionField *' instead of a `MonoClassField *' and a
3228         `MonoClass *'; store the `MonoReflectionField *' in the hash.
3230 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3232         * appdomain.c: don't add the culture to the filename we're looking for
3233         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
3235 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3237         * locales.c: don't ignore symbols when doing case insensitive compares.
3238         Thanks Dick! Fixes bug #54046.
3240         * threads.c: surround 'threads' usage with enter/leave in
3241         mono_thread_manage.
3243 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
3245         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
3246         implicitly marshalled as [Out]. Fixes #55450.
3248         (mono_marshal_get_runtime_invoke): Zero out the result if there is
3249         an exception.
3251 2004-03-16  Martin Baulig  <martin@ximian.com>
3253         * class.c (mono_class_from_generic_parameter): Use the actual
3254         parameter name. 
3256 2004-03-16  Martin Baulig  <martin@ximian.com>
3258         * reflection.c (type_get_signature_size): New static function.
3259         Compues the size of the type in a method signature.
3260         (method_get_signature_size): New static function; calls
3261         type_get_signature_size() to compute the actual size of the
3262         method's signature.
3263         (method_encode_signature): Use method_get_signature_size() to get
3264         the signature's size rather than using `nparams * 10'.
3266 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3268         * file-io.h: define here WapiOverlapped on windows. I don't want the
3269         regular OVERLAPPED one.
3271         * file-io.c:
3272         * threadpool.c: somehow, BindIoCompletionCallback is not found.
3273         Disabling AIO on windows.
3275 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3277         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
3278         bug #55385.
3280 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3282         * appdomain.c: upgraded corlib version.
3284         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
3285         and BeginWrite. Allow opening files for asynchrnous operations.
3287         * file-io.h: new struct that maps FileStreamAsyncResult.
3288         * icall.c: added new icalls.
3289         * process.[ch]: support setting child process environment variables
3290         and use the SHELL or COMSPEC when UseShellExecute is true.
3292         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
3293         callback for async. IO is here and also BindHandle.
3295         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
3296         from here.
3298 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
3300         * reflection.c (create_custom_attr): Allow len == 0.
3302         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
3303         computation on big-endian machines.
3305 2004-03-13  Martin Baulig  <martin@ximian.com>
3307         * class.h (MonoGenericInst): Added `int count_ifaces'.
3309         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
3310         `ginst->count_ifaces' instead `klass->interface_count' since we
3311         may get called before the vtable is created.
3313         * loader.c (mono_method_get_param_names): If we're a generic
3314         instance, return and don't initialize the class.
3316         * reflection.c (mono_reflection_setup_generic_class): Don't call
3317         ensure_runtime_vtable().
3318         (mono_reflection_bind_generic_parameters): Set
3319         `ginst->count_ifaces'.
3321 2004-03-11  Jackson Harper <jackson@ximian.com>
3323         * icall.c:
3324         * unicode.c:
3325         * unicode.h: Remove unused System.Char icalls.
3326         
3327 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
3329         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
3330         code when we P/Invoke the first library in Windows.Forms, instead
3331         of when we first open the assembly.
3333         * assembly.c: Drop the lookup from here.
3335 2004-03-10  Martin Baulig  <martin@ximian.com>
3337         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
3338         class for properties, fields and events.  Finally fixes #54945.
3340 2004-03-10  Martin Baulig  <martin@ximian.com>
3342         * metadata.c (mono_metadata_class_equal): New static function;
3343         checks whether two generic instances or two generic parameters are
3344         equal.
3345         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
3346         compare classes.        
3348 2004-03-10  Martin Baulig  <martin@ximian.com>
3350         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
3352         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
3353         argument and write it into the `reflection_info' field.
3355         * icall.c
3356         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
3357         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
3359 2004-03-09  Jackson Harper  <jackson@ximian.com>
3361         * char-conversions.h: use 8 bits for numeric data its all we need
3362         * icall.c: numeric data is only 8 bits now.
3364 2004-03-09  Martin Baulig  <martin@ximian.com>
3366         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
3368         * class.c (init_properties, init_events): Initialize the new
3369         `parent' field.
3371         * reflection.c (typebuilder_setup_properties): Likewise.
3372         (typebuilder_setup_events): Likewise.
3374         * reflection.h (MonoEventInfo): Replaced `parent with
3375         `declaring_type' and `reflected_type'.
3377         * icall.c (ves_icall_get_property_info): Distinguish between
3378         declaring and reflected type.
3379         (ves_icall_get_event_info): Likewise.
3381 2004-03-09  Martin Baulig  <martin@ximian.com>
3383         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
3384         (ves_icall_Type_GetField): Correctly set field->klass.
3386 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
3388         * loader.h: Fix warning.
3390 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
3392         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
3393         library routine if present.  Notice that it will still continue
3394         executing even if its missing, for those working on the Gtk#
3395         edition of Windows.Forms.
3397         * assembly.c (do_mono_assembly_open): If loading the
3398         System.Windows.Forms call mono_loader_wini_init.
3400 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
3402         * class.h: Added MonoRemoteClass struct.
3403         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
3404         function for MonoStrings.
3405         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
3406         Added internal call for getting the proxy type.
3407         * marshal.c: Get the type of transparent proxies from its remote_class.
3408         Added methods that generate the IL for type checks and casts:
3409         mono_marshal_get_isinst, mono_marshal_get_castclass, 
3410         mono_marshal_get_proxy_cancast.
3411         * marshal.h: Declaration of the previous new methods.
3412         * object.c: Added new moethods for creating and updating MonoRemoteClass
3413         instances: mono_remote_class, mono_upgrade_remote_class, 
3414         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
3415         * verify.c: FIx transparent_proxy_fields layout.
3416         * appdomain.c: Bump corlib version.
3418 2004-03-04  Jackson Harper  <jackson@ximian.com>
3420         * icall.c: Add icall to access char conversion tables.
3421         * char-conversions.h: Character conversion tables.
3422         * Makefile.am: Add char-conversions.h private header file.
3423         
3424 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
3426         * appdomain.c (unload_thread_main): Increase unloading timeout to
3427         10 sec as a temporary workaround for Nant problems.
3429 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
3431         * gc.c: Add checks for GC_enable and GC_disable.
3433         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
3434         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
3435         (bug #54988).
3436         
3437 2004-02-27  Martin Baulig  <martin@ximian.com>
3439         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3440         `MonoReflectionType *' instead of a `MonoType *'.
3442 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
3444         * gc.c (run_finalize): Avoid finalizing the object representing the
3445         finalizer thread.
3446         (finalizer_thread): Fix warning.
3448 2004-02-25  Martin Baulig  <martin@ximian.com>
3450         * class.c (_mono_class_get_instantiation_name): Added `int offset'
3451         argument for nested types.
3452         (mono_class_create_generic): Added support for nested generictypes.
3454         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
3455         `GList *nested'.
3457         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
3459         * reflection.c (method_encode_signature): Increase the minimum
3460         value of `size' from 10 to 11.
3461         (mono_reflection_bind_generic_parameters): Take `int type_argc'
3462         and `MonoType **types' arguments instead of the `MonoArray
3463         *types'; added `MonoType *nested_in'.  Recursively instantiate
3464         nested classes. 
3466 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
3468         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
3469         stack_overflow_ex members which are used by exception handling.
3471         * appdomain.c (mono_runtime_init): Initialize the new members.
3473         * gc.c (mono_gc_enable): New helper function.
3474         * gc.c (mono_gc_disable): New helper function.
3476 2004-02-23  Martin Baulig  <martin@ximian.com>
3478         * icall.c: I must have been really stupid - make it actually work
3479         this time ;-)
3481 2004-02-23  Martin Baulig  <martin@ximian.com>
3483         * loader.c (method_from_memberref): Only inflate the method if
3484         it's in another klass.
3486 2004-02-23  Martin Baulig  <martin@ximian.com>
3488         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
3489         (mono_class_init): If we're a generic instance and an interface,
3490         compute `class->interface_id'; also create `class->interfaces'
3491         here and inflate them.
3493         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
3494         `ginst->is_open'.
3495         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
3497         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
3499 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
3501         * reflection.c (method_encode_code): Improved the error message
3502         generated by the exception.
3504 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3506         * icall.c: Martin did not do what he said in the ChangeLog for
3507         2004-02-18, but put back the changes for properties and events.
3508         Commenting those changes out again and adding comment to bug #54518.
3509         
3510         * process.c: removed warning.
3512 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
3514         * marshal.c (emit_struct_conv): Print an error message instead of
3515         asserting when a type does not have the StructLayout attribute.
3517 2004-02-20  Martin Baulig  <martin@ximian.com>
3519         * reflection.c (mono_type_get_object): Also use the cache for
3520         generic instances.
3521         (mono_reflection_bind_generic_parameters): Always compute
3522         `ginst->ifaces'.        
3524 2004-02-20  Martin Baulig  <martin@ximian.com>
3526         * class.h (MonoGenericMethod): Removed `klass'.
3528         * class.c (mono_class_inflate_generic_method): Added `MonoClass
3529         *klass' argument.
3531 2004-02-20  Martin Baulig  <martin@ximian.com>
3533         * reflection.c (method_encode_methodspec): Actually use the
3534         uninflated signature for the memberref.
3536 2004-02-20  Martin Baulig  <martin@ximian.com>
3538         * class.h (MonoGenericMethod): Removed `declaring'.
3540         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
3541         is NULL, compute it here.
3543 2004-02-20  Martin Baulig  <martin@ximian.com>
3545         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
3547         * metadata.c (mono_metadata_generic_inst_hash): New method.
3548         (mono_metadata_generic_inst_equal): New method.
3550         * reflection.c (mono_reflection_bind_generic_parameters): Use the
3551         `klass->image->generic_inst_cache' cache to avoid creating
3552         duplicate MonoGenericInst's.
3554         * class.c (mono_class_inflate_generic_type): Use the cache.
3556 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3558         * object.c: fixed gc descriptor calculation for embedded valuetypes.
3560 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3562         * icall.c: added Socket.WSAIoctl icall.
3564         * socket-io.[ch]: implemented
3565         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
3567 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
3569         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
3571 2004-02-18  Urs C Muff  <umuff@quark.com>
3573         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
3574         this work on PPC and other big-endian architectures.
3576         * debug-mono-symfile.h: Prepended the names of all the `guint32'
3577         fields with an underscore to make sure they're only accessed by
3578         the read32() macro.
3580 2004-02-18  Martin Baulig  <martin@ximian.com>
3582         * icall.c: Put the klass->refclass changes back for methods and
3583         fields, but not for properties and events.  We're currently not
3584         distinguishing between DeclaringType and ReflectedType for
3585         properties and events, that's what caused the regressions.
3587 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3589         * object.c:
3590         (mono_async_result_new): the handle can be NULL.
3592         * threadpool.c: Use an event instead of a semaphore, don't initialize
3593         it until needed. This saves quite a few semaphores from being created
3594         when using the threadpool.
3596 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
3598         * object.c (mono_string_is_interned_lookup): Fix interning of long
3599         strings. Fixes #54473.
3601         * domain.c (ldstr_equal): Optimize if the two strings are equal.
3603         * icall.c: Revert the klass->refclass changes since they introduce
3604         regressions (bug #54518).
3606 2004-02-18  Martin Baulig  <martin@ximian.com>
3608         * class.c (mono_class_init): If we're a generic instance and don't
3609         come from a TypeBuilder, inflate our members here.
3610         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
3611         (mono_class_create_generic): New public method.
3612         (mono_class_initialize_generic): Removed.
3613         (get_instantiation_name): Renamed to
3614         _mono_class_get_instantiation_name() and made it public.
3616 2004-02-18  Martin Baulig  <martin@ximian.com>
3618         * class.c (mono_class_inflate_generic_type): Clear the new
3619         instance's `nginst->klass' when inflating a generic instance.
3620         (mono_class_is_subclass_of): Added (basic) support for generic
3621         instances.
3623 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
3625         * appdomain.h, domain.c: use a MonoCodeManager instead of a
3626         MonoMempool to hold compiled native code.
3628 2004-02-17  Martin Baulig  <martin@ximian.com>
3630         * class.h (MonoDynamicGenericInst): Added `count_properties' and
3631         `properties'.
3633         * reflection.c (mono_reflection_generic_inst_initialize): Added
3634         `MonoArray *properties' argument.
3636         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
3638 2004-02-17  Martin Baulig  <martin@ximian.com>
3640         * icall.c (ves_icall_Type_GetFields): Renamed to
3641         ves_icall_Type_GetFields_internal() and added a
3642         `MonoReflectionType *rtype' argument; pass it to
3643         mono_field_get_object() to set the field's "reflected" type.
3644         (ves_icall_Type_GetConstructors): Likewise.
3645         (ves_icall_Type_GetEvents): Likewise.
3646         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
3647         argument; pass it to mono_method_get_object() to set the method's
3648         "reflected" type.       
3650 2004-02-17  Martin Baulig  <martin@ximian.com>
3652         * class.h (MonoDynamicGenericInst): New type.
3653         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
3655         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
3656         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
3657         (ves_icall_MonoGenericInst_GetFields): New interncall.
3659         * class.c (mono_class_from_generic): Don't call
3660         mono_class_initialize_generic() if this is a dynamic instance;
3661         ie. it's being created from a TypeBuilder.
3662         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
3663         `class->byval_arg.type'.
3665         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
3666         to `inflate_method' and made static.
3667         (mono_reflection_inflate_field): Removed.
3668         (mono_reflection_generic_inst_initialize): New public method.
3670         * reflection.h (MonoReflectionGenericInst): Removed `methods',
3671         `ctors' and `fields'; added `initialized'.
3673 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3675         * debug-helpers.c (mono_method_full_name): Fix output for empty
3676         namespaces.
3678 2004-02-12  Martin Baulig  <martin@ximian.com>
3680         * class.h (MonoClassField): Added `MonoType *generic_type'.
3682         * reflection.c (mono_image_get_fieldref_token): Added support for
3683         instantiated generic types.
3684         (field_encode_inflated_field): Removed.
3685         (mono_image_get_inflated_field_token): Removed.
3686         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
3688         * reflection.h (MonoReflectionInflatedField): Removed.
3690 2004-02-12  Martin Baulig  <martin@ximian.com>
3692         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
3693         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
3695         * reflection.c (mono_image_get_methodspec_token): Take a
3696         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
3697         (mono_image_create_token): Check whether we have a
3698         `method->signature->gen_method' and call
3699         mono_image_get_methodspec_token() if appropriate.
3700         (inflated_method_get_object): Removed.
3701         (mono_reflection_bind_generic_method_parameters): Return a
3702         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
3703         (mono_reflection_inflate_method_or_ctor): Likewise.
3705         * reflection.h (MonoReflectionInflatedMethod): Removed.
3707 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
3709         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
3710         for custom valuetype marshalling.
3712         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
3714 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3716         * icall.c: fixed WSAGetLastError_internal name.
3718 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
3720         * threads.c (mono_thread_attach): Allow this to be called multiple
3721         times for a thread.
3722         
3723         * threads.c (build_wait_tids): Do not wait for ourselves.
3725         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
3726         appdomain list is empty.
3728         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
3729         memory returned by mono_string_builder_to_utf16, since it points into
3730         managed memory. Thanks to Bernie Solomon for noticing this.
3732         * icall.c: Add AppDomainSetup icalls.
3734         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
3736         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
3737         types.
3739         * reflection.c (reflection_methodbuilder_to_mono_method): Save
3740         custom attributes to the method_aux struct. Also fix array indexes etc.
3742         * loader.c (mono_method_get_param_names): Make dynamic case work again.
3743         
3744 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
3746         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
3747         (both static and runtime) and reduce startup time.
3749 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3751         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
3752         AsAny marshalling conversion instead of crashing.
3754         * marshal.c: Fix warnings.
3756 2004-02-09  Martin Baulig  <martin@ximian.com>
3758         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
3760         * reflection.h (MonoReflectionInflatedMethod): Removed the
3761         `declaring' field, it's now in the unmanaged MonoGenericMethod.
3763         * reflection.c (method_encode_methodspec): Removed the `method'
3764         argument; we get it from `gmethod->declaring'.
3765         (inflated_method_get_object): Removed the `declaring' argument.
3767 2004-02-09  Martin Baulig  <martin@ximian.com>
3769         * class.h (MonoGenericMethod): New type.
3770         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
3771         `generic_method'.
3773         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
3774         a `MonoGenericMethod *gen_method' one.
3776         * class.c (mono_class_inflate_generic_type): Take an additional
3777         `MonoGenericMethod * argument.  This is only non-NULL if we're
3778         inflating types for a generic method.   
3779         (mono_class_inflate_generic_signature): Renamed to
3780         inflate_generic_signature() and made static; take a
3781         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3782         (inflate_generic_header): Take a `MonoGenericMethod *' argument
3783         instead of a `MonoGenericInst *' one.
3784         (mono_class_inflate_generic_method): Likewise.
3786         * reflection.c (encode_generic_method_sig): Take a
3787         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3788         (method_encode_methodspec): Likewise.
3789         (inflated_method_get_object): Likewise. 
3791         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
3792         field with a `MonoGenericMethod *gmethod' one.  
3794 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
3796         * class.h (mono_class_has_parent): add parens to expansion
3797         so you can ! this.
3799 2004-02-08  Martin Baulig  <martin@ximian.com>
3801         * image.h (MonoImage): Removed `generics_cache'.
3803         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
3804         instead of a `MonoType *' argument; removed the `inflate_methods'
3805         argument.  Don't inflate methods here.
3807         * loader.c (find_method): If it's a generic instance, call
3808         mono_class_init() on the `sclass->generic_inst->generic_type'.
3810         * metadata.c (mono_type_size): Make this work on uninitialized
3811         generic instances; call it on the `ginst->generic_type's class.
3813         * reflection.c (mono_reflection_bind_generic_parameters): Call
3814         mono_class_from_generic() to create the `ginst->klass'.
3816 2004-02-08  Martin Baulig  <martin@ximian.com>
3818         * class.h (MonoClass): Changed type of `generic_inst' from
3819         `MonoType *' to `MonoGenericInst *'.
3821 2004-02-08  Martin Baulig  <martin@ximian.com>
3823         * icall.c (ves_icall_Type_BindGenericParameters): Just call
3824         mono_type_get_object(), this is now creating a `MonoGenericInst'
3825         for MONO_TYPE_GENERICINST.
3826         (ves_icall_MonoGenericInst_GetParentType): Likewise.
3827         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
3829         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
3830         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
3831         (inflated_method_get_object): Added `MonoClass *refclass' argument.
3832         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
3833         and reflected type.
3835         * reflection.h (MonoReflectionInflatedMethod): Removed
3836         `declaring_type' and `reflected_type'.
3838 2004-02-08  Martin Baulig  <martin@ximian.com>
3840         * class.h (MonoGenericInst): Added `MonoType *parent' and
3841         `MonoType **ifaces'.
3843         * reflection.h (MonoReflectionGenericInst): Removed `klass',
3844         `parent' and `interfaces'.
3846         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3847         `MonoType *' argument and return a `MonoType *'.
3849         * icall.c
3850         (ves_icall_MonoGenericInst_GetParentType): New interncall.
3851         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
3853 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3855         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
3856         valuetype marshalling.
3858 2004-02-06  Martin Baulig  <martin@ximian.com>
3860         * class.c
3861         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
3862         (my_mono_class_from_generic_parameter): Likewise.
3864 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3866         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
3867         contents of the symbol files lazily.
3869         * object.h (MonoThread): Add 'name' and 'name_len' fields.
3871         * threads.h threads.c icall.c: New icalls for getting and setting the
3872         threads name.
3874 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
3876         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
3877         Raise an exception when the domain is not found.
3879 2004-02-03  Martin Baulig  <martin@ximian.com>
3881         * reflection.c (mono_image_get_methodspec_token): Use the
3882         uninflated signature; fixes gen-33.
3884 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3886         * gc.c threads.c: Make the finalizer thread a normal managed thread so
3887         the finalizer code can use thread functionality.
3889         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
3890         the finalizer thread.
3892         * threads.c: Make some functions more robust.
3894         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
3896         * metadata.h: Add new marshalling conventions.
3898         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
3899         stringbuilder marshalling. Fixes #53700.
3901         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
3903         * reflection.c (mono_image_get_type_info): Save declarative security
3904         info.
3906         * reflection.c (mono_image_get_field_info): Handle uninitialized 
3907         unmanaged fields as well.
3909         * appdomain.c: Bump corlib version.
3911 2004-02-01  Martin Baulig  <martin@ximian.com>
3913         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
3914         method type arguments.  
3916 2004-01-30  Duncan Mak  <duncan@ximian.com>
3918         * marshal.h: Add prototype for
3919         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
3920         and
3921         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
3922         fix the build.
3924 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
3926         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
3927         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
3929 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3931         * marshal.c (mono_marshal_get_native_wrapper): Add support for
3932         custom marshalling of valuetypes.
3934         * marshal.c: Fix some warnings.
3936 2004-01-29  Martin Baulig  <martin@ximian.com>
3938         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
3939         for generic method parameters.
3941         * reflection.c (method_encode_methodspec): Write the uninflated
3942         signature into the methodspec table.
3943         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
3944         is always the uninflated method.
3945         (reflection_methodbuilder_to_mono_method): Copy the generic
3946         parameters from the MethodBuilder into `header->gen_params'.
3948 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3950         * class.c (mono_class_from_generic_parameter): Fix warning.
3952 2004-01-27  Martin Baulig  <martin@ximian.com>
3954         * class.c (mono_class_from_generic_parameter): Don't create
3955         `klass->methods' here.  
3957 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
3959         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
3960         extension since it does not work with libraries named lib<FOO>.dll.so.
3962 2004-01-25  Martin Baulig  <martin@ximian.com>
3964         * class.c (mono_class_inflate_generic_type): Added support for
3965         MONO_TYPE_GENERICINST.
3967         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
3968         inflate methods on open constructed types.      
3970 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3972         * object.c: fire ProcessExit event in the root AppDomain after running
3973         Main. Fixes bug #53299.
3975 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
3977         * socket-io.c: include the new socket-wrappers.h header.
3978         Use the wrappers instead of the unix socket functions to make the code
3979         more clear.
3981 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3983         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
3985         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3986         Fixes #22532.
3988 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
3990         * reflection.c (mono_image_create_pefile): Handle the case when the
3991         entry point is not a MethodBuilder.
3993         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3994         field to ReflectionMethod since it is not allways a builder.
3996         * reflection.c (type_get_fully_qualified_name): New helper function to
3997         return the fully qualified name of a type.
3999         * reflection.c (encode_marshal_blob): Always emit the fully qualified
4000         type name for custom marshallers.
4002         * reflection.c (mono_marshal_spec_from_builder): Ditto.
4004         * class.c (mono_class_setup_vtable): If a parent class already 
4005         implements an interface, use the implementing methods from that class.
4006         Fixes #53148.
4008 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4010         * threadpool.c: just return instead of ExitThread to allow for thread
4011         clean up earlier.
4013 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
4015         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
4016         when closing resource modules.
4018         * reflection.c (mono_image_create_pefile): Handle the case when the
4019         entry point is not a MethodBuilder.
4021         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
4022         field to ReflectionMethod since it is not allways a builder.
4024 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
4026         * marshal.c (mono_marshal_get_managed_wrapper): 
4027         mono_marshal_alloc takes native int so CONV_I
4028         the arg for 64bits.
4030 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
4032         * reflection.c (fixup_cattrs): New function to fixup the methoddef
4033         tokens in the cattr table. Fixes #53108.
4035 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4037         * loader.c: don't trim ".dll" before looking up in the config file.
4038         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
4040 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
4042         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
4043         Return the module which contains the resource as well.
4044         (ves_icall_System_Reflection_Module_Close): New icall.
4046         * appdomain.c: Bump corlib version number.
4048         * image.c (mono_image_addref): New public function.
4050         * assembly.c: Call mono_image_addref.
4052         * reflection.c (mono_module_get_object): Increase reference count of 
4053         the image.
4055         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
4056         Fixes #22532.
4058         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
4059         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
4060         proper exceptions on DllImport problems.
4062 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
4064         * class.c, metadata.c: eliminate CSIZE macro.
4066 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
4068         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
4069         * object.h: Added async_callback field in MonoAsyncResult.
4070         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
4071         * verify.c: Added async_callback in MonoAsyncResult layout.
4073 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
4075         * reflection.c (mono_reflection_get_custom_attrs): Add support
4076         for Modules.
4078 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4080         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
4081         marshalling.
4082         (mono_marshal_method_from_wrapper): Add null pointer check.
4084 2004-01-16  Martin Baulig  <martin@ximian.com>
4086         * debug-mono-symfile.h: Set version number to 36 and reflect
4087         latest symbol writer changes.
4089 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
4091         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
4092         multi-dimensional arrays.
4093         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
4094         (mono_class_from_mono_type): Use bounded_array_class_get.
4095         
4096         * class.c (mono_bounded_array_class_get): New function which takes
4097         a 'bounded' bool argument to distinguish vectors from one dimensional
4098         arrays.
4100         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
4101         bounded_array_class_get if the array has bounds.
4103         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4104         Search modules loaded using AssemblyBuilder:AddModule as well.
4106 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4108         * appdomain.c: increased corlib version.
4109         * filewatcher.c: removed g_print.
4110         * icall.c:
4111         (get_property_info): only allocate what is actually requested.
4112         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
4114 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4116         * Makefile.am: added filewatcher.[ch]
4117         * filewatcher.[ch]: FileSystemWatcher runtime support.
4118         * icall.c: added new FSW icalls.
4120 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
4122         * string-icalls.c: fix stringbuilder regression as suggested by
4123         Iain McCoy <iain@mccoy.id.au>.
4125 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
4127         * process.c (process_read_stringtable_block): Recognize '007f' as
4128         a language neutral stringtable block.
4130 2004-01-12  Patrik Torstensson
4132         * object.h (MonoStringBuilder) : Changed layout to support our
4133         new stringbuilder class.
4134         * marshal.c: Change marshalling to support the new layout of 
4135         string builder.
4136         * appdomain.c: increased version number because new layout of
4137         string builder.
4139 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
4141         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
4142         assembly name as an string instead of an AssemblyName, since it is
4143         easier to extract info from it.
4145         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
4146         the culture subdirectories too. Fixes #52231.
4148 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4150         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
4151         It takes 2 new parameters with an optional name for the method to look
4152         for and case ignoring info.
4154         * threadpool.c: removed unused variable.
4156 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4158         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
4159         It takes 2 new parameters with an optional name for the property to look
4160         for and case ignoring info.
4161         Fixes bug #52753.
4163 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
4165         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
4166         Fix #52451.
4168 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4170         * appdomain.c:
4171         * assembly.c: escape the uri before passing it to g_filename_from_uri.
4172         Fixes bug #52630.
4174 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
4176         * reflection.c: Add support for more than one unmanaged resource.
4178         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
4179         in field->def_value, as done in all other cases.
4181         * reflection.c (mono_reflection_get_custom_attrs): Add support for
4182         TypeBuilders.
4184         * reflection.c (mono_reflection_create_runtime_class): Remove 
4185         errorneous assignment to klass->element_class, since it is already
4186         done in mono_reflection_setup_internal_class.
4188 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4190         * gc.c: added missing LeaveCriticalSection.
4191         * icall.c: indented a couple of lines.
4192         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
4193         if we call EndInvoke inside a callback. Fixes bug #52601.
4195 2004-01-07  Martin Baulig  <martin@ximian.com>
4197         * mono-debug-debugger.h
4198         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
4200 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
4202         * appdomain.c: Use messages in NotImplementedException.
4204         * exception.c (mono_get_exception_not_implemented): Now this takes
4205         a message argument.
4207         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
4208         exception instead of g_asserting an aborting when something is not
4209         implemented.
4211         Add some inline docs.
4213 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
4215         * reflection.h: Update after changes to object layout.
4217         * reflection.c: Implement saving of unmanaged aka win32 resources.
4219         * appdomain.c: Bump version number.
4221         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
4222         Handle missing domains gracefully.
4224 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
4226         * file-io.c : On Windows, there are much more invalid_path_chars.
4228 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
4230         * class.h, object.c: prepare for GetType () speedup.
4232 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
4234         * profiler.c: workaround for --profile null reference exception on
4235           cygwin. Patch by Patrik Torstensson.
4237 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
4239         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
4240         make work for unaligned access.
4242 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
4244         * class.c: small cleanup (class->fields [i] -> field).
4245         * image.c: check address of metadata is valid.
4247 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
4249         * assembly.h assembly.c (mono_assembly_loaded): New public function to
4250         search the list of loaded assemblies.
4252         * reflection.c (mono_reflection_type_from_name): Use 
4253         mono_assembly_loaded instead of mono_image_loaded.
4255         * reflection.c: Fix warnings.
4257 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
4259         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
4260         is dynamic. This is needed since an assembly can contain both dynamic and
4261         non-dynamic images.
4263         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
4264         assembly->dynamic.
4266         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
4268         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
4269         to store modules loaded using AddModule.
4271         * reflection.c (mono_image_fill_file_table): Generalize this so it works
4272         on Modules.
4274         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
4276         * reflection.c (mono_image_fill_export_table_from_module): New function to
4277         fill out the EXPORTEDTYPES table from a module.
4279         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
4280         into a separate function. Also handle loaded non-dynamic modules.
4282         * reflection.c (mono_image_basic_init): Fix memory allocation.
4284         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4286         * assembly.c (mono_assembly_load_references): Make this public.
4288 2003-12-19  Martin Baulig  <martin@ximian.com>
4290         * class.c (mono_class_initialize_generic): Made this static, take
4291         a `MonoGenericInst *' instead of a `MonoClass *'.
4292         (mono_class_from_generic): Call mono_class_initialize_generic()
4293         unless we're already initialized or being called from
4294         do_mono_metadata_parse_generic_inst().
4296         * class.h (MonoGenericInst): Added `initialized' and
4297         `init_pending' flags.
4299         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
4300         `mono_class_init (gklass)' or mono_class_initialize_generic()
4301         here; set `generic_inst->init_pending' while parsing the
4302         `type_argv'.
4304 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
4306         * locales.c: include string.h for memxxx prototypes
4308 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
4310         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
4311         constructor when accessing literal fields.
4313 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
4315         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4317         * reflection.c (assembly_add_resource_manifest): New function to fill
4318         the MANIFESTRESOURCE table.
4320         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
4322         * reflection.h: Update to changes in class layout.
4324         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
4325         Reenable call to mono_runtime_is_shutting_down ().
4327         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
4328         determine if the runtime is shutting down.
4330 2003-12-16  Jackson Harper <jackson@ximian.com>
4332         * icall.c: comment out call to mono_runtime_is_shutting_down to
4333         fix build.
4334         
4335 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
4337         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
4338         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
4340 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
4342         * reflection.c: move definition of swap_with_size
4343         to before its first call
4345 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
4347         * appdomain.c (mono_runtime_is_shutting_down): New public function.
4349         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
4350         icall.
4352         * object.c: Fix warnings.
4354         * icall.c (ves_icall_Type_Get...): Only consider inherited static
4355         members if FlattenHierarchy is set.
4357         * reflection.c (mono_image_add_decl_security): New function to emit
4358         declarative security.
4360         * reflection.h reflection.c: Add support for declarative security.
4362         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4363         
4364 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
4366         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4367         
4368         * appdomain.c verify.c: Moved corlib version checking into its own
4369         function in appdomain.c since it needs to create vtables etc.
4371 2003-12-13  Patrik Torstensson <p@rxc.se>
4373         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
4374         instead of unwrapped server.
4376 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
4378         * verify.c (check_corlib): Fix field index.
4380 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
4382         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
4383         GetGacPath icall.
4385 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
4387         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
4388         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
4389         cope with sizeof(size_t) != sizeof(guint32).
4391 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4393         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
4394         in case of failure.
4396 2003-12-10  Mark Crichton <crichton@gimp.org>
4398         * icall.c: removed the GetNonZeroBytes.  We now handle this case
4399         in managed code.
4401         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
4403 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
4405         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
4406         marked as deleted.
4408 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
4410         * verify.c (check_corlib): Handle the case when the version field is 
4411         initialized by a static constructor.
4413 2003-12-08  Patrik Torstensson  <p@rxc.se>
4415     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
4417 2003-12-08  Martin Baulig  <martin@ximian.com>
4419         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
4420         a MonoReflectionGenericParameter, also take the parameter index
4421         and name as arguments.
4422         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
4423         (ves_icall_MonoGenericParam_initialize): New interncall.
4424         (ves_icall_Type_make_byref_type): New interncall.
4426         * reflection.h (MonoReflectionGenericParam): Derive from
4427         MonoReflectionType, not just from MonoObject.  Added `refobj' and
4428         `index' fields.
4430         * reflection.c (mono_reflection_define_generic_parameter): Create
4431         and return a new MonoReflectionGenericParam; don't initialize the
4432         constraints here.
4433         (mono_reflection_initialize_generic_parameter): New public method;
4434         initializes the constraints and creates the `param->pklass'.
4436 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
4438         * reflection.h reflection.c: Use the new fields 'num_types', 
4439         'num_fields' and 'num_methods' to track the number of types etc.
4441         * verify.c (check_corlib): Check corlib version number.
4443 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
4445         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
4446         function works on all methods.
4448 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
4450         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
4451         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
4452         the custom_type_info flag of the transparent proxy.
4453         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
4454         objects that supports IRemotingTypeInfo.
4455         * object.h: Added custom_type_info field in transparent proxy.
4457 2003-12-06  Martin Baulig  <martin@ximian.com>
4459         * class.c (mono_class_create_from_generic): Removed.
4460         (mono_class_from_generic): Check `ginst->klass' before doing
4461         anything else.  This is important to fully support "recursive"
4462         generic types.
4464         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
4465         empty `generic_inst->klass' before doing anything else.
4467 2003-12-06  Dick Porter  <dick@ximian.com>
4469         * verify.c: 
4470         * object.h:
4471         * icall.c:
4472         * locales.c: Use C structs to access class fields.  Don't do a
4473         conversion between MonoString and UChar because both are
4474         platform-endian UTF-16.  Compare now takes startindex and count
4475         parameters.  Add a char overload for IndexOf.  Speed up the
4476         invariant string IndexOf.
4478 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
4480         * Makefile.am (monosn_LDADD): Fix parallel build.
4482 2003-12-04  Martin Baulig  <martin@ximian.com>
4484         * icall.c
4485         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4486         (ves_icall_Type_make_array_type): New interncall.       
4488 2003-12-04  Martin Baulig  <martin@ximian.com>
4490         * locales.c: also change it in the !HAVE_ICU case.
4492 2003-12-04  Dick Porter  <dick@ximian.com>
4494         * icall.c:
4495         * locales.c: construct_compareinfo is now in CompareInfo, not
4496         CultureInfo.
4498 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
4500         * image.c (mono_image_load_file_for_image): Cache loaded images in the
4501         image->files array.
4503         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
4504         table as well.
4506         * assembly.c (mono_assembly_load_references): Only load references
4507         once.
4509         * class.c (mono_class_from_name): Avoid linear search of the 
4510         EXPORTEDTYPE table.
4512         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
4514 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
4516         * image.h (MonoImage): Add 'field_cache' field.
4518         * loader.c (mono_field_from_token): Cache field lookups.
4519         
4520         * reflection.c (mono_module_get_object): Fix name property.
4522         * icall.c (ves_icall_get_enum_info): Update after changes to 
4523         mono_metadata_get_constant_index ().
4525         * icall.c: Get rid of get_type_info icall, use a separate icall for
4526         each type property to avoid needless memory allocations. Fixes #51514.
4528         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
4529         to avoid needless binary searches.
4531         * class.c (class_compute_field_layout): Move the initialization of
4532         field->def_value to mono_class_vtable ().
4534         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
4535         non-corlib types.
4537         * object.c (mono_object_allocate): Make it inline.
4539         * object.c (mono_object_allocate_spec): Make it inline.
4540         
4541 2003-12-02  Dick Porter  <dick@ximian.com>
4543         * locales.c (create_NumberFormat): NumberFormatInfo construction.
4544         Patch by Mohammad DAMT (mdamt@cdl2000.com).
4546 2003-12-01  Dick Porter  <dick@ximian.com>
4548         * threads.c: Fix signature and call in CreateMutex and
4549         CreateEvent.
4551 2003-12-01  Dick Porter  <dick@ximian.com>
4553         * icall.c: 
4554         * locales.c: Implement string compares and searching
4556         * object.h: Add extra Thread field
4558 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
4560         * reflection.c (fixup_method): Add support for MonoCMethod.
4562 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
4564         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
4566         * reflection.c (assembly_name_to_aname): Allow extra characters in
4567         assembly names. Fixes #51468.
4569 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
4571         * exception.c (mono_exception_from_name_domain): New helper function.
4573         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
4574         exception object in the correct domain.
4576         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
4577         formatting + make a copy a the input data.
4579         * loader.c (mono_get_method_from_token): Methods which contain
4580         native code do not have entries in the ImplMap.
4582         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
4583         Thanks to Gonzalo for spotting this.
4584         
4585         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
4586         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
4588         * assembly.h (mono_assembly_load_from): Split the second part of 
4589         assembly loading into a new public function.
4591         * exception.h (mono_get_exception_bad_image_format): New function.
4593 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
4595         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4596         Enumerate all modules inside a dynamic assembly. Fixes #51293.
4597         
4598         * icall.c: Add new icall for creating dynamic methods.
4600         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
4602         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
4604         * reflection.c (mono_reflection_create_dynamic_method): New icall to
4605         create a dynamic method.
4607         * reflection.c (resolve_object): New helper function.
4609         * reflection.c: Generalize ReflectionMethodBuilder and the functions
4610         which manipulate it so they can also work on dynamic methods.
4612         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
4613         creating the MonoReflectionMethodAux structure if it is not needed.
4614         
4615         * reflection.h verify.c: Update after changes to object layout.
4617         * reflection.c (method_builder_encode_signature): Fix compilation on
4618         gcc 2.95.x.
4620 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
4622         * appdomain.h: Added support for context static fields. Added static_data
4623           field to MonoAppContext and renamed thread_static_fields to a more
4624           generic special_static_fields in MonoAppDomain, since it can now contain
4625           context static fields.
4626         * domain.c: Updated hashtable name.
4627         * object.c: Replaced field_is_thread_static() for a more generic
4628           field_is_special_static() which also checks for context static attribute.
4629           In mono_class_vtable(), added support for static context fields.
4630         * threads.c: Changed methods that manage thread static fields to more
4631           generic methods so they can be reused both for thread and context static
4632           data.
4633         * threads.h: Declared some new methods.
4635 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
4637         * reflection.h: Update after changes to the managed types.
4639         * reflection.c (encode_custom_modifiers): New helper function.
4641         * reflection.c (method_encode_signature): Emit custom modifiers.
4643         * reflection.c (field_encode_signature): Emit custom modifiers.
4645 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
4647         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
4649         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
4650         implementation.
4652         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
4653         icall.
4655         * object.c (mono_field_get_value_object): New function.
4657         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
4658         specific.
4660 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
4662         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
4663         return a preallocated out-of-memory exception instance.
4665         * object.c (out_of_memory): Use the new function.
4667         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
4668         flag is before the custom modifiers. Fixes #49802.
4670 2003-11-16  Martin Baulig  <martin@ximian.com>
4672         * class.c (mono_class_is_open_constructed_type): Implemented the
4673         MONO_TYPE_GENERICINST case.
4675 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
4677         * assembly.c (mono_assembly_fill_assembly_name): New function to
4678         fill out the MonoAssemblyName structure.
4679         (mono_assembly_open): Use the new function.
4681         * icall.c (fill_reflection_assembly_name): New helper function.
4683         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
4684         new function.
4686         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
4688 2003-11-15  Martin Baulig  <martin@ximian.com>
4690         * class.c (mono_class_is_open_constructed_type): New public
4691         function; checks whether a type is an open constructed type,
4692         ie. whether it still contains type parameters.
4693         (mono_class_inflate_generic_type): If we're a type parameter and
4694         the inflated type is also a MONO_TYPE_(M)VAR, return the original
4695         type.
4697         * class.h (MonoGenericInst): Added `guint32 is_open'.
4699         * loader.c (method_from_methodspec): Check whether we're an open
4700         or closed constructed type and set `ginst->is_open'.
4702         * reflection.c (mono_reflection_bind_generic_parameters): Check
4703         whether we're an open or closed constructed type and set
4704         `ginst->is_open'.
4705         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
4706         from open constructed types.
4708 2003-11-15  Martin Baulig  <martin@ximian.com>
4710         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4711         a generic instance (instead of a generic type declaration) with
4712         unbound generic parameters, bind them to our actual types.
4714 2003-11-14  Martin Baulig  <martin@ximian.com>
4716         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
4718         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4719         an interface type, populate `res->interfaces' with instantiated
4720         versions of all the interfaces we inherit.
4722 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
4724         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
4725         when MONO_PATH is set but doesn't contain the install dir.
4727 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4729         * icall.c:
4730         (ves_icall_Type_GetInterfaces): don't return an interface twice when
4731         it's also implemented in base classes. Fixes bug #50927.
4733 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
4735         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
4736         if this method is called from a finalizer. Fixes #50913.
4738 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
4740         * threads.c: Implement VolatileRead/VolatileWrite
4742         * icall.c: Add new icalls for VolatileRead/VolatileWrite
4744 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4746         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
4747         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
4748         2.95.3.
4750         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
4751         from Peter Ross (pro@missioncriticalit.com).
4752         
4753 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
4755         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
4757 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4759         * assembly.c (mono_assembly_load_references): Disable check because it
4760         triggers on older corlibs which lots of people have.
4762 2003-11-12  Jackson Harper  <jackson@ximian.com>
4764         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
4765         load corlib.dll if mscorlib.dll is not found.
4766         * assembly.h: Remove corlib name define.
4767         * class.c:
4768         * domain.c:
4769         * image.c: Change corlib name to mscorlib.
4770         
4771 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4773         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
4775 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
4777         * appdomain.h: Added loader_optimization here to sync with the C#
4778         code, and add disallow_binding_redirects field.
4780 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4782         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
4784         * reflection.c (mono_image_build_metadata): Fix crash on modules
4785         with no types.
4787         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
4789         * icall.c (ves_icall_get_method_info): Return callingConvention as
4790         well.
4792         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
4793         namespaces from the EXPORTEDTYPE table as well.
4795         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
4796         from all modules inside the assembly.
4797         
4798 2003-11-11  Martin Baulig  <martin@ximian.com>
4800         * reflection.c (mono_reflection_bind_generic_parameters): Make
4801         this work for interfaces.
4803 2003-11-11  Martin Baulig  <martin@ximian.com>
4805         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
4807 2003-11-11  Martin Baulig  <martin@ximian.com>
4809         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
4810         "MonoInflatedMethod" and "MonoInflatedCtor".
4812 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4814         * reflection.c (resolution_scope_from_image): Use the assembly table
4815         from the manifest module, since other modules don't have it.
4817         * debug-helpers.c (mono_type_full_name): New helper function.
4819         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
4821         * image.c (mono_image_load_file_for_image): New public function which
4822         is a replacement for the load_file_for_image in class.c.
4824         * assembly.c (mono_assembly_load_module): A wrapper for the function
4825         above which does assembly association and reference loading too.
4827         * class.c (mono_class_from_name): Call mono_assembly_load_module.
4829 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4831         * appdomain.c: not all of the attributes for the full assembly name
4832         are required and the order doesn't matter. Fixes bug #50787.
4834 2003-11-10  Dick Porter  <dick@ximian.com>
4836         * locales.c: Use platform-endian UTF16
4838 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4840         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4841         
4842 2003-11-10  Martin Baulig  <martin@ximian.com>
4844         * metadata.c
4845         (mono_metadata_load_generic_params): Make this actually work.
4847         * reflection.c (mono_reflection_bind_generic_parameters): If our
4848         parent is a generic instance, pass all the `types' to it, no
4849         matter whether it has the same number of type parameters or not.
4851 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4853         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4855         * assembly.c (mono_assembly_load_references): Move the image<->assembly
4856         assignment code to this function so it gets called recursively for all
4857         modules.
4859         * image.c (load_modules): Remove the assembly assignment since it is
4860         now done by mono_assembly_load_references.
4861         
4862         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4863         Add 'module' argument.
4864         (mono_module_get_types): New helper function.
4865         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
4867 2003-11-08  Martin Baulig  <martin@ximian.com>
4869         * class.c (mono_class_inflate_generic_method): Interface method
4870         don't have a header.
4872         * reflection.c (mono_image_get_methodspec_token): Take an
4873         additional `MonoGenericInst *' argument instead of reading it from
4874         the header; this is necessary to support interfaces.
4875         (mono_image_create_token): Pass the `MonoGenericInst *' from the
4876         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
4877         (inflated_method_get_object): Take an additional `MonoGenericInst *'
4878         argument.
4880         * reflection.h (MonoReflectionInflatedMethod): Added
4881         `MonoGenericInst *ginst'.
4883 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
4885         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
4887 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
4889         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
4891 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
4893         * reflection.c 
4894         (reflection_methodbuilder_from_method_builder):
4895         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
4896         initialize a ReflectionMethodBuilder structure.
4897         (mono_image_get_methodbuilder_token):
4898         (mono_image_get_ctorbuilder_token): New functions to emit memberref
4899         tokens which point to types in another module inside the same assembly.
4901         * reflection.c: Use the new helper functions.
4902         
4903         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
4905         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
4906         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
4908         * reflection.c (resolution_scope_from_image): Emit a moduleref if
4909         neccesary.
4911         * reflection.c (mono_image_build_metadata): Emit metadata only for the
4912         current module. Emit the manifest only for the main module.
4914         * reflection.c (mono_image_create_token): Add assertion when a 
4915         memberref needs to be created.
4917         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
4919         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
4920         larger buffer for the custom attribute blob. Fixes #50637.
4921         
4922 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4924         * threadpool.c: notify listener on async processing handles after
4925         invoking the async callback. Thanks to Zoltan.
4927 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4929         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
4930         avoid code duplication.
4932         * reflection.h (MonoDynamicImage): New type which is currently unused,
4933         but will be used through the ref.emit code in place of 
4934         MonoDynamicAssembly.
4936         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4937         object layout.
4939         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
4940         a MonoDynamicImage instead of just a MonoImage.
4941         
4942         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
4943         icalls to ModuleBuilder but keep their semantics, so they will work
4944         with moduleb->assemblyb. This will change later.
4945         
4946 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4948         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4949         object layout.
4951         * reflection.c (mono_image_build_metadata): Avoid creation of a default
4952         main module, since it is now done by the managed code.
4954 2003-11-03  Martin Baulig  <martin@ximian.com>
4956         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
4957         `ginst->klass' here.
4958         (method_encode_methodspec): Don't use the `ginst->generic_method's
4959         klass if it's a generic instance, use `ginst->klass' in this case.
4961 2003-11-03  Martin Baulig  <martin@ximian.com>
4963         * reflection.c (mono_image_get_generic_method_param_info):
4964         Removed, use mono_image_get_generic_param_info() instead.
4965         (mono_image_get_type_info): Write the GenericParam table before
4966         the Method table.  This is neccessary because in the GenericParam
4967         table, type parameters of the class (ie. '!0' etc.) must come
4968         before the ones from its generic methods (ie. '!!0' etc).
4970 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4972         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
4974 2003-11-02  Martin Baulig  <martin@ximian.com>
4976         * reflection.c (create_generic_typespec): Take a
4977         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
4978         the generic parameters from it.
4980 2003-11-02  Martin Baulig  <martin@ximian.com>
4982         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
4983         instead of a `MonoClassField *' since we just need the type.
4984         (create_generic_typespec): New static function.  Creates a
4985         TypeSpec token for a generic type declaration.
4986         (mono_image_get_generic_field_token): New static function.
4987         (mono_image_create_token): If we're a FieldBuilder in a generic
4988         type declaration, call mono_image_get_generic_field_token() to get
4989         the token.
4991 2003-11-02  Martin Baulig  <martin@ximian.com>
4993         * reflection.h
4994         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
4995         `MonoReflectionGenericInst *declaring_type' and
4996         `MonoReflectionGenericInst *reflected_type' fields.
4998         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
4999         `MonoReflectionGenericInst *declaring_type' and a
5000         `MonoReflectionGenericInst *reflected_type' argument instead of a
5001         single `MonoReflectionGenericInst *type' one.  Set
5002         `res->declaring_type' and `res->reflected_type' from them.
5003         (mono_reflection_inflate_field): Likewise.      
5005 2003-11-02  Martin Baulig  <martin@ximian.com>
5007         * class.c (mono_class_setup_vtable): Don't store generic methods
5008         in the vtable.  
5010 2003-11-02  Martin Baulig  <martin@ximian.com>
5012         * reflection.h (MonoReflectionGenericInst): Added
5013         `MonoReflectionType *declaring_type'.
5015         * reflection.c (mono_reflection_bind_generic_parameters): Use
5016         `if (tb->parent)' instead of `klass->parent'.
5018 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
5020         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
5021         with an empty ASSEMBLY table.
5023         * reflection.c (mono_image_build_metadata): Avoid using the same loop
5024         variable in the inner and outer loops.
5026 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
5028         * metadata.h (mono_metadata_make_token): Put parentheses around macro
5029         argument.
5031         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
5032         
5033         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
5034         icalls. Instead, do everything in managed code. This is needed since
5035         it is hard to restore the original domain etc. in unmanaged code in the
5036         presence of undeniable exceptions.
5038         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
5039         New icalls to push and pop appdomain refs.
5041 2003-10-31  Martin Baulig  <martin@ximian.com>
5043         * class.c (inflate_generic_type): Renamed to
5044         mono_class_inflate_generic_type() and made it public.
5046         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
5047         New interncall.
5049         * loader.c (mono_field_from_memberref): Also set the retklass for
5050         typespecs.
5052         * fielder.c (mono_image_get_inflated_field_token): New static
5053         method; creates a metadata token for an inflated field.
5054         (mono_image_create_token, fixup_method): Added support for
5055         "MonoInflatedField".
5056         (fieldbuilder_to_mono_class_field): New static function.
5057         (mono_reflection_inflate_field): New public function.
5059         * reflection.h
5060         (MonoReflectionGenericInst): Added `MonoArray *fields'.
5061         (MonoReflectionInflatedField): New typedef.     
5063 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
5065         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
5066         for Solaris and other platforms without s6_addr16
5068 2003-10-30  Martin Baulig  <martin@ximian.com>
5070         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
5071         argument instead of two.
5072         (mono_class_inflate_generic_signature): Likewise.
5073         (inflate_generic_header): Likewise.
5074         (mono_class_inflate_generic_method): Likewise.  In addition, if
5075         `ginst->klass' is set, it becomes the new `method->klass'.
5077         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
5078         field.
5080         * reflection.c (encode_generic_method_sig): Write a 0xa as the
5081         first byte. [FIXME]
5082         (method_encode_methodspec): If we have generic parameters, create
5083         a MethodSpec instead of a MethodRef.
5084         (fixup_method): Added support for "MonoInflatedMethod" and
5085         "MonoInflatedCtor".
5086         (mono_image_create_token): Added support for "MonoInflatedMethod"
5087         and "MonoInflatedCtor".
5088         (inflated_method_get_object): New static function; returns a
5089         managed "System.Reflection.MonoInflatedMethod" object.
5090         (mono_reflection_bind_generic_method_parameters): Return a
5091         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
5092         (mono_reflection_inflate_method_or_ctor): Likewise.
5093         (mono_image_get_generic_method_param_info): Initialize unused
5094         fields to zero.
5095         (mono_image_get_generic_param_info): Likewise.
5097         * reflection.h (MonoReflectionInflatedMethod): New public
5098         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
5099         "S.R.MonoInflatedCtor" classes.
5101         * loader.c (method_from_memberref): If we're a TypeSpec and it
5102         resolves to a generic instance, inflate the method.
5104 2003-10-28  Dick Porter  <dick@ximian.com>
5106         * object.c (mono_runtime_run_main): Convert command-line arguments
5107         into utf8, falling back to the user's locale encoding to do so.
5109 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
5111         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
5112         at this time.
5114         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
5116         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
5117         up icalls at method definition time. Partially fixes #33569.
5119 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
5121         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
5122         marshalling of arrays. Fixes #50116.
5124         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
5126         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
5127         points to a vtable in the dying appdomain.
5129         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
5130         listeners into unmanaged code inside the lock.
5132         * object.c (mono_class_vtable): Turn off typed allocation in non-root
5133         domains and add some comments.
5135 2003-10-25  Martin Baulig  <martin@ximian.com>
5137         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
5139         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
5141         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
5142         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
5143         currently parsing.  Create the generic class and store it in
5144         `generic_inst->klass' before parsing the type arguments.  This is
5145         required to support "recursive" definitions; see mcs/tests/gen-23.cs
5146         for an example.
5147         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
5148         to support recursive typespec entries.
5150         * class.c (mono_class_setup_parent): If our parent is a generic
5151         instance, we may get called before it has its name set.
5152         (mono_class_from_generic): Splitted into
5153         mono_class_create_from_generic() and mono_class_initialize_generic().
5155 2003-10-25  Martin Baulig  <martin@ximian.com>
5157         * icall.c (ves_icall_Type_BindGenericParameters): Return a
5158         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
5159         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
5160         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
5162         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
5163         (create_typespec): Likewise.
5164         (mono_reflection_bind_generic_parameters): Return a
5165         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
5166         (mono_reflection_inflate_method_or_ctor): New public function.
5168         * reflection.h (MonoReflectionGenericInst): New typedef.        
5170 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
5172         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
5173         inside the domain lock. Fixes #49993.
5174         
5175         * object.c (mono_class_vtable): When typed allocation is used, 
5176         allocate vtables in the GC heap instead of in the mempool, since the
5177         vtables contain GC descriptors which are used by the collector even
5178         after the domain owning the mempool is unloaded.
5180         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
5182         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
5183         reflect what it does. Also invalidate mempools instead of freeing
5184         them if a define is set.
5186         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
5187         of the appdomain.
5188         
5189         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
5190         hold the finalizable objects in this domain.
5192         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
5193         appdomain.
5195         * appdomain.c (mono_domain_set): New function to set the current
5196         appdomain, but only if it is not being unloaded.
5198         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
5199         appdomain which is being unloaded.
5200         
5201         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
5202         unloading of the root appdomain.
5204         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
5205         icall to execute a method in another appdomain. Intended as a 
5206         replacement for InternalSetDomain, which can confuse the code 
5207         generation in the JIT.
5209         * appdomain.c (mono_domain_is_unloading): New function to determine
5210         whenever an appdomain is unloading.
5212         * appdomain.c (mono_domain_unload): New function to correctly unload
5213         an appdomain.
5215         * assembly.c (mono_assembly_load_references): Check that an assembly
5216         does not references itself.
5218         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
5219         domain manually, it asks the finalizer thread to do it, then waits for
5220         the result. Also added a timeout.
5222         * icall.c: Register the new icalls.
5224         * threads.h threads.c: Export the mono_gc_stop_world and 
5225         mono_gc_start_world functions.
5226         
5227         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
5228         function to fill out the mempool with 0x2a.
5230 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
5232         * reflection.h (MonoReflectionMethodAux): New structure to store
5233         information which is rarely used, thus is not in the MonoMethod
5234         structure.
5236         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
5237         store the aux info.
5239         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
5240         and marshalling info into the aux structure.
5242         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
5243         from the aux structure.
5245         * loader.c (mono_method_get_param_names): Retrieve the param names from
5246         the aux structure.
5247         
5248 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
5250         * exception.h exception.c: Add AppDomainUnloadedException && fix 
5251         warning.
5253 2003-10-21  Dick Porter  <dick@ximian.com>
5255         * socket-io.c
5256         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
5257         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
5259 2003-10-21  Martin Baulig  <martin@ximian.com>
5261         * reflection.c (mono_reflection_bind_generic_parameters):
5262         `klass->parent' is NULL for interfaces.
5264 2003-10-21  Martin Baulig  <martin@ximian.com>
5266         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5268 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
5270         * exception.c (mono_exception_from_name_msg): New helper function for
5271         creating exceptions and initializing their message field.
5273         * exception.c: Simplify functions using the new helper.
5275         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
5276         New function.
5278         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
5279         mono_raise_exception, since otherwise gcc doesn't generate the function
5280         epilog for raise_exception, confusing the stack unwinding in the JIT.
5281         Fixes #45043.
5283         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
5284         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
5285         Fixes #49499.
5287 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5289         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
5290         utf8.
5292 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
5294         * icall.c: Removed GetUninitializedObject method because
5295           AllocateUninitializedClassInstance does the same.
5297 2003-10-18  Martin Baulig  <martin@ximian.com>
5299         * class.c (inflate_generic_signature): Renamed to
5300         mono_class_inflate_generic_signature() and made it public.
5301         (my_mono_class_from_generic_parameter): New static function; if we
5302         don't already have the generic parameter's MonoClass, create a
5303         very simple one which is just used internally in the runtime and
5304         not passed back to managed code.
5306         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
5308         * metadata.h (MonoMethodSignature): Moved the
5309         `MonoGenericParam *gen_params' to the MonoMethodHeader.
5310         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
5312         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
5313         ves_icall_MonoMethod_GetGenericArguments(); this is now an
5314         interncall on the MonoMethod class, not on MethodInfo.
5315         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
5316         calling mono_reflection_bind_generic_method_parameters() directly.
5318         * loader.c (mono_method_get_signature): If this is a MethodSpec;
5319         return the already computed `method->signature'.
5320         (method_from_methodspec): New static function to load a method
5321         from a MethodSpec entry.
5322         (mono_get_method_from_token): Call the new method_from_methodspec()
5323         for MethodSpec tokens.  
5324         (mono_get_method_from_token): If we're a generic method, load the
5325         type parameters.
5327         * reflection.c (mono_image_get_memberref_token): Allow
5328         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
5329         table.
5330         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
5331         (mono_image_create_token): First check whether it's a generic
5332         method (so we'd need to create a MethodSpec), then do the other
5333         two alternatives.
5334         (mono_reflection_bind_generic_method_parameters): Return a
5335         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
5336         called directly from the interncall.
5338 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
5340         * reflection.c (load_public_key): Move loading of the public key
5341         into managed code.
5343         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
5345         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
5346         fields.
5348         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
5349         culture, hash_alg and public_key. Fixes #49555.
5351 2003-10-17  Martin Baulig  <martin@ximian.com>
5353         * class.h (MonoGenericInst): Moved this declaration here and added
5354         `MonoMethod *generic_method'.
5356         * icall.c
5357         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
5358         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
5360         * metadata.c (mono_metadata_type_equal): Two types of
5361         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
5362         index; ie. don't compare the address of the `MonoGenericParam'
5363         structure.
5364         (mono_metadata_load_generic_params): Removed the `MonoMethod
5365         *method' argument.
5367         * metadata.h (MonoGenericInst): Moved declaration to class.h.
5368         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
5370         * reflection.c (method_encode_signature): Encode the number of
5371         generic parameters.
5372         (encode_generic_method_sig): New static function.
5373         (method_encode_methodspec): New static function; creates an entry
5374         in the MethodSpec table for a generic method.
5375         (mono_image_get_methodspec_token): New static function.
5376         (mono_image_create_token): Call mono_image_get_methodspec_token()
5377         for generic methods.
5378         (mono_reflection_bind_generic_method_parameters): New public
5379         function.  Instantiates a generic method.
5381 2003-10-16  Martin Baulig  <martin@ximian.com>
5383         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
5384         *gen_params' here from MonoMethodHeader.
5386         * metadata.c (mono_metadata_parse_method_signature): If we have
5387         generic parameters, initialize `method->gen_params' and then set
5388         the correct `type->data.generic_param' in all the parameters.
5390 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
5392         * threads.c (mono_threads_get_default_stacksize): New function to 
5393         return the default stacksize.
5395         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
5396         termination of the finalizer thread, since the previous method had
5397         race conditions. Fixes #49628.
5399         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
5400         as for the other managed threads.
5402 2003-10-16  Martin Baulig  <martin@ximian.com>
5404         * class.c (inflate_generic_signature): Copy `generic_param_count'
5405         and `gen_params'.
5407         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
5408         New interncall.
5410         * metadata.c (mono_metadata_parse_method_signature): Actually set
5411         the `method->generic_param_count' here.
5412         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
5414 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
5416         * object.h: Add a new field to TypedRef to simplify the implementation
5417         of the REFANY opcodes in the JIT.
5419         * icall.c: Make use of the new field.
5421         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
5422         dynamically.
5424 2003-10-15  Martin Baulig  <martin@ximian.com>
5426         * class.c (mono_class_from_gen_param): Renamed to
5427         mono_class_from_generic_parameter() and moved most of the
5428         functionality from mono_reflection_define_generic_parameter()
5429         here; ie. we create a "real" class here.
5430         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
5431         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
5432         previously been called.
5434         * class.h (MonoGenericParam): Moved the declaration of this struct
5435         here from metadata.h and added `MonoMethod *method'.
5437         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
5438         interncall.
5440         * loader.c (mono_get_method_from_token): If we have any generic
5441         parameters, call mono_metadata_load_generic_params() to read them
5442         from the MONO_TABLE_GENERICPAR.
5444         * metadata.c (mono_metadata_load_generic_params): Added
5445         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
5447         * metadata.h (MonoMethodSignature): Replaced
5448         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
5449         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
5451         * reflection.c (mono_reflection_define_generic_parameter): Moved
5452         most of the functionality into the new
5453         mono_class_from_generic_parameter(); set the `method' field if
5454         we're a method parameter.       
5456 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
5458         * marshal.c (emit_struct_conv): if native size is 0
5459         emit no code.
5461 2003-10-14  Martin Baulig  <martin@ximian.com>
5463         * icall.c: The generics API has changed in the spec since it was
5464         added to System.Type; these modifications make it match the spec
5465         again.
5466         (ves_icall_Type_GetGenericParameters): Renamed to
5467         `ves_icall_Type_GetGenericArguments'.
5468         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
5469         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
5470         `ves_icall_MonoType_get_HasGenericArguments'.
5471         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
5472         `ves_icall_MonoType_get_IsGenericParameter'.
5473         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
5474         this is no interncall anymore.
5475         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
5476         `ves_icall_TypeBuilder_get_IsGenericParameter'.
5478 2003-10-14  Martin Baulig  <martin@ximian.com>
5480         * reflection.c (mono_reflection_bind_generic_parameters): Also
5481         inflate generic methods if we're reading the class from IL.
5483 2003-10-13  Martin Baulig  <martin@ximian.com>
5485         * reflection.c (mono_reflection_define_generic_parameter): This
5486         method isn't called directly from the icall anymore; take a
5487         `MonoReflectionAssemblyBuilder *' so we can use this for type and
5488         method generic parameters.
5489         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
5490         (method_builder_encode_signature): Encode generic parameters.
5491         (mono_image_get_method_info): Write generic params to the
5492         MONO_TABLE_GENERICPARAM table.
5494         * reflection.h (MonoReflectionMethodBuilder): Added
5495         `MonoArray *generic_params'.
5497         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
5499         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
5500         wrapper for mono_reflection_define_generic_parameter().
5501         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
5503 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
5505         * marshal.h: Add missing function to fix build.
5507         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
5508         the SetLastError pinvoke attribute.
5510         * marshal.c (mono_marshal_set_last_error): New helper function called
5511         by the generated code.
5512         
5513         * marshal.c (mono_mb_emit_branch): New helper function.
5515         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
5517         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
5518         classes as parameters and return values of delegates. Fixes #29256. 
5520 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
5522         * locales.c: use gint32 in non HAVE_ICU case
5524 2003-10-11  Martin Baulig  <martin@ximian.com>
5526         * mono-debug.c (mono_debug_add_method): Added a workaround for
5527         bug #48591.
5529 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
5531         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
5532         delegates passed to native code must use the STDCALL calling 
5533         convention. Fixes #35987.
5535 2003-10-10  Martin Baulig  <martin@ximian.com>
5537         * class.c (inflate_generic_type): If we're inflating for a generic
5538         type instance (and not for a generic method), return
5539         MONO_TYPE_MVAR unchanged.
5541 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5543         * string-icalls.c: Join ignores null strings in the source array.
5544         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
5545         * threads.c: GetAvailableTheads is slightly more accurate.
5547 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
5549         * threads.h threads.c : add mono_threads_set_default_stacksize
5550         and pass default to CreateThread calls.
5552 2003-10-09  Dick Porter  <dick@ximian.com>
5554         * icall.c:
5555         * locales.h:
5556         * locales.c: Internal calls for constructing CultureInfo and
5557         related objects from libicu (if its available.)
5559 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
5561         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
5563 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5565         * threadpool.c: added an argument to async_invoke_thread that is the
5566         item to process, pass the MonoAsyncResult to the thread start function
5567         when creating a new thread. This way we don't need to acquire any lock
5568         when we're creating a new thread. Readded a semaphore for faster
5569         response times (instead of that Sleep i added).
5571 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
5573         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
5574         get daylight change dates better on Windows, fix handling
5575         of platforms without tm_gmtoff.
5577 2003-10-06  Martin Baulig  <martin@ximian.com>
5579         * class.c (inflate_generic_method): Renamed to
5580         mono_class_inflate_generic_method() and made public.
5581         (mono_class_init): Don't inflate the generic methods here.
5582         (mono_class_from_generic): Added `gboolean inflate_methods'
5583         argument.  Inflate the methods here.
5585         * loader.c (mono_method_get_param_names): Ignore instances of
5586         generic types for the moment.
5588         * reflection.c (fixup_method): Added support for inflated methods.
5589         (mono_image_create_token): Use mono_image_get_methodref_token()
5590         for inflated methods.
5591         (mono_custom_attrs_from_param): Ignore instances of generic types
5592         for the moment.
5593         (mono_reflection_bind_generic_parameters): New public function.
5594         Moved all the functionality from
5595         ves_icall_Type_BindGenericParameters() here and added support for
5596         dynamic types.
5597         (mono_reflection_define_generic_parameter): Initialize
5598         `klass->methods' here.
5600         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
5601         functionality into mono_reflection_define_generic_parameter().
5602         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
5603         TypeBuilder, return that TypeBuilder.
5605 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5607         * appdomain.c: removed mono_delegate_semaphore.
5609         * threadpool.c:
5610         (mono_thread_pool_add): moved hash table creation inside and the thread 
5611         creation outside of the critical region.
5612         (mono_thread_pool_finish): removed obsolete code.
5613         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
5614         continue or exit the thread depending on the queue.
5616 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
5618         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
5619         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
5620         handle more bool marshalling options
5622 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
5624         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
5625         arrays of structs. Also add a more descriptive error message when
5626         a structure member is marshalled as LPArray.
5628 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
5630         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5631         marshalling arrays of complex types. Fixes #29098. Also remove an
5632         usused and incomplete function.
5634 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5636         * gc.c: report heap_size - free_bytes as total memory allocated
5637         (bug#49362).
5639 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
5641         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
5642         fix timezone handling problems on Windows.
5643         
5644         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
5645         asserts when the year is outside the range handled by ms the functions.
5647         * class.c (setup_interface_offsets): If the class is an interface,
5648         fill out its interface_offsets slot.
5650 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5652         * threadpool.c: mark threadpool threads as background.
5654 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
5656         * decimal.c - define DECINLINE to nothing if not using GCC
5658 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
5660         * assembly.c: More refcount fixes.
5662 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5664         * string-icalls.c: if we're not trimming, return the same string.
5665         When not splitting, don't create a new string.
5667 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5669         * image.c:
5670         (mono_image_open): increment the ref_count inside the critical section.
5672 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
5674         * image.c (mono_image_open): Fix reference counting bug.
5676 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
5678         * marshal.c (mono_marshal_type_size) struct alignment changed for 
5679         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
5680         64bits. Avoid leak in mono_marshal_get_native_wrapper when
5681         mono_lookup_pinvoke_call throws.        
5683 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
5685         * reflection.c (mono_reflection_parse_type): Fix #49114.
5687         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
5688         temporary workaround for cygwin header problem.
5690         * object.c (mono_object_isinst): Synchronize this with the code
5691         generated by the JIT for casts.
5693 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
5695         * reflection.c (encode_type): Fix #38332.
5697 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
5699         * marshal.c (mono_marshal_method_from_wrapper): New function to return
5700         the original method from the wrapper method.
5702 2003-09-25  Martin Baulig  <martin@ximian.com>
5704         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
5705         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
5706         (ves_icall_Type_get_IsGenericInstance): New interncall.
5708 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
5710         * object.c: fix cast warning in big endian code.
5712 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
5714         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
5715         
5716 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5718         * assembly.c: don't call check_env from mono_assembly_load. It's
5719         already done once in mono_assemblies_init and may cause headaches when
5720         multiple threads are loading assemblies.
5722 2003-09-19  Martin Baulig  <martin@ximian.com>
5724         * reflection.c (mono_reflection_define_generic_parameter): Don't
5725         allocate `klass->methods', set `klass->flags' to
5726         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
5728 2003-09-18  Martin Baulig  <martin@ximian.com>
5730         * class.c (mono_class_init): Don't create `class->methods' if it's
5731         already initialized.
5733         * metadata.c (mono_metadata_load_generic_params): Make this
5734         actually work.
5736         * reflection.c (mono_reflection_define_generic_parameter): Set
5737         parent class and interfaces from the constraints.
5739         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
5740         to keep this struct in sync with the declaration in TypeBuilder.cs.
5742 2003-09-17  Martin Baulig  <martin@ximian.com>
5744         * metadata.h (MonoType): Replaced the data's `int type_param'
5745         field with `MonoGenericParam *generic_param'.
5746         (MonoGenericParam): Added `MonoClass *klass'.
5748         * class.c (mono_class_from_gen_param): Removed the
5749         `MonoImage *image' and `int type_num' arguments.
5751         * metadata.c (mono_metadata_parse_generic_param): New static
5752         method; creates a MonoGenericParam which just contains the index.
5753         (do_mono_metadata_parse_type): Call
5754         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
5755         MONO_TYPE_MVAR.
5757         * reflection.c (mono_image_typedef_or_ref): Generic type
5758         parameters may be in the same assembly, but never use a typedef
5759         for them.
5760         (mono_reflection_define_generic_parameter): We're now creating a
5761         "real" class for the type parameter; it's now safe to call
5762         mono_class_from_mono_type() on the class'es type, it'll do the
5763         right thing.
5765 2003-09-16  Martin Baulig  <martin@ximian.com>
5767         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
5768         `symfile->range_entry_size' and `symfile->class_entry_size' here;
5769         the `symfile' data structure must be fully initialized before it
5770         gets added to the table.
5772 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
5774         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
5776         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
5777         class init trampolines.
5779 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
5781         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
5782         to the built-in profiler to turn off time and allocation profiling
5783         respectively.
5785 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
5787         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
5788         g_direct_equal.
5790         * debug-helpers.c (mono_method_full_name): Print the wrapper type
5791         in human readable form.
5793 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
5795         * reflection.c icall.c: Fixed warnings.
5797         * image.c (load_class_names): Use a temporary hash table to hold the
5798         namespaces in order to avoid doing many string comparisons.
5800         * image.h: Fix typo.
5802         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
5803         Pass NULL instead of g_direct_equal to the GHashTable constructor 
5804         since the NULL case is short-circuited inside g_hash_table_lookup, 
5805         leading to better performance.  
5807         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
5808         obtain the first custom attribute for a given index. Depends on the
5809         CustomAttribute table being sorted by the parent field.
5811         * reflection.c (mono_custom_attrs_from_index): Use the new function 
5812         for better performance.
5814 2003-09-07  Martin Baulig  <martin@ximian.com>
5816         * class.c (mono_class_init): If we're a generic instance, inflate
5817         all our methods instead of loading them from the image.
5818         (mono_class_from_generic): Set `class->methods = gklass->methods'.
5820 2003-09-07  Martin Baulig  <martin@ximian.com>
5822         * mono-debug-debugger.c: Added support for constructors.
5824 2003-09-06  Martin Baulig  <martin@ximian.com>
5826         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
5827         New interncall.
5829         * reflection.c (mono_reflection_setup_generic_class): Call
5830         ensure_runtime_vtable() to create the vtable.
5832 2003-09-05  Martin Baulig  <martin@ximian.com>
5834         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
5835         MONO_TYPE_MVAR.
5837 2003-09-04  Martin Baulig  <martin@ximian.com>
5839         * reflection.c (mono_reflection_define_generic_parameter): Generic
5840         parameters start with zero.
5842 2003-09-04  Martin Baulig  <martin@ximian.com>
5844         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5846         * reflection.h (MonoReflectionGenericParam): New typedef.
5847         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
5848         the generic parameters from the managed TypeBuilder.
5850         * reflection.c (mono_reflection_define_generic_parameter): New function.
5851         (mono_reflection_create_runtime_class): Encode generic parameters.
5852         (mono_reflection_setup_generic_class): New function; this is
5853         called after adding adding all generic params to the TypeBuilder.
5854         (encode_type): Added MONO_TYPE_VAR.
5856 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
5858         * class.h class.c (mono_class_needs_cctor_run): Moved this method
5859         here from the JIT.
5861         * assembly.h assembly.c: Moved the AOT loading code into an assembly
5862         load hook.
5864 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
5866         * reflection.h reflection.c class.h class.c: Delete duplicate 
5867         definition of mono_type_get_name () from reflection.c and export the
5868         one in class.c.
5870         * class.c: Class loading fixes from Bernie Solomon 
5871         (bernard@ugsolutions.com).
5873         * reflection.c: Endianness fixes from Bernie Solomon 
5874         (bernard@ugsolutions.com).
5875         
5876 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
5878         * assembly.h assembly.c: Define a file format version for AOT
5879         libraries.
5880         
5881         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
5883         * appdomain.h (MonoJitInfo): New field to determine whenever the
5884         code is domain neutral.
5885         
5886 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
5888         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
5890 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
5892         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
5893         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
5894         Avoid caching the result since strings must be domain specific. Fixes
5895         #48050.
5897 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
5899         * marshal.c (mono_marshal_init): Make this callable multiple times
5900         since it is hard to find a correct place to call it.
5902         * object.c (mono_runtime_class_init): Execute static constructors in
5903         the correct appdomain.
5905         * image.c (build_guid_table): Handle the case when multiple images have
5906         the same GUID.
5908 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5910         * icall.c: added a couple of icalls for System.Web.
5912 2003-08-28  Martin Baulig  <martin@ximian.com>
5914         * icall.c (ves_icall_Type_BindGenericParameters): Use
5915         `klass->generic_inst' instead of `&klass->byval_arg' in the
5916         mono_type_get_object() call.  The returned type must be
5917         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
5919 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
5921         * NOTES: New file.
5923         * object.c (mono_class_proxy_vtable): Make it thread safe.
5925         * pedump.c: Fix warning.
5927         * object.c appdomain.h: Get rid of metadata_section. 
5928         It is no longer needed and it was causing deadlocks with domain->lock.
5930         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
5932 2003-08-26  Martin Baulig  <martin@ximian.com>
5934         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
5936 2003-08-26  Martin Baulig  <martin@ximian.com>
5938         * pedump.c (main): Call mono_metadata_init(),
5939         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
5940         and mono_loader_init().
5942 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
5944         * loader.h: Add missing include to fix build.
5946         * image.h: mono_image_load_references is no more.
5948         * assembly.c: Reworked assembly loading to make it really thread safe.
5949         After these changes, the assembly returned by mono_assembly_open is
5950         fully initialized, i.e. all its references assemblies are loaded.
5952         * assembly.c (mono_image_load_references): Renamed to 
5953         mono_assembly_load_references, and made private, since clients no
5954         longer need to call it.
5956         * class.c: Removed calls to mono_assembly_load_references, since it was
5957         a source of deadlocks.
5959         * loader.h loader.c class.h class.c: Protect data structures using a 
5960         new lock, the loader lock.
5962         * class.c (mono_class_setup_vtable): Create temporary hash tables and
5963         GPtrArrays only when needed.
5965         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
5966         into empty structures by mcs. Fixes pinvoke7.cs.
5967         
5968         * domain.c (mono_init): Call a new initialization function.
5970         * appdomain.c (mono_runtime_init): Call the new initializer function
5971         of the marshal module.
5973         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
5974         inserted into empty structures by mcs. Fixes pinvoke7.cs.
5976         * marshal.h marshal.c: Added locks around the wrapper caches to make
5977         this module thread safe.
5979         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
5980         this argument. Fixes pinvoke1.exe.
5982 2003-08-25  Lluis Sanchez <lluis@ximian.com>
5984         * object.h: Added call_type field to MonoMethodMessage and the corresponding
5985         enumeration of values. Removed fields to store remote call output values in
5986         MonoAsyncResult. Not needed any more.
5987         * object.c: Initialize call_type and async_result fields in mono_message_init.
5988         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
5989         dispatching the message.
5990         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
5991         async call to finish. To do it use a message with EndInvoke call type.
5993 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
5995         * loader.h loader.c (mono_method_hash_marhal_info): New function which
5996         determines whenever a method has marshalling info.
5998 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6000         * assembly.c: fix the build on windows.
6002 2003-08-22 Lluis Sanchez <lluis@ximian.com>
6004         * object.cs: Fixed bug #47785.
6006 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
6008         * string-icalls.c (StringReplace): If their are no occurances of
6009         the old string found return a reference to the supplied
6010         string. This saves some memory and matches MS behavoir.
6011         
6012 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6014         * socket-io.c: fixed compilation for systems that define AF_INET6
6015         and don't define SOL_IP/SOL_IPV6.
6017 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
6019         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
6020         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
6022         * rawbuffer.c rawbuffer.h: Make this module thread safe.
6024         * domain.c: Make this module thread safe.
6026         * domain.c (mono_init): Call new initialization function.
6028         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
6029         reference types too. Fixes #38812.
6031         * image.c (mono_image_init): Fixed warnings.
6033         * class.c (mono_class_from_typeref): Handle assembly load failure
6034         correctly.
6036         * appdomain.c (add_assemblies_to_domain): Handle the case when
6037         the references of an assembly are not yet loaded.
6039         * metadata.c image.c assembly.c: Moved initialization of global
6040         variables to a separate function called at startup since lazy 
6041         initialization of these variables is not thread safe.
6042         
6043         * image.c assembly.c: Made this module thread safe by adding locks in 
6044         the appropriate places.
6046         * domain.c (mono_init): Call the new initialization functions of the
6047         three modules.
6049 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
6051         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
6052           make a direct call. It is proxy's work to make the call asynchronous.
6053           mono_delegate_end_invoke(): If the targe is a proxy, just collect
6054           the return values.
6055         * object.cs: mono_method_call_message_new(): read AsyncResult and
6056           state object from parameters list, if this info is requested.
6057         * object.h: Added fields to store remote call output values in
6058           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
6060 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6062         * object.h: add needed fields to MonoThread.
6063         * threads.c, threads.h: allow registering a function to cleanup data
6064         allocated per thread by the JIT.
6066 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6068         * loader.h: portability fix by Bernie Solomon
6069         * <bernard@ugsolutions.com>.
6071 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
6073         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
6074         return a MonoArray. This simplifies the code and also ensures that
6075         the cache allways contains an object reference as a value.
6077         * icall.c (ves_icall_get_parameter_info): Simplified using the new
6078         function.
6080 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6082         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
6083         fixes a problem with byte ordering when getting the address family for
6084         a socket.
6086 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
6088         * .cvsignore: Added monosn.
6090         * reflection.h reflection.c loader.c: Added support for parameter
6091         marshalling to dynamically created types. Fixes #47295.
6093 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
6095         * rand.c: remove useless warnings.
6097 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6099         * class.c: implemented ldtoken for methods and fieldrefs.
6101 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6103         * threadpool.c: when mono_async_invoke was called, no one took care of
6104         monitoring the queue. So if the method invoked took some time and we
6105         got new async invoke requests after 500 ms (the thread created waited
6106         that long in WaitForSingleObject), the new async invoke was not called
6107         until the previous one finished.
6109         This is fixed now. Thanks to Totte for helping with it.
6111 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6113         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
6115 2003-08-11  Martin Baulig  <martin@ximian.com>
6117         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
6119 2003-08-06  Martin Baulig  <martin@ximian.com>
6121         * mono-debug-debugger.c: Added support for static fields,
6122         properties and methods.
6124 2003-08-06  Martin Baulig  <martin@ximian.com>
6126         * mono-debug-debugger.c: Don't store the MonoString's vtable to
6127         make this work for applications with multiple application domains.
6129 2003-08-04  Martin Baulig  <martin@ximian.com>
6131         * mono-debug-debugger.c: Completely reworked the type support; the
6132         most important thing is that we're now just using one single
6133         `MonoType' instance per type.
6135 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
6137         * mono-endian.h, mono-endian.c, icall.c: Added icall
6138         ves_icall_System_Double_AssertEndianity to assert double word endianity
6139         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
6141 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6143         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
6144         support, icalls and fixes.
6146 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
6148         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
6149         classes that are a punctuation character in .NET is not the same a
6150         g_unichar_ispunct.
6152 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6154         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
6156 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
6158         * icall.c: Add new MemCopy internalcall.
6159         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
6160         Simplified code; It is not necessary to handle all the cases here,
6161         as the C# code takes care of it.  Only handle the case of the name
6162         resource embedded into the assembly.
6164         Changed signature to return the data pointer and the size of the
6165         data. 
6167 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
6169         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
6170         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
6172 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6174         * socket-io.c: ignore EINTR error in select.
6176 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6178         * class.h, class.c: removed unused subclasses field in MonoClass.
6180 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
6182         * icall.c: improve fix of get_base_definition(). If the parent class
6183           doesn't have the mehod, look at the parent of the parent.
6184         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
6185           to check if a parameter is an in or out parameter
6186           (PARAM_ATTRIBUTE_IN is not set by default).
6187           mono_method_return_message_restore(): Use mono_class_value_size to
6188           get the size of a value type. mono_type_stack_size (parameterType)
6189           does not return the correct value if parameterType is byRef.
6190           mono_load_remote_field(), mono_load_remote_field_new(),
6191           mono_store_remote_field(), mono_store_remote_field_new():
6192           raise exception if the remote call returns an exception.
6194 2003-07-28  Martin Baulig  <martin@ximian.com>
6196         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
6197         method.  This is a wrapper around mono_runtime_invoke() which
6198         boxes the instance object if neccessary.
6200 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6202         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
6203         metadata.h, row-indexes.h, verify.c: first cut of generics support.
6205 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6207         * icall.c: disable mcs bug workaround.
6209 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
6211         * object.c (mono_runtime_class_init): Take the metadata_section
6212         mutex before obtaining the domain mutex.
6214         * appdomain.h: Added definition of metadata_section mutex here. 
6216         * object.c: define metadata_mutex here.
6218 2003-07-24  Ravi Pratap  <ravi@ximian.com>
6220         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
6221         fixed.
6223 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
6225         * reflection.c: Fix bug #46669
6227 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6229         * exception.c:
6230         * exception.h:
6231         * icall.c:
6232         * object.h: fill in the type name for TypeLoadException.
6234 2003-07-23  Ravi Pratap  <ravi@ximian.com>
6236         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
6237         relationship between TypeBuilders while compiling corlib) and bug
6238         45993 (Array types returned from the runtime while compiling
6239         corlib were from the loaded corlib).
6241 2003-07-22  Martin Baulig  <martin@ximian.com>
6243         * mono-debug-debugger.c: Reworked the type support a bit more;
6244         distinguish between types and classes.
6246 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
6248         * icall.c: add IsArrayImpl icall.
6250 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
6252         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
6253         initializing real_size only once. Also fix bug #46602.
6255 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
6257         * object.c: Renamed mono_metadata_section to metadata_section.
6259 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
6261         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
6262           empty array if the type is an array. Fixed.
6263           ves_icall_MonoMethod_get_base_definition: if the base method
6264           is abstract, get the MethodInfo from the list of methods of
6265           the class.
6266         * reflection.c: ParameterInfo.PositionImpl should be zero-based
6267           and it was 1-based. Fixed in mono_param_get_objects.
6269 2003-07-20  Martin Baulig  <martin@ximian.com>
6271         * mono-debug.h: Set version number to 31.
6272         (mono_debug_init): Added `MonoDomain *' argument.
6274         * mono-debug-debugger.c: Reworked the type support; explicitly
6275         tell the debugger about builtin types; pass the `klass' address to
6276         the debugger.
6278 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
6280         * image.c: Allow new metadata tables to be loaded without a
6281         warning. Also update the warning message to give the new constant value.
6282                 
6283 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
6285         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
6286         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
6287         array type representation changes.
6289 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6291         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
6292         on Environment.Exit () call.
6294 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6296         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
6297         requires a matching corlib.
6299 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6301         * Changelog: My editor decided to add a CR to each line. Sorry about that.
6302           Committed again without the CRs.
6303         
6304 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6306         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
6307           getting it from the "this" socket instance. Did not work
6308           if the socket is a subclass of Socket.
6309           Also fixed bug #35371.
6311 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6313         * metadata.c: fixed size for TypedByRef.
6314         * loader.c: when searching for a method, consider the vararg amrker.
6315         * unicode.c, decimal.c: constify some arrays.
6317 2003-07-15  Dick Porter  <dick@ximian.com>
6319         * socket-io.c: Fixed compilation for gcc < 3.2.
6321         Fixed compilation for machines that don't have AF_INET6 (thanks to
6322         Bernie Solomon <bernard@ugsolutions.com> for that part.)
6324         Fixed compile warnings.
6325         
6326         Fixed formatting and line endings.
6328 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
6330         * socket-io.h:
6331         * socket-io.c: Added IPv6 support.
6333 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
6335         * class.c (mono_class_is_assignable_from): New function to implement
6336         the is_assignable_from logic. Used by mono_object_isinst, 
6337         Type::IsAssignableFrom () and the interpreter.
6339         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
6340         Object, even interfaces.
6341         
6342         * object.c (mono_object_isinst): Implement in terms of 
6343         is_assignable_from.
6345         * icall.c (ves_icall_type_is_assignable_from): New icall.
6347 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
6349         * domain.c (foreach_domain): fix compiler warning.
6351 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
6353         * image.c (load_metadata_ptrs): use g_strndup because strndup is
6354         not available on all plattforms
6356 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
6358         * image.h image.c: Store the metadata version string in MonoImage.
6359         * icall.c: New icall to retrieve the image version.
6360         * reflection.c (create_dynamic_image): Fill in the image version field
6361         * reflection.c (build_compressed_metadata): Use the image version
6362         from the image structure.
6364 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6366         * appdomain.c: modified comment.
6367         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
6368         That will be its last iteration when mono_gc_cleanup is called from
6369         mono_runtime_cleanup and before the domain is unloaded.
6371         Fixes bug #45962.
6373 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
6375         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
6376         attributes.
6378 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6380         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
6381         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
6382         Bernie Solomon <bernard@ugsolutions.com>.
6384 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6386         * object.c, object.h: provide mono_object_new_fast() for faster
6387         allocation in some special cases.
6389 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
6391         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
6392         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
6394 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
6396         * threadpool.c: fix leaks.
6398 2003-07-01  Dick Porter  <dick@ximian.com>
6400         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
6401         using MonoGHashTables.  Fixes threadpool bug posted to list.
6403 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6405         * image.h, image.c: added support to load an assembly from a byte array.
6406         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
6407         assembly bundle support.
6409 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
6411         * threadpool.c (mono_thread_pool_add): keep a reference to the
6412         AsyncResult to prevent GC
6414 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6416         * class.c: leak fix.
6418 2003-06-25  Dick Porter  <dick@ximian.com>
6420         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
6421         for the async object, the WaitHandle object will close the handle.
6422         Fixes bug 45321.
6424 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6426         * class.c: in mono_array_class_get (), lookup from the hash with the
6427         same type we insert: this works around a bug in
6428         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
6429         lluis. The real fix will have to wait for after the release.
6431 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6433         * icall.c: fix memory leak when getting type members.
6435 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6437         * reflection.c: added more pubtoken special cases.
6439 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
6441         * class.c: handle field offset correctly when class size
6442         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
6444 2003-06-20  Martin Baulig  <martin@ximian.com>
6446         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
6447         *image' field.
6449 2003-06-20  Martin Baulig  <martin@ximian.com>
6451         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
6453 2003-06-20  Martin Baulig  <martin@ximian.com>
6455         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
6456         just distinguish between variables in registers and variables at
6457         an offset relative to a register.
6459 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6461         * icall.c: #ifdef out latest changes until mcs is fixed.
6463 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6465         * icall.c: return members in metadata order.
6467 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6469         * icall.c: avoid infinite loop in GetTimeZoneData.
6471 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
6473         * icall.c: added Marshal.Prelink/All icalls.
6475 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6477         * object.c, object.h: fix warnings and do some overflow checking
6478         when creating arrays.
6480 2003-06-17  Dick Porter  <dick@ximian.com>
6482         * file-io.h:
6483         * file-io.c: File attributes need to be tweaked slightly when
6484         passed from the managed to the w32 world.
6486 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6487         * profiler.h profiler-private.h profiler.c: Rework last patch
6488         based on suggestion by Paolo.
6489         
6490 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6492         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
6493         instruction level coverage data collection.
6494         * profiler.h profiler.c (: Added new callback function which can be
6495         used by the profiler to limit which functions should have coverage
6496         instrumentation.
6497         * profiler.c (mono_profiler_load): Call g_module_build_path to
6498         generate the file name of the profiler library.
6500 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6502         * profiler.c, profiler.h, profiler-private.h: added basic block 
6503         coverage profiling API.
6505 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
6507         * reflection.c (mono_reflection_create_runtime_class): Add support
6508         for events in dynamically generated code.
6510         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
6511         not allocated.
6513 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6515         * icall.c: when getting timezone info, return reasonable values if we
6516         can't get the actual data.
6518 2003-06-14  Dick Porter  <dick@ximian.com>
6520         * threads.c (start_wrapper): Remove the reference to the thread
6521         object in the TLS data, so the thread object can be finalized.
6522         This won't be reached if the thread threw an uncaught exception,
6523         so those thread handles will stay referenced :-( (This is due to
6524         missing support for scanning thread-specific data in the Boehm GC
6525         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
6527 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
6529         * reflection.c: ensure streams and tables are first allocated with
6530         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
6532 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6534         * icall.c: fixed GetElementType for byrefs (bug# 44792).
6536 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
6538         * reflection.c (mono_reflection_create_runtime_class): Add support for
6539         properties to dynamically created classes.
6540         * reflection.c: Fix a few places where non-MonoObjects were inserted
6541         into the tokens hashtable.
6543 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6545         * object.c: some support to handle out of memory exceptions.
6547 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
6549         * marshal.c (mono_marshal_get_native_wrapper): support reference
6550         return types
6552 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6554         * object.h, object.c: more portability stuff from Bernie Solomon.
6555         Unexport mono_object_allocate(). Added mono_object_unbox ().
6556         Set exitcode when an unhandled exception is thrown.
6558 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
6560         * marshal.c (mono_marshal_get_native_wrapper): use custom
6561         marshaler for return types.
6563 2003-06-10  Dick Porter  <dick@ximian.com>
6565         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
6566         ip_mreq is available
6568 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
6570         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
6571         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
6572         by Bernie Solomon <bernard@ugsolutions.com>.
6574 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
6576         * gc.c (mono_gc_init): Avoid error message on shutdown when
6577         GC_DONT_GC=1 is used.
6579         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
6580         New icall to return the GUID of a module.
6582 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6584         * class.c: ensure instance size always includes the parent's size
6585         even whem class size is set explicitly (fixes bug#44294).
6587 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6589         * profiler.h, profiler.c: made the simple profiler thread-safe,
6590         get more accurate timing info. Allow the loading of an
6591         externally-developed profiler module.
6593 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
6595         * marshal.c (mono_marshal_get_native_wrapper): improved
6596         class/byref arguments.
6597         (mono_marshal_get_native_wrapper): better string marshaling support.
6599 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
6601         * class.c: ensure .pack and .size are handled correctly and
6602         simplified layout of static fields.
6604 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
6606         * appdomain.c
6607         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
6609         * loader.c (mono_lookup_pinvoke_call): look for modules in the
6610         current directory (fix bug 44008)
6612 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
6614         * marshal.c (mono_marshal_get_native_wrapper): started support for
6615         custom marshalers.
6616         (mono_delegate_to_ftnptr): consider marshalling specifications
6618 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
6620         * reflection.c, reflection.h: emit custom marshal info.
6622 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6624         * object.c: free the GError.
6625         * icall.c: added CloseEvent_internal.
6626         * threads.[ch]:
6627         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
6628         call.
6630 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
6632         * loader.c (mono_method_get_signature): Add support for dynamic
6633         assemblies.
6635 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
6637         * reflection.c: fixed bug #43905.
6639 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6641         * class.c, domain.c, icall.c, metadata.h, object.h: support for
6642         handling TypedReference and ArgIterator.
6643         * loader.c, loader.h: added function to get signature at call site.
6645 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6647         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
6648         data readonly. Buglets and warning fixes. Some MethodSpec support.
6650 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6652         * class.h, class.c, object.c: remove relative numbering support.
6654 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
6656         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
6657         free the string, until we get a chance to fix Gtk#
6659 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6661         * marshal.c: revert last patch.
6663 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
6665         * icall.c: updates for new mono_class_vtable() not calling
6666         the type constructor anymore.
6668 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6670         * object.h, object.c: separate vtable creation from type
6671         initialization. Make running the .cctor thread safe.
6673 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
6675         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
6677 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
6679         * loader.c (mono_get_method): consider calling convention
6681 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
6683         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
6684         to return the invisible global type for a module.
6686         * reflection.c (mono_image_build_metadata): Emit global fields too.
6688 2003-05-20  Peter Williams  <peterw@ximian.com>
6690         * loader.c (mono_lookup_internal_call): Add a few newlines.
6692 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
6694         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
6695         literal strings.
6697         * appdomain.c (set_domain_search_path): Recalculate search path when
6698         AppDomainSetup.PrivateBinPath changes.
6700         * object.c (mono_class_compute_gc_descriptor): It turns out some
6701         parts of the class libs (like System.Thread) holds pointers to
6702         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
6703         to treat native int a pointer type here.
6704         
6705 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6707         * appdomain.h, domain.c: add hashtable for jump target resolution.
6709 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
6711         * reflection.h reflection.c icall.c: Added new icalls 
6712         GetManifestResourceInfoInternal, GetModulesInternal and support
6713         infrastructure.
6715 2003-05-16  Dick Porter  <dick@ximian.com>
6717         * icall.c:
6718         * file-io.h:
6719         * file-io.c: Implement System.IO.MonoIO::GetTempPath
6721 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
6723         * object.c: mono_store_remote_field: little fix to previous patch.
6725 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6727         * class.c: add constructors to array classes.
6728         * icall.c: special case array construction for InternalInvoke (),
6730 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
6732         * class.h class.c reflection.c object.c: Added support for field
6733         defaults in dynamically generated classes.
6735 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
6737         * reflection.c: properly encode charset for ddlimport.
6739 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
6741         * threads.c: allow compiling without GC.
6743 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6745         * appdomain.h, object.c, object.h, threads.c, threads.h: added
6746         handling of thread static data.
6748 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6750         * reflection.h, reflection.c: added mono_custom_attrs_free ().
6752 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
6754         * class.c (mono_array_class_get): always set the serializable flags
6755         (mono_array_class_get): always set the SEALED attribute for array types
6757 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
6759         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
6760         attributes (fix for bug 42021).
6762 2003-05-12  Dick Porter  <dick@ximian.com>
6764         * gc.c: Don't run finalizers when the finalizer thread is
6765         finishing up, because the default domain has already been
6766         destroyed.
6768 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
6770         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
6771         value is null, we should throw an exception.   This is slightly
6772         different than the other conventions used for the constructor.
6774 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6776         * socket-io.c: fixed windows build.
6778 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6780         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
6782 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
6784         * object.c (mono_string_new_wrapper): Compatibility fix for MS
6785         compilers.
6787 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6789         * class.c (mono_class_layout_fields): Add experimental GC aware
6790         auto layout facility. Requires class library changes to work correctly.
6792         (mono_class_setup_vtable): Avoid overriding explicit interface
6793         method implementations. Fixes iface3.exe test.
6795         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
6796         object reference.
6797         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
6798         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
6800         * metadata.h: Add new type classification macro which determines
6801         whenever the type holds an object reference.
6803 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
6805         * marshal.c (mono_marshal_get_native_wrapper): cleanups
6807 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
6809         * gc.c (finalizer_thread): Work around a GC bug.
6811 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
6813         * marshal.c (emit_struct_conv): allow unions
6815         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
6817 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
6819         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
6821 2003-05-06  Martin Baulig  <martin@ximian.com>
6823         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
6825 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6827         * socket-io.c:
6828         (Select_internal): allow NULLs, don't create arrays if not needed.
6829         Coupled with Socket.cs changes.
6831         * threadpool.c:
6832         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
6833         register a finalizer for it that will close the semaphore handle. This
6834         fixes the leak and make Lupus' test run with > 4080 loops.
6836 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
6838         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
6839         Jerome Laban (bug #42287)
6841 2003-05-02  Martin Baulig  <martin@ximian.com>
6843         * debug-mono-symfile.h
6844         (MonoSymbolFile): Moved declaration into mono-debug.h.
6845         (MonoDebugMethodJitInfo): Likewise.
6846         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
6847         argument.
6848         (_mono_debug_address_from_il_offset): Take a
6849         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
6851         * mono-debug.h
6852         (MonoDebugDomainData): New struct.
6853         (mono_debug_get_domain_data): New function.
6854         (mono_debug_add_method): Take an additional `MonoDomain *'
6855         argument.
6856         (mono_debug_source_location_from_address): Likewise.
6857         (mono_debug_il_offset_from_address): Likewise.
6858         (mono_debug_address_from_il_offset): Likewise.
6860 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
6862         * reflection.c: one more check for null type in custom attrs.
6864 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6866         * reflection.c: avoid warning (comparison is always false due to limited
6867         range of data type).
6869 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6871         * icall.c: throw an exception in Type.GetField if the argument 'name'
6872         is NULL.
6874 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
6876         * reflection.c: fixed handling of enums in named arguments to custom
6877         attributes (bug #42123).
6879 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
6881         * reflection.c: use the right array element type and handle
6882         a null for a Type argument, too.
6884 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
6886         * reflection.c: handle arrays as arguments to custom attributes.
6888 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6890         * reflection.c: handle a string value in a custom attr
6891         ctor that takes an object.
6893 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
6895         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
6896         (fix bug #42063)
6898 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
6900         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
6902 2003-04-27  Martin Baulig  <martin@ximian.com>
6904         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
6905         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
6906         MONO_DEBUGGER_EVENT_BREAKPOINT.
6907         (mono_breakpoint_trampoline_code): Removed.
6908         (mono_debugger_event_handler): The last argument is now a
6909         `guint32'.
6910         (mono_debugger_insert_breakpoint_full): Removed the
6911         `use_trampoline' argument.
6912         (mono_debugger_method_has_breakpoint): Likewise.
6913         (mono_debugger_trampoline_breakpoint_callback): Renamed to
6914         mono_debugger_breakpoint_callback(); take the method and
6915         breakpoint number as arguments.
6917 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
6919         * metadata.c: fix off by one when loading parameters attributes.
6921 2003-04-24  Martin Baulig  <martin@ximian.com>
6923         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
6925 2003-04-24  Martin Baulig  <martin@ximian.com>
6927         * mono-debug-debugger.c: Moved all code which interacts with the
6928         Mono Debugger here.
6930         * debug-mono-symfile.c: This code now just deals with the symbol
6931         file itself, the debugger code is now in mono-debug-debugger.c.
6933 2003-04-23  Martin Baulig  <martin@ximian.com>
6935         * mono-debug.c (mono_debug_source_location_from_il_offset):
6936         New method; like mono_debug_source_location_from_address(), but
6937         takes an IL offset instead of a machine address.
6939 2003-04-23  Martin Baulig  <martin@ximian.com>
6941         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
6942         `line' field; this is now computed by the debugger.
6944 2003-04-23  Martin Baulig  <martin@ximian.com>
6946         * mono-debug.[ch]: New files.  This is the new debugging interface.
6948         * mono-debug-debugger.[ch]: New files.  Moved all code which
6949         interacts with the Mono Debugger here.
6951 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
6953         * domain.c (mono_init): initialize mono_defaults.monitor_class
6955 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
6957         * reflection.c (method_encode_code): Add a spicy exception to help
6958         future compiler authors.
6960 2003-04-21  Martin Baulig  <martin@ximian.com>
6962         * icall.c
6963         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6964         Make this work with relative pathnames; g_filename_to_uri() needs
6965         an absolute filename.
6967 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
6969         * icall.c: Track name changes in Object and ValueType.
6971 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
6973         * metadata.c (mono_type_stack_size): size should be a multiple of
6974         sizeof (gpointer)
6976 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6978         * gc.c:
6979         (internal_domain_finalize): moved into mono_domain_finalize. No need
6980         to create another thread because the finalizers will be run in the
6981         finalizer thread.
6982         
6983         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
6984         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
6985         to be run (MS does this too).
6987 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
6989         * object.c (mono_class_compute_gc_descriptor): Update comment.
6991         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
6993         * image.h: Add synchronized wrapper cache.
6995         * image.c (do_mono_image_open): Initialize cache.
6997         * reflection.c (create_dynamic_mono_image): Initialize cache.
6999 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7001         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
7002         ves_icall_System_Buffer_ByteLengthInternal.
7004 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
7006         * reflection.c: setup klass->nested_in earlier. Allow
7007         a dash in the assembly name.
7009 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
7011         * metadata.c (mono_type_to_unmanaged): dont access
7012         type->data.klass for MONO_TYPE_OBJECT
7013         (mono_type_to_unmanaged): consider System.Delegate class
7015 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
7017         * class.c: just setup supertypes in the proper place instead of
7018         initializing the full element class for arrays.
7020 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
7022         * class.c: ensure the element class of arrays is initialized.
7023         Setup the supertype info for array classes, too.
7025 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
7027         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
7029 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7031         * Makefile.am: re-added -m option when running cygpath. This way,
7032         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
7033         separator.
7034         * mono-config.c: same codepath for locating mono config file for WIN32
7035         and the rest.
7036         * assembly.c: if mono_assembly_setrootdir is called, don't override
7037         the value set.
7039 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7041         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
7042         MONO_ASSEMBLIES variable.
7044 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
7046         * icall.c: added Assembly::GetNamespaces() icall.
7048 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7050         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
7052 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
7054         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
7055         * object.c: fixed bug in the construction of vtable for proxies
7057 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
7059         * object.c (mono_array_new): Mark mono_array_new as an icall.
7061 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7063         * class.c: fixed test for public method when overriding interfaces.
7064         Closes bug #40970.
7066 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
7068         * appdomain.h, domain.c: added mono_domain_foreach() to
7069         be able to access the currently loaded appdomains.
7070         * object.c: make string interning work across sppdomains.
7071         Mark some functions for use as icalls.
7073 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
7075         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
7077         * reflection.h reflection.c: Allocate long living data using 
7078         GC_MALLOC_ATOMIC so the collector does not need to scan it.
7080         * reflection.c: Double the allocation size in streams instead of
7081         increasing it, to prevent unneccesary copying on large assemblies.
7082         
7083         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
7084         creation if the assembly does not have the Run flag set.
7086 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
7088         * class.h: avoid the C++ keywords in header files (Jerome Laban
7089         spotted and fixed this).
7091 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7093         * object.c:
7094         (mono_unhandled_exception): fill in the arguments for the
7095         UnhandledException event. Only trigger that event for the default
7096         domain (as MS does).
7098 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
7100         * object.c: Improve typed allocation stuff based on suggestions from
7101         Paolo. Also turn it on if the GC library supports it.
7103 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7105         * object.c object.h class.h: Added experimental typed allocation
7106         facility using the interfaces in gc_gcj.h.
7108         * os/gc_wrapper.h: Added new include files.
7109         
7110 2003-04-03  Martin Baulig  <martin@ximian.com>
7112         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
7113         which is not yet enabled by default.
7115         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
7116         functions.
7117         (mono_gc_lock, mono_gc_unlock): New static functions.
7119         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
7120         functions; stop/start the world for the garbage collector.  This
7121         is using the windows API; we need to complete the SuspendThread()/
7122         ResumeThread() implementation in the io-layer to make this work on Unix.
7123         (mono_gc_push_all_stacks): New public function; tells the garbage
7124         collector about the stack pointers from all managed threads.
7126 2003-04-03  Martin Baulig  <martin@ximian.com>
7128         * object.h (MonoThread): Added `gpointer stack_ptr'.
7130         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
7132 2003-04-03  Martin Baulig  <martin@ximian.com>
7134         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
7136 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
7138         * reflection.c (typebuilder_setup_fields): Initialize field.first and
7139         field.last.
7141 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
7143         * loader.c (mono_lookup_internal_call): Report the corlib that is
7144         out of sync.
7146 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
7148         * icall.c (ves_icall_type_GetTypeCode): fixed check for
7149         System.DBNull (it's class not valuetype).
7151 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
7153         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
7154         if the array method was already assigned a token (fixes bug#40646).
7156 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
7158         * reflection.c (mono_reflection_get_type): Attempt type resolve even
7159         if no assembly is given.
7161 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
7163         * metadata.h: Added the new tables.
7165         * row-indexes.h: Added definitions for new tables.
7167         * metadata.c: Add schemas for new tables, and add support for
7168         computing the sizes of them.
7170         * class.c: Update for handling the new type cases.
7172 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
7174         * metadata.h (MONO_TYPE_IS_VOID): new macro
7176 2003-03-31  Martin Baulig  <martin@ximian.com>
7178         * threads.h (MonoThreadCallbacks): Added `thread_created'.
7180         * threads.c (mono_thread_new_init): Call `thread_created' in the
7181         mono_thread_callbacks.
7183 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
7185         * loader.h: added marshalbyrefobject_class to mono_defaults
7186         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
7187         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
7188           generation of output parameters.
7189           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
7190         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
7191           contextbound and the target object belongs to the context of the caller.
7192         * object.h: added context and unwrapped_server variables in MonoRealProxy.
7193         * object.c: Implemented support for interfaces and abstract classes
7194           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
7195           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
7197 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
7199         * class.h class.c (mono_class_is_subclass_of): New function.
7200         
7201         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
7202         routines for most common case (calls from ArrayList::ToArray).
7204         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
7205         routine so programs which call Environment::Exit() can be profiled.
7207         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
7208         Added MONO_ARCH_SAVE_REGS.
7210         * icall.c (ves_icall_type_is_subtype_of): Use new function.
7212 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
7214         * blob.h: Add a couple of new MonoType types definitions.
7216         * tabledefs.h: Add a couple of new call convs.
7218 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
7220         * reflection.h (MonoReflectionDynamicAssembly): track changes in
7221         the layout of the class.
7223         * reflection.c (alloc_table): double the size on overflow to avoid
7224         unnecessary copying.
7226         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
7227         avoid filling out metadata tables and blobs. Also set mb->ilgen to
7228         null so it can be garbage collected.
7229         
7230 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
7232         * reflection.c (mono_reflection_get_type): Return the resolved type
7233         only if it is in the assembly we searched.
7235         * reflection.c (ensure_runtime_vtable): Initialize method slots.
7237         * class.c (mono_class_setup_vtable): Set the slot of the overriding
7238         method.
7240 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7242         * appdomain.c:
7243         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
7244         the right one is 'file:///blah', but MS allows it.
7245         * assembly.c:
7246         (mono_assembly_open): allow 'file://blah'
7248         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
7250 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
7252         * socket-io.c: fixes bug #40310.
7254 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
7256         * reflection.c (mono_reflection_parse_type): handle deeply nested
7257         types correctly.
7259         * reflection.c (mono_image_create_token): Use unique token values
7260         since they will be put into a hash table.
7262         * class.c (mono_class_setup_vtable): If a method occurs in more than
7263         one place in the vtable, and it gets overriden, then change the
7264         other occurances too.
7266         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7267         object as return type.
7269 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7271         * icall.c: Deleted "ToString" implementation for double and float
7272         because they are full implemented in managed code.
7274 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7276         * reflection.c, reflection.h: implemented and exported functions
7277         to retrieve info about custom attributes.
7279 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7281         * appdomain.c: moved Uri handling to assembly.c
7282         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
7283         work when using a file Uri in *nix and windows.
7285         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
7286         GetReferencedAssemblies.
7288 2003-03-18  Dick Porter  <dick@ximian.com>
7290         * icall.c: Rename a couple of internal calls
7292         * threads.c: Set the thread state to Stopped when a thread exits.
7293         Fixes bug 39377.
7295 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
7297         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
7298         New icall.
7300         * object.c (mono_class_vtable): fix warning.
7302 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
7304         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
7306         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
7307         memory.
7308         (method_encode_clauses): Create exception info structures in the right
7309         order.
7310         (mono_reflection_setup_internal_class): Initialize supertypes field.
7312         * class.c object.c: Handle interfaces which implement other interfaces 
7313         correctly.
7315         * class.h class.c: Move the supertypes array initialization code into 
7316         a separate function so it can be used for dynamic types too. Also call
7317         it earlier, in mono_class_init(), since it can be used before the
7318         type is initialized.
7320 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7322         * Makefile.am:
7323         * assembly.c:
7324         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
7326         * appdomain.c:
7327         * appdomain.h:
7328         * marshal.c:
7329         * object.c: remove warnings.
7331 2003-03-13  Martin Baulig  <martin@ximian.com>
7333         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
7334         (MonoDebugLexicalBlockEntry): New types.
7336         * debug-mono-symfile.c
7337         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
7339 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7341         * process.c: ret can be any non-zero value accroding to MS doc.
7343 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
7345         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
7346         fixing a warning for a miss-used prototype, would have cause
7347         random memory corruption.
7349 2003-03-07  Martin Baulig  <martin@ximian.com>
7351         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
7352         getting really annoying ....
7354 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
7356         * reflection.c (fixup_method): added support for array methods.
7358 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7360         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
7361         (pointed out by Michael Adams).
7363 2003-03-04  Dick Porter  <dick@ximian.com>
7365         * icall.c: Temporarily reverted the Double and Single ToString()
7366         change, because it broke nunit.
7368 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
7370         * object.h, threads.h: make include files compatible with C++
7371         (patch by Jerome Laban <jlaban@wanadoo.fr>).
7373 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7375         * icall.c: Erased ToString helper functions for Double and Single.
7376         Now, that implementations ar all in managed code (Double and Single
7377         Formatters).
7379 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
7381         * appdomain.c: Added method for initializing the default context of
7382         a domain. Added internal call for getting the default context.
7383         * appdomain.h: Added context variable in MonoDomain struct.
7384         * domain.c: mono_domain_set also sets the default context of the domain
7385         * icall.c: Mapped internal method InternalGetDefaultContext.
7386         * object.c: mono_object_get_virtual_method returns always a remoting
7387         wrapper if the object is a transparent proxy.
7388         mono_runtime_invoke_array: when creating an object by calling the
7389         constructor, if the created object is a proxy, then the constructor should
7390         be called using the a remoting wrapper.
7392 2003-03-03  Dick Porter  <dick@ximian.com>
7394         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
7395         variable so it compiles on solaris.  Problem spotted by
7396         Christopher Taylor <ct@cs.clemson.edu>
7398 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7400         * appdomain.c:
7401         (get_info_from_assembly_name): don't leak value.
7403         * icall.c:
7404         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
7405         result.
7407 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
7409         * assembly.c: export mono_image_load_references ().
7410         * class.c: handle function pointers. mono_class_from_name() now
7411         supports nested type names directly.
7413 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
7415         * reflection.h reflection.c: Encode already created dynamic methods 
7416         and fields correctly as a DEF instead of a REF.
7418         * reflection.c: Get rid of the force_ref argument to 
7419         mono_image_typedef_or_ref since it was wrong in the first place.
7421         * string-icalls.c: add error checking to string constructors according
7422         to the MSDN docs.
7424         * reflection.c: Emit types in the order their TypeBuilders were 
7425         created. Previously, a new table index was assigned to each type before
7426         the tables were emitted. This was wrong because the signature blob
7427         might already refer to a type by its original table index.
7429 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
7431         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
7432         change.
7433         
7434 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7436         * Makefile.am: make assemblies dir have \ instead of / on windows.
7438 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
7440         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
7441         iterate over the NESTEDCLASS table using a linear search since the
7442         table is not guaranteed to be sorted by the secondary key.
7444         * class.c (mono_class_create_from_typedef): fixed up call to
7445         mono_metadata_nesting_typedef.
7446         
7447 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
7449         * marshal.c (mono_string_to_byvalstr): clear the memory as
7450         suggested by Jerome Laban <jlaban@wanadoo.fr>
7452 2003-02-26  Dick Porter  <dick@ximian.com>
7454         * process.c: Cope with padding in .rsrc blocks
7456 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7458         * metadata.h: reverted the filter_len change, it breaks reflection
7459         
7460 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7462         * metadata.h: added a new field to store the filter_len
7463         
7465 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
7467         * reflection.c: handle custom attributes for types and members
7468         created with Reflection.Emit (bug#38422).
7470 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
7472         * reflection.c: define RTSpecialName automatically for constructors for
7473         compatibility with MS.NET.
7475         * reflection.c (mono_reflection_create_runtime_class): initialize
7476         nested_in field of dynamically created classes.
7478 2003-02-22  Martin Baulig  <martin@ximian.com>
7480         * debug-mono-symfile.h: Incremented version number.
7482 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7484         * object.h icall.c process.c: fix warnings.
7486 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7488         * appdomain.h appdomain.c:
7489         (mono_domain_try_type_resolve): split the 
7490         name_or_tb argument into a name and a tb argument.
7491         (mono_domain_has_type_resolve): new function to check whenever the
7492         application has registered a TypeResolve event handler.
7493         
7494         * icall.c reflection.h reflection.c: move the type resolve logic into
7495         mono_reflection_get_type () so it will be invoked when 
7496         Assembly::GetType () is called.
7498         * reflection.c:
7499         (mono_reflection_get_type): renamed to get_type_internal.
7500         (mono_reflection_get_type): fixed type name generation so it works 
7501         for nested types too.
7502         (mono_reflection_get_type): call has_type_resolve () to avoid the 
7503         costly type name generation if there is no resolve event handler.
7505 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7507         * class.c, image.c: load exported types from file references.
7509 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
7511         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
7512           used to cache the managed methods used to create proxies and make 
7513           remote invocation of methods.
7514         * class.h: Added in MonoVTable a flag to indicate that a class needs 
7515           to be remotely created.
7516         * object.c: Modified the method mono_class_vtable(). It now initializes 
7517           the remote flag of the vtable. Modified mono_object_new_specific(), 
7518           so now it checks the remote flag.
7519         * icall.c: Added a couple of internal methods, one for enabling instance 
7520           creation interception for a type, and one for creating objects bypassing
7521           the remote check.
7523 2003-02-18  Martin Baulig  <martin@ximian.com>
7525         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
7526         New interncall to get a method's metadata token.
7528         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
7529         New interncall for the debugger.
7531 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
7533         * class.c (mono_class_setup_vtable): allocate supertype array
7535 2003-02-18  Martin Baulig  <martin@ximian.com>
7537         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
7539 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7541         * reflection.c:
7542         (assembly_name_to_aname): jump over unknown properties (i've found
7543         something like: 'type, assembly, version=xxx, custom=null, public...',
7544         so now will ignore custom=null and still get the rest of the values).
7546 2003-02-17  Dick Porter  <dick@ximian.com>
7548         * threads.c: Have Thread.Start() wait for a semaphore to signal
7549         that the thread has set up all its local data.  This fixes bug
7550         34323, where Abort() raced the new thread's TLS data.
7552         Also removes the handle_store() call from start_wrapper, because
7553         threads are now always created suspended and there is no longer a
7554         race between the parent and child threads to store the info.
7556 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
7558         * image.c: explain the #- heap issue in a message, hopefully
7559         avoiding FAQs on mono-list.
7561 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7563         * icall.c:
7564         (GetEntryAssembly): if the domain has not invoked
7565         AppDomain.ExecuteAssembly yet, return the assembly of the default
7566         AppDomain.
7568 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
7570         * class.c (mono_ldtoken): make it work in dynamic assemblies.
7572 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
7574         * metadata.c, reflection.c: simple speedup to type hash
7575         and equals code.
7577 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
7579         * image.c, image.h, class.c, assembly.c: move module loading
7580         to MonoImage. When loading metadata, consider alignemnet from
7581         the start of metadata, not from the metadata address in memory.
7583 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
7585         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
7586         AssemblyBuilder objects. Factored out custom attribute creation into
7587         a separate function.
7588         (create_custom_attr): new function to create custom attributes.
7590 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
7592         * Makefile.am: Got tired of typing the full pathname to pedump.
7593         Until there is another option, am installing this.
7595 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
7597         * class.c (class_compute_field_layout): always set field->parent 
7598         (mono_ldtoken): use mono_defaults.fieldhandle_class;
7600 2003-02-11  Dick Porter  <dick@ximian.com>
7602         * threads-types.h:
7603         * monitor.c: Rewrote Monitor, making lock much faster and
7604         Pulse/Wait work as specified.  Also uses much fewer handles, and only
7605         creates them as needed.
7607         * exception.c: Added SynchronizationLockException
7609         * threads.c: Deleted old Monitor implementation.  The new one is
7610         in a new file.
7612 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7614         * class.c: handled TypedReference type code. Set the correct size for
7615         class data. Setup interface_offsets for interface classes, too.
7617 2003-02-09  Martin Baulig  <martin@ximian.com>
7619         * debug-mono-symfile.h: Reflect latest symbol writer changes.
7621 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
7623         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
7624         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
7625         * object.c: fixed mono_object_get_virtual_method () for interfaces.
7626         * verify.c: check for code that runs after the end of the method.
7628 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7630         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
7631         "System.Math::Round2".
7632         * sysmath.h: Added Floor, Round and Round2 definitions.
7633         * sysmath.c: Modified certain functions that were not 100% compliant
7634         with MS.NET (math precision) and added the implementation of Floor,
7635         Round and Round2.
7637 2003-02-07  Martin Baulig  <martin@ximian.com>
7639         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
7641 2003-02-07  Martin Baulig  <martin@ximian.com>
7643         * debug-mono-symfile.c: Reflected latest symwriter changes.
7644         (mono_debug_create_mono_symbol_file): Removed.
7645         (mono_debug_open_mono_symbol_file): Take an argument which
7646         specifies whether to create a dynamic symbol file.
7648 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
7650         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
7652 2003-02-05  Martin Baulig  <martin@ximian.com>
7654         * reflection.c (mono_image_build_metadata): Make this public,
7655         protect it against being called multiple times, don't create
7656         resources and don't build the compressed metadata here.
7657         (mono_image_create_pefile): Do this here.
7659         * icall.c
7660         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
7662 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7664         * socket-io.c: fixed bug #36322.
7666 2003-02-06  Piers Haken <piersh@friskit.com>
7668         * appdomain.[ch]:
7669         * class.h:
7670         * debug-mono-symfile.c:
7671         * icall.c:
7672         * loader.c:
7673         * mono-config.c:
7674         * monosn.c:
7675         * reflection.c:
7676         * socket-io.c: warning cleanups
7678 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
7680         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
7681         function. works like remoting invoke, but does a check for the Proxy first.
7683 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
7685         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
7687 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
7689         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
7690         array of pointers.
7691         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
7692         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
7694         * object.c (mono_store_remote_field_new): used by the new jit
7695         instead of mono_store_remote_field
7696         (mono_load_remote_field_new): used by the new jit
7697         instead of mono_load_remote_field
7699 2003-02-05  Patrik Torstensson
7701         * appdomain.c: changed unload to take the domain id instead
7702         of domain
7703         
7704         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
7707 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7709         * appdomain.c: don't look for assemblies in ApplicationBase if
7710         PrivateBinPathProbe is set.
7712 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7714         * object.c: make the first argument in main_args contain the absolute
7715         path to the assembly. Fixes bug #37511.
7717 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7719         * icall.c: get correct UTC offset for countries not using daylight
7720         time saving. Fixes bug #30030.
7722 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7724         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
7725         and 1 are the family).
7727 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
7729         * icall.c (ves_icall_InternalExecute): removed wrong assertion
7731         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
7733 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
7735         * reflection.c: added support for SignatureHelper tokens, which is
7736         needed by the Calli opcode.
7738         * reflection.h: track changes to SignatureHelper class.
7740         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
7742 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7744         * appdomain.c: fixed loading assemblies from PrivateBinPath.
7746 2003-02-03  Patrik Torstensson
7747         * appdomain.[c|h], domain.c : 
7748          - Added support for getting a domain via domain id
7749          - Support for setting and getting domain from System.AppDomain 
7750            (used in cross appdomain channel)
7751          - Added support for get/set for a MonoAppContext on a thread 
7752            (Context class in System.Runtime.Remoting.Contexts),
7753          - Removed hack in Get/SetData and ExecuteAssembly.
7754         
7755         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
7756         the managed world to get control when a proxy is created.
7758         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
7759         
7760 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
7762         * icall.c
7763         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7764         Populate the codebase field as well.
7766 2003-02-02  Martin Baulig  <martin@ximian.com>
7768         * debug-mono-symfile.c
7769         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
7770         (mono_debug_symfile_add_method): Allow interncalls.
7772 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7774         * icall.c: throw parse exception if strtod fails or the string is empty.
7776 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
7778         * marshal.c: handle object type separately from defined
7779         class types.
7781 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
7783         * marshal.c: handle NATIVE_LPSTR for strings when it's
7784         explicitly specified.
7786 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
7788         * reflection.c, reflection.h, icall.c: setup the reflection
7789         handle cache for ModuleBuilders and AssemblyBuilders.
7791 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
7793         * reflection.c (reflection_methodbuilder_to_mono_method): set
7794         pinvoke flag
7796 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7798         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
7800 2003-01-29  Dick Porter  <dick@ximian.com>
7802         * threads.c: No need for the fake_thread kludge now that Thread
7803         doesn't run a class constructor
7804         
7805 2003-01-29  Dick Porter  <dick@ximian.com>
7807         * threads.c: Use g_direct_hash instead of the rather bogus
7808         g_int_hash
7810 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
7812         * marshal.c (mono_marshal_get_native_wrapper): add check for null
7813         (fix pinvoke12.exe)
7814         (mono_marshal_get_struct_to_ptr): generate valid IL code
7815         (mono_marshal_get_ptr_to_struct): generate valid IL code
7816         (*): correctly set sig->pinvoke, we need to memdup the signature
7817         to do that
7819 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7821         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
7822         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
7824 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7826         * profiler.c: provide more callers information.
7828 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
7830         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
7832         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
7834         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
7836 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7838         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
7839         exception instead of going into an infinite loop on dates which it 
7840         can't yet handle.
7842         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
7843         out-of-range exception if needed.
7845         * class.c (mono_class_setup_vtable): allow a virtual method to provide
7846         an implementation for an interface method and to override an inherited
7847         method at the same time. 
7848         Imagine a scenario when a virtual method is used to override a
7849         virtual abstract method in a parent class, and this same method 
7850         provides an implementation for an method inherited from an interface. 
7851         In this case, the interface resolution code will set im->slot, which 
7852         means that the virtual method override pass will skip this method 
7853         which means a pointer to the abstract method inherited from the parent
7854         will remain in the vtable of this non-abstract class.
7856         * class.c: (mono_class_setup_vtable): continue search for a real 
7857         method if only an abstract method is found.     
7859 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7861         * reflection.c: add size to encoding for ByValStr and ByValArray
7862         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
7864 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7866         * class.c (mono_class_setup_vtable): pass the override info as an
7867         argument.
7869         * class.c (mono_class_setup_vtable): set the slot of overriding methods
7870         correctly.
7871         
7872         * reflection.c (ensure_runtime_vtable); add support for method 
7873         overrides.
7874         
7875 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7877         * reflection.c (resolution_scope_from_image): Hack to work to work with
7878         dynamic assemblies.
7880         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
7881         added a 'force_ref' argument to force this function to allways return 
7882         a TypeRef. This is needed by mono_image_get_memberref_token ().
7883         
7884 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7886         * reflection.c (mono_image_get_type_info): interfaces really don't have
7887         a parent.
7889         * reflection.c (mono_image_basic_init): fill out missing fields of
7890         image structure.
7892         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
7893         dynamic assemblies. This is required so dynamic assemblies show up in
7894         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
7895         Type::GetType() etc. This is consistent with MS behaviour.
7897         * image.c image.h reflection.c: add newly created classes to the name 
7898         cache so mono_class_get () will find them.      
7900 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7902         First part of changes to get IKVM.NET running under mono.
7903         
7904         * appdomain.h, appdomain.c: added new function 
7905         mono_domain_try_type_resolve() which will emit TypeResolve events. 
7906         This function will call AppDomain::DoTypeResolve to do the actual work.
7908         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
7909         moved existing code dealing with dynamic tokens to a new function 
7910         called mono_reflection_lookup_dynamic_token (). This function will 
7911         raise TypeResolve events when appropriate. Since reflection.c is not 
7912         part of libmetadata, a new hook function called 
7913         mono_lookup_dynamic_token() is added to class.c which will call this.
7915         * assembly.h assembly.c: make the invoke_load_hook function public,
7916         so it can be called for dynamic assemblies.
7918         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
7920         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
7921         type isn't found.
7923         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
7924         MonoGHashTable, since it contains pointers to objects which the GC 
7925         needs to track.
7927         * assembly.c (search_loaded): remove unused variable.
7928         
7929 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
7931         * object.c: fixed issue exposed by gcc-generated IL programs
7932         that use RVA data for pointers.
7934 2003-01-25  Martin Baulig  <martin@ximian.com>
7936         * threads.c (start_wrapper): Moved the initialization of
7937         `start_func' above the mono_new_thread_init() call to which we
7938         pass it as argument.
7940 2003-01-24  Martin Baulig  <martin@ximian.com>
7942         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
7943         the MonoThread pointer.
7945 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7947         * icall.c: Rename `PowImpl' to Pow.
7949 2003-01-23  Dick Porter  <dick@ximian.com>
7951         * threads.c (start_wrapper): Create a Thread object if needed, so
7952         the Main() thread can do the class initialisation in a subthread
7953         that has been set up to allow managed code execution.
7955         Pass the thread ID instead of the MonoThread pointer to the thread
7956         start and attach callbacks.  This change is required, because the
7957         jit thread start callback must be called _before_ the Thread
7958         object can be created.
7959         
7960         (mono_thread_init): Removed much object creation code that is no
7961         longer needed.  No managed code is called from here now.
7963         * object.c (mono_runtime_exec_managed_code): Create a subthread
7964         for Main, and call back to the runtime to use it.
7965         Set the exit code when Main exits.
7967         * gc.c: Make sure domain finalisation happens in a subthread.
7968         Re-enable threaded GC, fixing bug 31333 (again).
7970         * environment.c: System.Environment internall calls (so far just
7971         ExitCode is here, the others are still in icall.c)
7973         * appdomain.c (mono_runtime_cleanup): All threads running managed
7974         code should have finished before mono_runtime_cleanup() is
7975         reached, so no need to clean up threads.
7977 2003-01-22  Martin Baulig  <martin@ximian.com>
7979         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
7980         `gpointer func' arguments.      
7981         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
7982         but added `MonoThread *thread' argument.
7983         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
7985         * threads.c (mono_new_thread_init): Added `gpointer func' argument
7986         and pass it to the mono_thread_start_cb callback.
7987         (mono_install_thread_callbacks): New public function to install a
7988         set of callbacks which are set by the debugger.
7989         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
7991 2003-01-22  Martin Baulig  <martin@ximian.com>
7993         * Makefile.am: Install debug-mono-symfile.h.
7995 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
7997         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
7999 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
8001         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
8002         * class.c (mono_ptr_class_get): correctly set access levels of pointers
8003         (mono_array_class_get): correctly set access levels of arrays
8005 2003-01-20      Patrik Torstensson
8006         * image.h (MonoAssemblyName): changed major, minor, build, revision
8007         from signed to unsigned.
8009 2003-01-20  sean kasun <skasun@azstarnet.com>
8011         * reflection.c (load_cattr_value): Now this handles
8012         MONO_TYPE_SZARRAY.  Fixes bug #35629
8014 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
8016         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
8017         integer value
8019 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8021         * decimal.c: fixed bug #26056.
8023 2003-01-17  Martin Baulig  <martin@ximian.com>
8025         * gc.c: Raise an ExecutionEngineException instead of using g_error().
8027 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8029         * exception.[ch]:
8030         (mono_get_exception_type_initialization): new function.
8032         * object.c: throw a TypeInitializationException when an exception is
8033         thrown invoking the class constructor.
8035 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8037         * reflection.c: fixed attribute reading.
8039 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8041         * icall.c:
8042         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
8043         provided, look for the type in the calling assembly and then in
8044         mscorlib; if the assembly name is provided, only try that one.
8046 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
8048         * object.c: register the vtable before there is a chance it's
8049         queried again recursively.
8051 2003-01-13  Duncan Mak  <duncan@ximian.com>
8053         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
8054         gc-internal.h. 
8055         
8056 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
8058         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
8060 2003-01-11  Martin Baulig  <martin@ximian.com>
8062         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
8063         this to 20 for the release.
8065 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
8067         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
8069         * loader.c (mono_method_get_marshal_info): bug fix
8071         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
8072         structures with explicit layout
8074 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8076         * profiler.c: made the output more readable (and sorted). 
8077         Added caller information for the allocation profiler.
8079 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
8081         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
8083 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8085         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
8086         to get value types.
8087         
8088 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
8090         * object.c, profiler.h, profiler.c, profiler-private.h:
8091         Added object allocation profiler.
8093 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
8095         * reflection.h, reflection.c: handle global methods.
8096         Compress blob entries.
8098 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
8100         * marshal.c: fix compilation.
8102 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
8104         * loader.c (mono_method_get_marshal_info): impl.
8106         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
8108 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8110         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
8111         for reference types.
8113 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
8115         * loader.c: fixed off by one error in loaded parameter names.
8117 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
8119         * marshal.c (mono_marshal_get_icall_wrapper): like
8120         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
8121         instead of a MonoMethod.
8123 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8125         * decimal.c: fixed bug #36537.
8127 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
8129         * marshal.c: throw a missing method exception if a
8130         P/Invoke method is not found.
8132 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
8134         * icall.c: allow a null this for constructors.
8136 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
8138         * icall.c: raise the proper exceptions if the arguments to the
8139         internal Invoke are incorrect.
8141 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
8143         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
8145 2003-01-03  Martin Baulig  <martin@ximian.com>
8147         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8149 2002-12-31  Martin Baulig  <martin@ximian.com>
8151         * debug-mono-symfile.c: Completely rewrote the type section.
8152         Instead of using individual malloc()ed fields, we use one big
8153         continuous memory area and offsets into this area.
8154         See the comments in the source code for details.
8156 2002-12-30  Martin Baulig  <martin@ximian.com>
8158         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
8160 2002-12-30  Martin Baulig  <martin@ximian.com>
8162         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
8163         line number table in this data blob instead of using an external
8164         pointer.
8166 2002-12-28  Martin Baulig  <martin@ximian.com>
8168         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
8170 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
8172         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
8173         as a boxed return type.
8175 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
8177         * appdomain.c
8178         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
8179         g_build_filename to properly get separators on the filename created.
8181         * object.h: Small change, introduce MonoMarshalByRefObject to
8182         track the layout of that structure in the C# universe as we make
8183         changes there.
8185 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
8187         * object.c: removed assert to allow static fields on interfaces.
8188         * loader.c: a TypeSpec may be used for any type, not just arrays.
8190 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
8192         * class.c, class.h: added mono_class_array_element_size ().
8193         Ignore static methods in interfaces.
8195 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8197         * threads.c: fixed the build under cygwin.
8199 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
8201         * reflection.c: handle nullref constants. Allocate keys for
8202         reflection handles with the GC.
8204 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8206         * threads.c, threads.h: added mono_thread_get_abort_signal()
8207         to get a suitable signal for thread abort.
8209 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
8211         * metadata.c: fix handling of ExportedType table.
8213 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8215         * icall.c: added WriteWindowsDebugString internal call.
8217 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8219         * reflection.h: added fields to match C# implementation.
8221 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8223         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
8225 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
8227         * gc.h, gc-internal.h: Rename header for GC internal calls to
8228         gc-internal.h from gc.h as to not clash with Boehm GC having its
8229         header installed as <gc.h> in outside include paths.
8230         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
8231         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
8233 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8235         * icall.c: assign minor, build and revision in FillName.
8237 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
8239         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
8240         Added support for running code generated by Reflection.Emit.
8242 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8244         * appdomain.c: check for NULL argument in LoadFrom.
8246 2002-12-10  Dick Porter  <dick@ximian.com>
8248         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
8250 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8252         * appdomain.c: fix buglet when building exe file name.  Handle full
8253         assembly name (needed after latest changes to AssemblyName).
8254         * image.c:
8255         (mono_image_close): free some hashtables.
8257 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
8259         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
8260         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
8261         on some systems (redhat 7.3) 
8263 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
8265         * threads.c: delete the critical section of a sync block,
8266         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
8268 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
8270         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
8272 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8274         * appdomain.[ch]: handle the assembly preload event to try loading the
8275         assemblies using the paths we have in the current domain.
8277         * assembly.[ch]: created an assembly preload hook that is called to try
8278         loading the assembly by other means that the ones provided here.
8280         * domain.c: initialize the domain search path.
8282         From now on, assemblies (TODO: except corlib and System) are loaded
8283         according to these rules when using mono_assembly_load ():
8285                 1. It tries to load the assembly from the ApplicationBase
8286                 of the current domain appending .dll and .exe (TODO: have to
8287                 try loading from name/name.dll and name/name.exe).
8289                 2. It tries the search path specified in PrivateBinPath for the
8290                 current domain (if any).
8292                 3. Previous behavior.
8294 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
8296         * icall.c: implemented GetInterfaceMap() related icall.
8297         * domain.c, loader.h: load MethodInfo in mono_defaults.
8299 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8301         * gc.c: disable the finalizer thread for now, untill all the issues
8302         with it are resolved.
8304 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8306         * string-icalls.c: handle embedded nulls in string ctor when the
8307         length is specified.
8309 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8311         * class.c: look for explicit interface implementation in parent
8312         classes, too.
8314 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
8316         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
8318 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8320         * gc.c: protect handles with a critical section.
8322 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8324         * icall.c:
8325         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
8326         parameters. If no assembly specified, try getting the type from all
8327         the assemblies in the current domain, else, load the assembly and get
8328         the type from it.
8330 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8332         * marshal.c: applied patch from Aleksey Demakov that fixes
8333         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
8335 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8337         * icall.c: fixed get_location.
8339 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
8341         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
8342         declarations to make it work with older gcc. 
8344         * loader.c (mono_get_method): set signature->pinvoke for native calls
8346 2002-11-20  Dick Porter  <dick@ximian.com>
8348         * threads.c (mono_thread_init): Set the main thread's handle
8350 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
8352         * gc.c: allow compilation without GC support. Changed to match the
8353         mono coding style.
8355 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8357         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
8359 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
8361         * reflection.c: set a public key token on the core assemblies.
8363 2002-11-18  Dick Porter  <dick@ximian.com>
8365         * threads.c: Split out some thread initialisation so that other
8366         files can set the start callback function.
8368         * gc.c: Run finalisers in a separate thread, to avoid stack
8369         overflow.  Fixes bug 31333.
8371         * appdomain.c: Set up GC finalisation thread.
8373         * reflection.c: 
8374         * object.c: 
8375         * domain.c: Use gc.h macros for GC_malloc
8376         
8377 2002-11-15  Dick Porter  <dick@ximian.com>
8379         * threadpool.c: 
8380         * threads.c:
8381         * appdomain.c: Removed mono_runtime_init_with_attach(),
8382         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
8383         merging the extra parameter with the existing function.  Removed
8384         unneeded code in mono_thread_attach().
8386 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
8388         * image.c (mono_image_loaded_by_guid): a method to get loaded
8389         images by guid. 
8390         (load_metadata_ptrs): we store the guid as string.
8392 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
8394         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
8396         * metadata.c (mono_guid_to_string): imported method form Zoltan
8397         Varga (slightly modified)
8399         * assembly.c (mono_assembly_open): load precompiled code
8401         * loader.h (MonoMethod): we store the method token for use in the
8402         aot compiler. 
8404 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8406         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
8407         the hook function called when an assembly is loaded.
8408         
8409         * domain.c: Modified file.
8410         (mono_domain_assembly_load): removed hash table insertion of assemblies.
8412         Fixes bug #33196.
8414 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
8416         * reflection.c: Map PEFileKind to the value expected by the WinNT
8417         image loader. 
8419 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8421         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
8422         Read until the buffer is filled completely.
8424 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8426         * icall.c: implemented MonoType.InternalGetEvent ().
8428 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8430         * appdomain.c: implemented InitAppDomainSetup. Delayed
8431         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
8432         the entry_assembly.
8434         * assembly.c: base_dir is now an absolute path ending with
8435         G_DIR_SEPARATOR.
8437         * icall.c: modified get_location according to the above changes.
8439         * object.c: init AppDomain.SetupInformation for the default domain after
8440         we have the entry assembly.
8442         * domain.c: when unloading a domain, setup = NULL.
8444 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
8446         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
8448 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
8450         * object.h, object.c: introduced mono_object_get_virtual_method ()
8451         to lookup the method invoked on an object when a callvirt is done on
8452         a method.
8453         * icall.c: make MethodInfo::Invoke() always do a virtual call.
8455 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8457         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
8458         current domain when loaded an assembly and failed to load it.
8460         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
8462 2002-10-31  Dick Porter  <dick@ximian.com>
8464         * icall.c: 
8465         * file-io.h: 
8466         * file-io.c: Return the error status in a parameter, as the
8467         GetLastError() value has long since been blown away if we try and
8468         look it up in a subsequent internal call invocation.  Delete the
8469         GetLastError() internal call, because it's useless.
8471 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
8473         * class.[ch]: added cast_class to fix bug 29517
8475 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
8477         * marshal.c: create valid IL code in the filter clause:
8478         the new JIT is less forgiving:-)
8480 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8482         * icall.c: removed get_property internal call.
8484 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
8486         * appdomain.h domain.c: Added an ID to appdomains.
8487         
8488         * threads.c threads.h icall.c: Implement icall
8489         Thread:GetDomainID(), and remove unused icall 
8490         CurrentThreadDomain_internal.
8492 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8494         * icall.c: Don't recurse through the base types in GetConstructor.
8495         Fixes bug #32063. 
8497 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8499         * mempool.h, mempool.c: added mono_mempool_empty() and
8500         mono_mempool_stats().
8502 2002-10-23  Dick Porter  <dick@ximian.com>
8504         * file-io.c: 
8505         * file-io.h: 
8506         * icall.c: Added MonoIO.GetFileType internal call
8508 2002-10-17  Dick Porter  <dick@ximian.com>
8510         * appdomain.c (mono_runtime_cleanup): Don't signal the async
8511         delegate semaphore before waiting for all threads to finish,
8512         because new threads can also call async delegates.  Fixes bug
8513         32004.
8515         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
8516         of 3 seconds, in case another async job is queued.  (This part is
8517         needed because the bug fix reintroduced the 3s exit lag.)  This
8518         makes the mono_runtime_shutdown flag superfluous.
8520 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
8522         * reflection.c: include ehader size in method section headers.
8523         Really check for suplicated modules entries.
8525 2002-10-17  Martin Baulig  <martin@gnome.org>
8527         * debug-mono-symfile.c: Added back support for locals.
8529 2002-10-14  Martin Baulig  <martin@gnome.org>
8531         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
8532         MONO_TYPE_VOID.
8534 2002-10-14  Martin Baulig  <martin@gnome.org>
8536         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
8537         mono_class_get() instead of looking in the class cache. 
8539 2002-10-13  Martin Baulig  <martin@gnome.org>
8541         * debug-mono-symfile.c: Set version number to 28, include the
8542         signature in method names.
8544 2002-10-13  Martin Baulig  <martin@gnome.org>
8546         * debug-mono-symfile.h: Set version number to 27.
8548 2002-10-11  Martin Baulig  <martin@gnome.org>
8550         * gc.c: Don't register/unregister NULL pointers as disappearing links.
8552 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8554         * metadata.c, metadata.h: added helper function to allocate signatures.
8556 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8558         * icall.c: added internal call to get the location of machine.config.
8560 2002-10-08  Martin Baulig  <martin@gnome.org>
8562         * debug-mono-symfile.c: Ignore classes with a pending init for the
8563         moment.
8565 2002-10-03  Dick Porter  <dick@ximian.com>
8567         * threads.c: Freebsd pthread_t is a pointer
8569 2002-10-03  Dick Porter  <dick@ximian.com>
8571         * socket-io.c: Implemented GetHostName_internal
8573 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8575         * mono-config.c:
8576         (mono_config_parse_file): don't leak the text.
8578 2002-10-02  Martin Baulig  <martin@gnome.org>
8580         * debug-mono-symfile.c: Added support for methods.
8582 2002-10-01  Martin Baulig  <martin@gnome.org>
8584         * debug-mono-symfile.c: Don't emit methods and line numbers for
8585         the dynamic symbol file, just write the type table.  We can easily
8586         have an external helper program which creates a symbol file for an
8587         IL file.        
8589 2002-10-01  Dick Porter  <dick@ximian.com>
8591         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
8592         Only add the handle to the cleanup array when we're about to
8593         launch the thread.  Bug 31425 deadlocked when the test was run on
8594         mono under w32.
8596 2002-10-01  Martin Baulig  <martin@gnome.org>
8598         * debug-mono-symfile.c: Added support for properties.
8600 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8602         * reflection.c: unaligned store fix from Mark Crichton
8603         <crichton@gimp.org>.
8605 2002-09-27  Martin Baulig  <martin@gnome.org>
8607         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
8608         New interncall.
8610 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
8612         * assembly.h, assembly.c: use a sane API to hook into the assembly
8613         loading process instead of a useless special-purpouse hack
8614         (ngen needs a hook, too, for example).
8616 2002-09-27  Dick Porter  <dick@ximian.com>
8618         * threads.c (mono_thread_init): Call GetCurrentProcess() so
8619         io-layer can set up some process handle info.  Not needed on w32,
8620         but doesn't hurt either.
8622         * process.c: Pass the program name in the second parameter to
8623         CreateProcess, so the path is searched.  Include the working
8624         directory. Implemented process name, process enumeration, and some
8625         process detail internal calls.
8626         
8627         * icall.c: Added internal calls for process lookup, and some
8628         process details
8630 2002-09-26  Martin Baulig  <martin@gnome.org>
8632         * assembly.c (mono_install_open_assembly_hook): New global
8633         function to install a function to be invoked each time a new
8634         assembly is loaded.
8635         (mono_assembly_open): Run this callback function if set.
8637         * debug-mono-symfile.c: Put back line numbers for the dynamic
8638         symbol file and also record the .il file as source file.  This
8639         allows us to install the temporary symbol file as `file.dbg' just
8640         like a compiler-generated one.
8642 2002-09-26  Nick Zigarovich <nick@chemlab.org>
8644         * Corrected typo in gc.c (BOHEM vs BOEHM).
8646 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8648         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
8649         GetProperties. Also avoid calling g_slist_length in GetProperties and
8650         GetMethods.
8652 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8654         * reflection.c: avoid unaligned stores (bug spotted by
8655         Mark Crichton  <crichton@gimp.org>).
8657 2002-09-25  Martin Baulig  <martin@gnome.org>
8659         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
8660         instead of guint64 for addresses and added prologue/epilogue info.
8662 2002-09-25  Martin Baulig  <martin@gnome.org>
8664         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
8665         store line number info.  For the dynamic symbol file, we only need
8666         to provide the JIT generated dynamic line number info for the dynamic
8667         symbol file.
8669 2002-09-25  Martin Baulig  <martin@gnome.org>
8671         * debug-mono-symfile.h: Incremented version number.
8673 2002-09-24  Martin Baulig  <martin@gnome.org>
8675         * class.c (mono_debugger_class_init_func): New global function
8676         pointer variable.
8677         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
8678         call it.
8680         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
8681         function.  This is called via the mono_debugger_class_init_func
8682         hook to add all types to the dynamic type table.
8683         (ves_icall_MonoDebugger_GetType): New interncall to get a class
8684         from its metadata token.
8686         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
8687         New interncall for the debugger.
8689 2002-09-24  Nick Drochak <ndrochak@gol.com>
8691         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
8692         before using it in case it is null.
8693         
8694 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8696         * metadata.c: allow custom modifiers in local var signatures
8697         (bug spotted by Zoltan Varga).
8699 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8701         * class.c: deal with the <Module> class that may have a NULL vtable.
8702         Eliminate warnings.
8704 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8706         * image.c, image.h: more strong name helpers.
8707         * monosn.c: more work: convert pem keys to cryptoapi format.
8709 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8711         * string-icalls.c: speedup IndexOf.
8713 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8715         * icall.c: updates from Zoltan.2.Varga@nokia.com.
8717 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8719         * icall.c: cleanup: use mono_object_domain ().
8721 2002-09-23  Martin Baulig  <martin@gnome.org>
8723         * debug-mono-symfile.c: Improved type support.
8725 2002-09-22  Martin Baulig  <martin@gnome.org>
8727         * debug-mono-symfile.c: Added support for reference types and strings.
8729 2002-09-22  Martin Baulig  <martin@gnome.org>
8731         * debug-mono-symfile.c: Started to work on the type table.
8733 2002-09-21  Martin Baulig  <martin@gnome.org>
8735         * debug-mono-symfile.c: Largely reworked the symbol table format.
8736         The symbol table is now incrementally updated each time a new
8737         method is added.  We're now also using our own magic and version
8738         so that you don't need to recompile all your classes if the
8739         dynamic table changes.
8740         (mono_debug_update_mono_symbol_file): Removed.
8741         (mono_debug_symfile_add_method): New function to add a method.
8743 2002-09-21  Martin Baulig  <martin@gnome.org>
8745         * icall.c
8746         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
8747         New interncall.
8749         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
8750         New interncall to get a method from its metadata token.
8752 2002-09-21  Martin Baulig  <martin@gnome.org>
8754         * debug-mono-symfile.c: Create type table.
8756 2002-09-20  Martin Baulig  <martin@gnome.org>
8758         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
8760 2002-09-20  Martin Baulig  <martin@gnome.org>
8762         * debug-mono-symfile.c: Provide information about params and locals.
8764 2002-09-20  Martin Baulig  <martin@gnome.org>
8766         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
8767         New interncall.
8769         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
8770         interncall to get a method from its metadata token.
8772 2002-09-20  Martin Baulig  <martin@gnome.org>
8774         * debug-mono-symfile.c: Added a few checks for method->header
8775         being non-NULL.  This should never happen, but for the moment
8776         let's use a g_warning() rather than a g_assert().
8778 2002-09-19  Mark Crichton  <crichton@gimp.org>
8780         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
8781         even if support for it isn't present.  Added an #ifdef to fix this.
8783         * socket-io.c: Added checks back for Solaris support.
8785 2002-09-19  Martin Baulig  <martin@gnome.org>
8787         * debug-mono-symfile.c (read_string, write_string): Reflect latest
8788         changes in the symbol file format.
8790 2002-09-18  Martin Baulig  <martin@gnome.org>
8792         * debug-mono-symfile.c: Set version number to 21.
8794 2002-09-18  Dick Porter  <dick@ximian.com>
8796         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
8797         on netbsd.  Fixes bug 30051.
8799 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8801         * reflection.c:
8802         (set_version_from_string): little fix.
8804 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8806         * monosn.c, Makefile.am: added strong name utility.
8807         * reflection.h, reflection.c: implemented delayed signing,
8808         locale, version and hash id assembly attributes.
8810 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8812         * loader.c, metadata.c: load param attributes in signatures.
8814 2002-09-16  Martin Baulig  <martin@gnome.org>
8816         * debug-mono-symfile.c: Added string table with all method names.
8818 2002-09-14  Martin Baulig  <martin@gnome.org>
8820         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
8821         fast method lookup.
8823 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8825         * reflection.c: record the public key token of referenced assemblies.
8827 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8829         * image.c, image.h: added functions to get the strong name and the
8830         public key of an assembly.
8831         * pedump.c: use them.
8833 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
8835         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
8837 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
8839         * marshal.c (mono_marshal_get_managed_wrapper): Added
8840         MONO_TYPE_BOOLEAN 
8842 2002-09-11  Martin Baulig  <martin@gnome.org>
8844         * gc.c: Call GC_unregister_disappearing_link() on all links when
8845         finalizing them, this is necessary to aviod a crash in boehm's
8846         finalize handler.
8848 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8850         * gc.c: handle GetTarget for finalized objects spotted and fixed by
8851         nick@chemlab.org.
8853 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8855         * icall.c: implemented MonoType::Module.
8856         * reflection.c, reflection.h: mono_module_get_object () from
8857         Tomi Pakarinen <tomi.pakarinen@welho.com>.
8859 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8861         * icall.c: ignore overridden methods in GetMethods ().
8862         Fix for FieldInfo::SetValue().
8863         * object.c: handle float/double in runtime invoke.
8865 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8867         * object.c: allow a constructor to be called again on an object.
8869 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8871         * class.h, class.c: move field layout code to it's own function and
8872         export it. Get an interface id earlier. Move fields in MonoClass
8873         so they are more cache friendly and align the bitfields.
8874         * loader.c: temporary handle get_param_names() for a runtime method.
8875         * reflection.c, reflection.h: more code to handle runtime creation of
8876         types.
8878 2002-09-09  Martin Baulig  <martin@gnome.org>
8880         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
8881         signature with the pinvoke field being set for the actual call.
8883 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8885         * icall.c: removed some unused icalls. Start of map of glib charsets
8886         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
8888 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8890         * debug-helpers.c: break infinite loop (found and fixed by
8891         Holger Arnold <harnold@gmx.de>).
8893 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8895         * icall.c: target may be null in create_delegate.
8897 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8899         * marshal.c: handle a boolean return type.
8901 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8903         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
8905 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8907         * gc.c: fix weakreferences.
8909 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8911         * icall.c: added icall to get default codepage.
8913 2002-09-03  Dick Porter  <dick@ximian.com>
8915         * threads.h: 
8916         * threads.c: Use MonoThread instead of MonoObject where
8917         apropriate.
8919         Store running thread objects in a hash table, so that we have all
8920         the info to hand when waiting for them to finish
8921         (means we don't need OpenThread() any more, so mingw builds should
8922         be fully functional again.)
8924         * verify.c:
8925         * object.h: Added thread ID to MonoThread
8927 2002-09-03  Martin Baulig  <martin@gnome.org>
8929         * icall.c (System.Reflection.Assembly::get_location): New interncall.
8931 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8933         * icall.c: fixed leak in get_temp_path. Thanks lupus.
8935 2002-09-03  Martin Baulig  <martin@gnome.org>
8937         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
8938         argument to store the end address of the disassembled instruction.
8940         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
8941         here from debug-symfile.h.
8942         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
8943         JIT into this struct.
8944         (MonoSymbolFile): Added `char *image_file' field.
8945         (MonoDebugGetMethodFunc): Removed.
8946         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
8947         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
8948         (mono_debug_find_method): New method.
8950         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
8951         create a full symbol file.
8952         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
8953         and static symbol files.
8954         (mono_debug_find_method): The symbol file keeps an internal method hash,
8955         call this to get a MonoDebugMethodInfo from a MonoMethod.
8957         * debug-symfile.[ch]: Removed.
8959 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
8961         * image.c (do_mono_image_open): Remove linker version check.
8963 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
8965         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
8966         wrappers for instance methods.
8967         
8968 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8970         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
8972 2002-08-28  Dick Porter  <dick@ximian.com>
8974         * Makefile.am: Export HOST_CC for w32 builds
8976 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8978         * file-io.c process.c: MonoString are null terminated, no
8979         need for mono_string_to_utf16() anymore.
8981 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8983         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
8985 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
8987         * icall.c, reflection.h: speedup System.MonoType.
8989 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8991         * reflection.c: allow null as the value of a string argument in
8992         custom attributes constructors.
8994 2002-08-27  Martin Baulig  <martin@gnome.org>
8996         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
8997         `trampoline_address' field.
8999 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
9001         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
9002         check (fixes bug #29486) 
9004 2002-08-27  Martin Baulig  <martin@gnome.org>
9006         * debug-mono-symfile.c: Changed the file format in a way that allows us
9007         open it read-only and to use a specially malloced area for all the
9008         dynamic data.  We can now also generate a symbol file on-the-fly if we're
9009         debugging IL code and there is no MCS generated symbol file for it.
9011 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9013         * object.c: added a define for a good string and array
9014         creation speedup (not enabled by default because we need to deal with
9015         the synch stuff).
9017 2002-08-26  Martin Baulig  <martin@gnome.org>
9019         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
9020         function to create a dynamic symbol file.  This is used by the
9021         debugger to create a symbol file for IL code on-the-fly.
9023 2002-08-26  Martin Baulig  <martin@gnome.org>
9025         * loader.c (mono_lookup_pinvoke_call): Include the error message
9026         from g_module_error() in the error message.
9028 2002-08-24  Martin Baulig  <martin@gnome.org>
9030         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
9031         function to update the symbol file.  The symbol file is mmap()ed
9032         writable, but private.  This allows us to install the symbol file
9033         together with the assembly.
9035 2002-08-24  Martin Baulig  <martin@gnome.org>
9037         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
9038         but they can read the new symbol file format which mcs is now creating.
9040         * debug-symfile.c (mono_debug_find_source_location): Moved to
9041         debug-mono-symfile.c; this is now operating on the new symbol file.
9043 2002-08-23  Martin Baulig  <martin@gnome.org>
9045         * debug-helpers.c (mono_method_desc_from_method): New function to get
9046         a MonoMethodDesc from a MonoMethod.
9048 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9050         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
9051         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
9053 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9055         * string-icalls.[ch]: make helper methods static.
9057 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9059         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
9060         types to it and to SetValueInternal.
9062         * object.c: Moved handle_enum label to its proper place. This was the
9063         f... bug! ;-)
9065         This time i compiled mcs and gtk-sharp and they both work.
9067 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9069         * icall.c: reverted partially my previous patch until 
9070         object.c:set_value handles enums correcly.
9072 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9074         * icall.c:
9075         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
9076         (ves_icall_System_Environment_get_MachineName): removed warning when
9077         compiling under cygwin.
9079 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9081         * object.c: fixed field_get_value() for reference types.
9083 2002-08-22  Dick Porter  <dick@ximian.com>
9085         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
9086         Don't free a buffer while it's still needed.  Patch from Jonathan
9087         Liger <Jonathan.liger@wanadoo.fr>
9089 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
9091         * icall.c (ves_icall_System_Environment_get_Platform): Add new
9092         internal call.
9094 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
9096         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
9097         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
9099         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
9100         we call unmanaged code which throws exceptions.
9102 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9104         * appdomain.h: added per-domain entry_assembly.
9105         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
9106         arguments.
9107         * icall.c: Assembly::GetEntryAssembly icall.
9108         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
9109         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
9111 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9113         * appdomain.h, gc.c: added mono_domain_finalize ().
9115 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9117         * object.c:
9118         (mono_print_unhandled_exception): changed g_warning by g_printerr
9119         because g_log has a 1024 characters limit (yeah, i got a big stack
9120         trace). Don't print exception name, that should be in ToString 
9121         returned string.
9123 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9125         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
9126         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
9128 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9130         * object.c:
9131         (mono_print_unhandled_exception): after previous commit, i realized
9132         that MS calls ToString on the exception. I changed this function to
9133         do that. This way we get stack_trace for free.
9135 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9137         * object.c:
9138         (mono_print_unhandled_exception): invoke Message property instead of
9139         getting 'message' field from Exception. Don't allocate memory for
9140         'trace' and 'message' if not needed.
9142 2002-08-18  Dick Porter  <dick@ximian.com>
9144         * unicode.c: Fix asserts to match Encoder.cs checks
9146 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9148         * marshal.c: fix unaligned store issue and a few wrong
9149         opcode argument types.
9151 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9153         * icall.c: added GetUninitializedObjectInternal internal call.
9155 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
9157         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
9158         to the right domain.
9160 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
9162         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
9164         * class.c (class_compute_field_layout): set blittable to false for Strings
9166         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
9168 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9170         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
9171         first chunk of code to create types at runtime. Code to
9172         handle ReflectedType/DeclaringType. Make reflection handles
9173         domain specific.
9175 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9177         * class.c: set correct name in arrays.
9179 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
9181         * appdomain.c (mono_domain_transfer_object): make it work with
9182         valuetypes. bug fixes.
9184 2002-08-12  Dick Porter  <dick@ximian.com>
9186         * object.h: Rename some parameters to avoid c++ keywords (Patch
9187         from Joseph Wenninger <kde@jowenn.at>)
9189 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
9191         * icall.c: added icall to implement Assembly.GetFile*.
9193 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9195         * reflection.h, reflection.c: code to embed managed resources.
9197 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9199         * class.c: move all the type size stuff into
9200         class_compute_field_layout().
9202 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9204         * class.c: ensure enums have always the correct instance size.
9205         * unicode.c: remove wrong assert.
9207 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9209         * assembly.c: fix mem corruption issue.
9210         * image.h, image.c: added mono_image_get_resource () to access
9211         managed resources.
9212         * icall.c: implemented Assembly.EntryPoint property and some
9213         Managed Resources related internalcalls.
9216 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9218         * image.c, image.h: impemented mono_image_get_entry_point ().
9219         * appdomain.c: use mono_image_get_entry_point.
9221 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9223         * reflection.c: support the object type argument when loading
9224         custom attributes.
9226 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
9228         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
9229         String as return type.
9231 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
9233         * reflection.c: fix encoding of named args for custom attrs to match
9234         the ms implementation. Read them back when instantiating custom
9235         attributes.
9237 2002-08-02  Radek Doulik  <rodo@ximian.com>
9239         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
9240         by Dietmar as quick fix
9241         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
9242         16 as stack size, used on more places as quick fix before Dietmar
9243         will fix it properly
9245 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
9247         * object.h, object.c: added accessors for fields and properties.
9249 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
9251         * class.c, class.h: made mono_class_get_field_from_name ()
9252         loop on parent types.
9253         Added mono_class_get_property_from_name ().
9255 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9257         * class.c, class.h: move the code to setup the type vtable in its own
9258         function so that it can be reused also for types created at runtime.
9259         Eliminate the "class" identifier from the header file.
9260         * reflection.c: setup the vtable for enums so that we can create
9261         objects for use in SetConstant ().
9263 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
9265         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
9266         instead of the delegate itself as this pointer (bug #28383)
9268 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
9270         * marshal.c (mono_marshal_get_managed_wrapper): added return type
9271         conversions.
9273 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9275         * loader.c: don't set the pinvoke bit on icalls.
9277 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
9279         * debug-helpers.c (mono_method_full_name): only print a number to
9280         indicate wrapper type (so that the output is more readable in traces).
9282 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
9284         * class.c (mono_class_init): include method override patch from Paolo
9286 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
9288         * icall.c: fixed GetTypeCode().
9290 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
9292         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
9293         use real delegate invoke function to make it work with multicast
9294         delegates (fix bug# 28291).
9296 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9298         * object.c: load constant strings.
9300 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9302         * reflection.c: no magic numbers.
9303         * tabledefs.h: security action enum.
9305 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9307         * assembly.c: fix possible memory corruption.
9309 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9311         * reflection.h, reflection.c: added support for linking resources.
9312         * verify.c: check we have an updated corlib.
9314 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
9316         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
9317         string arrays.
9318         (mono_marshal_string_array): null terminate unmanaged string arrays.
9319         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
9321 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9323         * icall.c: Type.GetType () can now return also types from the
9324         calling assembly.
9326 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9328         * loader.h, loader.c: stack walking support.
9329         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
9330         GetCallingAssembly.
9332 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
9334         * marshal.c: added optimisations for blittable types 
9336         * class.c (mono_array_class_get): do not set blittable attribute on arrays
9337         (mono_class_setup_mono_type): set blittable attribute for single
9338         and double.
9340         * marshal.c (mono_string_utf8_to_builder): impl.
9341         (mono_string_builder_to_utf8): impl.
9342         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
9344 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
9346         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
9347         (mono_marshal_get_managed_wrapper): impl. byref types
9349 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9351         * icall.c:
9352         (search_method): don't display debug message. 
9354 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9356         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
9358 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9360         * appdomain.c: set the missing filename when throwing exception.
9362 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9364         * metadata.c (mono_type_size): code cleanup
9365         (mono_type_stack_size): removed some test code
9367 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
9369         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
9370         mono_get_exception_file_not_found now.
9372         * exception.c (mono_exception_from_name_two_strings): New version
9373         that will call a constructor with two string arguments. 
9374         (mono_get_exception_file_not_found): New helper routine, used to
9375         report file-not-found errors.
9377 2002-07-20  Dick Porter  <dick@ximian.com>
9379         * process.h:
9380         * process.c: Pass file handles to CreateProcess
9381         
9382         * icall.c:
9383         * file-io.h:
9384         * file-io.c: Implemented CreatePipe
9386 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9388         * metadata.c (mono_get_param_info): set alignment for value types
9390 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9392         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
9393         Constify mono_domain_assembly_open().
9394         * loader.c: handle null namespace in icalls.
9396 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9398         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
9399         (emit_str_to_ptr_conv): marshal object as structs
9401         * metadata.c (mono_type_to_unmanaged): marshal object as structs
9403         * marshal.c (mono_marshal_get_runtime_invoke): support value types
9405 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
9407         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
9408         (mono_marshal_get_native_wrapper): we an now return value types
9410 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9412         * verify.c: more checks implemented.
9414 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
9416         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
9417         (fix bug #27695)
9418         (mono_marshal_get_native_wrapper): allow byref arguments
9419         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
9420         impl. PtrToStringXXX methods
9421         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
9422         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
9423         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
9424         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
9425         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
9427 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9429         * reflection.c: fix buglet in parsing an assembly name.
9431 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9433         * marshal.c (emit_ptr_to_str_conv): first impl.
9435 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9437         * object.c, class.h: cache the vtable in the class as suggested by
9438         vargaz@freemail.hu (Zoltan Varga).
9440 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9442         * class.h, loader.c: added mono_field_from_token().
9443         * verify.c: first cut of type checking code.
9445 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9447         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
9449 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
9451         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
9452         (fix bug #27782)
9453         (mono_marshal_get_remoting_invoke): impl.
9454         (mono_delegate_begin_invoke): impl.
9455         (mono_mb_emit_save_args): impl.
9456         (mono_delegate_end_invoke): impl.
9457         (mono_marshal_get_delegate_begin_invoke):
9458         (mono_marshal_get_delegate_end_invoke):
9459         (mono_marshal_get_delegate_invoke): generate a special name for
9460         those methods (including the signature) and associate them whith
9461         the delegate class. 
9463 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
9465         * reflection.[ch]: 
9466         (mono_reflection_type_from_name): now it has a MonoImage parameter
9467         which is used as the default image to search the type in. If the image
9468         is NULL or getting the type from it fails, it defaults to corlib.
9470         * icall.c: changed 1 call to mono_reflection_type_from_name to match
9471         new parameter.
9473 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9475         * reflection.c: update the parameter table index.
9477 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9479         * domain.c: don't include the mark byte in the string hash.
9481 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9483         * icall.cs: icall for Type.GetTypeCode ().
9484         * verify: a couple of fixes and disabled local initialization checks.
9486 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
9488         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
9490         * debug-helpers.c (mono_method_full_name): print the type of the
9491         runtime wrapper
9493         * metadata.c (mono_signature_hash): a hash function for signatures
9494         (mono_signature_hash): better hash algorithm
9496         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
9498         * debug-helpers.c (mono_method_full_name): this can now generate
9499         method names with signatures
9501         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
9502         method dont have this pointers.
9504 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9506         * reflection.c: fixup typebuilder tokens.
9507         * image.c: fix buglet.
9508         * marshal.h: remove whitespace.
9509         * metadata.h, metadata.c: reinstate code that was removed.
9510         * verify.c: handle catch directives and fix another couple of bugs.
9512 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
9514         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
9515         (mono_marshal_get_native_wrapper): make it comp. with the old code
9516         (mono_marshal_get_native_wrapper): support boolean
9517         (mono_marshal_get_managed_wrapper): support more types
9519 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
9521         * class.c (class_compute_field_layout): compute class->blittable attribute.
9523 2002-07-09  Dick Porter  <dick@ximian.com>
9525         * threads.c: Make the thread cleaning up cope with threads that
9526         call ExitThread()
9528 2002-07-08  Radek Doulik  <rodo@ximian.com>
9530         * reflection.c (method_encode_code): use non-translated values to
9531         compute finally_start, this fixes exception handling on ppc, yay!
9533         * decimal.h (struct signscale): fix endianess
9535 2002-07-07  Radek Doulik  <rodo@ximian.com>
9537         * reflection.c: swap box_val and not val
9539 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9541         * reflection.c, reflection.h: handle full assembly info in type name.
9542         Handle Type arguments when loading custom attributes.
9543         * icall.c: updated to use new mono_reflection_type_from_name () method.
9545 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9547         * loader.c:
9548         (method_from_memberref): also print assembly name when method not found.
9550 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9552         * icall.c:
9553         (ves_icall_TypeGetProperties): fixed bug #27473. 
9555 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9557         * reflection.c: display image name and token when cannot find the
9558         .ctor for an attribute.
9560 2002-07-05  Martin Baulig  <martin@gnome.org>
9562         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9564 2002-07-04  Dick Porter  <dick@ximian.com>
9566         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
9567         compile on mingw.  This will cause mingw builds to not wait for
9568         subthreads to terminate after the main thread does.  I've lodged a
9569         bug with the mingw developers for them to wrap OpenThread().
9571 2002-07-03  Dick Porter  <dick@ximian.com>
9573         * threads.c: Store thread IDs instead of handles, because
9574         GetCurrentThread() returns a pseudohandle and therefore stores
9575         useless values.  mono_thread_cleanup() continues checking the
9576         array of threads until it is empty, to cope with subthreads
9577         spawning new threads after the main thread has finished.
9579         * profiler.h:
9580         * profiler.c:
9581         * profiler-private.h: Pass the thread ID to thread profiler
9582         functions, instead of a handle
9584 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9586         * verify.c: fixes to make it more usable.
9587         * pedump.c: added --verify code to verify IL code in an assembly.
9589 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9591         * reflection.c: turn errors into warnings to allow compiling corlib.
9593 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9595         * reflection.c: add special cases to compile corlib.
9597 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9599         * reflection.c: handle properties with only a set method.
9601 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9603         * opcodes.h: add enum with opcodes in opval order.
9605 2002-07-01  Dick Porter  <dick@ximian.com>
9606         
9607         * object.h:
9608         * object.c (mono_runtime_run_main): Removed unneeded argument
9610 2002-06-28  Martin Baulig  <martin@gnome.org>
9612         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9614 2002-06-27  Dick Porter  <dick@ximian.com>
9616         * threads.c: Store the handle in both the parent thread and in the
9617         subthread, to minimise the time between starting a new thread and
9618         storing its ID.
9620 2002-06-26  Dick Porter  <dick@ximian.com>
9622         * appdomain.c (mono_runtime_cleanup): Close the socket library
9623         after all the threads have finished, not before
9625 2002-06-26  Martin Baulig  <martin@gnome.org>
9627         * debug-symfile.c (mono_debug_find_source_location): Added
9628         `guint32 *line_number' argument.  If it's not NULL, store the line number
9629         there and return the file name without the line number.
9631 2002-06-25  Dick Porter  <dick@ximian.com>
9633         * icall.c:
9634         * process.h:
9635         * process.c: Process forking and other support functions
9637 2002-06-25  Dick Porter  <dick@ximian.com>
9639         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
9640         things dont happen when the image is closed.
9641         (mono_image_lookup_resource): Walk the resource section looking
9642         for a particular entry
9644         * cil-coff.h: PE resource section decoding
9646 2002-06-25  Dick Porter  <dick@ximian.com>
9647         
9648         * assembly.h:
9649         * assembly.c: 
9650         (mono_assembly_foreach): Accessor functions to walk the list of
9651         loaded assemblies
9652         (mono_assembly_set_main):
9653         (mono_assembly_get_main): Process methods need to know which
9654         assembly is the "main" one
9656         * object.c (mono_runtime_run_main): Record the main assembly
9658         * debug-helpers.c: Fix typo
9660 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
9662         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
9663         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
9665 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9667         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
9669 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
9671         * image.c (do_mono_image_open): Initialize reference count,
9672         otherwise we leak the MonoImage.
9674 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9676         * reflection.c: small tweak to handle self-hosting.
9678 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9680         * reflection.c: fix type name parse code.
9682 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9684         * reflection.c: break out of the loop.
9685         * image.c: special case corlib.
9687 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9689         * reflection.c: add all the custom attrs at the end to ensure the
9690         ctors have been properly initialized when the attributes are defined
9691         in the current assembly.
9693 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9695         * reflection.c: handle correctly multiple-nested types.
9697 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9699         * row-indexes.h: fix typos.
9700         * reflection.c: adjust for typos and fix method_def_or_ref
9701         encoding in MethodImpl table.
9703 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9705         * reflection.c: fix entry point patching (thanks Serge!).
9707 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
9709         * verify.c: add check for System.Exception
9711 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9713         * image.c, class.c: minifix for code just c&p'ed.
9714         * reflection.c: warning fix.
9715         * object.h, loader.h, domain.c: load also StringBuilder.
9717 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9719         * marshal.h, marshal.c: some support code to handle complex marshaling.
9721 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9723         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
9724         Better signatures with vtable error dump.
9726 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
9728         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
9730 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
9732         * icall.c (ves_icall_Type_GetField): impl.
9734 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9736         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
9737         to retrieve a marshal description blob for a field or param.
9739 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9741         * reflection.h, reflection.c: change order of nested type emission
9742         to avoid table corruption. The NestedTypes table is sorted.
9743         * icall.c: change order of GetConstructor results to workaround mcs bug.
9745 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9747         * reflection.h, reflection.c: handle field and param marshal
9748         information.
9750 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9752         * icall.c, marshal.c marshal.h: more Marshal class implementation.
9754 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9756         * reflection.c: fix call convention.
9758 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9760         * reflection.h, reflection.c: mono_image_get_memberref_token()
9761         takes a type instead of a class, now. Added
9762         mono_image_get_array_token() to create tokens for the special
9763         multi-dim array methods.
9765 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9767         * assembly.c: handle modules (no assembly table). Split
9768         loading references in its own function.
9769         * class.c: handle moduleref resolution scope.
9770         * image.c, image.h: cache module name in image.
9772 2002-06-07  Martin Baulig  <martin@gnome.org>
9774         * reflection.c (mono_image_get_type_info): Only add a class layout entry
9775         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
9777 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9779         * icall.c: more signature fixes that used uint instead of int.
9781 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9783         * reflection.c: fixed signature of field refs.
9785 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9787         * class.c, reflection.c: handle typerefs of nested types
9788         (both on read and when writing files).
9790 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9792         * icall.c: fix method signatures that tried to workaround the previous
9793         typo, d'oh!
9795 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9797         * debug-helpers.c: fix typo.
9799 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9801         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
9802         rewrote the PE/COFF writing code (our programs are understood by the
9803         ms runtime, now).
9805 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9807         * gc.c, gc.h, icall.c: weakreference support.
9809 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9811         * Makefile.am, mono-config.c: use $(sysconfdir).
9813 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9815         * icall.c: changed default precision of Double.ToString() to 15.
9816         Fixed memory leak. Unified with Single.ToString.
9818 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9820         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
9822 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9824         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
9825         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
9826         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
9827         and myself.
9829 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9831         * debug-symfile.c, sysmath.c: yet more compilation fixes.
9833 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9835         * reflection.c, socket-io.c: more compilation fixes.
9837 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9839         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
9840         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
9841         unicode.c: warning and compiler compatibility fixes.
9843 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9845         * class.h, metadata.c: fixed warnings/compilation errors.
9847 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9849         * Makefile.am, mono-config.c, mono-config.h: configuration file
9850         support routines.
9851         * loader.c, loader.h: make Dll mapping configurable at runtime in the
9852         config file. Export methods to insert and lookup mappings.
9854 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9856         * reflection.c: handle types and boxed objects in custom attr
9857         constructors.
9859 2002-05-30  Martin Baulig  <martin@gnome.org>
9861         * debug-symfile.c
9862         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
9864 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
9866         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
9867         to lookup the implmap row for a P/Invoke method.
9868         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
9869         P/Invoke method from the runtime on an as needed basis.
9871 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
9873         * metadata.c (mono_metadata_parse_signature): impl.
9875 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9877         * class.c: handle .pack directive.
9879 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9881         * object.c: initialize static fields with RVA data.
9883 2002-05-25  Martin Baulig  <martin@gnome.org>
9885         * debug-symfile.c
9886         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
9888 2002-05-24  Martin Baulig  <martin@gnome.org>
9890         * debug-symfile.c
9891         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
9892         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
9893         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
9895 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9897         * object.c: special case string ctros in invoke.
9898         * gc.c: silly whitespace changes.
9900 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
9902         * threadpool.[ch]: impl. a threadpool that can
9903         be used by mint and mono.
9905 2002-05-22  Martin Baulig  <martin@gnome.org>
9907         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
9908         The first argument is now a `MonoReflectionModuleBuilder *', the return
9909         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
9910         `methods' field to get the method builder.  The `token' argument is the
9911         unfixed token.
9913         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
9914         invalid characters instead of g_assert_not_reached()ing.  This seems
9915         to be the behaviour of mscorlib.
9917 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
9919         * object.c (mono_runtime_invoke_array): applied patch from Rachel
9920         Hestilow to fix bug #25104
9922 2002-05-21  Martin Baulig  <martin@gnome.org>
9924         * debug-symfile.c (mono_debug_find_source_location): New function.
9925         Looks up an IL offset in the line number table and returns the source
9926         location as a string.
9928 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9930         * icall.c:
9931         (mono_double_ToStringImpl): changed %f by %g until we have something
9932         better.
9934 2002-05-21  Nick Drochak  <ndrochak@gol.com>
9936         * icall.c : Use different name for Math.Pow's icall.  Needed to check
9937         parameters first in C#.
9939 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9941         * icall.c, reflection.h: added icall to get info about an event.
9943 2002-05-20  Radek Doulik  <rodo@ximian.com>
9945         * object.c (mono_value_box): don't use memcpy for boxing on BIG
9946         endian
9947         (mono_value_box): don't use memcpy for small sizes on
9948         architectures with unaligned access
9950 2002-05-20  Martin Baulig  <martin@gnome.org>
9952         * reflection.c (mono_reflection_setup_internal_class): Don't crash
9953         if `tb->parent == NULL'.
9954         (mono_reflection_create_internal_class): New function.  This is
9955         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
9956         for enum types.
9958         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
9959         New interncall.
9961 2002-05-19  Martin Baulig  <martin@gnome.org>
9963         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
9964         argument to get the length, don't default to the array length.
9966 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
9968         * assembly.c (mono_assembly_setrootdir): New function used to
9969         override the MONO_ASSEMBLIES directory.
9971 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9973         * icall.c: ValueType_GetHashCode() initialize local var.
9975 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9977         * reflection.c: sort custom attributes table.
9979 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9981         * reflection.c: support named args in custom attributes (write support).
9983 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9985         * reflection.c: fix finally position calculation.
9987 2002-05-15  Radek Doulik  <rodo@ximian.com>
9989         * reflection.c: fixed endianess at many places
9991         * icall.c (ves_icall_InitializeArray): comment out debug msg
9993 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
9995         * object.c (mono_unhandled_exception): new function to handle
9996         unhandled exceptions.
9997         (mono_unhandled_exception): call the UnhandledException event.
9998         (mono_runtime_delegate_invoke): impl.
10000 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
10002         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
10003         returns the RVA, not the direct pointer to the data. Handle the case
10004         when the class size is fixed.
10006 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
10008         * reflection.c: fix some endianess issues.
10010 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
10012         * object.c (mono_runtime_invoke): is now able to catch exceptions.
10014         * threads.c (mono_thread_init): added a callback which is invoked
10015         at thread start.
10017 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10018         
10019         * icall.c: make GetHashCode return non-negative values.
10021 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
10023         * object.c, icall.c, gc.c: revert to address-based hashcode.
10025 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
10027         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
10029 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10031         * icall.c, class.c: special case <Module>.
10033 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
10035         * icall.c: fix bug in GetNow().
10037 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
10039         * object.c (mono_runtime_class_init): make sure that we call all
10040         static class constructors.
10042 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
10044         * reflection.c: sort methodsemantics table.
10046 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
10048         * reflection.h, reflection.c: honour init locals setting.
10050 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
10052         * icall.c: copied Double ToStringImpl for Single ToStringImpl
10054 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10056         * reflection.c: support ContructorBuilders in attribute blob creation.
10058 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10060         * reflection.c: some changes to build a binary that can be run
10061         directly in windows.
10063 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10065         * loader.c: print a big message when an icall can't be found.
10067 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10069         * string-icalls.c: fix bug 24248.
10071 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
10073         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
10074         icall.c, reflection.h: separate assembly loading by pathname and by
10075         assembly name. Use the MONO_PATH env var to search for assemblies.
10077 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10079         * assembly.c, image.h: add some support for assemblies
10080         with multiple modules.
10081         * class.c, class.h: export mono_class_from_typeref().
10082         * loader.c: remove duplicated code and use mono_class_from_typeref(),
10083         instead.
10085 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10087         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
10088         documentation says (the ECMA one is correct).
10090 2002-05-02  Dick Porter  <dick@ximian.com>
10092         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
10093         Don't name the synchronisation mutex.
10095 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
10097         * rand.c
10098         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
10099         Make the prototypes match.
10100         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
10101         Same.
10103         * icall.c
10104         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
10105         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
10106         all systems have tm.tm_zone, so use strftime() with %Z to print
10107         the timezone abreviation into a temp string.
10109         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
10110         rather than mono_array_addr() on a MonoString on Big Endian
10111         machines.
10113 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
10115         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
10116         fix bug 24041
10118 2002-04-30  Dick Porter  <dick@ximian.com>
10120         * socket-io.c: Cope with SOCKET being an integer rather than a
10121         pointer now.
10123         * threads.c: Added Thread_free_internal, to deal with thread
10124         handle cleanup.  Moved calls to handle_store() and handle_remove()
10125         to start_wrapper(), so each can only be called once.  Allocate
10126         synchronisation blocks with GC_malloc(), and use GC finalisation
10127         to close the handles.
10129         * icall.c: added System.Threading.Thread::Thread_free_internal
10131 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10133         * icall.c: support Environment.Exit, CommandLineArgs().
10135 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
10137         * object.c, object.h: added mono_runtime_run_main () and
10138         mono_runtime_get_main_args () for use in System.Environment.
10140 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
10142         * gc.c: fix thinko, enable actual finalization since the jit is now
10143         fixed.
10145 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10147         * gc.c, object.c: take into account that an object may be offset wrt the address
10148         returned by GC_malloc().
10150 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
10152         * image.c: handle files without entries in the assembly table (modules).
10154 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
10156         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
10157         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
10158         allowed to be null when it's System.Object class setup.
10160 2002-04-27  Martin Baulig  <martin@gnome.org>
10162         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
10163         if `tb->parent == NULL' rather than crashing.
10165 2002-04-28  Nick Drochak  <ndrochak@gol.com>
10167         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
10168         calling acos() where asin() should have been called.
10170 2002-04-26  Martin Baulig  <martin@gnome.org>
10172         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
10173         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
10174         there's a subdirectory called `System', but we don't want to read that
10175         subdirectory as an assembly.
10177 2002-04-25  Martin Baulig  <martin@gnome.org>
10179         * debug-symfile.c: Reflect latest MonoString changes.
10181 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
10183         * rand.c, rand.h: instance method icalls need to have an explicit
10184         this pointer as first argument in the C implementation.
10186 2002-04-25  Nick Drochak <ndrochak@gol.com>
10188         * icall.c: Fix typo in map for GetNonZeroBytes
10190 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10192         * string-icalls.c : String does now passes unit tests without any 
10193         errors, the following changes has been made:
10194         
10195         Implemented replace methods.
10196         Renaming of methods to (try) follow the standard.
10197         Fixed compare ordinal
10198         Made all memory allocated directly to function instead of via icall function.
10199         Small performance fix in is_in_array function
10200                         
10201  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
10203         c (mono_string_Internal_ctor_charp_int_int):
10204         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
10205         sindex < 0, throw ArgumentOutOfRangeException instead of
10206         ArgumentNullException.
10208         Added new check for length == 0, however
10209         I need to make it return String.Empty from the C code.
10210         
10211         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
10212         that calculate the length for us here.
10213         
10214         (mono_string_Internal_ctor_sbytep_int_int): Replaced
10215         mono_string_new_utf16 with mono_string_new, since value is utf8.
10217 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10219         * object.c: register the object for finalization if needed.
10220         Allocate one more char in the string for the terminating 0 char.
10222 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
10224         * class.c, class.h, image.c: check if a type implemenst a destructor.
10225         Use the proper key for array class lookups.
10226         * icall.c: register the icalls in the System.GC class.
10227         * gc.c, gc.h: GC-related functions and icalls.
10229 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10231         * icall.c:
10232         * socket-io.c:
10233         * unicode.c: free some strings gotten from mono_string_to_utf8 and
10234         changed a couple of free () by g_free ().
10236         * decimal.c: one-liner in the comments for decimal2string ().
10238 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10240         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
10242 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
10244         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
10245         * object.c (mono_runtime_invoke_array) : handle null in params
10247 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10249         * string-icalls.c: fixed bug in split (one off bug)
10251 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10253         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
10254         * icalls.c: added String::Equals as internal method
10256 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
10258         * threads.c: fixed bug in the double interlocked functions
10260 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
10262         * threads.c: implemented all of the new interlocked icalls.
10263         * string-icalls.c: fix a bug in insert.
10264         * icalls.c: added the icalls for interlocked, removed old string functions.
10265         
10266 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10268         * loader.c: fix off-by-one error when reading argument names.
10270 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10272         * profiler.c: win32 counter implementation (untested).
10273         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
10274         (the latter needs testing and more complete impl. from win32 folks).
10276 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
10278         * object.c: mono_array_new_full workaround mono_array_class_get
10279         problem.
10281 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10283         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
10284         * object.h (mono_string_chars): Changed casting type.
10286 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10288         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
10289                            method signatures to use gunichar2 instead of gint16.
10291 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
10293         * object.h, object.c: domain-specific versions of mono_object_new and
10294         mono_array_new.
10296 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
10298         * object.c: changed String layout
10300         * string-icalls.c (mono_string_Internal_ctor_chara): added
10301         internal string constructors.
10303 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
10305         * threads.c: pass 'this' to the thread start routine.
10307 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10309         * string-icalls.c: fix IndexOf and LastIndexOf. Now
10310         InternalCompareStr don't call twice mono_string_cmp_char for the last
10311         character. Improved performance in mono_string_cmp_char.
10313 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10315         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
10316         code into its own library: libmonoruntime.
10318 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
10320         * object.h, object.c: changed array format so that szarrays do not
10321         require a bounds structure.
10322         * icall.c, appdomain.c: support for new szarray format.
10324 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10326         * metadata.c: compare also the retuns type when comparing signatures:
10327         we didn't do this as an optimization since really overloaded methods
10328         must differ also in the arguments, but this doesn't work with
10329         low-level IL code (or when using explicit conversion operators: see
10330         bug#23498 for an example).
10332 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10334         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
10336 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10338         * icall.c: make MonoType::GetElementType its own icall.
10340 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10342         * icall.c: remove MonoMethod_get_Name().
10343         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
10344         object.
10346 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10348         * string-icalls.c: optimized a few methods.
10350 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10352         * icall.c: added all new string internal calls
10353         * string-icalls.c: added, new string internal call implementation.
10354         * object.c: added mono_string_new_size for allocating a string a size
10356 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
10358         * object.c (mono_object_isinst): use the same code as in the
10359         optimized x86 version.
10361 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10363         * profiler.c: TSC-based timer code (faster and more accurate).
10364         Not hooked up in configure, yet (set USE_X86TSC to 1).
10366 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
10368         * profiler.c, profiler.h: track time spent compiling methods.
10369         * threads.c: track thread creation/destruction.
10371 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
10373         * profiler.c, profiler.h, profiler-private.h: profiling interface
10374         and sample implementation. Moved here so that it can be used also by
10375         the jit.
10377 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
10379         * reflection.c, reflection.h: keep types and other handles separate in
10380         the hash tables for referred tokens. Add guid for modules.
10382 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10384         * assembly.c: fix bugs found with valgrind.
10385         * metadata.h, metadata.c: added mono_metadata_guid_heap().
10387 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
10389         * threads: added icall support for getting current domain for
10390                    the thread.
10392 2002-04-13  Martin Baulig  <martin@gnome.org>
10394         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
10395         (MonoDebugVarInfo): Added `index' field for register based addresses.
10396         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
10397         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
10398         `MonoDebugVarInfo *params' and `guint32 this_offset' with
10399         `MonoDebugVarInfo *this_var'.
10401         * debug-symfile.c (relocate_variable): New static function to write
10402         a location description for a local variable or method parameter.
10404 2002-04-12  Martin Baulig  <martin@gnome.org>
10406         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
10407         stack offset and begin/end scope address of a local variable.
10408         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
10409         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
10410         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
10412         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
10413         Added new relocation types for start/end scope of a local variable.
10415 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10417         * object.h: add mono_object_domain() macro.
10418         * reflection.c: handle typespecs.
10419         * icall.c: MonoMethod::get_Name() implementation.
10421 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10423         * icall.c: String::GetHashCode() icall implementation.
10425 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10427         * icall.c: String::IndexOfAny icall.
10428         * object.c, object.h: make array->max_length more useful.
10429         Intrduced mono_object_class() and mono_string_length() macros.
10431 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10433         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
10434         instead of g_unichar_isdigit.
10436 2002-04-11  Nick Drochak  <ndrochak@gol.com>
10438         * icall.c: Implement a simple Double.ToString().
10440 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10442         * appdomain.h: only io-layer.h is supposed to be included.
10443         * icall.c: explicitly import environ. Fix warning.
10445 2002-04-10  Nick Drochak  <ndrochak@gol.com>
10447         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
10448                 return true even if it's not Daylight Savings time.
10449                 Only return false for the case where the function isn't
10450                 implemented for a plaform (read Windows).
10452 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10454         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
10455         data with a mutex.
10457 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
10459         * mempool.c (mono_mempool_alloc): only use g_malloc when
10460         absolutely necessary.
10462 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10464         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
10466         * class.c (mono_class_vtable): use domain mempool to allocate vtable
10467         (mono_class_proxy_vtable): use domain mempool
10469 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10471         * appdomain.h, appdomain.c: split initialization that requires the
10472         execution engine support into mono_runtime_init().
10474 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10476         * class.c (mono_class_init): don't include vtable inside MonoClass
10477         to save some memory, gather some statistics.
10478         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
10480 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10482         * icall.c: internalcall implementation for ValueType.Equals().
10484 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
10486         * object.c (mono_message_init): moved 
10487         (mono_runtime_exec_main): new arch. independent impl.
10488         (mono_runtime_invoke_array): new method - like
10489         mono_runtime_invoke, but you can pass an array of objects.
10490         (mono_remoting_invoke): new arch. independent impl.
10491         (mono_message_invoke): new arch. independent impl.
10492         (mono_runtime_class_init): new arch. independent impl.
10493         (mono_runtime_object_init): new arch. independent impl.
10495 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10497         * metadata.c, object.c, reflection.c: documented the exported
10498         functions.
10500 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10502         * icall.c: simpler code to pass the assembly builder data to corlib.
10503         Implement GetNestedTypes() internalcall.
10505 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10507         * class.c: warn if a type can't be loaded.
10509 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
10511         * image.h: typedef MonoImageOpenStatus
10512         * types.h: removed unused file
10513         
10514 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
10516         * icall.c: Enum_ToObject accepts enum value arguments.
10518 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10520         * class.c: move initialization of properties, events and nested
10521         classes, so that they happen for interfaces, too.
10523 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10525         * icall.c: cleanup some ugly casts in Array_SetValue*.
10527 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10529         * icall.c: the values array fro enums is of the correct type, now.
10530         Implement (correctly) getFullName instead of assQualifiedName for
10531         MonoType.
10532         * reflection.h, reflection.c: added mono_type_get_name ().
10534 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10536         * assembly.c, image.h: for each MonoImage, record from wich assembly
10537         it was loaded.
10538         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
10539         Make Type.Assembly work.
10541 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
10543         * debug-symfile.h: use char* instead of gpointer to avoid
10544         unnecessary casts.
10546         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
10548         * icall.c (ves_icall_InternalExecute): impl. FielSetter
10549         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
10551 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
10553         * icall.c (mono_message_init): impl. (code cleanup)
10554         (ves_icall_InternalExecute): impl. FieldGetter
10556         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
10557         defined we call all (non-static)methods through the vtable. 
10559 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
10561         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
10562         finalizer even though the memory is still referenced (and the chunk of
10563         memory is not freed).
10565 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10567         * assembly.c: fix brokeness.
10569 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
10571         * class.c: kill some warnings. Check explicit interface method
10572         implementation also without considering the namespace.
10573         Load also literal strings in static class data.
10575 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
10577         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
10578         (default_assembly_name_resolver): Make the resolver take the
10579         "base" directory where the assembly was originally defined, so we
10580         can load DLLs that are in the same directory as the assembly that
10581         is being referenced.
10583 2002-03-28  Dick Porter  <dick@ximian.com>
10585         * file-io.h: 
10586         * file-io.c:
10587         * socket-io.c: 
10588         * unicode.h: 
10589         * unicode.c: Warning cleanups
10591 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
10593         * object.h, reflection.h: use the correct type instead of MonoObject.
10595 2002-03-28  Martin Baulig  <martin@gnome.org>
10597         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
10598         (mono_debug_update_symbol_file): Initialize classes if necessary.
10600 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10602         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
10603         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
10605 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
10607         * assembly.h: fix function prototype.
10608         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
10609         * mono-endian.h: use const cast.
10611 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10613         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
10615 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10617         * loader.c: don't assert when a typeref can't be loaded, give
10618         a chance to the runtime to trow an exception instead.
10619         * loader.h: fix warning.
10621 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10623         * class.c (mono_class_proxy_vtable): added proxy support
10625 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
10627         * icall.c: removed last of PAL calls, added System.Environment
10628         * file-io.h, file-io.c: MonoIO implementation
10629         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
10631 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10633         * appdomain.c: do not use the byte marker in ldstr table lookup.
10634         * debug-helpers.c: allow two ':' to separate class and method name.
10635         * object.c: allocate arrays bounds with the GC, too.
10636         * verify: add a few more checks.
10638 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
10640         * reflection.c: output also literal strings. Allocate parameter data
10641         with GC_malloc() (thanks, Martin, for catching this!).
10643 2002-03-26  Martin Baulig  <martin@gnome.org>
10645         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
10646         include the `this' offset in the `param_offsets'.
10648 2002-03-25  Martin Baulig  <martin@gnome.org>
10650         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
10651         mono_debug_get_class() function to get the classes. Added new
10652         relocation types for arrays and strings.
10653         (mono_debug_get_class): New static function to search in all
10654         referenced assemblies for a metadata token.
10656         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
10658 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10660         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
10661         hold gc-allocated objects. Make the string heap a stream like the
10662         others. Removed duplicated code when writing stream info.
10663         Added asserts to catch possible buffer overflows. Set the sorted map
10664         for tables that need sorting. Added some documentation.
10666 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
10668         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
10669         for interned strings and vtables.
10671 2002-03-24  Martin Baulig  <martin@gnome.org>
10673         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
10674         it in the array since it was created with g_slist_prepend().
10676 2002-03-24  Martin Baulig  <martin@gnome.org>
10678         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
10679         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
10680         (mono_debug_method_from_token): Renamed to
10681         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
10682         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
10684         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
10685         relocation types.
10687         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
10689 2002-03-24  Martin Baulig  <martin@gnome.org>
10691         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
10692         (mono_debug_method_from_token): New func.
10694         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
10695         New interncall, calls mono_debug_local_type_from_signature().
10696         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
10697         calls mono_debug_method_from_token().
10699 2002-03-23  Martin Baulig  <martin@gnome.org>
10701         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
10702         specifies the number of bytes to be converted, not the array size.
10703         Return the number of chars, not the number of bytes.
10704         (ves_icall_iconv_get_chars): The `byteCount' argument
10705         specifies the number of bytes to be converted, not the array size.
10707 2002-03-23  Martin Baulig  <martin@gnome.org>
10709         * reflection.h (MonoReflectionSigHelper): New type.
10711         * reflection.c (mono_reflection_sighelper_get_signature_local),
10712         (mono_reflection_sighelper_get_signature_local): New functions.
10714         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
10715         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
10716         interncalls.
10718 2002-03-23  Martin Baulig  <martin@gnome.org>
10720         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
10721         is_writeable is set.
10722         (mono_raw_buffer_update): New function to write the modified map
10723         back to disk.
10725         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
10727         * debug-symfile.c (mono_debug_update_symbol_file): Call
10728         mono_raw_buffer_update() when done writing.
10730 2002-03-23  Martin Baulig  <martin@gnome.org>
10732         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
10734         * debug-symfile.c: Added support for arguments and local variables.
10736 2002-03-23  Dick Porter  <dick@ximian.com>
10738         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
10739         protected by ifdefs, hence breaking the w32 build.
10741 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10743         * object.c: implement is_interned() the right way.
10745 2002-03-21  Martin Baulig  <martin@gnome.org>
10747         * debug-symfile.[ch]: New files to handle debugging information
10748         files. There's also support to dynamically update these symbol
10749         files to include machine dependent information.
10751 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
10753         * threads.c (mono_thread_create): new function to create thread
10754         from C
10756 2002-03-20  Martin Baulig  <martin@gnome.org>
10758         * icall.c (ves_icall_InternalInvoke): Create a new object if the
10759         method is a constructor.
10760         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
10761         points to ves_icall_InternalInvoke().
10763 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
10765         * file-io.c: Flush shouldn't throw exceptions.
10767 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
10769         * file-io.c: FileStream flush support; FileSetLength now
10770         restores file pointer.
10772 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10774         * class.c: set image for pointer classes.
10776 2002/03/19  Nick Drochak <ndrochak@gol.com>
10778         * sysmath.c: Forgot one.
10780 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
10782         * sysmath.c: Avoid redefining existing names.
10784 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
10786         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
10787         handled by runtime as icall rather than dllimport from libm.so
10788         * file-io.c, file-io.h: fixed handle argument type.
10790 2002-03-18  Dick Porter  <dick@ximian.com>
10792         * reflection.c (mono_image_get_type_info): rename interface to
10793         iface, because of "#define interface struct" on windows.
10795 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
10797         * class.c, class.h: rename and export mono_ptr_class_get().
10798         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
10799         * reflection.c, reflection.h, icall.c: better/saner type name
10800         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
10801         method signatures.
10803 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
10805         * class.c (mono_class_init): removed hardcoded GHC_SLOT
10807         * icall.c (ves_icall_InternalInvoke): impl.
10809 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10811         * reflection.c: output the interface map table, too.
10813 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10815         * class.c (class_compute_field_layout): separate computation of 
10816         static field layout
10818 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
10820         * icall.c: added System.Buffer support.
10821         * file-io.c: moved file icalls from PAL to FileStream.
10823 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10825         * icall.c (ves_icall_System_Object_GetHashCode): impl.
10827 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
10829         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
10831 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10833         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
10835 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10837         * debug-helpers.{c,h}: moved here from monograph some useful functions
10838         to locate a method by name/signature in a class or image. Included
10839         also a small and flexible IL disassembler.
10841 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10843         * reflection.c: fixup tokens in methods with small header size, too.
10845 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
10847         * object.c (mono_string_to_utf8): remove assert(!error), instead
10848         print a warning. 
10850 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
10852         * icall.c: update to the new mono_Array_class_get interface.
10854 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10856         * appdomain.c, object.c: Boehm-GC enable.
10857         * icall.c: make get_data_chunk() support split data requests.
10858         Ensure a class is initialized in more cases. Return only the first
10859         property found in GetProperties() or the compiler gets confused. 
10860         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
10861         * reflection.h, reflection.c: add fixup mechanism for field and method
10862         tokens. Initialize assembly->typeref in a single place. Output
10863         properties after events. Support custom attributes for events, too.
10864         Typo fix for paramter custom attrs.
10866 2002-03-07  Martin Baulig  <martin@gnome.org>
10868         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
10870 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
10872         * class.c (mono_array_class_get): fix. for multi. dim. arrays
10874 2002-03-06  Martin Baulig  <martin@gnome.org>
10876         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
10877         non-zero lower bounds. See testcases #F10-#F13.
10879 2002-03-05  Martin Baulig  <martin@gnome.org>
10881         * exception.c (mono_get_exception_argument_out_of_range): New exception.
10883         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
10884         ves_icall_System_Array_GetValue(), only calculate the absolute array position
10885         here.
10886         (ves_icall_System_Array_SetValue): Likewise.
10887         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
10888         as argument and does the actual work. This function is used when copying a
10889         multi-dimensional array.
10890         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
10891         now do all the widening conversions of value types.
10892         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
10894 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10896         * class.c: remove some magic numbers and use the smbolic names,
10897         instead. Added init_events() to load event info at class init time.
10898         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
10899         and mono_metadata_methods_from_event().
10900         * reflection.h, reflection.c: added support for writing out the evnets
10901         related information.
10903 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10905         * reflection.h, icall.c: use a different method (GetInterfaces)
10906         to gather interface info and add isbyref, isprimitive and
10907         ispointer to the ves_icall_get_type_info() return value.
10909 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10911         * class.h: stared adding support for events.
10912         * icall.c: split find_members implementation. Added debug icall to get
10913         the address of an object.
10914         * reflection.c: handle TypeBuilders in mono_type_get_object().
10916 2002-03-01  Martin Baulig  <martin@gnome.org>
10918         * icall.c (ves_icall_System_Array_GetLength): This must throw an
10919         ArgumentOutOfRangeException(), not an ArgumentException().
10920         (ves_icall_System_Array_GetLowerBound): Likewise.
10921         (ves_icall_System_Array_GetValue): Improved argument checking.
10922         (ves_icall_System_Array_SetValue): Improved argument checking.
10924 2002-03-01  Martin Baulig  <martin@gnome.org>
10926         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
10927         called with invalid arguments rather than just dying with g_assert().
10928         (ves_icall_System_Array_SetValue): Likewise.
10929         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
10930         raise a NotImplementedException instead.
10931         (ves_icall_System_Array_GetLength): Added argument checking.
10932         (ves_icall_System_Array_GetLowerBound): Added argument checking.
10934 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
10936         * object.h (mono_assert): new macros mono_assert and
10937         mono_assert_not_reached
10939 2002-02-28  Martin Baulig  <martin@gnome.org>
10941         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
10942         and "System::String::IsInterned" to "System::String::_IsInterned".
10944 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
10946         * icall.c: remove hacks for typebuilder. Added icall to create a
10947         modified type from a tybebuilder.
10948         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
10949         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
10950         to create a backing MonoClass for a TypeBuilder.
10952 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10954         * class.c, class.h: more refactoring of class init.
10955         Export mono_class_setup_mono_type() and mono_class_setup_parent().
10957 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
10959         * marshal.c, marshal.h: start of marshaling interface.
10961 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10963         * icall.c: fix order in assembly qualified name icall.
10965 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10967         * class.c: do not free str, since we store it in the hash table.
10968         * reflection.h: add label field to MonoILExceptionInfo.
10969         * reflection.c: handle references to more than one assembly. Handle
10970         case when there isn't a module created in the assembly.
10972 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10974         * class.c: Fix typo. Start refactoring of class init code.
10976 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10978         * appdomain.c: exit with 1 on error.
10979         * class.c: we already have the name in MonoClassField.
10980         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
10981         MonoStreamHeader instead of an offset of image->raw_metadata.
10983 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
10985         * appdomain.c (mono_init): Be even more descriptive about the error.
10987 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
10989         * appdomain.c: give the user an informative message when corlib can't
10990         be loaded.
10992 2002-02-26  Martin Baulig  <martin@gnome.org>
10994         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
10995         New icall to get the time zone data.
10997 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10999         * reflection.c: set virtual and raw size of section correctly.
11000         * threads.c: transfer domain information to newly created threads.
11002 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11004         * class.c: when instancing a class in a domain, load the default
11005         vaules for static fields from the constant table. Fix System.Enum to
11006         not be an enum.
11007         * icall.c: implement Object::GetType() internalcall. Implemented
11008         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
11009         Fixed checking of binding flags in find_members().
11010         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
11011         * reflection.c: handle enumerations when writing to the constant
11012         table. Use a different object cache for types.
11015 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
11017         * object.c (mono_object_isinst): fix for arrays
11019         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
11021 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11023         * object.c: don't use mprotect ()  and fix intern pool hash table
11024         lookup for big endian systems.
11026 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11028         * icall.c: change type_is_subtype_of () signature.
11030 2002-02-21  Mark Crichton  <crichton@gimp.org>
11032         * rand.c, rand.h: Added random number generator for
11033         System.Security.Cryptography classes.
11035         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
11037         * icall.c: Added System.Security.Cryptography calls.
11039 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11041         * class.c, icall.c, metadata.c: better support for pointer types.
11042         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
11043         * reflection.c: Add support for getting custom attrs for properties
11044         and simplify some code.
11046 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
11048         * icall.c: change getToken () and add custom attribute GetBlob()helper
11049         method.
11050         * reflection.h: add custom attrs array to the reflection builder structures.
11051         * reflection.c: encode and emit custom attributes for all the relevant
11052         reflection objects. Cache fieldref and methodref tokens. Change
11053         mono_image_create_token() interface to take a MonoDynamicAssembly.
11054         More complete custom attributes decoder. Load custom attributes for
11055         Assembly, Field, Method and Constructor objects, too. Make the
11056         returned array an Attribute[] one, not object[]. Added
11057         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
11058         custom attribute constructor.
11060 2002-02-20  Dick Porter  <dick@ximian.com>
11062         * icall.c:
11063         * rawbuffer.c:
11064         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
11065         problem code out for now).
11067 2002-02-19  Radek Doulik  <rodo@ximian.com>
11069         * object.c (mono_ldstr): use hash table to avoid multiple swapping
11071 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
11073         * icall.c: register the GetCustomAttributes method.
11074         * object.c, object.h: add mono_string_new_len ().
11075         * reflection.h, reflection.c: added mono_runtime_invoke(),
11076         mono_install_runtime_invoke(). Added
11077         mono_reflection_get_custom_attrs () to load custom attributes and
11078         create the attribute objects.
11080 2002-02-19  Dick Porter  <dick@ximian.com>
11081         * threads-dummy-types.c:
11082         * threads-dummy-types.h:
11083         * threads-dummy.c:
11084         * threads-dummy.h:
11085         * threads-pthread-types.c:
11086         * threads-pthread-types.h:
11087         * threads-pthread.c:
11088         * threads-pthread.h:  Deleted obsolete files
11090 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
11092         * class.c (mono_class_vtable): runtime init the class when we
11093         allocate static class data.
11095         * icall.c (ves_icall_System_Array_SetValue): check for null values.
11097         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
11098         and String - but we will need generic marshalling support in the
11099         future. 
11100         (mono_init): set the domain name in a ms compatible way
11102         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
11103         String[].
11105 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
11107         * object.c (mono_array_clone): use alloca() instead of g_malloc  
11108         for sizes
11110         * appdomain.c (mono_domain_unload): impl.
11112 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11114         * appdomain.c, object.c: fix intern pool implementation.
11115         * class.c: fix alignment code.
11117 2002-02-16  Radek Doulik  <rodo@ximian.com>
11119         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
11120         and s2 > s1, just copy lower bytes to be compatible with little
11121         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
11122         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
11124         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
11125         force big_endian to be 1 for big endian machines 
11126         (ves_icall_iconv_new_decoder): ditto
11128 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
11130         * socket-io.c (convert_sockopt_level_and_name): If the system
11131         doesn't define SOL_IP or SOL_TCP, get them by hand using
11132         getprotobyname() and caching the values (because this could be a
11133         slow operation).
11134         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
11135         Use the appropriate struct when the system does support it. Ie,
11136         not all systems have struct ip_mreqn so use struct ip_mreq when
11137         appropriate.
11139 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
11141         * reflection.c: handle finally clauses.
11143 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
11145         * socket-io.c: use g_snprintf() instead of snprintf.
11147 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11149         * reflection.c (mono_param_get_objects): Cast second argument to
11150         mono_method_get_param_names to a const char** to silence the
11151         compiler warning.
11153         * appdomain.c (mono_domain_assembly_open): Put parens around the
11154         truth statement in the for-loop.
11156         * unicode.c (iconv_convert): Got rid of a compiler warning about
11157         int i being unused when the system has a new iconv.
11158         (iconv_get_length): Same.
11160         * image.c (load_class_names): Cast the second argument to
11161         g_hash_table_insert() to char* to hush compiler warnings about the
11162         arg being a const.
11163         (mono_image_open): Same here.
11165         * socket-io.c: Don't conditionally include sys/filio.h or
11166         sys/sockio.h here anymore since we now get them from
11167         io-layer/io-layer.h
11168         (inet_pton): If the system doesn't support inet_aton, implement
11169         using inet_addr and also #define INADDR_NONE if it isn't defined
11170         by the system.
11172 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
11174         * metadata.c, metadata.h: added function to get packing and size info
11175         of a typedef.
11176         * reflection.h, reflection.c: handle field RVA data. Save info about
11177         the table layout if needed. Assign typedef indexes to all the types
11178         before dumping the info about them to avoid forward reference problems.
11180 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
11182         * socket-io.c (convert_sockopt_level_and_name): ifdef
11183         SO_ACCEPTCONN because it is not defined on my system (old debian)
11185 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11187         * opcode.c: use stddef.h to get NULL.
11189 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
11191         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
11192         for FIONBIO, FIONREAD and SIOCATMARK.
11193         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
11194         define INADDR_NONE and besides, inet_addr() is deprecated and
11195         should not be used. Use inet_pton() instead - it also has the
11196         added bonus that it can easily handle IPv6 addresses as well.
11197         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
11199 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
11201         * decimal.c: remove _MSC_VER conditional.
11203 2002-02-13  Dick Porter  <dick@ximian.com>
11205         * socket-io.c: 
11206         * icall.c: Internal calls for Blocking, Select, Shutdown,
11207         GetSocketOption and SetSocketOption
11209 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11211         * assembly.cs: better resolver: use it instead of some kludgy
11212         code.
11214 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
11216         * reflection.c: the best way to speed-up the compiler is to avoid
11217         infinite loops.
11219 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
11221         * class.c (mono_class_vtable): changed the object layout
11222         (obj->vtable->class). 
11223         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
11225 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11227         * assembly.c: look for assemblies in the assembly dir, too.
11229 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11231         * class.c: fix thinko in mono_class_from_type().
11233 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11235         * exception.h, exception.c: added TypeLoadException.
11236         * object.h, object.c: added mono_array_clone ().
11237         * icall.c: handle throwOnError in AssemblyGetType().
11238         Added Array.Clone().
11239         * opcode.h, opcode.c: use a single value for the opcode val.
11240         Compile fix for non-gcc compilers.
11242 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
11244         * opcodes.c, opcodes.h: export interesting info about opcodes.
11246 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
11248         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
11249         icalls. 
11251         * class.c (class_compute_field_layout): set element_class for enums
11252         (mono_class_create_from_typedef): set element_class for normal classes
11254         * icall.c (ves_icall_System_Enum_get_value): impl.
11256         * class.c (mono_class_create_from_typedef): do not set valuetype
11257         flag for System.ValueType and System.Enum
11259 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
11261         * unicode.c (iconv_convert): fix big endian problem.
11263 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11265         * class.c: add asserts if we are ever going to scribble over memory.
11266         * socket-io.c: not all systems have AF_IRDA defined.
11268 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
11270         * class.c (class_compute_field_layout): do not consider static
11271         fields to compute alignment
11273 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
11275         * appdomain.c (mono_appdomain_get): impl.
11276         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
11278 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11280         * icall.c: ignore "file://" prefix when loading an assembly.
11282 2002-01-23  Dick Porter  <dick@ximian.com>
11284         * socket-io.c:
11285         * icall.c:
11286         * Makefile.am: Added socket support
11288 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11290         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
11291         code back.  This should return the assemblies that are loaded by
11292         the runtime on behalf of an application domain. 
11294         The current implementation is still broken, it just returns every
11295         assembly loaded, but until we get real applications domain this
11296         will do.
11298 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
11300         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
11301         AppDomain object.
11303 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11305         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
11306         the mono_class_from_name lookup.
11307         (ves_icall_get_parameter_info): ditto.
11308         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
11309         method.
11310         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
11312 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
11314         * class.c: load also nested classes on class init.
11315         System.ValueType instance methods gets passed boxed
11316         values, unless methods in derived classed that get a pointer to the
11317         data.
11318         * icall.c: use better name parsing code in GetType().
11319         * image.c, image.h: add mono_image_loaded ().
11320         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
11321         * reflection.c, reflection.h: added mono_reflection_parse_type().
11323 2002-01-22  Veronica De Santis <veron78@interfree.it>
11325         * icall.c : Added mapping of internal calls for Manual and Auto reset events
11326         * threads.c : Added the implementation of internal calls for events
11327         * threads.h : Added prototypes of internal calls for events
11328         
11329 2002-01-21  Radek Doulik  <rodo@ximian.com>
11331         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
11333 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
11335         * class.c (mono_class_init): set min_align to 1 (instead of 0)
11336         (mono_class_value_size): use min_align
11338 2002-01-20  Dick Porter  <dick@ximian.com>
11340         * threads.h:
11341         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
11342         so it compiles on w32.
11344 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
11346         * metadata.c (mono_type_stack_size): impl.
11348         * class.c (mono_class_get_field): impl. memberref token
11350 2002-01-16 Veronica De Santis <veron78@@interfree.it>
11352         * icall.h : Added the internal calls mapping for CreateMutex_internal
11353                     and ReleaseMutex_internal.
11354         * threads.h : Added the prototype of mutexes internal calls.
11355         * threads.c : Added the implementations of mutexes internal calls.
11357 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11359         * metaparse.h: removed unused file.
11360         * reflection.c, reflection.h: added stream_data_align () function 
11361         to align data in streams and keep stream aligned. Add support for
11362         exception support in method headers.
11364 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
11366         * unicode.c: make iconv_convert () return the number of bytess written
11367         in the output buffer.
11369 2002-01-15  Dick Porter  <dick@ximian.com>
11370         * threads.c: Make the runtime's idea of infinite timeouts coincide
11371         with the class library's
11373         Fix a particularly egregious bug in mono_thread_cleanup(). That
11374         code was so utterly bogus it must have been written on a Monday.
11376 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11378         * reflection.h: add subtypes field to TypeBuilder.
11379         * reflection.c: encode constants for literal fields.
11380         Handle subtypes. Fix user string token (and add a zero byte)
11381         at the end.
11382         
11383 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
11385         * class.c (mono_class_init): bug fix: assign slot numbers for
11386         abstract methods.
11388 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11390         * reflection.c: don't try to output a code RVA for abstract methods.
11391         Small fixes for method header format. Output parameter info to the
11392         ParamDef table. Save method overriding info to MethodImpl table.
11393         Fix property support. Allow typedef.extends to be a type in the
11394         building assembly.
11395         * verify.c: fix off-by-one error.
11397 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
11399         * class.c: fix mono_class_from_mono_type () for szarray types.
11400         Remove unused cache check in mono_class_from_type_spec().
11401         * icall.c: *type_from_name () functions handle simple arrays and byref.
11402         * reflection.c: handle byref and szarray types. Handle methods without
11403         body (gets P/Invoke compilation working). Handle types and fields in
11404         get_token ().
11405         * reflection.h: add rank to MonoTypeInfo.
11407 2002-01-10  Dick Porter  <dick@ximian.com>
11409         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
11410         internal calls
11412 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11414         * icall.c: initialize class in type_from_handle ().
11415         Loop also in parent classes for get_method ().
11416         * reflection.c: properly encode class and valuetype types.
11417         Start on encoding TypeBuilder types. Handle fieldrefs.
11418         Use correct length when registering a user string.
11419         Handle ConstructorBuilder and MonoMethod in get_token ().
11420         Make mono_type_get_object () aware of cached types.
11421         * object.c: back out change to mono_string_new ().
11423 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
11424         * object.c: mono_string_new should return a NULL when the string 
11425         passed in is NULL -- not try to deference it.
11426         
11427 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11429         * icall.c: hack to make IsSubType work for TypeBuilders.
11430         * reflection.c: emit constructors before methods.
11431         Retrieve param names in mono_param_get_objects().
11433 2002/01/05  Nick Drochak  <ndrochak@gol.com>
11435         * Makefile.am: fix list of headers and sources so automake 1.5
11436         doesn't complain. Removed \# at end of list.
11438 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11440         * reflection.c: get token for a method ref. Set return type of
11441         constructor to void.
11442         * loader.c: debug message.
11443         * class.c: typo fix.
11445 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
11447         * icall.c: fix array init with rank > 1. FindMembers
11448         loops in parent class as well.
11449         * image.c: do not insert nested types in name cache.
11450         * reflection.c: warning fix.
11451         * reflection.h: add override method (for interface impl).
11453 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
11455         * metadata.c: fix customattr decoding.
11457 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
11459         * rawbuffer.cs: Added native Win32 implementation, avoids using
11460         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
11462 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
11464         * class.c: make the low-level routines handle the cache.
11466 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
11468         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
11470 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
11472         * class.c: fix mono_array_element_size() for objects.
11473         * class.h, class.c: add properties to MonoClass and load them
11474         at init time.
11475         * icall.c: check with isinst() when assigning a value to an array
11476         instead of requiring the classes to match exactly.
11477         Implemented icall for System.Type::GetType().
11478         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
11479         enums. Handle bindingflags when looking for methods and fields.
11480         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
11481         and mono_metadata_methods_from_property().
11482         * reflection.h, reflection.c: added structures for propreties,
11483         parameters and enums. Implemented mono_property_get_object() and
11484         mono_param_get_objects().
11486 2001-12-18  Dick Porter  <dick@ximian.com>
11488         * file-io.c: Use mono_string_to_utf16() instead of
11489         mono_string_chars()
11491         * object.c: Added mono_string_to_utf16(), which copies the non
11492         NULL-terminated MonoString into a new double-null-terminated
11493         buffer.
11495 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
11497         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
11499 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
11501         * file-io.c: raise exceptions if handle is invalid.
11503 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
11505         * assembly.c: yet another check for mscorlib.
11506         * class.c, class.h: load nesting info for classes.
11507         * icall.c: many new functions to support the Reflection classes.
11508         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
11509         * reflection.h, reflection.c: mono_image_create_token(),
11510         mono_assembly_get_object(), mono_type_get_object(),
11511         mono_method_get_object(), mono_field_get_object(): methods to return
11512         objects that parallel the C representation of assemblies, types,
11513         methods, fields.
11515 2001-12-11  Dick Porter  <dick@ximian.com>
11517         * icall.c:
11518         * file-io.c: Internal calls for file IO.
11520 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
11522         * tabledefs.h: missing FileAttributes.
11523         * verify.h, verify.c: use is_valid_string () to simplify and check for
11524         valid strings more correctly. Fix warnings and speeling.
11525         Check more tables: Filed, File, ModuleRef, StandAloneSig.
11526         Check code: branches, maxstack, method calls.
11528 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
11530         * object.c (mono_object_allocate): removed static, so that the jit
11531         can allocate value types.
11533         * icall.c (ves_icall_System_DateTime_GetNow): impl.
11535 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11537         * class.c: init enum types right away and register the
11538         token->MonoClass map in mono_class_create_from_typedef ().
11539         * verify.h, verify.c: first cut of the verifier.
11540         * pedump.c: add --verify switch to verify metadata tables.
11541         * tabledefs.h: add some missing enums.
11543 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
11545         * class.c (mono_install_runtime_class_init): impl.
11546         (mono_class_init): renamed mono_class_metadata_init to
11547         mono_class_init, also removed the metadata_inited flag
11549         * object.c (mono_object_isinst): use faster algorithm
11551 2001-11-30  Radek Doulik  <rodo@ximian.com>
11553         * mono-endian.h: reverted last change
11554         added function prototypes
11556         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
11557         add mono-endian.c back
11559         * mono-endian.c: returned back, as Paolo pointed out, it's needed
11560         for unaligned access, I've mistaked it with endianess. I am
11561         sorry.
11562         (mono_read16): fix reverted endianess
11563         (mono_read64): ditto
11564         (mono_read32): ditto
11566 2001-11-30  Dick Porter  <dick@ximian.com>
11568         * exception.c: Implement mono_exception_from_name()
11570 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11572         * metadata.h, metadata.c: remove params_size and locals_size and their
11573         calculation from the metadata code: they are only usefult to the
11574         interp.
11576 2001-11-29  Radek Doulik  <rodo@ximian.com>
11578         * object.c (mono_ldstr): swap bytes here, it's probably not the
11579         best place, but works for me now, I'll redo it once I know mono
11580         better, also note that I add PROT_WRITE and don't reset back, also
11581         note that it's only affects big endians, so x86 should be OK
11583         * mono-endian.h (read16): use just glib macros for both endians
11585         * mono-endian.c: removed as glib macros are used in in
11586         mono-endian.h so we don't need to care about endianess for read
11587         macros as glib does that for us already
11589 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
11591         * class.h, class.h: take minimum alignment into consideration so
11592         that the fields of a class remain aligned also when in an array.
11594 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11596         * loader.h, loader.c: add mono_method_get_param_names().
11597         * class.c: 0-init class fields.
11599 2001-11-26  Dick Porter  <dick@ximian.com>
11601         * icall.c:
11602         * threads-types.h:
11603         * threads.c: New file that handles System.Threading on all platforms
11605         * object.c: 
11606         * object.h: Remove the synchronisation struct from MonoObject,
11607         replace it with a pointer that gets initialised on demand
11609         * Makefile.am: Replace all the system-specific threading code with
11610         a single file that uses the new wrapper library
11612 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
11614         * class.c, class.h: add mono_install_trampoline() so that the runtime
11615         can register a function to create a trampoline: removes the ugly
11616         requirement that a runtime needed to export arch_create_jit_trampoline.
11617         * object.h, object.c: added mono_install_handler() so that the runtime
11618         can install an handler for exceptions generated in C code (with
11619         mono_raise_exception()). Added C struct for System.Delegate.
11620         * pedump.c: removed arch_create_jit_trampoline.
11621         * reflection.c: some cleanups to allow registering user strings and
11622         later getting a token for methodrefs and fieldrefs before the assembly
11623         is built.
11624         * row-indexes.h: updates and fixes from the new ECMA specs.
11626 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
11628         * class.h, class.c: add enum_basetype field to MonoClass.
11629         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
11630         to get index in the constant table reated to a field, param or
11631         property.
11632         * reflection.h, reflection.c: handle constructors. Set public-key and
11633         version number of the built assembly to 0.
11634         * row-indexes.h: update from new ECMA spec.
11636 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11638         * class.h, class.c: add a max_interface_id to MonoClass.
11639         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
11640         since it's used to do that. Added mono_type_type_from_obj().
11641         Make GetType() return NULL instead of segfaulting if the type was not
11642         found. Handle simple arrays in assQualifiedName.
11643         * object.h: add a struct to represent an Exception.
11644         * reflection.c: output call convention in method signature.
11645         Add code to support P/Invoke methods and fixed offsets for fields.
11647 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
11649         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
11650         the value.
11651         * icall.c: use mono_array_addr instead of array->vector: fixes the
11652         reflection image writing.
11653         * reflection.c: init call convention byte to 0 in method signature.
11654         Encode the property signature. Don't output property-related methods
11655         twice. Really process the properties for a type (don't cast a field to
11656         a property, my mom always told me that).
11657         Fix 64 bit issues in pointer alignment in a different and more
11658         readable way.
11660 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
11662         * loader.h: Removed type class from MonoDefaults, added monotype
11664         * loader.c: Loaded MonoType, removed loading of Type
11666         * icall.c (my_mono_new_object): Now returns a System.MonoType,
11667         and fills in System.Type._impl with a RuntimeTypeHandle rather
11668         than the actual MonoClass *
11670         (ves_icall_type_from_handle): change from type_class to
11671         monotype_class
11673         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
11674         implemented
11676         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
11677         implemented
11679         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
11681         (ves_icall_System_Reflection_Assembly_GetType): implemented
11683         (ves_icall_System_MonoType_assQualifiedName): implemented
11685         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
11687 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
11689         * assembly.c (mono_assembly_open): Implement a cache for the
11690         assemblies. 
11692         (mono_assembly_close): only destroy the assembly when the last
11693         reference is gone.
11694         
11695 2001-11-09  Dick Porter  <dick@ximian.com>
11697         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
11699 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
11701         * class.c (mono_class_metadata_init): bug fix: compute the right slot
11703 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11705         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
11706         from Martin Weindel.
11707         * object.h: add mono_string_chars ().
11709 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
11711         * reflection.c (build_compressed_metadata): Eliminates warnings
11712         and uses 64-bit clean code.
11714         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
11715         (mono_type_equal): Change signature to eliminate warnings.
11717 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11719         * icall.c, loader.c: remove the internalcall array constructors.
11720         Changes to match the new MonoArray structure.
11721         * object.h, object.c: an array object doesn't allocate an extra
11722         vector. Add mono_array_new_full () to create jagged arrays easily.
11724 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11726         * metadata.h, metadata.c: add mono_metadata_field_info () to
11727         retreive all the info about a field from vairous tables.
11728         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
11729         * class.h, class.c: augment MonoClassField with more info.
11730         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
11731         policy and load a field's RVA if needed.
11733 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
11735         * class.c (mono_class_metadata_init): create a trampoline for all
11736         virtual functions instead of actually compiling them.
11738 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
11740         * class.h, class.c: include name in MonoClassField.
11741         * class.c: fix fundamental type of System.Object and System.String.
11742         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
11743         tokens in ldtoken.
11744         * icall.c: remove internalcalls for the Reflection stuff that is now
11745         done in C# code.
11746         * loader.c: mono_field_from_memberref () implementation.
11747         * mono-endian.c: thinko (s/struct/union/g).
11748         * object.c, object.h: make the mono_string_* prototypes actually use
11749         MonoString instead of MonoObject.
11750         * reflection.c, reflection.h: updates for changes in the reflection
11751         code in corlib: we use C structures that map to the actual C# classes.
11752         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
11753         fat method header if needed and use the info from the ILGenerator for
11754         methods. Handle fields in types. Misc fixes.
11756 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
11758         * class.c (mono_class_metadata_init): bug fix: always allocate
11759         space for static class data
11761 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
11763         * class.c (mono_compute_relative_numbering): use relative
11764         numbering to support fast runtime type checks.
11766 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
11768         * class.c (mono_class_create_from_typeref): added debugging output
11769         to print class name when MonoDummy is returned instead of real class
11771 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
11773         * class.c (mono_class_metadata_init): interface offset table now
11774         contains pointers into the vtable - this is more efficient for the jit
11776 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
11778         * class.c (mono_class_metadata_init): use a temporary vtable (the
11779         old algorithm only worked for the interpreter, but not for the jit)
11781 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
11783         * loader.c (method_from_memberref): use mono_class_get to get the
11784         class of an array instead of using System.Array directly.
11785         (mono_get_method): also add MEMBERREF methods to the method cache
11786         which usefull for arrays.
11788 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
11790         * pedump.c (arch_compile_method): added to compute vtable entry
11792         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
11793         number of interfaces.
11794         
11795         * class.h: merged MonoArrayClass into MonoClass
11797         * class.c (mono_class_create_from_typedef): compute the vtable size and
11798         allocate space to include the vtable inside MonoClass
11799         (mono_class_metadata_init): initialize the vtable
11801 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
11803         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
11804         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
11805         * image.c: endian fixes by Laurent Rioux.
11806         * object.h, object.c: rename MonoStringObject to MonoString and
11807         MonoArrayObject to MonoArray. Change some function names to conform to
11808         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
11809         guint16* as first argument, so don't use char*.
11810         Provide macros to do the interesting things on arrays in a portable way.
11811         * threads-pthread.c: updates for the API changes and #include <sched.h>
11812         (required for sched_yield()).
11813         * icall.c: updates for the API changes above.
11814         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
11815         platforms that need them.
11817 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11819         * class.c: set the correct type for all the fundamental
11820         type when loading the class.
11822 2001-10-05  Dick Porter  <dick@ximian.com>
11824         * threads-pthread.c (pthread_mutex_timedlock): Simple
11825         compatibility version for C libraries that lack this call.
11827 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11829         * class.c: MonoTypes stored in MonoClass are stored as
11830         fundamental MonoTypes when the class represents a
11831         fundamental type (System.Int32, ...).
11832         The TypeHandle return by ldtoken is a MonoType*.
11833         * icall.c: ves_icall_get_data_chunk () write out all the
11834         PE/COFF stuff. Implement ves_icall_define_method (),
11835         ves_icall_set_method_body (), ves_icall_type_from_handle ().
11836         * image.c: properly skip unknown streams.
11837         * loader.h, loader.c: add type_class to mono_defaults.
11838         * metadata.c, metadata.h: export compute_size () as
11839         mono_metadata_compute_size () with a better interface.
11840         Typo and C&P fixes.
11841         * pedump.c: don't try to print the entry point RVA if there is no entry point.
11842         * reflection.c, reflection.h: many cleanups, fixes, output method
11843         signatures and headers, typedef and typeref info, compress the metadata
11844         tables, output all the heap streams, cli header etc.
11845         * row-indexes.h: typo fixes.
11847 2001-10-04  Dick Porter  <dick@ximian.com>
11849         * object.h: Add a synchronisation mutex struct to MonoObject
11851         * object.c (mono_new_object): Initialise the object
11852         synchronisation mutexes
11854         * icall.c: System.Threading.Monitor internal calls
11855         
11856         * threads-pthread.h:
11857         * threads-pthread.c: System.Threading.Monitor internal calls
11859         * threads-types.h: New file, includes the system-specific thread
11860         structures
11861         
11862         * threads-pthread-types.h:
11863         * threads-pthread-types.c: New files, handle pthread-specific
11864         synchronisation types
11866         * threads-dummy-types.h: 
11867         * threads-dummy-types.c: New files of dummy support for
11868         thread-specific types
11870         * metadata.c:
11871         * image.c:
11872         * pedump.c: include mono-endian.h not endian.h
11873         
11874         * Makefile.am: More threads files.
11875         Name mono-endian.h not endian.h
11877 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
11879         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
11880         stuff and implement a few more bits.
11881         * icall.c: a field needs to be dereferenced twice. Do not use the same
11882         name for two variables in the same scope.
11883         * image.c, image.h: cleanups.
11885 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
11887         * class.c (mono_class_metadata_init): bug fix: compute the right size
11889 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
11891         * icall.c: implemented some of the Reflection internalcalls.
11892         * image.c, image.h: start writing out the PE/COFF image.
11893         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
11894         that does the reverse than decode_blob_size ().
11895         * object.c: use mono_metadata_encode_value (). Move here
11896         temporary implementation of mono_string_to_utf8 ().
11897         * rawbuffer.c: make malloc_map static.
11899 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11901         * metadata.c: fix type comparison for arrays.
11902         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
11903         Added a couple of new classes to monodefaults.
11904         * icall.c: added a couple of Reflection-related internalcalls.
11905         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
11906         Added a byval_arg MonoType to MonoClass.
11908 2001-09-28  Dick Porter  <dick@ximian.com>
11910         * icall.c:
11911         * threads-pthread.h: 
11912         * threads-pthread.c: Implemented internal calls for
11913         LocalDataStoreSlot operations.  Applied mutexes around all shared
11914         data.  Reworked the thread creation and Start() operations to
11915         avoid a race condition.
11916         
11917         * threads-dummy.h:
11918         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
11920 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
11922         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
11924 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
11926         * class.c, loader.c: warn and return NULL instead of erroring out.
11927         * icall.c: added System.AppDomain::getCurDomain().
11928         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
11930 2001-09-25  Dick Porter  <dick@ximian.com>
11932         * threads-pthread.h:
11933         * threads-pthread.c: Implemented timed thread joining and added
11934         System.Threading.Thread::Join_internal internal call
11936         * icall.c: Added System.Threading.Thread::Join_internal internal call
11938         * threads-dummy.h:
11939         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
11941 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
11943         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
11944         mono_string_intern () to implement the semantics of the ldstr opcode
11945         and the interning of System.Strings.
11946         * icall.c: provide hooks to make String::IsIntern and String::Intern
11947         internalcalls.
11949 2001-09-23  Dick Porter  <dick@ximian.com>
11951         * threads-dummy.c: 
11952         * threads-dummy.h: New files of dummy threading routines
11954         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
11955         support code based on system specifics
11957         Rename PTHREAD_LIBS to THREAD_LIBS
11958         
11959 2001-09-23  Dick Porter  <dick@ximian.com>
11961         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
11962         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
11963         internal calls.
11964         (mono_thread_init): Set up a Thread object instance to return when
11965         the main thread calls Thread.CurrentThread
11966         (mono_thread_cleanup): Wait for all subthreads to exit
11968         * icall.c: New internal calls for System.Threading.Thread::Sleep
11969         (including Schedule) and CurrentThread
11971         * threads.h: New file, to insulate thread-specific stuff from the
11972         rest of the code
11974 2001-09-21  Dick Porter  <dick@ximian.com>
11976         * threads-pthread.h: 
11977         * threads-pthread.c: New file, for handling pthreads-style
11978         threading support.  Start() now starts a new thread and executes
11979         the ThreadStart delegate instance.
11981         * icall.c: Added the internalcall for
11982         System.Threading.Thread::Start_internal
11984         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
11986 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
11988         * loader.c: work around the different signatures for delegates
11989         constructors csc generates in compiled code vs the ones compiled in mscorlib.
11991 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11993         * class.h, class.c: add mono_class_get_field_from_name ().
11994         * *: Fix C comments and other ANSI C issues.
11996 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
11998         * endian.h, assembly.c: fix some endianness issues.
12000 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
12002         * loader.h, load.c: add delegate_class to mono_defaults.
12003         Handle runtime provided methods in mono_get_method ().
12005 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
12007         * loader.c (mono_get_method): use pinvoke for internal call
12009         * icall.c: use pinvoke for internal call
12011         * loader.c (method_from_memberref): set the method name
12013 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
12015         * metadata.c: help the compiler generate better code for
12016         mono_class_from_mono_type ().
12018 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
12020         * class.c (mono_class_metadata_init): delayed computing of the
12021         class size to mono_class_metadata_init ()
12023 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
12025         * class.c, class.h: add an interfaces member to MonoClass.
12026         * image.c, image.h: add assembly_name field to MonoImage
12027         from the assembly table.
12028         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
12030 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12032         * class.c: Handle Array in mono_class_from_mono_type ().
12033         * metadata.c, pedump.c: some endian fixes.
12035 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
12037         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
12038         * metadata.c: fix small problem introduced with the latest commit.
12040 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
12042         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
12043         We don't need a MonoMetadata pointer anymore to compare signatures in
12044         mono_metadata_signature_equal (), update callers.
12045         Reduced memory usage an number of allocations for MonoMethodHeader and
12046         MonoMethodSignature.
12048 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
12050         * metadata.c: added compare for szarray.
12052 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
12054         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
12055         and add a couple more types to it and mono_defaults. Give an hint on
12056         classes that need implementing in our corlib and are referenced
12057         in mscorlib.
12059 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
12061         * class.h, class.c: keep track if a class is also an Enum.
12062         * loader.c: Implement a couple more types for use in libffi
12063         marshalling. Gives better diagnostics when failing to dlopen
12064         a library. Set method->klass for P/Invoke methods, too.
12066 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
12068         * class.c, class.h: add a MonoType this_arg to MonoClass that
12069         represents a pointer to an object of the class' type that
12070         can be used by the interpreter and later the type cache.
12071         Add best guess alignment info for valuetype objects.
12073 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
12075         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
12076         into MonoType: one less level of indirection and allocation and
12077         simplifies quite a bit of code. Added cache for MonoTypes that are
12078         used frequently, so that we don't need to allocate them all the time.
12080 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
12082         * class.c (mono_class_create_from_typedef): System.Enum is also a
12083         value type, although it does not derive from System.ValueType
12084         (maybe a bug in the ms compiler?)
12086         * metadata.c (mono_type_size): return the right size for value types
12088         * loader.c (mono_get_method): only initialize method header if not abstract
12090         * class.c (mono_class_from_mono_type): use mono_default values. 
12092 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
12094         * *: use MonoClass pointers instead of <type_tokens>
12095         
12096         * class.h: new flag: metadata_inited.
12098         * class.c (mono_class_metadata_init): impl.
12099         (mono_class_instance_size): impl.
12100         (mono_class_data_size): impl.
12102 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
12104         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
12105         MonoClass now has the name and name_space fields. 
12106         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
12107         mono_get_method () takes and optional MonoClass as argument.
12108         Removed mono_typedef_from_name() and added mono_class_token_from_name()
12109         instead that takes advantage of a map from class names to typedef
12110         tokens in MonoImage.
12112 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
12114         * metadata.c: zero is not a valid alignment boundary.
12115         Merge MONO_TYPE_VOID in default decoding code.
12117 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
12119         * image.h: merged MonoMetadata into MonoImage
12121         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
12122         identify the type of elements.
12124 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
12126         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
12127         * cil-coff.h: split MonoMSDOSHeader and add size info.
12128         * image.c: add some consistency checks.
12129         * metadata.c: fix row size computation: one programmer
12130         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
12131         add explanation for the locator routine.
12132         Fix decoding of size in method header.
12133         
12134 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
12136         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
12137         (g_concat_dir_and_file): Bring g_concat_dir_and_file
12138         function from gnome-libs.  This uses the right path separator
12139         based on the OS, and also works around a bug in some systems where
12140         a double slash is not allowed. 
12141         (default_assembly_name_resolver): Use g_concat_dir_and_file
12142         (mono_assembly_open): ditto.
12144 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
12146         * metadata.c (mono_metadata_signature_equal): impl.
12148         * *: void is now a realy MonoType (instead of using NULL)
12149         
12150         * metadata.c (do_mono_metadata_parse_type): use
12151         mono_metadata_parse_type to parse void value.
12153 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
12155         * metadata.c, metadata.h: in the signature and method header store
12156         only the space required for holding the loca vars and incoming arguments.
12158 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
12160         * metadata.c (do_mono_metadata_parse_type): treat void like any
12161         other type (instead of assigning NULL);
12163 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
12165         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
12167 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
12169         * image.c (do_mono_image_open): added a cache for arrays.
12171 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12173         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
12174         decode a single column from a row in a metadata table and changes
12175         to take advantage of it in the typedef locator (gives a nice speed up).
12176         Store offset info for function params.
12178 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
12180         * image.h (MONO_IMAGE_IS_CORLIB): removed 
12182 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
12184         * assembly.c: how could mono_assembly_close () had ever worked?
12185         * metadata.c, metadata.h: provide offset info for local vars.
12186         Implement mono_type_size () to take care of alignment as well
12187         as size (it was mono_field_type_size in cli/class.c before).
12189 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
12191         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
12193         * assembly.h (CORLIB_NAME): set to corlib.dll
12195         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
12197 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
12199         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
12200         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
12201         tokentype.h: massive namespace cleanup.
12203 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
12205         * metadata.h, metadata.c: decode exception clauses when parsing method header.
12207 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
12209         * metadata.c (mono_metadata_free_type): added check for type !=
12210         NULL (void) before calling mono_metadata_free_type()
12212 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
12214         * metadata.h, row_indexes.h: added header with enumerations to use
12215         to index in the columns from tables in metadata and to decode coded
12216         tokens: we should start using this instead of embedding magic numbers
12217         all over the code.
12219 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
12221         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
12222         Move metadata_t info from cli_image_info_t to MonoImage, where
12223         it's easily accessible. Changed all the uses accordingly.
12224         Added the method and class caches to MonoImage.
12225         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
12226         and mono_metadata_decode_value () signature to be more consistent
12227         with the other parse functions (and simplify code). Taken advantage
12228         of zero-length array allocation with GCC. Removed reduntant (and
12229         wrong) MonoFieldType struct and use MonoParam instead. Changed
12230         mono_metadata_parse_field_type () to use common code for parsing.
12231         Added mono_metadata_typedef_from_field () and
12232         mono_metadata_typedef_from_method () to lookup a typedef index from a
12233         field or method token.
12234         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
12236 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
12238         * metadata.c (mono_metadata_parse_field_type): Implement. 
12239         (do_mono_metadata_parse_type): Split engine from
12240         mono_metadata_parse_type, so that we can create smaller structures
12241         for things that just have one pointer to the MonoType (look at
12242         the MonoFieldType)
12244 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
12246         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
12247         as Jan Gray found out, it is incorrect. 
12249 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
12251         * assembly.c: Implement asssembly loading.  This loads an image
12252         and loads all the referenced assemblies.  Come to think of it, we
12253         could always do lazy loading of the assemblies. 
12255         * image.c (mono_image_open): Keep loaded images in a hashtable.
12257         * image.h (MonoImage): Add reference count.
12259 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
12261         * assembly.c (mono_assembly_open): Keep track of the file name in
12262         case the assembly has no ASSEMBLY table.
12264         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
12265         from get.c here.
12267 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
12269         * metadata.c, metadata.h: decode local vars in method header
12270         parse function. Change callers accordingly.
12272 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
12274         * metadata.h, cil-coff.h: protect against multiple inclusion.
12275         Added some new structures to hold information decoded from metadata:
12276         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
12277         and relevant decoding/free functions.
12278         * metadata.c: implement decoding functions. Add warning for out of bounds
12279         index in mono_metadata_locate(). Implement mono_get_method () to retreive
12280         all the info about a method signature and invocation. Remove check on
12281         uninitialized local var in parse_mh() and fix memory leak.
12283 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
12285         * metadata.h: More macros.
12287         * tokentype.h: New file.
12289 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
12291         * assembly.c: added a consistency check and initialize
12292         some structures with g_new0().
12293         * metadata.c: fixed a couple more bugs in table size computation
12294         and add other checks for out-of bound access to metadata.
12296 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
12298         * metatada.c: fix bugs computing table sizes. Spew a
12299         warning when index in string heap is out of bounds.
12301 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
12303         * metadata.h: Add a couple of macros to manipulate tokens. 
12305 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12307         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
12308         cli_section_tables).
12310 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
12312         * metadata.c (mono_metadata_user_string): New function, provides
12313         access to the UserString heap. 
12315 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
12317         * metadata.c: Add inline documentation.
12319 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
12321         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
12322         files. 
12324 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
12326         * typeattr.h: New file, TypeAttribute flags. 
12328 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
12330         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
12331         mono_assembly_ensure_section): Section loading code.
12332         (load_section_tables): Load the sections.
12334         * mono/metadata/metadata.c (mono_metadata_locate_token,
12335         mono_metadata_locate): Functions to locate the information
12336         definition given a token or a table and an index.
12337         (mono_metadata_compute_table_bases): New.
12338         (compute_size): New function to compute the sizes of the various
12339         tables.
12341         * mono/metadata/metadata.h: Finish listing the different index
12342         types. 
12344         * mono/metadata/pedump.c: Improve to dump new information.
12346 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
12348         * mono/metadata/metadata.c: Entered all the tables matching
12349         Beta2. 
12351         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2