2004-10-06 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / metadata / ChangeLog
1 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
2
3         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
4         implemented by other interfaces in the result. Fixes #65764.
5         
6         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
7         Handle unloadable modules without crashing.
8
9         * image.c (load_modules): Revert the previous patch since modules must
10         have a fixed index inside the array.
11         
12         * image.c (load_modules): Don't include native modules in the modules
13         array.
14
15 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
16
17         * reflection.h: Add param_defaults field.
18
19         * reflection.c: Add support for parameter defaults in dynamic methods.
20         Fixes #64595.
21
22         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
23         an empty string when a type has no namespace. Fixes #64230.
24
25 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
26
27         * tabledefs.h: Added "internal" security actions to support non-CAS
28         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
29         Note: they do not seems to be used anymore in 2.0 (new metadata format)
30
31 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
32
33         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
34         constructor of abstract class. Fixes #61689.
35
36 2004-10-04  Martin Baulig  <martin@ximian.com>
37
38         * class-internals.h (MonoGenericContainer): New type.
39         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
40         `MonoGenericContainer *generic_container'.
41         (MonoClass): Replaced `gen_params' and `num_gen_params' with
42         `MonoGenericContainer *generic_container'.
43
44         * metadata.c (mono_metadata_load_generic_params): Return a
45         `MonoGenericContainer *' instead of a `MonoGenericParam *';
46         removed the `num' argument.
47
48 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
49
50         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
51         for dynamic images.
52
53         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
54         machine fields.
55
56         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
57
58         * reflection.c: Save pe_kind and machine values into the generated
59         image file.
60
61         * appdomain.c: Bump corlib version number.
62
63         * object-internals.h: Reorganize layout of LocalBuilder.
64
65         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
66         New helper function.
67
68         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
69         created MonoType for dynamic types. Fixes #66180.
70
71 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
72
73         * threadpool.c: the ares hashtable needs a critical section around it.
74         this prevents some nasty segfaults
75
76 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
77
78         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
79         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
80         bug 67324).
81         
82 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
83
84         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
85         
86 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
87
88         * image.c: Always canonicalize image file names, to avoid loading
89         the same assembly twice when referenced using a relative path.
90
91 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
92
93         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
94
95         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
96
97         * marshal.c: Fix warnings.
98
99 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
100
101         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
102         attempting to marshal the delegate_trampoline as the method_addr.
103         This patch has a static hashtable of marshalled delegates so that 
104         we can map delegate_trampoline addresses back to delegates.  This
105         allows a delegate passed to managed code to be passed back into native
106         code.  Fixes #67039
107
108 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
109
110         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
111
112         * reflection.c (method_encode_code): Align method headers properly.
113         Fixes #66025.
114
115 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
116
117         * marshal.c: In the runtime invoke wrapper, reset the abort
118         exception if it is cached. This avoids the automatic rethrowal of 
119         the exception after the catch of the wrapper. Also check for pending
120         interruptions before calling the managed method. This is done using
121         the new method emit_thread_force_interrupt_checkpoint, since the
122         normal checkpoint method is ignored when running the invoke wrapper.
123         * object.c: If the abort exception is rethrown, set the abort_exc
124         field of the thread, so it will be rethrown aftere every catch.
125         * threadpool.c: Only run an interruption checkpoint if what has been
126         requested is a stop of the thread (aborts will be ignored).
127         * threads.c: By default, a thread will now never be interrumped while
128         running the runtime invoke wrapper (this ensures that runtime_invoke
129         will always return to the caller if an exception pointer is provided).
130         There is a new special method mono_thread_force_interruption_checkpoint()
131         to force an interruption checkpoint even if running a protected
132         wrapper, which is used by the same runtime invoke wrapper to do a check
133         at a safe point.
134
135 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
136
137         * object.c, object-internals.h: Implemented mono_release_type_locks,
138         which releases the cctor locks held by a thread.
139         * threads.c, threads.h: In thread_cleanup, release cctor locks held
140         by a thread. Added mono_thread_exit() method to be used to safely stop
141         a thread.
142
143 2004-09-28  Raja R Harinath  <rharinath@novell.com>
144
145         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
146         Move null check before dereference.  Avoid indexing beyond the end
147         of the 'modules' array.
148
149 2004-09-28  Raja R Harinath  <rharinath@novell.com>
150
151         * metadata-internals.h (MonoImage): Add module_count field.
152         * image.c (load_modules): Set image->module_count.
153         (mono_image_load_file_for_image): Use image->module_count.
154         * reflection.c (mono_image_load_module): Append to image->modules array 
155         of dynamic assembly.
156         (mono_module_get_object): Fix loop to actually increment index.
157         Use image->module_count.
158         * assembly.c (mono_assembly_load_references): Use image->module_count.
159         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
160         Likewise.
161
162 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
163
164         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
165         Avoid assert on generic types.
166
167 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
168
169         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
170
171         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
172
173         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
174         function to convert a MarshalSpec structure to its managed counterpart.
175
176         * reflection.c: Fix warnings.
177         
178         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
179         field.
180
181         * icall.c (mono_create_icall_signature): Fix build.
182
183 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
184
185         * icall.c: Add MakePointType icall.
186
187         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
188         warnings.
189
190 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
191
192         * threadpool.c: reuse allocated slots in the queue.
193
194 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
195
196         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
197
198         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
199
200         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
201         previous change.
202
203         * tabledefs.h: Add constants for pinvoke attributes BestFit and
204         ThrowOnUnmappableChar.
205
206         * icall.c (ves_icall_Type_GetPacking): New icall.
207
208 2004-09-24  Martin Baulig  <martin@ximian.com>
209
210         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
211
212 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
213
214         * appdomain.c:
215         (mono_domain_set): allow setting a domain that is being unloaded.
216         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
217         being unloaded.
218
219 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
220
221         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
222         the GetCustomAttributes icall.
223
224 2004-09-23  Martin Baulig  <martin@ximian.com>
225
226         * object-internals.h (MonoReflectionGenericParam): Replaced
227         'has_ctor_constraint', `has_reference_type' and `has_value_type'
228         with `guint32 attrs'.
229
230 2004-09-23  Martin Baulig  <martin@ximian.com>
231
232         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
233
234 2004-09-23  Martin Baulig  <martin@ximian.com>
235
236         * object-internals.h (GenericParameterAttributes): New enum.
237
238 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
239
240         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
241         
242         * class.c (init_events): Fill out event->other field.
243
244         * class.c: Fix warnings.
245
246         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
247
248 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
249
250         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
251         walk which doesn't supply the IL offset.
252
253 2004-09-22  Martin Baulig  <martin@ximian.com>
254
255         * reflection.c (mono_reflection_setup_internal_class): If we're
256         System.ValueType, System.Object or System.Enum, set
257         `klass->instance_size' and create the vtable.
258         (mono_reflection_create_internal_class): If we're an enum type,
259         get the base class from our current corlib.
260
261 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
262
263         * reflection.h (MonoResolveTokenError): New type.
264
265         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
266         icall.
267
268         * icall.c: Add an 'error' argument to the ResolveToken icalls.
269
270 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
271
272         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
273         Support also calling constructors, but only for already allocated objects.
274
275 2004-09-17  Geoff Norton <gnorton@customerdna.com>
276
277         * reflection.c (type_get_qualified_name): If the klass is null
278         return the typename to avoid a NullRefEx.
279         (encode_cattr_value): Get the qualified name of the boxed type,
280         not the underlying enumtype.  Fixes #62984.
281
282 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
283
284         * marshal.c: Fix problems with previous checkin.
285
286 2004-09-21    <vargaz@freemail.hu>
287
288         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
289         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
290
291         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
292
293 2004-09-21  Geoff Norton <gnorton@customerdna.com>
294
295         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
296         should only return a type for pointers, arrays, and passbyref types.
297         Fixes bug #63841.
298
299 2004-09-21  Martin Baulig  <martin@ximian.com>
300
301         * domain.c (mono_debugger_check_runtime_version): New public
302         function.
303
304         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
305
306 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
307
308         * reflection.c: Added missing sort to the declarative security 
309         attributes table. MS implementation stops seeing the attributes if the
310         token number regress in the table (as shown by ildasm and permview).
311
312 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
313
314         * object-internals.h (MonoReflectionModule): Add 'token' field.
315         
316         * reflection.c (mono_reflection_get_token): Add support for Module
317         and Assembly.
318         (mono_module_get_object): Set 'token' field.
319         (mono_module_file_get_object): Set 'token' field.
320
321         * icall.c: Add new Assembly and Module icalls.
322
323         * appdomain.c: Bump corlib version.
324
325 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
326
327         * loader.h loader.c class.h class.c: Add helper functions for obtaining
328         tokens of metadata objects.
329
330         * reflection.h reflection.c (mono_reflection_get_token): New function
331         to obtain the token of a metadata object.
332
333         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
334
335 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
336
337         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
338         
339         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
340
341 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
342
343         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
344         * object-internals.h: Added 3 MonoArray* members to MonoReflection
345         AssemblyBuilder to access the permissions set in the class lib.
346         * reflection.c: Added security attributes encoding step in 
347         mono_image_build_metadata.
348         * tabledefs.h: Added new security actions defined in 2.0:
349         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
350
351 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
352
353         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
354         macro parameter.
355
356 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
357  
358         * locales.c: nullify the ICU_collator member of CompareInfo when it is
359           finalized. There where random SIGSEVs at program termination, when
360           an object being finalized was trying to do a string comparison and
361           the current culture was already finalized.
362  
363 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
364
365         * threads.c: call thread_cleanup before finishing the thread if we get
366         there.
367
368 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
369
370         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
371         assemblies from the parent. Fixes #65665.
372
373 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
374
375         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
376         modifiers.
377
378 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
379
380         * reflection.h: add prototype for mono_get_dbnull_object
381         * reflection.c: add prototypes for get_default_param_value_blobs 
382         and mono_get_object_from_blob for fussier compilers
383
384 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
385  
386         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
387         false deadlock checks in class initialization.
388  
389 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
390
391         * image.c (mono_image_addref): Fix comment.
392
393         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
394         possible.
395
396 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
397
398         * reflection.c (mono_param_get_objects): Modified to return
399         ParameterInfo.DefaultValue object.
400
401         (get_default_param_value_blobs):
402         (mono_get_object_from_blob):
403         (mono_get_dbnull_object): New helper routines. 
404
405         * object.c (mono_get_constant_value_from_blob): New helper routine
406         carved out from get_default_field_value ()
407
408         * object-internals.h (mono_get_constant_value_from_blob): Added
409         function declaration.
410
411 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
412
413         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
414         referenced assemblies. Fixes #62135.
415
416         * exception.h exception.c (mono_get_exception_file_not_found2): New
417         helper function.
418
419 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
420
421         * class.h class.c: Add mono_type_get_underlying_type ().
422
423 2004-09-09  Geoff Norton <gnorton@customerndna.com>
424
425         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
426         Fix GetTypes() to support dynamically created assemblies.
427
428 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
429
430         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
431         
432         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
433         previous patch.
434
435         * reflection.h reflection.c loader.c: Allow dynamic construction of
436         pinvoke methods. Fixes #65571.
437         
438         * reflection.c (mono_reflection_get_type): Revert previous change since
439         it causes regressions.
440
441 2004-09-08  Martin Baulig  <martin@ximian.com>
442
443         * class.c (class_compute_field_layout): Don't call
444         mono_class_layout_fields() for open generic instances.
445
446 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
447         * threads.c appdomain.c: fix typo in GC macro
448
449 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
450
451         * threads.c: don't call mono_thread_detach() in start_wrapper(),
452         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
453
454 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
455
456         * image.c (mono_image_close): Applied patch from 
457         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
458         assembly is loaded multiple times from data.
459         
460         * image.c (mono_image_open): Fix warning.
461
462 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
463
464         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
465         once. Fixes #58334.
466         
467         * reflection.c (mono_reflection_create_runtime_class): Initialize
468         klass->nested_classes. Fixes #61224.
469
470 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
471
472         * threads.c: sched_yield() on exit, to allow threads to quit.
473
474 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
475
476         * object.c (mono_unhandled_exception): Remove leftover debug code.
477
478 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
479
480         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
481
482 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
483
484         * marshal.c (emit_marshal_array): Really null terminate string arrays.
485         
486         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
487
488 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
489
490         * marshal.c (emit_marshal_array): Null terminate string arrays.
491         
492         * marshal.c (raise_auto_layout_exception): Fix warning.
493
494         * reflection.c (mono_param_get_objects): Initialize the default value
495         with DBNull.Value, not null. Fixes #62123.
496
497 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
498
499         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
500         throw an exception with a cute explanation.
501
502 2004-09-06  Dick Porter  <dick@ximian.com>
503
504         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
505         Close the new process's thread handle, as we don't use it.  The
506         handle stays around forever otherwise.
507
508 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
509
510         * object.c (arith_overflow): Fix warning.
511
512         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
513         calling conventions in method refs. Fixes #65352.
514
515         * reflection.c: Fix warnings.
516
517 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
518
519         * icall.c: Add a new icall for Array.Clear
520
521 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
522
523         * object.c: When allocating an array, we have to throw
524         an overflow exception if any of the lengths are < 0.
525
526 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
527
528         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
529         properly. Also move implementation of string array marshalling to 
530         managed code. Fixes #42316.
531
532 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
533
534         * assembly.c: provide more information when loading an assembly fails.
535
536 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
537
538         * filewatcher.c: don't expect the development fam package to be
539         installed.
540
541 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
542
543         * marshal.c: Make a copy of the signature cookie since it will be
544         freed by the caller.
545         
546         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
547
548         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
549
550         * metadata.c (mono_metadata_free_marshal_spec): New function to free
551         marshal specs.
552
553         * marshal.c: More refactoring.
554         
555         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
556         smaller functions.
557
558 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
559
560         * object.c: In mono_message_invoke, fill the output parameter array after
561           calling the managed method (it was done before the call). This fixes
562           bug #59299.
563
564 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
565
566         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
567         as well.
568
569 2004-09-02  Martin Baulig  <martin@ximian.com>
570
571         * class.c (mono_class_instance_size): Don't allow generic type
572         definitions or open generic instances.
573         (mono_class_array_element_size): If we're a value type, call
574         mono_class_instance_size() on the original class.
575
576         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
577         handle generic instances.
578
579         * mono-debug-debugger.c (write_type): Handle generic instances
580         like classes.
581
582 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
583
584         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
585         the allocation request fails. Fixes #65089.
586
587         * object.c (mono_runtime_free_method): Do not call mono_free_method.
588         
589         * object.c (mono_runtime_free_method): New function to free a dynamic
590         method.
591
592         * marshal.c (mono_delegate_free_ftnptr): New function to free the
593         delegate trampoline.
594
595         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
596         with hasthis as dynamic,
597
598         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
599
600         * domain.c (mono_jit_info_table_remove): New function to remove an
601         entry from the jit info table.
602
603         * class-internals.h (MonoMethod): Add 'dynamic' field.
604
605         * loader.c: Fix warnings.
606
607 2004-09-01  Martin Baulig  <martin@ximian.com>
608
609         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
610         instead of mono_debugger_lock() because the latter one is a no-op
611         unless running in the debugger.
612
613 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
614
615         * class.c (class_compute_field_layout): Classes with auto-layout or
616         reference fields are not blittable.
617         
618 2004-09-01  Dick Porter  <dick@ximian.com>
619
620         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
621         mono_image_get_filename() to get the assembly location.
622
623         * icall.c:
624         * metadata.h: Fix compile warnings
625
626 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
627
628         * class.c (class_compute_field_layout): System.Object is blittable.
629
630         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
631         as in/out. Fixes #59909.
632
633 2004-09-01  Martin Baulig  <martin@ximian.com>
634
635         * metadata.h (MONO_TYPE_ISREFERENCE): Call
636         mono_metadata_generic_inst_is_valuetype() if we're a generic
637         instance to check whether our underlying type is a reference type.
638
639 2004-09-01  Martin Baulig  <martin@ximian.com>
640
641         * metadata.c (mono_type_size): If we're a generic instance, call
642         mono_class_value_size() for value types.
643
644 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
645
646         * marshal.c: Implement more custom marshalling functionality. Fixes
647         #64915.
648
649 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
650
651         * mono-debug.c, debug-mono-symfile.c: add some locking love.
652
653 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
654
655         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
656
657         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
658
659         * icall.c: Fix some warnings.
660
661         * threads.c (abort_appdomain_thread): Fix unref errors.
662         (mono_thread_current): Fix THREAD_DEBUG define.
663
664 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
665
666         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
667
668         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
669
670 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
671
672         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
673         string arrays.
674
675 2004-08-28  Martin Baulig  <martin@ximian.com>
676
677         * metadata.c
678         (mono_metadata_generic_inst_is_valuetype): New public function.
679
680         * metadata.h (MONO_TYPE_ISSTRUCT): Call
681         mono_metadata_generic_inst_is_valuetype() if we're a generic
682         instance to check whether our underlying type is a valuetype.
683
684 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
685
686         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
687         #63768.
688
689 2004-08-25  Martin Baulig  <martin@ximian.com>
690
691         * loader.c (mono_get_method_from_token): Abstract methods can also
692         be generic and thus have type parameters.
693
694         * metadata-internals.h
695         (MonoDynamicImage): Added `GPtrArray *gen_params'.
696
697         * reflection.c (mono_image_get_generic_param_info): Don't create a
698         metadata row, just add an entry to the `gen_params' array.
699         (build_compressed_metadata): Sort the `gen_params' array and then
700         actually create the metadata.
701
702 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
703
704         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
705
706 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
707
708         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
709
710 2004-08-24  Martin Baulig  <martin@ximian.com>
711
712         * class.cs (mono_class_is_subclass_of): Like an interface, a
713         generic instance also derives from System.Object.
714
715 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
716
717         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
718         custom modifiers to be in any order. Fixes #61990.
719
720 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
721
722         * object.c: Register mono_object_new_fast icall.
723         
724         * object.c (mono_class_get_allocation_ftn): Return to calling
725         mono_object_new_fast, since it seems faster to compute the object 
726         size in unmanaged code than passing it as a parameter.
727
728         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
729
730         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
731         this function with Boehm as the oom handler, so we don't have to check
732         the result of GC_malloc.
733
734         * object.c: Remove checks for oom.
735
736         * object.h object.c (mono_class_get_allocation_ftn): New function to
737         return the icall which can be used to allocate an instance of a given
738         class. 
739
740         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
741
742         * class-internals.h: Add 'enabled' field.
743
744 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
745
746         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
747
748 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
749         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
750         value 0x0010.
751
752 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
753
754         * appdomain.c: use the Tls function for appdomain too,
755         at Zoltan's request. Actually return in mono_context_get
756
757         * appdomain.c, profiler.c, threads.c: use __thread
758
759 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
760
761         * appdomain.c threads.c: Call GC_CreateThread on windows.
762
763         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
764         multiple libraries since this don't work on windows.
765
766 2004-08-18  Martin Baulig  <martin@ximian.com>
767
768         * class-internals.h
769         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
770         MonoMethodHeader.
771
772         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
773         MonoMethodNormal since we also need it for abstract and interface
774         methods.
775
776         * reflection.c
777         (build_compressed_metadata): Sort the GenericParam table.
778         (mono_image_create_token): Added `gboolean create_methodspec'
779         argument; this is false when generating a MethodImpl token.
780         (reflection_methodbuilder_to_mono_method): Abstract and interface
781         methods may also have generic parameters.
782
783 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
784
785         * appdomain.c: thread local alloc
786
787 2004-08-17  Martin Baulig  <martin@ximian.com>
788
789         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
790
791         * icall.c
792         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
793         argument.
794
795         * class.c (mono_type_get_full_name): New public function.
796         (mono_type_get_name): Don't include the type arguments.
797
798 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
799
800         * Makefile.am: Build static versions of libmetadata and libmonoruntime
801         for inclusion into the mono executable.
802
803 2004-08-16  Martin Baulig  <martin@ximian.com>
804
805         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
806         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
807
808 2004-08-14  Martin Baulig  <martin@ximian.com>
809
810         * class.c (dup_type): Also copy the `byref' field.
811
812 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
813
814         * reflection.c (create_dynamic_mono_image): Revert the last change 
815         since it breaks bootstrap.
816
817 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
818
819         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
820
821         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
822         not free them with g_free.
823
824 2004-08-11  Martin Baulig  <martin@ximian.com>
825
826         * reflection.c (mono_reflection_setup_internal_class): Also call
827         mono_class_setup_mono_type() if we already have a `tb->type.type'.
828
829 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
830
831         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
832         called during default (first) AppDomain creation. Keep track of
833         Evidence when loading assemblies.
834
835 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
836
837         * opcodes.c, opcodes.h: reduce runtime relocations.
838
839 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
840
841         * culture-info.h, locales.c: fixes and chages to sue the new
842         optimized format of the locale data.
843         * culture-info-tables.h: regenerated.
844
845 2004-08-06  Geoff Norton <gnorton@customerdna.com>
846         
847         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
848
849 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
850
851         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
852         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
853         * domain-internals.h: icall declaration.
854         * icall.c: icall registration.
855         * object-internals.h: New fields in MonoAssembly for CAS.
856
857 2004-08-05  Duncan Mak  <duncan@ximian.com>
858
859         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
860         CEE_LDELEM_ANY.
861
862 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
863
864         * reflection.c: fix to deal with object[] arrays in custom ctors
865         (bug #62550).
866
867 2004-08-05  Martin Baulig  <martin@ximian.com>
868
869         * class.c (mono_class_array_element_size): Added support for
870         generic instances and correctly handle "recursive" types.
871
872 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
873
874         * assembly.c: Fix warnings.
875
876 2004-08-04  Martin Baulig  <martin@ximian.com>
877
878         * class.c
879         (mono_type_get_name_recurse): Added `gboolean include_arity'
880         argument specifying whether or not we should include the generic
881         arity in the type name.
882         (_mono_type_get_name): New static function.
883         (mono_class_setup_vtable): If we're a generic instance, don't
884         include the generic arity in the names of explicit method
885         implementations.        
886
887 2004-08-03  Martin Baulig  <martin@ximian.com>
888
889         * class.c (mono_type_get_name_recurse): Enclose the generic type
890         arguments in `<', '>'.
891
892 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
893
894         * gc.c: make GC warning messages use the trace API, they are just
895         noise to most of the users.
896
897 2004-08-03  Martin Baulig  <martin@ximian.com>
898
899         * debug-mono-symfile.c (read_string): Correctly read the string.
900
901 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
902
903         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
904         
905         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
906         icalls.
907         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
908
909 2004-07-30  Martin Baulig  <martin@ximian.com>
910
911         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
912         Reflect latest symbol writer changes.   
913
914 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
915
916         * object.c: always create an object if null is passed
917         to Invoke() where a valuetype is expected.
918
919 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
920
921         * marshal.c (mono_marshal_init): make managed
922         signatures match native ones better for 64bits.
923
924 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
925
926         * appdomain.c: hack to build correctly the private bin path on windows.
927         Fixes bug #61991.
928
929 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
930
931         * assembly.c: Load mscorlib from the correct framework directory
932           (mono/<version>/mscorlib.dll).
933         * appdomain.h: Added prototypes for new functions.
934         * internals.h: Added some prototypes.
935         * domain.c: When initializing the runtime, get from the executable and
936           the configuration files the runtime version that the app supports.
937           Added support methods for reading app.exe.config. Added list of versions
938           supported by the JIT. Added two new methods: mono_init_from_assembly,
939           which initializes the runtime and determines the required version from
940           the provided exe file, and mono_init_version, which initializes
941           the runtime using the provided version.
942         * icall.c: Get machine.config from version-specific directory.
943         * reflection.c: When generating an image, embed the version number
944           of the current runtime.
945
946 2004-07-28  Dick Porter  <dick@ximian.com>
947
948         * socket-io.c
949         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
950         returned sockaddr size before creating the remote address object.
951         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
952         61608.
953
954 2004-07-28  Dick Porter  <dick@ximian.com>
955
956         * locales.c (string_invariant_compare_char): Fix invariant char
957         compares between upper and lower cases.  Fixes bug 61458.
958
959 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
960         
961         * marshal.c: actually cache stelem.ref wrappers.
962         
963 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
964
965         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
966         sections and remove the mono_cli_rva_map () function.
967
968 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
969
970         * debug-mono-symfile.c: fix one more endianess issue, from a patch
971         by Geoff Norton (<gnorton@customerdna.com>).
972
973 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
974
975         * class.c: fix class loads for pointer types (typeof(int) !=
976         typeof(int*)).
977
978 2004-07-27  Martin Baulig  <martin@ximian.com>
979
980         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
981         reading the debugging information from an external ".mdb" file.
982
983 2004-07-24  Martin Baulig  <martin@ximian.com>
984
985         * reflection.c (mono_image_get_type_info): Only write a class
986         layout entry if we actually have a size or a packing size.
987
988 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
989
990         * reflection.c (type_get_fully_qualified_name): 
991         insert cast to get type checking of ?: with non-gcc compilers
992
993 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
994
995         * rand.c: use g_getenv for both lookups of
996         MONO_EGD_SOCKET
997
998 2004-07-17  Martin Baulig  <martin@ximian.com>
999
1000         * reflection.c (mono_reflection_bind_generic_method_parameters):
1001         Set `gmethod->reflection_info'.
1002
1003 2004-07-17  Martin Baulig  <martin@ximian.com>
1004
1005         * class.c (mono_class_create_from_typedef): Insert the newly
1006         created class into the hash table before computing the interfaces
1007         since we could be called recursively.
1008
1009 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
1010
1011         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
1012         function to implement stelem.ref in managed code
1013         * class-internals.h, debug-helpers.c: a new wrapper type
1014         for the above.
1015
1016 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
1017
1018         * gc.c: allow GC handles to work even when no GC is compiled in.
1019         Fix part of bug #61134 (GetAddrOfPinnedObject).
1020
1021 2004-07-13  Peter Williams  <peter@newton.cx>
1022  
1023         * process.c (complete_path): Make sure we don't attempt to execute
1024         directories.
1025  
1026 2004-07-12  Geoff Norton <gnorton@customerdna.com>
1027
1028         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
1029           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
1030           and will add/subtract the hour if needed
1031
1032 2004-07-12  Martin Baulig  <martin@ximian.com>
1033
1034         * reflection.c (mono_field_get_object): If we have
1035         `field->generic_info', take the attributes from
1036         `field->generic_info->generic_type'.    
1037
1038 2004-07-12  Martin Baulig  <martin@ximian.com>
1039
1040         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
1041         This function must be called before initializing the runtime.
1042         (mono_debug_init_1): New function; call this after initializing
1043         the runtime, but before loading the assembly.  It tells the
1044         debugger to load corlib and the builtin types.
1045
1046         * mono-debug-debugger.c: Did some larger changes in the debugging
1047         code; support recursive class declarations, make sure we actually
1048         add all classes.
1049
1050 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1051
1052         * debug-helpers.c: undo my previous patch and fixed the real issue in
1053         ../mini/exceptions-x86.c
1054
1055 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1056
1057         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
1058         when no HOME env. variable was set and a NullRef was thrown in a .cctor
1059         called from other .cctors.
1060
1061 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
1062
1063         * loader.c: Removed the mono_loader_wine_init hack now that we are
1064         doing a managed version of Windows.Forms.
1065
1066 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1067
1068         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
1069         threadpool.c, threads.c: remove static data from rootset.
1070
1071 2004-07-09  Dick Porter  <dick@ximian.com>
1072
1073         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
1074         Don't do any more processing if the matched length was 0.  It was
1075         increasing the size of the string before.  Fixes bug 61167.
1076
1077 2004-07-09  Dick Porter  <dick@ximian.com>
1078
1079         * socket-io.h:
1080         * socket-io.c
1081         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1082         Add support for SO_PEERCRED if its available.
1083
1084 2004-07-09  Peter Bartok <pbartok@novell.com>
1085         * loader.c: winelib.exe.so error message is now only displayed if
1086         MONO_DEBUG is set. To help us avoid questions when people are trying
1087         out the new Managed.Windows.Forms.
1088
1089 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
1090
1091         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
1092         for isinst and castclass wrappers.
1093
1094         * class-internals.h icall.c: Move registration and lookup of JIT icalls
1095         to libmetadata from the JIT, so they could be used by the marshalling
1096         code and the interpreter.
1097
1098         * marshal.c: Register marshalling related JIT icalls here instead of
1099         in mini.c. Use CEE_MONO_ICALL instead of the family of 
1100         CEE_MONO_PROC<x> opcodes to call marshalling functions.
1101
1102         * metadata.h: Remove unneeded marshalling conversions.
1103
1104         * opcodes.c: Update for new opcodes.
1105         
1106 2004-07-08  Martin Baulig  <martin@ximian.com>
1107
1108         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
1109         (mono_debug_get_domain_data): Make this function static.
1110
1111 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1112
1113         * gc.c, object.h: add nice GC handle API for embedders.
1114
1115 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
1116
1117         * reflection.c: more changes for the new api
1118
1119         * object.c: When we reflect on a field w/ a constant value, it
1120         will not have a memory location, so we must access metadata. Also,
1121         allow easier reading of strings so that we can read them from
1122         the constant data.
1123
1124         * class.c (mono_class_layout_fields): no need for literal fields here.
1125
1126         * class-internals.h: api changes for const fields
1127
1128         * icall.c (ves_icall_get_enum_info): use new apis for const fields
1129
1130 2004-07-06  Martin Baulig  <martin@ximian.com>
1131
1132         * mono-debug.h: Increment version number to 44.
1133
1134         * mono-debug.c (mono_debug_add_wrapper): The second argument is
1135         now a gpointer, rewrote this whole method.
1136
1137         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
1138         function.  Add information about the wrapper in a new "misc table".
1139
1140         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
1141         for the new misc table.
1142
1143 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
1144
1145         * metadata-internals.h image.c: Add a cache for helper signatures.
1146
1147         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
1148
1149 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
1150
1151         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
1152         delegates from a delegate. Fixes #61033.
1153         
1154         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
1155         marshalling of stringbuilder arrays. Fixes #59900.
1156
1157 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
1158
1159         * icall.c: Add EnumBuilder:setup_enum_type icall.
1160
1161 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
1162
1163         * icall.c: Added a new icall for the property version of
1164         OffsetOfStringData.
1165
1166 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
1167
1168         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
1169         it has a constant size across platforms.
1170
1171         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
1172         stack trace.
1173
1174 2004-06-29  Martin Baulig  <martin@ximian.com>
1175
1176         * mono-debug.c (mono_debug_add_method): Protect the whole function
1177         in mono_debugger_lock(), not just parts of it.
1178
1179 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
1180
1181         * reflection.c: make sure padding bytes in heaps are zeroed.
1182
1183 2004-06-24  David Waite  <mass@akuma.org>
1184
1185         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
1186         image.c, loader.c, locales.c, marshal.c, metadata.c,
1187         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
1188         string-icalls.c, threads.c: change to C90-style comments from C99 /
1189         C++ -style
1190
1191 2004-06-24  Dick Porter  <dick@ximian.com>
1192
1193         * threads.c
1194         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
1195         return createdNew.  Fixes bug 60412.
1196
1197         * threads-types.h: 
1198         * icall.c: Add createdNew parameter to CreateMutex icall
1199
1200 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1201
1202         * reflection.c, object-internals.h: save default value in params.
1203
1204 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1205
1206         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
1207         no need to build a new path combining that with the application base.
1208         Fixes bug #60442.
1209
1210 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
1211
1212         * reflection.c: fixed minor standard compliance issues.
1213
1214 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
1215
1216         * reflection.c: fixed issue with encoding some custom attributes
1217         (arrays in properties and fields, bug #60411).
1218
1219 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1220
1221         * reflection.c: fix start address when copying the public key token.
1222
1223 2004-06-23  Martin Baulig  <martin@ximian.com>
1224
1225         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
1226         the `exc' object in a static object to put it into the GC's root set.
1227
1228 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
1229
1230         * reflection.c: make mono_reflection_setup_internal_class ()
1231         callable a second time to setup a new parent class.
1232
1233 2004-06-23  Dick Porter  <dick@ximian.com>
1234
1235         * threads.c: Check for WAIT_IO_COMPLETION return values.
1236
1237 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
1238
1239         * appdomain.c: Removed the g_free on the public key token. Now copy 
1240         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
1241         * assembly.c: Added public key token string value when loading 
1242         assemblies. Fix bug #60439.
1243         * icall.c: Added missing informations (like public key) in 
1244         GetReferencedAssemblies. Fix #60519.
1245         * image.h: Changed definition for public key token from const char*
1246         public_tok_value to guchar public_key_token [17];
1247         * reflection.c: Updated for changes to public key token.
1248
1249 2004-06-22  Lluis Sanchez Gual
1250
1251         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
1252         for the field in base classes.
1253
1254 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1255
1256         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
1257         mark headers as not supported, they are installed only for use by the
1258         debugger.
1259
1260 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
1261
1262         * *.c, *.h: avoid namespace pollution in public headers.
1263
1264 2004-06-21  Martin Baulig  <martin@ximian.com>
1265
1266         * exception.c (mono_get_exception_security): It's in
1267         "System.Security", not in "System".
1268
1269         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
1270         the exception classes.
1271
1272 2004-06-21  Martin Baulig  <martin@ximian.com>
1273
1274         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
1275         Protect the exception object from being finalized.
1276
1277 2004-06-21  Martin Baulig  <martin@ximian.com>
1278
1279         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
1280         public function.
1281
1282 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
1283
1284         * reflection.c: Load the assembly in mono_reflection_type_from_name,
1285         if it was not loaded before. Fix parts of #60439.
1286
1287 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
1288
1289         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
1290         code that was broken since Ben's change: wrappers are now
1291         dependent on the method signature only again.
1292
1293 2004-06-21  Martin Baulig  <martin@ximian.com>
1294
1295         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
1296         added interface support.
1297
1298 2004-06-21  Martin Baulig  <martin@ximian.com>
1299
1300         * class.c (mono_vtable_get_static_field_data): New public method.
1301
1302 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
1303
1304         * filewatcher.c : Windows build fix to be compliant with API changes.
1305
1306 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1307
1308         * class.h, class.c: more accessors.
1309         * metadata.h, metadata.c: prepare for hiding MonoType and
1310         MonoMethodSignature: people should use the accessors from now on
1311         outside of the tree.
1312
1313 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1314
1315         * *.c, *.h: more API cleanups.
1316
1317 2004-06-18  Jackson Harper  <jackson@ximian.com>
1318
1319         * assembly.c: Trace loading assemblies.
1320         * loader.c: Trace loading native libraries.
1321         * mono-config.c: Trace loading config files.
1322         
1323 2004-06-18  Dick Porter  <dick@ximian.com>
1324
1325         * locales.c: Tell ICU the lengths of strings, it can cope with
1326         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
1327
1328 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1329
1330         * image.c: swapped name/filename;
1331
1332 2004-06-18  Martin Baulig  <martin@ximian.com>
1333
1334         * mono-debug-debugger.c (write_class): Write the parent class at
1335         the end of the header.
1336
1337 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1338
1339         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
1340
1341 2004-06-17  Raja R Harinath  <rharinath@novell.com>
1342
1343         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
1344         (bundle_obj): New conditional define.
1345         (BUILT_SOURCES): Remove.
1346         ($(bundle_srcs)): Make parallel-make safe.
1347         (libmonoruntime_la_LIBADD): Make unconditional.
1348         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
1349         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
1350
1351 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
1352
1353         * culture-info-tables.h: It was inconsistent with the latest
1354           supp info files.
1355
1356 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
1357
1358         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
1359         be loaded.
1360
1361         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
1362         with gcc 2.95.
1363
1364 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1365
1366         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
1367         cleaned up public header threads.h.
1368
1369 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1370
1371         * Makefile.am, *.c, *.h: more API cleanups.
1372
1373 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1374
1375         * Makefile.am: removed monosn from compilation.
1376         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
1377         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
1378         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
1379         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
1380         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
1381         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
1382
1383 2004-06-15  Jackson Harper  <jackson@ximian.com>
1384
1385         * assembly.c: Make locales lower case when searching the GAC for
1386         assemblies. gacutil will always make locales lowercase when
1387         installing so this effectively makes them case insensitive.
1388         
1389 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
1390
1391         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
1392         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
1393           parameter which allows to choose whether the wait can be interrupted or 
1394           not. Also added the method mono_monitor_enter(), which locks the monitor
1395           using an infinite wait and without allowing interruption.
1396           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
1397           interrupted.
1398         * object.h: Added new fields in MonoThread. suspend_event holds the event
1399           used to susped/resume the thread. synch_lock is the lock object to use for
1400           modifying the thread state.
1401         * threads.c: Use the new synch_lock object for locking, instead of "this",
1402           which can generate deadlocks.
1403           Moved thread state change in Thread.Sleep and Thread.Join from managed
1404           to unmanaged code. This avoids a deadlock when the thread was suspended
1405           just after acquiring the thread lock.
1406           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
1407           Implemented Thread.Suspend using an event instead of ThreadSuspend,
1408           which is not fully implemented in the io-layer.
1409         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
1410
1411 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
1412
1413         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
1414         threads-types.h: more API cleanups.
1415
1416 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1417
1418         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
1419         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
1420         threadpool.c, threads.c: first pass at the exported API cleanup.
1421
1422 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1423
1424         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
1425
1426 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1427
1428         * icall.c: added internalGetHome.
1429
1430 2004-06-14  Dick Porter  <dick@ximian.com>
1431
1432         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
1433         possible to return successfully when '.' or '..' were the only
1434         entries in a directory, but were skipped.  The MonoIOStat was not
1435         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
1436         Fixes bug 59574.
1437
1438 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1439
1440         * reflection.c: make binaries run on .Net 1.1 by default.
1441
1442 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1443
1444         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
1445
1446 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
1447
1448         * marshal.c: keep track of struct size with explicit layout
1449         (bug #59979).
1450
1451 2004-06-12  Martin Baulig  <martin@ximian.com>
1452
1453         * mono-debug-debugger.c: Comment out a debugging g_message().
1454
1455 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1456
1457         * reflection.c, reflection.h: do not free custom attrs that are cached.
1458         * icall.c: use braces to make code clearer.
1459
1460 2004-06-11  Martin Baulig  <martin@ximian.com>
1461
1462         * class.h (MonoInflatedField): New type.
1463         (MonoClassField): Replaced `MonoType *generic_type' with
1464         `MonoInflatedField *generic_info'.
1465
1466         * icall.c
1467         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
1468
1469 2004-06-11  Martin Baulig  <martin@ximian.com>
1470
1471         * reflection.c (mono_image_create_method_token): Correctly encode
1472         varargs methods.
1473
1474 2004-06-11  Martin Baulig  <martin@ximian.com>
1475
1476         * metadata.c (mono_metadata_parse_method_signature): When parsing
1477         a MethodDef which has VarArgs, also set sentinelpos if we don't
1478         have any parameters.
1479
1480 2004-06-11  Martin Baulig  <martin@ximian.com>
1481
1482         * verify.c (mono_method_verify): In CEE_CALL, use
1483         mono_method_get_signature() to get the method's signature, unless
1484         we're a PInvoke method.
1485
1486 2004-06-10  Jackson Harper  <jackson@ximian.com>
1487
1488         * assembly.c: Use <path>/lib/mono/gac for the extra paths
1489         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
1490         logical name as the supplied path is just a prefix to the gac not
1491         the direct path to it.
1492         
1493 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
1494
1495         * reflection.c: make the token for a created method match
1496         the token of the MethodBuilder it was created from
1497         (IKVM requires this behaviour now).
1498
1499 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
1500
1501         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
1502         reflection.c, socket-io.c: leak fixes.
1503
1504 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
1505
1506         * icall.c: handle sentinel pos in vararg methods in position different
1507         from 0.
1508
1509 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1510
1511         * culture-info-tables.h: freshly generated.
1512
1513 2004-06-09  Martin Baulig  <martin@ximian.com>
1514
1515         * loader.c (mono_get_method_constrained): Call `mono_class_init
1516         (constrained_class)'.   
1517
1518 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
1519
1520         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
1521         any methods. Fixes #59629.
1522
1523 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1524
1525         * culture-info-tables.h: reflecting locale-builder updates.
1526
1527 2004-06-08  Dick Porter  <dick@ximian.com>
1528
1529         * object.h:
1530         * locales.c: Fixed compile warnings, including a real bug in
1531         CompareInfo_internal_compare.
1532         
1533 2004-06-08  Dick Porter  <dick@ximian.com>
1534
1535         * locales.c
1536         (ves_icall_System_Globalization_CompareInfo_internal_index):
1537         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1538         Double-check the resuls of usearches, because ICU currently
1539         ignores most of the collator settings here.  Fixes bug 59720.
1540         
1541 2004-06-08  Dick Porter  <dick@ximian.com>
1542
1543         * locales.c
1544         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1545         Fix memory leak and segfault-causing typo.  No idea how this one
1546         lasted so long without being noticed.
1547
1548 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
1549
1550         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
1551         any methods. Fixes #59629.
1552
1553 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1554
1555         * assembly.c:
1556         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
1557         own the critical section before). Removed dead code (that's done
1558         in the preload hook).
1559
1560         (mono_assembly_load_with_partial_name): call the preload hook.
1561
1562 2004-06-08  Martin Baulig  <martin@ximian.com>
1563
1564         * metadata.c (mono_metadata_signature_alloc): Default
1565         `sentinelpos' to -1.
1566
1567         * reflection.c (mono_image_get_array_token): Likewise.
1568
1569 2004-06-08  Martin Baulig  <martin@ximian.com>
1570
1571         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
1572
1573         * metadata.c (mono_metadata_parse_method_signature): When parsing
1574         a MethodDef which has VarArgs, set sentinelpos.
1575
1576         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
1577         `gint16' since we're using -1 for non-varargs methods.
1578
1579         * reflection.c
1580         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
1581         (method_encode_signature): Added varargs support.
1582         (method_builder_encode_signature): Likewise.
1583         (mono_image_get_varargs_method_token): New static method.
1584         (mono_image_create_method_token): New public method; this is
1585         called via an icall instead of mono_image_create_token() when
1586         calling a varargs method.       
1587
1588 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
1589
1590         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
1591
1592 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1593
1594         * culture-info-tables.h : Reflecting the latest locale-builder that
1595           fixed empty array representation ({} to {0}).
1596
1597 2004-06-07  Jackson Harper  <jackson@ximian.com>
1598
1599         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
1600         looking up extra gac paths. This allows MONO_GAC_PATH to act
1601         exactly like a prefix.
1602         
1603 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1604
1605         * reflection.c (mono_reflection_type_from_name): Make a copy of the
1606         type name before modifying it. Fixes #59405.
1607
1608 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1609
1610         * culture-info.h: added fields for "all datetime patterns".
1611         * locales.c: (  ves_icall_System_Globalization_CultureInfo
1612           _construct_datetime_format ()): fill xxx_patterns fields.
1613         * object.h: added fields for "all datetime patterns" to
1614           MonoDateTimeFormatInfo.
1615         * culture-info-tables.h: reflecting locale-builder updates.
1616
1617 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1618
1619         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
1620         the event has no add and remove methods. Fixes #59629.
1621
1622 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1623
1624         * object.c: Fixed possible integer overflow when allocating large
1625         strings.
1626
1627 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1628
1629         * culture-info-tables.h: reflecting locale-builder updates.
1630
1631 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1632
1633         * culture-info-tables.h: reflecting locale-builder updates.
1634
1635 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1636
1637         * culture-info-tables.h: reflecting locale-builder updates.
1638
1639 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
1640
1641         * threads.c: Made Thread.Sleep abortable.
1642
1643 2004-06-02  Martin Baulig  <martin@ximian.com>
1644
1645         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
1646
1647         * debug-mono-symfile.h: Bumped symbol file version number to 37.
1648
1649 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
1650
1651         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
1652
1653 2004-05-30  Jackson Harper  <jackson@ximian.com>
1654
1655         * reflection.c: Do not hardcode assembly versions or public key
1656         tokens anymore. All of this except the corlib section was dead
1657         code anyways.
1658         
1659 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1660
1661         * object.c (mono_runtime_invoke_array): Automatically create boxed
1662         objects for byref valuetypes if needed. Fixes #59300.
1663         
1664         * object.c (mono_method_return_message_restore): Handle 
1665         MONO_TYPE_OBJECT as well.
1666
1667 2004-05-28  Jackson Harper  <jackson@ximian.com>
1668
1669         * reflection.c: The modified type encoding was causing build
1670         problems. Reverted for now.
1671         
1672 2004-05-28  Jackson Harper  <jackson@ximian.com>
1673
1674         * reflection.c/h: Take an assembly ref so that we dont create
1675         fully qualified names when encoding types in the same assembly as
1676         the custom attribute being emitted.
1677         * appdomain.c: Increment version number.
1678         
1679 2004-05-26  Duncan Mak  <duncan@ximian.com>
1680
1681         * icall.c
1682         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1683         Set the full version number (major, minor, build, revision).
1684
1685 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
1686
1687         * marshal.c (emit_struct_conv): increment src/dst after blit
1688         (mono_marshal_get_managed_wrapper,
1689         mono_marshal_get_native_wrapper): make sure we have marshalling
1690         info before marshalling params (info computation affects
1691         blittable)
1692
1693         * class.c (class_compute_field_layout): correctly deal with
1694         blittable
1695         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
1696         value types (as per what windows dows by default)
1697         (mono_class_setup_mono_type): System.ValueType is blittable
1698         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
1699         blittable
1700
1701         * marshal.c (mono_marshal_load_type_info): flag types  as
1702         non-blittable if the native layout doesn't match the managed
1703         layout
1704
1705 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1706
1707         * appdomain.c: don't add stuff in the private search path that is
1708         above the application base. If application base is not set, there's
1709         no private search path.
1710
1711 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
1712
1713         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
1714         byref struct arguments in native->managed marshalling.
1715
1716 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
1717
1718         * marshal.c (mono_marshal_get_runtime_invoke): correctly
1719         cache methods using signature (special case for methods
1720         that are value type or string class)
1721         
1722         * image.c (mono_image_close): clean up allocated GSList's
1723         in runtime_invoke_cache.
1724
1725 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1726
1727         * mono-config.c: set the correct path for mono_cfg_dir on windows when
1728         there's no MONO_CFG_DIR environment variable defined.
1729
1730 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1731
1732         * threads.c: windows version must be >= 0x0500 to include OpenThread.
1733
1734 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
1735
1736         * threadpool.c: Really wait for 500ms after the async call, even if the wait
1737           is interrumped.
1738         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
1739           before waiting for it, and call CloseHandle after the wait to unref it.
1740           This will make sure that handles are not disposed too early.
1741
1742 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1743
1744         * appdomain.c:
1745         * appdomain.h:
1746         * icall.c: removed
1747         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
1748         needed now.
1749
1750         * object.c: se the application_base only for the domain that runs
1751         Main. Fixes bug #59216,
1752
1753 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1754
1755         * appdomain.c:
1756         * object.c: only the domain in which Main is run have
1757         SetupInformation.ConfigurationFile set, so moved a few lines from
1758         appdomain.c to object.c.
1759
1760 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1761
1762         * appdomain.c: we tried to load [name].(dll|exe), but according
1763         to bug #57710, we must also try [culture]/[name].(dll|exe) and
1764         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
1765         There's a test case attached to bug #58922.
1766
1767 2004-05-27  Dick Porter  <dick@ximian.com>
1768
1769         * icall.c:
1770         * file-io.c: Implemented icalls for locking and unlocking regions
1771         in a file.
1772         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
1773         FALSE on error (fixes both compiler warning and real bug.)
1774
1775 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1776
1777         * culture-info-tables.h: reflecting locale-builder updates.
1778
1779           (Added missing ChangeLog entry for 05/26)
1780
1781 2004-05-27  Jackson Harper  <jackson@ximian.com>
1782
1783         * locales.c: Fix some cut and paste errors.
1784         
1785 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1786
1787         * mono-config.c: set the correct path for config. directory on windows.
1788
1789 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1790
1791         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
1792           on win32.
1793
1794 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1795
1796         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
1797         from pinvoke functions.
1798         
1799         * marshal.c (mono_ftnptr_to_delegate): Implement this.
1800
1801 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1802
1803         * culture-info-tables.h: reflecting locale-builder updates.
1804
1805 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1806
1807         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
1808         #59086.
1809
1810 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1811
1812         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
1813         * icall.c: Modified icalls for RNG.
1814         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
1815         Windows (CryptoAPI).
1816
1817 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1818
1819         * locales.c: Fix build.
1820
1821 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1822
1823         * culture-info-tables.h: reflecting locale-builder updates.
1824
1825 2004-05-25  Jackson Harper  <jackson@ximian.com>
1826
1827         * locales.c: When creating the current culture use the $LANGs
1828         specific culture. So DateTimeFormat and NumberFormat entries are created.
1829         
1830 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1831
1832         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
1833         a char array as parameter.
1834
1835 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
1836
1837         * image.c: In mono_image_open(), always use an absolute path name to
1838           look for already loaded images.
1839
1840 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
1841
1842         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
1843         missing in the windows build (like older cygwin include files).
1844
1845 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
1846
1847         * icall.c: Fixed check for possible integer overflow in Buffer_
1848         BlockCopy icall. Replaced comments style // by /* */.
1849
1850 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
1851
1852         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
1853         
1854         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
1855         check after MONO_VTADDR. Fixes pinvoke2.exe.
1856
1857         * marshal.h marshal.c metadata.h: Add beginnings of support for
1858         ftnptr -> delegate marshalling.
1859
1860 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
1861
1862         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
1863         * threads.c: Fix warnings.
1864
1865 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
1866
1867         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
1868         * icall.c: Registered icalls for Suspend and Resume.
1869         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
1870           Thread.Abort.
1871         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
1872         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
1873         * process.c: Use WaitForSingleObjectEx.
1874         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
1875           checkpoints.
1876         * threads.c, threads.h: Make use of new Ex wait methods. Improved
1877           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
1878           for Suspend and Resume. Added new mono_thread_stop, used for stoping
1879           background threads. Added basic support for Abort in Windows.
1880           Start new threads using a managed delegate invoke wrapper. This wrapper
1881           has an interruption checkpoint that is needed since an interruption
1882           can be requested before the thread leaves the unmanaged code that starts 
1883           the thread.
1884         * marshal.c: Added interruption checkpoint after every native call, and
1885           also before managed calls for wrappers called from unmanaged code to
1886           go into managed code.
1887         * object.h: Added new field in MonoThread to keep track of interruption
1888           requests.
1889
1890 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
1891
1892         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
1893         calls.
1894
1895 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1896
1897         * appdomain.c:
1898         * assembly.c:
1899         * gc.c:
1900         * locales.c:
1901         * mono-config.c:
1902         * rand.c: getenv -> g_getenv (windows!)
1903
1904         * process.c: complete_path is also used on non-windows platforms.
1905
1906 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1907
1908         * icall.c: new signature for Process_Start.
1909
1910         * process.[ch]: new signature for Process_Start. If we're on windows
1911         and UseShellExecute is false, we have to search for the program by
1912         ourselves if we don't get a full path.
1913
1914 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1915
1916         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
1917         marshalling and call CleanUpNativeData if needed. Fixes #58646.
1918
1919 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1920
1921         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
1922         Fixes bug #58373.
1923
1924 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1925
1926         * process.c: use double quotes to quote program name and arguments on
1927         windows. Fixes bug #58575.
1928
1929 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1930
1931         * file-io.c: don't return "." and ".." when using windows Find*File.
1932
1933 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
1934
1935         * marshal.c: Don't pass wrappers to message init because method 
1936         addressed used to lookup metadata. part of remoting[2|3] fix.
1937
1938 2004-05-15  Jackson Harper  <jackson@ximian.com>
1939
1940         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
1941         path is essentially the same as MONO_PATH except that it points to
1942         GACs instead of lib directories.
1943         * loader.h: The user gac is gone so we dont need function to
1944         enable/disable it.
1945         * mono-config.c: user gac option is now gone.
1946         
1947 2004-05-15  Jackson Harper  <jackson@ximian.com>
1948
1949         * culture-info.h: Make defines more consistent, add calendar data
1950         to the culture info table.
1951         * culture-info-tables.h: Add basic calendar data. Basically
1952         everyone gets default gregorian until all the data is
1953         updated.
1954         * locales.c: Use the new consistent defines. Set calendar data for
1955         culture info objects.
1956         * object.h: add a field for calendar data to CultureInfo
1957         
1958 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1959
1960         * image.c: image->runtime_invoke_cache is keyed on signatures now.
1961         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
1962         a signature.
1963         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
1964         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
1965         an extra param that is the pointer of the method to invoke. The IL for
1966         the invoke method is no longer specific to the method, but to the
1967         signature of the method. Thus, we can share the same code for multiple
1968         methods. This reduces the number of methods that have to be compiled.
1969
1970 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
1971
1972         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
1973
1974         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1975
1976         * icall.c: Optimize Buffer.BlockCopy.
1977
1978 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1979
1980         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
1981         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
1982         quote). Changed them to "MMMM yyyy".
1983
1984 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
1985
1986         * rand.c
1987         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
1988
1989 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
1990
1991         * reflection.h: Updated after changes to managed structures.
1992
1993         * appdomain.c: Bump corlib version.
1994
1995 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1996
1997         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
1998         windows.
1999
2000 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2001
2002         * Makefile.am: link to ../os/libmonoos.la on windows.
2003
2004         * assembly.c:
2005                 -If MONO_DEBUG, warn about non-existing directories in
2006                 MONO_PATH.
2007                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
2008                 compile time variable.
2009                 -Removed init_default_path and call mono_set_rootdir from
2010                 libmonoos.a instead (windows only).
2011
2012         * assembly.h: declare mono_assembly_getrootdir().
2013
2014         * domain.c:
2015         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
2016
2017         * loader.c: s/getenv/g_getenv/
2018
2019 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
2020
2021         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
2022
2023         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
2024
2025         * metadata.h: Add new marshalling conversions.
2026
2027         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
2028         function.
2029
2030         * reflection.c (mono_reflection_get_type): Lookup the type in all
2031         modules of a multi-module assembly. Fixes #58291.
2032
2033 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
2034
2035         * threads.c: Before aborting a background, set the StopRequested
2036         state.  This avoids throwing the Abort exception.
2037         In mono_thread_manage, don't continue with the shutdown until all
2038         aborted threads have actually stopped.
2039
2040 2004-05-10  Jackson Harper  <jackson@ximian.com>
2041
2042         * locales.c: Remove the modifier from culture names.
2043         
2044 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2045
2046         * Makefile.am: monosn is not installed any more. It has been deprecated
2047         in favor of sn.
2048
2049 2004-05-07  Jackson Harper  <jackson@ximian.com>
2050
2051         * locales.c
2052         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
2053         Fix array construction, add bailout if the length is 0.
2054
2055 2004-05-07  Dick Porter  <dick@ximian.com>
2056
2057         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
2058         machine doesn't have a DNS entry.  Patch by Urs Muff
2059         (umuff@quark.com), fixes bug 57928.
2060
2061 2004-05-06  Jackson Harper  <jackson@ximian.com>
2062
2063         * reflection.c: Handle null PublicTokens properly. alloc mem for
2064         assembly names culture so we dont crash when freeing it.
2065         
2066 2004-05-06  Jackson Harper  <jackson@ximian.com>
2067
2068         * assembly.c: Check the usergac when loading with partial names.
2069         
2070 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2071
2072         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
2073         does nothing for now (not required for Linux/Windows) but the class
2074         library can call it (and a newer or modified runtime could need it).
2075         * icall.c: Registred icall.
2076
2077 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2078
2079         * loader.c: prints a message on module loading error we set MONO_DEBUG
2080         environment variable.
2081
2082 2004-05-05  Jackson Harper  <jackson@ximian.com>
2083
2084         * appdomain.c: Handle PublicKeyToken=null properly.
2085         
2086 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
2087
2088         * environment.c|h: Added icall ves_icall_System_Environment_
2089         GetOSVersionString to get the current OS version as a string.
2090         * icall.c: Registred icall.
2091
2092 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
2093
2094         * object.c: in mono_object_get_virtual_method(), take into account that
2095         non-virtual methods don't have a slot in the vtable. Check needed when
2096         the object is a proxy.
2097
2098 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
2099
2100         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
2101         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
2102
2103         * object.c (mono_class_compute_gc_descriptor): Fix warning.
2104
2105         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
2106         passed when a valuetype is expected.
2107
2108         * object.c (mono_unhandled_exception): Only set the exit code if the
2109         exception happens in the main thread. Fixes thread5.exe.
2110
2111         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
2112         invalid names. Fixes #58047.
2113
2114 2004-05-03  Jackson Harper  <jackson@ximian.com>
2115
2116         * assembly.c: This line was committed accidently and is unneeded.
2117         
2118 2004-05-03  Jackson Harper  <jackson@ximian.com>
2119
2120         * icall.c: Add new icall for Assembly::LoadWithPartialName
2121         * assembly.c/.h: new function that probes the GAC to load partial
2122         assembly names by Paolo Molaro.
2123         
2124 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2125
2126         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
2127         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
2128         (type_get_fully_qualified_name): Added PublicKeyToken when building a
2129         full type name.
2130
2131 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2132
2133         * appdomain.c: fixed check for 'neutral' culture and removed warning.
2134         * reflection.c: fix bug when parsing a full type name and Version is not
2135         the last thing in the string.
2136
2137 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
2138
2139         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
2140         crashes when it is freed.
2141
2142 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2143
2144         * assembly.c: print the compat warning to stderr.
2145
2146 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
2147
2148         * assembly.c (mono_assembly_load_references): Add a compatibility
2149         hack to run old applications that might be still referencing the
2150         3300-based assemblies, only do this for System.xxx.
2151
2152 2004-05-01  Jackson Harper  <jackson@ximian.com>
2153
2154         * appdomain.c: If the culture is neutral we set it to "".
2155         
2156 2004-04-29  Jackson Harper  <jackson@ximian.com>
2157
2158         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
2159
2160 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
2161  
2162         * string-icalls.c: added low overhead function for copying chars
2163         * icall.c: added needed icall for the above function
2164  
2165 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2166
2167         * icall.c: fix return value of get_global_assembly_cache.  Implemented
2168         Environment.GetLogicalDrives.
2169
2170 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2171
2172         * rand.c: try and talk to egd or prngd
2173         for random bytes if opening devices fail.
2174
2175 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
2176
2177         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
2178         alignment for the type using the native alignment of its members 
2179         instead of using klass->min_align.
2180
2181         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
2182
2183 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2184
2185         * file-io.c:
2186         * socket-io.c: added check for sys/aio.h.
2187
2188 2004-04-28  Dick Porter  <dick@ximian.com>
2189
2190         * threads.c: Don't abort a thread thats already aborting, when
2191         terminating everything.
2192
2193 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2194
2195         * icall.c: added 2 new async calls for Socket.
2196
2197         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
2198         IO on *nix systems.
2199
2200         * threadpool.c: removed unused variable.
2201
2202 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
2203
2204         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
2205
2206 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
2207
2208         * locales.c: put back string_invariant_tolower () and
2209         string_invariant_toupper ().
2210
2211 2004-04-26 David Waite <mass@akuma.org>
2212
2213         * file-io.h:
2214         * socket-io.h:
2215         * threads.h:
2216         * unicode.h: remove comma from end of enumeration declarations
2217
2218 2004-04-26 David Waite <mass@akuma.org>
2219
2220         * debug-mono-symfile.h:
2221         * decimal.c:
2222         * mono_debug.h:
2223         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
2224
2225
2226 2004-04-26  Jackson Harper  <jackson@ximian.com>
2227
2228         * appdomain.c: Increment version number.
2229         
2230 2004-04-26  Jackson Harper  <jackson@ximian.com>
2231
2232         * appdomain.c: Set assembly references public token value when
2233         PublicKeyToken is specified, not the hash_value. Free public token
2234         values when free assembly name data. Previously the public key
2235         token was hex decoded, however we are using hex encoded public key
2236         tokens, so this is not neccasary.
2237         * assembly.c: Lookup assemblies in the gac if their public token
2238         value is set. Add function to allow enabling user gac
2239         lookups. Specify whether or not the assembly was loaded from the
2240         GAC. Compare full assembly names when checking the cache for
2241         assemblies (Temporarily disabled see comment in code). Remove
2242         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
2243         specifies trace-loader they get extra info to stdout on the
2244         loading of assemblies.
2245         * image.h: Add a field for an assembly references public token
2246         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
2247         whether an assembly has been loaded from the GAC.
2248         * image.c: Remove a corlib -> mscorlib name mapping.
2249         * loader.h: Add function to enable/disable the user gac.
2250         * mono-config.c: Check if the usergac is enabled in the config
2251         file.
2252         * icall.c: New icall to determine whether or not an assembly has
2253         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
2254         * tabldefs.h: Add constant for assemblyref flag that specifies a
2255         full public key is used instead of a public token.
2256         * reflection.c: Remove mscorlib -> corlib mappings. Set
2257         PublicTokenValue instead of hash value. This value is a hex
2258         string so it does not need to be expanded.
2259
2260 2004-04-26  Martin Baulig  <martin@ximian.com>
2261
2262         * mono-debug-debugger.c (mono_debugger_initialize): Set
2263         `mono_debugger_initialized' before calling mono_debug_lock().
2264
2265 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
2266
2267         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
2268           InternalToUpper/InternalToLower.
2269         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
2270           removed invariant culture shortcut.  This is now done in managed code.
2271         * locales.c: (string_invariant_toupper/tolower) removed.
2272
2273 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2274
2275         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
2276         Added Poll internal call.
2277
2278         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
2279         call for Poll. Select was too heavy for polling a single socket.
2280
2281         * threadpool.[ch]: added mono_threadpool_cleanup.
2282         * threads.c: use it. Don't use Thread_Abort on windows.
2283
2284 2004-04-23  Martin Baulig  <martin@ximian.com>
2285
2286         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
2287
2288 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
2289
2290         * icall.c: Registred new icalls for key pair protection and added an
2291         icall for Environment.GetFolderPath on Windows.
2292         * security.c|h: Added new icalls for key pair protection.
2293
2294 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2295
2296         * socket-io.c: don't display the non-supported family warning for known
2297         families. Now this is not displayed on windows when checking support
2298         for IPv4/IPv6.
2299
2300 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2301
2302         * class.c: don't display the layout warning for static fields.
2303
2304 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
2305
2306         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
2307         * locales.c, locales.h: Added new icalls for culture-specific
2308         Char.ToLower and Char.ToUpper.
2309
2310 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2311
2312         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
2313         by David Waite.
2314
2315 2004-04-20  Martin Baulig  <martin@ximian.com>
2316
2317         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
2318         of the type name before passing it to mono_reflection_type_from_name().
2319
2320 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2321
2322         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
2323         encodings here. Fixes #56965.
2324
2325 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
2326
2327         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2328         fix test on strstr result not that I can see anything that
2329         relies on the result.
2330
2331 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2332
2333         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
2334         Fixes #57081.
2335
2336         * marshal.c (mono_marshal_get_string_encoding): New helper function.
2337
2338         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
2339         function to determine which marshalling to use for strings. Fixes
2340         #56965.
2341
2342         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
2343
2344         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
2345
2346 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
2347
2348         * icall.c: #include mono-config.h
2349
2350 2004-04-15  Jackson Harper  <jackson@ximian.com>
2351
2352         * culture-info-tables.h: Fix date formats for en-US culture.
2353         
2354 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
2355
2356         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
2357         ThreadPool.SetMinThreads.
2358         * threadpool.c: Implemented ThreadPool.GetMinThreads and
2359         ThreadPool.SetMinThreads.
2360
2361 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2362
2363         * mono-config.c: also load the .config file in the directory
2364         where the assembly was found.
2365
2366 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2367
2368         * assembly.c: load per-assembly config files.
2369         * icall.c: decrapified code to get the config dir and moved to
2370         mono-config.c.
2371         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
2372         per-assembly config files. When doing a dll map lookup give precedence
2373         to the per-assembly data.
2374
2375 2004-04-14  Martin Baulig  <martin@ximian.com>
2376
2377         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
2378         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
2379         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
2380
2381         * mono-debugger-debugger.c: While the debugger is locked, remember
2382         whether the symbol tables have changes and send one single
2383         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
2384
2385 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2386
2387         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
2388
2389         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
2390         function.
2391
2392         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
2393         account when marshalling string arrays. Fixes #56965.
2394
2395 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2396
2397         * icall.c: Add new icalls mapping for security.
2398         * security.c|h: Add internal calls for WindowsIdentity,
2399         WindowsImpersonationContext and WindowsPrincipal.
2400
2401 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
2402
2403         * class.c: Added comment to ensure the System.MonoDummy class
2404         is removed when no longer necessary
2405
2406 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2407
2408         * appdomain.c: Pass arguments to the bootstraping exceptions to
2409         minimize JITed methods at boot
2410
2411         * metadata.c (mono_exception_from_name_two_strings): Allow for the
2412         second string to be null.
2413
2414         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2415         Change the protocol to minimize the JIT methods at startup.  Now
2416         it Returns the internal codepage, if the value of "int_code_page"
2417         is 1 at entry, and we can not compute a suitable code page
2418         number, returns the code page as a string.
2419
2420 2004-04-13  Jackson Harper  <jackson@ximian.com>
2421
2422         * culture-info-tables.h: Fix number of decimal digits for all
2423         english locales.
2424
2425 2004-04-13  Jackson Harper  <jackson@ximian.com>
2426
2427         * icall.c: Clairfy out of sync error message. It is not always
2428         your corlib that is out of sync.
2429
2430 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
2431
2432         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
2433         properties when only the set accessor is overriden. Fixes #55874.
2434
2435 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
2436
2437         * assembly.c (mono_assembly_load_references): Make this thread safe.
2438         Fixes #56327.
2439
2440 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2441
2442         * monosn.c: Add missing initialization calls.
2443
2444 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
2445
2446         * locales.c:
2447         ves_icall_System_Globalization_CultureInfo_construct_number_format
2448         Fix g_assert so it compiles on fussier compilers re int/ptr
2449         mismatch
2450
2451 2004-04-08  Dick Porter  <dick@ximian.com>
2452
2453         * socket-io.h:
2454         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
2455         53992.  Also rearrange the code so that the internal calls return
2456         an error value and exceptions are thrown from managed code.
2457
2458         * icall.c: Add type info to the socket icalls.
2459
2460 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2461
2462         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
2463         owes me a beer.
2464
2465 2004-04-07  Martin Baulig  <martin@ximian.com>
2466
2467         * class.c (mono_class_from_generic_parameter): Don't default
2468         `klass->parent' to `mono_defaults.object_type'.
2469
2470 2004-04-07  Martin Baulig  <martin@ximian.com>
2471
2472         * reflection.c (mono_reflection_initialize_generic_parameter): Set
2473         `param->pklass->reflection_info'.       
2474
2475 2004-04-07  Jackson Harper  <jackson@ximian.com>
2476
2477         * culture-info-tables.h: Fix date separator symbol.
2478         
2479 2004-04-07  Martin Baulig  <martin@ximian.com>
2480
2481         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
2482         from System.Type to System.MonoType.
2483
2484 2004-04-07  Martin Baulig  <martin@ximian.com>
2485
2486         * reflection.h
2487         (MonoReflectionGenericParam): Added `has_reference_type' and
2488         `has_value_type' fields.
2489
2490         * reflection.c (mono_image_get_generic_param_info): Encode the
2491         correct flags if we have the `class' or `struct' constraint.
2492
2493 2004-04-07  Martin Baulig  <martin@ximian.com>
2494
2495         * reflection.h
2496         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
2497
2498 2004-04-07  Jackson Harper  <jackson@ximian.com>
2499
2500         * appdomain.c: Revert extra patches, just wanted to bump the
2501         version number.
2502         
2503 2004-04-07  Jackson Harper  <jackson@ximian.com>
2504
2505         * Makefile.am: Add culture-info private headers.
2506         * icall.c: Add new icalls for contructing locales.
2507         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
2508         * locales.h: Declare new culture info construction methods.
2509         * object.h: Add new fields used to avoid the CultureMap to
2510         MonoCultureInfo.
2511         * culture-info.h: Definition of structs used in the culture info
2512         tables.
2513         * culture-info-tables.h: Autogenerated tables that contain culture
2514         info data. This file was generated with the locale-builder tool.
2515         * appdomain.c: Incement corlib version number.
2516         
2517 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
2518
2519         * appdomain.c: (mono_runtime_init) move mono_thread_init
2520         to before mono_object_new calls so critical sections
2521         are initialized before use.
2522
2523 2004-04-07  Martin Baulig  <martin@ximian.com>
2524
2525         * icall.c
2526         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
2527         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
2528         (ves_icall_MonoGenericParam_initialize): Removed.
2529         (monogenericparam_icalls): Removed.
2530         (generictypeparambuilder_icalls): Added new table for
2531         System.Reflection.Emit.GenericTypeParameterBuilder.
2532
2533         * reflection.c
2534         (mono_reflection_define_generic_parameter): Removed.
2535         (mono_reflection_initialize_generic_parameter): This is now called
2536         from GenericTypeParameterBuilder's .ctor.
2537
2538 2004-04-06  Martin Baulig  <martin@ximian.com>
2539
2540         * class.c (mono_class_init): Don't inflate nested classes in a
2541         generic instance.
2542         (mono_type_get_name_recurse): Include the generic arguments for
2543         generic instances and generic type declarations.
2544         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
2545         (_mono_class_get_instantiation_name): Removed.
2546         (mono_class_create_generic): Always use `gklass->name' as our name.
2547
2548         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
2549
2550         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
2551         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
2552         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
2553         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
2554         closed generic methods here.
2555
2556         * reflection.c
2557         (mono_reflection_generic_inst_get_nested_types): Removed.
2558         (inflate_mono_method): Copy the generic parameters from the
2559         MonoMethodHeader into out MonoGenericMethod.
2560
2561 2004-04-06  Martin Baulig  <martin@ximian.com>
2562
2563         * row-indexes.h
2564         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
2565
2566         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
2567
2568         * reflection.c (build_compressed_metadata): If we have any entries
2569         in the GenericParam, MethodSpec or GenericParamConstraint tables,
2570         set the header version to 1.1.
2571
2572 2004-04-06  Martin Baulig  <martin@ximian.com>
2573
2574         * class.c (mono_class_init): If we're a generic instance,
2575         initialize our nested classes, too.
2576         (_mono_class_get_instantiation_name): Deal with the new `!%d'
2577         suffix. 
2578
2579 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2580
2581         * process.c: quote the argument passed to the shell on windows.
2582
2583 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2584
2585         * threads.c (mono_alloc_special_static_data): Allow this to be
2586         called during startup.
2587
2588 2004-04-02  Martin Baulig  <martin@ximian.com>
2589
2590         * icall.c
2591         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
2592
2593 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2594
2595         * icall.c: Fix build.
2596
2597 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2598
2599         * Makefile.am: Added security.c|h.
2600         * icall.c: Added icall for get_UserName;
2601         * security.c: New file for security related icalls. Added function
2602         get_UserName for System.Environment (fix #56144).
2603         * security.h: New. Header file for security.c
2604
2605 2004-04-02  Dick Porter  <dick@ximian.com>
2606
2607         * icall.c: Deleted the icalls that were obsoleted some time ago
2608         by the ICU string code, and which were mixed into the icall
2609         rearranging.  Fixes bug 55969.
2610
2611         * string-icalls.h: 
2612         * string-icalls.c: Deleted the code that those icalls reference.
2613
2614 2004-04-01  Martin Baulig  <martin@ximian.com>
2615
2616         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
2617
2618         * class.c (mono_class_from_generic_parameter): Don't set 
2619         TYPE_ATTRIBUTE_INTERFACE.
2620         (my_mono_class_from_generic_parameter): Likewise.
2621
2622 2004-04-01  Martin Baulig  <martin@ximian.com>
2623
2624         * loader.c (find_method): Added an optional `MonoClass *ic'
2625         argument to search in a specific interface.
2626         (mono_get_method_constrained): New public function.
2627
2628 2004-04-01  Martin Baulig  <martin@ximian.com>
2629
2630         * reflection.c (mono_image_get_generic_field_token): Use the
2631         `handleref' cache here.
2632
2633 2004-04-01  Martin Baulig  <martin@ximian.com>
2634
2635         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
2636
2637         * reflection.c (create_generic_typespec): Use the `typespec' hash
2638         here, not the `typeref' one.    
2639
2640 2004-04-01  Martin Baulig  <martin@ximian.com>
2641
2642         * class.c (mono_class_inflate_generic_type): Moved the
2643         functionality into a new static inflate_generic_type() which
2644         returns NULL if it didn't do anything.  Only increment the
2645         `mono_stats.inflated_type_count' if we actually inflated
2646         something.
2647         (mono_class_get_full): Check the classes type to see whether we
2648         need to inflate it; also inflate MONO_TYPE_(M)VAR.
2649
2650 2004-04-01  Jackson Harper  <jackson@ximian.com>
2651
2652         * reflection.c: Set culture for assembly references.
2653         
2654 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2655
2656         * reflection.[ch], icall.[ch], Fix support for pinning variables.
2657
2658 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2659
2660         * assembly.c:
2661         (do_mono_assembly_open): the critical section also covers
2662         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
2663
2664 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2665
2666         * threads.c:
2667         (mono_manage_threads): abort the background threads when finishing.
2668         Fixes bug #47232.
2669
2670 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2671
2672         * gc.c: only close the done_event handle if there was no timeout.
2673         C-ified comments.
2674
2675 2004-03-30  Martin Baulig  <martin@ximian.com>
2676
2677         * icall.c (icall_entries): It's called "System.Activator", not
2678         "System.Activation".    
2679
2680 2004-03-30  Martin Baulig  <martin@ximian.com>
2681
2682         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
2683         (mono_class_create_from_typespec): Likewise.
2684
2685 2004-03-30  Martin Baulig  <martin@ximian.com>
2686
2687         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
2688         `has_ctor_constraint' and `initialized'.
2689
2690 2004-03-30  Martin Baulig  <martin@ximian.com>
2691
2692         * reflection.c (encode_new_constraint): New static function to add
2693         the constructor constraint attribute to a type parameter.
2694         (encode_constraints): Call encode_new_constraint() if necessary.
2695
2696         * reflection.h
2697         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
2698
2699         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
2700         
2701 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2702
2703         * reflection.c, icall.c: add support for pinning variables. 
2704
2705 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
2706
2707         * marshal.c (mono_marshal_get_managed_wrapper):
2708         init bool local with zero rather than null.
2709
2710 2004-03-29  Martin Baulig  <martin@ximian.com>
2711
2712         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
2713         the "official" behavior here.
2714         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
2715
2716 2004-03-29  Martin Baulig  <martin@ximian.com>
2717
2718         * icall.c: Reflect latest API changes.
2719
2720 2004-03-29  Martin Baulig  <martin@ximian.com>
2721
2722         * loader.c (mono_get_method_from_token): Also call
2723         mono_metadata_load_generic_params () for abstract and interface
2724         methods; replace the type arguments in the method signature with
2725         the ones which are loaded from the metadata.
2726
2727 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
2728
2729         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
2730         of the lock is not the current thread. MS.NET don't do it, in spite of
2731         what the documentation says. See bug #56157.
2732
2733 2004-03-28  Martin Baulig  <martin@ximian.com>
2734
2735         * class.c (mono_class_init): Don't call init_properties() and
2736         init_events() for generic instances; set `prop->parent' when
2737         inflating properties.
2738
2739         * reflection.c (mono_generic_inst_get_object): Call
2740         `mono_class_init (ginst->klass)'.
2741         (mono_type_get_object): Only create a MonoGenericInst if your
2742         generic type is a TypeBuilder.
2743         (do_mono_reflection_bind_generic_parameters): Only set
2744         `ginst->is_dynamic' if our generic type is a TypeBuilder.
2745
2746 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2747
2748         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
2749         Fixes #56091.
2750
2751 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2752
2753         * icall.c: added Kill_internal icall.
2754         * process.[ch]: added Kill_internal icall.
2755
2756 2004-03-25  Martin Baulig  <martin@ximian.com>
2757
2758         * class.h (MonoStats): Added `generic_instance_count',
2759         `inflated_method_count', `inflated_type_count' and
2760         `generics_metadata_size'.       
2761
2762 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2763
2764         * reflection.c: no warnings now.
2765
2766 2004-03-25  Martin Baulig  <martin@ximian.com>
2767
2768         * class.c (mono_class_get_full): New public function; does a
2769         mono_class_get(), but also takes a `MonoGenericContext *'.
2770
2771         * loader.c (mono_field_from_memberref): Renamed to
2772         `field_from_memberref', made static and added `MonoGenericContext *'
2773         argument.
2774         (mono_field_from_token): Added `MonoGenericInst *' argument.
2775         (method_from_memberef): Likewise.
2776         (mono_get_method_from_token): Likewise.
2777         (mono_get_method_full): New public function; does a
2778         mono_get_method(), but also takes a `MonoGenericContext *'.
2779
2780         * verify.c (mono_method_verify): Get the method's generic context
2781         and pass it to mono_field_from_token(), mono_get_method_full() and
2782         mono_class_get_full().
2783
2784 2004-03-25  Martin Baulig  <martin@ximian.com>
2785
2786         * class.c (mono_class_inflate_generic_type): Take a
2787         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
2788         `MonoGenericMethod *'.
2789
2790 2004-03-25  Martin Baulig  <martin@ximian.com>
2791
2792         * loader.h (MonoMethodInflated): Store the MonoGenericContext
2793         instead of the MonoGenericMethod here.
2794
2795 2004-03-25  Martin Baulig  <martin@ximian.com>
2796
2797         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
2798         each time we create a new MonoGenericInst, we also create a new
2799         context which points back to us.
2800
2801         * class.c (inflate_method): Use `ginst->context' instead of
2802         creating a new context.
2803
2804         * loader.c (method_from_memberref): Use
2805         `klass->generic_inst->context' instead of creating a new context.
2806
2807 2004-03-25  Martin Baulig  <martin@ximian.com>
2808
2809         * class.h (MonoGenericContext): New struct.
2810         (MonoGenericMethod): Removed `generic_inst'.
2811
2812         * class.c (mono_class_inflate_generic_method): Take a
2813         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
2814
2815 2004-03-25  Martin Baulig  <martin@ximian.com>
2816
2817         * loader.h (MonoMethodInflated): New typedef.
2818
2819         * metadata.h (MonoMethodSignature): Removed `gen_method', make
2820         `generic_param_count' consume just 30 bits, added `is_inflated'
2821         and `has_type_parameters' flags (one bit each).
2822
2823         * class.c (mono_class_inflate_generic_method): Create a
2824         MonoMethodInflated instead of a MonoMethodNormal and set
2825         `is_inflated' in the method signature.
2826
2827         * class.h (MonoGenericMethod): Removed `generic_method'.
2828
2829 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2830
2831         * image.c: Make sure the name of a MonoImage is always an absolute path.
2832           This fixes bug #54415.
2833
2834 2004-03-24  Martin Baulig  <martin@ximian.com>
2835
2836         * class.c (mono_class_setup_vtable): If we're a generic instance,
2837         use our generic type's vtable size.
2838
2839 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2840
2841         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
2842         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
2843         problems.
2844
2845 2004-03-23  Martin Baulig  <martin@ximian.com>
2846
2847         * class.h (MonoDynamicGenericInst): Added `int count_events' and
2848         `MonoEvent *events'.
2849
2850         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
2851         (typebuilder_icalls): Added "get_event_info"; calls
2852         mono_reflection_event_builder_get_event_info(). 
2853
2854         * reflection.c (mono_reflection_generic_inst_initialize): Added
2855         `MonoArray *events'.
2856         (mono_reflection_event_builder_get_event_info): New function.
2857
2858 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
2859
2860         * object.h: add mono_type_initialization_init
2861
2862         * object.c (mono_runtime_class_init): 
2863         implement class constructor synchronization rules
2864         to cope with threading issues.  
2865         add mono_type_initialization_init
2866
2867         * appdomain.c (mono_runtime_init): call 
2868         mono_type_initialization_init
2869
2870         * class.h: removing initializing field from MonoVTable
2871
2872 2004-03-23  Martin Baulig  <martin@ximian.com>
2873
2874         * class.c (my_mono_class_from_generic_parameter): Use
2875         `param->name' if it's not NULL. 
2876
2877 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
2878
2879         * class.c: do not insert non-virtual methods in the vtable.
2880         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
2881         that means the method is non-virtual. This never would have
2882         happened before.
2883
2884 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
2885
2886         * profiler.c: Added lock for accessing coverage_hash.
2887
2888 2004-03-22  Martin Baulig  <martin@ximian.com>
2889
2890         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
2891         `method->method->signature->generic_param_count != 0' to make it
2892         work for interface methods.
2893
2894 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2895
2896         * process.c: quote the string passed to the shell using g_shell_quote.
2897
2898 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2899
2900         * threads.c:
2901         (mono_threads_manage): don't remove the finalizer thread and self
2902         from the threads hash table so that mono_thread_manage can be called
2903         more than once.
2904
2905 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2906
2907         * process.c: quote the arguments when UseShellExecute is true. Fixes
2908         bug #55790.
2909
2910 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2911
2912         * threads.c: set mono_thread_detach as a cleanup routine for every
2913         thread. This way it's always executed upon thread termination, either
2914         aborted or finished normally. No more xsp hangs!
2915
2916 2004-03-17  Martin Baulig  <martin@ximian.com>
2917
2918         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
2919         `int count_nested' and a `MonoType **nested'.
2920
2921         * reflection.c (mono_reflection_bind_generic_parameters): Moved
2922         most of the functionality into a new static
2923         do_mono_reflection_bind_generic_parameters() and don't take a
2924         `MonoType *nested_in' argument any more.  Don't compute nested
2925         types here.
2926         (mono_reflection_generic_inst_get_nested_types): New public method
2927         to get nested types.
2928
2929         * class.c (mono_class_create_generic): Set `klass->nested_in' if
2930         we're a nested class.
2931
2932         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
2933         mono_reflection_generic_inst_get_nested_types() to compute the
2934         nested types.
2935
2936 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2937
2938         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
2939         descriptive error message under windows.
2940         
2941 2004-03-17  Martin Baulig  <martin@ximian.com>
2942
2943         * class.c (dup_type): Added `const MonoType *original' argument;
2944         copy the attrs from the original type.
2945
2946 2004-03-17  Martin Baulig  <martin@ximian.com>
2947
2948         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
2949         `m->generic_inst_cache' here.
2950
2951 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2952
2953         * exception.h exception.c: Add stack_overflow_exception.
2954
2955 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2956
2957         * threadpool.c:
2958         (overlapped_callback): call SetEvent *after* invoking the callback.
2959         No need to call CloseHandle.
2960
2961 2004-03-16  Martin Baulig  <martin@ximian.com>
2962
2963         * reflection.c (mono_image_get_fieldref_token): Take a
2964         `MonoReflectionField *' instead of a `MonoClassField *' and a
2965         `MonoClass *'; store the `MonoReflectionField *' in the hash.
2966
2967 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2968
2969         * appdomain.c: don't add the culture to the filename we're looking for
2970         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
2971
2972 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2973
2974         * locales.c: don't ignore symbols when doing case insensitive compares.
2975         Thanks Dick! Fixes bug #54046.
2976
2977         * threads.c: surround 'threads' usage with enter/leave in
2978         mono_thread_manage.
2979
2980 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
2981
2982         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
2983         implicitly marshalled as [Out]. Fixes #55450.
2984
2985         (mono_marshal_get_runtime_invoke): Zero out the result if there is
2986         an exception.
2987
2988 2004-03-16  Martin Baulig  <martin@ximian.com>
2989
2990         * class.c (mono_class_from_generic_parameter): Use the actual
2991         parameter name. 
2992
2993 2004-03-16  Martin Baulig  <martin@ximian.com>
2994
2995         * reflection.c (type_get_signature_size): New static function.
2996         Compues the size of the type in a method signature.
2997         (method_get_signature_size): New static function; calls
2998         type_get_signature_size() to compute the actual size of the
2999         method's signature.
3000         (method_encode_signature): Use method_get_signature_size() to get
3001         the signature's size rather than using `nparams * 10'.
3002
3003 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3004
3005         * file-io.h: define here WapiOverlapped on windows. I don't want the
3006         regular OVERLAPPED one.
3007
3008         * file-io.c:
3009         * threadpool.c: somehow, BindIoCompletionCallback is not found.
3010         Disabling AIO on windows.
3011
3012 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3013
3014         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
3015         bug #55385.
3016
3017 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3018
3019         * appdomain.c: upgraded corlib version.
3020
3021         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
3022         and BeginWrite. Allow opening files for asynchrnous operations.
3023
3024         * file-io.h: new struct that maps FileStreamAsyncResult.
3025         * icall.c: added new icalls.
3026         * process.[ch]: support setting child process environment variables
3027         and use the SHELL or COMSPEC when UseShellExecute is true.
3028
3029         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
3030         callback for async. IO is here and also BindHandle.
3031
3032         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
3033         from here.
3034
3035 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
3036
3037         * reflection.c (create_custom_attr): Allow len == 0.
3038
3039         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
3040         computation on big-endian machines.
3041
3042 2004-03-13  Martin Baulig  <martin@ximian.com>
3043
3044         * class.h (MonoGenericInst): Added `int count_ifaces'.
3045
3046         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
3047         `ginst->count_ifaces' instead `klass->interface_count' since we
3048         may get called before the vtable is created.
3049
3050         * loader.c (mono_method_get_param_names): If we're a generic
3051         instance, return and don't initialize the class.
3052
3053         * reflection.c (mono_reflection_setup_generic_class): Don't call
3054         ensure_runtime_vtable().
3055         (mono_reflection_bind_generic_parameters): Set
3056         `ginst->count_ifaces'.
3057
3058 2004-03-11  Jackson Harper <jackson@ximian.com>
3059
3060         * icall.c:
3061         * unicode.c:
3062         * unicode.h: Remove unused System.Char icalls.
3063         
3064 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
3065
3066         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
3067         code when we P/Invoke the first library in Windows.Forms, instead
3068         of when we first open the assembly.
3069
3070         * assembly.c: Drop the lookup from here.
3071
3072 2004-03-10  Martin Baulig  <martin@ximian.com>
3073
3074         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
3075         class for properties, fields and events.  Finally fixes #54945.
3076
3077 2004-03-10  Martin Baulig  <martin@ximian.com>
3078
3079         * metadata.c (mono_metadata_class_equal): New static function;
3080         checks whether two generic instances or two generic parameters are
3081         equal.
3082         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
3083         compare classes.        
3084
3085 2004-03-10  Martin Baulig  <martin@ximian.com>
3086
3087         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
3088
3089         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
3090         argument and write it into the `reflection_info' field.
3091
3092         * icall.c
3093         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
3094         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
3095
3096 2004-03-09  Jackson Harper  <jackson@ximian.com>
3097
3098         * char-conversions.h: use 8 bits for numeric data its all we need
3099         * icall.c: numeric data is only 8 bits now.
3100
3101 2004-03-09  Martin Baulig  <martin@ximian.com>
3102
3103         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
3104
3105         * class.c (init_properties, init_events): Initialize the new
3106         `parent' field.
3107
3108         * reflection.c (typebuilder_setup_properties): Likewise.
3109         (typebuilder_setup_events): Likewise.
3110
3111         * reflection.h (MonoEventInfo): Replaced `parent with
3112         `declaring_type' and `reflected_type'.
3113
3114         * icall.c (ves_icall_get_property_info): Distinguish between
3115         declaring and reflected type.
3116         (ves_icall_get_event_info): Likewise.
3117
3118 2004-03-09  Martin Baulig  <martin@ximian.com>
3119
3120         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
3121         (ves_icall_Type_GetField): Correctly set field->klass.
3122
3123 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
3124
3125         * loader.h: Fix warning.
3126
3127 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
3128
3129         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
3130         library routine if present.  Notice that it will still continue
3131         executing even if its missing, for those working on the Gtk#
3132         edition of Windows.Forms.
3133
3134         * assembly.c (do_mono_assembly_open): If loading the
3135         System.Windows.Forms call mono_loader_wini_init.
3136
3137 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
3138
3139         * class.h: Added MonoRemoteClass struct.
3140         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
3141         function for MonoStrings.
3142         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
3143         Added internal call for getting the proxy type.
3144         * marshal.c: Get the type of transparent proxies from its remote_class.
3145         Added methods that generate the IL for type checks and casts:
3146         mono_marshal_get_isinst, mono_marshal_get_castclass, 
3147         mono_marshal_get_proxy_cancast.
3148         * marshal.h: Declaration of the previous new methods.
3149         * object.c: Added new moethods for creating and updating MonoRemoteClass
3150         instances: mono_remote_class, mono_upgrade_remote_class, 
3151         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
3152         * verify.c: FIx transparent_proxy_fields layout.
3153         * appdomain.c: Bump corlib version.
3154
3155 2004-03-04  Jackson Harper  <jackson@ximian.com>
3156
3157         * icall.c: Add icall to access char conversion tables.
3158         * char-conversions.h: Character conversion tables.
3159         * Makefile.am: Add char-conversions.h private header file.
3160         
3161 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
3162
3163         * appdomain.c (unload_thread_main): Increase unloading timeout to
3164         10 sec as a temporary workaround for Nant problems.
3165
3166 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
3167
3168         * gc.c: Add checks for GC_enable and GC_disable.
3169
3170         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
3171         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
3172         (bug #54988).
3173         
3174 2004-02-27  Martin Baulig  <martin@ximian.com>
3175
3176         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3177         `MonoReflectionType *' instead of a `MonoType *'.
3178
3179 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
3180
3181         * gc.c (run_finalize): Avoid finalizing the object representing the
3182         finalizer thread.
3183         (finalizer_thread): Fix warning.
3184
3185 2004-02-25  Martin Baulig  <martin@ximian.com>
3186
3187         * class.c (_mono_class_get_instantiation_name): Added `int offset'
3188         argument for nested types.
3189         (mono_class_create_generic): Added support for nested generictypes.
3190
3191         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
3192         `GList *nested'.
3193
3194         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
3195
3196         * reflection.c (method_encode_signature): Increase the minimum
3197         value of `size' from 10 to 11.
3198         (mono_reflection_bind_generic_parameters): Take `int type_argc'
3199         and `MonoType **types' arguments instead of the `MonoArray
3200         *types'; added `MonoType *nested_in'.  Recursively instantiate
3201         nested classes. 
3202
3203 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
3204
3205         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
3206         stack_overflow_ex members which are used by exception handling.
3207
3208         * appdomain.c (mono_runtime_init): Initialize the new members.
3209
3210         * gc.c (mono_gc_enable): New helper function.
3211         * gc.c (mono_gc_disable): New helper function.
3212
3213 2004-02-23  Martin Baulig  <martin@ximian.com>
3214
3215         * icall.c: I must have been really stupid - make it actually work
3216         this time ;-)
3217
3218 2004-02-23  Martin Baulig  <martin@ximian.com>
3219
3220         * loader.c (method_from_memberref): Only inflate the method if
3221         it's in another klass.
3222
3223 2004-02-23  Martin Baulig  <martin@ximian.com>
3224
3225         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
3226         (mono_class_init): If we're a generic instance and an interface,
3227         compute `class->interface_id'; also create `class->interfaces'
3228         here and inflate them.
3229
3230         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
3231         `ginst->is_open'.
3232         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
3233
3234         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
3235
3236 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
3237
3238         * reflection.c (method_encode_code): Improved the error message
3239         generated by the exception.
3240
3241 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3242
3243         * icall.c: Martin did not do what he said in the ChangeLog for
3244         2004-02-18, but put back the changes for properties and events.
3245         Commenting those changes out again and adding comment to bug #54518.
3246         
3247         * process.c: removed warning.
3248
3249 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
3250
3251         * marshal.c (emit_struct_conv): Print an error message instead of
3252         asserting when a type does not have the StructLayout attribute.
3253
3254 2004-02-20  Martin Baulig  <martin@ximian.com>
3255
3256         * reflection.c (mono_type_get_object): Also use the cache for
3257         generic instances.
3258         (mono_reflection_bind_generic_parameters): Always compute
3259         `ginst->ifaces'.        
3260
3261 2004-02-20  Martin Baulig  <martin@ximian.com>
3262
3263         * class.h (MonoGenericMethod): Removed `klass'.
3264
3265         * class.c (mono_class_inflate_generic_method): Added `MonoClass
3266         *klass' argument.
3267
3268 2004-02-20  Martin Baulig  <martin@ximian.com>
3269
3270         * reflection.c (method_encode_methodspec): Actually use the
3271         uninflated signature for the memberref.
3272
3273 2004-02-20  Martin Baulig  <martin@ximian.com>
3274
3275         * class.h (MonoGenericMethod): Removed `declaring'.
3276
3277         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
3278         is NULL, compute it here.
3279
3280 2004-02-20  Martin Baulig  <martin@ximian.com>
3281
3282         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
3283
3284         * metadata.c (mono_metadata_generic_inst_hash): New method.
3285         (mono_metadata_generic_inst_equal): New method.
3286
3287         * reflection.c (mono_reflection_bind_generic_parameters): Use the
3288         `klass->image->generic_inst_cache' cache to avoid creating
3289         duplicate MonoGenericInst's.
3290
3291         * class.c (mono_class_inflate_generic_type): Use the cache.
3292
3293 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3294
3295         * object.c: fixed gc descriptor calculation for embedded valuetypes.
3296
3297 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3298
3299         * icall.c: added Socket.WSAIoctl icall.
3300
3301         * socket-io.[ch]: implemented
3302         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
3303
3304 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
3305
3306         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
3307
3308 2004-02-18  Urs C Muff  <umuff@quark.com>
3309
3310         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
3311         this work on PPC and other big-endian architectures.
3312
3313         * debug-mono-symfile.h: Prepended the names of all the `guint32'
3314         fields with an underscore to make sure they're only accessed by
3315         the read32() macro.
3316
3317 2004-02-18  Martin Baulig  <martin@ximian.com>
3318
3319         * icall.c: Put the klass->refclass changes back for methods and
3320         fields, but not for properties and events.  We're currently not
3321         distinguishing between DeclaringType and ReflectedType for
3322         properties and events, that's what caused the regressions.
3323
3324 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3325
3326         * object.c:
3327         (mono_async_result_new): the handle can be NULL.
3328
3329         * threadpool.c: Use an event instead of a semaphore, don't initialize
3330         it until needed. This saves quite a few semaphores from being created
3331         when using the threadpool.
3332
3333 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
3334
3335         * object.c (mono_string_is_interned_lookup): Fix interning of long
3336         strings. Fixes #54473.
3337
3338         * domain.c (ldstr_equal): Optimize if the two strings are equal.
3339
3340         * icall.c: Revert the klass->refclass changes since they introduce
3341         regressions (bug #54518).
3342
3343 2004-02-18  Martin Baulig  <martin@ximian.com>
3344
3345         * class.c (mono_class_init): If we're a generic instance and don't
3346         come from a TypeBuilder, inflate our members here.
3347         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
3348         (mono_class_create_generic): New public method.
3349         (mono_class_initialize_generic): Removed.
3350         (get_instantiation_name): Renamed to
3351         _mono_class_get_instantiation_name() and made it public.
3352
3353 2004-02-18  Martin Baulig  <martin@ximian.com>
3354
3355         * class.c (mono_class_inflate_generic_type): Clear the new
3356         instance's `nginst->klass' when inflating a generic instance.
3357         (mono_class_is_subclass_of): Added (basic) support for generic
3358         instances.
3359
3360 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
3361
3362         * appdomain.h, domain.c: use a MonoCodeManager instead of a
3363         MonoMempool to hold compiled native code.
3364
3365 2004-02-17  Martin Baulig  <martin@ximian.com>
3366
3367         * class.h (MonoDynamicGenericInst): Added `count_properties' and
3368         `properties'.
3369
3370         * reflection.c (mono_reflection_generic_inst_initialize): Added
3371         `MonoArray *properties' argument.
3372
3373         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
3374
3375 2004-02-17  Martin Baulig  <martin@ximian.com>
3376
3377         * icall.c (ves_icall_Type_GetFields): Renamed to
3378         ves_icall_Type_GetFields_internal() and added a
3379         `MonoReflectionType *rtype' argument; pass it to
3380         mono_field_get_object() to set the field's "reflected" type.
3381         (ves_icall_Type_GetConstructors): Likewise.
3382         (ves_icall_Type_GetEvents): Likewise.
3383         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
3384         argument; pass it to mono_method_get_object() to set the method's
3385         "reflected" type.       
3386
3387 2004-02-17  Martin Baulig  <martin@ximian.com>
3388
3389         * class.h (MonoDynamicGenericInst): New type.
3390         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
3391
3392         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
3393         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
3394         (ves_icall_MonoGenericInst_GetFields): New interncall.
3395
3396         * class.c (mono_class_from_generic): Don't call
3397         mono_class_initialize_generic() if this is a dynamic instance;
3398         ie. it's being created from a TypeBuilder.
3399         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
3400         `class->byval_arg.type'.
3401
3402         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
3403         to `inflate_method' and made static.
3404         (mono_reflection_inflate_field): Removed.
3405         (mono_reflection_generic_inst_initialize): New public method.
3406
3407         * reflection.h (MonoReflectionGenericInst): Removed `methods',
3408         `ctors' and `fields'; added `initialized'.
3409
3410 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3411
3412         * debug-helpers.c (mono_method_full_name): Fix output for empty
3413         namespaces.
3414
3415 2004-02-12  Martin Baulig  <martin@ximian.com>
3416
3417         * class.h (MonoClassField): Added `MonoType *generic_type'.
3418
3419         * reflection.c (mono_image_get_fieldref_token): Added support for
3420         instantiated generic types.
3421         (field_encode_inflated_field): Removed.
3422         (mono_image_get_inflated_field_token): Removed.
3423         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
3424
3425         * reflection.h (MonoReflectionInflatedField): Removed.
3426
3427 2004-02-12  Martin Baulig  <martin@ximian.com>
3428
3429         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
3430         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
3431
3432         * reflection.c (mono_image_get_methodspec_token): Take a
3433         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
3434         (mono_image_create_token): Check whether we have a
3435         `method->signature->gen_method' and call
3436         mono_image_get_methodspec_token() if appropriate.
3437         (inflated_method_get_object): Removed.
3438         (mono_reflection_bind_generic_method_parameters): Return a
3439         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
3440         (mono_reflection_inflate_method_or_ctor): Likewise.
3441
3442         * reflection.h (MonoReflectionInflatedMethod): Removed.
3443
3444 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
3445
3446         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
3447         for custom valuetype marshalling.
3448
3449         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
3450
3451 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3452
3453         * icall.c: fixed WSAGetLastError_internal name.
3454
3455 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
3456
3457         * threads.c (mono_thread_attach): Allow this to be called multiple
3458         times for a thread.
3459         
3460         * threads.c (build_wait_tids): Do not wait for ourselves.
3461
3462         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
3463         appdomain list is empty.
3464
3465         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
3466         memory returned by mono_string_builder_to_utf16, since it points into
3467         managed memory. Thanks to Bernie Solomon for noticing this.
3468
3469         * icall.c: Add AppDomainSetup icalls.
3470
3471         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
3472
3473         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
3474         types.
3475
3476         * reflection.c (reflection_methodbuilder_to_mono_method): Save
3477         custom attributes to the method_aux struct. Also fix array indexes etc.
3478
3479         * loader.c (mono_method_get_param_names): Make dynamic case work again.
3480         
3481 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
3482
3483         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
3484         (both static and runtime) and reduce startup time.
3485
3486 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3487
3488         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
3489         AsAny marshalling conversion instead of crashing.
3490
3491         * marshal.c: Fix warnings.
3492
3493 2004-02-09  Martin Baulig  <martin@ximian.com>
3494
3495         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
3496
3497         * reflection.h (MonoReflectionInflatedMethod): Removed the
3498         `declaring' field, it's now in the unmanaged MonoGenericMethod.
3499
3500         * reflection.c (method_encode_methodspec): Removed the `method'
3501         argument; we get it from `gmethod->declaring'.
3502         (inflated_method_get_object): Removed the `declaring' argument.
3503
3504 2004-02-09  Martin Baulig  <martin@ximian.com>
3505
3506         * class.h (MonoGenericMethod): New type.
3507         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
3508         `generic_method'.
3509
3510         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
3511         a `MonoGenericMethod *gen_method' one.
3512
3513         * class.c (mono_class_inflate_generic_type): Take an additional
3514         `MonoGenericMethod * argument.  This is only non-NULL if we're
3515         inflating types for a generic method.   
3516         (mono_class_inflate_generic_signature): Renamed to
3517         inflate_generic_signature() and made static; take a
3518         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3519         (inflate_generic_header): Take a `MonoGenericMethod *' argument
3520         instead of a `MonoGenericInst *' one.
3521         (mono_class_inflate_generic_method): Likewise.
3522
3523         * reflection.c (encode_generic_method_sig): Take a
3524         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3525         (method_encode_methodspec): Likewise.
3526         (inflated_method_get_object): Likewise. 
3527
3528         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
3529         field with a `MonoGenericMethod *gmethod' one.  
3530
3531 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
3532
3533         * class.h (mono_class_has_parent): add parens to expansion
3534         so you can ! this.
3535
3536 2004-02-08  Martin Baulig  <martin@ximian.com>
3537
3538         * image.h (MonoImage): Removed `generics_cache'.
3539
3540         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
3541         instead of a `MonoType *' argument; removed the `inflate_methods'
3542         argument.  Don't inflate methods here.
3543
3544         * loader.c (find_method): If it's a generic instance, call
3545         mono_class_init() on the `sclass->generic_inst->generic_type'.
3546
3547         * metadata.c (mono_type_size): Make this work on uninitialized
3548         generic instances; call it on the `ginst->generic_type's class.
3549
3550         * reflection.c (mono_reflection_bind_generic_parameters): Call
3551         mono_class_from_generic() to create the `ginst->klass'.
3552
3553 2004-02-08  Martin Baulig  <martin@ximian.com>
3554
3555         * class.h (MonoClass): Changed type of `generic_inst' from
3556         `MonoType *' to `MonoGenericInst *'.
3557
3558 2004-02-08  Martin Baulig  <martin@ximian.com>
3559
3560         * icall.c (ves_icall_Type_BindGenericParameters): Just call
3561         mono_type_get_object(), this is now creating a `MonoGenericInst'
3562         for MONO_TYPE_GENERICINST.
3563         (ves_icall_MonoGenericInst_GetParentType): Likewise.
3564         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
3565
3566         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
3567         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
3568         (inflated_method_get_object): Added `MonoClass *refclass' argument.
3569         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
3570         and reflected type.
3571
3572         * reflection.h (MonoReflectionInflatedMethod): Removed
3573         `declaring_type' and `reflected_type'.
3574
3575 2004-02-08  Martin Baulig  <martin@ximian.com>
3576
3577         * class.h (MonoGenericInst): Added `MonoType *parent' and
3578         `MonoType **ifaces'.
3579
3580         * reflection.h (MonoReflectionGenericInst): Removed `klass',
3581         `parent' and `interfaces'.
3582
3583         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3584         `MonoType *' argument and return a `MonoType *'.
3585
3586         * icall.c
3587         (ves_icall_MonoGenericInst_GetParentType): New interncall.
3588         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
3589
3590 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3591
3592         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
3593         valuetype marshalling.
3594
3595 2004-02-06  Martin Baulig  <martin@ximian.com>
3596
3597         * class.c
3598         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
3599         (my_mono_class_from_generic_parameter): Likewise.
3600
3601 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3602
3603         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
3604         contents of the symbol files lazily.
3605
3606         * object.h (MonoThread): Add 'name' and 'name_len' fields.
3607
3608         * threads.h threads.c icall.c: New icalls for getting and setting the
3609         threads name.
3610
3611 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
3612
3613         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
3614         Raise an exception when the domain is not found.
3615
3616 2004-02-03  Martin Baulig  <martin@ximian.com>
3617
3618         * reflection.c (mono_image_get_methodspec_token): Use the
3619         uninflated signature; fixes gen-33.
3620
3621 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3622
3623         * gc.c threads.c: Make the finalizer thread a normal managed thread so
3624         the finalizer code can use thread functionality.
3625
3626         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
3627         the finalizer thread.
3628
3629         * threads.c: Make some functions more robust.
3630
3631         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
3632
3633         * metadata.h: Add new marshalling conventions.
3634
3635         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
3636         stringbuilder marshalling. Fixes #53700.
3637
3638         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
3639
3640         * reflection.c (mono_image_get_type_info): Save declarative security
3641         info.
3642
3643         * reflection.c (mono_image_get_field_info): Handle uninitialized 
3644         unmanaged fields as well.
3645
3646         * appdomain.c: Bump corlib version.
3647
3648 2004-02-01  Martin Baulig  <martin@ximian.com>
3649
3650         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
3651         method type arguments.  
3652
3653 2004-01-30  Duncan Mak  <duncan@ximian.com>
3654
3655         * marshal.h: Add prototype for
3656         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
3657         and
3658         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
3659         fix the build.
3660
3661 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
3662
3663         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
3664         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
3665
3666 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3667
3668         * marshal.c (mono_marshal_get_native_wrapper): Add support for
3669         custom marshalling of valuetypes.
3670
3671         * marshal.c: Fix some warnings.
3672
3673 2004-01-29  Martin Baulig  <martin@ximian.com>
3674
3675         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
3676         for generic method parameters.
3677
3678         * reflection.c (method_encode_methodspec): Write the uninflated
3679         signature into the methodspec table.
3680         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
3681         is always the uninflated method.
3682         (reflection_methodbuilder_to_mono_method): Copy the generic
3683         parameters from the MethodBuilder into `header->gen_params'.
3684
3685 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3686
3687         * class.c (mono_class_from_generic_parameter): Fix warning.
3688
3689 2004-01-27  Martin Baulig  <martin@ximian.com>
3690
3691         * class.c (mono_class_from_generic_parameter): Don't create
3692         `klass->methods' here.  
3693
3694 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
3695
3696         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
3697         extension since it does not work with libraries named lib<FOO>.dll.so.
3698
3699 2004-01-25  Martin Baulig  <martin@ximian.com>
3700
3701         * class.c (mono_class_inflate_generic_type): Added support for
3702         MONO_TYPE_GENERICINST.
3703
3704         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
3705         inflate methods on open constructed types.      
3706
3707 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3708
3709         * object.c: fire ProcessExit event in the root AppDomain after running
3710         Main. Fixes bug #53299.
3711
3712 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
3713
3714         * socket-io.c: include the new socket-wrappers.h header.
3715         Use the wrappers instead of the unix socket functions to make the code
3716         more clear.
3717
3718 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3719
3720         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
3721
3722         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3723         Fixes #22532.
3724
3725 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
3726
3727         * reflection.c (mono_image_create_pefile): Handle the case when the
3728         entry point is not a MethodBuilder.
3729
3730         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3731         field to ReflectionMethod since it is not allways a builder.
3732
3733         * reflection.c (type_get_fully_qualified_name): New helper function to
3734         return the fully qualified name of a type.
3735
3736         * reflection.c (encode_marshal_blob): Always emit the fully qualified
3737         type name for custom marshallers.
3738
3739         * reflection.c (mono_marshal_spec_from_builder): Ditto.
3740
3741         * class.c (mono_class_setup_vtable): If a parent class already 
3742         implements an interface, use the implementing methods from that class.
3743         Fixes #53148.
3744
3745 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3746
3747         * threadpool.c: just return instead of ExitThread to allow for thread
3748         clean up earlier.
3749
3750 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
3751
3752         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
3753         when closing resource modules.
3754
3755         * reflection.c (mono_image_create_pefile): Handle the case when the
3756         entry point is not a MethodBuilder.
3757
3758         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3759         field to ReflectionMethod since it is not allways a builder.
3760
3761 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
3762
3763         * marshal.c (mono_marshal_get_managed_wrapper): 
3764         mono_marshal_alloc takes native int so CONV_I
3765         the arg for 64bits.
3766
3767 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
3768
3769         * reflection.c (fixup_cattrs): New function to fixup the methoddef
3770         tokens in the cattr table. Fixes #53108.
3771
3772 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773
3774         * loader.c: don't trim ".dll" before looking up in the config file.
3775         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
3776
3777 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3778
3779         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
3780         Return the module which contains the resource as well.
3781         (ves_icall_System_Reflection_Module_Close): New icall.
3782
3783         * appdomain.c: Bump corlib version number.
3784
3785         * image.c (mono_image_addref): New public function.
3786
3787         * assembly.c: Call mono_image_addref.
3788
3789         * reflection.c (mono_module_get_object): Increase reference count of 
3790         the image.
3791
3792         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3793         Fixes #22532.
3794
3795         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
3796         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
3797         proper exceptions on DllImport problems.
3798
3799 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
3800
3801         * class.c, metadata.c: eliminate CSIZE macro.
3802
3803 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
3804
3805         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
3806         * object.h: Added async_callback field in MonoAsyncResult.
3807         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
3808         * verify.c: Added async_callback in MonoAsyncResult layout.
3809
3810 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
3811
3812         * reflection.c (mono_reflection_get_custom_attrs): Add support
3813         for Modules.
3814
3815 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3816
3817         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
3818         marshalling.
3819         (mono_marshal_method_from_wrapper): Add null pointer check.
3820
3821 2004-01-16  Martin Baulig  <martin@ximian.com>
3822
3823         * debug-mono-symfile.h: Set version number to 36 and reflect
3824         latest symbol writer changes.
3825
3826 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3827
3828         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
3829         multi-dimensional arrays.
3830         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
3831         (mono_class_from_mono_type): Use bounded_array_class_get.
3832         
3833         * class.c (mono_bounded_array_class_get): New function which takes
3834         a 'bounded' bool argument to distinguish vectors from one dimensional
3835         arrays.
3836
3837         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
3838         bounded_array_class_get if the array has bounds.
3839
3840         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3841         Search modules loaded using AssemblyBuilder:AddModule as well.
3842
3843 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3844
3845         * appdomain.c: increased corlib version.
3846         * filewatcher.c: removed g_print.
3847         * icall.c:
3848         (get_property_info): only allocate what is actually requested.
3849         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
3850
3851 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3852
3853         * Makefile.am: added filewatcher.[ch]
3854         * filewatcher.[ch]: FileSystemWatcher runtime support.
3855         * icall.c: added new FSW icalls.
3856
3857 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
3858
3859         * string-icalls.c: fix stringbuilder regression as suggested by
3860         Iain McCoy <iain@mccoy.id.au>.
3861
3862 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3863
3864         * process.c (process_read_stringtable_block): Recognize '007f' as
3865         a language neutral stringtable block.
3866
3867 2004-01-12  Patrik Torstensson
3868
3869         * object.h (MonoStringBuilder) : Changed layout to support our
3870         new stringbuilder class.
3871         * marshal.c: Change marshalling to support the new layout of 
3872         string builder.
3873         * appdomain.c: increased version number because new layout of
3874         string builder.
3875
3876 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
3877
3878         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
3879         assembly name as an string instead of an AssemblyName, since it is
3880         easier to extract info from it.
3881
3882         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
3883         the culture subdirectories too. Fixes #52231.
3884
3885 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3886
3887         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
3888         It takes 2 new parameters with an optional name for the method to look
3889         for and case ignoring info.
3890
3891         * threadpool.c: removed unused variable.
3892
3893 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3894
3895         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
3896         It takes 2 new parameters with an optional name for the property to look
3897         for and case ignoring info.
3898         Fixes bug #52753.
3899
3900 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3901
3902         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
3903         Fix #52451.
3904
3905 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3906
3907         * appdomain.c:
3908         * assembly.c: escape the uri before passing it to g_filename_from_uri.
3909         Fixes bug #52630.
3910
3911 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
3912
3913         * reflection.c: Add support for more than one unmanaged resource.
3914
3915         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
3916         in field->def_value, as done in all other cases.
3917
3918         * reflection.c (mono_reflection_get_custom_attrs): Add support for
3919         TypeBuilders.
3920
3921         * reflection.c (mono_reflection_create_runtime_class): Remove 
3922         errorneous assignment to klass->element_class, since it is already
3923         done in mono_reflection_setup_internal_class.
3924
3925 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3926
3927         * gc.c: added missing LeaveCriticalSection.
3928         * icall.c: indented a couple of lines.
3929         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
3930         if we call EndInvoke inside a callback. Fixes bug #52601.
3931
3932 2004-01-07  Martin Baulig  <martin@ximian.com>
3933
3934         * mono-debug-debugger.h
3935         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
3936
3937 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
3938
3939         * appdomain.c: Use messages in NotImplementedException.
3940
3941         * exception.c (mono_get_exception_not_implemented): Now this takes
3942         a message argument.
3943
3944         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
3945         exception instead of g_asserting an aborting when something is not
3946         implemented.
3947
3948         Add some inline docs.
3949
3950 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
3951
3952         * reflection.h: Update after changes to object layout.
3953
3954         * reflection.c: Implement saving of unmanaged aka win32 resources.
3955
3956         * appdomain.c: Bump version number.
3957
3958         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
3959         Handle missing domains gracefully.
3960
3961 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
3962
3963         * file-io.c : On Windows, there are much more invalid_path_chars.
3964
3965 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
3966
3967         * class.h, object.c: prepare for GetType () speedup.
3968
3969 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
3970
3971         * profiler.c: workaround for --profile null reference exception on
3972           cygwin. Patch by Patrik Torstensson.
3973
3974 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
3975
3976         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
3977         make work for unaligned access.
3978
3979 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
3980
3981         * class.c: small cleanup (class->fields [i] -> field).
3982         * image.c: check address of metadata is valid.
3983
3984 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
3985
3986         * assembly.h assembly.c (mono_assembly_loaded): New public function to
3987         search the list of loaded assemblies.
3988
3989         * reflection.c (mono_reflection_type_from_name): Use 
3990         mono_assembly_loaded instead of mono_image_loaded.
3991
3992         * reflection.c: Fix warnings.
3993
3994 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
3995
3996         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
3997         is dynamic. This is needed since an assembly can contain both dynamic and
3998         non-dynamic images.
3999
4000         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
4001         assembly->dynamic.
4002
4003         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
4004
4005         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
4006         to store modules loaded using AddModule.
4007
4008         * reflection.c (mono_image_fill_file_table): Generalize this so it works
4009         on Modules.
4010
4011         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
4012
4013         * reflection.c (mono_image_fill_export_table_from_module): New function to
4014         fill out the EXPORTEDTYPES table from a module.
4015
4016         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
4017         into a separate function. Also handle loaded non-dynamic modules.
4018
4019         * reflection.c (mono_image_basic_init): Fix memory allocation.
4020
4021         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4022
4023         * assembly.c (mono_assembly_load_references): Make this public.
4024
4025 2003-12-19  Martin Baulig  <martin@ximian.com>
4026
4027         * class.c (mono_class_initialize_generic): Made this static, take
4028         a `MonoGenericInst *' instead of a `MonoClass *'.
4029         (mono_class_from_generic): Call mono_class_initialize_generic()
4030         unless we're already initialized or being called from
4031         do_mono_metadata_parse_generic_inst().
4032
4033         * class.h (MonoGenericInst): Added `initialized' and
4034         `init_pending' flags.
4035
4036         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
4037         `mono_class_init (gklass)' or mono_class_initialize_generic()
4038         here; set `generic_inst->init_pending' while parsing the
4039         `type_argv'.
4040
4041 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
4042
4043         * locales.c: include string.h for memxxx prototypes
4044
4045 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
4046
4047         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
4048         constructor when accessing literal fields.
4049
4050 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
4051
4052         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4053
4054         * reflection.c (assembly_add_resource_manifest): New function to fill
4055         the MANIFESTRESOURCE table.
4056
4057         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
4058
4059         * reflection.h: Update to changes in class layout.
4060
4061         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
4062         Reenable call to mono_runtime_is_shutting_down ().
4063
4064         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
4065         determine if the runtime is shutting down.
4066
4067 2003-12-16  Jackson Harper <jackson@ximian.com>
4068
4069         * icall.c: comment out call to mono_runtime_is_shutting_down to
4070         fix build.
4071         
4072 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
4073
4074         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
4075         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
4076
4077 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
4078
4079         * reflection.c: move definition of swap_with_size
4080         to before its first call
4081
4082 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
4083
4084         * appdomain.c (mono_runtime_is_shutting_down): New public function.
4085
4086         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
4087         icall.
4088
4089         * object.c: Fix warnings.
4090
4091         * icall.c (ves_icall_Type_Get...): Only consider inherited static
4092         members if FlattenHierarchy is set.
4093
4094         * reflection.c (mono_image_add_decl_security): New function to emit
4095         declarative security.
4096
4097         * reflection.h reflection.c: Add support for declarative security.
4098
4099         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4100         
4101 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
4102
4103         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
4104         
4105         * appdomain.c verify.c: Moved corlib version checking into its own
4106         function in appdomain.c since it needs to create vtables etc.
4107
4108 2003-12-13  Patrik Torstensson <p@rxc.se>
4109
4110         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
4111         instead of unwrapped server.
4112
4113 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
4114
4115         * verify.c (check_corlib): Fix field index.
4116
4117 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
4118
4119         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
4120         GetGacPath icall.
4121
4122 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
4123
4124         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
4125         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
4126         cope with sizeof(size_t) != sizeof(guint32).
4127
4128 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4129
4130         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
4131         in case of failure.
4132
4133 2003-12-10  Mark Crichton <crichton@gimp.org>
4134
4135         * icall.c: removed the GetNonZeroBytes.  We now handle this case
4136         in managed code.
4137
4138         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
4139
4140 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
4141
4142         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
4143         marked as deleted.
4144
4145 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
4146
4147         * verify.c (check_corlib): Handle the case when the version field is 
4148         initialized by a static constructor.
4149
4150 2003-12-08  Patrik Torstensson  <p@rxc.se>
4151
4152     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
4153
4154 2003-12-08  Martin Baulig  <martin@ximian.com>
4155
4156         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
4157         a MonoReflectionGenericParameter, also take the parameter index
4158         and name as arguments.
4159         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
4160         (ves_icall_MonoGenericParam_initialize): New interncall.
4161         (ves_icall_Type_make_byref_type): New interncall.
4162
4163         * reflection.h (MonoReflectionGenericParam): Derive from
4164         MonoReflectionType, not just from MonoObject.  Added `refobj' and
4165         `index' fields.
4166
4167         * reflection.c (mono_reflection_define_generic_parameter): Create
4168         and return a new MonoReflectionGenericParam; don't initialize the
4169         constraints here.
4170         (mono_reflection_initialize_generic_parameter): New public method;
4171         initializes the constraints and creates the `param->pklass'.
4172
4173 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
4174
4175         * reflection.h reflection.c: Use the new fields 'num_types', 
4176         'num_fields' and 'num_methods' to track the number of types etc.
4177
4178         * verify.c (check_corlib): Check corlib version number.
4179
4180 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
4181
4182         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
4183         function works on all methods.
4184
4185 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
4186
4187         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
4188         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
4189         the custom_type_info flag of the transparent proxy.
4190         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
4191         objects that supports IRemotingTypeInfo.
4192         * object.h: Added custom_type_info field in transparent proxy.
4193
4194 2003-12-06  Martin Baulig  <martin@ximian.com>
4195
4196         * class.c (mono_class_create_from_generic): Removed.
4197         (mono_class_from_generic): Check `ginst->klass' before doing
4198         anything else.  This is important to fully support "recursive"
4199         generic types.
4200
4201         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
4202         empty `generic_inst->klass' before doing anything else.
4203
4204 2003-12-06  Dick Porter  <dick@ximian.com>
4205
4206         * verify.c: 
4207         * object.h:
4208         * icall.c:
4209         * locales.c: Use C structs to access class fields.  Don't do a
4210         conversion between MonoString and UChar because both are
4211         platform-endian UTF-16.  Compare now takes startindex and count
4212         parameters.  Add a char overload for IndexOf.  Speed up the
4213         invariant string IndexOf.
4214
4215 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
4216
4217         * Makefile.am (monosn_LDADD): Fix parallel build.
4218
4219 2003-12-04  Martin Baulig  <martin@ximian.com>
4220
4221         * icall.c
4222         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4223         (ves_icall_Type_make_array_type): New interncall.       
4224
4225 2003-12-04  Martin Baulig  <martin@ximian.com>
4226
4227         * locales.c: also change it in the !HAVE_ICU case.
4228
4229 2003-12-04  Dick Porter  <dick@ximian.com>
4230
4231         * icall.c:
4232         * locales.c: construct_compareinfo is now in CompareInfo, not
4233         CultureInfo.
4234
4235 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
4236
4237         * image.c (mono_image_load_file_for_image): Cache loaded images in the
4238         image->files array.
4239
4240         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
4241         table as well.
4242
4243         * assembly.c (mono_assembly_load_references): Only load references
4244         once.
4245
4246         * class.c (mono_class_from_name): Avoid linear search of the 
4247         EXPORTEDTYPE table.
4248
4249         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
4250
4251 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
4252
4253         * image.h (MonoImage): Add 'field_cache' field.
4254
4255         * loader.c (mono_field_from_token): Cache field lookups.
4256         
4257         * reflection.c (mono_module_get_object): Fix name property.
4258
4259         * icall.c (ves_icall_get_enum_info): Update after changes to 
4260         mono_metadata_get_constant_index ().
4261
4262         * icall.c: Get rid of get_type_info icall, use a separate icall for
4263         each type property to avoid needless memory allocations. Fixes #51514.
4264
4265         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
4266         to avoid needless binary searches.
4267
4268         * class.c (class_compute_field_layout): Move the initialization of
4269         field->def_value to mono_class_vtable ().
4270
4271         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
4272         non-corlib types.
4273
4274         * object.c (mono_object_allocate): Make it inline.
4275
4276         * object.c (mono_object_allocate_spec): Make it inline.
4277         
4278 2003-12-02  Dick Porter  <dick@ximian.com>
4279
4280         * locales.c (create_NumberFormat): NumberFormatInfo construction.
4281         Patch by Mohammad DAMT (mdamt@cdl2000.com).
4282
4283 2003-12-01  Dick Porter  <dick@ximian.com>
4284
4285         * threads.c: Fix signature and call in CreateMutex and
4286         CreateEvent.
4287
4288 2003-12-01  Dick Porter  <dick@ximian.com>
4289
4290         * icall.c: 
4291         * locales.c: Implement string compares and searching
4292
4293         * object.h: Add extra Thread field
4294
4295 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
4296
4297         * reflection.c (fixup_method): Add support for MonoCMethod.
4298
4299 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
4300
4301         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
4302
4303         * reflection.c (assembly_name_to_aname): Allow extra characters in
4304         assembly names. Fixes #51468.
4305
4306 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
4307
4308         * exception.c (mono_exception_from_name_domain): New helper function.
4309
4310         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
4311         exception object in the correct domain.
4312
4313         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
4314         formatting + make a copy a the input data.
4315
4316         * loader.c (mono_get_method_from_token): Methods which contain
4317         native code do not have entries in the ImplMap.
4318
4319         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
4320         Thanks to Gonzalo for spotting this.
4321         
4322         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
4323         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
4324
4325         * assembly.h (mono_assembly_load_from): Split the second part of 
4326         assembly loading into a new public function.
4327
4328         * exception.h (mono_get_exception_bad_image_format): New function.
4329
4330 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
4331
4332         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4333         Enumerate all modules inside a dynamic assembly. Fixes #51293.
4334         
4335         * icall.c: Add new icall for creating dynamic methods.
4336
4337         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
4338
4339         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
4340
4341         * reflection.c (mono_reflection_create_dynamic_method): New icall to
4342         create a dynamic method.
4343
4344         * reflection.c (resolve_object): New helper function.
4345
4346         * reflection.c: Generalize ReflectionMethodBuilder and the functions
4347         which manipulate it so they can also work on dynamic methods.
4348
4349         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
4350         creating the MonoReflectionMethodAux structure if it is not needed.
4351         
4352         * reflection.h verify.c: Update after changes to object layout.
4353
4354         * reflection.c (method_builder_encode_signature): Fix compilation on
4355         gcc 2.95.x.
4356
4357 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
4358
4359         * appdomain.h: Added support for context static fields. Added static_data
4360           field to MonoAppContext and renamed thread_static_fields to a more
4361           generic special_static_fields in MonoAppDomain, since it can now contain
4362           context static fields.
4363         * domain.c: Updated hashtable name.
4364         * object.c: Replaced field_is_thread_static() for a more generic
4365           field_is_special_static() which also checks for context static attribute.
4366           In mono_class_vtable(), added support for static context fields.
4367         * threads.c: Changed methods that manage thread static fields to more
4368           generic methods so they can be reused both for thread and context static
4369           data.
4370         * threads.h: Declared some new methods.
4371
4372 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
4373
4374         * reflection.h: Update after changes to the managed types.
4375
4376         * reflection.c (encode_custom_modifiers): New helper function.
4377
4378         * reflection.c (method_encode_signature): Emit custom modifiers.
4379
4380         * reflection.c (field_encode_signature): Emit custom modifiers.
4381
4382 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
4383
4384         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
4385
4386         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
4387         implementation.
4388
4389         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
4390         icall.
4391
4392         * object.c (mono_field_get_value_object): New function.
4393
4394         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
4395         specific.
4396
4397 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
4398
4399         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
4400         return a preallocated out-of-memory exception instance.
4401
4402         * object.c (out_of_memory): Use the new function.
4403
4404         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
4405         flag is before the custom modifiers. Fixes #49802.
4406
4407 2003-11-16  Martin Baulig  <martin@ximian.com>
4408
4409         * class.c (mono_class_is_open_constructed_type): Implemented the
4410         MONO_TYPE_GENERICINST case.
4411
4412 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
4413
4414         * assembly.c (mono_assembly_fill_assembly_name): New function to
4415         fill out the MonoAssemblyName structure.
4416         (mono_assembly_open): Use the new function.
4417
4418         * icall.c (fill_reflection_assembly_name): New helper function.
4419
4420         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
4421         new function.
4422
4423         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
4424
4425 2003-11-15  Martin Baulig  <martin@ximian.com>
4426
4427         * class.c (mono_class_is_open_constructed_type): New public
4428         function; checks whether a type is an open constructed type,
4429         ie. whether it still contains type parameters.
4430         (mono_class_inflate_generic_type): If we're a type parameter and
4431         the inflated type is also a MONO_TYPE_(M)VAR, return the original
4432         type.
4433
4434         * class.h (MonoGenericInst): Added `guint32 is_open'.
4435
4436         * loader.c (method_from_methodspec): Check whether we're an open
4437         or closed constructed type and set `ginst->is_open'.
4438
4439         * reflection.c (mono_reflection_bind_generic_parameters): Check
4440         whether we're an open or closed constructed type and set
4441         `ginst->is_open'.
4442         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
4443         from open constructed types.
4444
4445 2003-11-15  Martin Baulig  <martin@ximian.com>
4446
4447         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4448         a generic instance (instead of a generic type declaration) with
4449         unbound generic parameters, bind them to our actual types.
4450
4451 2003-11-14  Martin Baulig  <martin@ximian.com>
4452
4453         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
4454
4455         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4456         an interface type, populate `res->interfaces' with instantiated
4457         versions of all the interfaces we inherit.
4458
4459 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
4460
4461         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
4462         when MONO_PATH is set but doesn't contain the install dir.
4463
4464 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4465
4466         * icall.c:
4467         (ves_icall_Type_GetInterfaces): don't return an interface twice when
4468         it's also implemented in base classes. Fixes bug #50927.
4469
4470 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
4471
4472         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
4473         if this method is called from a finalizer. Fixes #50913.
4474
4475 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
4476
4477         * threads.c: Implement VolatileRead/VolatileWrite
4478
4479         * icall.c: Add new icalls for VolatileRead/VolatileWrite
4480
4481 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4482
4483         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
4484         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
4485         2.95.3.
4486
4487         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
4488         from Peter Ross (pro@missioncriticalit.com).
4489         
4490 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
4491
4492         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
4493
4494 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4495
4496         * assembly.c (mono_assembly_load_references): Disable check because it
4497         triggers on older corlibs which lots of people have.
4498
4499 2003-11-12  Jackson Harper  <jackson@ximian.com>
4500
4501         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
4502         load corlib.dll if mscorlib.dll is not found.
4503         * assembly.h: Remove corlib name define.
4504         * class.c:
4505         * domain.c:
4506         * image.c: Change corlib name to mscorlib.
4507         
4508 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4509
4510         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
4511
4512 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
4513
4514         * appdomain.h: Added loader_optimization here to sync with the C#
4515         code, and add disallow_binding_redirects field.
4516
4517 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4518
4519         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
4520
4521         * reflection.c (mono_image_build_metadata): Fix crash on modules
4522         with no types.
4523
4524         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
4525
4526         * icall.c (ves_icall_get_method_info): Return callingConvention as
4527         well.
4528
4529         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
4530         namespaces from the EXPORTEDTYPE table as well.
4531
4532         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
4533         from all modules inside the assembly.
4534         
4535 2003-11-11  Martin Baulig  <martin@ximian.com>
4536
4537         * reflection.c (mono_reflection_bind_generic_parameters): Make
4538         this work for interfaces.
4539
4540 2003-11-11  Martin Baulig  <martin@ximian.com>
4541
4542         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
4543
4544 2003-11-11  Martin Baulig  <martin@ximian.com>
4545
4546         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
4547         "MonoInflatedMethod" and "MonoInflatedCtor".
4548
4549 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4550
4551         * reflection.c (resolution_scope_from_image): Use the assembly table
4552         from the manifest module, since other modules don't have it.
4553
4554         * debug-helpers.c (mono_type_full_name): New helper function.
4555
4556         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
4557
4558         * image.c (mono_image_load_file_for_image): New public function which
4559         is a replacement for the load_file_for_image in class.c.
4560
4561         * assembly.c (mono_assembly_load_module): A wrapper for the function
4562         above which does assembly association and reference loading too.
4563
4564         * class.c (mono_class_from_name): Call mono_assembly_load_module.
4565
4566 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4567
4568         * appdomain.c: not all of the attributes for the full assembly name
4569         are required and the order doesn't matter. Fixes bug #50787.
4570
4571 2003-11-10  Dick Porter  <dick@ximian.com>
4572
4573         * locales.c: Use platform-endian UTF16
4574
4575 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4576
4577         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4578         
4579 2003-11-10  Martin Baulig  <martin@ximian.com>
4580
4581         * metadata.c
4582         (mono_metadata_load_generic_params): Make this actually work.
4583
4584         * reflection.c (mono_reflection_bind_generic_parameters): If our
4585         parent is a generic instance, pass all the `types' to it, no
4586         matter whether it has the same number of type parameters or not.
4587
4588 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4589
4590         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4591
4592         * assembly.c (mono_assembly_load_references): Move the image<->assembly
4593         assignment code to this function so it gets called recursively for all
4594         modules.
4595
4596         * image.c (load_modules): Remove the assembly assignment since it is
4597         now done by mono_assembly_load_references.
4598         
4599         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4600         Add 'module' argument.
4601         (mono_module_get_types): New helper function.
4602         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
4603
4604 2003-11-08  Martin Baulig  <martin@ximian.com>
4605
4606         * class.c (mono_class_inflate_generic_method): Interface method
4607         don't have a header.
4608
4609         * reflection.c (mono_image_get_methodspec_token): Take an
4610         additional `MonoGenericInst *' argument instead of reading it from
4611         the header; this is necessary to support interfaces.
4612         (mono_image_create_token): Pass the `MonoGenericInst *' from the
4613         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
4614         (inflated_method_get_object): Take an additional `MonoGenericInst *'
4615         argument.
4616
4617         * reflection.h (MonoReflectionInflatedMethod): Added
4618         `MonoGenericInst *ginst'.
4619
4620 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
4621
4622         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
4623
4624 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
4625
4626         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
4627
4628 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
4629
4630         * reflection.c 
4631         (reflection_methodbuilder_from_method_builder):
4632         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
4633         initialize a ReflectionMethodBuilder structure.
4634         (mono_image_get_methodbuilder_token):
4635         (mono_image_get_ctorbuilder_token): New functions to emit memberref
4636         tokens which point to types in another module inside the same assembly.
4637
4638         * reflection.c: Use the new helper functions.
4639         
4640         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
4641
4642         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
4643         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
4644
4645         * reflection.c (resolution_scope_from_image): Emit a moduleref if
4646         neccesary.
4647
4648         * reflection.c (mono_image_build_metadata): Emit metadata only for the
4649         current module. Emit the manifest only for the main module.
4650
4651         * reflection.c (mono_image_create_token): Add assertion when a 
4652         memberref needs to be created.
4653
4654         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
4655
4656         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
4657         larger buffer for the custom attribute blob. Fixes #50637.
4658         
4659 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4660
4661         * threadpool.c: notify listener on async processing handles after
4662         invoking the async callback. Thanks to Zoltan.
4663
4664 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4665
4666         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
4667         avoid code duplication.
4668
4669         * reflection.h (MonoDynamicImage): New type which is currently unused,
4670         but will be used through the ref.emit code in place of 
4671         MonoDynamicAssembly.
4672
4673         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4674         object layout.
4675
4676         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
4677         a MonoDynamicImage instead of just a MonoImage.
4678         
4679         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
4680         icalls to ModuleBuilder but keep their semantics, so they will work
4681         with moduleb->assemblyb. This will change later.
4682         
4683 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4684
4685         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4686         object layout.
4687
4688         * reflection.c (mono_image_build_metadata): Avoid creation of a default
4689         main module, since it is now done by the managed code.
4690
4691 2003-11-03  Martin Baulig  <martin@ximian.com>
4692
4693         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
4694         `ginst->klass' here.
4695         (method_encode_methodspec): Don't use the `ginst->generic_method's
4696         klass if it's a generic instance, use `ginst->klass' in this case.
4697
4698 2003-11-03  Martin Baulig  <martin@ximian.com>
4699
4700         * reflection.c (mono_image_get_generic_method_param_info):
4701         Removed, use mono_image_get_generic_param_info() instead.
4702         (mono_image_get_type_info): Write the GenericParam table before
4703         the Method table.  This is neccessary because in the GenericParam
4704         table, type parameters of the class (ie. '!0' etc.) must come
4705         before the ones from its generic methods (ie. '!!0' etc).
4706
4707 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4708
4709         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
4710
4711 2003-11-02  Martin Baulig  <martin@ximian.com>
4712
4713         * reflection.c (create_generic_typespec): Take a
4714         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
4715         the generic parameters from it.
4716
4717 2003-11-02  Martin Baulig  <martin@ximian.com>
4718
4719         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
4720         instead of a `MonoClassField *' since we just need the type.
4721         (create_generic_typespec): New static function.  Creates a
4722         TypeSpec token for a generic type declaration.
4723         (mono_image_get_generic_field_token): New static function.
4724         (mono_image_create_token): If we're a FieldBuilder in a generic
4725         type declaration, call mono_image_get_generic_field_token() to get
4726         the token.
4727
4728 2003-11-02  Martin Baulig  <martin@ximian.com>
4729
4730         * reflection.h
4731         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
4732         `MonoReflectionGenericInst *declaring_type' and
4733         `MonoReflectionGenericInst *reflected_type' fields.
4734
4735         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
4736         `MonoReflectionGenericInst *declaring_type' and a
4737         `MonoReflectionGenericInst *reflected_type' argument instead of a
4738         single `MonoReflectionGenericInst *type' one.  Set
4739         `res->declaring_type' and `res->reflected_type' from them.
4740         (mono_reflection_inflate_field): Likewise.      
4741
4742 2003-11-02  Martin Baulig  <martin@ximian.com>
4743
4744         * class.c (mono_class_setup_vtable): Don't store generic methods
4745         in the vtable.  
4746
4747 2003-11-02  Martin Baulig  <martin@ximian.com>
4748
4749         * reflection.h (MonoReflectionGenericInst): Added
4750         `MonoReflectionType *declaring_type'.
4751
4752         * reflection.c (mono_reflection_bind_generic_parameters): Use
4753         `if (tb->parent)' instead of `klass->parent'.
4754
4755 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
4756
4757         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
4758         with an empty ASSEMBLY table.
4759
4760         * reflection.c (mono_image_build_metadata): Avoid using the same loop
4761         variable in the inner and outer loops.
4762
4763 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
4764
4765         * metadata.h (mono_metadata_make_token): Put parentheses around macro
4766         argument.
4767
4768         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
4769         
4770         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
4771         icalls. Instead, do everything in managed code. This is needed since
4772         it is hard to restore the original domain etc. in unmanaged code in the
4773         presence of undeniable exceptions.
4774
4775         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
4776         New icalls to push and pop appdomain refs.
4777
4778 2003-10-31  Martin Baulig  <martin@ximian.com>
4779
4780         * class.c (inflate_generic_type): Renamed to
4781         mono_class_inflate_generic_type() and made it public.
4782
4783         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
4784         New interncall.
4785
4786         * loader.c (mono_field_from_memberref): Also set the retklass for
4787         typespecs.
4788
4789         * fielder.c (mono_image_get_inflated_field_token): New static
4790         method; creates a metadata token for an inflated field.
4791         (mono_image_create_token, fixup_method): Added support for
4792         "MonoInflatedField".
4793         (fieldbuilder_to_mono_class_field): New static function.
4794         (mono_reflection_inflate_field): New public function.
4795
4796         * reflection.h
4797         (MonoReflectionGenericInst): Added `MonoArray *fields'.
4798         (MonoReflectionInflatedField): New typedef.     
4799
4800 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
4801
4802         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
4803         for Solaris and other platforms without s6_addr16
4804
4805 2003-10-30  Martin Baulig  <martin@ximian.com>
4806
4807         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
4808         argument instead of two.
4809         (mono_class_inflate_generic_signature): Likewise.
4810         (inflate_generic_header): Likewise.
4811         (mono_class_inflate_generic_method): Likewise.  In addition, if
4812         `ginst->klass' is set, it becomes the new `method->klass'.
4813
4814         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
4815         field.
4816
4817         * reflection.c (encode_generic_method_sig): Write a 0xa as the
4818         first byte. [FIXME]
4819         (method_encode_methodspec): If we have generic parameters, create
4820         a MethodSpec instead of a MethodRef.
4821         (fixup_method): Added support for "MonoInflatedMethod" and
4822         "MonoInflatedCtor".
4823         (mono_image_create_token): Added support for "MonoInflatedMethod"
4824         and "MonoInflatedCtor".
4825         (inflated_method_get_object): New static function; returns a
4826         managed "System.Reflection.MonoInflatedMethod" object.
4827         (mono_reflection_bind_generic_method_parameters): Return a
4828         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
4829         (mono_reflection_inflate_method_or_ctor): Likewise.
4830         (mono_image_get_generic_method_param_info): Initialize unused
4831         fields to zero.
4832         (mono_image_get_generic_param_info): Likewise.
4833
4834         * reflection.h (MonoReflectionInflatedMethod): New public
4835         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
4836         "S.R.MonoInflatedCtor" classes.
4837
4838         * loader.c (method_from_memberref): If we're a TypeSpec and it
4839         resolves to a generic instance, inflate the method.
4840
4841 2003-10-28  Dick Porter  <dick@ximian.com>
4842
4843         * object.c (mono_runtime_run_main): Convert command-line arguments
4844         into utf8, falling back to the user's locale encoding to do so.
4845
4846 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
4847
4848         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
4849         at this time.
4850
4851         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
4852
4853         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
4854         up icalls at method definition time. Partially fixes #33569.
4855
4856 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
4857
4858         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
4859         marshalling of arrays. Fixes #50116.
4860
4861         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
4862
4863         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
4864         points to a vtable in the dying appdomain.
4865
4866         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
4867         listeners into unmanaged code inside the lock.
4868
4869         * object.c (mono_class_vtable): Turn off typed allocation in non-root
4870         domains and add some comments.
4871
4872 2003-10-25  Martin Baulig  <martin@ximian.com>
4873
4874         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
4875
4876         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
4877
4878         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
4879         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
4880         currently parsing.  Create the generic class and store it in
4881         `generic_inst->klass' before parsing the type arguments.  This is
4882         required to support "recursive" definitions; see mcs/tests/gen-23.cs
4883         for an example.
4884         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
4885         to support recursive typespec entries.
4886
4887         * class.c (mono_class_setup_parent): If our parent is a generic
4888         instance, we may get called before it has its name set.
4889         (mono_class_from_generic): Splitted into
4890         mono_class_create_from_generic() and mono_class_initialize_generic().
4891
4892 2003-10-25  Martin Baulig  <martin@ximian.com>
4893
4894         * icall.c (ves_icall_Type_BindGenericParameters): Return a
4895         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
4896         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
4897         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
4898
4899         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
4900         (create_typespec): Likewise.
4901         (mono_reflection_bind_generic_parameters): Return a
4902         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
4903         (mono_reflection_inflate_method_or_ctor): New public function.
4904
4905         * reflection.h (MonoReflectionGenericInst): New typedef.        
4906
4907 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
4908
4909         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
4910         inside the domain lock. Fixes #49993.
4911         
4912         * object.c (mono_class_vtable): When typed allocation is used, 
4913         allocate vtables in the GC heap instead of in the mempool, since the
4914         vtables contain GC descriptors which are used by the collector even
4915         after the domain owning the mempool is unloaded.
4916
4917         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
4918
4919         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
4920         reflect what it does. Also invalidate mempools instead of freeing
4921         them if a define is set.
4922
4923         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
4924         of the appdomain.
4925         
4926         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
4927         hold the finalizable objects in this domain.
4928
4929         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
4930         appdomain.
4931
4932         * appdomain.c (mono_domain_set): New function to set the current
4933         appdomain, but only if it is not being unloaded.
4934
4935         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
4936         appdomain which is being unloaded.
4937         
4938         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
4939         unloading of the root appdomain.
4940
4941         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
4942         icall to execute a method in another appdomain. Intended as a 
4943         replacement for InternalSetDomain, which can confuse the code 
4944         generation in the JIT.
4945
4946         * appdomain.c (mono_domain_is_unloading): New function to determine
4947         whenever an appdomain is unloading.
4948
4949         * appdomain.c (mono_domain_unload): New function to correctly unload
4950         an appdomain.
4951
4952         * assembly.c (mono_assembly_load_references): Check that an assembly
4953         does not references itself.
4954
4955         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
4956         domain manually, it asks the finalizer thread to do it, then waits for
4957         the result. Also added a timeout.
4958
4959         * icall.c: Register the new icalls.
4960
4961         * threads.h threads.c: Export the mono_gc_stop_world and 
4962         mono_gc_start_world functions.
4963         
4964         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
4965         function to fill out the mempool with 0x2a.
4966
4967 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
4968
4969         * reflection.h (MonoReflectionMethodAux): New structure to store
4970         information which is rarely used, thus is not in the MonoMethod
4971         structure.
4972
4973         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
4974         store the aux info.
4975
4976         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
4977         and marshalling info into the aux structure.
4978
4979         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
4980         from the aux structure.
4981
4982         * loader.c (mono_method_get_param_names): Retrieve the param names from
4983         the aux structure.
4984         
4985 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
4986
4987         * exception.h exception.c: Add AppDomainUnloadedException && fix 
4988         warning.
4989
4990 2003-10-21  Dick Porter  <dick@ximian.com>
4991
4992         * socket-io.c
4993         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
4994         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
4995
4996 2003-10-21  Martin Baulig  <martin@ximian.com>
4997
4998         * reflection.c (mono_reflection_bind_generic_parameters):
4999         `klass->parent' is NULL for interfaces.
5000
5001 2003-10-21  Martin Baulig  <martin@ximian.com>
5002
5003         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5004
5005 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
5006
5007         * exception.c (mono_exception_from_name_msg): New helper function for
5008         creating exceptions and initializing their message field.
5009
5010         * exception.c: Simplify functions using the new helper.
5011
5012         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
5013         New function.
5014
5015         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
5016         mono_raise_exception, since otherwise gcc doesn't generate the function
5017         epilog for raise_exception, confusing the stack unwinding in the JIT.
5018         Fixes #45043.
5019
5020         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
5021         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
5022         Fixes #49499.
5023
5024 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5025
5026         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
5027         utf8.
5028
5029 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
5030
5031         * icall.c: Removed GetUninitializedObject method because
5032           AllocateUninitializedClassInstance does the same.
5033
5034 2003-10-18  Martin Baulig  <martin@ximian.com>
5035
5036         * class.c (inflate_generic_signature): Renamed to
5037         mono_class_inflate_generic_signature() and made it public.
5038         (my_mono_class_from_generic_parameter): New static function; if we
5039         don't already have the generic parameter's MonoClass, create a
5040         very simple one which is just used internally in the runtime and
5041         not passed back to managed code.
5042
5043         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
5044
5045         * metadata.h (MonoMethodSignature): Moved the
5046         `MonoGenericParam *gen_params' to the MonoMethodHeader.
5047         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
5048
5049         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
5050         ves_icall_MonoMethod_GetGenericArguments(); this is now an
5051         interncall on the MonoMethod class, not on MethodInfo.
5052         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
5053         calling mono_reflection_bind_generic_method_parameters() directly.
5054
5055         * loader.c (mono_method_get_signature): If this is a MethodSpec;
5056         return the already computed `method->signature'.
5057         (method_from_methodspec): New static function to load a method
5058         from a MethodSpec entry.
5059         (mono_get_method_from_token): Call the new method_from_methodspec()
5060         for MethodSpec tokens.  
5061         (mono_get_method_from_token): If we're a generic method, load the
5062         type parameters.
5063
5064         * reflection.c (mono_image_get_memberref_token): Allow
5065         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
5066         table.
5067         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
5068         (mono_image_create_token): First check whether it's a generic
5069         method (so we'd need to create a MethodSpec), then do the other
5070         two alternatives.
5071         (mono_reflection_bind_generic_method_parameters): Return a
5072         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
5073         called directly from the interncall.
5074
5075 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
5076
5077         * reflection.c (load_public_key): Move loading of the public key
5078         into managed code.
5079
5080         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
5081
5082         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
5083         fields.
5084
5085         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
5086         culture, hash_alg and public_key. Fixes #49555.
5087
5088 2003-10-17  Martin Baulig  <martin@ximian.com>
5089
5090         * class.h (MonoGenericInst): Moved this declaration here and added
5091         `MonoMethod *generic_method'.
5092
5093         * icall.c
5094         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
5095         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
5096
5097         * metadata.c (mono_metadata_type_equal): Two types of
5098         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
5099         index; ie. don't compare the address of the `MonoGenericParam'
5100         structure.
5101         (mono_metadata_load_generic_params): Removed the `MonoMethod
5102         *method' argument.
5103
5104         * metadata.h (MonoGenericInst): Moved declaration to class.h.
5105         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
5106
5107         * reflection.c (method_encode_signature): Encode the number of
5108         generic parameters.
5109         (encode_generic_method_sig): New static function.
5110         (method_encode_methodspec): New static function; creates an entry
5111         in the MethodSpec table for a generic method.
5112         (mono_image_get_methodspec_token): New static function.
5113         (mono_image_create_token): Call mono_image_get_methodspec_token()
5114         for generic methods.
5115         (mono_reflection_bind_generic_method_parameters): New public
5116         function.  Instantiates a generic method.
5117
5118 2003-10-16  Martin Baulig  <martin@ximian.com>
5119
5120         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
5121         *gen_params' here from MonoMethodHeader.
5122
5123         * metadata.c (mono_metadata_parse_method_signature): If we have
5124         generic parameters, initialize `method->gen_params' and then set
5125         the correct `type->data.generic_param' in all the parameters.
5126
5127 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
5128
5129         * threads.c (mono_threads_get_default_stacksize): New function to 
5130         return the default stacksize.
5131
5132         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
5133         termination of the finalizer thread, since the previous method had
5134         race conditions. Fixes #49628.
5135
5136         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
5137         as for the other managed threads.
5138
5139 2003-10-16  Martin Baulig  <martin@ximian.com>
5140
5141         * class.c (inflate_generic_signature): Copy `generic_param_count'
5142         and `gen_params'.
5143
5144         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
5145         New interncall.
5146
5147         * metadata.c (mono_metadata_parse_method_signature): Actually set
5148         the `method->generic_param_count' here.
5149         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
5150
5151 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
5152
5153         * object.h: Add a new field to TypedRef to simplify the implementation
5154         of the REFANY opcodes in the JIT.
5155
5156         * icall.c: Make use of the new field.
5157
5158         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
5159         dynamically.
5160
5161 2003-10-15  Martin Baulig  <martin@ximian.com>
5162
5163         * class.c (mono_class_from_gen_param): Renamed to
5164         mono_class_from_generic_parameter() and moved most of the
5165         functionality from mono_reflection_define_generic_parameter()
5166         here; ie. we create a "real" class here.
5167         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
5168         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
5169         previously been called.
5170
5171         * class.h (MonoGenericParam): Moved the declaration of this struct
5172         here from metadata.h and added `MonoMethod *method'.
5173
5174         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
5175         interncall.
5176
5177         * loader.c (mono_get_method_from_token): If we have any generic
5178         parameters, call mono_metadata_load_generic_params() to read them
5179         from the MONO_TABLE_GENERICPAR.
5180
5181         * metadata.c (mono_metadata_load_generic_params): Added
5182         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
5183
5184         * metadata.h (MonoMethodSignature): Replaced
5185         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
5186         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
5187
5188         * reflection.c (mono_reflection_define_generic_parameter): Moved
5189         most of the functionality into the new
5190         mono_class_from_generic_parameter(); set the `method' field if
5191         we're a method parameter.       
5192
5193 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
5194
5195         * marshal.c (emit_struct_conv): if native size is 0
5196         emit no code.
5197
5198 2003-10-14  Martin Baulig  <martin@ximian.com>
5199
5200         * icall.c: The generics API has changed in the spec since it was
5201         added to System.Type; these modifications make it match the spec
5202         again.
5203         (ves_icall_Type_GetGenericParameters): Renamed to
5204         `ves_icall_Type_GetGenericArguments'.
5205         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
5206         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
5207         `ves_icall_MonoType_get_HasGenericArguments'.
5208         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
5209         `ves_icall_MonoType_get_IsGenericParameter'.
5210         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
5211         this is no interncall anymore.
5212         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
5213         `ves_icall_TypeBuilder_get_IsGenericParameter'.
5214
5215 2003-10-14  Martin Baulig  <martin@ximian.com>
5216
5217         * reflection.c (mono_reflection_bind_generic_parameters): Also
5218         inflate generic methods if we're reading the class from IL.
5219
5220 2003-10-13  Martin Baulig  <martin@ximian.com>
5221
5222         * reflection.c (mono_reflection_define_generic_parameter): This
5223         method isn't called directly from the icall anymore; take a
5224         `MonoReflectionAssemblyBuilder *' so we can use this for type and
5225         method generic parameters.
5226         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
5227         (method_builder_encode_signature): Encode generic parameters.
5228         (mono_image_get_method_info): Write generic params to the
5229         MONO_TABLE_GENERICPARAM table.
5230
5231         * reflection.h (MonoReflectionMethodBuilder): Added
5232         `MonoArray *generic_params'.
5233
5234         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
5235
5236         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
5237         wrapper for mono_reflection_define_generic_parameter().
5238         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
5239
5240 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
5241
5242         * marshal.h: Add missing function to fix build.
5243
5244         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
5245         the SetLastError pinvoke attribute.
5246
5247         * marshal.c (mono_marshal_set_last_error): New helper function called
5248         by the generated code.
5249         
5250         * marshal.c (mono_mb_emit_branch): New helper function.
5251
5252         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
5253
5254         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
5255         classes as parameters and return values of delegates. Fixes #29256. 
5256
5257 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
5258
5259         * locales.c: use gint32 in non HAVE_ICU case
5260
5261 2003-10-11  Martin Baulig  <martin@ximian.com>
5262
5263         * mono-debug.c (mono_debug_add_method): Added a workaround for
5264         bug #48591.
5265
5266 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
5267
5268         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
5269         delegates passed to native code must use the STDCALL calling 
5270         convention. Fixes #35987.
5271
5272 2003-10-10  Martin Baulig  <martin@ximian.com>
5273
5274         * class.c (inflate_generic_type): If we're inflating for a generic
5275         type instance (and not for a generic method), return
5276         MONO_TYPE_MVAR unchanged.
5277
5278 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5279
5280         * string-icalls.c: Join ignores null strings in the source array.
5281         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
5282         * threads.c: GetAvailableTheads is slightly more accurate.
5283
5284 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
5285
5286         * threads.h threads.c : add mono_threads_set_default_stacksize
5287         and pass default to CreateThread calls.
5288
5289 2003-10-09  Dick Porter  <dick@ximian.com>
5290
5291         * icall.c:
5292         * locales.h:
5293         * locales.c: Internal calls for constructing CultureInfo and
5294         related objects from libicu (if its available.)
5295
5296 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
5297
5298         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
5299
5300 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5301
5302         * threadpool.c: added an argument to async_invoke_thread that is the
5303         item to process, pass the MonoAsyncResult to the thread start function
5304         when creating a new thread. This way we don't need to acquire any lock
5305         when we're creating a new thread. Readded a semaphore for faster
5306         response times (instead of that Sleep i added).
5307
5308 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
5309
5310         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
5311         get daylight change dates better on Windows, fix handling
5312         of platforms without tm_gmtoff.
5313
5314 2003-10-06  Martin Baulig  <martin@ximian.com>
5315
5316         * class.c (inflate_generic_method): Renamed to
5317         mono_class_inflate_generic_method() and made public.
5318         (mono_class_init): Don't inflate the generic methods here.
5319         (mono_class_from_generic): Added `gboolean inflate_methods'
5320         argument.  Inflate the methods here.
5321
5322         * loader.c (mono_method_get_param_names): Ignore instances of
5323         generic types for the moment.
5324
5325         * reflection.c (fixup_method): Added support for inflated methods.
5326         (mono_image_create_token): Use mono_image_get_methodref_token()
5327         for inflated methods.
5328         (mono_custom_attrs_from_param): Ignore instances of generic types
5329         for the moment.
5330         (mono_reflection_bind_generic_parameters): New public function.
5331         Moved all the functionality from
5332         ves_icall_Type_BindGenericParameters() here and added support for
5333         dynamic types.
5334         (mono_reflection_define_generic_parameter): Initialize
5335         `klass->methods' here.
5336
5337         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
5338         functionality into mono_reflection_define_generic_parameter().
5339         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
5340         TypeBuilder, return that TypeBuilder.
5341
5342 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5343
5344         * appdomain.c: removed mono_delegate_semaphore.
5345
5346         * threadpool.c:
5347         (mono_thread_pool_add): moved hash table creation inside and the thread 
5348         creation outside of the critical region.
5349         (mono_thread_pool_finish): removed obsolete code.
5350         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
5351         continue or exit the thread depending on the queue.
5352
5353 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
5354
5355         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
5356         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
5357         handle more bool marshalling options
5358
5359 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
5360
5361         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
5362         arrays of structs. Also add a more descriptive error message when
5363         a structure member is marshalled as LPArray.
5364
5365 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
5366
5367         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5368         marshalling arrays of complex types. Fixes #29098. Also remove an
5369         usused and incomplete function.
5370
5371 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5372
5373         * gc.c: report heap_size - free_bytes as total memory allocated
5374         (bug#49362).
5375
5376 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
5377
5378         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
5379         fix timezone handling problems on Windows.
5380         
5381         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
5382         asserts when the year is outside the range handled by ms the functions.
5383
5384         * class.c (setup_interface_offsets): If the class is an interface,
5385         fill out its interface_offsets slot.
5386
5387 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5388
5389         * threadpool.c: mark threadpool threads as background.
5390
5391 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
5392
5393         * decimal.c - define DECINLINE to nothing if not using GCC
5394
5395 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
5396
5397         * assembly.c: More refcount fixes.
5398
5399 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5400
5401         * string-icalls.c: if we're not trimming, return the same string.
5402         When not splitting, don't create a new string.
5403
5404 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5405
5406         * image.c:
5407         (mono_image_open): increment the ref_count inside the critical section.
5408
5409 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
5410
5411         * image.c (mono_image_open): Fix reference counting bug.
5412
5413 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
5414
5415         * marshal.c (mono_marshal_type_size) struct alignment changed for 
5416         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
5417         64bits. Avoid leak in mono_marshal_get_native_wrapper when
5418         mono_lookup_pinvoke_call throws.        
5419
5420 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
5421
5422         * reflection.c (mono_reflection_parse_type): Fix #49114.
5423
5424         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
5425         temporary workaround for cygwin header problem.
5426
5427         * object.c (mono_object_isinst): Synchronize this with the code
5428         generated by the JIT for casts.
5429
5430 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
5431
5432         * reflection.c (encode_type): Fix #38332.
5433
5434 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
5435
5436         * marshal.c (mono_marshal_method_from_wrapper): New function to return
5437         the original method from the wrapper method.
5438
5439 2003-09-25  Martin Baulig  <martin@ximian.com>
5440
5441         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
5442         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
5443         (ves_icall_Type_get_IsGenericInstance): New interncall.
5444
5445 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
5446
5447         * object.c: fix cast warning in big endian code.
5448
5449 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
5450
5451         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
5452         
5453 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5454
5455         * assembly.c: don't call check_env from mono_assembly_load. It's
5456         already done once in mono_assemblies_init and may cause headaches when
5457         multiple threads are loading assemblies.
5458
5459 2003-09-19  Martin Baulig  <martin@ximian.com>
5460
5461         * reflection.c (mono_reflection_define_generic_parameter): Don't
5462         allocate `klass->methods', set `klass->flags' to
5463         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
5464
5465 2003-09-18  Martin Baulig  <martin@ximian.com>
5466
5467         * class.c (mono_class_init): Don't create `class->methods' if it's
5468         already initialized.
5469
5470         * metadata.c (mono_metadata_load_generic_params): Make this
5471         actually work.
5472
5473         * reflection.c (mono_reflection_define_generic_parameter): Set
5474         parent class and interfaces from the constraints.
5475
5476         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
5477         to keep this struct in sync with the declaration in TypeBuilder.cs.
5478
5479 2003-09-17  Martin Baulig  <martin@ximian.com>
5480
5481         * metadata.h (MonoType): Replaced the data's `int type_param'
5482         field with `MonoGenericParam *generic_param'.
5483         (MonoGenericParam): Added `MonoClass *klass'.
5484
5485         * class.c (mono_class_from_gen_param): Removed the
5486         `MonoImage *image' and `int type_num' arguments.
5487
5488         * metadata.c (mono_metadata_parse_generic_param): New static
5489         method; creates a MonoGenericParam which just contains the index.
5490         (do_mono_metadata_parse_type): Call
5491         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
5492         MONO_TYPE_MVAR.
5493
5494         * reflection.c (mono_image_typedef_or_ref): Generic type
5495         parameters may be in the same assembly, but never use a typedef
5496         for them.
5497         (mono_reflection_define_generic_parameter): We're now creating a
5498         "real" class for the type parameter; it's now safe to call
5499         mono_class_from_mono_type() on the class'es type, it'll do the
5500         right thing.
5501
5502 2003-09-16  Martin Baulig  <martin@ximian.com>
5503
5504         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
5505         `symfile->range_entry_size' and `symfile->class_entry_size' here;
5506         the `symfile' data structure must be fully initialized before it
5507         gets added to the table.
5508
5509 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
5510
5511         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
5512
5513         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
5514         class init trampolines.
5515
5516 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
5517
5518         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
5519         to the built-in profiler to turn off time and allocation profiling
5520         respectively.
5521
5522 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
5523
5524         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
5525         g_direct_equal.
5526
5527         * debug-helpers.c (mono_method_full_name): Print the wrapper type
5528         in human readable form.
5529
5530 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
5531
5532         * reflection.c icall.c: Fixed warnings.
5533
5534         * image.c (load_class_names): Use a temporary hash table to hold the
5535         namespaces in order to avoid doing many string comparisons.
5536
5537         * image.h: Fix typo.
5538
5539         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
5540         Pass NULL instead of g_direct_equal to the GHashTable constructor 
5541         since the NULL case is short-circuited inside g_hash_table_lookup, 
5542         leading to better performance.  
5543
5544         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
5545         obtain the first custom attribute for a given index. Depends on the
5546         CustomAttribute table being sorted by the parent field.
5547
5548         * reflection.c (mono_custom_attrs_from_index): Use the new function 
5549         for better performance.
5550
5551 2003-09-07  Martin Baulig  <martin@ximian.com>
5552
5553         * class.c (mono_class_init): If we're a generic instance, inflate
5554         all our methods instead of loading them from the image.
5555         (mono_class_from_generic): Set `class->methods = gklass->methods'.
5556
5557 2003-09-07  Martin Baulig  <martin@ximian.com>
5558
5559         * mono-debug-debugger.c: Added support for constructors.
5560
5561 2003-09-06  Martin Baulig  <martin@ximian.com>
5562
5563         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
5564         New interncall.
5565
5566         * reflection.c (mono_reflection_setup_generic_class): Call
5567         ensure_runtime_vtable() to create the vtable.
5568
5569 2003-09-05  Martin Baulig  <martin@ximian.com>
5570
5571         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
5572         MONO_TYPE_MVAR.
5573
5574 2003-09-04  Martin Baulig  <martin@ximian.com>
5575
5576         * reflection.c (mono_reflection_define_generic_parameter): Generic
5577         parameters start with zero.
5578
5579 2003-09-04  Martin Baulig  <martin@ximian.com>
5580
5581         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5582
5583         * reflection.h (MonoReflectionGenericParam): New typedef.
5584         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
5585         the generic parameters from the managed TypeBuilder.
5586
5587         * reflection.c (mono_reflection_define_generic_parameter): New function.
5588         (mono_reflection_create_runtime_class): Encode generic parameters.
5589         (mono_reflection_setup_generic_class): New function; this is
5590         called after adding adding all generic params to the TypeBuilder.
5591         (encode_type): Added MONO_TYPE_VAR.
5592
5593 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
5594
5595         * class.h class.c (mono_class_needs_cctor_run): Moved this method
5596         here from the JIT.
5597
5598         * assembly.h assembly.c: Moved the AOT loading code into an assembly
5599         load hook.
5600
5601 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
5602
5603         * reflection.h reflection.c class.h class.c: Delete duplicate 
5604         definition of mono_type_get_name () from reflection.c and export the
5605         one in class.c.
5606
5607         * class.c: Class loading fixes from Bernie Solomon 
5608         (bernard@ugsolutions.com).
5609
5610         * reflection.c: Endianness fixes from Bernie Solomon 
5611         (bernard@ugsolutions.com).
5612         
5613 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
5614
5615         * assembly.h assembly.c: Define a file format version for AOT
5616         libraries.
5617         
5618         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
5619
5620         * appdomain.h (MonoJitInfo): New field to determine whenever the
5621         code is domain neutral.
5622         
5623 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
5624
5625         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
5626
5627 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
5628
5629         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
5630         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
5631         Avoid caching the result since strings must be domain specific. Fixes
5632         #48050.
5633
5634 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
5635
5636         * marshal.c (mono_marshal_init): Make this callable multiple times
5637         since it is hard to find a correct place to call it.
5638
5639         * object.c (mono_runtime_class_init): Execute static constructors in
5640         the correct appdomain.
5641
5642         * image.c (build_guid_table): Handle the case when multiple images have
5643         the same GUID.
5644
5645 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5646
5647         * icall.c: added a couple of icalls for System.Web.
5648
5649 2003-08-28  Martin Baulig  <martin@ximian.com>
5650
5651         * icall.c (ves_icall_Type_BindGenericParameters): Use
5652         `klass->generic_inst' instead of `&klass->byval_arg' in the
5653         mono_type_get_object() call.  The returned type must be
5654         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
5655
5656 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
5657
5658         * NOTES: New file.
5659
5660         * object.c (mono_class_proxy_vtable): Make it thread safe.
5661
5662         * pedump.c: Fix warning.
5663
5664         * object.c appdomain.h: Get rid of metadata_section. 
5665         It is no longer needed and it was causing deadlocks with domain->lock.
5666
5667         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
5668
5669 2003-08-26  Martin Baulig  <martin@ximian.com>
5670
5671         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
5672
5673 2003-08-26  Martin Baulig  <martin@ximian.com>
5674
5675         * pedump.c (main): Call mono_metadata_init(),
5676         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
5677         and mono_loader_init().
5678
5679 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
5680
5681         * loader.h: Add missing include to fix build.
5682
5683         * image.h: mono_image_load_references is no more.
5684
5685         * assembly.c: Reworked assembly loading to make it really thread safe.
5686         After these changes, the assembly returned by mono_assembly_open is
5687         fully initialized, i.e. all its references assemblies are loaded.
5688
5689         * assembly.c (mono_image_load_references): Renamed to 
5690         mono_assembly_load_references, and made private, since clients no
5691         longer need to call it.
5692
5693         * class.c: Removed calls to mono_assembly_load_references, since it was
5694         a source of deadlocks.
5695
5696         * loader.h loader.c class.h class.c: Protect data structures using a 
5697         new lock, the loader lock.
5698
5699         * class.c (mono_class_setup_vtable): Create temporary hash tables and
5700         GPtrArrays only when needed.
5701
5702         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
5703         into empty structures by mcs. Fixes pinvoke7.cs.
5704         
5705         * domain.c (mono_init): Call a new initialization function.
5706
5707         * appdomain.c (mono_runtime_init): Call the new initializer function
5708         of the marshal module.
5709
5710         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
5711         inserted into empty structures by mcs. Fixes pinvoke7.cs.
5712
5713         * marshal.h marshal.c: Added locks around the wrapper caches to make
5714         this module thread safe.
5715
5716         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
5717         this argument. Fixes pinvoke1.exe.
5718
5719 2003-08-25  Lluis Sanchez <lluis@ximian.com>
5720
5721         * object.h: Added call_type field to MonoMethodMessage and the corresponding
5722         enumeration of values. Removed fields to store remote call output values in
5723         MonoAsyncResult. Not needed any more.
5724         * object.c: Initialize call_type and async_result fields in mono_message_init.
5725         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
5726         dispatching the message.
5727         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
5728         async call to finish. To do it use a message with EndInvoke call type.
5729
5730 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
5731
5732         * loader.h loader.c (mono_method_hash_marhal_info): New function which
5733         determines whenever a method has marshalling info.
5734
5735 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5736
5737         * assembly.c: fix the build on windows.
5738
5739 2003-08-22 Lluis Sanchez <lluis@ximian.com>
5740
5741         * object.cs: Fixed bug #47785.
5742
5743 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
5744
5745         * string-icalls.c (StringReplace): If their are no occurances of
5746         the old string found return a reference to the supplied
5747         string. This saves some memory and matches MS behavoir.
5748         
5749 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5750
5751         * socket-io.c: fixed compilation for systems that define AF_INET6
5752         and don't define SOL_IP/SOL_IPV6.
5753
5754 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
5755
5756         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
5757         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
5758
5759         * rawbuffer.c rawbuffer.h: Make this module thread safe.
5760
5761         * domain.c: Make this module thread safe.
5762
5763         * domain.c (mono_init): Call new initialization function.
5764
5765         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
5766         reference types too. Fixes #38812.
5767
5768         * image.c (mono_image_init): Fixed warnings.
5769
5770         * class.c (mono_class_from_typeref): Handle assembly load failure
5771         correctly.
5772
5773         * appdomain.c (add_assemblies_to_domain): Handle the case when
5774         the references of an assembly are not yet loaded.
5775
5776         * metadata.c image.c assembly.c: Moved initialization of global
5777         variables to a separate function called at startup since lazy 
5778         initialization of these variables is not thread safe.
5779         
5780         * image.c assembly.c: Made this module thread safe by adding locks in 
5781         the appropriate places.
5782
5783         * domain.c (mono_init): Call the new initialization functions of the
5784         three modules.
5785
5786 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
5787
5788         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
5789           make a direct call. It is proxy's work to make the call asynchronous.
5790           mono_delegate_end_invoke(): If the targe is a proxy, just collect
5791           the return values.
5792         * object.cs: mono_method_call_message_new(): read AsyncResult and
5793           state object from parameters list, if this info is requested.
5794         * object.h: Added fields to store remote call output values in
5795           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
5796
5797 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5798
5799         * object.h: add needed fields to MonoThread.
5800         * threads.c, threads.h: allow registering a function to cleanup data
5801         allocated per thread by the JIT.
5802
5803 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5804
5805         * loader.h: portability fix by Bernie Solomon
5806         * <bernard@ugsolutions.com>.
5807
5808 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
5809
5810         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
5811         return a MonoArray. This simplifies the code and also ensures that
5812         the cache allways contains an object reference as a value.
5813
5814         * icall.c (ves_icall_get_parameter_info): Simplified using the new
5815         function.
5816
5817 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5818
5819         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
5820         fixes a problem with byte ordering when getting the address family for
5821         a socket.
5822
5823 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
5824
5825         * .cvsignore: Added monosn.
5826
5827         * reflection.h reflection.c loader.c: Added support for parameter
5828         marshalling to dynamically created types. Fixes #47295.
5829
5830 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
5831
5832         * rand.c: remove useless warnings.
5833
5834 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5835
5836         * class.c: implemented ldtoken for methods and fieldrefs.
5837
5838 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5839
5840         * threadpool.c: when mono_async_invoke was called, no one took care of
5841         monitoring the queue. So if the method invoked took some time and we
5842         got new async invoke requests after 500 ms (the thread created waited
5843         that long in WaitForSingleObject), the new async invoke was not called
5844         until the previous one finished.
5845
5846         This is fixed now. Thanks to Totte for helping with it.
5847
5848 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5849
5850         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
5851
5852 2003-08-11  Martin Baulig  <martin@ximian.com>
5853
5854         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
5855
5856 2003-08-06  Martin Baulig  <martin@ximian.com>
5857
5858         * mono-debug-debugger.c: Added support for static fields,
5859         properties and methods.
5860
5861 2003-08-06  Martin Baulig  <martin@ximian.com>
5862
5863         * mono-debug-debugger.c: Don't store the MonoString's vtable to
5864         make this work for applications with multiple application domains.
5865
5866 2003-08-04  Martin Baulig  <martin@ximian.com>
5867
5868         * mono-debug-debugger.c: Completely reworked the type support; the
5869         most important thing is that we're now just using one single
5870         `MonoType' instance per type.
5871
5872 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
5873
5874         * mono-endian.h, mono-endian.c, icall.c: Added icall
5875         ves_icall_System_Double_AssertEndianity to assert double word endianity
5876         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
5877
5878 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5879
5880         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
5881         support, icalls and fixes.
5882
5883 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
5884
5885         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
5886         classes that are a punctuation character in .NET is not the same a
5887         g_unichar_ispunct.
5888
5889 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5890
5891         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
5892
5893 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
5894
5895         * icall.c: Add new MemCopy internalcall.
5896         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
5897         Simplified code; It is not necessary to handle all the cases here,
5898         as the C# code takes care of it.  Only handle the case of the name
5899         resource embedded into the assembly.
5900
5901         Changed signature to return the data pointer and the size of the
5902         data. 
5903
5904 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
5905
5906         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
5907         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
5908
5909 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5910
5911         * socket-io.c: ignore EINTR error in select.
5912
5913 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
5914
5915         * class.h, class.c: removed unused subclasses field in MonoClass.
5916
5917 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5918
5919         * icall.c: improve fix of get_base_definition(). If the parent class
5920           doesn't have the mehod, look at the parent of the parent.
5921         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
5922           to check if a parameter is an in or out parameter
5923           (PARAM_ATTRIBUTE_IN is not set by default).
5924           mono_method_return_message_restore(): Use mono_class_value_size to
5925           get the size of a value type. mono_type_stack_size (parameterType)
5926           does not return the correct value if parameterType is byRef.
5927           mono_load_remote_field(), mono_load_remote_field_new(),
5928           mono_store_remote_field(), mono_store_remote_field_new():
5929           raise exception if the remote call returns an exception.
5930
5931 2003-07-28  Martin Baulig  <martin@ximian.com>
5932
5933         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
5934         method.  This is a wrapper around mono_runtime_invoke() which
5935         boxes the instance object if neccessary.
5936
5937 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5938
5939         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
5940         metadata.h, row-indexes.h, verify.c: first cut of generics support.
5941
5942 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5943
5944         * icall.c: disable mcs bug workaround.
5945
5946 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
5947
5948         * object.c (mono_runtime_class_init): Take the metadata_section
5949         mutex before obtaining the domain mutex.
5950
5951         * appdomain.h: Added definition of metadata_section mutex here. 
5952
5953         * object.c: define metadata_mutex here.
5954
5955 2003-07-24  Ravi Pratap  <ravi@ximian.com>
5956
5957         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
5958         fixed.
5959
5960 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
5961
5962         * reflection.c: Fix bug #46669
5963
5964 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5965
5966         * exception.c:
5967         * exception.h:
5968         * icall.c:
5969         * object.h: fill in the type name for TypeLoadException.
5970
5971 2003-07-23  Ravi Pratap  <ravi@ximian.com>
5972
5973         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
5974         relationship between TypeBuilders while compiling corlib) and bug
5975         45993 (Array types returned from the runtime while compiling
5976         corlib were from the loaded corlib).
5977
5978 2003-07-22  Martin Baulig  <martin@ximian.com>
5979
5980         * mono-debug-debugger.c: Reworked the type support a bit more;
5981         distinguish between types and classes.
5982
5983 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
5984
5985         * icall.c: add IsArrayImpl icall.
5986
5987 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
5988
5989         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
5990         initializing real_size only once. Also fix bug #46602.
5991
5992 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
5993
5994         * object.c: Renamed mono_metadata_section to metadata_section.
5995
5996 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
5997
5998         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
5999           empty array if the type is an array. Fixed.
6000           ves_icall_MonoMethod_get_base_definition: if the base method
6001           is abstract, get the MethodInfo from the list of methods of
6002           the class.
6003         * reflection.c: ParameterInfo.PositionImpl should be zero-based
6004           and it was 1-based. Fixed in mono_param_get_objects.
6005
6006 2003-07-20  Martin Baulig  <martin@ximian.com>
6007
6008         * mono-debug.h: Set version number to 31.
6009         (mono_debug_init): Added `MonoDomain *' argument.
6010
6011         * mono-debug-debugger.c: Reworked the type support; explicitly
6012         tell the debugger about builtin types; pass the `klass' address to
6013         the debugger.
6014
6015 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
6016
6017         * image.c: Allow new metadata tables to be loaded without a
6018         warning. Also update the warning message to give the new constant value.
6019                 
6020 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
6021
6022         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
6023         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
6024         array type representation changes.
6025
6026 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6027
6028         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
6029         on Environment.Exit () call.
6030
6031 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
6032
6033         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
6034         requires a matching corlib.
6035
6036 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6037
6038         * Changelog: My editor decided to add a CR to each line. Sorry about that.
6039           Committed again without the CRs.
6040         
6041 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
6042
6043         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
6044           getting it from the "this" socket instance. Did not work
6045           if the socket is a subclass of Socket.
6046           Also fixed bug #35371.
6047
6048 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6049
6050         * metadata.c: fixed size for TypedByRef.
6051         * loader.c: when searching for a method, consider the vararg amrker.
6052         * unicode.c, decimal.c: constify some arrays.
6053
6054 2003-07-15  Dick Porter  <dick@ximian.com>
6055
6056         * socket-io.c: Fixed compilation for gcc < 3.2.
6057
6058         Fixed compilation for machines that don't have AF_INET6 (thanks to
6059         Bernie Solomon <bernard@ugsolutions.com> for that part.)
6060
6061         Fixed compile warnings.
6062         
6063         Fixed formatting and line endings.
6064
6065 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
6066
6067         * socket-io.h:
6068         * socket-io.c: Added IPv6 support.
6069
6070 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
6071
6072         * class.c (mono_class_is_assignable_from): New function to implement
6073         the is_assignable_from logic. Used by mono_object_isinst, 
6074         Type::IsAssignableFrom () and the interpreter.
6075
6076         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
6077         Object, even interfaces.
6078         
6079         * object.c (mono_object_isinst): Implement in terms of 
6080         is_assignable_from.
6081
6082         * icall.c (ves_icall_type_is_assignable_from): New icall.
6083
6084 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
6085
6086         * domain.c (foreach_domain): fix compiler warning.
6087
6088 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
6089
6090         * image.c (load_metadata_ptrs): use g_strndup because strndup is
6091         not available on all plattforms
6092
6093 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
6094
6095         * image.h image.c: Store the metadata version string in MonoImage.
6096         * icall.c: New icall to retrieve the image version.
6097         * reflection.c (create_dynamic_image): Fill in the image version field
6098         * reflection.c (build_compressed_metadata): Use the image version
6099         from the image structure.
6100
6101 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6102
6103         * appdomain.c: modified comment.
6104         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
6105         That will be its last iteration when mono_gc_cleanup is called from
6106         mono_runtime_cleanup and before the domain is unloaded.
6107
6108         Fixes bug #45962.
6109
6110 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
6111
6112         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
6113         attributes.
6114
6115 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6116
6117         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
6118         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
6119         Bernie Solomon <bernard@ugsolutions.com>.
6120
6121 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6122
6123         * object.c, object.h: provide mono_object_new_fast() for faster
6124         allocation in some special cases.
6125
6126 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
6127
6128         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
6129         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
6130
6131 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
6132
6133         * threadpool.c: fix leaks.
6134
6135 2003-07-01  Dick Porter  <dick@ximian.com>
6136
6137         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
6138         using MonoGHashTables.  Fixes threadpool bug posted to list.
6139
6140 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
6141
6142         * image.h, image.c: added support to load an assembly from a byte array.
6143         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
6144         assembly bundle support.
6145
6146 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
6147
6148         * threadpool.c (mono_thread_pool_add): keep a reference to the
6149         AsyncResult to prevent GC
6150
6151 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6152
6153         * class.c: leak fix.
6154
6155 2003-06-25  Dick Porter  <dick@ximian.com>
6156
6157         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
6158         for the async object, the WaitHandle object will close the handle.
6159         Fixes bug 45321.
6160
6161 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6162
6163         * class.c: in mono_array_class_get (), lookup from the hash with the
6164         same type we insert: this works around a bug in
6165         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
6166         lluis. The real fix will have to wait for after the release.
6167
6168 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6169
6170         * icall.c: fix memory leak when getting type members.
6171
6172 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6173
6174         * reflection.c: added more pubtoken special cases.
6175
6176 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
6177
6178         * class.c: handle field offset correctly when class size
6179         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
6180
6181 2003-06-20  Martin Baulig  <martin@ximian.com>
6182
6183         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
6184         *image' field.
6185
6186 2003-06-20  Martin Baulig  <martin@ximian.com>
6187
6188         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
6189
6190 2003-06-20  Martin Baulig  <martin@ximian.com>
6191
6192         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
6193         just distinguish between variables in registers and variables at
6194         an offset relative to a register.
6195
6196 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6197
6198         * icall.c: #ifdef out latest changes until mcs is fixed.
6199
6200 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6201
6202         * icall.c: return members in metadata order.
6203
6204 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
6205
6206         * icall.c: avoid infinite loop in GetTimeZoneData.
6207
6208 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
6209
6210         * icall.c: added Marshal.Prelink/All icalls.
6211
6212 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
6213
6214         * object.c, object.h: fix warnings and do some overflow checking
6215         when creating arrays.
6216
6217 2003-06-17  Dick Porter  <dick@ximian.com>
6218
6219         * file-io.h:
6220         * file-io.c: File attributes need to be tweaked slightly when
6221         passed from the managed to the w32 world.
6222
6223 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6224         * profiler.h profiler-private.h profiler.c: Rework last patch
6225         based on suggestion by Paolo.
6226         
6227 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
6228
6229         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
6230         instruction level coverage data collection.
6231         * profiler.h profiler.c (: Added new callback function which can be
6232         used by the profiler to limit which functions should have coverage
6233         instrumentation.
6234         * profiler.c (mono_profiler_load): Call g_module_build_path to
6235         generate the file name of the profiler library.
6236
6237 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
6238
6239         * profiler.c, profiler.h, profiler-private.h: added basic block 
6240         coverage profiling API.
6241
6242 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
6243
6244         * reflection.c (mono_reflection_create_runtime_class): Add support
6245         for events in dynamically generated code.
6246
6247         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
6248         not allocated.
6249
6250 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
6251
6252         * icall.c: when getting timezone info, return reasonable values if we
6253         can't get the actual data.
6254
6255 2003-06-14  Dick Porter  <dick@ximian.com>
6256
6257         * threads.c (start_wrapper): Remove the reference to the thread
6258         object in the TLS data, so the thread object can be finalized.
6259         This won't be reached if the thread threw an uncaught exception,
6260         so those thread handles will stay referenced :-( (This is due to
6261         missing support for scanning thread-specific data in the Boehm GC
6262         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
6263
6264 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
6265
6266         * reflection.c: ensure streams and tables are first allocated with
6267         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
6268
6269 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
6270
6271         * icall.c: fixed GetElementType for byrefs (bug# 44792).
6272
6273 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
6274
6275         * reflection.c (mono_reflection_create_runtime_class): Add support for
6276         properties to dynamically created classes.
6277         * reflection.c: Fix a few places where non-MonoObjects were inserted
6278         into the tokens hashtable.
6279
6280 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6281
6282         * object.c: some support to handle out of memory exceptions.
6283
6284 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
6285
6286         * marshal.c (mono_marshal_get_native_wrapper): support reference
6287         return types
6288
6289 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6290
6291         * object.h, object.c: more portability stuff from Bernie Solomon.
6292         Unexport mono_object_allocate(). Added mono_object_unbox ().
6293         Set exitcode when an unhandled exception is thrown.
6294
6295 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
6296
6297         * marshal.c (mono_marshal_get_native_wrapper): use custom
6298         marshaler for return types.
6299
6300 2003-06-10  Dick Porter  <dick@ximian.com>
6301
6302         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
6303         ip_mreq is available
6304
6305 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
6306
6307         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
6308         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
6309         by Bernie Solomon <bernard@ugsolutions.com>.
6310
6311 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
6312
6313         * gc.c (mono_gc_init): Avoid error message on shutdown when
6314         GC_DONT_GC=1 is used.
6315
6316         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
6317         New icall to return the GUID of a module.
6318
6319 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6320
6321         * class.c: ensure instance size always includes the parent's size
6322         even whem class size is set explicitly (fixes bug#44294).
6323
6324 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6325
6326         * profiler.h, profiler.c: made the simple profiler thread-safe,
6327         get more accurate timing info. Allow the loading of an
6328         externally-developed profiler module.
6329
6330 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
6331
6332         * marshal.c (mono_marshal_get_native_wrapper): improved
6333         class/byref arguments.
6334         (mono_marshal_get_native_wrapper): better string marshaling support.
6335
6336 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
6337
6338         * class.c: ensure .pack and .size are handled correctly and
6339         simplified layout of static fields.
6340
6341 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
6342
6343         * appdomain.c
6344         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
6345
6346         * loader.c (mono_lookup_pinvoke_call): look for modules in the
6347         current directory (fix bug 44008)
6348
6349 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
6350
6351         * marshal.c (mono_marshal_get_native_wrapper): started support for
6352         custom marshalers.
6353         (mono_delegate_to_ftnptr): consider marshalling specifications
6354
6355 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
6356
6357         * reflection.c, reflection.h: emit custom marshal info.
6358
6359 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6360
6361         * object.c: free the GError.
6362         * icall.c: added CloseEvent_internal.
6363         * threads.[ch]:
6364         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
6365         call.
6366
6367 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
6368
6369         * loader.c (mono_method_get_signature): Add support for dynamic
6370         assemblies.
6371
6372 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
6373
6374         * reflection.c: fixed bug #43905.
6375
6376 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6377
6378         * class.c, domain.c, icall.c, metadata.h, object.h: support for
6379         handling TypedReference and ArgIterator.
6380         * loader.c, loader.h: added function to get signature at call site.
6381
6382 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6383
6384         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
6385         data readonly. Buglets and warning fixes. Some MethodSpec support.
6386
6387 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6388
6389         * class.h, class.c, object.c: remove relative numbering support.
6390
6391 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
6392
6393         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
6394         free the string, until we get a chance to fix Gtk#
6395
6396 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6397
6398         * marshal.c: revert last patch.
6399
6400 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
6401
6402         * icall.c: updates for new mono_class_vtable() not calling
6403         the type constructor anymore.
6404
6405 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6406
6407         * object.h, object.c: separate vtable creation from type
6408         initialization. Make running the .cctor thread safe.
6409
6410 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
6411
6412         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
6413
6414 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
6415
6416         * loader.c (mono_get_method): consider calling convention
6417
6418 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
6419
6420         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
6421         to return the invisible global type for a module.
6422
6423         * reflection.c (mono_image_build_metadata): Emit global fields too.
6424
6425 2003-05-20  Peter Williams  <peterw@ximian.com>
6426
6427         * loader.c (mono_lookup_internal_call): Add a few newlines.
6428
6429 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
6430
6431         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
6432         literal strings.
6433
6434         * appdomain.c (set_domain_search_path): Recalculate search path when
6435         AppDomainSetup.PrivateBinPath changes.
6436
6437         * object.c (mono_class_compute_gc_descriptor): It turns out some
6438         parts of the class libs (like System.Thread) holds pointers to
6439         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
6440         to treat native int a pointer type here.
6441         
6442 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6443
6444         * appdomain.h, domain.c: add hashtable for jump target resolution.
6445
6446 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
6447
6448         * reflection.h reflection.c icall.c: Added new icalls 
6449         GetManifestResourceInfoInternal, GetModulesInternal and support
6450         infrastructure.
6451
6452 2003-05-16  Dick Porter  <dick@ximian.com>
6453
6454         * icall.c:
6455         * file-io.h:
6456         * file-io.c: Implement System.IO.MonoIO::GetTempPath
6457
6458 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
6459
6460         * object.c: mono_store_remote_field: little fix to previous patch.
6461
6462 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6463
6464         * class.c: add constructors to array classes.
6465         * icall.c: special case array construction for InternalInvoke (),
6466
6467 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
6468
6469         * class.h class.c reflection.c object.c: Added support for field
6470         defaults in dynamically generated classes.
6471
6472 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
6473
6474         * reflection.c: properly encode charset for ddlimport.
6475
6476 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
6477
6478         * threads.c: allow compiling without GC.
6479
6480 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6481
6482         * appdomain.h, object.c, object.h, threads.c, threads.h: added
6483         handling of thread static data.
6484
6485 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6486
6487         * reflection.h, reflection.c: added mono_custom_attrs_free ().
6488
6489 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
6490
6491         * class.c (mono_array_class_get): always set the serializable flags
6492         (mono_array_class_get): always set the SEALED attribute for array types
6493
6494 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
6495
6496         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
6497         attributes (fix for bug 42021).
6498
6499 2003-05-12  Dick Porter  <dick@ximian.com>
6500
6501         * gc.c: Don't run finalizers when the finalizer thread is
6502         finishing up, because the default domain has already been
6503         destroyed.
6504
6505 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
6506
6507         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
6508         value is null, we should throw an exception.   This is slightly
6509         different than the other conventions used for the constructor.
6510
6511 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6512
6513         * socket-io.c: fixed windows build.
6514
6515 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6516
6517         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
6518
6519 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
6520
6521         * object.c (mono_string_new_wrapper): Compatibility fix for MS
6522         compilers.
6523
6524 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6525
6526         * class.c (mono_class_layout_fields): Add experimental GC aware
6527         auto layout facility. Requires class library changes to work correctly.
6528
6529         (mono_class_setup_vtable): Avoid overriding explicit interface
6530         method implementations. Fixes iface3.exe test.
6531
6532         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
6533         object reference.
6534         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
6535         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
6536
6537         * metadata.h: Add new type classification macro which determines
6538         whenever the type holds an object reference.
6539
6540 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
6541
6542         * marshal.c (mono_marshal_get_native_wrapper): cleanups
6543
6544 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
6545
6546         * gc.c (finalizer_thread): Work around a GC bug.
6547
6548 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
6549
6550         * marshal.c (emit_struct_conv): allow unions
6551
6552         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
6553
6554 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
6555
6556         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
6557
6558 2003-05-06  Martin Baulig  <martin@ximian.com>
6559
6560         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
6561
6562 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6563
6564         * socket-io.c:
6565         (Select_internal): allow NULLs, don't create arrays if not needed.
6566         Coupled with Socket.cs changes.
6567
6568         * threadpool.c:
6569         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
6570         register a finalizer for it that will close the semaphore handle. This
6571         fixes the leak and make Lupus' test run with > 4080 loops.
6572
6573 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
6574
6575         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
6576         Jerome Laban (bug #42287)
6577
6578 2003-05-02  Martin Baulig  <martin@ximian.com>
6579
6580         * debug-mono-symfile.h
6581         (MonoSymbolFile): Moved declaration into mono-debug.h.
6582         (MonoDebugMethodJitInfo): Likewise.
6583         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
6584         argument.
6585         (_mono_debug_address_from_il_offset): Take a
6586         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
6587
6588         * mono-debug.h
6589         (MonoDebugDomainData): New struct.
6590         (mono_debug_get_domain_data): New function.
6591         (mono_debug_add_method): Take an additional `MonoDomain *'
6592         argument.
6593         (mono_debug_source_location_from_address): Likewise.
6594         (mono_debug_il_offset_from_address): Likewise.
6595         (mono_debug_address_from_il_offset): Likewise.
6596
6597 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
6598
6599         * reflection.c: one more check for null type in custom attrs.
6600
6601 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6602
6603         * reflection.c: avoid warning (comparison is always false due to limited
6604         range of data type).
6605
6606 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6607
6608         * icall.c: throw an exception in Type.GetField if the argument 'name'
6609         is NULL.
6610
6611 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
6612
6613         * reflection.c: fixed handling of enums in named arguments to custom
6614         attributes (bug #42123).
6615
6616 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
6617
6618         * reflection.c: use the right array element type and handle
6619         a null for a Type argument, too.
6620
6621 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
6622
6623         * reflection.c: handle arrays as arguments to custom attributes.
6624
6625 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6626
6627         * reflection.c: handle a string value in a custom attr
6628         ctor that takes an object.
6629
6630 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
6631
6632         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
6633         (fix bug #42063)
6634
6635 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
6636
6637         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
6638
6639 2003-04-27  Martin Baulig  <martin@ximian.com>
6640
6641         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
6642         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
6643         MONO_DEBUGGER_EVENT_BREAKPOINT.
6644         (mono_breakpoint_trampoline_code): Removed.
6645         (mono_debugger_event_handler): The last argument is now a
6646         `guint32'.
6647         (mono_debugger_insert_breakpoint_full): Removed the
6648         `use_trampoline' argument.
6649         (mono_debugger_method_has_breakpoint): Likewise.
6650         (mono_debugger_trampoline_breakpoint_callback): Renamed to
6651         mono_debugger_breakpoint_callback(); take the method and
6652         breakpoint number as arguments.
6653
6654 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
6655
6656         * metadata.c: fix off by one when loading parameters attributes.
6657
6658 2003-04-24  Martin Baulig  <martin@ximian.com>
6659
6660         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
6661
6662 2003-04-24  Martin Baulig  <martin@ximian.com>
6663
6664         * mono-debug-debugger.c: Moved all code which interacts with the
6665         Mono Debugger here.
6666
6667         * debug-mono-symfile.c: This code now just deals with the symbol
6668         file itself, the debugger code is now in mono-debug-debugger.c.
6669
6670 2003-04-23  Martin Baulig  <martin@ximian.com>
6671
6672         * mono-debug.c (mono_debug_source_location_from_il_offset):
6673         New method; like mono_debug_source_location_from_address(), but
6674         takes an IL offset instead of a machine address.
6675
6676 2003-04-23  Martin Baulig  <martin@ximian.com>
6677
6678         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
6679         `line' field; this is now computed by the debugger.
6680
6681 2003-04-23  Martin Baulig  <martin@ximian.com>
6682
6683         * mono-debug.[ch]: New files.  This is the new debugging interface.
6684
6685         * mono-debug-debugger.[ch]: New files.  Moved all code which
6686         interacts with the Mono Debugger here.
6687
6688 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
6689
6690         * domain.c (mono_init): initialize mono_defaults.monitor_class
6691
6692 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
6693
6694         * reflection.c (method_encode_code): Add a spicy exception to help
6695         future compiler authors.
6696
6697 2003-04-21  Martin Baulig  <martin@ximian.com>
6698
6699         * icall.c
6700         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6701         Make this work with relative pathnames; g_filename_to_uri() needs
6702         an absolute filename.
6703
6704 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
6705
6706         * icall.c: Track name changes in Object and ValueType.
6707
6708 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
6709
6710         * metadata.c (mono_type_stack_size): size should be a multiple of
6711         sizeof (gpointer)
6712
6713 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6714
6715         * gc.c:
6716         (internal_domain_finalize): moved into mono_domain_finalize. No need
6717         to create another thread because the finalizers will be run in the
6718         finalizer thread.
6719         
6720         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
6721         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
6722         to be run (MS does this too).
6723
6724 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
6725
6726         * object.c (mono_class_compute_gc_descriptor): Update comment.
6727
6728         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
6729
6730         * image.h: Add synchronized wrapper cache.
6731
6732         * image.c (do_mono_image_open): Initialize cache.
6733
6734         * reflection.c (create_dynamic_mono_image): Initialize cache.
6735
6736 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6737
6738         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
6739         ves_icall_System_Buffer_ByteLengthInternal.
6740
6741 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6742
6743         * reflection.c: setup klass->nested_in earlier. Allow
6744         a dash in the assembly name.
6745
6746 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
6747
6748         * metadata.c (mono_type_to_unmanaged): dont access
6749         type->data.klass for MONO_TYPE_OBJECT
6750         (mono_type_to_unmanaged): consider System.Delegate class
6751
6752 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
6753
6754         * class.c: just setup supertypes in the proper place instead of
6755         initializing the full element class for arrays.
6756
6757 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6758
6759         * class.c: ensure the element class of arrays is initialized.
6760         Setup the supertype info for array classes, too.
6761
6762 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
6763
6764         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
6765
6766 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6767
6768         * Makefile.am: re-added -m option when running cygpath. This way,
6769         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
6770         separator.
6771         * mono-config.c: same codepath for locating mono config file for WIN32
6772         and the rest.
6773         * assembly.c: if mono_assembly_setrootdir is called, don't override
6774         the value set.
6775
6776 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6777
6778         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
6779         MONO_ASSEMBLIES variable.
6780
6781 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
6782
6783         * icall.c: added Assembly::GetNamespaces() icall.
6784
6785 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6786
6787         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
6788
6789 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
6790
6791         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
6792         * object.c: fixed bug in the construction of vtable for proxies
6793
6794 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
6795
6796         * object.c (mono_array_new): Mark mono_array_new as an icall.
6797
6798 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6799
6800         * class.c: fixed test for public method when overriding interfaces.
6801         Closes bug #40970.
6802
6803 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6804
6805         * appdomain.h, domain.c: added mono_domain_foreach() to
6806         be able to access the currently loaded appdomains.
6807         * object.c: make string interning work across sppdomains.
6808         Mark some functions for use as icalls.
6809
6810 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
6811
6812         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
6813
6814         * reflection.h reflection.c: Allocate long living data using 
6815         GC_MALLOC_ATOMIC so the collector does not need to scan it.
6816
6817         * reflection.c: Double the allocation size in streams instead of
6818         increasing it, to prevent unneccesary copying on large assemblies.
6819         
6820         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
6821         creation if the assembly does not have the Run flag set.
6822
6823 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
6824
6825         * class.h: avoid the C++ keywords in header files (Jerome Laban
6826         spotted and fixed this).
6827
6828 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6829
6830         * object.c:
6831         (mono_unhandled_exception): fill in the arguments for the
6832         UnhandledException event. Only trigger that event for the default
6833         domain (as MS does).
6834
6835 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
6836
6837         * object.c: Improve typed allocation stuff based on suggestions from
6838         Paolo. Also turn it on if the GC library supports it.
6839
6840 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6841
6842         * object.c object.h class.h: Added experimental typed allocation
6843         facility using the interfaces in gc_gcj.h.
6844
6845         * os/gc_wrapper.h: Added new include files.
6846         
6847 2003-04-03  Martin Baulig  <martin@ximian.com>
6848
6849         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
6850         which is not yet enabled by default.
6851
6852         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
6853         functions.
6854         (mono_gc_lock, mono_gc_unlock): New static functions.
6855
6856         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
6857         functions; stop/start the world for the garbage collector.  This
6858         is using the windows API; we need to complete the SuspendThread()/
6859         ResumeThread() implementation in the io-layer to make this work on Unix.
6860         (mono_gc_push_all_stacks): New public function; tells the garbage
6861         collector about the stack pointers from all managed threads.
6862
6863 2003-04-03  Martin Baulig  <martin@ximian.com>
6864
6865         * object.h (MonoThread): Added `gpointer stack_ptr'.
6866
6867         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
6868
6869 2003-04-03  Martin Baulig  <martin@ximian.com>
6870
6871         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
6872
6873 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6874
6875         * reflection.c (typebuilder_setup_fields): Initialize field.first and
6876         field.last.
6877
6878 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
6879
6880         * loader.c (mono_lookup_internal_call): Report the corlib that is
6881         out of sync.
6882
6883 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
6884
6885         * icall.c (ves_icall_type_GetTypeCode): fixed check for
6886         System.DBNull (it's class not valuetype).
6887
6888 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6889
6890         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
6891         if the array method was already assigned a token (fixes bug#40646).
6892
6893 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
6894
6895         * reflection.c (mono_reflection_get_type): Attempt type resolve even
6896         if no assembly is given.
6897
6898 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
6899
6900         * metadata.h: Added the new tables.
6901
6902         * row-indexes.h: Added definitions for new tables.
6903
6904         * metadata.c: Add schemas for new tables, and add support for
6905         computing the sizes of them.
6906
6907         * class.c: Update for handling the new type cases.
6908
6909 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
6910
6911         * metadata.h (MONO_TYPE_IS_VOID): new macro
6912
6913 2003-03-31  Martin Baulig  <martin@ximian.com>
6914
6915         * threads.h (MonoThreadCallbacks): Added `thread_created'.
6916
6917         * threads.c (mono_thread_new_init): Call `thread_created' in the
6918         mono_thread_callbacks.
6919
6920 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
6921
6922         * loader.h: added marshalbyrefobject_class to mono_defaults
6923         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
6924         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
6925           generation of output parameters.
6926           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
6927         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
6928           contextbound and the target object belongs to the context of the caller.
6929         * object.h: added context and unwrapped_server variables in MonoRealProxy.
6930         * object.c: Implemented support for interfaces and abstract classes
6931           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
6932           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
6933
6934 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
6935
6936         * class.h class.c (mono_class_is_subclass_of): New function.
6937         
6938         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
6939         routines for most common case (calls from ArrayList::ToArray).
6940
6941         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
6942         routine so programs which call Environment::Exit() can be profiled.
6943
6944         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
6945         Added MONO_ARCH_SAVE_REGS.
6946
6947         * icall.c (ves_icall_type_is_subtype_of): Use new function.
6948
6949 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
6950
6951         * blob.h: Add a couple of new MonoType types definitions.
6952
6953         * tabledefs.h: Add a couple of new call convs.
6954
6955 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
6956
6957         * reflection.h (MonoReflectionDynamicAssembly): track changes in
6958         the layout of the class.
6959
6960         * reflection.c (alloc_table): double the size on overflow to avoid
6961         unnecessary copying.
6962
6963         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
6964         avoid filling out metadata tables and blobs. Also set mb->ilgen to
6965         null so it can be garbage collected.
6966         
6967 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
6968
6969         * reflection.c (mono_reflection_get_type): Return the resolved type
6970         only if it is in the assembly we searched.
6971
6972         * reflection.c (ensure_runtime_vtable): Initialize method slots.
6973
6974         * class.c (mono_class_setup_vtable): Set the slot of the overriding
6975         method.
6976
6977 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6978
6979         * appdomain.c:
6980         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
6981         the right one is 'file:///blah', but MS allows it.
6982         * assembly.c:
6983         (mono_assembly_open): allow 'file://blah'
6984
6985         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
6986
6987 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
6988
6989         * socket-io.c: fixes bug #40310.
6990
6991 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
6992
6993         * reflection.c (mono_reflection_parse_type): handle deeply nested
6994         types correctly.
6995
6996         * reflection.c (mono_image_create_token): Use unique token values
6997         since they will be put into a hash table.
6998
6999         * class.c (mono_class_setup_vtable): If a method occurs in more than
7000         one place in the vtable, and it gets overriden, then change the
7001         other occurances too.
7002
7003         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
7004         object as return type.
7005
7006 2003-03-22  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7007
7008         * icall.c: Deleted "ToString" implementation for double and float
7009         because they are full implemented in managed code.
7010
7011 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7012
7013         * reflection.c, reflection.h: implemented and exported functions
7014         to retrieve info about custom attributes.
7015
7016 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7017
7018         * appdomain.c: moved Uri handling to assembly.c
7019         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
7020         work when using a file Uri in *nix and windows.
7021
7022         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
7023         GetReferencedAssemblies.
7024
7025 2003-03-18  Dick Porter  <dick@ximian.com>
7026
7027         * icall.c: Rename a couple of internal calls
7028
7029         * threads.c: Set the thread state to Stopped when a thread exits.
7030         Fixes bug 39377.
7031
7032 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
7033
7034         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
7035         New icall.
7036
7037         * object.c (mono_class_vtable): fix warning.
7038
7039 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
7040
7041         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
7042
7043         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
7044         memory.
7045         (method_encode_clauses): Create exception info structures in the right
7046         order.
7047         (mono_reflection_setup_internal_class): Initialize supertypes field.
7048
7049         * class.c object.c: Handle interfaces which implement other interfaces 
7050         correctly.
7051
7052         * class.h class.c: Move the supertypes array initialization code into 
7053         a separate function so it can be used for dynamic types too. Also call
7054         it earlier, in mono_class_init(), since it can be used before the
7055         type is initialized.
7056
7057 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7058
7059         * Makefile.am:
7060         * assembly.c:
7061         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
7062
7063         * appdomain.c:
7064         * appdomain.h:
7065         * marshal.c:
7066         * object.c: remove warnings.
7067
7068 2003-03-13  Martin Baulig  <martin@ximian.com>
7069
7070         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
7071         (MonoDebugLexicalBlockEntry): New types.
7072
7073         * debug-mono-symfile.c
7074         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
7075
7076 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7077
7078         * process.c: ret can be any non-zero value accroding to MS doc.
7079
7080 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
7081
7082         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
7083         fixing a warning for a miss-used prototype, would have cause
7084         random memory corruption.
7085
7086 2003-03-07  Martin Baulig  <martin@ximian.com>
7087
7088         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
7089         getting really annoying ....
7090
7091 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * reflection.c (fixup_method): added support for array methods.
7094
7095 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
7096
7097         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
7098         (pointed out by Michael Adams).
7099
7100 2003-03-04  Dick Porter  <dick@ximian.com>
7101
7102         * icall.c: Temporarily reverted the Double and Single ToString()
7103         change, because it broke nunit.
7104
7105 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
7106
7107         * object.h, threads.h: make include files compatible with C++
7108         (patch by Jerome Laban <jlaban@wanadoo.fr>).
7109
7110 2003-03-04  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7111
7112         * icall.c: Erased ToString helper functions for Double and Single.
7113         Now, that implementations ar all in managed code (Double and Single
7114         Formatters).
7115
7116 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
7117
7118         * appdomain.c: Added method for initializing the default context of
7119         a domain. Added internal call for getting the default context.
7120         * appdomain.h: Added context variable in MonoDomain struct.
7121         * domain.c: mono_domain_set also sets the default context of the domain
7122         * icall.c: Mapped internal method InternalGetDefaultContext.
7123         * object.c: mono_object_get_virtual_method returns always a remoting
7124         wrapper if the object is a transparent proxy.
7125         mono_runtime_invoke_array: when creating an object by calling the
7126         constructor, if the created object is a proxy, then the constructor should
7127         be called using the a remoting wrapper.
7128
7129 2003-03-03  Dick Porter  <dick@ximian.com>
7130
7131         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
7132         variable so it compiles on solaris.  Problem spotted by
7133         Christopher Taylor <ct@cs.clemson.edu>
7134
7135 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7136
7137         * appdomain.c:
7138         (get_info_from_assembly_name): don't leak value.
7139
7140         * icall.c:
7141         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
7142         result.
7143
7144 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
7145
7146         * assembly.c: export mono_image_load_references ().
7147         * class.c: handle function pointers. mono_class_from_name() now
7148         supports nested type names directly.
7149
7150 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
7151
7152         * reflection.h reflection.c: Encode already created dynamic methods 
7153         and fields correctly as a DEF instead of a REF.
7154
7155         * reflection.c: Get rid of the force_ref argument to 
7156         mono_image_typedef_or_ref since it was wrong in the first place.
7157
7158         * string-icalls.c: add error checking to string constructors according
7159         to the MSDN docs.
7160
7161         * reflection.c: Emit types in the order their TypeBuilders were 
7162         created. Previously, a new table index was assigned to each type before
7163         the tables were emitted. This was wrong because the signature blob
7164         might already refer to a type by its original table index.
7165
7166 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
7167
7168         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
7169         change.
7170         
7171 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7172
7173         * Makefile.am: make assemblies dir have \ instead of / on windows.
7174
7175 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
7176
7177         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
7178         iterate over the NESTEDCLASS table using a linear search since the
7179         table is not guaranteed to be sorted by the secondary key.
7180
7181         * class.c (mono_class_create_from_typedef): fixed up call to
7182         mono_metadata_nesting_typedef.
7183         
7184 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
7185
7186         * marshal.c (mono_string_to_byvalstr): clear the memory as
7187         suggested by Jerome Laban <jlaban@wanadoo.fr>
7188
7189 2003-02-26  Dick Porter  <dick@ximian.com>
7190
7191         * process.c: Cope with padding in .rsrc blocks
7192
7193 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7194
7195         * metadata.h: reverted the filter_len change, it breaks reflection
7196         
7197 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
7198
7199         * metadata.h: added a new field to store the filter_len
7200         
7201
7202 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
7203
7204         * reflection.c: handle custom attributes for types and members
7205         created with Reflection.Emit (bug#38422).
7206
7207 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
7208
7209         * reflection.c: define RTSpecialName automatically for constructors for
7210         compatibility with MS.NET.
7211
7212         * reflection.c (mono_reflection_create_runtime_class): initialize
7213         nested_in field of dynamically created classes.
7214
7215 2003-02-22  Martin Baulig  <martin@ximian.com>
7216
7217         * debug-mono-symfile.h: Incremented version number.
7218
7219 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7220
7221         * object.h icall.c process.c: fix warnings.
7222
7223 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
7224
7225         * appdomain.h appdomain.c:
7226         (mono_domain_try_type_resolve): split the 
7227         name_or_tb argument into a name and a tb argument.
7228         (mono_domain_has_type_resolve): new function to check whenever the
7229         application has registered a TypeResolve event handler.
7230         
7231         * icall.c reflection.h reflection.c: move the type resolve logic into
7232         mono_reflection_get_type () so it will be invoked when 
7233         Assembly::GetType () is called.
7234
7235         * reflection.c:
7236         (mono_reflection_get_type): renamed to get_type_internal.
7237         (mono_reflection_get_type): fixed type name generation so it works 
7238         for nested types too.
7239         (mono_reflection_get_type): call has_type_resolve () to avoid the 
7240         costly type name generation if there is no resolve event handler.
7241
7242 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7243
7244         * class.c, image.c: load exported types from file references.
7245
7246 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
7247
7248         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
7249           used to cache the managed methods used to create proxies and make 
7250           remote invocation of methods.
7251         * class.h: Added in MonoVTable a flag to indicate that a class needs 
7252           to be remotely created.
7253         * object.c: Modified the method mono_class_vtable(). It now initializes 
7254           the remote flag of the vtable. Modified mono_object_new_specific(), 
7255           so now it checks the remote flag.
7256         * icall.c: Added a couple of internal methods, one for enabling instance 
7257           creation interception for a type, and one for creating objects bypassing
7258           the remote check.
7259
7260 2003-02-18  Martin Baulig  <martin@ximian.com>
7261
7262         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
7263         New interncall to get a method's metadata token.
7264
7265         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
7266         New interncall for the debugger.
7267
7268 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
7269
7270         * class.c (mono_class_setup_vtable): allocate supertype array
7271
7272 2003-02-18  Martin Baulig  <martin@ximian.com>
7273
7274         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
7275
7276 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7277
7278         * reflection.c:
7279         (assembly_name_to_aname): jump over unknown properties (i've found
7280         something like: 'type, assembly, version=xxx, custom=null, public...',
7281         so now will ignore custom=null and still get the rest of the values).
7282
7283 2003-02-17  Dick Porter  <dick@ximian.com>
7284
7285         * threads.c: Have Thread.Start() wait for a semaphore to signal
7286         that the thread has set up all its local data.  This fixes bug
7287         34323, where Abort() raced the new thread's TLS data.
7288
7289         Also removes the handle_store() call from start_wrapper, because
7290         threads are now always created suspended and there is no longer a
7291         race between the parent and child threads to store the info.
7292
7293 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
7294
7295         * image.c: explain the #- heap issue in a message, hopefully
7296         avoiding FAQs on mono-list.
7297
7298 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7299
7300         * icall.c:
7301         (GetEntryAssembly): if the domain has not invoked
7302         AppDomain.ExecuteAssembly yet, return the assembly of the default
7303         AppDomain.
7304
7305 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
7306
7307         * class.c (mono_ldtoken): make it work in dynamic assemblies.
7308
7309 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
7310
7311         * metadata.c, reflection.c: simple speedup to type hash
7312         and equals code.
7313
7314 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
7315
7316         * image.c, image.h, class.c, assembly.c: move module loading
7317         to MonoImage. When loading metadata, consider alignemnet from
7318         the start of metadata, not from the metadata address in memory.
7319
7320 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
7321
7322         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
7323         AssemblyBuilder objects. Factored out custom attribute creation into
7324         a separate function.
7325         (create_custom_attr): new function to create custom attributes.
7326
7327 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
7328
7329         * Makefile.am: Got tired of typing the full pathname to pedump.
7330         Until there is another option, am installing this.
7331
7332 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
7333
7334         * class.c (class_compute_field_layout): always set field->parent 
7335         (mono_ldtoken): use mono_defaults.fieldhandle_class;
7336
7337 2003-02-11  Dick Porter  <dick@ximian.com>
7338
7339         * threads-types.h:
7340         * monitor.c: Rewrote Monitor, making lock much faster and
7341         Pulse/Wait work as specified.  Also uses much fewer handles, and only
7342         creates them as needed.
7343
7344         * exception.c: Added SynchronizationLockException
7345
7346         * threads.c: Deleted old Monitor implementation.  The new one is
7347         in a new file.
7348
7349 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7350
7351         * class.c: handled TypedReference type code. Set the correct size for
7352         class data. Setup interface_offsets for interface classes, too.
7353
7354 2003-02-09  Martin Baulig  <martin@ximian.com>
7355
7356         * debug-mono-symfile.h: Reflect latest symbol writer changes.
7357
7358 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
7359
7360         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
7361         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
7362         * object.c: fixed mono_object_get_virtual_method () for interfaces.
7363         * verify.c: check for code that runs after the end of the method.
7364
7365 2003-02-08  Pedro Mart�nez Juli�  <yoros@wanadoo.es>
7366
7367         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
7368         "System.Math::Round2".
7369         * sysmath.h: Added Floor, Round and Round2 definitions.
7370         * sysmath.c: Modified certain functions that were not 100% compliant
7371         with MS.NET (math precision) and added the implementation of Floor,
7372         Round and Round2.
7373
7374 2003-02-07  Martin Baulig  <martin@ximian.com>
7375
7376         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
7377
7378 2003-02-07  Martin Baulig  <martin@ximian.com>
7379
7380         * debug-mono-symfile.c: Reflected latest symwriter changes.
7381         (mono_debug_create_mono_symbol_file): Removed.
7382         (mono_debug_open_mono_symbol_file): Take an argument which
7383         specifies whether to create a dynamic symbol file.
7384
7385 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
7386
7387         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
7388
7389 2003-02-05  Martin Baulig  <martin@ximian.com>
7390
7391         * reflection.c (mono_image_build_metadata): Make this public,
7392         protect it against being called multiple times, don't create
7393         resources and don't build the compressed metadata here.
7394         (mono_image_create_pefile): Do this here.
7395
7396         * icall.c
7397         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
7398
7399 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7400
7401         * socket-io.c: fixed bug #36322.
7402
7403 2003-02-06  Piers Haken <piersh@friskit.com>
7404
7405         * appdomain.[ch]:
7406         * class.h:
7407         * debug-mono-symfile.c:
7408         * icall.c:
7409         * loader.c:
7410         * mono-config.c:
7411         * monosn.c:
7412         * reflection.c:
7413         * socket-io.c: warning cleanups
7414
7415 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
7416
7417         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
7418         function. works like remoting invoke, but does a check for the Proxy first.
7419
7420 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
7421
7422         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
7423
7424 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
7425
7426         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
7427         array of pointers.
7428         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
7429         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
7430
7431         * object.c (mono_store_remote_field_new): used by the new jit
7432         instead of mono_store_remote_field
7433         (mono_load_remote_field_new): used by the new jit
7434         instead of mono_load_remote_field
7435
7436 2003-02-05  Patrik Torstensson
7437
7438         * appdomain.c: changed unload to take the domain id instead
7439         of domain
7440         
7441         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
7442
7443
7444 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7445
7446         * appdomain.c: don't look for assemblies in ApplicationBase if
7447         PrivateBinPathProbe is set.
7448
7449 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7450
7451         * object.c: make the first argument in main_args contain the absolute
7452         path to the assembly. Fixes bug #37511.
7453
7454 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7455
7456         * icall.c: get correct UTC offset for countries not using daylight
7457         time saving. Fixes bug #30030.
7458
7459 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7460
7461         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
7462         and 1 are the family).
7463
7464 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
7465
7466         * icall.c (ves_icall_InternalExecute): removed wrong assertion
7467
7468         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
7469
7470 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
7471
7472         * reflection.c: added support for SignatureHelper tokens, which is
7473         needed by the Calli opcode.
7474
7475         * reflection.h: track changes to SignatureHelper class.
7476
7477         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
7478
7479 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7480
7481         * appdomain.c: fixed loading assemblies from PrivateBinPath.
7482
7483 2003-02-03  Patrik Torstensson
7484         * appdomain.[c|h], domain.c : 
7485          - Added support for getting a domain via domain id
7486          - Support for setting and getting domain from System.AppDomain 
7487            (used in cross appdomain channel)
7488          - Added support for get/set for a MonoAppContext on a thread 
7489            (Context class in System.Runtime.Remoting.Contexts),
7490          - Removed hack in Get/SetData and ExecuteAssembly.
7491         
7492         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
7493         the managed world to get control when a proxy is created.
7494
7495         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
7496         
7497 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
7498
7499         * icall.c
7500         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7501         Populate the codebase field as well.
7502
7503 2003-02-02  Martin Baulig  <martin@ximian.com>
7504
7505         * debug-mono-symfile.c
7506         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
7507         (mono_debug_symfile_add_method): Allow interncalls.
7508
7509 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7510
7511         * icall.c: throw parse exception if strtod fails or the string is empty.
7512
7513 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
7514
7515         * marshal.c: handle object type separately from defined
7516         class types.
7517
7518 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
7519
7520         * marshal.c: handle NATIVE_LPSTR for strings when it's
7521         explicitly specified.
7522
7523 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
7524
7525         * reflection.c, reflection.h, icall.c: setup the reflection
7526         handle cache for ModuleBuilders and AssemblyBuilders.
7527
7528 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
7529
7530         * reflection.c (reflection_methodbuilder_to_mono_method): set
7531         pinvoke flag
7532
7533 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7534
7535         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
7536
7537 2003-01-29  Dick Porter  <dick@ximian.com>
7538
7539         * threads.c: No need for the fake_thread kludge now that Thread
7540         doesn't run a class constructor
7541         
7542 2003-01-29  Dick Porter  <dick@ximian.com>
7543
7544         * threads.c: Use g_direct_hash instead of the rather bogus
7545         g_int_hash
7546
7547 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
7548
7549         * marshal.c (mono_marshal_get_native_wrapper): add check for null
7550         (fix pinvoke12.exe)
7551         (mono_marshal_get_struct_to_ptr): generate valid IL code
7552         (mono_marshal_get_ptr_to_struct): generate valid IL code
7553         (*): correctly set sig->pinvoke, we need to memdup the signature
7554         to do that
7555
7556 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7557
7558         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
7559         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
7560
7561 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7562
7563         * profiler.c: provide more callers information.
7564
7565 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
7566
7567         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
7568
7569         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
7570
7571         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
7572
7573 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7574
7575         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
7576         exception instead of going into an infinite loop on dates which it 
7577         can't yet handle.
7578
7579         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
7580         out-of-range exception if needed.
7581
7582         * class.c (mono_class_setup_vtable): allow a virtual method to provide
7583         an implementation for an interface method and to override an inherited
7584         method at the same time. 
7585         Imagine a scenario when a virtual method is used to override a
7586         virtual abstract method in a parent class, and this same method 
7587         provides an implementation for an method inherited from an interface. 
7588         In this case, the interface resolution code will set im->slot, which 
7589         means that the virtual method override pass will skip this method 
7590         which means a pointer to the abstract method inherited from the parent
7591         will remain in the vtable of this non-abstract class.
7592
7593         * class.c: (mono_class_setup_vtable): continue search for a real 
7594         method if only an abstract method is found.     
7595
7596 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7597
7598         * reflection.c: add size to encoding for ByValStr and ByValArray
7599         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
7600
7601 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * class.c (mono_class_setup_vtable): pass the override info as an
7604         argument.
7605
7606         * class.c (mono_class_setup_vtable): set the slot of overriding methods
7607         correctly.
7608         
7609         * reflection.c (ensure_runtime_vtable); add support for method 
7610         overrides.
7611         
7612 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7613
7614         * reflection.c (resolution_scope_from_image): Hack to work to work with
7615         dynamic assemblies.
7616
7617         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
7618         added a 'force_ref' argument to force this function to allways return 
7619         a TypeRef. This is needed by mono_image_get_memberref_token ().
7620         
7621 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7622
7623         * reflection.c (mono_image_get_type_info): interfaces really don't have
7624         a parent.
7625
7626         * reflection.c (mono_image_basic_init): fill out missing fields of
7627         image structure.
7628
7629         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
7630         dynamic assemblies. This is required so dynamic assemblies show up in
7631         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
7632         Type::GetType() etc. This is consistent with MS behaviour.
7633
7634         * image.c image.h reflection.c: add newly created classes to the name 
7635         cache so mono_class_get () will find them.      
7636
7637 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7638
7639         First part of changes to get IKVM.NET running under mono.
7640         
7641         * appdomain.h, appdomain.c: added new function 
7642         mono_domain_try_type_resolve() which will emit TypeResolve events. 
7643         This function will call AppDomain::DoTypeResolve to do the actual work.
7644
7645         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
7646         moved existing code dealing with dynamic tokens to a new function 
7647         called mono_reflection_lookup_dynamic_token (). This function will 
7648         raise TypeResolve events when appropriate. Since reflection.c is not 
7649         part of libmetadata, a new hook function called 
7650         mono_lookup_dynamic_token() is added to class.c which will call this.
7651
7652         * assembly.h assembly.c: make the invoke_load_hook function public,
7653         so it can be called for dynamic assemblies.
7654
7655         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
7656
7657         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
7658         type isn't found.
7659
7660         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
7661         MonoGHashTable, since it contains pointers to objects which the GC 
7662         needs to track.
7663
7664         * assembly.c (search_loaded): remove unused variable.
7665         
7666 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
7667
7668         * object.c: fixed issue exposed by gcc-generated IL programs
7669         that use RVA data for pointers.
7670
7671 2003-01-25  Martin Baulig  <martin@ximian.com>
7672
7673         * threads.c (start_wrapper): Moved the initialization of
7674         `start_func' above the mono_new_thread_init() call to which we
7675         pass it as argument.
7676
7677 2003-01-24  Martin Baulig  <martin@ximian.com>
7678
7679         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
7680         the MonoThread pointer.
7681
7682 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7683
7684         * icall.c: Rename `PowImpl' to Pow.
7685
7686 2003-01-23  Dick Porter  <dick@ximian.com>
7687
7688         * threads.c (start_wrapper): Create a Thread object if needed, so
7689         the Main() thread can do the class initialisation in a subthread
7690         that has been set up to allow managed code execution.
7691
7692         Pass the thread ID instead of the MonoThread pointer to the thread
7693         start and attach callbacks.  This change is required, because the
7694         jit thread start callback must be called _before_ the Thread
7695         object can be created.
7696         
7697         (mono_thread_init): Removed much object creation code that is no
7698         longer needed.  No managed code is called from here now.
7699
7700         * object.c (mono_runtime_exec_managed_code): Create a subthread
7701         for Main, and call back to the runtime to use it.
7702         Set the exit code when Main exits.
7703
7704         * gc.c: Make sure domain finalisation happens in a subthread.
7705         Re-enable threaded GC, fixing bug 31333 (again).
7706
7707         * environment.c: System.Environment internall calls (so far just
7708         ExitCode is here, the others are still in icall.c)
7709
7710         * appdomain.c (mono_runtime_cleanup): All threads running managed
7711         code should have finished before mono_runtime_cleanup() is
7712         reached, so no need to clean up threads.
7713
7714 2003-01-22  Martin Baulig  <martin@ximian.com>
7715
7716         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
7717         `gpointer func' arguments.      
7718         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
7719         but added `MonoThread *thread' argument.
7720         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
7721
7722         * threads.c (mono_new_thread_init): Added `gpointer func' argument
7723         and pass it to the mono_thread_start_cb callback.
7724         (mono_install_thread_callbacks): New public function to install a
7725         set of callbacks which are set by the debugger.
7726         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
7727
7728 2003-01-22  Martin Baulig  <martin@ximian.com>
7729
7730         * Makefile.am: Install debug-mono-symfile.h.
7731
7732 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
7733
7734         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
7735
7736 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
7737
7738         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
7739         * class.c (mono_ptr_class_get): correctly set access levels of pointers
7740         (mono_array_class_get): correctly set access levels of arrays
7741
7742 2003-01-20      Patrik Torstensson
7743         * image.h (MonoAssemblyName): changed major, minor, build, revision
7744         from signed to unsigned.
7745
7746 2003-01-20  sean kasun <skasun@azstarnet.com>
7747
7748         * reflection.c (load_cattr_value): Now this handles
7749         MONO_TYPE_SZARRAY.  Fixes bug #35629
7750
7751 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
7752
7753         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
7754         integer value
7755
7756 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7757
7758         * decimal.c: fixed bug #26056.
7759
7760 2003-01-17  Martin Baulig  <martin@ximian.com>
7761
7762         * gc.c: Raise an ExecutionEngineException instead of using g_error().
7763
7764 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7765
7766         * exception.[ch]:
7767         (mono_get_exception_type_initialization): new function.
7768
7769         * object.c: throw a TypeInitializationException when an exception is
7770         thrown invoking the class constructor.
7771
7772 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7773
7774         * reflection.c: fixed attribute reading.
7775
7776 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7777
7778         * icall.c:
7779         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
7780         provided, look for the type in the calling assembly and then in
7781         mscorlib; if the assembly name is provided, only try that one.
7782
7783 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
7784
7785         * object.c: register the vtable before there is a chance it's
7786         queried again recursively.
7787
7788 2003-01-13  Duncan Mak  <duncan@ximian.com>
7789
7790         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
7791         gc-internal.h. 
7792         
7793 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
7794
7795         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
7796
7797 2003-01-11  Martin Baulig  <martin@ximian.com>
7798
7799         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
7800         this to 20 for the release.
7801
7802 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
7803
7804         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
7805
7806         * loader.c (mono_method_get_marshal_info): bug fix
7807
7808         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
7809         structures with explicit layout
7810
7811 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7812
7813         * profiler.c: made the output more readable (and sorted). 
7814         Added caller information for the allocation profiler.
7815
7816 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
7817
7818         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
7819
7820 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7821
7822         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
7823         to get value types.
7824         
7825 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
7826
7827         * object.c, profiler.h, profiler.c, profiler-private.h:
7828         Added object allocation profiler.
7829
7830 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
7831
7832         * reflection.h, reflection.c: handle global methods.
7833         Compress blob entries.
7834
7835 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
7836
7837         * marshal.c: fix compilation.
7838
7839 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
7840
7841         * loader.c (mono_method_get_marshal_info): impl.
7842
7843         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
7844
7845 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7846
7847         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
7848         for reference types.
7849
7850 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
7851
7852         * loader.c: fixed off by one error in loaded parameter names.
7853
7854 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
7855
7856         * marshal.c (mono_marshal_get_icall_wrapper): like
7857         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
7858         instead of a MonoMethod.
7859
7860 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7861
7862         * decimal.c: fixed bug #36537.
7863
7864 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
7865
7866         * marshal.c: throw a missing method exception if a
7867         P/Invoke method is not found.
7868
7869 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7870
7871         * icall.c: allow a null this for constructors.
7872
7873 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
7874
7875         * icall.c: raise the proper exceptions if the arguments to the
7876         internal Invoke are incorrect.
7877
7878 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
7879
7880         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
7881
7882 2003-01-03  Martin Baulig  <martin@ximian.com>
7883
7884         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7885
7886 2002-12-31  Martin Baulig  <martin@ximian.com>
7887
7888         * debug-mono-symfile.c: Completely rewrote the type section.
7889         Instead of using individual malloc()ed fields, we use one big
7890         continuous memory area and offsets into this area.
7891         See the comments in the source code for details.
7892
7893 2002-12-30  Martin Baulig  <martin@ximian.com>
7894
7895         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
7896
7897 2002-12-30  Martin Baulig  <martin@ximian.com>
7898
7899         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
7900         line number table in this data blob instead of using an external
7901         pointer.
7902
7903 2002-12-28  Martin Baulig  <martin@ximian.com>
7904
7905         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7906
7907 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
7908
7909         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
7910         as a boxed return type.
7911
7912 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
7913
7914         * appdomain.c
7915         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
7916         g_build_filename to properly get separators on the filename created.
7917
7918         * object.h: Small change, introduce MonoMarshalByRefObject to
7919         track the layout of that structure in the C# universe as we make
7920         changes there.
7921
7922 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
7923
7924         * object.c: removed assert to allow static fields on interfaces.
7925         * loader.c: a TypeSpec may be used for any type, not just arrays.
7926
7927 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
7928
7929         * class.c, class.h: added mono_class_array_element_size ().
7930         Ignore static methods in interfaces.
7931
7932 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7933
7934         * threads.c: fixed the build under cygwin.
7935
7936 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
7937
7938         * reflection.c: handle nullref constants. Allocate keys for
7939         reflection handles with the GC.
7940
7941 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7942
7943         * threads.c, threads.h: added mono_thread_get_abort_signal()
7944         to get a suitable signal for thread abort.
7945
7946 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7947
7948         * metadata.c: fix handling of ExportedType table.
7949
7950 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7951
7952         * icall.c: added WriteWindowsDebugString internal call.
7953
7954 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7955
7956         * reflection.h: added fields to match C# implementation.
7957
7958 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7959
7960         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
7961
7962 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
7963
7964         * gc.h, gc-internal.h: Rename header for GC internal calls to
7965         gc-internal.h from gc.h as to not clash with Boehm GC having its
7966         header installed as <gc.h> in outside include paths.
7967         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
7968         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
7969
7970 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7971
7972         * icall.c: assign minor, build and revision in FillName.
7973
7974 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
7975
7976         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
7977         Added support for running code generated by Reflection.Emit.
7978
7979 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7980
7981         * appdomain.c: check for NULL argument in LoadFrom.
7982
7983 2002-12-10  Dick Porter  <dick@ximian.com>
7984
7985         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
7986
7987 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7988
7989         * appdomain.c: fix buglet when building exe file name.  Handle full
7990         assembly name (needed after latest changes to AssemblyName).
7991         * image.c:
7992         (mono_image_close): free some hashtables.
7993
7994 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
7995
7996         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
7997         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
7998         on some systems (redhat 7.3) 
7999
8000 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
8001
8002         * threads.c: delete the critical section of a sync block,
8003         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
8004
8005 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
8006
8007         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
8008
8009 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8010
8011         * appdomain.[ch]: handle the assembly preload event to try loading the
8012         assemblies using the paths we have in the current domain.
8013
8014         * assembly.[ch]: created an assembly preload hook that is called to try
8015         loading the assembly by other means that the ones provided here.
8016
8017         * domain.c: initialize the domain search path.
8018
8019         From now on, assemblies (TODO: except corlib and System) are loaded
8020         according to these rules when using mono_assembly_load ():
8021
8022                 1. It tries to load the assembly from the ApplicationBase
8023                 of the current domain appending .dll and .exe (TODO: have to
8024                 try loading from name/name.dll and name/name.exe).
8025
8026                 2. It tries the search path specified in PrivateBinPath for the
8027                 current domain (if any).
8028
8029                 3. Previous behavior.
8030
8031 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
8032
8033         * icall.c: implemented GetInterfaceMap() related icall.
8034         * domain.c, loader.h: load MethodInfo in mono_defaults.
8035
8036 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
8037
8038         * gc.c: disable the finalizer thread for now, untill all the issues
8039         with it are resolved.
8040
8041 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
8042
8043         * string-icalls.c: handle embedded nulls in string ctor when the
8044         length is specified.
8045
8046 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
8047
8048         * class.c: look for explicit interface implementation in parent
8049         classes, too.
8050
8051 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
8052
8053         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
8054
8055 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
8056
8057         * gc.c: protect handles with a critical section.
8058
8059 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8060
8061         * icall.c:
8062         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
8063         parameters. If no assembly specified, try getting the type from all
8064         the assemblies in the current domain, else, load the assembly and get
8065         the type from it.
8066
8067 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8068
8069         * marshal.c: applied patch from Aleksey Demakov that fixes
8070         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
8071
8072 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8073
8074         * icall.c: fixed get_location.
8075
8076 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
8077
8078         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
8079         declarations to make it work with older gcc. 
8080
8081         * loader.c (mono_get_method): set signature->pinvoke for native calls
8082
8083 2002-11-20  Dick Porter  <dick@ximian.com>
8084
8085         * threads.c (mono_thread_init): Set the main thread's handle
8086
8087 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
8088
8089         * gc.c: allow compilation without GC support. Changed to match the
8090         mono coding style.
8091
8092 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
8093
8094         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
8095
8096 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
8097
8098         * reflection.c: set a public key token on the core assemblies.
8099
8100 2002-11-18  Dick Porter  <dick@ximian.com>
8101
8102         * threads.c: Split out some thread initialisation so that other
8103         files can set the start callback function.
8104
8105         * gc.c: Run finalisers in a separate thread, to avoid stack
8106         overflow.  Fixes bug 31333.
8107
8108         * appdomain.c: Set up GC finalisation thread.
8109
8110         * reflection.c: 
8111         * object.c: 
8112         * domain.c: Use gc.h macros for GC_malloc
8113         
8114 2002-11-15  Dick Porter  <dick@ximian.com>
8115
8116         * threadpool.c: 
8117         * threads.c:
8118         * appdomain.c: Removed mono_runtime_init_with_attach(),
8119         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
8120         merging the extra parameter with the existing function.  Removed
8121         unneeded code in mono_thread_attach().
8122
8123 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
8124
8125         * image.c (mono_image_loaded_by_guid): a method to get loaded
8126         images by guid. 
8127         (load_metadata_ptrs): we store the guid as string.
8128
8129 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
8130
8131         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
8132
8133         * metadata.c (mono_guid_to_string): imported method form Zoltan
8134         Varga (slightly modified)
8135
8136         * assembly.c (mono_assembly_open): load precompiled code
8137
8138         * loader.h (MonoMethod): we store the method token for use in the
8139         aot compiler. 
8140
8141 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8142
8143         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
8144         the hook function called when an assembly is loaded.
8145         
8146         * domain.c: Modified file.
8147         (mono_domain_assembly_load): removed hash table insertion of assemblies.
8148
8149         Fixes bug #33196.
8150
8151 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
8152
8153         * reflection.c: Map PEFileKind to the value expected by the WinNT
8154         image loader. 
8155
8156 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8157
8158         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
8159         Read until the buffer is filled completely.
8160
8161 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8162
8163         * icall.c: implemented MonoType.InternalGetEvent ().
8164
8165 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8166
8167         * appdomain.c: implemented InitAppDomainSetup. Delayed
8168         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
8169         the entry_assembly.
8170
8171         * assembly.c: base_dir is now an absolute path ending with
8172         G_DIR_SEPARATOR.
8173
8174         * icall.c: modified get_location according to the above changes.
8175
8176         * object.c: init AppDomain.SetupInformation for the default domain after
8177         we have the entry assembly.
8178
8179         * domain.c: when unloading a domain, setup = NULL.
8180
8181 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
8182
8183         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
8184
8185 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
8186
8187         * object.h, object.c: introduced mono_object_get_virtual_method ()
8188         to lookup the method invoked on an object when a callvirt is done on
8189         a method.
8190         * icall.c: make MethodInfo::Invoke() always do a virtual call.
8191
8192 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8193
8194         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
8195         current domain when loaded an assembly and failed to load it.
8196
8197         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
8198
8199 2002-10-31  Dick Porter  <dick@ximian.com>
8200
8201         * icall.c: 
8202         * file-io.h: 
8203         * file-io.c: Return the error status in a parameter, as the
8204         GetLastError() value has long since been blown away if we try and
8205         look it up in a subsequent internal call invocation.  Delete the
8206         GetLastError() internal call, because it's useless.
8207
8208 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
8209
8210         * class.[ch]: added cast_class to fix bug 29517
8211
8212 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
8213
8214         * marshal.c: create valid IL code in the filter clause:
8215         the new JIT is less forgiving:-)
8216
8217 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8218
8219         * icall.c: removed get_property internal call.
8220
8221 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
8222
8223         * appdomain.h domain.c: Added an ID to appdomains.
8224         
8225         * threads.c threads.h icall.c: Implement icall
8226         Thread:GetDomainID(), and remove unused icall 
8227         CurrentThreadDomain_internal.
8228
8229 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8230
8231         * icall.c: Don't recurse through the base types in GetConstructor.
8232         Fixes bug #32063. 
8233
8234 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
8235
8236         * mempool.h, mempool.c: added mono_mempool_empty() and
8237         mono_mempool_stats().
8238
8239 2002-10-23  Dick Porter  <dick@ximian.com>
8240
8241         * file-io.c: 
8242         * file-io.h: 
8243         * icall.c: Added MonoIO.GetFileType internal call
8244
8245 2002-10-17  Dick Porter  <dick@ximian.com>
8246
8247         * appdomain.c (mono_runtime_cleanup): Don't signal the async
8248         delegate semaphore before waiting for all threads to finish,
8249         because new threads can also call async delegates.  Fixes bug
8250         32004.
8251
8252         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
8253         of 3 seconds, in case another async job is queued.  (This part is
8254         needed because the bug fix reintroduced the 3s exit lag.)  This
8255         makes the mono_runtime_shutdown flag superfluous.
8256
8257 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
8258
8259         * reflection.c: include ehader size in method section headers.
8260         Really check for suplicated modules entries.
8261
8262 2002-10-17  Martin Baulig  <martin@gnome.org>
8263
8264         * debug-mono-symfile.c: Added back support for locals.
8265
8266 2002-10-14  Martin Baulig  <martin@gnome.org>
8267
8268         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
8269         MONO_TYPE_VOID.
8270
8271 2002-10-14  Martin Baulig  <martin@gnome.org>
8272
8273         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
8274         mono_class_get() instead of looking in the class cache. 
8275
8276 2002-10-13  Martin Baulig  <martin@gnome.org>
8277
8278         * debug-mono-symfile.c: Set version number to 28, include the
8279         signature in method names.
8280
8281 2002-10-13  Martin Baulig  <martin@gnome.org>
8282
8283         * debug-mono-symfile.h: Set version number to 27.
8284
8285 2002-10-11  Martin Baulig  <martin@gnome.org>
8286
8287         * gc.c: Don't register/unregister NULL pointers as disappearing links.
8288
8289 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8290
8291         * metadata.c, metadata.h: added helper function to allocate signatures.
8292
8293 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8294
8295         * icall.c: added internal call to get the location of machine.config.
8296
8297 2002-10-08  Martin Baulig  <martin@gnome.org>
8298
8299         * debug-mono-symfile.c: Ignore classes with a pending init for the
8300         moment.
8301
8302 2002-10-03  Dick Porter  <dick@ximian.com>
8303
8304         * threads.c: Freebsd pthread_t is a pointer
8305
8306 2002-10-03  Dick Porter  <dick@ximian.com>
8307
8308         * socket-io.c: Implemented GetHostName_internal
8309
8310 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8311
8312         * mono-config.c:
8313         (mono_config_parse_file): don't leak the text.
8314
8315 2002-10-02  Martin Baulig  <martin@gnome.org>
8316
8317         * debug-mono-symfile.c: Added support for methods.
8318
8319 2002-10-01  Martin Baulig  <martin@gnome.org>
8320
8321         * debug-mono-symfile.c: Don't emit methods and line numbers for
8322         the dynamic symbol file, just write the type table.  We can easily
8323         have an external helper program which creates a symbol file for an
8324         IL file.        
8325
8326 2002-10-01  Dick Porter  <dick@ximian.com>
8327
8328         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
8329         Only add the handle to the cleanup array when we're about to
8330         launch the thread.  Bug 31425 deadlocked when the test was run on
8331         mono under w32.
8332
8333 2002-10-01  Martin Baulig  <martin@gnome.org>
8334
8335         * debug-mono-symfile.c: Added support for properties.
8336
8337 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8338
8339         * reflection.c: unaligned store fix from Mark Crichton
8340         <crichton@gimp.org>.
8341
8342 2002-09-27  Martin Baulig  <martin@gnome.org>
8343
8344         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
8345         New interncall.
8346
8347 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
8348
8349         * assembly.h, assembly.c: use a sane API to hook into the assembly
8350         loading process instead of a useless special-purpouse hack
8351         (ngen needs a hook, too, for example).
8352
8353 2002-09-27  Dick Porter  <dick@ximian.com>
8354
8355         * threads.c (mono_thread_init): Call GetCurrentProcess() so
8356         io-layer can set up some process handle info.  Not needed on w32,
8357         but doesn't hurt either.
8358
8359         * process.c: Pass the program name in the second parameter to
8360         CreateProcess, so the path is searched.  Include the working
8361         directory. Implemented process name, process enumeration, and some
8362         process detail internal calls.
8363         
8364         * icall.c: Added internal calls for process lookup, and some
8365         process details
8366
8367 2002-09-26  Martin Baulig  <martin@gnome.org>
8368
8369         * assembly.c (mono_install_open_assembly_hook): New global
8370         function to install a function to be invoked each time a new
8371         assembly is loaded.
8372         (mono_assembly_open): Run this callback function if set.
8373
8374         * debug-mono-symfile.c: Put back line numbers for the dynamic
8375         symbol file and also record the .il file as source file.  This
8376         allows us to install the temporary symbol file as `file.dbg' just
8377         like a compiler-generated one.
8378
8379 2002-09-26  Nick Zigarovich <nick@chemlab.org>
8380
8381         * Corrected typo in gc.c (BOHEM vs BOEHM).
8382
8383 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8384
8385         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
8386         GetProperties. Also avoid calling g_slist_length in GetProperties and
8387         GetMethods.
8388
8389 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8390
8391         * reflection.c: avoid unaligned stores (bug spotted by
8392         Mark Crichton  <crichton@gimp.org>).
8393
8394 2002-09-25  Martin Baulig  <martin@gnome.org>
8395
8396         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
8397         instead of guint64 for addresses and added prologue/epilogue info.
8398
8399 2002-09-25  Martin Baulig  <martin@gnome.org>
8400
8401         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
8402         store line number info.  For the dynamic symbol file, we only need
8403         to provide the JIT generated dynamic line number info for the dynamic
8404         symbol file.
8405
8406 2002-09-25  Martin Baulig  <martin@gnome.org>
8407
8408         * debug-mono-symfile.h: Incremented version number.
8409
8410 2002-09-24  Martin Baulig  <martin@gnome.org>
8411
8412         * class.c (mono_debugger_class_init_func): New global function
8413         pointer variable.
8414         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
8415         call it.
8416
8417         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
8418         function.  This is called via the mono_debugger_class_init_func
8419         hook to add all types to the dynamic type table.
8420         (ves_icall_MonoDebugger_GetType): New interncall to get a class
8421         from its metadata token.
8422
8423         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
8424         New interncall for the debugger.
8425
8426 2002-09-24  Nick Drochak <ndrochak@gol.com>
8427
8428         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
8429         before using it in case it is null.
8430         
8431 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8432
8433         * metadata.c: allow custom modifiers in local var signatures
8434         (bug spotted by Zoltan Varga).
8435
8436 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8437
8438         * class.c: deal with the <Module> class that may have a NULL vtable.
8439         Eliminate warnings.
8440
8441 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8442
8443         * image.c, image.h: more strong name helpers.
8444         * monosn.c: more work: convert pem keys to cryptoapi format.
8445
8446 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8447
8448         * string-icalls.c: speedup IndexOf.
8449
8450 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8451
8452         * icall.c: updates from Zoltan.2.Varga@nokia.com.
8453
8454 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8455
8456         * icall.c: cleanup: use mono_object_domain ().
8457
8458 2002-09-23  Martin Baulig  <martin@gnome.org>
8459
8460         * debug-mono-symfile.c: Improved type support.
8461
8462 2002-09-22  Martin Baulig  <martin@gnome.org>
8463
8464         * debug-mono-symfile.c: Added support for reference types and strings.
8465
8466 2002-09-22  Martin Baulig  <martin@gnome.org>
8467
8468         * debug-mono-symfile.c: Started to work on the type table.
8469
8470 2002-09-21  Martin Baulig  <martin@gnome.org>
8471
8472         * debug-mono-symfile.c: Largely reworked the symbol table format.
8473         The symbol table is now incrementally updated each time a new
8474         method is added.  We're now also using our own magic and version
8475         so that you don't need to recompile all your classes if the
8476         dynamic table changes.
8477         (mono_debug_update_mono_symbol_file): Removed.
8478         (mono_debug_symfile_add_method): New function to add a method.
8479
8480 2002-09-21  Martin Baulig  <martin@gnome.org>
8481
8482         * icall.c
8483         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
8484         New interncall.
8485
8486         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
8487         New interncall to get a method from its metadata token.
8488
8489 2002-09-21  Martin Baulig  <martin@gnome.org>
8490
8491         * debug-mono-symfile.c: Create type table.
8492
8493 2002-09-20  Martin Baulig  <martin@gnome.org>
8494
8495         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
8496
8497 2002-09-20  Martin Baulig  <martin@gnome.org>
8498
8499         * debug-mono-symfile.c: Provide information about params and locals.
8500
8501 2002-09-20  Martin Baulig  <martin@gnome.org>
8502
8503         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
8504         New interncall.
8505
8506         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
8507         interncall to get a method from its metadata token.
8508
8509 2002-09-20  Martin Baulig  <martin@gnome.org>
8510
8511         * debug-mono-symfile.c: Added a few checks for method->header
8512         being non-NULL.  This should never happen, but for the moment
8513         let's use a g_warning() rather than a g_assert().
8514
8515 2002-09-19  Mark Crichton  <crichton@gimp.org>
8516
8517         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
8518         even if support for it isn't present.  Added an #ifdef to fix this.
8519
8520         * socket-io.c: Added checks back for Solaris support.
8521
8522 2002-09-19  Martin Baulig  <martin@gnome.org>
8523
8524         * debug-mono-symfile.c (read_string, write_string): Reflect latest
8525         changes in the symbol file format.
8526
8527 2002-09-18  Martin Baulig  <martin@gnome.org>
8528
8529         * debug-mono-symfile.c: Set version number to 21.
8530
8531 2002-09-18  Dick Porter  <dick@ximian.com>
8532
8533         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
8534         on netbsd.  Fixes bug 30051.
8535
8536 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8537
8538         * reflection.c:
8539         (set_version_from_string): little fix.
8540
8541 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8542
8543         * monosn.c, Makefile.am: added strong name utility.
8544         * reflection.h, reflection.c: implemented delayed signing,
8545         locale, version and hash id assembly attributes.
8546
8547 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8548
8549         * loader.c, metadata.c: load param attributes in signatures.
8550
8551 2002-09-16  Martin Baulig  <martin@gnome.org>
8552
8553         * debug-mono-symfile.c: Added string table with all method names.
8554
8555 2002-09-14  Martin Baulig  <martin@gnome.org>
8556
8557         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
8558         fast method lookup.
8559
8560 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8561
8562         * reflection.c: record the public key token of referenced assemblies.
8563
8564 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8565
8566         * image.c, image.h: added functions to get the strong name and the
8567         public key of an assembly.
8568         * pedump.c: use them.
8569
8570 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
8571
8572         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
8573
8574 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
8575
8576         * marshal.c (mono_marshal_get_managed_wrapper): Added
8577         MONO_TYPE_BOOLEAN 
8578
8579 2002-09-11  Martin Baulig  <martin@gnome.org>
8580
8581         * gc.c: Call GC_unregister_disappearing_link() on all links when
8582         finalizing them, this is necessary to aviod a crash in boehm's
8583         finalize handler.
8584
8585 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8586
8587         * gc.c: handle GetTarget for finalized objects spotted and fixed by
8588         nick@chemlab.org.
8589
8590 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8591
8592         * icall.c: implemented MonoType::Module.
8593         * reflection.c, reflection.h: mono_module_get_object () from
8594         Tomi Pakarinen <tomi.pakarinen@welho.com>.
8595
8596 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8597
8598         * icall.c: ignore overridden methods in GetMethods ().
8599         Fix for FieldInfo::SetValue().
8600         * object.c: handle float/double in runtime invoke.
8601
8602 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8603
8604         * object.c: allow a constructor to be called again on an object.
8605
8606 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8607
8608         * class.h, class.c: move field layout code to it's own function and
8609         export it. Get an interface id earlier. Move fields in MonoClass
8610         so they are more cache friendly and align the bitfields.
8611         * loader.c: temporary handle get_param_names() for a runtime method.
8612         * reflection.c, reflection.h: more code to handle runtime creation of
8613         types.
8614
8615 2002-09-09  Martin Baulig  <martin@gnome.org>
8616
8617         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
8618         signature with the pinvoke field being set for the actual call.
8619
8620 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8621
8622         * icall.c: removed some unused icalls. Start of map of glib charsets
8623         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
8624
8625 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8626
8627         * debug-helpers.c: break infinite loop (found and fixed by
8628         Holger Arnold <harnold@gmx.de>).
8629
8630 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8631
8632         * icall.c: target may be null in create_delegate.
8633
8634 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8635
8636         * marshal.c: handle a boolean return type.
8637
8638 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8639
8640         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
8641
8642 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8643
8644         * gc.c: fix weakreferences.
8645
8646 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8647
8648         * icall.c: added icall to get default codepage.
8649
8650 2002-09-03  Dick Porter  <dick@ximian.com>
8651
8652         * threads.h: 
8653         * threads.c: Use MonoThread instead of MonoObject where
8654         apropriate.
8655
8656         Store running thread objects in a hash table, so that we have all
8657         the info to hand when waiting for them to finish
8658         (means we don't need OpenThread() any more, so mingw builds should
8659         be fully functional again.)
8660
8661         * verify.c:
8662         * object.h: Added thread ID to MonoThread
8663
8664 2002-09-03  Martin Baulig  <martin@gnome.org>
8665
8666         * icall.c (System.Reflection.Assembly::get_location): New interncall.
8667
8668 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8669
8670         * icall.c: fixed leak in get_temp_path. Thanks lupus.
8671
8672 2002-09-03  Martin Baulig  <martin@gnome.org>
8673
8674         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
8675         argument to store the end address of the disassembled instruction.
8676
8677         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
8678         here from debug-symfile.h.
8679         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
8680         JIT into this struct.
8681         (MonoSymbolFile): Added `char *image_file' field.
8682         (MonoDebugGetMethodFunc): Removed.
8683         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
8684         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
8685         (mono_debug_find_method): New method.
8686
8687         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
8688         create a full symbol file.
8689         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
8690         and static symbol files.
8691         (mono_debug_find_method): The symbol file keeps an internal method hash,
8692         call this to get a MonoDebugMethodInfo from a MonoMethod.
8693
8694         * debug-symfile.[ch]: Removed.
8695
8696 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
8697
8698         * image.c (do_mono_image_open): Remove linker version check.
8699
8700 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
8701
8702         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
8703         wrappers for instance methods.
8704         
8705 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8706
8707         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
8708
8709 2002-08-28  Dick Porter  <dick@ximian.com>
8710
8711         * Makefile.am: Export HOST_CC for w32 builds
8712
8713 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8714
8715         * file-io.c process.c: MonoString are null terminated, no
8716         need for mono_string_to_utf16() anymore.
8717
8718 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8719
8720         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
8721
8722 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
8723
8724         * icall.c, reflection.h: speedup System.MonoType.
8725
8726 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8727
8728         * reflection.c: allow null as the value of a string argument in
8729         custom attributes constructors.
8730
8731 2002-08-27  Martin Baulig  <martin@gnome.org>
8732
8733         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
8734         `trampoline_address' field.
8735
8736 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
8737
8738         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
8739         check (fixes bug #29486) 
8740
8741 2002-08-27  Martin Baulig  <martin@gnome.org>
8742
8743         * debug-mono-symfile.c: Changed the file format in a way that allows us
8744         open it read-only and to use a specially malloced area for all the
8745         dynamic data.  We can now also generate a symbol file on-the-fly if we're
8746         debugging IL code and there is no MCS generated symbol file for it.
8747
8748 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8749
8750         * object.c: added a define for a good string and array
8751         creation speedup (not enabled by default because we need to deal with
8752         the synch stuff).
8753
8754 2002-08-26  Martin Baulig  <martin@gnome.org>
8755
8756         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
8757         function to create a dynamic symbol file.  This is used by the
8758         debugger to create a symbol file for IL code on-the-fly.
8759
8760 2002-08-26  Martin Baulig  <martin@gnome.org>
8761
8762         * loader.c (mono_lookup_pinvoke_call): Include the error message
8763         from g_module_error() in the error message.
8764
8765 2002-08-24  Martin Baulig  <martin@gnome.org>
8766
8767         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
8768         function to update the symbol file.  The symbol file is mmap()ed
8769         writable, but private.  This allows us to install the symbol file
8770         together with the assembly.
8771
8772 2002-08-24  Martin Baulig  <martin@gnome.org>
8773
8774         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
8775         but they can read the new symbol file format which mcs is now creating.
8776
8777         * debug-symfile.c (mono_debug_find_source_location): Moved to
8778         debug-mono-symfile.c; this is now operating on the new symbol file.
8779
8780 2002-08-23  Martin Baulig  <martin@gnome.org>
8781
8782         * debug-helpers.c (mono_method_desc_from_method): New function to get
8783         a MonoMethodDesc from a MonoMethod.
8784
8785 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8786
8787         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
8788         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
8789
8790 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
8791
8792         * string-icalls.[ch]: make helper methods static.
8793
8794 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8795
8796         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
8797         types to it and to SetValueInternal.
8798
8799         * object.c: Moved handle_enum label to its proper place. This was the
8800         f... bug! ;-)
8801
8802         This time i compiled mcs and gtk-sharp and they both work.
8803
8804 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8805
8806         * icall.c: reverted partially my previous patch until 
8807         object.c:set_value handles enums correcly.
8808
8809 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8810
8811         * icall.c:
8812         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
8813         (ves_icall_System_Environment_get_MachineName): removed warning when
8814         compiling under cygwin.
8815
8816 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8817
8818         * object.c: fixed field_get_value() for reference types.
8819
8820 2002-08-22  Dick Porter  <dick@ximian.com>
8821
8822         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
8823         Don't free a buffer while it's still needed.  Patch from Jonathan
8824         Liger <Jonathan.liger@wanadoo.fr>
8825
8826 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
8827
8828         * icall.c (ves_icall_System_Environment_get_Platform): Add new
8829         internal call.
8830
8831 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
8832
8833         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
8834         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
8835
8836         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
8837         we call unmanaged code which throws exceptions.
8838
8839 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8840
8841         * appdomain.h: added per-domain entry_assembly.
8842         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
8843         arguments.
8844         * icall.c: Assembly::GetEntryAssembly icall.
8845         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
8846         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
8847
8848 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8849
8850         * appdomain.h, gc.c: added mono_domain_finalize ().
8851
8852 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8853
8854         * object.c:
8855         (mono_print_unhandled_exception): changed g_warning by g_printerr
8856         because g_log has a 1024 characters limit (yeah, i got a big stack
8857         trace). Don't print exception name, that should be in ToString 
8858         returned string.
8859
8860 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8861
8862         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
8863         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
8864
8865 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8866
8867         * object.c:
8868         (mono_print_unhandled_exception): after previous commit, i realized
8869         that MS calls ToString on the exception. I changed this function to
8870         do that. This way we get stack_trace for free.
8871
8872 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8873
8874         * object.c:
8875         (mono_print_unhandled_exception): invoke Message property instead of
8876         getting 'message' field from Exception. Don't allocate memory for
8877         'trace' and 'message' if not needed.
8878
8879 2002-08-18  Dick Porter  <dick@ximian.com>
8880
8881         * unicode.c: Fix asserts to match Encoder.cs checks
8882
8883 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8884
8885         * marshal.c: fix unaligned store issue and a few wrong
8886         opcode argument types.
8887
8888 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8889
8890         * icall.c: added GetUninitializedObjectInternal internal call.
8891
8892 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
8893
8894         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
8895         to the right domain.
8896
8897 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
8898
8899         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
8900
8901         * class.c (class_compute_field_layout): set blittable to false for Strings
8902
8903         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
8904
8905 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8906
8907         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
8908         first chunk of code to create types at runtime. Code to
8909         handle ReflectedType/DeclaringType. Make reflection handles
8910         domain specific.
8911
8912 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
8913
8914         * class.c: set correct name in arrays.
8915
8916 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
8917
8918         * appdomain.c (mono_domain_transfer_object): make it work with
8919         valuetypes. bug fixes.
8920
8921 2002-08-12  Dick Porter  <dick@ximian.com>
8922
8923         * object.h: Rename some parameters to avoid c++ keywords (Patch
8924         from Joseph Wenninger <kde@jowenn.at>)
8925
8926 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
8927
8928         * icall.c: added icall to implement Assembly.GetFile*.
8929
8930 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8931
8932         * reflection.h, reflection.c: code to embed managed resources.
8933
8934 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8935
8936         * class.c: move all the type size stuff into
8937         class_compute_field_layout().
8938
8939 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8940
8941         * class.c: ensure enums have always the correct instance size.
8942         * unicode.c: remove wrong assert.
8943
8944 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8945
8946         * assembly.c: fix mem corruption issue.
8947         * image.h, image.c: added mono_image_get_resource () to access
8948         managed resources.
8949         * icall.c: implemented Assembly.EntryPoint property and some
8950         Managed Resources related internalcalls.
8951
8952
8953 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8954
8955         * image.c, image.h: impemented mono_image_get_entry_point ().
8956         * appdomain.c: use mono_image_get_entry_point.
8957
8958 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8959
8960         * reflection.c: support the object type argument when loading
8961         custom attributes.
8962
8963 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
8964
8965         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
8966         String as return type.
8967
8968 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
8969
8970         * reflection.c: fix encoding of named args for custom attrs to match
8971         the ms implementation. Read them back when instantiating custom
8972         attributes.
8973
8974 2002-08-02  Radek Doulik  <rodo@ximian.com>
8975
8976         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
8977         by Dietmar as quick fix
8978         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
8979         16 as stack size, used on more places as quick fix before Dietmar
8980         will fix it properly
8981
8982 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8983
8984         * object.h, object.c: added accessors for fields and properties.
8985
8986 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8987
8988         * class.c, class.h: made mono_class_get_field_from_name ()
8989         loop on parent types.
8990         Added mono_class_get_property_from_name ().
8991
8992 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8993
8994         * class.c, class.h: move the code to setup the type vtable in its own
8995         function so that it can be reused also for types created at runtime.
8996         Eliminate the "class" identifier from the header file.
8997         * reflection.c: setup the vtable for enums so that we can create
8998         objects for use in SetConstant ().
8999
9000 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
9001
9002         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
9003         instead of the delegate itself as this pointer (bug #28383)
9004
9005 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
9006
9007         * marshal.c (mono_marshal_get_managed_wrapper): added return type
9008         conversions.
9009
9010 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9011
9012         * loader.c: don't set the pinvoke bit on icalls.
9013
9014 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
9015
9016         * debug-helpers.c (mono_method_full_name): only print a number to
9017         indicate wrapper type (so that the output is more readable in traces).
9018
9019 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
9020
9021         * class.c (mono_class_init): include method override patch from Paolo
9022
9023 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
9024
9025         * icall.c: fixed GetTypeCode().
9026
9027 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
9028
9029         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
9030         use real delegate invoke function to make it work with multicast
9031         delegates (fix bug# 28291).
9032
9033 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9034
9035         * object.c: load constant strings.
9036
9037 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9038
9039         * reflection.c: no magic numbers.
9040         * tabledefs.h: security action enum.
9041
9042 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9043
9044         * assembly.c: fix possible memory corruption.
9045
9046 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9047
9048         * reflection.h, reflection.c: added support for linking resources.
9049         * verify.c: check we have an updated corlib.
9050
9051 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
9052
9053         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
9054         string arrays.
9055         (mono_marshal_string_array): null terminate unmanaged string arrays.
9056         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
9057
9058 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9059
9060         * icall.c: Type.GetType () can now return also types from the
9061         calling assembly.
9062
9063 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9064
9065         * loader.h, loader.c: stack walking support.
9066         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
9067         GetCallingAssembly.
9068
9069 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
9070
9071         * marshal.c: added optimisations for blittable types 
9072
9073         * class.c (mono_array_class_get): do not set blittable attribute on arrays
9074         (mono_class_setup_mono_type): set blittable attribute for single
9075         and double.
9076
9077         * marshal.c (mono_string_utf8_to_builder): impl.
9078         (mono_string_builder_to_utf8): impl.
9079         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
9080
9081 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
9082
9083         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
9084         (mono_marshal_get_managed_wrapper): impl. byref types
9085
9086 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9087
9088         * icall.c:
9089         (search_method): don't display debug message. 
9090
9091 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9092
9093         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
9094
9095 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
9096
9097         * appdomain.c: set the missing filename when throwing exception.
9098
9099 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
9100
9101         * metadata.c (mono_type_size): code cleanup
9102         (mono_type_stack_size): removed some test code
9103
9104 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
9105
9106         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
9107         mono_get_exception_file_not_found now.
9108
9109         * exception.c (mono_exception_from_name_two_strings): New version
9110         that will call a constructor with two string arguments. 
9111         (mono_get_exception_file_not_found): New helper routine, used to
9112         report file-not-found errors.
9113
9114 2002-07-20  Dick Porter  <dick@ximian.com>
9115
9116         * process.h:
9117         * process.c: Pass file handles to CreateProcess
9118         
9119         * icall.c:
9120         * file-io.h:
9121         * file-io.c: Implemented CreatePipe
9122
9123 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9124
9125         * metadata.c (mono_get_param_info): set alignment for value types
9126
9127 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9128
9129         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
9130         Constify mono_domain_assembly_open().
9131         * loader.c: handle null namespace in icalls.
9132
9133 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
9134
9135         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
9136         (emit_str_to_ptr_conv): marshal object as structs
9137
9138         * metadata.c (mono_type_to_unmanaged): marshal object as structs
9139
9140         * marshal.c (mono_marshal_get_runtime_invoke): support value types
9141
9142 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
9143
9144         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
9145         (mono_marshal_get_native_wrapper): we an now return value types
9146
9147 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9148
9149         * verify.c: more checks implemented.
9150
9151 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
9152
9153         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
9154         (fix bug #27695)
9155         (mono_marshal_get_native_wrapper): allow byref arguments
9156         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
9157         impl. PtrToStringXXX methods
9158         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
9159         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
9160         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
9161         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
9162         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
9163
9164 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9165
9166         * reflection.c: fix buglet in parsing an assembly name.
9167
9168 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9169
9170         * marshal.c (emit_ptr_to_str_conv): first impl.
9171
9172 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9173
9174         * object.c, class.h: cache the vtable in the class as suggested by
9175         vargaz@freemail.hu (Zoltan Varga).
9176
9177 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9178
9179         * class.h, loader.c: added mono_field_from_token().
9180         * verify.c: first cut of type checking code.
9181
9182 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
9183
9184         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
9185
9186 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
9187
9188         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
9189         (fix bug #27782)
9190         (mono_marshal_get_remoting_invoke): impl.
9191         (mono_delegate_begin_invoke): impl.
9192         (mono_mb_emit_save_args): impl.
9193         (mono_delegate_end_invoke): impl.
9194         (mono_marshal_get_delegate_begin_invoke):
9195         (mono_marshal_get_delegate_end_invoke):
9196         (mono_marshal_get_delegate_invoke): generate a special name for
9197         those methods (including the signature) and associate them whith
9198         the delegate class. 
9199
9200 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
9201
9202         * reflection.[ch]: 
9203         (mono_reflection_type_from_name): now it has a MonoImage parameter
9204         which is used as the default image to search the type in. If the image
9205         is NULL or getting the type from it fails, it defaults to corlib.
9206
9207         * icall.c: changed 1 call to mono_reflection_type_from_name to match
9208         new parameter.
9209
9210 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9211
9212         * reflection.c: update the parameter table index.
9213
9214 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9215
9216         * domain.c: don't include the mark byte in the string hash.
9217
9218 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9219
9220         * icall.cs: icall for Type.GetTypeCode ().
9221         * verify: a couple of fixes and disabled local initialization checks.
9222
9223 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
9224
9225         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
9226
9227         * debug-helpers.c (mono_method_full_name): print the type of the
9228         runtime wrapper
9229
9230         * metadata.c (mono_signature_hash): a hash function for signatures
9231         (mono_signature_hash): better hash algorithm
9232
9233         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
9234
9235         * debug-helpers.c (mono_method_full_name): this can now generate
9236         method names with signatures
9237
9238         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
9239         method dont have this pointers.
9240
9241 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9242
9243         * reflection.c: fixup typebuilder tokens.
9244         * image.c: fix buglet.
9245         * marshal.h: remove whitespace.
9246         * metadata.h, metadata.c: reinstate code that was removed.
9247         * verify.c: handle catch directives and fix another couple of bugs.
9248
9249 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
9250
9251         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
9252         (mono_marshal_get_native_wrapper): make it comp. with the old code
9253         (mono_marshal_get_native_wrapper): support boolean
9254         (mono_marshal_get_managed_wrapper): support more types
9255
9256 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
9257
9258         * class.c (class_compute_field_layout): compute class->blittable attribute.
9259
9260 2002-07-09  Dick Porter  <dick@ximian.com>
9261
9262         * threads.c: Make the thread cleaning up cope with threads that
9263         call ExitThread()
9264
9265 2002-07-08  Radek Doulik  <rodo@ximian.com>
9266
9267         * reflection.c (method_encode_code): use non-translated values to
9268         compute finally_start, this fixes exception handling on ppc, yay!
9269
9270         * decimal.h (struct signscale): fix endianess
9271
9272 2002-07-07  Radek Doulik  <rodo@ximian.com>
9273
9274         * reflection.c: swap box_val and not val
9275
9276 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9277
9278         * reflection.c, reflection.h: handle full assembly info in type name.
9279         Handle Type arguments when loading custom attributes.
9280         * icall.c: updated to use new mono_reflection_type_from_name () method.
9281
9282 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9283
9284         * loader.c:
9285         (method_from_memberref): also print assembly name when method not found.
9286
9287 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9288
9289         * icall.c:
9290         (ves_icall_TypeGetProperties): fixed bug #27473. 
9291
9292 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9293
9294         * reflection.c: display image name and token when cannot find the
9295         .ctor for an attribute.
9296
9297 2002-07-05  Martin Baulig  <martin@gnome.org>
9298
9299         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9300
9301 2002-07-04  Dick Porter  <dick@ximian.com>
9302
9303         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
9304         compile on mingw.  This will cause mingw builds to not wait for
9305         subthreads to terminate after the main thread does.  I've lodged a
9306         bug with the mingw developers for them to wrap OpenThread().
9307
9308 2002-07-03  Dick Porter  <dick@ximian.com>
9309
9310         * threads.c: Store thread IDs instead of handles, because
9311         GetCurrentThread() returns a pseudohandle and therefore stores
9312         useless values.  mono_thread_cleanup() continues checking the
9313         array of threads until it is empty, to cope with subthreads
9314         spawning new threads after the main thread has finished.
9315
9316         * profiler.h:
9317         * profiler.c:
9318         * profiler-private.h: Pass the thread ID to thread profiler
9319         functions, instead of a handle
9320
9321 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9322
9323         * verify.c: fixes to make it more usable.
9324         * pedump.c: added --verify code to verify IL code in an assembly.
9325
9326 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9327
9328         * reflection.c: turn errors into warnings to allow compiling corlib.
9329
9330 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9331
9332         * reflection.c: add special cases to compile corlib.
9333
9334 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9335
9336         * reflection.c: handle properties with only a set method.
9337
9338 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9339
9340         * opcodes.h: add enum with opcodes in opval order.
9341
9342 2002-07-01  Dick Porter  <dick@ximian.com>
9343         
9344         * object.h:
9345         * object.c (mono_runtime_run_main): Removed unneeded argument
9346
9347 2002-06-28  Martin Baulig  <martin@gnome.org>
9348
9349         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9350
9351 2002-06-27  Dick Porter  <dick@ximian.com>
9352
9353         * threads.c: Store the handle in both the parent thread and in the
9354         subthread, to minimise the time between starting a new thread and
9355         storing its ID.
9356
9357 2002-06-26  Dick Porter  <dick@ximian.com>
9358
9359         * appdomain.c (mono_runtime_cleanup): Close the socket library
9360         after all the threads have finished, not before
9361
9362 2002-06-26  Martin Baulig  <martin@gnome.org>
9363
9364         * debug-symfile.c (mono_debug_find_source_location): Added
9365         `guint32 *line_number' argument.  If it's not NULL, store the line number
9366         there and return the file name without the line number.
9367
9368 2002-06-25  Dick Porter  <dick@ximian.com>
9369
9370         * icall.c:
9371         * process.h:
9372         * process.c: Process forking and other support functions
9373
9374 2002-06-25  Dick Porter  <dick@ximian.com>
9375
9376         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
9377         things dont happen when the image is closed.
9378         (mono_image_lookup_resource): Walk the resource section looking
9379         for a particular entry
9380
9381         * cil-coff.h: PE resource section decoding
9382
9383 2002-06-25  Dick Porter  <dick@ximian.com>
9384         
9385         * assembly.h:
9386         * assembly.c: 
9387         (mono_assembly_foreach): Accessor functions to walk the list of
9388         loaded assemblies
9389         (mono_assembly_set_main):
9390         (mono_assembly_get_main): Process methods need to know which
9391         assembly is the "main" one
9392
9393         * object.c (mono_runtime_run_main): Record the main assembly
9394
9395         * debug-helpers.c: Fix typo
9396
9397 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
9398
9399         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
9400         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
9401
9402 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9403
9404         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
9405
9406 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
9407
9408         * image.c (do_mono_image_open): Initialize reference count,
9409         otherwise we leak the MonoImage.
9410
9411 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9412
9413         * reflection.c: small tweak to handle self-hosting.
9414
9415 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9416
9417         * reflection.c: fix type name parse code.
9418
9419 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9420
9421         * reflection.c: break out of the loop.
9422         * image.c: special case corlib.
9423
9424 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9425
9426         * reflection.c: add all the custom attrs at the end to ensure the
9427         ctors have been properly initialized when the attributes are defined
9428         in the current assembly.
9429
9430 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9431
9432         * reflection.c: handle correctly multiple-nested types.
9433
9434 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9435
9436         * row-indexes.h: fix typos.
9437         * reflection.c: adjust for typos and fix method_def_or_ref
9438         encoding in MethodImpl table.
9439
9440 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9441
9442         * reflection.c: fix entry point patching (thanks Serge!).
9443
9444 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
9445
9446         * verify.c: add check for System.Exception
9447
9448 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9449
9450         * image.c, class.c: minifix for code just c&p'ed.
9451         * reflection.c: warning fix.
9452         * object.h, loader.h, domain.c: load also StringBuilder.
9453
9454 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9455
9456         * marshal.h, marshal.c: some support code to handle complex marshaling.
9457
9458 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9459
9460         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
9461         Better signatures with vtable error dump.
9462
9463 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
9464
9465         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
9466
9467 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
9468
9469         * icall.c (ves_icall_Type_GetField): impl.
9470
9471 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9472
9473         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
9474         to retrieve a marshal description blob for a field or param.
9475
9476 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9477
9478         * reflection.h, reflection.c: change order of nested type emission
9479         to avoid table corruption. The NestedTypes table is sorted.
9480         * icall.c: change order of GetConstructor results to workaround mcs bug.
9481
9482 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9483
9484         * reflection.h, reflection.c: handle field and param marshal
9485         information.
9486
9487 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9488
9489         * icall.c, marshal.c marshal.h: more Marshal class implementation.
9490
9491 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9492
9493         * reflection.c: fix call convention.
9494
9495 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9496
9497         * reflection.h, reflection.c: mono_image_get_memberref_token()
9498         takes a type instead of a class, now. Added
9499         mono_image_get_array_token() to create tokens for the special
9500         multi-dim array methods.
9501
9502 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9503
9504         * assembly.c: handle modules (no assembly table). Split
9505         loading references in its own function.
9506         * class.c: handle moduleref resolution scope.
9507         * image.c, image.h: cache module name in image.
9508
9509 2002-06-07  Martin Baulig  <martin@gnome.org>
9510
9511         * reflection.c (mono_image_get_type_info): Only add a class layout entry
9512         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
9513
9514 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9515
9516         * icall.c: more signature fixes that used uint instead of int.
9517
9518 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9519
9520         * reflection.c: fixed signature of field refs.
9521
9522 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9523
9524         * class.c, reflection.c: handle typerefs of nested types
9525         (both on read and when writing files).
9526
9527 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9528
9529         * icall.c: fix method signatures that tried to workaround the previous
9530         typo, d'oh!
9531
9532 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9533
9534         * debug-helpers.c: fix typo.
9535
9536 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9537
9538         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
9539         rewrote the PE/COFF writing code (our programs are understood by the
9540         ms runtime, now).
9541
9542 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9543
9544         * gc.c, gc.h, icall.c: weakreference support.
9545
9546 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9547
9548         * Makefile.am, mono-config.c: use $(sysconfdir).
9549
9550 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9551
9552         * icall.c: changed default precision of Double.ToString() to 15.
9553         Fixed memory leak. Unified with Single.ToString.
9554
9555 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9556
9557         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
9558
9559 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9560
9561         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
9562         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
9563         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
9564         and myself.
9565
9566 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9567
9568         * debug-symfile.c, sysmath.c: yet more compilation fixes.
9569
9570 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9571
9572         * reflection.c, socket-io.c: more compilation fixes.
9573
9574 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9575
9576         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
9577         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
9578         unicode.c: warning and compiler compatibility fixes.
9579
9580 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9581
9582         * class.h, metadata.c: fixed warnings/compilation errors.
9583
9584 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9585
9586         * Makefile.am, mono-config.c, mono-config.h: configuration file
9587         support routines.
9588         * loader.c, loader.h: make Dll mapping configurable at runtime in the
9589         config file. Export methods to insert and lookup mappings.
9590
9591 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9592
9593         * reflection.c: handle types and boxed objects in custom attr
9594         constructors.
9595
9596 2002-05-30  Martin Baulig  <martin@gnome.org>
9597
9598         * debug-symfile.c
9599         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
9600
9601 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
9602
9603         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
9604         to lookup the implmap row for a P/Invoke method.
9605         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
9606         P/Invoke method from the runtime on an as needed basis.
9607
9608 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
9609
9610         * metadata.c (mono_metadata_parse_signature): impl.
9611
9612 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9613
9614         * class.c: handle .pack directive.
9615
9616 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9617
9618         * object.c: initialize static fields with RVA data.
9619
9620 2002-05-25  Martin Baulig  <martin@gnome.org>
9621
9622         * debug-symfile.c
9623         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
9624
9625 2002-05-24  Martin Baulig  <martin@gnome.org>
9626
9627         * debug-symfile.c
9628         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
9629         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
9630         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
9631
9632 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9633
9634         * object.c: special case string ctros in invoke.
9635         * gc.c: silly whitespace changes.
9636
9637 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
9638
9639         * threadpool.[ch]: impl. a threadpool that can
9640         be used by mint and mono.
9641
9642 2002-05-22  Martin Baulig  <martin@gnome.org>
9643
9644         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
9645         The first argument is now a `MonoReflectionModuleBuilder *', the return
9646         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
9647         `methods' field to get the method builder.  The `token' argument is the
9648         unfixed token.
9649
9650         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
9651         invalid characters instead of g_assert_not_reached()ing.  This seems
9652         to be the behaviour of mscorlib.
9653
9654 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
9655
9656         * object.c (mono_runtime_invoke_array): applied patch from Rachel
9657         Hestilow to fix bug #25104
9658
9659 2002-05-21  Martin Baulig  <martin@gnome.org>
9660
9661         * debug-symfile.c (mono_debug_find_source_location): New function.
9662         Looks up an IL offset in the line number table and returns the source
9663         location as a string.
9664
9665 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9666
9667         * icall.c:
9668         (mono_double_ToStringImpl): changed %f by %g until we have something
9669         better.
9670
9671 2002-05-21  Nick Drochak  <ndrochak@gol.com>
9672
9673         * icall.c : Use different name for Math.Pow's icall.  Needed to check
9674         parameters first in C#.
9675
9676 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9677
9678         * icall.c, reflection.h: added icall to get info about an event.
9679
9680 2002-05-20  Radek Doulik  <rodo@ximian.com>
9681
9682         * object.c (mono_value_box): don't use memcpy for boxing on BIG
9683         endian
9684         (mono_value_box): don't use memcpy for small sizes on
9685         architectures with unaligned access
9686
9687 2002-05-20  Martin Baulig  <martin@gnome.org>
9688
9689         * reflection.c (mono_reflection_setup_internal_class): Don't crash
9690         if `tb->parent == NULL'.
9691         (mono_reflection_create_internal_class): New function.  This is
9692         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
9693         for enum types.
9694
9695         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
9696         New interncall.
9697
9698 2002-05-19  Martin Baulig  <martin@gnome.org>
9699
9700         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
9701         argument to get the length, don't default to the array length.
9702
9703 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
9704
9705         * assembly.c (mono_assembly_setrootdir): New function used to
9706         override the MONO_ASSEMBLIES directory.
9707
9708 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9709
9710         * icall.c: ValueType_GetHashCode() initialize local var.
9711
9712 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9713
9714         * reflection.c: sort custom attributes table.
9715
9716 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9717
9718         * reflection.c: support named args in custom attributes (write support).
9719
9720 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9721
9722         * reflection.c: fix finally position calculation.
9723
9724 2002-05-15  Radek Doulik  <rodo@ximian.com>
9725
9726         * reflection.c: fixed endianess at many places
9727
9728         * icall.c (ves_icall_InitializeArray): comment out debug msg
9729
9730 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
9731
9732         * object.c (mono_unhandled_exception): new function to handle
9733         unhandled exceptions.
9734         (mono_unhandled_exception): call the UnhandledException event.
9735         (mono_runtime_delegate_invoke): impl.
9736
9737 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
9738
9739         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
9740         returns the RVA, not the direct pointer to the data. Handle the case
9741         when the class size is fixed.
9742
9743 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9744
9745         * reflection.c: fix some endianess issues.
9746
9747 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
9748
9749         * object.c (mono_runtime_invoke): is now able to catch exceptions.
9750
9751         * threads.c (mono_thread_init): added a callback which is invoked
9752         at thread start.
9753
9754 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9755         
9756         * icall.c: make GetHashCode return non-negative values.
9757
9758 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9759
9760         * object.c, icall.c, gc.c: revert to address-based hashcode.
9761
9762 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
9763
9764         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
9765
9766 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9767
9768         * icall.c, class.c: special case <Module>.
9769
9770 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
9771
9772         * icall.c: fix bug in GetNow().
9773
9774 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
9775
9776         * object.c (mono_runtime_class_init): make sure that we call all
9777         static class constructors.
9778
9779 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9780
9781         * reflection.c: sort methodsemantics table.
9782
9783 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9784
9785         * reflection.h, reflection.c: honour init locals setting.
9786
9787 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
9788
9789         * icall.c: copied Double ToStringImpl for Single ToStringImpl
9790
9791 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9792
9793         * reflection.c: support ContructorBuilders in attribute blob creation.
9794
9795 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9796
9797         * reflection.c: some changes to build a binary that can be run
9798         directly in windows.
9799
9800 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9801
9802         * loader.c: print a big message when an icall can't be found.
9803
9804 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9805
9806         * string-icalls.c: fix bug 24248.
9807
9808 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9809
9810         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
9811         icall.c, reflection.h: separate assembly loading by pathname and by
9812         assembly name. Use the MONO_PATH env var to search for assemblies.
9813
9814 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9815
9816         * assembly.c, image.h: add some support for assemblies
9817         with multiple modules.
9818         * class.c, class.h: export mono_class_from_typeref().
9819         * loader.c: remove duplicated code and use mono_class_from_typeref(),
9820         instead.
9821
9822 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9823
9824         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
9825         documentation says (the ECMA one is correct).
9826
9827 2002-05-02  Dick Porter  <dick@ximian.com>
9828
9829         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
9830         Don't name the synchronisation mutex.
9831
9832 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
9833
9834         * rand.c
9835         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
9836         Make the prototypes match.
9837         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
9838         Same.
9839
9840         * icall.c
9841         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
9842         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
9843         all systems have tm.tm_zone, so use strftime() with %Z to print
9844         the timezone abreviation into a temp string.
9845
9846         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
9847         rather than mono_array_addr() on a MonoString on Big Endian
9848         machines.
9849
9850 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
9851
9852         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
9853         fix bug 24041
9854
9855 2002-04-30  Dick Porter  <dick@ximian.com>
9856
9857         * socket-io.c: Cope with SOCKET being an integer rather than a
9858         pointer now.
9859
9860         * threads.c: Added Thread_free_internal, to deal with thread
9861         handle cleanup.  Moved calls to handle_store() and handle_remove()
9862         to start_wrapper(), so each can only be called once.  Allocate
9863         synchronisation blocks with GC_malloc(), and use GC finalisation
9864         to close the handles.
9865
9866         * icall.c: added System.Threading.Thread::Thread_free_internal
9867
9868 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9869
9870         * icall.c: support Environment.Exit, CommandLineArgs().
9871
9872 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9873
9874         * object.c, object.h: added mono_runtime_run_main () and
9875         mono_runtime_get_main_args () for use in System.Environment.
9876
9877 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9878
9879         * gc.c: fix thinko, enable actual finalization since the jit is now
9880         fixed.
9881
9882 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9883
9884         * gc.c, object.c: take into account that an object may be offset wrt the address
9885         returned by GC_malloc().
9886
9887 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9888
9889         * image.c: handle files without entries in the assembly table (modules).
9890
9891 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
9892
9893         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
9894         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
9895         allowed to be null when it's System.Object class setup.
9896
9897 2002-04-27  Martin Baulig  <martin@gnome.org>
9898
9899         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
9900         if `tb->parent == NULL' rather than crashing.
9901
9902 2002-04-28  Nick Drochak  <ndrochak@gol.com>
9903
9904         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
9905         calling acos() where asin() should have been called.
9906
9907 2002-04-26  Martin Baulig  <martin@gnome.org>
9908
9909         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
9910         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
9911         there's a subdirectory called `System', but we don't want to read that
9912         subdirectory as an assembly.
9913
9914 2002-04-25  Martin Baulig  <martin@gnome.org>
9915
9916         * debug-symfile.c: Reflect latest MonoString changes.
9917
9918 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9919
9920         * rand.c, rand.h: instance method icalls need to have an explicit
9921         this pointer as first argument in the C implementation.
9922
9923 2002-04-25  Nick Drochak <ndrochak@gol.com>
9924
9925         * icall.c: Fix typo in map for GetNonZeroBytes
9926
9927 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9928
9929         * string-icalls.c : String does now passes unit tests without any 
9930         errors, the following changes has been made:
9931         
9932         Implemented replace methods.
9933         Renaming of methods to (try) follow the standard.
9934         Fixed compare ordinal
9935         Made all memory allocated directly to function instead of via icall function.
9936         Small performance fix in is_in_array function
9937                         
9938  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
9939
9940         c (mono_string_Internal_ctor_charp_int_int):
9941         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
9942         sindex < 0, throw ArgumentOutOfRangeException instead of
9943         ArgumentNullException.
9944
9945         Added new check for length == 0, however
9946         I need to make it return String.Empty from the C code.
9947         
9948         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
9949         that calculate the length for us here.
9950         
9951         (mono_string_Internal_ctor_sbytep_int_int): Replaced
9952         mono_string_new_utf16 with mono_string_new, since value is utf8.
9953
9954 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9955
9956         * object.c: register the object for finalization if needed.
9957         Allocate one more char in the string for the terminating 0 char.
9958
9959 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9960
9961         * class.c, class.h, image.c: check if a type implemenst a destructor.
9962         Use the proper key for array class lookups.
9963         * icall.c: register the icalls in the System.GC class.
9964         * gc.c, gc.h: GC-related functions and icalls.
9965
9966 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9967
9968         * icall.c:
9969         * socket-io.c:
9970         * unicode.c: free some strings gotten from mono_string_to_utf8 and
9971         changed a couple of free () by g_free ().
9972
9973         * decimal.c: one-liner in the comments for decimal2string ().
9974
9975 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9976
9977         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
9978
9979 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9980
9981         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
9982         * object.c (mono_runtime_invoke_array) : handle null in params
9983
9984 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9985
9986         * string-icalls.c: fixed bug in split (one off bug)
9987
9988 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9989
9990         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
9991         * icalls.c: added String::Equals as internal method
9992
9993 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9994
9995         * threads.c: fixed bug in the double interlocked functions
9996
9997 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
9998
9999         * threads.c: implemented all of the new interlocked icalls.
10000         * string-icalls.c: fix a bug in insert.
10001         * icalls.c: added the icalls for interlocked, removed old string functions.
10002         
10003 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10004
10005         * loader.c: fix off-by-one error when reading argument names.
10006
10007 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10008
10009         * profiler.c: win32 counter implementation (untested).
10010         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
10011         (the latter needs testing and more complete impl. from win32 folks).
10012
10013 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
10014
10015         * object.c: mono_array_new_full workaround mono_array_class_get
10016         problem.
10017
10018 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10019
10020         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
10021         * object.h (mono_string_chars): Changed casting type.
10022
10023 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10024
10025         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
10026                            method signatures to use gunichar2 instead of gint16.
10027
10028 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
10029
10030         * object.h, object.c: domain-specific versions of mono_object_new and
10031         mono_array_new.
10032
10033 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
10034
10035         * object.c: changed String layout
10036
10037         * string-icalls.c (mono_string_Internal_ctor_chara): added
10038         internal string constructors.
10039
10040 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
10041
10042         * threads.c: pass 'this' to the thread start routine.
10043
10044 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10045
10046         * string-icalls.c: fix IndexOf and LastIndexOf. Now
10047         InternalCompareStr don't call twice mono_string_cmp_char for the last
10048         character. Improved performance in mono_string_cmp_char.
10049
10050 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
10051
10052         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
10053         code into its own library: libmonoruntime.
10054
10055 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
10056
10057         * object.h, object.c: changed array format so that szarrays do not
10058         require a bounds structure.
10059         * icall.c, appdomain.c: support for new szarray format.
10060
10061 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
10062
10063         * metadata.c: compare also the retuns type when comparing signatures:
10064         we didn't do this as an optimization since really overloaded methods
10065         must differ also in the arguments, but this doesn't work with
10066         low-level IL code (or when using explicit conversion operators: see
10067         bug#23498 for an example).
10068
10069 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
10070
10071         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
10072
10073 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
10074
10075         * icall.c: make MonoType::GetElementType its own icall.
10076
10077 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
10078
10079         * icall.c: remove MonoMethod_get_Name().
10080         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
10081         object.
10082
10083 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10084
10085         * string-icalls.c: optimized a few methods.
10086
10087 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
10088
10089         * icall.c: added all new string internal calls
10090         * string-icalls.c: added, new string internal call implementation.
10091         * object.c: added mono_string_new_size for allocating a string a size
10092
10093 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
10094
10095         * object.c (mono_object_isinst): use the same code as in the
10096         optimized x86 version.
10097
10098 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
10099
10100         * profiler.c: TSC-based timer code (faster and more accurate).
10101         Not hooked up in configure, yet (set USE_X86TSC to 1).
10102
10103 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
10104
10105         * profiler.c, profiler.h: track time spent compiling methods.
10106         * threads.c: track thread creation/destruction.
10107
10108 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
10109
10110         * profiler.c, profiler.h, profiler-private.h: profiling interface
10111         and sample implementation. Moved here so that it can be used also by
10112         the jit.
10113
10114 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
10115
10116         * reflection.c, reflection.h: keep types and other handles separate in
10117         the hash tables for referred tokens. Add guid for modules.
10118
10119 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
10120
10121         * assembly.c: fix bugs found with valgrind.
10122         * metadata.h, metadata.c: added mono_metadata_guid_heap().
10123
10124 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
10125
10126         * threads: added icall support for getting current domain for
10127                    the thread.
10128  
10129 2002-04-13  Martin Baulig  <martin@gnome.org>
10130
10131         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
10132         (MonoDebugVarInfo): Added `index' field for register based addresses.
10133         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
10134         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
10135         `MonoDebugVarInfo *params' and `guint32 this_offset' with
10136         `MonoDebugVarInfo *this_var'.
10137
10138         * debug-symfile.c (relocate_variable): New static function to write
10139         a location description for a local variable or method parameter.
10140
10141 2002-04-12  Martin Baulig  <martin@gnome.org>
10142
10143         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
10144         stack offset and begin/end scope address of a local variable.
10145         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
10146         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
10147         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
10148
10149         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
10150         Added new relocation types for start/end scope of a local variable.
10151
10152 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
10153
10154         * object.h: add mono_object_domain() macro.
10155         * reflection.c: handle typespecs.
10156         * icall.c: MonoMethod::get_Name() implementation.
10157
10158 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10159
10160         * icall.c: String::GetHashCode() icall implementation.
10161
10162 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10163
10164         * icall.c: String::IndexOfAny icall.
10165         * object.c, object.h: make array->max_length more useful.
10166         Intrduced mono_object_class() and mono_string_length() macros.
10167
10168 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10169
10170         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
10171         instead of g_unichar_isdigit.
10172
10173 2002-04-11  Nick Drochak  <ndrochak@gol.com>
10174
10175         * icall.c: Implement a simple Double.ToString().
10176
10177 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
10178
10179         * appdomain.h: only io-layer.h is supposed to be included.
10180         * icall.c: explicitly import environ. Fix warning.
10181
10182 2002-04-10  Nick Drochak  <ndrochak@gol.com>
10183
10184         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
10185                 return true even if it's not Daylight Savings time.
10186                 Only return false for the case where the function isn't
10187                 implemented for a plaform (read Windows).
10188
10189 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
10190
10191         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
10192         data with a mutex.
10193
10194 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
10195
10196         * mempool.c (mono_mempool_alloc): only use g_malloc when
10197         absolutely necessary.
10198
10199 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10200
10201         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
10202
10203         * class.c (mono_class_vtable): use domain mempool to allocate vtable
10204         (mono_class_proxy_vtable): use domain mempool
10205
10206 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
10207
10208         * appdomain.h, appdomain.c: split initialization that requires the
10209         execution engine support into mono_runtime_init().
10210
10211 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
10212
10213         * class.c (mono_class_init): don't include vtable inside MonoClass
10214         to save some memory, gather some statistics.
10215         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
10216
10217 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10218
10219         * icall.c: internalcall implementation for ValueType.Equals().
10220
10221 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
10222
10223         * object.c (mono_message_init): moved 
10224         (mono_runtime_exec_main): new arch. independent impl.
10225         (mono_runtime_invoke_array): new method - like
10226         mono_runtime_invoke, but you can pass an array of objects.
10227         (mono_remoting_invoke): new arch. independent impl.
10228         (mono_message_invoke): new arch. independent impl.
10229         (mono_runtime_class_init): new arch. independent impl.
10230         (mono_runtime_object_init): new arch. independent impl.
10231
10232 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
10233
10234         * metadata.c, object.c, reflection.c: documented the exported
10235         functions.
10236
10237 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
10238
10239         * icall.c: simpler code to pass the assembly builder data to corlib.
10240         Implement GetNestedTypes() internalcall.
10241
10242 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
10243
10244         * class.c: warn if a type can't be loaded.
10245
10246 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
10247
10248         * image.h: typedef MonoImageOpenStatus
10249         * types.h: removed unused file
10250         
10251 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
10252
10253         * icall.c: Enum_ToObject accepts enum value arguments.
10254
10255 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
10256
10257         * class.c: move initialization of properties, events and nested
10258         classes, so that they happen for interfaces, too.
10259
10260 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
10261
10262         * icall.c: cleanup some ugly casts in Array_SetValue*.
10263
10264 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
10265
10266         * icall.c: the values array fro enums is of the correct type, now.
10267         Implement (correctly) getFullName instead of assQualifiedName for
10268         MonoType.
10269         * reflection.h, reflection.c: added mono_type_get_name ().
10270
10271 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
10272
10273         * assembly.c, image.h: for each MonoImage, record from wich assembly
10274         it was loaded.
10275         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
10276         Make Type.Assembly work.
10277
10278 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
10279
10280         * debug-symfile.h: use char* instead of gpointer to avoid
10281         unnecessary casts.
10282
10283         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
10284
10285         * icall.c (ves_icall_InternalExecute): impl. FielSetter
10286         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
10287
10288 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
10289
10290         * icall.c (mono_message_init): impl. (code cleanup)
10291         (ves_icall_InternalExecute): impl. FieldGetter
10292
10293         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
10294         defined we call all (non-static)methods through the vtable. 
10295
10296 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
10297
10298         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
10299         finalizer even though the memory is still referenced (and the chunk of
10300         memory is not freed).
10301
10302 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10303
10304         * assembly.c: fix brokeness.
10305
10306 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
10307
10308         * class.c: kill some warnings. Check explicit interface method
10309         implementation also without considering the namespace.
10310         Load also literal strings in static class data.
10311
10312 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
10313
10314         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
10315         (default_assembly_name_resolver): Make the resolver take the
10316         "base" directory where the assembly was originally defined, so we
10317         can load DLLs that are in the same directory as the assembly that
10318         is being referenced.
10319
10320 2002-03-28  Dick Porter  <dick@ximian.com>
10321
10322         * file-io.h: 
10323         * file-io.c:
10324         * socket-io.c: 
10325         * unicode.h: 
10326         * unicode.c: Warning cleanups
10327
10328 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
10329
10330         * object.h, reflection.h: use the correct type instead of MonoObject.
10331
10332 2002-03-28  Martin Baulig  <martin@gnome.org>
10333
10334         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
10335         (mono_debug_update_symbol_file): Initialize classes if necessary.
10336
10337 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10338
10339         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
10340         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
10341
10342 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
10343
10344         * assembly.h: fix function prototype.
10345         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
10346         * mono-endian.h: use const cast.
10347
10348 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10349
10350         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
10351
10352 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10353
10354         * loader.c: don't assert when a typeref can't be loaded, give
10355         a chance to the runtime to trow an exception instead.
10356         * loader.h: fix warning.
10357
10358 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10359
10360         * class.c (mono_class_proxy_vtable): added proxy support
10361
10362 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
10363
10364         * icall.c: removed last of PAL calls, added System.Environment
10365         * file-io.h, file-io.c: MonoIO implementation
10366         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
10367
10368 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10369
10370         * appdomain.c: do not use the byte marker in ldstr table lookup.
10371         * debug-helpers.c: allow two ':' to separate class and method name.
10372         * object.c: allocate arrays bounds with the GC, too.
10373         * verify: add a few more checks.
10374
10375 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
10376
10377         * reflection.c: output also literal strings. Allocate parameter data
10378         with GC_malloc() (thanks, Martin, for catching this!).
10379
10380 2002-03-26  Martin Baulig  <martin@gnome.org>
10381
10382         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
10383         include the `this' offset in the `param_offsets'.
10384
10385 2002-03-25  Martin Baulig  <martin@gnome.org>
10386
10387         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
10388         mono_debug_get_class() function to get the classes. Added new
10389         relocation types for arrays and strings.
10390         (mono_debug_get_class): New static function to search in all
10391         referenced assemblies for a metadata token.
10392
10393         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
10394
10395 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10396
10397         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
10398         hold gc-allocated objects. Make the string heap a stream like the
10399         others. Removed duplicated code when writing stream info.
10400         Added asserts to catch possible buffer overflows. Set the sorted map
10401         for tables that need sorting. Added some documentation.
10402
10403 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
10404
10405         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
10406         for interned strings and vtables.
10407
10408 2002-03-24  Martin Baulig  <martin@gnome.org>
10409
10410         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
10411         it in the array since it was created with g_slist_prepend().
10412
10413 2002-03-24  Martin Baulig  <martin@gnome.org>
10414
10415         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
10416         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
10417         (mono_debug_method_from_token): Renamed to
10418         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
10419         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
10420
10421         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
10422         relocation types.
10423
10424         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
10425
10426 2002-03-24  Martin Baulig  <martin@gnome.org>
10427
10428         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
10429         (mono_debug_method_from_token): New func.
10430
10431         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
10432         New interncall, calls mono_debug_local_type_from_signature().
10433         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
10434         calls mono_debug_method_from_token().
10435
10436 2002-03-23  Martin Baulig  <martin@gnome.org>
10437
10438         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
10439         specifies the number of bytes to be converted, not the array size.
10440         Return the number of chars, not the number of bytes.
10441         (ves_icall_iconv_get_chars): The `byteCount' argument
10442         specifies the number of bytes to be converted, not the array size.
10443
10444 2002-03-23  Martin Baulig  <martin@gnome.org>
10445
10446         * reflection.h (MonoReflectionSigHelper): New type.
10447
10448         * reflection.c (mono_reflection_sighelper_get_signature_local),
10449         (mono_reflection_sighelper_get_signature_local): New functions.
10450
10451         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
10452         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
10453         interncalls.
10454
10455 2002-03-23  Martin Baulig  <martin@gnome.org>
10456
10457         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
10458         is_writeable is set.
10459         (mono_raw_buffer_update): New function to write the modified map
10460         back to disk.
10461
10462         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
10463
10464         * debug-symfile.c (mono_debug_update_symbol_file): Call
10465         mono_raw_buffer_update() when done writing.
10466
10467 2002-03-23  Martin Baulig  <martin@gnome.org>
10468
10469         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
10470
10471         * debug-symfile.c: Added support for arguments and local variables.
10472
10473 2002-03-23  Dick Porter  <dick@ximian.com>
10474
10475         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
10476         protected by ifdefs, hence breaking the w32 build.
10477
10478 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10479
10480         * object.c: implement is_interned() the right way.
10481
10482 2002-03-21  Martin Baulig  <martin@gnome.org>
10483
10484         * debug-symfile.[ch]: New files to handle debugging information
10485         files. There's also support to dynamically update these symbol
10486         files to include machine dependent information.
10487
10488 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
10489
10490         * threads.c (mono_thread_create): new function to create thread
10491         from C
10492
10493 2002-03-20  Martin Baulig  <martin@gnome.org>
10494
10495         * icall.c (ves_icall_InternalInvoke): Create a new object if the
10496         method is a constructor.
10497         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
10498         points to ves_icall_InternalInvoke().
10499
10500 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
10501
10502         * file-io.c: Flush shouldn't throw exceptions.
10503
10504 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
10505
10506         * file-io.c: FileStream flush support; FileSetLength now
10507         restores file pointer.
10508
10509 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10510
10511         * class.c: set image for pointer classes.
10512
10513 2002/03/19  Nick Drochak <ndrochak@gol.com>
10514
10515         * sysmath.c: Forgot one.
10516
10517 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
10518
10519         * sysmath.c: Avoid redefining existing names.
10520
10521 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
10522
10523         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
10524         handled by runtime as icall rather than dllimport from libm.so
10525         * file-io.c, file-io.h: fixed handle argument type.
10526
10527 2002-03-18  Dick Porter  <dick@ximian.com>
10528
10529         * reflection.c (mono_image_get_type_info): rename interface to
10530         iface, because of "#define interface struct" on windows.
10531
10532 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
10533
10534         * class.c, class.h: rename and export mono_ptr_class_get().
10535         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
10536         * reflection.c, reflection.h, icall.c: better/saner type name
10537         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
10538         method signatures.
10539
10540 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
10541
10542         * class.c (mono_class_init): removed hardcoded GHC_SLOT
10543
10544         * icall.c (ves_icall_InternalInvoke): impl.
10545
10546 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10547
10548         * reflection.c: output the interface map table, too.
10549
10550 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10551
10552         * class.c (class_compute_field_layout): separate computation of 
10553         static field layout
10554
10555 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
10556
10557         * icall.c: added System.Buffer support.
10558         * file-io.c: moved file icalls from PAL to FileStream.
10559
10560 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10561
10562         * icall.c (ves_icall_System_Object_GetHashCode): impl.
10563
10564 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
10565
10566         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
10567
10568 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10569
10570         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
10571
10572 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10573
10574         * debug-helpers.{c,h}: moved here from monograph some useful functions
10575         to locate a method by name/signature in a class or image. Included
10576         also a small and flexible IL disassembler.
10577
10578 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10579
10580         * reflection.c: fixup tokens in methods with small header size, too.
10581
10582 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
10583
10584         * object.c (mono_string_to_utf8): remove assert(!error), instead
10585         print a warning. 
10586
10587 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
10588
10589         * icall.c: update to the new mono_Array_class_get interface.
10590
10591 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10592
10593         * appdomain.c, object.c: Boehm-GC enable.
10594         * icall.c: make get_data_chunk() support split data requests.
10595         Ensure a class is initialized in more cases. Return only the first
10596         property found in GetProperties() or the compiler gets confused. 
10597         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
10598         * reflection.h, reflection.c: add fixup mechanism for field and method
10599         tokens. Initialize assembly->typeref in a single place. Output
10600         properties after events. Support custom attributes for events, too.
10601         Typo fix for paramter custom attrs.
10602
10603 2002-03-07  Martin Baulig  <martin@gnome.org>
10604
10605         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
10606
10607 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
10608
10609         * class.c (mono_array_class_get): fix. for multi. dim. arrays
10610
10611 2002-03-06  Martin Baulig  <martin@gnome.org>
10612
10613         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
10614         non-zero lower bounds. See testcases #F10-#F13.
10615
10616 2002-03-05  Martin Baulig  <martin@gnome.org>
10617
10618         * exception.c (mono_get_exception_argument_out_of_range): New exception.
10619
10620         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
10621         ves_icall_System_Array_GetValue(), only calculate the absolute array position
10622         here.
10623         (ves_icall_System_Array_SetValue): Likewise.
10624         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
10625         as argument and does the actual work. This function is used when copying a
10626         multi-dimensional array.
10627         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
10628         now do all the widening conversions of value types.
10629         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
10630
10631 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10632
10633         * class.c: remove some magic numbers and use the smbolic names,
10634         instead. Added init_events() to load event info at class init time.
10635         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
10636         and mono_metadata_methods_from_event().
10637         * reflection.h, reflection.c: added support for writing out the evnets
10638         related information.
10639
10640 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10641
10642         * reflection.h, icall.c: use a different method (GetInterfaces)
10643         to gather interface info and add isbyref, isprimitive and
10644         ispointer to the ves_icall_get_type_info() return value.
10645
10646 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10647
10648         * class.h: stared adding support for events.
10649         * icall.c: split find_members implementation. Added debug icall to get
10650         the address of an object.
10651         * reflection.c: handle TypeBuilders in mono_type_get_object().
10652
10653 2002-03-01  Martin Baulig  <martin@gnome.org>
10654
10655         * icall.c (ves_icall_System_Array_GetLength): This must throw an
10656         ArgumentOutOfRangeException(), not an ArgumentException().
10657         (ves_icall_System_Array_GetLowerBound): Likewise.
10658         (ves_icall_System_Array_GetValue): Improved argument checking.
10659         (ves_icall_System_Array_SetValue): Improved argument checking.
10660
10661 2002-03-01  Martin Baulig  <martin@gnome.org>
10662
10663         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
10664         called with invalid arguments rather than just dying with g_assert().
10665         (ves_icall_System_Array_SetValue): Likewise.
10666         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
10667         raise a NotImplementedException instead.
10668         (ves_icall_System_Array_GetLength): Added argument checking.
10669         (ves_icall_System_Array_GetLowerBound): Added argument checking.
10670
10671 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
10672
10673         * object.h (mono_assert): new macros mono_assert and
10674         mono_assert_not_reached
10675
10676 2002-02-28  Martin Baulig  <martin@gnome.org>
10677
10678         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
10679         and "System::String::IsInterned" to "System::String::_IsInterned".
10680
10681 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
10682
10683         * icall.c: remove hacks for typebuilder. Added icall to create a
10684         modified type from a tybebuilder.
10685         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
10686         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
10687         to create a backing MonoClass for a TypeBuilder.
10688
10689 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10690
10691         * class.c, class.h: more refactoring of class init.
10692         Export mono_class_setup_mono_type() and mono_class_setup_parent().
10693
10694 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
10695
10696         * marshal.c, marshal.h: start of marshaling interface.
10697
10698 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10699
10700         * icall.c: fix order in assembly qualified name icall.
10701
10702 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10703
10704         * class.c: do not free str, since we store it in the hash table.
10705         * reflection.h: add label field to MonoILExceptionInfo.
10706         * reflection.c: handle references to more than one assembly. Handle
10707         case when there isn't a module created in the assembly.
10708
10709 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10710
10711         * class.c: Fix typo. Start refactoring of class init code.
10712
10713 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10714
10715         * appdomain.c: exit with 1 on error.
10716         * class.c: we already have the name in MonoClassField.
10717         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
10718         MonoStreamHeader instead of an offset of image->raw_metadata.
10719
10720 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
10721
10722         * appdomain.c (mono_init): Be even more descriptive about the error.
10723
10724 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
10725
10726         * appdomain.c: give the user an informative message when corlib can't
10727         be loaded.
10728
10729 2002-02-26  Martin Baulig  <martin@gnome.org>
10730
10731         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
10732         New icall to get the time zone data.
10733
10734 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10735
10736         * reflection.c: set virtual and raw size of section correctly.
10737         * threads.c: transfer domain information to newly created threads.
10738
10739 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10740
10741         * class.c: when instancing a class in a domain, load the default
10742         vaules for static fields from the constant table. Fix System.Enum to
10743         not be an enum.
10744         * icall.c: implement Object::GetType() internalcall. Implemented
10745         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
10746         Fixed checking of binding flags in find_members().
10747         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
10748         * reflection.c: handle enumerations when writing to the constant
10749         table. Use a different object cache for types.
10750
10751
10752 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
10753
10754         * object.c (mono_object_isinst): fix for arrays
10755
10756         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
10757
10758 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10759
10760         * object.c: don't use mprotect ()  and fix intern pool hash table
10761         lookup for big endian systems.
10762
10763 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10764
10765         * icall.c: change type_is_subtype_of () signature.
10766
10767 2002-02-21  Mark Crichton  <crichton@gimp.org>
10768
10769         * rand.c, rand.h: Added random number generator for
10770         System.Security.Cryptography classes.
10771
10772         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
10773
10774         * icall.c: Added System.Security.Cryptography calls.
10775
10776 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
10777
10778         * class.c, icall.c, metadata.c: better support for pointer types.
10779         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
10780         * reflection.c: Add support for getting custom attrs for properties
10781         and simplify some code.
10782
10783 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10784
10785         * icall.c: change getToken () and add custom attribute GetBlob()helper
10786         method.
10787         * reflection.h: add custom attrs array to the reflection builder structures.
10788         * reflection.c: encode and emit custom attributes for all the relevant
10789         reflection objects. Cache fieldref and methodref tokens. Change
10790         mono_image_create_token() interface to take a MonoDynamicAssembly.
10791         More complete custom attributes decoder. Load custom attributes for
10792         Assembly, Field, Method and Constructor objects, too. Make the
10793         returned array an Attribute[] one, not object[]. Added
10794         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
10795         custom attribute constructor.
10796
10797 2002-02-20  Dick Porter  <dick@ximian.com>
10798
10799         * icall.c:
10800         * rawbuffer.c:
10801         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
10802         problem code out for now).
10803
10804 2002-02-19  Radek Doulik  <rodo@ximian.com>
10805
10806         * object.c (mono_ldstr): use hash table to avoid multiple swapping
10807
10808 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
10809
10810         * icall.c: register the GetCustomAttributes method.
10811         * object.c, object.h: add mono_string_new_len ().
10812         * reflection.h, reflection.c: added mono_runtime_invoke(),
10813         mono_install_runtime_invoke(). Added
10814         mono_reflection_get_custom_attrs () to load custom attributes and
10815         create the attribute objects.
10816
10817 2002-02-19  Dick Porter  <dick@ximian.com>
10818         * threads-dummy-types.c:
10819         * threads-dummy-types.h:
10820         * threads-dummy.c:
10821         * threads-dummy.h:
10822         * threads-pthread-types.c:
10823         * threads-pthread-types.h:
10824         * threads-pthread.c:
10825         * threads-pthread.h:  Deleted obsolete files
10826
10827 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
10828
10829         * class.c (mono_class_vtable): runtime init the class when we
10830         allocate static class data.
10831
10832         * icall.c (ves_icall_System_Array_SetValue): check for null values.
10833
10834         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
10835         and String - but we will need generic marshalling support in the
10836         future. 
10837         (mono_init): set the domain name in a ms compatible way
10838
10839         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
10840         String[].
10841
10842 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
10843
10844         * object.c (mono_array_clone): use alloca() instead of g_malloc  
10845         for sizes
10846
10847         * appdomain.c (mono_domain_unload): impl.
10848
10849 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10850
10851         * appdomain.c, object.c: fix intern pool implementation.
10852         * class.c: fix alignment code.
10853
10854 2002-02-16  Radek Doulik  <rodo@ximian.com>
10855
10856         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
10857         and s2 > s1, just copy lower bytes to be compatible with little
10858         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
10859         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
10860
10861         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
10862         force big_endian to be 1 for big endian machines 
10863         (ves_icall_iconv_new_decoder): ditto
10864
10865 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
10866
10867         * socket-io.c (convert_sockopt_level_and_name): If the system
10868         doesn't define SOL_IP or SOL_TCP, get them by hand using
10869         getprotobyname() and caching the values (because this could be a
10870         slow operation).
10871         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
10872         Use the appropriate struct when the system does support it. Ie,
10873         not all systems have struct ip_mreqn so use struct ip_mreq when
10874         appropriate.
10875
10876 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
10877
10878         * reflection.c: handle finally clauses.
10879
10880 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
10881
10882         * socket-io.c: use g_snprintf() instead of snprintf.
10883
10884 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10885
10886         * reflection.c (mono_param_get_objects): Cast second argument to
10887         mono_method_get_param_names to a const char** to silence the
10888         compiler warning.
10889
10890         * appdomain.c (mono_domain_assembly_open): Put parens around the
10891         truth statement in the for-loop.
10892
10893         * unicode.c (iconv_convert): Got rid of a compiler warning about
10894         int i being unused when the system has a new iconv.
10895         (iconv_get_length): Same.
10896
10897         * image.c (load_class_names): Cast the second argument to
10898         g_hash_table_insert() to char* to hush compiler warnings about the
10899         arg being a const.
10900         (mono_image_open): Same here.
10901
10902         * socket-io.c: Don't conditionally include sys/filio.h or
10903         sys/sockio.h here anymore since we now get them from
10904         io-layer/io-layer.h
10905         (inet_pton): If the system doesn't support inet_aton, implement
10906         using inet_addr and also #define INADDR_NONE if it isn't defined
10907         by the system.
10908
10909 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
10910
10911         * metadata.c, metadata.h: added function to get packing and size info
10912         of a typedef.
10913         * reflection.h, reflection.c: handle field RVA data. Save info about
10914         the table layout if needed. Assign typedef indexes to all the types
10915         before dumping the info about them to avoid forward reference problems.
10916
10917 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
10918
10919         * socket-io.c (convert_sockopt_level_and_name): ifdef
10920         SO_ACCEPTCONN because it is not defined on my system (old debian)
10921
10922 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10923
10924         * opcode.c: use stddef.h to get NULL.
10925
10926 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10927
10928         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
10929         for FIONBIO, FIONREAD and SIOCATMARK.
10930         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
10931         define INADDR_NONE and besides, inet_addr() is deprecated and
10932         should not be used. Use inet_pton() instead - it also has the
10933         added bonus that it can easily handle IPv6 addresses as well.
10934         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
10935
10936 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10937
10938         * decimal.c: remove _MSC_VER conditional.
10939
10940 2002-02-13  Dick Porter  <dick@ximian.com>
10941
10942         * socket-io.c: 
10943         * icall.c: Internal calls for Blocking, Select, Shutdown,
10944         GetSocketOption and SetSocketOption
10945
10946 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10947
10948         * assembly.cs: better resolver: use it instead of some kludgy
10949         code.
10950
10951 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
10952
10953         * reflection.c: the best way to speed-up the compiler is to avoid
10954         infinite loops.
10955
10956 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
10957
10958         * class.c (mono_class_vtable): changed the object layout
10959         (obj->vtable->class). 
10960         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
10961
10962 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10963
10964         * assembly.c: look for assemblies in the assembly dir, too.
10965
10966 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10967
10968         * class.c: fix thinko in mono_class_from_type().
10969
10970 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10971
10972         * exception.h, exception.c: added TypeLoadException.
10973         * object.h, object.c: added mono_array_clone ().
10974         * icall.c: handle throwOnError in AssemblyGetType().
10975         Added Array.Clone().
10976         * opcode.h, opcode.c: use a single value for the opcode val.
10977         Compile fix for non-gcc compilers.
10978
10979 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
10980
10981         * opcodes.c, opcodes.h: export interesting info about opcodes.
10982
10983 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
10984
10985         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
10986         icalls. 
10987
10988         * class.c (class_compute_field_layout): set element_class for enums
10989         (mono_class_create_from_typedef): set element_class for normal classes
10990
10991         * icall.c (ves_icall_System_Enum_get_value): impl.
10992
10993         * class.c (mono_class_create_from_typedef): do not set valuetype
10994         flag for System.ValueType and System.Enum
10995
10996 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
10997
10998         * unicode.c (iconv_convert): fix big endian problem.
10999
11000 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11001
11002         * class.c: add asserts if we are ever going to scribble over memory.
11003         * socket-io.c: not all systems have AF_IRDA defined.
11004
11005 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
11006
11007         * class.c (class_compute_field_layout): do not consider static
11008         fields to compute alignment
11009
11010 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
11011
11012         * appdomain.c (mono_appdomain_get): impl.
11013         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
11014
11015 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
11016
11017         * icall.c: ignore "file://" prefix when loading an assembly.
11018
11019 2002-01-23  Dick Porter  <dick@ximian.com>
11020
11021         * socket-io.c:
11022         * icall.c:
11023         * Makefile.am: Added socket support
11024
11025 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11026
11027         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
11028         code back.  This should return the assemblies that are loaded by
11029         the runtime on behalf of an application domain. 
11030
11031         The current implementation is still broken, it just returns every
11032         assembly loaded, but until we get real applications domain this
11033         will do.
11034
11035 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
11036
11037         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
11038         AppDomain object.
11039
11040 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
11041
11042         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
11043         the mono_class_from_name lookup.
11044         (ves_icall_get_parameter_info): ditto.
11045         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
11046         method.
11047         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
11048
11049 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
11050
11051         * class.c: load also nested classes on class init.
11052         System.ValueType instance methods gets passed boxed
11053         values, unless methods in derived classed that get a pointer to the
11054         data.
11055         * icall.c: use better name parsing code in GetType().
11056         * image.c, image.h: add mono_image_loaded ().
11057         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
11058         * reflection.c, reflection.h: added mono_reflection_parse_type().
11059
11060 2002-01-22  Veronica De Santis <veron78@interfree.it>
11061
11062         * icall.c : Added mapping of internal calls for Manual and Auto reset events
11063         * threads.c : Added the implementation of internal calls for events
11064         * threads.h : Added prototypes of internal calls for events
11065         
11066 2002-01-21  Radek Doulik  <rodo@ximian.com>
11067
11068         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
11069
11070 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
11071
11072         * class.c (mono_class_init): set min_align to 1 (instead of 0)
11073         (mono_class_value_size): use min_align
11074
11075 2002-01-20  Dick Porter  <dick@ximian.com>
11076
11077         * threads.h:
11078         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
11079         so it compiles on w32.
11080
11081 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
11082
11083         * metadata.c (mono_type_stack_size): impl.
11084
11085         * class.c (mono_class_get_field): impl. memberref token
11086
11087 2002-01-16 Veronica De Santis <veron78@@interfree.it>
11088
11089         * icall.h : Added the internal calls mapping for CreateMutex_internal
11090                     and ReleaseMutex_internal.
11091         * threads.h : Added the prototype of mutexes internal calls.
11092         * threads.c : Added the implementations of mutexes internal calls.
11093
11094 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
11095
11096         * metaparse.h: removed unused file.
11097         * reflection.c, reflection.h: added stream_data_align () function 
11098         to align data in streams and keep stream aligned. Add support for
11099         exception support in method headers.
11100
11101 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
11102
11103         * unicode.c: make iconv_convert () return the number of bytess written
11104         in the output buffer.
11105
11106 2002-01-15  Dick Porter  <dick@ximian.com>
11107         * threads.c: Make the runtime's idea of infinite timeouts coincide
11108         with the class library's
11109
11110         Fix a particularly egregious bug in mono_thread_cleanup(). That
11111         code was so utterly bogus it must have been written on a Monday.
11112
11113 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
11114
11115         * reflection.h: add subtypes field to TypeBuilder.
11116         * reflection.c: encode constants for literal fields.
11117         Handle subtypes. Fix user string token (and add a zero byte)
11118         at the end.
11119         
11120 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
11121
11122         * class.c (mono_class_init): bug fix: assign slot numbers for
11123         abstract methods.
11124
11125 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11126
11127         * reflection.c: don't try to output a code RVA for abstract methods.
11128         Small fixes for method header format. Output parameter info to the
11129         ParamDef table. Save method overriding info to MethodImpl table.
11130         Fix property support. Allow typedef.extends to be a type in the
11131         building assembly.
11132         * verify.c: fix off-by-one error.
11133
11134 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
11135
11136         * class.c: fix mono_class_from_mono_type () for szarray types.
11137         Remove unused cache check in mono_class_from_type_spec().
11138         * icall.c: *type_from_name () functions handle simple arrays and byref.
11139         * reflection.c: handle byref and szarray types. Handle methods without
11140         body (gets P/Invoke compilation working). Handle types and fields in
11141         get_token ().
11142         * reflection.h: add rank to MonoTypeInfo.
11143
11144 2002-01-10  Dick Porter  <dick@ximian.com>
11145
11146         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
11147         internal calls
11148
11149 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
11150
11151         * icall.c: initialize class in type_from_handle ().
11152         Loop also in parent classes for get_method ().
11153         * reflection.c: properly encode class and valuetype types.
11154         Start on encoding TypeBuilder types. Handle fieldrefs.
11155         Use correct length when registering a user string.
11156         Handle ConstructorBuilder and MonoMethod in get_token ().
11157         Make mono_type_get_object () aware of cached types.
11158         * object.c: back out change to mono_string_new ().
11159
11160 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
11161         * object.c: mono_string_new should return a NULL when the string 
11162         passed in is NULL -- not try to deference it.
11163         
11164 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
11165
11166         * icall.c: hack to make IsSubType work for TypeBuilders.
11167         * reflection.c: emit constructors before methods.
11168         Retrieve param names in mono_param_get_objects().
11169
11170 2002/01/05  Nick Drochak  <ndrochak@gol.com>
11171
11172         * Makefile.am: fix list of headers and sources so automake 1.5
11173         doesn't complain. Removed \# at end of list.
11174
11175 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
11176
11177         * reflection.c: get token for a method ref. Set return type of
11178         constructor to void.
11179         * loader.c: debug message.
11180         * class.c: typo fix.
11181
11182 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
11183
11184         * icall.c: fix array init with rank > 1. FindMembers
11185         loops in parent class as well.
11186         * image.c: do not insert nested types in name cache.
11187         * reflection.c: warning fix.
11188         * reflection.h: add override method (for interface impl).
11189
11190 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
11191
11192         * metadata.c: fix customattr decoding.
11193
11194 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
11195
11196         * rawbuffer.cs: Added native Win32 implementation, avoids using
11197         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
11198
11199 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
11200
11201         * class.c: make the low-level routines handle the cache.
11202
11203 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
11204
11205         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
11206
11207 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
11208
11209         * class.c: fix mono_array_element_size() for objects.
11210         * class.h, class.c: add properties to MonoClass and load them
11211         at init time.
11212         * icall.c: check with isinst() when assigning a value to an array
11213         instead of requiring the classes to match exactly.
11214         Implemented icall for System.Type::GetType().
11215         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
11216         enums. Handle bindingflags when looking for methods and fields.
11217         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
11218         and mono_metadata_methods_from_property().
11219         * reflection.h, reflection.c: added structures for propreties,
11220         parameters and enums. Implemented mono_property_get_object() and
11221         mono_param_get_objects().
11222
11223 2001-12-18  Dick Porter  <dick@ximian.com>
11224
11225         * file-io.c: Use mono_string_to_utf16() instead of
11226         mono_string_chars()
11227
11228         * object.c: Added mono_string_to_utf16(), which copies the non
11229         NULL-terminated MonoString into a new double-null-terminated
11230         buffer.
11231
11232 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
11233
11234         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
11235
11236 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
11237
11238         * file-io.c: raise exceptions if handle is invalid.
11239
11240 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
11241
11242         * assembly.c: yet another check for mscorlib.
11243         * class.c, class.h: load nesting info for classes.
11244         * icall.c: many new functions to support the Reflection classes.
11245         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
11246         * reflection.h, reflection.c: mono_image_create_token(),
11247         mono_assembly_get_object(), mono_type_get_object(),
11248         mono_method_get_object(), mono_field_get_object(): methods to return
11249         objects that parallel the C representation of assemblies, types,
11250         methods, fields.
11251
11252 2001-12-11  Dick Porter  <dick@ximian.com>
11253
11254         * icall.c:
11255         * file-io.c: Internal calls for file IO.
11256
11257 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
11258
11259         * tabledefs.h: missing FileAttributes.
11260         * verify.h, verify.c: use is_valid_string () to simplify and check for
11261         valid strings more correctly. Fix warnings and speeling.
11262         Check more tables: Filed, File, ModuleRef, StandAloneSig.
11263         Check code: branches, maxstack, method calls.
11264
11265 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
11266
11267         * object.c (mono_object_allocate): removed static, so that the jit
11268         can allocate value types.
11269
11270         * icall.c (ves_icall_System_DateTime_GetNow): impl.
11271
11272 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11273
11274         * class.c: init enum types right away and register the
11275         token->MonoClass map in mono_class_create_from_typedef ().
11276         * verify.h, verify.c: first cut of the verifier.
11277         * pedump.c: add --verify switch to verify metadata tables.
11278         * tabledefs.h: add some missing enums.
11279
11280 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
11281
11282         * class.c (mono_install_runtime_class_init): impl.
11283         (mono_class_init): renamed mono_class_metadata_init to
11284         mono_class_init, also removed the metadata_inited flag
11285
11286         * object.c (mono_object_isinst): use faster algorithm
11287
11288 2001-11-30  Radek Doulik  <rodo@ximian.com>
11289
11290         * mono-endian.h: reverted last change
11291         added function prototypes
11292
11293         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
11294         add mono-endian.c back
11295
11296         * mono-endian.c: returned back, as Paolo pointed out, it's needed
11297         for unaligned access, I've mistaked it with endianess. I am
11298         sorry.
11299         (mono_read16): fix reverted endianess
11300         (mono_read64): ditto
11301         (mono_read32): ditto
11302
11303 2001-11-30  Dick Porter  <dick@ximian.com>
11304
11305         * exception.c: Implement mono_exception_from_name()
11306
11307 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11308
11309         * metadata.h, metadata.c: remove params_size and locals_size and their
11310         calculation from the metadata code: they are only usefult to the
11311         interp.
11312
11313 2001-11-29  Radek Doulik  <rodo@ximian.com>
11314
11315         * object.c (mono_ldstr): swap bytes here, it's probably not the
11316         best place, but works for me now, I'll redo it once I know mono
11317         better, also note that I add PROT_WRITE and don't reset back, also
11318         note that it's only affects big endians, so x86 should be OK
11319
11320         * mono-endian.h (read16): use just glib macros for both endians
11321
11322         * mono-endian.c: removed as glib macros are used in in
11323         mono-endian.h so we don't need to care about endianess for read
11324         macros as glib does that for us already
11325
11326 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
11327
11328         * class.h, class.h: take minimum alignment into consideration so
11329         that the fields of a class remain aligned also when in an array.
11330
11331 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11332
11333         * loader.h, loader.c: add mono_method_get_param_names().
11334         * class.c: 0-init class fields.
11335
11336 2001-11-26  Dick Porter  <dick@ximian.com>
11337
11338         * icall.c:
11339         * threads-types.h:
11340         * threads.c: New file that handles System.Threading on all platforms
11341
11342         * object.c: 
11343         * object.h: Remove the synchronisation struct from MonoObject,
11344         replace it with a pointer that gets initialised on demand
11345
11346         * Makefile.am: Replace all the system-specific threading code with
11347         a single file that uses the new wrapper library
11348
11349 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
11350
11351         * class.c, class.h: add mono_install_trampoline() so that the runtime
11352         can register a function to create a trampoline: removes the ugly
11353         requirement that a runtime needed to export arch_create_jit_trampoline.
11354         * object.h, object.c: added mono_install_handler() so that the runtime
11355         can install an handler for exceptions generated in C code (with
11356         mono_raise_exception()). Added C struct for System.Delegate.
11357         * pedump.c: removed arch_create_jit_trampoline.
11358         * reflection.c: some cleanups to allow registering user strings and
11359         later getting a token for methodrefs and fieldrefs before the assembly
11360         is built.
11361         * row-indexes.h: updates and fixes from the new ECMA specs.
11362
11363 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
11364
11365         * class.h, class.c: add enum_basetype field to MonoClass.
11366         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
11367         to get index in the constant table reated to a field, param or
11368         property.
11369         * reflection.h, reflection.c: handle constructors. Set public-key and
11370         version number of the built assembly to 0.
11371         * row-indexes.h: update from new ECMA spec.
11372
11373 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11374
11375         * class.h, class.c: add a max_interface_id to MonoClass.
11376         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
11377         since it's used to do that. Added mono_type_type_from_obj().
11378         Make GetType() return NULL instead of segfaulting if the type was not
11379         found. Handle simple arrays in assQualifiedName.
11380         * object.h: add a struct to represent an Exception.
11381         * reflection.c: output call convention in method signature.
11382         Add code to support P/Invoke methods and fixed offsets for fields.
11383
11384 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
11385
11386         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
11387         the value.
11388         * icall.c: use mono_array_addr instead of array->vector: fixes the
11389         reflection image writing.
11390         * reflection.c: init call convention byte to 0 in method signature.
11391         Encode the property signature. Don't output property-related methods
11392         twice. Really process the properties for a type (don't cast a field to
11393         a property, my mom always told me that).
11394         Fix 64 bit issues in pointer alignment in a different and more
11395         readable way.
11396
11397 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
11398
11399         * loader.h: Removed type class from MonoDefaults, added monotype
11400
11401         * loader.c: Loaded MonoType, removed loading of Type
11402
11403         * icall.c (my_mono_new_object): Now returns a System.MonoType,
11404         and fills in System.Type._impl with a RuntimeTypeHandle rather
11405         than the actual MonoClass *
11406
11407         (ves_icall_type_from_handle): change from type_class to
11408         monotype_class
11409
11410         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
11411         implemented
11412
11413         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
11414         implemented
11415
11416         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
11417
11418         (ves_icall_System_Reflection_Assembly_GetType): implemented
11419
11420         (ves_icall_System_MonoType_assQualifiedName): implemented
11421
11422         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
11423
11424 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
11425
11426         * assembly.c (mono_assembly_open): Implement a cache for the
11427         assemblies. 
11428
11429         (mono_assembly_close): only destroy the assembly when the last
11430         reference is gone.
11431         
11432 2001-11-09  Dick Porter  <dick@ximian.com>
11433
11434         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
11435
11436 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
11437
11438         * class.c (mono_class_metadata_init): bug fix: compute the right slot
11439
11440 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11441
11442         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
11443         from Martin Weindel.
11444         * object.h: add mono_string_chars ().
11445
11446 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
11447
11448         * reflection.c (build_compressed_metadata): Eliminates warnings
11449         and uses 64-bit clean code.
11450
11451         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
11452         (mono_type_equal): Change signature to eliminate warnings.
11453
11454 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11455
11456         * icall.c, loader.c: remove the internalcall array constructors.
11457         Changes to match the new MonoArray structure.
11458         * object.h, object.c: an array object doesn't allocate an extra
11459         vector. Add mono_array_new_full () to create jagged arrays easily.
11460
11461 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11462
11463         * metadata.h, metadata.c: add mono_metadata_field_info () to
11464         retreive all the info about a field from vairous tables.
11465         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
11466         * class.h, class.c: augment MonoClassField with more info.
11467         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
11468         policy and load a field's RVA if needed.
11469
11470 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
11471
11472         * class.c (mono_class_metadata_init): create a trampoline for all
11473         virtual functions instead of actually compiling them.
11474
11475 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
11476
11477         * class.h, class.c: include name in MonoClassField.
11478         * class.c: fix fundamental type of System.Object and System.String.
11479         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
11480         tokens in ldtoken.
11481         * icall.c: remove internalcalls for the Reflection stuff that is now
11482         done in C# code.
11483         * loader.c: mono_field_from_memberref () implementation.
11484         * mono-endian.c: thinko (s/struct/union/g).
11485         * object.c, object.h: make the mono_string_* prototypes actually use
11486         MonoString instead of MonoObject.
11487         * reflection.c, reflection.h: updates for changes in the reflection
11488         code in corlib: we use C structures that map to the actual C# classes.
11489         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
11490         fat method header if needed and use the info from the ILGenerator for
11491         methods. Handle fields in types. Misc fixes.
11492
11493 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
11494
11495         * class.c (mono_class_metadata_init): bug fix: always allocate
11496         space for static class data
11497
11498 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
11499
11500         * class.c (mono_compute_relative_numbering): use relative
11501         numbering to support fast runtime type checks.
11502
11503 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
11504
11505         * class.c (mono_class_create_from_typeref): added debugging output
11506         to print class name when MonoDummy is returned instead of real class
11507
11508 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
11509
11510         * class.c (mono_class_metadata_init): interface offset table now
11511         contains pointers into the vtable - this is more efficient for the jit
11512
11513 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
11514
11515         * class.c (mono_class_metadata_init): use a temporary vtable (the
11516         old algorithm only worked for the interpreter, but not for the jit)
11517
11518 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
11519
11520         * loader.c (method_from_memberref): use mono_class_get to get the
11521         class of an array instead of using System.Array directly.
11522         (mono_get_method): also add MEMBERREF methods to the method cache
11523         which usefull for arrays.
11524
11525 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
11526
11527         * pedump.c (arch_compile_method): added to compute vtable entry
11528
11529         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
11530         number of interfaces.
11531         
11532         * class.h: merged MonoArrayClass into MonoClass
11533
11534         * class.c (mono_class_create_from_typedef): compute the vtable size and
11535         allocate space to include the vtable inside MonoClass
11536         (mono_class_metadata_init): initialize the vtable
11537
11538 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
11539
11540         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
11541         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
11542         * image.c: endian fixes by Laurent Rioux.
11543         * object.h, object.c: rename MonoStringObject to MonoString and
11544         MonoArrayObject to MonoArray. Change some function names to conform to
11545         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
11546         guint16* as first argument, so don't use char*.
11547         Provide macros to do the interesting things on arrays in a portable way.
11548         * threads-pthread.c: updates for the API changes and #include <sched.h>
11549         (required for sched_yield()).
11550         * icall.c: updates for the API changes above.
11551         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
11552         platforms that need them.
11553
11554 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11555
11556         * class.c: set the correct type for all the fundamental
11557         type when loading the class.
11558
11559 2001-10-05  Dick Porter  <dick@ximian.com>
11560
11561         * threads-pthread.c (pthread_mutex_timedlock): Simple
11562         compatibility version for C libraries that lack this call.
11563
11564 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11565
11566         * class.c: MonoTypes stored in MonoClass are stored as
11567         fundamental MonoTypes when the class represents a
11568         fundamental type (System.Int32, ...).
11569         The TypeHandle return by ldtoken is a MonoType*.
11570         * icall.c: ves_icall_get_data_chunk () write out all the
11571         PE/COFF stuff. Implement ves_icall_define_method (),
11572         ves_icall_set_method_body (), ves_icall_type_from_handle ().
11573         * image.c: properly skip unknown streams.
11574         * loader.h, loader.c: add type_class to mono_defaults.
11575         * metadata.c, metadata.h: export compute_size () as
11576         mono_metadata_compute_size () with a better interface.
11577         Typo and C&P fixes.
11578         * pedump.c: don't try to print the entry point RVA if there is no entry point.
11579         * reflection.c, reflection.h: many cleanups, fixes, output method
11580         signatures and headers, typedef and typeref info, compress the metadata
11581         tables, output all the heap streams, cli header etc.
11582         * row-indexes.h: typo fixes.
11583
11584 2001-10-04  Dick Porter  <dick@ximian.com>
11585
11586         * object.h: Add a synchronisation mutex struct to MonoObject
11587
11588         * object.c (mono_new_object): Initialise the object
11589         synchronisation mutexes
11590
11591         * icall.c: System.Threading.Monitor internal calls
11592         
11593         * threads-pthread.h:
11594         * threads-pthread.c: System.Threading.Monitor internal calls
11595
11596         * threads-types.h: New file, includes the system-specific thread
11597         structures
11598         
11599         * threads-pthread-types.h:
11600         * threads-pthread-types.c: New files, handle pthread-specific
11601         synchronisation types
11602
11603         * threads-dummy-types.h: 
11604         * threads-dummy-types.c: New files of dummy support for
11605         thread-specific types
11606
11607         * metadata.c:
11608         * image.c:
11609         * pedump.c: include mono-endian.h not endian.h
11610         
11611         * Makefile.am: More threads files.
11612         Name mono-endian.h not endian.h
11613
11614 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
11615
11616         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
11617         stuff and implement a few more bits.
11618         * icall.c: a field needs to be dereferenced twice. Do not use the same
11619         name for two variables in the same scope.
11620         * image.c, image.h: cleanups.
11621
11622 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
11623
11624         * class.c (mono_class_metadata_init): bug fix: compute the right size
11625
11626 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
11627
11628         * icall.c: implemented some of the Reflection internalcalls.
11629         * image.c, image.h: start writing out the PE/COFF image.
11630         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
11631         that does the reverse than decode_blob_size ().
11632         * object.c: use mono_metadata_encode_value (). Move here
11633         temporary implementation of mono_string_to_utf8 ().
11634         * rawbuffer.c: make malloc_map static.
11635
11636 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11637
11638         * metadata.c: fix type comparison for arrays.
11639         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
11640         Added a couple of new classes to monodefaults.
11641         * icall.c: added a couple of Reflection-related internalcalls.
11642         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
11643         Added a byval_arg MonoType to MonoClass.
11644
11645 2001-09-28  Dick Porter  <dick@ximian.com>
11646
11647         * icall.c:
11648         * threads-pthread.h: 
11649         * threads-pthread.c: Implemented internal calls for
11650         LocalDataStoreSlot operations.  Applied mutexes around all shared
11651         data.  Reworked the thread creation and Start() operations to
11652         avoid a race condition.
11653         
11654         * threads-dummy.h:
11655         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
11656
11657 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
11658
11659         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
11660
11661 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
11662
11663         * class.c, loader.c: warn and return NULL instead of erroring out.
11664         * icall.c: added System.AppDomain::getCurDomain().
11665         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
11666
11667 2001-09-25  Dick Porter  <dick@ximian.com>
11668
11669         * threads-pthread.h:
11670         * threads-pthread.c: Implemented timed thread joining and added
11671         System.Threading.Thread::Join_internal internal call
11672
11673         * icall.c: Added System.Threading.Thread::Join_internal internal call
11674
11675         * threads-dummy.h:
11676         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
11677
11678 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
11679
11680         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
11681         mono_string_intern () to implement the semantics of the ldstr opcode
11682         and the interning of System.Strings.
11683         * icall.c: provide hooks to make String::IsIntern and String::Intern
11684         internalcalls.
11685
11686 2001-09-23  Dick Porter  <dick@ximian.com>
11687
11688         * threads-dummy.c: 
11689         * threads-dummy.h: New files of dummy threading routines
11690
11691         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
11692         support code based on system specifics
11693
11694         Rename PTHREAD_LIBS to THREAD_LIBS
11695         
11696 2001-09-23  Dick Porter  <dick@ximian.com>
11697
11698         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
11699         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
11700         internal calls.
11701         (mono_thread_init): Set up a Thread object instance to return when
11702         the main thread calls Thread.CurrentThread
11703         (mono_thread_cleanup): Wait for all subthreads to exit
11704
11705         * icall.c: New internal calls for System.Threading.Thread::Sleep
11706         (including Schedule) and CurrentThread
11707
11708         * threads.h: New file, to insulate thread-specific stuff from the
11709         rest of the code
11710
11711 2001-09-21  Dick Porter  <dick@ximian.com>
11712
11713         * threads-pthread.h: 
11714         * threads-pthread.c: New file, for handling pthreads-style
11715         threading support.  Start() now starts a new thread and executes
11716         the ThreadStart delegate instance.
11717
11718         * icall.c: Added the internalcall for
11719         System.Threading.Thread::Start_internal
11720
11721         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
11722
11723 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
11724
11725         * loader.c: work around the different signatures for delegates
11726         constructors csc generates in compiled code vs the ones compiled in mscorlib.
11727
11728 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11729
11730         * class.h, class.c: add mono_class_get_field_from_name ().
11731         * *: Fix C comments and other ANSI C issues.
11732
11733 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
11734
11735         * endian.h, assembly.c: fix some endianness issues.
11736
11737 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
11738
11739         * loader.h, load.c: add delegate_class to mono_defaults.
11740         Handle runtime provided methods in mono_get_method ().
11741
11742 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
11743
11744         * loader.c (mono_get_method): use pinvoke for internal call
11745
11746         * icall.c: use pinvoke for internal call
11747
11748         * loader.c (method_from_memberref): set the method name
11749
11750 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
11751
11752         * metadata.c: help the compiler generate better code for
11753         mono_class_from_mono_type ().
11754
11755 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
11756
11757         * class.c (mono_class_metadata_init): delayed computing of the
11758         class size to mono_class_metadata_init ()
11759
11760 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
11761
11762         * class.c, class.h: add an interfaces member to MonoClass.
11763         * image.c, image.h: add assembly_name field to MonoImage
11764         from the assembly table.
11765         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
11766
11767 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11768
11769         * class.c: Handle Array in mono_class_from_mono_type ().
11770         * metadata.c, pedump.c: some endian fixes.
11771
11772 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11773
11774         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
11775         * metadata.c: fix small problem introduced with the latest commit.
11776
11777 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
11778
11779         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
11780         We don't need a MonoMetadata pointer anymore to compare signatures in
11781         mono_metadata_signature_equal (), update callers.
11782         Reduced memory usage an number of allocations for MonoMethodHeader and
11783         MonoMethodSignature.
11784
11785 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
11786
11787         * metadata.c: added compare for szarray.
11788
11789 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
11790
11791         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
11792         and add a couple more types to it and mono_defaults. Give an hint on
11793         classes that need implementing in our corlib and are referenced
11794         in mscorlib.
11795
11796 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
11797
11798         * class.h, class.c: keep track if a class is also an Enum.
11799         * loader.c: Implement a couple more types for use in libffi
11800         marshalling. Gives better diagnostics when failing to dlopen
11801         a library. Set method->klass for P/Invoke methods, too.
11802
11803 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
11804
11805         * class.c, class.h: add a MonoType this_arg to MonoClass that
11806         represents a pointer to an object of the class' type that
11807         can be used by the interpreter and later the type cache.
11808         Add best guess alignment info for valuetype objects.
11809
11810 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
11811
11812         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
11813         into MonoType: one less level of indirection and allocation and
11814         simplifies quite a bit of code. Added cache for MonoTypes that are
11815         used frequently, so that we don't need to allocate them all the time.
11816
11817 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
11818
11819         * class.c (mono_class_create_from_typedef): System.Enum is also a
11820         value type, although it does not derive from System.ValueType
11821         (maybe a bug in the ms compiler?)
11822
11823         * metadata.c (mono_type_size): return the right size for value types
11824
11825         * loader.c (mono_get_method): only initialize method header if not abstract
11826
11827         * class.c (mono_class_from_mono_type): use mono_default values. 
11828
11829 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
11830
11831         * *: use MonoClass pointers instead of <type_tokens>
11832         
11833         * class.h: new flag: metadata_inited.
11834
11835         * class.c (mono_class_metadata_init): impl.
11836         (mono_class_instance_size): impl.
11837         (mono_class_data_size): impl.
11838
11839 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11840
11841         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
11842         MonoClass now has the name and name_space fields. 
11843         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
11844         mono_get_method () takes and optional MonoClass as argument.
11845         Removed mono_typedef_from_name() and added mono_class_token_from_name()
11846         instead that takes advantage of a map from class names to typedef
11847         tokens in MonoImage.
11848
11849 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
11850
11851         * metadata.c: zero is not a valid alignment boundary.
11852         Merge MONO_TYPE_VOID in default decoding code.
11853
11854 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
11855
11856         * image.h: merged MonoMetadata into MonoImage
11857
11858         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
11859         identify the type of elements.
11860
11861 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
11862
11863         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
11864         * cil-coff.h: split MonoMSDOSHeader and add size info.
11865         * image.c: add some consistency checks.
11866         * metadata.c: fix row size computation: one programmer
11867         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
11868         add explanation for the locator routine.
11869         Fix decoding of size in method header.
11870         
11871 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
11872
11873         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
11874         (g_concat_dir_and_file): Bring g_concat_dir_and_file
11875         function from gnome-libs.  This uses the right path separator
11876         based on the OS, and also works around a bug in some systems where
11877         a double slash is not allowed. 
11878         (default_assembly_name_resolver): Use g_concat_dir_and_file
11879         (mono_assembly_open): ditto.
11880
11881 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
11882
11883         * metadata.c (mono_metadata_signature_equal): impl.
11884
11885         * *: void is now a realy MonoType (instead of using NULL)
11886         
11887         * metadata.c (do_mono_metadata_parse_type): use
11888         mono_metadata_parse_type to parse void value.
11889
11890 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
11891
11892         * metadata.c, metadata.h: in the signature and method header store
11893         only the space required for holding the loca vars and incoming arguments.
11894
11895 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
11896
11897         * metadata.c (do_mono_metadata_parse_type): treat void like any
11898         other type (instead of assigning NULL);
11899
11900 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
11901
11902         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
11903
11904 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
11905
11906         * image.c (do_mono_image_open): added a cache for arrays.
11907
11908 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11909
11910         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
11911         decode a single column from a row in a metadata table and changes
11912         to take advantage of it in the typedef locator (gives a nice speed up).
11913         Store offset info for function params.
11914
11915 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
11916
11917         * image.h (MONO_IMAGE_IS_CORLIB): removed 
11918
11919 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
11920
11921         * assembly.c: how could mono_assembly_close () had ever worked?
11922         * metadata.c, metadata.h: provide offset info for local vars.
11923         Implement mono_type_size () to take care of alignment as well
11924         as size (it was mono_field_type_size in cli/class.c before).
11925
11926 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
11927
11928         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
11929
11930         * assembly.h (CORLIB_NAME): set to corlib.dll
11931
11932         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
11933
11934 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11935
11936         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
11937         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
11938         tokentype.h: massive namespace cleanup.
11939
11940 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11941
11942         * metadata.h, metadata.c: decode exception clauses when parsing method header.
11943
11944 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
11945
11946         * metadata.c (mono_metadata_free_type): added check for type !=
11947         NULL (void) before calling mono_metadata_free_type()
11948
11949 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
11950
11951         * metadata.h, row_indexes.h: added header with enumerations to use
11952         to index in the columns from tables in metadata and to decode coded
11953         tokens: we should start using this instead of embedding magic numbers
11954         all over the code.
11955
11956 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
11957
11958         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
11959         Move metadata_t info from cli_image_info_t to MonoImage, where
11960         it's easily accessible. Changed all the uses accordingly.
11961         Added the method and class caches to MonoImage.
11962         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
11963         and mono_metadata_decode_value () signature to be more consistent
11964         with the other parse functions (and simplify code). Taken advantage
11965         of zero-length array allocation with GCC. Removed reduntant (and
11966         wrong) MonoFieldType struct and use MonoParam instead. Changed
11967         mono_metadata_parse_field_type () to use common code for parsing.
11968         Added mono_metadata_typedef_from_field () and
11969         mono_metadata_typedef_from_method () to lookup a typedef index from a
11970         field or method token.
11971         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
11972
11973 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
11974
11975         * metadata.c (mono_metadata_parse_field_type): Implement. 
11976         (do_mono_metadata_parse_type): Split engine from
11977         mono_metadata_parse_type, so that we can create smaller structures
11978         for things that just have one pointer to the MonoType (look at
11979         the MonoFieldType)
11980
11981 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
11982
11983         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
11984         as Jan Gray found out, it is incorrect. 
11985
11986 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
11987
11988         * assembly.c: Implement asssembly loading.  This loads an image
11989         and loads all the referenced assemblies.  Come to think of it, we
11990         could always do lazy loading of the assemblies. 
11991
11992         * image.c (mono_image_open): Keep loaded images in a hashtable.
11993
11994         * image.h (MonoImage): Add reference count.
11995
11996 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
11997
11998         * assembly.c (mono_assembly_open): Keep track of the file name in
11999         case the assembly has no ASSEMBLY table.
12000
12001         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
12002         from get.c here.
12003
12004 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
12005
12006         * metadata.c, metadata.h: decode local vars in method header
12007         parse function. Change callers accordingly.
12008
12009 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
12010
12011         * metadata.h, cil-coff.h: protect against multiple inclusion.
12012         Added some new structures to hold information decoded from metadata:
12013         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
12014         and relevant decoding/free functions.
12015         * metadata.c: implement decoding functions. Add warning for out of bounds
12016         index in mono_metadata_locate(). Implement mono_get_method () to retreive
12017         all the info about a method signature and invocation. Remove check on
12018         uninitialized local var in parse_mh() and fix memory leak.
12019
12020 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
12021
12022         * metadata.h: More macros.
12023
12024         * tokentype.h: New file.
12025
12026 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
12027
12028         * assembly.c: added a consistency check and initialize
12029         some structures with g_new0().
12030         * metadata.c: fixed a couple more bugs in table size computation
12031         and add other checks for out-of bound access to metadata.
12032
12033 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
12034
12035         * metatada.c: fix bugs computing table sizes. Spew a
12036         warning when index in string heap is out of bounds.
12037
12038 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
12039
12040         * metadata.h: Add a couple of macros to manipulate tokens. 
12041
12042 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
12043
12044         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
12045         cli_section_tables).
12046
12047 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
12048
12049         * metadata.c (mono_metadata_user_string): New function, provides
12050         access to the UserString heap. 
12051
12052 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
12053
12054         * metadata.c: Add inline documentation.
12055
12056 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
12057
12058         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
12059         files. 
12060
12061 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
12062
12063         * typeattr.h: New file, TypeAttribute flags. 
12064
12065 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
12066
12067         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
12068         mono_assembly_ensure_section): Section loading code.
12069         (load_section_tables): Load the sections.
12070
12071         * mono/metadata/metadata.c (mono_metadata_locate_token,
12072         mono_metadata_locate): Functions to locate the information
12073         definition given a token or a table and an index.
12074         (mono_metadata_compute_table_bases): New.
12075         (compute_size): New function to compute the sizes of the various
12076         tables.
12077
12078         * mono/metadata/metadata.h: Finish listing the different index
12079         types. 
12080
12081         * mono/metadata/pedump.c: Improve to dump new information.
12082
12083 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
12084
12085         * mono/metadata/metadata.c: Entered all the tables matching
12086         Beta2. 
12087
12088         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
12089