Committing Geoff Norton's patch for #62984.
[mono.git] / mono / metadata / ChangeLog
1 2004-09-17  Geoff Norton <gnorton@customerdna.com>
2
3         * reflection.c (type_get_qualified_name): If the klass is null
4         return the typename to avoid a NullRefEx.
5         (encode_cattr_value): Get the qualified name of the boxed type,
6         not the underlying enumtype.  Fixes #62984.
7
8 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9
10         * marshal.c: Fix problems with previous checkin.
11
12 2004-09-21    <vargaz@freemail.hu>
13
14         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
15         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
16
17         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
18
19 2004-09-21  Geoff Norton <gnorton@customerdna.com>
20
21         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
22         should only return a type for pointers, arrays, and passbyref types.
23         Fixes bug #63841.
24
25 2004-09-21  Martin Baulig  <martin@ximian.com>
26
27         * domain.c (mono_debugger_check_runtime_version): New public
28         function.
29
30         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
31
32 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
33
34         * reflection.c: Added missing sort to the declarative security 
35         attributes table. MS implementation stops seeing the attributes if the
36         token number regress in the table (as shown by ildasm and permview).
37
38 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
39
40         * object-internals.h (MonoReflectionModule): Add 'token' field.
41         
42         * reflection.c (mono_reflection_get_token): Add support for Module
43         and Assembly.
44         (mono_module_get_object): Set 'token' field.
45         (mono_module_file_get_object): Set 'token' field.
46
47         * icall.c: Add new Assembly and Module icalls.
48
49         * appdomain.c: Bump corlib version.
50
51 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
52
53         * loader.h loader.c class.h class.c: Add helper functions for obtaining
54         tokens of metadata objects.
55
56         * reflection.h reflection.c (mono_reflection_get_token): New function
57         to obtain the token of a metadata object.
58
59         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
60
61 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
62
63         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
64         
65         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
66
67 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
68
69         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
70         * object-internals.h: Added 3 MonoArray* members to MonoReflection
71         AssemblyBuilder to access the permissions set in the class lib.
72         * reflection.c: Added security attributes encoding step in 
73         mono_image_build_metadata.
74         * tabledefs.h: Added new security actions defined in 2.0:
75         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
76
77 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
78
79         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
80         macro parameter.
81
82 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
83  
84         * locales.c: nullify the ICU_collator member of CompareInfo when it is
85           finalized. There where random SIGSEVs at program termination, when
86           an object being finalized was trying to do a string comparison and
87           the current culture was already finalized.
88  
89 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
90
91         * threads.c: call thread_cleanup before finishing the thread if we get
92         there.
93
94 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
95
96         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
97         assemblies from the parent. Fixes #65665.
98
99 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
100
101         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
102         modifiers.
103
104 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
105
106         * reflection.h: add prototype for mono_get_dbnull_object
107         * reflection.c: add prototypes for get_default_param_value_blobs 
108         and mono_get_object_from_blob for fussier compilers
109
110 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
111  
112         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
113         false deadlock checks in class initialization.
114  
115 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
116
117         * image.c (mono_image_addref): Fix comment.
118
119         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
120         possible.
121
122 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
123
124         * reflection.c (mono_param_get_objects): Modified to return
125         ParameterInfo.DefaultValue object.
126
127         (get_default_param_value_blobs):
128         (mono_get_object_from_blob):
129         (mono_get_dbnull_object): New helper routines. 
130
131         * object.c (mono_get_constant_value_from_blob): New helper routine
132         carved out from get_default_field_value ()
133
134         * object-internals.h (mono_get_constant_value_from_blob): Added
135         function declaration.
136
137 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
138
139         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
140         referenced assemblies. Fixes #62135.
141
142         * exception.h exception.c (mono_get_exception_file_not_found2): New
143         helper function.
144
145 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
146
147         * class.h class.c: Add mono_type_get_underlying_type ().
148
149 2004-09-09  Geoff Norton <gnorton@customerndna.com>
150
151         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
152         Fix GetTypes() to support dynamically created assemblies.
153
154 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
155
156         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
157         
158         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
159         previous patch.
160
161         * reflection.h reflection.c loader.c: Allow dynamic construction of
162         pinvoke methods. Fixes #65571.
163         
164         * reflection.c (mono_reflection_get_type): Revert previous change since
165         it causes regressions.
166
167 2004-09-08  Martin Baulig  <martin@ximian.com>
168
169         * class.c (class_compute_field_layout): Don't call
170         mono_class_layout_fields() for open generic instances.
171
172 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
173         * threads.c appdomain.c: fix typo in GC macro
174
175 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
176
177         * threads.c: don't call mono_thread_detach() in start_wrapper(),
178         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
179
180 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
181
182         * image.c (mono_image_close): Applied patch from 
183         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
184         assembly is loaded multiple times from data.
185         
186         * image.c (mono_image_open): Fix warning.
187
188 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
189
190         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
191         once. Fixes #58334.
192         
193         * reflection.c (mono_reflection_create_runtime_class): Initialize
194         klass->nested_classes. Fixes #61224.
195
196 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
197
198         * threads.c: sched_yield() on exit, to allow threads to quit.
199
200 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
201
202         * object.c (mono_unhandled_exception): Remove leftover debug code.
203
204 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
205
206         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
207
208 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
209
210         * marshal.c (emit_marshal_array): Really null terminate string arrays.
211         
212         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
213
214 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
215
216         * marshal.c (emit_marshal_array): Null terminate string arrays.
217         
218         * marshal.c (raise_auto_layout_exception): Fix warning.
219
220         * reflection.c (mono_param_get_objects): Initialize the default value
221         with DBNull.Value, not null. Fixes #62123.
222
223 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
224
225         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
226         throw an exception with a cute explanation.
227
228 2004-09-06  Dick Porter  <dick@ximian.com>
229
230         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
231         Close the new process's thread handle, as we don't use it.  The
232         handle stays around forever otherwise.
233
234 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
235
236         * object.c (arith_overflow): Fix warning.
237
238         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
239         calling conventions in method refs. Fixes #65352.
240
241         * reflection.c: Fix warnings.
242
243 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
244
245         * icall.c: Add a new icall for Array.Clear
246
247 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
248
249         * object.c: When allocating an array, we have to throw
250         an overflow exception if any of the lengths are < 0.
251
252 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
253
254         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
255         properly. Also move implementation of string array marshalling to 
256         managed code. Fixes #42316.
257
258 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
259
260         * assembly.c: provide more information when loading an assembly fails.
261
262 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
263
264         * filewatcher.c: don't expect the development fam package to be
265         installed.
266
267 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
268
269         * marshal.c: Make a copy of the signature cookie since it will be
270         freed by the caller.
271         
272         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
273
274         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
275
276         * metadata.c (mono_metadata_free_marshal_spec): New function to free
277         marshal specs.
278
279         * marshal.c: More refactoring.
280         
281         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
282         smaller functions.
283
284 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
285
286         * object.c: In mono_message_invoke, fill the output parameter array after
287           calling the managed method (it was done before the call). This fixes
288           bug #59299.
289
290 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
291
292         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
293         as well.
294
295 2004-09-02  Martin Baulig  <martin@ximian.com>
296
297         * class.c (mono_class_instance_size): Don't allow generic type
298         definitions or open generic instances.
299         (mono_class_array_element_size): If we're a value type, call
300         mono_class_instance_size() on the original class.
301
302         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
303         handle generic instances.
304
305         * mono-debug-debugger.c (write_type): Handle generic instances
306         like classes.
307
308 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
309
310         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
311         the allocation request fails. Fixes #65089.
312
313         * object.c (mono_runtime_free_method): Do not call mono_free_method.
314         
315         * object.c (mono_runtime_free_method): New function to free a dynamic
316         method.
317
318         * marshal.c (mono_delegate_free_ftnptr): New function to free the
319         delegate trampoline.
320
321         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
322         with hasthis as dynamic,
323
324         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
325
326         * domain.c (mono_jit_info_table_remove): New function to remove an
327         entry from the jit info table.
328
329         * class-internals.h (MonoMethod): Add 'dynamic' field.
330
331         * loader.c: Fix warnings.
332
333 2004-09-01  Martin Baulig  <martin@ximian.com>
334
335         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
336         instead of mono_debugger_lock() because the latter one is a no-op
337         unless running in the debugger.
338
339 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
340
341         * class.c (class_compute_field_layout): Classes with auto-layout or
342         reference fields are not blittable.
343         
344 2004-09-01  Dick Porter  <dick@ximian.com>
345
346         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
347         mono_image_get_filename() to get the assembly location.
348
349         * icall.c:
350         * metadata.h: Fix compile warnings
351
352 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
353
354         * class.c (class_compute_field_layout): System.Object is blittable.
355
356         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
357         as in/out. Fixes #59909.
358
359 2004-09-01  Martin Baulig  <martin@ximian.com>
360
361         * metadata.h (MONO_TYPE_ISREFERENCE): Call
362         mono_metadata_generic_inst_is_valuetype() if we're a generic
363         instance to check whether our underlying type is a reference type.
364
365 2004-09-01  Martin Baulig  <martin@ximian.com>
366
367         * metadata.c (mono_type_size): If we're a generic instance, call
368         mono_class_value_size() for value types.
369
370 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
371
372         * marshal.c: Implement more custom marshalling functionality. Fixes
373         #64915.
374
375 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
376
377         * mono-debug.c, debug-mono-symfile.c: add some locking love.
378
379 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
380
381         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
382
383         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
384
385         * icall.c: Fix some warnings.
386
387         * threads.c (abort_appdomain_thread): Fix unref errors.
388         (mono_thread_current): Fix THREAD_DEBUG define.
389
390 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
391
392         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
393
394         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
395
396 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
397
398         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
399         string arrays.
400
401 2004-08-28  Martin Baulig  <martin@ximian.com>
402
403         * metadata.c
404         (mono_metadata_generic_inst_is_valuetype): New public function.
405
406         * metadata.h (MONO_TYPE_ISSTRUCT): Call
407         mono_metadata_generic_inst_is_valuetype() if we're a generic
408         instance to check whether our underlying type is a valuetype.
409
410 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
411
412         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
413         #63768.
414
415 2004-08-25  Martin Baulig  <martin@ximian.com>
416
417         * loader.c (mono_get_method_from_token): Abstract methods can also
418         be generic and thus have type parameters.
419
420         * metadata-internals.h
421         (MonoDynamicImage): Added `GPtrArray *gen_params'.
422
423         * reflection.c (mono_image_get_generic_param_info): Don't create a
424         metadata row, just add an entry to the `gen_params' array.
425         (build_compressed_metadata): Sort the `gen_params' array and then
426         actually create the metadata.
427
428 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
429
430         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
431
432 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
433
434         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
435
436 2004-08-24  Martin Baulig  <martin@ximian.com>
437
438         * class.cs (mono_class_is_subclass_of): Like an interface, a
439         generic instance also derives from System.Object.
440
441 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
442
443         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
444         custom modifiers to be in any order. Fixes #61990.
445
446 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
447
448         * object.c: Register mono_object_new_fast icall.
449         
450         * object.c (mono_class_get_allocation_ftn): Return to calling
451         mono_object_new_fast, since it seems faster to compute the object 
452         size in unmanaged code than passing it as a parameter.
453
454         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
455
456         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
457         this function with Boehm as the oom handler, so we don't have to check
458         the result of GC_malloc.
459
460         * object.c: Remove checks for oom.
461
462         * object.h object.c (mono_class_get_allocation_ftn): New function to
463         return the icall which can be used to allocate an instance of a given
464         class. 
465
466         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
467
468         * class-internals.h: Add 'enabled' field.
469
470 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
471
472         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
473
474 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
475         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
476         value 0x0010.
477
478 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
479
480         * appdomain.c: use the Tls function for appdomain too,
481         at Zoltan's request. Actually return in mono_context_get
482
483         * appdomain.c, profiler.c, threads.c: use __thread
484
485 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
486
487         * appdomain.c threads.c: Call GC_CreateThread on windows.
488
489         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
490         multiple libraries since this don't work on windows.
491
492 2004-08-18  Martin Baulig  <martin@ximian.com>
493
494         * class-internals.h
495         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
496         MonoMethodHeader.
497
498         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
499         MonoMethodNormal since we also need it for abstract and interface
500         methods.
501
502         * reflection.c
503         (build_compressed_metadata): Sort the GenericParam table.
504         (mono_image_create_token): Added `gboolean create_methodspec'
505         argument; this is false when generating a MethodImpl token.
506         (reflection_methodbuilder_to_mono_method): Abstract and interface
507         methods may also have generic parameters.
508
509 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
510
511         * appdomain.c: thread local alloc
512
513 2004-08-17  Martin Baulig  <martin@ximian.com>
514
515         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
516
517         * icall.c
518         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
519         argument.
520
521         * class.c (mono_type_get_full_name): New public function.
522         (mono_type_get_name): Don't include the type arguments.
523
524 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
525
526         * Makefile.am: Build static versions of libmetadata and libmonoruntime
527         for inclusion into the mono executable.
528
529 2004-08-16  Martin Baulig  <martin@ximian.com>
530
531         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
532         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
533
534 2004-08-14  Martin Baulig  <martin@ximian.com>
535
536         * class.c (dup_type): Also copy the `byref' field.
537
538 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
539
540         * reflection.c (create_dynamic_mono_image): Revert the last change 
541         since it breaks bootstrap.
542
543 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
544
545         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
546
547         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
548         not free them with g_free.
549
550 2004-08-11  Martin Baulig  <martin@ximian.com>
551
552         * reflection.c (mono_reflection_setup_internal_class): Also call
553         mono_class_setup_mono_type() if we already have a `tb->type.type'.
554
555 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
556
557         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
558         called during default (first) AppDomain creation. Keep track of
559         Evidence when loading assemblies.
560
561 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
562
563         * opcodes.c, opcodes.h: reduce runtime relocations.
564
565 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
566
567         * culture-info.h, locales.c: fixes and chages to sue the new
568         optimized format of the locale data.
569         * culture-info-tables.h: regenerated.
570
571 2004-08-06  Geoff Norton <gnorton@customerdna.com>
572         
573         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
574
575 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
576
577         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
578         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
579         * domain-internals.h: icall declaration.
580         * icall.c: icall registration.
581         * object-internals.h: New fields in MonoAssembly for CAS.
582
583 2004-08-05  Duncan Mak  <duncan@ximian.com>
584
585         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
586         CEE_LDELEM_ANY.
587
588 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
589
590         * reflection.c: fix to deal with object[] arrays in custom ctors
591         (bug #62550).
592
593 2004-08-05  Martin Baulig  <martin@ximian.com>
594
595         * class.c (mono_class_array_element_size): Added support for
596         generic instances and correctly handle "recursive" types.
597
598 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
599
600         * assembly.c: Fix warnings.
601
602 2004-08-04  Martin Baulig  <martin@ximian.com>
603
604         * class.c
605         (mono_type_get_name_recurse): Added `gboolean include_arity'
606         argument specifying whether or not we should include the generic
607         arity in the type name.
608         (_mono_type_get_name): New static function.
609         (mono_class_setup_vtable): If we're a generic instance, don't
610         include the generic arity in the names of explicit method
611         implementations.        
612
613 2004-08-03  Martin Baulig  <martin@ximian.com>
614
615         * class.c (mono_type_get_name_recurse): Enclose the generic type
616         arguments in `<', '>'.
617
618 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
619
620         * gc.c: make GC warning messages use the trace API, they are just
621         noise to most of the users.
622
623 2004-08-03  Martin Baulig  <martin@ximian.com>
624
625         * debug-mono-symfile.c (read_string): Correctly read the string.
626
627 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
628
629         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
630         
631         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
632         icalls.
633         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
634
635 2004-07-30  Martin Baulig  <martin@ximian.com>
636
637         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
638         Reflect latest symbol writer changes.   
639
640 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
641
642         * object.c: always create an object if null is passed
643         to Invoke() where a valuetype is expected.
644
645 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
646
647         * marshal.c (mono_marshal_init): make managed
648         signatures match native ones better for 64bits.
649
650 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
651
652         * appdomain.c: hack to build correctly the private bin path on windows.
653         Fixes bug #61991.
654
655 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
656
657         * assembly.c: Load mscorlib from the correct framework directory
658           (mono/<version>/mscorlib.dll).
659         * appdomain.h: Added prototypes for new functions.
660         * internals.h: Added some prototypes.
661         * domain.c: When initializing the runtime, get from the executable and
662           the configuration files the runtime version that the app supports.
663           Added support methods for reading app.exe.config. Added list of versions
664           supported by the JIT. Added two new methods: mono_init_from_assembly,
665           which initializes the runtime and determines the required version from
666           the provided exe file, and mono_init_version, which initializes
667           the runtime using the provided version.
668         * icall.c: Get machine.config from version-specific directory.
669         * reflection.c: When generating an image, embed the version number
670           of the current runtime.
671
672 2004-07-28  Dick Porter  <dick@ximian.com>
673
674         * socket-io.c
675         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
676         returned sockaddr size before creating the remote address object.
677         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
678         61608.
679
680 2004-07-28  Dick Porter  <dick@ximian.com>
681
682         * locales.c (string_invariant_compare_char): Fix invariant char
683         compares between upper and lower cases.  Fixes bug 61458.
684
685 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
686         
687         * marshal.c: actually cache stelem.ref wrappers.
688         
689 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
690
691         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
692         sections and remove the mono_cli_rva_map () function.
693
694 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
695
696         * debug-mono-symfile.c: fix one more endianess issue, from a patch
697         by Geoff Norton (<gnorton@customerdna.com>).
698
699 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
700
701         * class.c: fix class loads for pointer types (typeof(int) !=
702         typeof(int*)).
703
704 2004-07-27  Martin Baulig  <martin@ximian.com>
705
706         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
707         reading the debugging information from an external ".mdb" file.
708
709 2004-07-24  Martin Baulig  <martin@ximian.com>
710
711         * reflection.c (mono_image_get_type_info): Only write a class
712         layout entry if we actually have a size or a packing size.
713
714 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
715
716         * reflection.c (type_get_fully_qualified_name): 
717         insert cast to get type checking of ?: with non-gcc compilers
718
719 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
720
721         * rand.c: use g_getenv for both lookups of
722         MONO_EGD_SOCKET
723
724 2004-07-17  Martin Baulig  <martin@ximian.com>
725
726         * reflection.c (mono_reflection_bind_generic_method_parameters):
727         Set `gmethod->reflection_info'.
728
729 2004-07-17  Martin Baulig  <martin@ximian.com>
730
731         * class.c (mono_class_create_from_typedef): Insert the newly
732         created class into the hash table before computing the interfaces
733         since we could be called recursively.
734
735 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
736
737         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
738         function to implement stelem.ref in managed code
739         * class-internals.h, debug-helpers.c: a new wrapper type
740         for the above.
741
742 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
743
744         * gc.c: allow GC handles to work even when no GC is compiled in.
745         Fix part of bug #61134 (GetAddrOfPinnedObject).
746
747 2004-07-13  Peter Williams  <peter@newton.cx>
748  
749         * process.c (complete_path): Make sure we don't attempt to execute
750         directories.
751  
752 2004-07-12  Geoff Norton <gnorton@customerdna.com>
753
754         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
755           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
756           and will add/subtract the hour if needed
757
758 2004-07-12  Martin Baulig  <martin@ximian.com>
759
760         * reflection.c (mono_field_get_object): If we have
761         `field->generic_info', take the attributes from
762         `field->generic_info->generic_type'.    
763
764 2004-07-12  Martin Baulig  <martin@ximian.com>
765
766         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
767         This function must be called before initializing the runtime.
768         (mono_debug_init_1): New function; call this after initializing
769         the runtime, but before loading the assembly.  It tells the
770         debugger to load corlib and the builtin types.
771
772         * mono-debug-debugger.c: Did some larger changes in the debugging
773         code; support recursive class declarations, make sure we actually
774         add all classes.
775
776 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
777
778         * debug-helpers.c: undo my previous patch and fixed the real issue in
779         ../mini/exceptions-x86.c
780
781 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
782
783         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
784         when no HOME env. variable was set and a NullRef was thrown in a .cctor
785         called from other .cctors.
786
787 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
788
789         * loader.c: Removed the mono_loader_wine_init hack now that we are
790         doing a managed version of Windows.Forms.
791
792 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
793
794         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
795         threadpool.c, threads.c: remove static data from rootset.
796
797 2004-07-09  Dick Porter  <dick@ximian.com>
798
799         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
800         Don't do any more processing if the matched length was 0.  It was
801         increasing the size of the string before.  Fixes bug 61167.
802
803 2004-07-09  Dick Porter  <dick@ximian.com>
804
805         * socket-io.h:
806         * socket-io.c
807         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
808         Add support for SO_PEERCRED if its available.
809
810 2004-07-09  Peter Bartok <pbartok@novell.com>
811         * loader.c: winelib.exe.so error message is now only displayed if
812         MONO_DEBUG is set. To help us avoid questions when people are trying
813         out the new Managed.Windows.Forms.
814
815 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
816
817         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
818         for isinst and castclass wrappers.
819
820         * class-internals.h icall.c: Move registration and lookup of JIT icalls
821         to libmetadata from the JIT, so they could be used by the marshalling
822         code and the interpreter.
823
824         * marshal.c: Register marshalling related JIT icalls here instead of
825         in mini.c. Use CEE_MONO_ICALL instead of the family of 
826         CEE_MONO_PROC<x> opcodes to call marshalling functions.
827
828         * metadata.h: Remove unneeded marshalling conversions.
829
830         * opcodes.c: Update for new opcodes.
831         
832 2004-07-08  Martin Baulig  <martin@ximian.com>
833
834         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
835         (mono_debug_get_domain_data): Make this function static.
836
837 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
838
839         * gc.c, object.h: add nice GC handle API for embedders.
840
841 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
842
843         * reflection.c: more changes for the new api
844
845         * object.c: When we reflect on a field w/ a constant value, it
846         will not have a memory location, so we must access metadata. Also,
847         allow easier reading of strings so that we can read them from
848         the constant data.
849
850         * class.c (mono_class_layout_fields): no need for literal fields here.
851
852         * class-internals.h: api changes for const fields
853
854         * icall.c (ves_icall_get_enum_info): use new apis for const fields
855
856 2004-07-06  Martin Baulig  <martin@ximian.com>
857
858         * mono-debug.h: Increment version number to 44.
859
860         * mono-debug.c (mono_debug_add_wrapper): The second argument is
861         now a gpointer, rewrote this whole method.
862
863         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
864         function.  Add information about the wrapper in a new "misc table".
865
866         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
867         for the new misc table.
868
869 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
870
871         * metadata-internals.h image.c: Add a cache for helper signatures.
872
873         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
874
875 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
876
877         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
878         delegates from a delegate. Fixes #61033.
879         
880         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
881         marshalling of stringbuilder arrays. Fixes #59900.
882
883 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
884
885         * icall.c: Add EnumBuilder:setup_enum_type icall.
886
887 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
888
889         * icall.c: Added a new icall for the property version of
890         OffsetOfStringData.
891
892 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
893
894         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
895         it has a constant size across platforms.
896
897         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
898         stack trace.
899
900 2004-06-29  Martin Baulig  <martin@ximian.com>
901
902         * mono-debug.c (mono_debug_add_method): Protect the whole function
903         in mono_debugger_lock(), not just parts of it.
904
905 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
906
907         * reflection.c: make sure padding bytes in heaps are zeroed.
908
909 2004-06-24  David Waite  <mass@akuma.org>
910
911         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
912         image.c, loader.c, locales.c, marshal.c, metadata.c,
913         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
914         string-icalls.c, threads.c: change to C90-style comments from C99 /
915         C++ -style
916
917 2004-06-24  Dick Porter  <dick@ximian.com>
918
919         * threads.c
920         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
921         return createdNew.  Fixes bug 60412.
922
923         * threads-types.h: 
924         * icall.c: Add createdNew parameter to CreateMutex icall
925
926 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
927
928         * reflection.c, object-internals.h: save default value in params.
929
930 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
931
932         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
933         no need to build a new path combining that with the application base.
934         Fixes bug #60442.
935
936 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
937
938         * reflection.c: fixed minor standard compliance issues.
939
940 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
941
942         * reflection.c: fixed issue with encoding some custom attributes
943         (arrays in properties and fields, bug #60411).
944
945 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
946
947         * reflection.c: fix start address when copying the public key token.
948
949 2004-06-23  Martin Baulig  <martin@ximian.com>
950
951         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
952         the `exc' object in a static object to put it into the GC's root set.
953
954 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
955
956         * reflection.c: make mono_reflection_setup_internal_class ()
957         callable a second time to setup a new parent class.
958
959 2004-06-23  Dick Porter  <dick@ximian.com>
960
961         * threads.c: Check for WAIT_IO_COMPLETION return values.
962
963 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
964
965         * appdomain.c: Removed the g_free on the public key token. Now copy 
966         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
967         * assembly.c: Added public key token string value when loading 
968         assemblies. Fix bug #60439.
969         * icall.c: Added missing informations (like public key) in 
970         GetReferencedAssemblies. Fix #60519.
971         * image.h: Changed definition for public key token from const char*
972         public_tok_value to guchar public_key_token [17];
973         * reflection.c: Updated for changes to public key token.
974
975 2004-06-22  Lluis Sanchez Gual
976
977         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
978         for the field in base classes.
979
980 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
981
982         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
983         mark headers as not supported, they are installed only for use by the
984         debugger.
985
986 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
987
988         * *.c, *.h: avoid namespace pollution in public headers.
989
990 2004-06-21  Martin Baulig  <martin@ximian.com>
991
992         * exception.c (mono_get_exception_security): It's in
993         "System.Security", not in "System".
994
995         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
996         the exception classes.
997
998 2004-06-21  Martin Baulig  <martin@ximian.com>
999
1000         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
1001         Protect the exception object from being finalized.
1002
1003 2004-06-21  Martin Baulig  <martin@ximian.com>
1004
1005         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
1006         public function.
1007
1008 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
1009
1010         * reflection.c: Load the assembly in mono_reflection_type_from_name,
1011         if it was not loaded before. Fix parts of #60439.
1012
1013 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
1014
1015         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
1016         code that was broken since Ben's change: wrappers are now
1017         dependent on the method signature only again.
1018
1019 2004-06-21  Martin Baulig  <martin@ximian.com>
1020
1021         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
1022         added interface support.
1023
1024 2004-06-21  Martin Baulig  <martin@ximian.com>
1025
1026         * class.c (mono_vtable_get_static_field_data): New public method.
1027
1028 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
1029
1030         * filewatcher.c : Windows build fix to be compliant with API changes.
1031
1032 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1033
1034         * class.h, class.c: more accessors.
1035         * metadata.h, metadata.c: prepare for hiding MonoType and
1036         MonoMethodSignature: people should use the accessors from now on
1037         outside of the tree.
1038
1039 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
1040
1041         * *.c, *.h: more API cleanups.
1042
1043 2004-06-18  Jackson Harper  <jackson@ximian.com>
1044
1045         * assembly.c: Trace loading assemblies.
1046         * loader.c: Trace loading native libraries.
1047         * mono-config.c: Trace loading config files.
1048         
1049 2004-06-18  Dick Porter  <dick@ximian.com>
1050
1051         * locales.c: Tell ICU the lengths of strings, it can cope with
1052         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
1053
1054 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
1055
1056         * image.c: swapped name/filename;
1057
1058 2004-06-18  Martin Baulig  <martin@ximian.com>
1059
1060         * mono-debug-debugger.c (write_class): Write the parent class at
1061         the end of the header.
1062
1063 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
1064
1065         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
1066
1067 2004-06-17  Raja R Harinath  <rharinath@novell.com>
1068
1069         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
1070         (bundle_obj): New conditional define.
1071         (BUILT_SOURCES): Remove.
1072         ($(bundle_srcs)): Make parallel-make safe.
1073         (libmonoruntime_la_LIBADD): Make unconditional.
1074         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
1075         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
1076
1077 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
1078
1079         * culture-info-tables.h: It was inconsistent with the latest
1080           supp info files.
1081
1082 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
1083
1084         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
1085         be loaded.
1086
1087         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
1088         with gcc 2.95.
1089
1090 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
1091
1092         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
1093         cleaned up public header threads.h.
1094
1095 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
1096
1097         * Makefile.am, *.c, *.h: more API cleanups.
1098
1099 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
1100
1101         * Makefile.am: removed monosn from compilation.
1102         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
1103         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
1104         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
1105         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
1106         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
1107         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
1108
1109 2004-06-15  Jackson Harper  <jackson@ximian.com>
1110
1111         * assembly.c: Make locales lower case when searching the GAC for
1112         assemblies. gacutil will always make locales lowercase when
1113         installing so this effectively makes them case insensitive.
1114         
1115 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
1116
1117         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
1118         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
1119           parameter which allows to choose whether the wait can be interrupted or 
1120           not. Also added the method mono_monitor_enter(), which locks the monitor
1121           using an infinite wait and without allowing interruption.
1122           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
1123           interrupted.
1124         * object.h: Added new fields in MonoThread. suspend_event holds the event
1125           used to susped/resume the thread. synch_lock is the lock object to use for
1126           modifying the thread state.
1127         * threads.c: Use the new synch_lock object for locking, instead of "this",
1128           which can generate deadlocks.
1129           Moved thread state change in Thread.Sleep and Thread.Join from managed
1130           to unmanaged code. This avoids a deadlock when the thread was suspended
1131           just after acquiring the thread lock.
1132           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
1133           Implemented Thread.Suspend using an event instead of ThreadSuspend,
1134           which is not fully implemented in the io-layer.
1135         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
1136
1137 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
1138
1139         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
1140         threads-types.h: more API cleanups.
1141
1142 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
1143
1144         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
1145         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
1146         threadpool.c, threads.c: first pass at the exported API cleanup.
1147
1148 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
1149
1150         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
1151
1152 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1153
1154         * icall.c: added internalGetHome.
1155
1156 2004-06-14  Dick Porter  <dick@ximian.com>
1157
1158         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
1159         possible to return successfully when '.' or '..' were the only
1160         entries in a directory, but were skipped.  The MonoIOStat was not
1161         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
1162         Fixes bug 59574.
1163
1164 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
1165
1166         * reflection.c: make binaries run on .Net 1.1 by default.
1167
1168 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
1169
1170         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
1171
1172 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
1173
1174         * marshal.c: keep track of struct size with explicit layout
1175         (bug #59979).
1176
1177 2004-06-12  Martin Baulig  <martin@ximian.com>
1178
1179         * mono-debug-debugger.c: Comment out a debugging g_message().
1180
1181 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
1182
1183         * reflection.c, reflection.h: do not free custom attrs that are cached.
1184         * icall.c: use braces to make code clearer.
1185
1186 2004-06-11  Martin Baulig  <martin@ximian.com>
1187
1188         * class.h (MonoInflatedField): New type.
1189         (MonoClassField): Replaced `MonoType *generic_type' with
1190         `MonoInflatedField *generic_info'.
1191
1192         * icall.c
1193         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
1194
1195 2004-06-11  Martin Baulig  <martin@ximian.com>
1196
1197         * reflection.c (mono_image_create_method_token): Correctly encode
1198         varargs methods.
1199
1200 2004-06-11  Martin Baulig  <martin@ximian.com>
1201
1202         * metadata.c (mono_metadata_parse_method_signature): When parsing
1203         a MethodDef which has VarArgs, also set sentinelpos if we don't
1204         have any parameters.
1205
1206 2004-06-11  Martin Baulig  <martin@ximian.com>
1207
1208         * verify.c (mono_method_verify): In CEE_CALL, use
1209         mono_method_get_signature() to get the method's signature, unless
1210         we're a PInvoke method.
1211
1212 2004-06-10  Jackson Harper  <jackson@ximian.com>
1213
1214         * assembly.c: Use <path>/lib/mono/gac for the extra paths
1215         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
1216         logical name as the supplied path is just a prefix to the gac not
1217         the direct path to it.
1218         
1219 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
1220
1221         * reflection.c: make the token for a created method match
1222         the token of the MethodBuilder it was created from
1223         (IKVM requires this behaviour now).
1224
1225 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
1226
1227         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
1228         reflection.c, socket-io.c: leak fixes.
1229
1230 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
1231
1232         * icall.c: handle sentinel pos in vararg methods in position different
1233         from 0.
1234
1235 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1236
1237         * culture-info-tables.h: freshly generated.
1238
1239 2004-06-09  Martin Baulig  <martin@ximian.com>
1240
1241         * loader.c (mono_get_method_constrained): Call `mono_class_init
1242         (constrained_class)'.   
1243
1244 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
1245
1246         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
1247         any methods. Fixes #59629.
1248
1249 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1250
1251         * culture-info-tables.h: reflecting locale-builder updates.
1252
1253 2004-06-08  Dick Porter  <dick@ximian.com>
1254
1255         * object.h:
1256         * locales.c: Fixed compile warnings, including a real bug in
1257         CompareInfo_internal_compare.
1258         
1259 2004-06-08  Dick Porter  <dick@ximian.com>
1260
1261         * locales.c
1262         (ves_icall_System_Globalization_CompareInfo_internal_index):
1263         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1264         Double-check the resuls of usearches, because ICU currently
1265         ignores most of the collator settings here.  Fixes bug 59720.
1266         
1267 2004-06-08  Dick Porter  <dick@ximian.com>
1268
1269         * locales.c
1270         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
1271         Fix memory leak and segfault-causing typo.  No idea how this one
1272         lasted so long without being noticed.
1273
1274 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
1275
1276         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
1277         any methods. Fixes #59629.
1278
1279 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1280
1281         * assembly.c:
1282         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
1283         own the critical section before). Removed dead code (that's done
1284         in the preload hook).
1285
1286         (mono_assembly_load_with_partial_name): call the preload hook.
1287
1288 2004-06-08  Martin Baulig  <martin@ximian.com>
1289
1290         * metadata.c (mono_metadata_signature_alloc): Default
1291         `sentinelpos' to -1.
1292
1293         * reflection.c (mono_image_get_array_token): Likewise.
1294
1295 2004-06-08  Martin Baulig  <martin@ximian.com>
1296
1297         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
1298
1299         * metadata.c (mono_metadata_parse_method_signature): When parsing
1300         a MethodDef which has VarArgs, set sentinelpos.
1301
1302         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
1303         `gint16' since we're using -1 for non-varargs methods.
1304
1305         * reflection.c
1306         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
1307         (method_encode_signature): Added varargs support.
1308         (method_builder_encode_signature): Likewise.
1309         (mono_image_get_varargs_method_token): New static method.
1310         (mono_image_create_method_token): New public method; this is
1311         called via an icall instead of mono_image_create_token() when
1312         calling a varargs method.       
1313
1314 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
1315
1316         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
1317
1318 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1319
1320         * culture-info-tables.h : Reflecting the latest locale-builder that
1321           fixed empty array representation ({} to {0}).
1322
1323 2004-06-07  Jackson Harper  <jackson@ximian.com>
1324
1325         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
1326         looking up extra gac paths. This allows MONO_GAC_PATH to act
1327         exactly like a prefix.
1328         
1329 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1330
1331         * reflection.c (mono_reflection_type_from_name): Make a copy of the
1332         type name before modifying it. Fixes #59405.
1333
1334 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
1335
1336         * culture-info.h: added fields for "all datetime patterns".
1337         * locales.c: (  ves_icall_System_Globalization_CultureInfo
1338           _construct_datetime_format ()): fill xxx_patterns fields.
1339         * object.h: added fields for "all datetime patterns" to
1340           MonoDateTimeFormatInfo.
1341         * culture-info-tables.h: reflecting locale-builder updates.
1342
1343 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
1344
1345         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
1346         the event has no add and remove methods. Fixes #59629.
1347
1348 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
1349
1350         * object.c: Fixed possible integer overflow when allocating large
1351         strings.
1352
1353 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1354
1355         * culture-info-tables.h: reflecting locale-builder updates.
1356
1357 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
1358
1359         * culture-info-tables.h: reflecting locale-builder updates.
1360
1361 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
1362
1363         * culture-info-tables.h: reflecting locale-builder updates.
1364
1365 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
1366
1367         * threads.c: Made Thread.Sleep abortable.
1368
1369 2004-06-02  Martin Baulig  <martin@ximian.com>
1370
1371         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
1372
1373         * debug-mono-symfile.h: Bumped symbol file version number to 37.
1374
1375 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
1376
1377         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
1378
1379 2004-05-30  Jackson Harper  <jackson@ximian.com>
1380
1381         * reflection.c: Do not hardcode assembly versions or public key
1382         tokens anymore. All of this except the corlib section was dead
1383         code anyways.
1384         
1385 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
1386
1387         * object.c (mono_runtime_invoke_array): Automatically create boxed
1388         objects for byref valuetypes if needed. Fixes #59300.
1389         
1390         * object.c (mono_method_return_message_restore): Handle 
1391         MONO_TYPE_OBJECT as well.
1392
1393 2004-05-28  Jackson Harper  <jackson@ximian.com>
1394
1395         * reflection.c: The modified type encoding was causing build
1396         problems. Reverted for now.
1397         
1398 2004-05-28  Jackson Harper  <jackson@ximian.com>
1399
1400         * reflection.c/h: Take an assembly ref so that we dont create
1401         fully qualified names when encoding types in the same assembly as
1402         the custom attribute being emitted.
1403         * appdomain.c: Increment version number.
1404         
1405 2004-05-26  Duncan Mak  <duncan@ximian.com>
1406
1407         * icall.c
1408         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
1409         Set the full version number (major, minor, build, revision).
1410
1411 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
1412
1413         * marshal.c (emit_struct_conv): increment src/dst after blit
1414         (mono_marshal_get_managed_wrapper,
1415         mono_marshal_get_native_wrapper): make sure we have marshalling
1416         info before marshalling params (info computation affects
1417         blittable)
1418
1419         * class.c (class_compute_field_layout): correctly deal with
1420         blittable
1421         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
1422         value types (as per what windows dows by default)
1423         (mono_class_setup_mono_type): System.ValueType is blittable
1424         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
1425         blittable
1426
1427         * marshal.c (mono_marshal_load_type_info): flag types  as
1428         non-blittable if the native layout doesn't match the managed
1429         layout
1430
1431 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1432
1433         * appdomain.c: don't add stuff in the private search path that is
1434         above the application base. If application base is not set, there's
1435         no private search path.
1436
1437 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
1438
1439         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
1440         byref struct arguments in native->managed marshalling.
1441
1442 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
1443
1444         * marshal.c (mono_marshal_get_runtime_invoke): correctly
1445         cache methods using signature (special case for methods
1446         that are value type or string class)
1447         
1448         * image.c (mono_image_close): clean up allocated GSList's
1449         in runtime_invoke_cache.
1450
1451 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1452
1453         * mono-config.c: set the correct path for mono_cfg_dir on windows when
1454         there's no MONO_CFG_DIR environment variable defined.
1455
1456 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1457
1458         * threads.c: windows version must be >= 0x0500 to include OpenThread.
1459
1460 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
1461
1462         * threadpool.c: Really wait for 500ms after the async call, even if the wait
1463           is interrumped.
1464         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
1465           before waiting for it, and call CloseHandle after the wait to unref it.
1466           This will make sure that handles are not disposed too early.
1467
1468 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1469
1470         * appdomain.c:
1471         * appdomain.h:
1472         * icall.c: removed
1473         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
1474         needed now.
1475
1476         * object.c: se the application_base only for the domain that runs
1477         Main. Fixes bug #59216,
1478
1479 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1480
1481         * appdomain.c:
1482         * object.c: only the domain in which Main is run have
1483         SetupInformation.ConfigurationFile set, so moved a few lines from
1484         appdomain.c to object.c.
1485
1486 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1487
1488         * appdomain.c: we tried to load [name].(dll|exe), but according
1489         to bug #57710, we must also try [culture]/[name].(dll|exe) and
1490         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
1491         There's a test case attached to bug #58922.
1492
1493 2004-05-27  Dick Porter  <dick@ximian.com>
1494
1495         * icall.c:
1496         * file-io.c: Implemented icalls for locking and unlocking regions
1497         in a file.
1498         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
1499         FALSE on error (fixes both compiler warning and real bug.)
1500
1501 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
1502
1503         * culture-info-tables.h: reflecting locale-builder updates.
1504
1505           (Added missing ChangeLog entry for 05/26)
1506
1507 2004-05-27  Jackson Harper  <jackson@ximian.com>
1508
1509         * locales.c: Fix some cut and paste errors.
1510         
1511 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1512
1513         * mono-config.c: set the correct path for config. directory on windows.
1514
1515 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1516
1517         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
1518           on win32.
1519
1520 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1521
1522         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
1523         from pinvoke functions.
1524         
1525         * marshal.c (mono_ftnptr_to_delegate): Implement this.
1526
1527 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
1528
1529         * culture-info-tables.h: reflecting locale-builder updates.
1530
1531 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
1532
1533         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
1534         #59086.
1535
1536 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
1537
1538         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
1539         * icall.c: Modified icalls for RNG.
1540         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
1541         Windows (CryptoAPI).
1542
1543 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1544
1545         * locales.c: Fix build.
1546
1547 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
1548
1549         * culture-info-tables.h: reflecting locale-builder updates.
1550
1551 2004-05-25  Jackson Harper  <jackson@ximian.com>
1552
1553         * locales.c: When creating the current culture use the $LANGs
1554         specific culture. So DateTimeFormat and NumberFormat entries are created.
1555         
1556 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
1557
1558         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
1559         a char array as parameter.
1560
1561 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
1562
1563         * image.c: In mono_image_open(), always use an absolute path name to
1564           look for already loaded images.
1565
1566 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
1567
1568         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
1569         missing in the windows build (like older cygwin include files).
1570
1571 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
1572
1573         * icall.c: Fixed check for possible integer overflow in Buffer_
1574         BlockCopy icall. Replaced comments style // by /* */.
1575
1576 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
1577
1578         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
1579         
1580         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
1581         check after MONO_VTADDR. Fixes pinvoke2.exe.
1582
1583         * marshal.h marshal.c metadata.h: Add beginnings of support for
1584         ftnptr -> delegate marshalling.
1585
1586 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
1587
1588         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
1589         * threads.c: Fix warnings.
1590
1591 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
1592
1593         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
1594         * icall.c: Registered icalls for Suspend and Resume.
1595         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
1596           Thread.Abort.
1597         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
1598         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
1599         * process.c: Use WaitForSingleObjectEx.
1600         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
1601           checkpoints.
1602         * threads.c, threads.h: Make use of new Ex wait methods. Improved
1603           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
1604           for Suspend and Resume. Added new mono_thread_stop, used for stoping
1605           background threads. Added basic support for Abort in Windows.
1606           Start new threads using a managed delegate invoke wrapper. This wrapper
1607           has an interruption checkpoint that is needed since an interruption
1608           can be requested before the thread leaves the unmanaged code that starts 
1609           the thread.
1610         * marshal.c: Added interruption checkpoint after every native call, and
1611           also before managed calls for wrappers called from unmanaged code to
1612           go into managed code.
1613         * object.h: Added new field in MonoThread to keep track of interruption
1614           requests.
1615
1616 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
1617
1618         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
1619         calls.
1620
1621 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1622
1623         * appdomain.c:
1624         * assembly.c:
1625         * gc.c:
1626         * locales.c:
1627         * mono-config.c:
1628         * rand.c: getenv -> g_getenv (windows!)
1629
1630         * process.c: complete_path is also used on non-windows platforms.
1631
1632 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1633
1634         * icall.c: new signature for Process_Start.
1635
1636         * process.[ch]: new signature for Process_Start. If we're on windows
1637         and UseShellExecute is false, we have to search for the program by
1638         ourselves if we don't get a full path.
1639
1640 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
1641
1642         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
1643         marshalling and call CleanUpNativeData if needed. Fixes #58646.
1644
1645 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1646
1647         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
1648         Fixes bug #58373.
1649
1650 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1651
1652         * process.c: use double quotes to quote program name and arguments on
1653         windows. Fixes bug #58575.
1654
1655 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1656
1657         * file-io.c: don't return "." and ".." when using windows Find*File.
1658
1659 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
1660
1661         * marshal.c: Don't pass wrappers to message init because method 
1662         addressed used to lookup metadata. part of remoting[2|3] fix.
1663
1664 2004-05-15  Jackson Harper  <jackson@ximian.com>
1665
1666         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
1667         path is essentially the same as MONO_PATH except that it points to
1668         GACs instead of lib directories.
1669         * loader.h: The user gac is gone so we dont need function to
1670         enable/disable it.
1671         * mono-config.c: user gac option is now gone.
1672         
1673 2004-05-15  Jackson Harper  <jackson@ximian.com>
1674
1675         * culture-info.h: Make defines more consistent, add calendar data
1676         to the culture info table.
1677         * culture-info-tables.h: Add basic calendar data. Basically
1678         everyone gets default gregorian until all the data is
1679         updated.
1680         * locales.c: Use the new consistent defines. Set calendar data for
1681         culture info objects.
1682         * object.h: add a field for calendar data to CultureInfo
1683         
1684 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
1685
1686         * image.c: image->runtime_invoke_cache is keyed on signatures now.
1687         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
1688         a signature.
1689         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
1690         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
1691         an extra param that is the pointer of the method to invoke. The IL for
1692         the invoke method is no longer specific to the method, but to the
1693         signature of the method. Thus, we can share the same code for multiple
1694         methods. This reduces the number of methods that have to be compiled.
1695
1696 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
1697
1698         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
1699
1700         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1701
1702         * icall.c: Optimize Buffer.BlockCopy.
1703
1704 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1705
1706         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
1707         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
1708         quote). Changed them to "MMMM yyyy".
1709
1710 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
1711
1712         * rand.c
1713         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
1714
1715 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
1716
1717         * reflection.h: Updated after changes to managed structures.
1718
1719         * appdomain.c: Bump corlib version.
1720
1721 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1722
1723         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
1724         windows.
1725
1726 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1727
1728         * Makefile.am: link to ../os/libmonoos.la on windows.
1729
1730         * assembly.c:
1731                 -If MONO_DEBUG, warn about non-existing directories in
1732                 MONO_PATH.
1733                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
1734                 compile time variable.
1735                 -Removed init_default_path and call mono_set_rootdir from
1736                 libmonoos.a instead (windows only).
1737
1738         * assembly.h: declare mono_assembly_getrootdir().
1739
1740         * domain.c:
1741         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
1742
1743         * loader.c: s/getenv/g_getenv/
1744
1745 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
1746
1747         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
1748
1749         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
1750
1751         * metadata.h: Add new marshalling conversions.
1752
1753         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
1754         function.
1755
1756         * reflection.c (mono_reflection_get_type): Lookup the type in all
1757         modules of a multi-module assembly. Fixes #58291.
1758
1759 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
1760
1761         * threads.c: Before aborting a background, set the StopRequested
1762         state.  This avoids throwing the Abort exception.
1763         In mono_thread_manage, don't continue with the shutdown until all
1764         aborted threads have actually stopped.
1765
1766 2004-05-10  Jackson Harper  <jackson@ximian.com>
1767
1768         * locales.c: Remove the modifier from culture names.
1769         
1770 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1771
1772         * Makefile.am: monosn is not installed any more. It has been deprecated
1773         in favor of sn.
1774
1775 2004-05-07  Jackson Harper  <jackson@ximian.com>
1776
1777         * locales.c
1778         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
1779         Fix array construction, add bailout if the length is 0.
1780
1781 2004-05-07  Dick Porter  <dick@ximian.com>
1782
1783         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
1784         machine doesn't have a DNS entry.  Patch by Urs Muff
1785         (umuff@quark.com), fixes bug 57928.
1786
1787 2004-05-06  Jackson Harper  <jackson@ximian.com>
1788
1789         * reflection.c: Handle null PublicTokens properly. alloc mem for
1790         assembly names culture so we dont crash when freeing it.
1791         
1792 2004-05-06  Jackson Harper  <jackson@ximian.com>
1793
1794         * assembly.c: Check the usergac when loading with partial names.
1795         
1796 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1797
1798         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
1799         does nothing for now (not required for Linux/Windows) but the class
1800         library can call it (and a newer or modified runtime could need it).
1801         * icall.c: Registred icall.
1802
1803 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1804
1805         * loader.c: prints a message on module loading error we set MONO_DEBUG
1806         environment variable.
1807
1808 2004-05-05  Jackson Harper  <jackson@ximian.com>
1809
1810         * appdomain.c: Handle PublicKeyToken=null properly.
1811         
1812 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
1813
1814         * environment.c|h: Added icall ves_icall_System_Environment_
1815         GetOSVersionString to get the current OS version as a string.
1816         * icall.c: Registred icall.
1817
1818 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
1819
1820         * object.c: in mono_object_get_virtual_method(), take into account that
1821         non-virtual methods don't have a slot in the vtable. Check needed when
1822         the object is a proxy.
1823
1824 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
1825
1826         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
1827         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
1828
1829         * object.c (mono_class_compute_gc_descriptor): Fix warning.
1830
1831         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
1832         passed when a valuetype is expected.
1833
1834         * object.c (mono_unhandled_exception): Only set the exit code if the
1835         exception happens in the main thread. Fixes thread5.exe.
1836
1837         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
1838         invalid names. Fixes #58047.
1839
1840 2004-05-03  Jackson Harper  <jackson@ximian.com>
1841
1842         * assembly.c: This line was committed accidently and is unneeded.
1843         
1844 2004-05-03  Jackson Harper  <jackson@ximian.com>
1845
1846         * icall.c: Add new icall for Assembly::LoadWithPartialName
1847         * assembly.c/.h: new function that probes the GAC to load partial
1848         assembly names by Paolo Molaro.
1849         
1850 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1851
1852         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
1853         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
1854         (type_get_fully_qualified_name): Added PublicKeyToken when building a
1855         full type name.
1856
1857 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1858
1859         * appdomain.c: fixed check for 'neutral' culture and removed warning.
1860         * reflection.c: fix bug when parsing a full type name and Version is not
1861         the last thing in the string.
1862
1863 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
1864
1865         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
1866         crashes when it is freed.
1867
1868 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1869
1870         * assembly.c: print the compat warning to stderr.
1871
1872 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
1873
1874         * assembly.c (mono_assembly_load_references): Add a compatibility
1875         hack to run old applications that might be still referencing the
1876         3300-based assemblies, only do this for System.xxx.
1877
1878 2004-05-01  Jackson Harper  <jackson@ximian.com>
1879
1880         * appdomain.c: If the culture is neutral we set it to "".
1881         
1882 2004-04-29  Jackson Harper  <jackson@ximian.com>
1883
1884         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
1885
1886 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
1887  
1888         * string-icalls.c: added low overhead function for copying chars
1889         * icall.c: added needed icall for the above function
1890  
1891 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1892
1893         * icall.c: fix return value of get_global_assembly_cache.  Implemented
1894         Environment.GetLogicalDrives.
1895
1896 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
1897
1898         * rand.c: try and talk to egd or prngd
1899         for random bytes if opening devices fail.
1900
1901 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
1902
1903         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
1904         alignment for the type using the native alignment of its members 
1905         instead of using klass->min_align.
1906
1907         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
1908
1909 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1910
1911         * file-io.c:
1912         * socket-io.c: added check for sys/aio.h.
1913
1914 2004-04-28  Dick Porter  <dick@ximian.com>
1915
1916         * threads.c: Don't abort a thread thats already aborting, when
1917         terminating everything.
1918
1919 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
1920
1921         * icall.c: added 2 new async calls for Socket.
1922
1923         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
1924         IO on *nix systems.
1925
1926         * threadpool.c: removed unused variable.
1927
1928 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
1929
1930         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
1931
1932 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
1933
1934         * locales.c: put back string_invariant_tolower () and
1935         string_invariant_toupper ().
1936
1937 2004-04-26 David Waite <mass@akuma.org>
1938
1939         * file-io.h:
1940         * socket-io.h:
1941         * threads.h:
1942         * unicode.h: remove comma from end of enumeration declarations
1943
1944 2004-04-26 David Waite <mass@akuma.org>
1945
1946         * debug-mono-symfile.h:
1947         * decimal.c:
1948         * mono_debug.h:
1949         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
1950
1951
1952 2004-04-26  Jackson Harper  <jackson@ximian.com>
1953
1954         * appdomain.c: Increment version number.
1955         
1956 2004-04-26  Jackson Harper  <jackson@ximian.com>
1957
1958         * appdomain.c: Set assembly references public token value when
1959         PublicKeyToken is specified, not the hash_value. Free public token
1960         values when free assembly name data. Previously the public key
1961         token was hex decoded, however we are using hex encoded public key
1962         tokens, so this is not neccasary.
1963         * assembly.c: Lookup assemblies in the gac if their public token
1964         value is set. Add function to allow enabling user gac
1965         lookups. Specify whether or not the assembly was loaded from the
1966         GAC. Compare full assembly names when checking the cache for
1967         assemblies (Temporarily disabled see comment in code). Remove
1968         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
1969         specifies trace-loader they get extra info to stdout on the
1970         loading of assemblies.
1971         * image.h: Add a field for an assembly references public token
1972         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
1973         whether an assembly has been loaded from the GAC.
1974         * image.c: Remove a corlib -> mscorlib name mapping.
1975         * loader.h: Add function to enable/disable the user gac.
1976         * mono-config.c: Check if the usergac is enabled in the config
1977         file.
1978         * icall.c: New icall to determine whether or not an assembly has
1979         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
1980         * tabldefs.h: Add constant for assemblyref flag that specifies a
1981         full public key is used instead of a public token.
1982         * reflection.c: Remove mscorlib -> corlib mappings. Set
1983         PublicTokenValue instead of hash value. This value is a hex
1984         string so it does not need to be expanded.
1985
1986 2004-04-26  Martin Baulig  <martin@ximian.com>
1987
1988         * mono-debug-debugger.c (mono_debugger_initialize): Set
1989         `mono_debugger_initialized' before calling mono_debug_lock().
1990
1991 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
1992
1993         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
1994           InternalToUpper/InternalToLower.
1995         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
1996           removed invariant culture shortcut.  This is now done in managed code.
1997         * locales.c: (string_invariant_toupper/tolower) removed.
1998
1999 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2000
2001         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
2002         Added Poll internal call.
2003
2004         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
2005         call for Poll. Select was too heavy for polling a single socket.
2006
2007         * threadpool.[ch]: added mono_threadpool_cleanup.
2008         * threads.c: use it. Don't use Thread_Abort on windows.
2009
2010 2004-04-23  Martin Baulig  <martin@ximian.com>
2011
2012         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
2013
2014 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
2015
2016         * icall.c: Registred new icalls for key pair protection and added an
2017         icall for Environment.GetFolderPath on Windows.
2018         * security.c|h: Added new icalls for key pair protection.
2019
2020 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2021
2022         * socket-io.c: don't display the non-supported family warning for known
2023         families. Now this is not displayed on windows when checking support
2024         for IPv4/IPv6.
2025
2026 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2027
2028         * class.c: don't display the layout warning for static fields.
2029
2030 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
2031
2032         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
2033         * locales.c, locales.h: Added new icalls for culture-specific
2034         Char.ToLower and Char.ToUpper.
2035
2036 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2037
2038         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
2039         by David Waite.
2040
2041 2004-04-20  Martin Baulig  <martin@ximian.com>
2042
2043         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
2044         of the type name before passing it to mono_reflection_type_from_name().
2045
2046 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
2047
2048         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
2049         encodings here. Fixes #56965.
2050
2051 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
2052
2053         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2054         fix test on strstr result not that I can see anything that
2055         relies on the result.
2056
2057 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
2058
2059         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
2060         Fixes #57081.
2061
2062         * marshal.c (mono_marshal_get_string_encoding): New helper function.
2063
2064         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
2065         function to determine which marshalling to use for strings. Fixes
2066         #56965.
2067
2068         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
2069
2070         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
2071
2072 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
2073
2074         * icall.c: #include mono-config.h
2075
2076 2004-04-15  Jackson Harper  <jackson@ximian.com>
2077
2078         * culture-info-tables.h: Fix date formats for en-US culture.
2079         
2080 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
2081
2082         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
2083         ThreadPool.SetMinThreads.
2084         * threadpool.c: Implemented ThreadPool.GetMinThreads and
2085         ThreadPool.SetMinThreads.
2086
2087 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
2088
2089         * mono-config.c: also load the .config file in the directory
2090         where the assembly was found.
2091
2092 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
2093
2094         * assembly.c: load per-assembly config files.
2095         * icall.c: decrapified code to get the config dir and moved to
2096         mono-config.c.
2097         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
2098         per-assembly config files. When doing a dll map lookup give precedence
2099         to the per-assembly data.
2100
2101 2004-04-14  Martin Baulig  <martin@ximian.com>
2102
2103         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
2104         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
2105         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
2106
2107         * mono-debugger-debugger.c: While the debugger is locked, remember
2108         whether the symbol tables have changes and send one single
2109         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
2110
2111 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
2112
2113         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
2114
2115         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
2116         function.
2117
2118         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
2119         account when marshalling string arrays. Fixes #56965.
2120
2121 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2122
2123         * icall.c: Add new icalls mapping for security.
2124         * security.c|h: Add internal calls for WindowsIdentity,
2125         WindowsImpersonationContext and WindowsPrincipal.
2126
2127 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
2128
2129         * class.c: Added comment to ensure the System.MonoDummy class
2130         is removed when no longer necessary
2131
2132 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
2133
2134         * appdomain.c: Pass arguments to the bootstraping exceptions to
2135         minimize JITed methods at boot
2136
2137         * metadata.c (mono_exception_from_name_two_strings): Allow for the
2138         second string to be null.
2139
2140         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
2141         Change the protocol to minimize the JIT methods at startup.  Now
2142         it Returns the internal codepage, if the value of "int_code_page"
2143         is 1 at entry, and we can not compute a suitable code page
2144         number, returns the code page as a string.
2145
2146 2004-04-13  Jackson Harper  <jackson@ximian.com>
2147
2148         * culture-info-tables.h: Fix number of decimal digits for all
2149         english locales.
2150
2151 2004-04-13  Jackson Harper  <jackson@ximian.com>
2152
2153         * icall.c: Clairfy out of sync error message. It is not always
2154         your corlib that is out of sync.
2155
2156 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
2157
2158         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
2159         properties when only the set accessor is overriden. Fixes #55874.
2160
2161 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
2162
2163         * assembly.c (mono_assembly_load_references): Make this thread safe.
2164         Fixes #56327.
2165
2166 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
2167
2168         * monosn.c: Add missing initialization calls.
2169
2170 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
2171
2172         * locales.c:
2173         ves_icall_System_Globalization_CultureInfo_construct_number_format
2174         Fix g_assert so it compiles on fussier compilers re int/ptr
2175         mismatch
2176
2177 2004-04-08  Dick Porter  <dick@ximian.com>
2178
2179         * socket-io.h:
2180         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
2181         53992.  Also rearrange the code so that the internal calls return
2182         an error value and exceptions are thrown from managed code.
2183
2184         * icall.c: Add type info to the socket icalls.
2185
2186 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2187
2188         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
2189         owes me a beer.
2190
2191 2004-04-07  Martin Baulig  <martin@ximian.com>
2192
2193         * class.c (mono_class_from_generic_parameter): Don't default
2194         `klass->parent' to `mono_defaults.object_type'.
2195
2196 2004-04-07  Martin Baulig  <martin@ximian.com>
2197
2198         * reflection.c (mono_reflection_initialize_generic_parameter): Set
2199         `param->pklass->reflection_info'.       
2200
2201 2004-04-07  Jackson Harper  <jackson@ximian.com>
2202
2203         * culture-info-tables.h: Fix date separator symbol.
2204         
2205 2004-04-07  Martin Baulig  <martin@ximian.com>
2206
2207         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
2208         from System.Type to System.MonoType.
2209
2210 2004-04-07  Martin Baulig  <martin@ximian.com>
2211
2212         * reflection.h
2213         (MonoReflectionGenericParam): Added `has_reference_type' and
2214         `has_value_type' fields.
2215
2216         * reflection.c (mono_image_get_generic_param_info): Encode the
2217         correct flags if we have the `class' or `struct' constraint.
2218
2219 2004-04-07  Martin Baulig  <martin@ximian.com>
2220
2221         * reflection.h
2222         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
2223
2224 2004-04-07  Jackson Harper  <jackson@ximian.com>
2225
2226         * appdomain.c: Revert extra patches, just wanted to bump the
2227         version number.
2228         
2229 2004-04-07  Jackson Harper  <jackson@ximian.com>
2230
2231         * Makefile.am: Add culture-info private headers.
2232         * icall.c: Add new icalls for contructing locales.
2233         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
2234         * locales.h: Declare new culture info construction methods.
2235         * object.h: Add new fields used to avoid the CultureMap to
2236         MonoCultureInfo.
2237         * culture-info.h: Definition of structs used in the culture info
2238         tables.
2239         * culture-info-tables.h: Autogenerated tables that contain culture
2240         info data. This file was generated with the locale-builder tool.
2241         * appdomain.c: Incement corlib version number.
2242         
2243 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
2244
2245         * appdomain.c: (mono_runtime_init) move mono_thread_init
2246         to before mono_object_new calls so critical sections
2247         are initialized before use.
2248
2249 2004-04-07  Martin Baulig  <martin@ximian.com>
2250
2251         * icall.c
2252         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
2253         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
2254         (ves_icall_MonoGenericParam_initialize): Removed.
2255         (monogenericparam_icalls): Removed.
2256         (generictypeparambuilder_icalls): Added new table for
2257         System.Reflection.Emit.GenericTypeParameterBuilder.
2258
2259         * reflection.c
2260         (mono_reflection_define_generic_parameter): Removed.
2261         (mono_reflection_initialize_generic_parameter): This is now called
2262         from GenericTypeParameterBuilder's .ctor.
2263
2264 2004-04-06  Martin Baulig  <martin@ximian.com>
2265
2266         * class.c (mono_class_init): Don't inflate nested classes in a
2267         generic instance.
2268         (mono_type_get_name_recurse): Include the generic arguments for
2269         generic instances and generic type declarations.
2270         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
2271         (_mono_class_get_instantiation_name): Removed.
2272         (mono_class_create_generic): Always use `gklass->name' as our name.
2273
2274         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
2275
2276         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
2277         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
2278         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
2279         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
2280         closed generic methods here.
2281
2282         * reflection.c
2283         (mono_reflection_generic_inst_get_nested_types): Removed.
2284         (inflate_mono_method): Copy the generic parameters from the
2285         MonoMethodHeader into out MonoGenericMethod.
2286
2287 2004-04-06  Martin Baulig  <martin@ximian.com>
2288
2289         * row-indexes.h
2290         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
2291
2292         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
2293
2294         * reflection.c (build_compressed_metadata): If we have any entries
2295         in the GenericParam, MethodSpec or GenericParamConstraint tables,
2296         set the header version to 1.1.
2297
2298 2004-04-06  Martin Baulig  <martin@ximian.com>
2299
2300         * class.c (mono_class_init): If we're a generic instance,
2301         initialize our nested classes, too.
2302         (_mono_class_get_instantiation_name): Deal with the new `!%d'
2303         suffix. 
2304
2305 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2306
2307         * process.c: quote the argument passed to the shell on windows.
2308
2309 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
2310
2311         * threads.c (mono_alloc_special_static_data): Allow this to be
2312         called during startup.
2313
2314 2004-04-02  Martin Baulig  <martin@ximian.com>
2315
2316         * icall.c
2317         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
2318
2319 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
2320
2321         * icall.c: Fix build.
2322
2323 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2324
2325         * Makefile.am: Added security.c|h.
2326         * icall.c: Added icall for get_UserName;
2327         * security.c: New file for security related icalls. Added function
2328         get_UserName for System.Environment (fix #56144).
2329         * security.h: New. Header file for security.c
2330
2331 2004-04-02  Dick Porter  <dick@ximian.com>
2332
2333         * icall.c: Deleted the icalls that were obsoleted some time ago
2334         by the ICU string code, and which were mixed into the icall
2335         rearranging.  Fixes bug 55969.
2336
2337         * string-icalls.h: 
2338         * string-icalls.c: Deleted the code that those icalls reference.
2339
2340 2004-04-01  Martin Baulig  <martin@ximian.com>
2341
2342         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
2343
2344         * class.c (mono_class_from_generic_parameter): Don't set 
2345         TYPE_ATTRIBUTE_INTERFACE.
2346         (my_mono_class_from_generic_parameter): Likewise.
2347
2348 2004-04-01  Martin Baulig  <martin@ximian.com>
2349
2350         * loader.c (find_method): Added an optional `MonoClass *ic'
2351         argument to search in a specific interface.
2352         (mono_get_method_constrained): New public function.
2353
2354 2004-04-01  Martin Baulig  <martin@ximian.com>
2355
2356         * reflection.c (mono_image_get_generic_field_token): Use the
2357         `handleref' cache here.
2358
2359 2004-04-01  Martin Baulig  <martin@ximian.com>
2360
2361         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
2362
2363         * reflection.c (create_generic_typespec): Use the `typespec' hash
2364         here, not the `typeref' one.    
2365
2366 2004-04-01  Martin Baulig  <martin@ximian.com>
2367
2368         * class.c (mono_class_inflate_generic_type): Moved the
2369         functionality into a new static inflate_generic_type() which
2370         returns NULL if it didn't do anything.  Only increment the
2371         `mono_stats.inflated_type_count' if we actually inflated
2372         something.
2373         (mono_class_get_full): Check the classes type to see whether we
2374         need to inflate it; also inflate MONO_TYPE_(M)VAR.
2375
2376 2004-04-01  Jackson Harper  <jackson@ximian.com>
2377
2378         * reflection.c: Set culture for assembly references.
2379         
2380 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
2381
2382         * reflection.[ch], icall.[ch], Fix support for pinning variables.
2383
2384 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2385
2386         * assembly.c:
2387         (do_mono_assembly_open): the critical section also covers
2388         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
2389
2390 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2391
2392         * threads.c:
2393         (mono_manage_threads): abort the background threads when finishing.
2394         Fixes bug #47232.
2395
2396 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2397
2398         * gc.c: only close the done_event handle if there was no timeout.
2399         C-ified comments.
2400
2401 2004-03-30  Martin Baulig  <martin@ximian.com>
2402
2403         * icall.c (icall_entries): It's called "System.Activator", not
2404         "System.Activation".    
2405
2406 2004-03-30  Martin Baulig  <martin@ximian.com>
2407
2408         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
2409         (mono_class_create_from_typespec): Likewise.
2410
2411 2004-03-30  Martin Baulig  <martin@ximian.com>
2412
2413         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
2414         `has_ctor_constraint' and `initialized'.
2415
2416 2004-03-30  Martin Baulig  <martin@ximian.com>
2417
2418         * reflection.c (encode_new_constraint): New static function to add
2419         the constructor constraint attribute to a type parameter.
2420         (encode_constraints): Call encode_new_constraint() if necessary.
2421
2422         * reflection.h
2423         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
2424
2425         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
2426         
2427 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
2428
2429         * reflection.c, icall.c: add support for pinning variables. 
2430
2431 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
2432
2433         * marshal.c (mono_marshal_get_managed_wrapper):
2434         init bool local with zero rather than null.
2435
2436 2004-03-29  Martin Baulig  <martin@ximian.com>
2437
2438         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
2439         the "official" behavior here.
2440         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
2441
2442 2004-03-29  Martin Baulig  <martin@ximian.com>
2443
2444         * icall.c: Reflect latest API changes.
2445
2446 2004-03-29  Martin Baulig  <martin@ximian.com>
2447
2448         * loader.c (mono_get_method_from_token): Also call
2449         mono_metadata_load_generic_params () for abstract and interface
2450         methods; replace the type arguments in the method signature with
2451         the ones which are loaded from the metadata.
2452
2453 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
2454
2455         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
2456         of the lock is not the current thread. MS.NET don't do it, in spite of
2457         what the documentation says. See bug #56157.
2458
2459 2004-03-28  Martin Baulig  <martin@ximian.com>
2460
2461         * class.c (mono_class_init): Don't call init_properties() and
2462         init_events() for generic instances; set `prop->parent' when
2463         inflating properties.
2464
2465         * reflection.c (mono_generic_inst_get_object): Call
2466         `mono_class_init (ginst->klass)'.
2467         (mono_type_get_object): Only create a MonoGenericInst if your
2468         generic type is a TypeBuilder.
2469         (do_mono_reflection_bind_generic_parameters): Only set
2470         `ginst->is_dynamic' if our generic type is a TypeBuilder.
2471
2472 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
2473
2474         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
2475         Fixes #56091.
2476
2477 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2478
2479         * icall.c: added Kill_internal icall.
2480         * process.[ch]: added Kill_internal icall.
2481
2482 2004-03-25  Martin Baulig  <martin@ximian.com>
2483
2484         * class.h (MonoStats): Added `generic_instance_count',
2485         `inflated_method_count', `inflated_type_count' and
2486         `generics_metadata_size'.       
2487
2488 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2489
2490         * reflection.c: no warnings now.
2491
2492 2004-03-25  Martin Baulig  <martin@ximian.com>
2493
2494         * class.c (mono_class_get_full): New public function; does a
2495         mono_class_get(), but also takes a `MonoGenericContext *'.
2496
2497         * loader.c (mono_field_from_memberref): Renamed to
2498         `field_from_memberref', made static and added `MonoGenericContext *'
2499         argument.
2500         (mono_field_from_token): Added `MonoGenericInst *' argument.
2501         (method_from_memberef): Likewise.
2502         (mono_get_method_from_token): Likewise.
2503         (mono_get_method_full): New public function; does a
2504         mono_get_method(), but also takes a `MonoGenericContext *'.
2505
2506         * verify.c (mono_method_verify): Get the method's generic context
2507         and pass it to mono_field_from_token(), mono_get_method_full() and
2508         mono_class_get_full().
2509
2510 2004-03-25  Martin Baulig  <martin@ximian.com>
2511
2512         * class.c (mono_class_inflate_generic_type): Take a
2513         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
2514         `MonoGenericMethod *'.
2515
2516 2004-03-25  Martin Baulig  <martin@ximian.com>
2517
2518         * loader.h (MonoMethodInflated): Store the MonoGenericContext
2519         instead of the MonoGenericMethod here.
2520
2521 2004-03-25  Martin Baulig  <martin@ximian.com>
2522
2523         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
2524         each time we create a new MonoGenericInst, we also create a new
2525         context which points back to us.
2526
2527         * class.c (inflate_method): Use `ginst->context' instead of
2528         creating a new context.
2529
2530         * loader.c (method_from_memberref): Use
2531         `klass->generic_inst->context' instead of creating a new context.
2532
2533 2004-03-25  Martin Baulig  <martin@ximian.com>
2534
2535         * class.h (MonoGenericContext): New struct.
2536         (MonoGenericMethod): Removed `generic_inst'.
2537
2538         * class.c (mono_class_inflate_generic_method): Take a
2539         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
2540
2541 2004-03-25  Martin Baulig  <martin@ximian.com>
2542
2543         * loader.h (MonoMethodInflated): New typedef.
2544
2545         * metadata.h (MonoMethodSignature): Removed `gen_method', make
2546         `generic_param_count' consume just 30 bits, added `is_inflated'
2547         and `has_type_parameters' flags (one bit each).
2548
2549         * class.c (mono_class_inflate_generic_method): Create a
2550         MonoMethodInflated instead of a MonoMethodNormal and set
2551         `is_inflated' in the method signature.
2552
2553         * class.h (MonoGenericMethod): Removed `generic_method'.
2554
2555 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2556
2557         * image.c: Make sure the name of a MonoImage is always an absolute path.
2558           This fixes bug #54415.
2559
2560 2004-03-24  Martin Baulig  <martin@ximian.com>
2561
2562         * class.c (mono_class_setup_vtable): If we're a generic instance,
2563         use our generic type's vtable size.
2564
2565 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
2566
2567         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
2568         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
2569         problems.
2570
2571 2004-03-23  Martin Baulig  <martin@ximian.com>
2572
2573         * class.h (MonoDynamicGenericInst): Added `int count_events' and
2574         `MonoEvent *events'.
2575
2576         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
2577         (typebuilder_icalls): Added "get_event_info"; calls
2578         mono_reflection_event_builder_get_event_info(). 
2579
2580         * reflection.c (mono_reflection_generic_inst_initialize): Added
2581         `MonoArray *events'.
2582         (mono_reflection_event_builder_get_event_info): New function.
2583
2584 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
2585
2586         * object.h: add mono_type_initialization_init
2587
2588         * object.c (mono_runtime_class_init): 
2589         implement class constructor synchronization rules
2590         to cope with threading issues.  
2591         add mono_type_initialization_init
2592
2593         * appdomain.c (mono_runtime_init): call 
2594         mono_type_initialization_init
2595
2596         * class.h: removing initializing field from MonoVTable
2597
2598 2004-03-23  Martin Baulig  <martin@ximian.com>
2599
2600         * class.c (my_mono_class_from_generic_parameter): Use
2601         `param->name' if it's not NULL. 
2602
2603 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
2604
2605         * class.c: do not insert non-virtual methods in the vtable.
2606         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
2607         that means the method is non-virtual. This never would have
2608         happened before.
2609
2610 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
2611
2612         * profiler.c: Added lock for accessing coverage_hash.
2613
2614 2004-03-22  Martin Baulig  <martin@ximian.com>
2615
2616         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
2617         `method->method->signature->generic_param_count != 0' to make it
2618         work for interface methods.
2619
2620 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2621
2622         * process.c: quote the string passed to the shell using g_shell_quote.
2623
2624 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2625
2626         * threads.c:
2627         (mono_threads_manage): don't remove the finalizer thread and self
2628         from the threads hash table so that mono_thread_manage can be called
2629         more than once.
2630
2631 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2632
2633         * process.c: quote the arguments when UseShellExecute is true. Fixes
2634         bug #55790.
2635
2636 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2637
2638         * threads.c: set mono_thread_detach as a cleanup routine for every
2639         thread. This way it's always executed upon thread termination, either
2640         aborted or finished normally. No more xsp hangs!
2641
2642 2004-03-17  Martin Baulig  <martin@ximian.com>
2643
2644         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
2645         `int count_nested' and a `MonoType **nested'.
2646
2647         * reflection.c (mono_reflection_bind_generic_parameters): Moved
2648         most of the functionality into a new static
2649         do_mono_reflection_bind_generic_parameters() and don't take a
2650         `MonoType *nested_in' argument any more.  Don't compute nested
2651         types here.
2652         (mono_reflection_generic_inst_get_nested_types): New public method
2653         to get nested types.
2654
2655         * class.c (mono_class_create_generic): Set `klass->nested_in' if
2656         we're a nested class.
2657
2658         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
2659         mono_reflection_generic_inst_get_nested_types() to compute the
2660         nested types.
2661
2662 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2663
2664         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
2665         descriptive error message under windows.
2666         
2667 2004-03-17  Martin Baulig  <martin@ximian.com>
2668
2669         * class.c (dup_type): Added `const MonoType *original' argument;
2670         copy the attrs from the original type.
2671
2672 2004-03-17  Martin Baulig  <martin@ximian.com>
2673
2674         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
2675         `m->generic_inst_cache' here.
2676
2677 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
2678
2679         * exception.h exception.c: Add stack_overflow_exception.
2680
2681 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2682
2683         * threadpool.c:
2684         (overlapped_callback): call SetEvent *after* invoking the callback.
2685         No need to call CloseHandle.
2686
2687 2004-03-16  Martin Baulig  <martin@ximian.com>
2688
2689         * reflection.c (mono_image_get_fieldref_token): Take a
2690         `MonoReflectionField *' instead of a `MonoClassField *' and a
2691         `MonoClass *'; store the `MonoReflectionField *' in the hash.
2692
2693 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2694
2695         * appdomain.c: don't add the culture to the filename we're looking for
2696         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
2697
2698 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2699
2700         * locales.c: don't ignore symbols when doing case insensitive compares.
2701         Thanks Dick! Fixes bug #54046.
2702
2703         * threads.c: surround 'threads' usage with enter/leave in
2704         mono_thread_manage.
2705
2706 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
2707
2708         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
2709         implicitly marshalled as [Out]. Fixes #55450.
2710
2711         (mono_marshal_get_runtime_invoke): Zero out the result if there is
2712         an exception.
2713
2714 2004-03-16  Martin Baulig  <martin@ximian.com>
2715
2716         * class.c (mono_class_from_generic_parameter): Use the actual
2717         parameter name. 
2718
2719 2004-03-16  Martin Baulig  <martin@ximian.com>
2720
2721         * reflection.c (type_get_signature_size): New static function.
2722         Compues the size of the type in a method signature.
2723         (method_get_signature_size): New static function; calls
2724         type_get_signature_size() to compute the actual size of the
2725         method's signature.
2726         (method_encode_signature): Use method_get_signature_size() to get
2727         the signature's size rather than using `nparams * 10'.
2728
2729 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2730
2731         * file-io.h: define here WapiOverlapped on windows. I don't want the
2732         regular OVERLAPPED one.
2733
2734         * file-io.c:
2735         * threadpool.c: somehow, BindIoCompletionCallback is not found.
2736         Disabling AIO on windows.
2737
2738 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2739
2740         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
2741         bug #55385.
2742
2743 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2744
2745         * appdomain.c: upgraded corlib version.
2746
2747         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
2748         and BeginWrite. Allow opening files for asynchrnous operations.
2749
2750         * file-io.h: new struct that maps FileStreamAsyncResult.
2751         * icall.c: added new icalls.
2752         * process.[ch]: support setting child process environment variables
2753         and use the SHELL or COMSPEC when UseShellExecute is true.
2754
2755         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
2756         callback for async. IO is here and also BindHandle.
2757
2758         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
2759         from here.
2760
2761 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2762
2763         * reflection.c (create_custom_attr): Allow len == 0.
2764
2765         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
2766         computation on big-endian machines.
2767
2768 2004-03-13  Martin Baulig  <martin@ximian.com>
2769
2770         * class.h (MonoGenericInst): Added `int count_ifaces'.
2771
2772         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
2773         `ginst->count_ifaces' instead `klass->interface_count' since we
2774         may get called before the vtable is created.
2775
2776         * loader.c (mono_method_get_param_names): If we're a generic
2777         instance, return and don't initialize the class.
2778
2779         * reflection.c (mono_reflection_setup_generic_class): Don't call
2780         ensure_runtime_vtable().
2781         (mono_reflection_bind_generic_parameters): Set
2782         `ginst->count_ifaces'.
2783
2784 2004-03-11  Jackson Harper <jackson@ximian.com>
2785
2786         * icall.c:
2787         * unicode.c:
2788         * unicode.h: Remove unused System.Char icalls.
2789         
2790 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
2791
2792         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
2793         code when we P/Invoke the first library in Windows.Forms, instead
2794         of when we first open the assembly.
2795
2796         * assembly.c: Drop the lookup from here.
2797
2798 2004-03-10  Martin Baulig  <martin@ximian.com>
2799
2800         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
2801         class for properties, fields and events.  Finally fixes #54945.
2802
2803 2004-03-10  Martin Baulig  <martin@ximian.com>
2804
2805         * metadata.c (mono_metadata_class_equal): New static function;
2806         checks whether two generic instances or two generic parameters are
2807         equal.
2808         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
2809         compare classes.        
2810
2811 2004-03-10  Martin Baulig  <martin@ximian.com>
2812
2813         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
2814
2815         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
2816         argument and write it into the `reflection_info' field.
2817
2818         * icall.c
2819         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
2820         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
2821
2822 2004-03-09  Jackson Harper  <jackson@ximian.com>
2823
2824         * char-conversions.h: use 8 bits for numeric data its all we need
2825         * icall.c: numeric data is only 8 bits now.
2826
2827 2004-03-09  Martin Baulig  <martin@ximian.com>
2828
2829         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
2830
2831         * class.c (init_properties, init_events): Initialize the new
2832         `parent' field.
2833
2834         * reflection.c (typebuilder_setup_properties): Likewise.
2835         (typebuilder_setup_events): Likewise.
2836
2837         * reflection.h (MonoEventInfo): Replaced `parent with
2838         `declaring_type' and `reflected_type'.
2839
2840         * icall.c (ves_icall_get_property_info): Distinguish between
2841         declaring and reflected type.
2842         (ves_icall_get_event_info): Likewise.
2843
2844 2004-03-09  Martin Baulig  <martin@ximian.com>
2845
2846         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
2847         (ves_icall_Type_GetField): Correctly set field->klass.
2848
2849 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
2850
2851         * loader.h: Fix warning.
2852
2853 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
2854
2855         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
2856         library routine if present.  Notice that it will still continue
2857         executing even if its missing, for those working on the Gtk#
2858         edition of Windows.Forms.
2859
2860         * assembly.c (do_mono_assembly_open): If loading the
2861         System.Windows.Forms call mono_loader_wini_init.
2862
2863 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
2864
2865         * class.h: Added MonoRemoteClass struct.
2866         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
2867         function for MonoStrings.
2868         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
2869         Added internal call for getting the proxy type.
2870         * marshal.c: Get the type of transparent proxies from its remote_class.
2871         Added methods that generate the IL for type checks and casts:
2872         mono_marshal_get_isinst, mono_marshal_get_castclass, 
2873         mono_marshal_get_proxy_cancast.
2874         * marshal.h: Declaration of the previous new methods.
2875         * object.c: Added new moethods for creating and updating MonoRemoteClass
2876         instances: mono_remote_class, mono_upgrade_remote_class, 
2877         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
2878         * verify.c: FIx transparent_proxy_fields layout.
2879         * appdomain.c: Bump corlib version.
2880
2881 2004-03-04  Jackson Harper  <jackson@ximian.com>
2882
2883         * icall.c: Add icall to access char conversion tables.
2884         * char-conversions.h: Character conversion tables.
2885         * Makefile.am: Add char-conversions.h private header file.
2886         
2887 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
2888
2889         * appdomain.c (unload_thread_main): Increase unloading timeout to
2890         10 sec as a temporary workaround for Nant problems.
2891
2892 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
2893
2894         * gc.c: Add checks for GC_enable and GC_disable.
2895
2896         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
2897         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
2898         (bug #54988).
2899         
2900 2004-02-27  Martin Baulig  <martin@ximian.com>
2901
2902         * reflection.c (mono_reflection_bind_generic_parameters): Take a
2903         `MonoReflectionType *' instead of a `MonoType *'.
2904
2905 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
2906
2907         * gc.c (run_finalize): Avoid finalizing the object representing the
2908         finalizer thread.
2909         (finalizer_thread): Fix warning.
2910
2911 2004-02-25  Martin Baulig  <martin@ximian.com>
2912
2913         * class.c (_mono_class_get_instantiation_name): Added `int offset'
2914         argument for nested types.
2915         (mono_class_create_generic): Added support for nested generictypes.
2916
2917         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
2918         `GList *nested'.
2919
2920         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
2921
2922         * reflection.c (method_encode_signature): Increase the minimum
2923         value of `size' from 10 to 11.
2924         (mono_reflection_bind_generic_parameters): Take `int type_argc'
2925         and `MonoType **types' arguments instead of the `MonoArray
2926         *types'; added `MonoType *nested_in'.  Recursively instantiate
2927         nested classes. 
2928
2929 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
2930
2931         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
2932         stack_overflow_ex members which are used by exception handling.
2933
2934         * appdomain.c (mono_runtime_init): Initialize the new members.
2935
2936         * gc.c (mono_gc_enable): New helper function.
2937         * gc.c (mono_gc_disable): New helper function.
2938
2939 2004-02-23  Martin Baulig  <martin@ximian.com>
2940
2941         * icall.c: I must have been really stupid - make it actually work
2942         this time ;-)
2943
2944 2004-02-23  Martin Baulig  <martin@ximian.com>
2945
2946         * loader.c (method_from_memberref): Only inflate the method if
2947         it's in another klass.
2948
2949 2004-02-23  Martin Baulig  <martin@ximian.com>
2950
2951         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
2952         (mono_class_init): If we're a generic instance and an interface,
2953         compute `class->interface_id'; also create `class->interfaces'
2954         here and inflate them.
2955
2956         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
2957         `ginst->is_open'.
2958         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
2959
2960         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
2961
2962 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
2963
2964         * reflection.c (method_encode_code): Improved the error message
2965         generated by the exception.
2966
2967 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2968
2969         * icall.c: Martin did not do what he said in the ChangeLog for
2970         2004-02-18, but put back the changes for properties and events.
2971         Commenting those changes out again and adding comment to bug #54518.
2972         
2973         * process.c: removed warning.
2974
2975 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
2976
2977         * marshal.c (emit_struct_conv): Print an error message instead of
2978         asserting when a type does not have the StructLayout attribute.
2979
2980 2004-02-20  Martin Baulig  <martin@ximian.com>
2981
2982         * reflection.c (mono_type_get_object): Also use the cache for
2983         generic instances.
2984         (mono_reflection_bind_generic_parameters): Always compute
2985         `ginst->ifaces'.        
2986
2987 2004-02-20  Martin Baulig  <martin@ximian.com>
2988
2989         * class.h (MonoGenericMethod): Removed `klass'.
2990
2991         * class.c (mono_class_inflate_generic_method): Added `MonoClass
2992         *klass' argument.
2993
2994 2004-02-20  Martin Baulig  <martin@ximian.com>
2995
2996         * reflection.c (method_encode_methodspec): Actually use the
2997         uninflated signature for the memberref.
2998
2999 2004-02-20  Martin Baulig  <martin@ximian.com>
3000
3001         * class.h (MonoGenericMethod): Removed `declaring'.
3002
3003         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
3004         is NULL, compute it here.
3005
3006 2004-02-20  Martin Baulig  <martin@ximian.com>
3007
3008         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
3009
3010         * metadata.c (mono_metadata_generic_inst_hash): New method.
3011         (mono_metadata_generic_inst_equal): New method.
3012
3013         * reflection.c (mono_reflection_bind_generic_parameters): Use the
3014         `klass->image->generic_inst_cache' cache to avoid creating
3015         duplicate MonoGenericInst's.
3016
3017         * class.c (mono_class_inflate_generic_type): Use the cache.
3018
3019 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
3020
3021         * object.c: fixed gc descriptor calculation for embedded valuetypes.
3022
3023 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3024
3025         * icall.c: added Socket.WSAIoctl icall.
3026
3027         * socket-io.[ch]: implemented
3028         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
3029
3030 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
3031
3032         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
3033
3034 2004-02-18  Urs C Muff  <umuff@quark.com>
3035
3036         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
3037         this work on PPC and other big-endian architectures.
3038
3039         * debug-mono-symfile.h: Prepended the names of all the `guint32'
3040         fields with an underscore to make sure they're only accessed by
3041         the read32() macro.
3042
3043 2004-02-18  Martin Baulig  <martin@ximian.com>
3044
3045         * icall.c: Put the klass->refclass changes back for methods and
3046         fields, but not for properties and events.  We're currently not
3047         distinguishing between DeclaringType and ReflectedType for
3048         properties and events, that's what caused the regressions.
3049
3050 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3051
3052         * object.c:
3053         (mono_async_result_new): the handle can be NULL.
3054
3055         * threadpool.c: Use an event instead of a semaphore, don't initialize
3056         it until needed. This saves quite a few semaphores from being created
3057         when using the threadpool.
3058
3059 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
3060
3061         * object.c (mono_string_is_interned_lookup): Fix interning of long
3062         strings. Fixes #54473.
3063
3064         * domain.c (ldstr_equal): Optimize if the two strings are equal.
3065
3066         * icall.c: Revert the klass->refclass changes since they introduce
3067         regressions (bug #54518).
3068
3069 2004-02-18  Martin Baulig  <martin@ximian.com>
3070
3071         * class.c (mono_class_init): If we're a generic instance and don't
3072         come from a TypeBuilder, inflate our members here.
3073         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
3074         (mono_class_create_generic): New public method.
3075         (mono_class_initialize_generic): Removed.
3076         (get_instantiation_name): Renamed to
3077         _mono_class_get_instantiation_name() and made it public.
3078
3079 2004-02-18  Martin Baulig  <martin@ximian.com>
3080
3081         * class.c (mono_class_inflate_generic_type): Clear the new
3082         instance's `nginst->klass' when inflating a generic instance.
3083         (mono_class_is_subclass_of): Added (basic) support for generic
3084         instances.
3085
3086 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
3087
3088         * appdomain.h, domain.c: use a MonoCodeManager instead of a
3089         MonoMempool to hold compiled native code.
3090
3091 2004-02-17  Martin Baulig  <martin@ximian.com>
3092
3093         * class.h (MonoDynamicGenericInst): Added `count_properties' and
3094         `properties'.
3095
3096         * reflection.c (mono_reflection_generic_inst_initialize): Added
3097         `MonoArray *properties' argument.
3098
3099         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
3100
3101 2004-02-17  Martin Baulig  <martin@ximian.com>
3102
3103         * icall.c (ves_icall_Type_GetFields): Renamed to
3104         ves_icall_Type_GetFields_internal() and added a
3105         `MonoReflectionType *rtype' argument; pass it to
3106         mono_field_get_object() to set the field's "reflected" type.
3107         (ves_icall_Type_GetConstructors): Likewise.
3108         (ves_icall_Type_GetEvents): Likewise.
3109         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
3110         argument; pass it to mono_method_get_object() to set the method's
3111         "reflected" type.       
3112
3113 2004-02-17  Martin Baulig  <martin@ximian.com>
3114
3115         * class.h (MonoDynamicGenericInst): New type.
3116         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
3117
3118         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
3119         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
3120         (ves_icall_MonoGenericInst_GetFields): New interncall.
3121
3122         * class.c (mono_class_from_generic): Don't call
3123         mono_class_initialize_generic() if this is a dynamic instance;
3124         ie. it's being created from a TypeBuilder.
3125         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
3126         `class->byval_arg.type'.
3127
3128         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
3129         to `inflate_method' and made static.
3130         (mono_reflection_inflate_field): Removed.
3131         (mono_reflection_generic_inst_initialize): New public method.
3132
3133         * reflection.h (MonoReflectionGenericInst): Removed `methods',
3134         `ctors' and `fields'; added `initialized'.
3135
3136 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
3137
3138         * debug-helpers.c (mono_method_full_name): Fix output for empty
3139         namespaces.
3140
3141 2004-02-12  Martin Baulig  <martin@ximian.com>
3142
3143         * class.h (MonoClassField): Added `MonoType *generic_type'.
3144
3145         * reflection.c (mono_image_get_fieldref_token): Added support for
3146         instantiated generic types.
3147         (field_encode_inflated_field): Removed.
3148         (mono_image_get_inflated_field_token): Removed.
3149         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
3150
3151         * reflection.h (MonoReflectionInflatedField): Removed.
3152
3153 2004-02-12  Martin Baulig  <martin@ximian.com>
3154
3155         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
3156         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
3157
3158         * reflection.c (mono_image_get_methodspec_token): Take a
3159         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
3160         (mono_image_create_token): Check whether we have a
3161         `method->signature->gen_method' and call
3162         mono_image_get_methodspec_token() if appropriate.
3163         (inflated_method_get_object): Removed.
3164         (mono_reflection_bind_generic_method_parameters): Return a
3165         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
3166         (mono_reflection_inflate_method_or_ctor): Likewise.
3167
3168         * reflection.h (MonoReflectionInflatedMethod): Removed.
3169
3170 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
3171
3172         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
3173         for custom valuetype marshalling.
3174
3175         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
3176
3177 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3178
3179         * icall.c: fixed WSAGetLastError_internal name.
3180
3181 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
3182
3183         * threads.c (mono_thread_attach): Allow this to be called multiple
3184         times for a thread.
3185         
3186         * threads.c (build_wait_tids): Do not wait for ourselves.
3187
3188         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
3189         appdomain list is empty.
3190
3191         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
3192         memory returned by mono_string_builder_to_utf16, since it points into
3193         managed memory. Thanks to Bernie Solomon for noticing this.
3194
3195         * icall.c: Add AppDomainSetup icalls.
3196
3197         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
3198
3199         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
3200         types.
3201
3202         * reflection.c (reflection_methodbuilder_to_mono_method): Save
3203         custom attributes to the method_aux struct. Also fix array indexes etc.
3204
3205         * loader.c (mono_method_get_param_names): Make dynamic case work again.
3206         
3207 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
3208
3209         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
3210         (both static and runtime) and reduce startup time.
3211
3212 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
3213
3214         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
3215         AsAny marshalling conversion instead of crashing.
3216
3217         * marshal.c: Fix warnings.
3218
3219 2004-02-09  Martin Baulig  <martin@ximian.com>
3220
3221         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
3222
3223         * reflection.h (MonoReflectionInflatedMethod): Removed the
3224         `declaring' field, it's now in the unmanaged MonoGenericMethod.
3225
3226         * reflection.c (method_encode_methodspec): Removed the `method'
3227         argument; we get it from `gmethod->declaring'.
3228         (inflated_method_get_object): Removed the `declaring' argument.
3229
3230 2004-02-09  Martin Baulig  <martin@ximian.com>
3231
3232         * class.h (MonoGenericMethod): New type.
3233         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
3234         `generic_method'.
3235
3236         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
3237         a `MonoGenericMethod *gen_method' one.
3238
3239         * class.c (mono_class_inflate_generic_type): Take an additional
3240         `MonoGenericMethod * argument.  This is only non-NULL if we're
3241         inflating types for a generic method.   
3242         (mono_class_inflate_generic_signature): Renamed to
3243         inflate_generic_signature() and made static; take a
3244         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3245         (inflate_generic_header): Take a `MonoGenericMethod *' argument
3246         instead of a `MonoGenericInst *' one.
3247         (mono_class_inflate_generic_method): Likewise.
3248
3249         * reflection.c (encode_generic_method_sig): Take a
3250         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
3251         (method_encode_methodspec): Likewise.
3252         (inflated_method_get_object): Likewise. 
3253
3254         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
3255         field with a `MonoGenericMethod *gmethod' one.  
3256
3257 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
3258
3259         * class.h (mono_class_has_parent): add parens to expansion
3260         so you can ! this.
3261
3262 2004-02-08  Martin Baulig  <martin@ximian.com>
3263
3264         * image.h (MonoImage): Removed `generics_cache'.
3265
3266         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
3267         instead of a `MonoType *' argument; removed the `inflate_methods'
3268         argument.  Don't inflate methods here.
3269
3270         * loader.c (find_method): If it's a generic instance, call
3271         mono_class_init() on the `sclass->generic_inst->generic_type'.
3272
3273         * metadata.c (mono_type_size): Make this work on uninitialized
3274         generic instances; call it on the `ginst->generic_type's class.
3275
3276         * reflection.c (mono_reflection_bind_generic_parameters): Call
3277         mono_class_from_generic() to create the `ginst->klass'.
3278
3279 2004-02-08  Martin Baulig  <martin@ximian.com>
3280
3281         * class.h (MonoClass): Changed type of `generic_inst' from
3282         `MonoType *' to `MonoGenericInst *'.
3283
3284 2004-02-08  Martin Baulig  <martin@ximian.com>
3285
3286         * icall.c (ves_icall_Type_BindGenericParameters): Just call
3287         mono_type_get_object(), this is now creating a `MonoGenericInst'
3288         for MONO_TYPE_GENERICINST.
3289         (ves_icall_MonoGenericInst_GetParentType): Likewise.
3290         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
3291
3292         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
3293         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
3294         (inflated_method_get_object): Added `MonoClass *refclass' argument.
3295         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
3296         and reflected type.
3297
3298         * reflection.h (MonoReflectionInflatedMethod): Removed
3299         `declaring_type' and `reflected_type'.
3300
3301 2004-02-08  Martin Baulig  <martin@ximian.com>
3302
3303         * class.h (MonoGenericInst): Added `MonoType *parent' and
3304         `MonoType **ifaces'.
3305
3306         * reflection.h (MonoReflectionGenericInst): Removed `klass',
3307         `parent' and `interfaces'.
3308
3309         * reflection.c (mono_reflection_bind_generic_parameters): Take a
3310         `MonoType *' argument and return a `MonoType *'.
3311
3312         * icall.c
3313         (ves_icall_MonoGenericInst_GetParentType): New interncall.
3314         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
3315
3316 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3317
3318         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
3319         valuetype marshalling.
3320
3321 2004-02-06  Martin Baulig  <martin@ximian.com>
3322
3323         * class.c
3324         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
3325         (my_mono_class_from_generic_parameter): Likewise.
3326
3327 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
3328
3329         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
3330         contents of the symbol files lazily.
3331
3332         * object.h (MonoThread): Add 'name' and 'name_len' fields.
3333
3334         * threads.h threads.c icall.c: New icalls for getting and setting the
3335         threads name.
3336
3337 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
3338
3339         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
3340         Raise an exception when the domain is not found.
3341
3342 2004-02-03  Martin Baulig  <martin@ximian.com>
3343
3344         * reflection.c (mono_image_get_methodspec_token): Use the
3345         uninflated signature; fixes gen-33.
3346
3347 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
3348
3349         * gc.c threads.c: Make the finalizer thread a normal managed thread so
3350         the finalizer code can use thread functionality.
3351
3352         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
3353         the finalizer thread.
3354
3355         * threads.c: Make some functions more robust.
3356
3357         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
3358
3359         * metadata.h: Add new marshalling conventions.
3360
3361         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
3362         stringbuilder marshalling. Fixes #53700.
3363
3364         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
3365
3366         * reflection.c (mono_image_get_type_info): Save declarative security
3367         info.
3368
3369         * reflection.c (mono_image_get_field_info): Handle uninitialized 
3370         unmanaged fields as well.
3371
3372         * appdomain.c: Bump corlib version.
3373
3374 2004-02-01  Martin Baulig  <martin@ximian.com>
3375
3376         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
3377         method type arguments.  
3378
3379 2004-01-30  Duncan Mak  <duncan@ximian.com>
3380
3381         * marshal.h: Add prototype for
3382         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
3383         and
3384         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
3385         fix the build.
3386
3387 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
3388
3389         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
3390         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
3391
3392 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3393
3394         * marshal.c (mono_marshal_get_native_wrapper): Add support for
3395         custom marshalling of valuetypes.
3396
3397         * marshal.c: Fix some warnings.
3398
3399 2004-01-29  Martin Baulig  <martin@ximian.com>
3400
3401         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
3402         for generic method parameters.
3403
3404         * reflection.c (method_encode_methodspec): Write the uninflated
3405         signature into the methodspec table.
3406         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
3407         is always the uninflated method.
3408         (reflection_methodbuilder_to_mono_method): Copy the generic
3409         parameters from the MethodBuilder into `header->gen_params'.
3410
3411 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
3412
3413         * class.c (mono_class_from_generic_parameter): Fix warning.
3414
3415 2004-01-27  Martin Baulig  <martin@ximian.com>
3416
3417         * class.c (mono_class_from_generic_parameter): Don't create
3418         `klass->methods' here.  
3419
3420 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
3421
3422         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
3423         extension since it does not work with libraries named lib<FOO>.dll.so.
3424
3425 2004-01-25  Martin Baulig  <martin@ximian.com>
3426
3427         * class.c (mono_class_inflate_generic_type): Added support for
3428         MONO_TYPE_GENERICINST.
3429
3430         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
3431         inflate methods on open constructed types.      
3432
3433 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3434
3435         * object.c: fire ProcessExit event in the root AppDomain after running
3436         Main. Fixes bug #53299.
3437
3438 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
3439
3440         * socket-io.c: include the new socket-wrappers.h header.
3441         Use the wrappers instead of the unix socket functions to make the code
3442         more clear.
3443
3444 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
3445
3446         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
3447
3448         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3449         Fixes #22532.
3450
3451 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
3452
3453         * reflection.c (mono_image_create_pefile): Handle the case when the
3454         entry point is not a MethodBuilder.
3455
3456         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3457         field to ReflectionMethod since it is not allways a builder.
3458
3459         * reflection.c (type_get_fully_qualified_name): New helper function to
3460         return the fully qualified name of a type.
3461
3462         * reflection.c (encode_marshal_blob): Always emit the fully qualified
3463         type name for custom marshallers.
3464
3465         * reflection.c (mono_marshal_spec_from_builder): Ditto.
3466
3467         * class.c (mono_class_setup_vtable): If a parent class already 
3468         implements an interface, use the implementing methods from that class.
3469         Fixes #53148.
3470
3471 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3472
3473         * threadpool.c: just return instead of ExitThread to allow for thread
3474         clean up earlier.
3475
3476 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
3477
3478         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
3479         when closing resource modules.
3480
3481         * reflection.c (mono_image_create_pefile): Handle the case when the
3482         entry point is not a MethodBuilder.
3483
3484         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
3485         field to ReflectionMethod since it is not allways a builder.
3486
3487 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
3488
3489         * marshal.c (mono_marshal_get_managed_wrapper): 
3490         mono_marshal_alloc takes native int so CONV_I
3491         the arg for 64bits.
3492
3493 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
3494
3495         * reflection.c (fixup_cattrs): New function to fixup the methoddef
3496         tokens in the cattr table. Fixes #53108.
3497
3498 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3499
3500         * loader.c: don't trim ".dll" before looking up in the config file.
3501         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
3502
3503 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
3504
3505         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
3506         Return the module which contains the resource as well.
3507         (ves_icall_System_Reflection_Module_Close): New icall.
3508
3509         * appdomain.c: Bump corlib version number.
3510
3511         * image.c (mono_image_addref): New public function.
3512
3513         * assembly.c: Call mono_image_addref.
3514
3515         * reflection.c (mono_module_get_object): Increase reference count of 
3516         the image.
3517
3518         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
3519         Fixes #22532.
3520
3521         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
3522         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
3523         proper exceptions on DllImport problems.
3524
3525 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
3526
3527         * class.c, metadata.c: eliminate CSIZE macro.
3528
3529 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
3530
3531         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
3532         * object.h: Added async_callback field in MonoAsyncResult.
3533         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
3534         * verify.c: Added async_callback in MonoAsyncResult layout.
3535
3536 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
3537
3538         * reflection.c (mono_reflection_get_custom_attrs): Add support
3539         for Modules.
3540
3541 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3542
3543         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
3544         marshalling.
3545         (mono_marshal_method_from_wrapper): Add null pointer check.
3546
3547 2004-01-16  Martin Baulig  <martin@ximian.com>
3548
3549         * debug-mono-symfile.h: Set version number to 36 and reflect
3550         latest symbol writer changes.
3551
3552 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
3553
3554         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
3555         multi-dimensional arrays.
3556         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
3557         (mono_class_from_mono_type): Use bounded_array_class_get.
3558         
3559         * class.c (mono_bounded_array_class_get): New function which takes
3560         a 'bounded' bool argument to distinguish vectors from one dimensional
3561         arrays.
3562
3563         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
3564         bounded_array_class_get if the array has bounds.
3565
3566         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
3567         Search modules loaded using AssemblyBuilder:AddModule as well.
3568
3569 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3570
3571         * appdomain.c: increased corlib version.
3572         * filewatcher.c: removed g_print.
3573         * icall.c:
3574         (get_property_info): only allocate what is actually requested.
3575         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
3576
3577 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3578
3579         * Makefile.am: added filewatcher.[ch]
3580         * filewatcher.[ch]: FileSystemWatcher runtime support.
3581         * icall.c: added new FSW icalls.
3582
3583 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
3584
3585         * string-icalls.c: fix stringbuilder regression as suggested by
3586         Iain McCoy <iain@mccoy.id.au>.
3587
3588 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
3589
3590         * process.c (process_read_stringtable_block): Recognize '007f' as
3591         a language neutral stringtable block.
3592
3593 2004-01-12  Patrik Torstensson
3594
3595         * object.h (MonoStringBuilder) : Changed layout to support our
3596         new stringbuilder class.
3597         * marshal.c: Change marshalling to support the new layout of 
3598         string builder.
3599         * appdomain.c: increased version number because new layout of
3600         string builder.
3601
3602 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
3603
3604         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
3605         assembly name as an string instead of an AssemblyName, since it is
3606         easier to extract info from it.
3607
3608         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
3609         the culture subdirectories too. Fixes #52231.
3610
3611 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3612
3613         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
3614         It takes 2 new parameters with an optional name for the method to look
3615         for and case ignoring info.
3616
3617         * threadpool.c: removed unused variable.
3618
3619 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3620
3621         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
3622         It takes 2 new parameters with an optional name for the property to look
3623         for and case ignoring info.
3624         Fixes bug #52753.
3625
3626 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
3627
3628         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
3629         Fix #52451.
3630
3631 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3632
3633         * appdomain.c:
3634         * assembly.c: escape the uri before passing it to g_filename_from_uri.
3635         Fixes bug #52630.
3636
3637 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
3638
3639         * reflection.c: Add support for more than one unmanaged resource.
3640
3641         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
3642         in field->def_value, as done in all other cases.
3643
3644         * reflection.c (mono_reflection_get_custom_attrs): Add support for
3645         TypeBuilders.
3646
3647         * reflection.c (mono_reflection_create_runtime_class): Remove 
3648         errorneous assignment to klass->element_class, since it is already
3649         done in mono_reflection_setup_internal_class.
3650
3651 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3652
3653         * gc.c: added missing LeaveCriticalSection.
3654         * icall.c: indented a couple of lines.
3655         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
3656         if we call EndInvoke inside a callback. Fixes bug #52601.
3657
3658 2004-01-07  Martin Baulig  <martin@ximian.com>
3659
3660         * mono-debug-debugger.h
3661         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
3662
3663 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
3664
3665         * appdomain.c: Use messages in NotImplementedException.
3666
3667         * exception.c (mono_get_exception_not_implemented): Now this takes
3668         a message argument.
3669
3670         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
3671         exception instead of g_asserting an aborting when something is not
3672         implemented.
3673
3674         Add some inline docs.
3675
3676 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
3677
3678         * reflection.h: Update after changes to object layout.
3679
3680         * reflection.c: Implement saving of unmanaged aka win32 resources.
3681
3682         * appdomain.c: Bump version number.
3683
3684         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
3685         Handle missing domains gracefully.
3686
3687 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
3688
3689         * file-io.c : On Windows, there are much more invalid_path_chars.
3690
3691 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
3692
3693         * class.h, object.c: prepare for GetType () speedup.
3694
3695 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
3696
3697         * profiler.c: workaround for --profile null reference exception on
3698           cygwin. Patch by Patrik Torstensson.
3699
3700 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
3701
3702         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
3703         make work for unaligned access.
3704
3705 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
3706
3707         * class.c: small cleanup (class->fields [i] -> field).
3708         * image.c: check address of metadata is valid.
3709
3710 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
3711
3712         * assembly.h assembly.c (mono_assembly_loaded): New public function to
3713         search the list of loaded assemblies.
3714
3715         * reflection.c (mono_reflection_type_from_name): Use 
3716         mono_assembly_loaded instead of mono_image_loaded.
3717
3718         * reflection.c: Fix warnings.
3719
3720 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
3721
3722         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
3723         is dynamic. This is needed since an assembly can contain both dynamic and
3724         non-dynamic images.
3725
3726         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
3727         assembly->dynamic.
3728
3729         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
3730
3731         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
3732         to store modules loaded using AddModule.
3733
3734         * reflection.c (mono_image_fill_file_table): Generalize this so it works
3735         on Modules.
3736
3737         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
3738
3739         * reflection.c (mono_image_fill_export_table_from_module): New function to
3740         fill out the EXPORTEDTYPES table from a module.
3741
3742         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
3743         into a separate function. Also handle loaded non-dynamic modules.
3744
3745         * reflection.c (mono_image_basic_init): Fix memory allocation.
3746
3747         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3748
3749         * assembly.c (mono_assembly_load_references): Make this public.
3750
3751 2003-12-19  Martin Baulig  <martin@ximian.com>
3752
3753         * class.c (mono_class_initialize_generic): Made this static, take
3754         a `MonoGenericInst *' instead of a `MonoClass *'.
3755         (mono_class_from_generic): Call mono_class_initialize_generic()
3756         unless we're already initialized or being called from
3757         do_mono_metadata_parse_generic_inst().
3758
3759         * class.h (MonoGenericInst): Added `initialized' and
3760         `init_pending' flags.
3761
3762         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
3763         `mono_class_init (gklass)' or mono_class_initialize_generic()
3764         here; set `generic_inst->init_pending' while parsing the
3765         `type_argv'.
3766
3767 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
3768
3769         * locales.c: include string.h for memxxx prototypes
3770
3771 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
3772
3773         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
3774         constructor when accessing literal fields.
3775
3776 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
3777
3778         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3779
3780         * reflection.c (assembly_add_resource_manifest): New function to fill
3781         the MANIFESTRESOURCE table.
3782
3783         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
3784
3785         * reflection.h: Update to changes in class layout.
3786
3787         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
3788         Reenable call to mono_runtime_is_shutting_down ().
3789
3790         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
3791         determine if the runtime is shutting down.
3792
3793 2003-12-16  Jackson Harper <jackson@ximian.com>
3794
3795         * icall.c: comment out call to mono_runtime_is_shutting_down to
3796         fix build.
3797         
3798 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
3799
3800         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
3801         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
3802
3803 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
3804
3805         * reflection.c: move definition of swap_with_size
3806         to before its first call
3807
3808 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
3809
3810         * appdomain.c (mono_runtime_is_shutting_down): New public function.
3811
3812         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
3813         icall.
3814
3815         * object.c: Fix warnings.
3816
3817         * icall.c (ves_icall_Type_Get...): Only consider inherited static
3818         members if FlattenHierarchy is set.
3819
3820         * reflection.c (mono_image_add_decl_security): New function to emit
3821         declarative security.
3822
3823         * reflection.h reflection.c: Add support for declarative security.
3824
3825         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3826         
3827 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
3828
3829         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
3830         
3831         * appdomain.c verify.c: Moved corlib version checking into its own
3832         function in appdomain.c since it needs to create vtables etc.
3833
3834 2003-12-13  Patrik Torstensson <p@rxc.se>
3835
3836         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
3837         instead of unwrapped server.
3838
3839 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
3840
3841         * verify.c (check_corlib): Fix field index.
3842
3843 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
3844
3845         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
3846         GetGacPath icall.
3847
3848 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
3849
3850         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
3851         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
3852         cope with sizeof(size_t) != sizeof(guint32).
3853
3854 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3855
3856         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
3857         in case of failure.
3858
3859 2003-12-10  Mark Crichton <crichton@gimp.org>
3860
3861         * icall.c: removed the GetNonZeroBytes.  We now handle this case
3862         in managed code.
3863
3864         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
3865
3866 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
3867
3868         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
3869         marked as deleted.
3870
3871 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
3872
3873         * verify.c (check_corlib): Handle the case when the version field is 
3874         initialized by a static constructor.
3875
3876 2003-12-08  Patrik Torstensson  <p@rxc.se>
3877
3878     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
3879
3880 2003-12-08  Martin Baulig  <martin@ximian.com>
3881
3882         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
3883         a MonoReflectionGenericParameter, also take the parameter index
3884         and name as arguments.
3885         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
3886         (ves_icall_MonoGenericParam_initialize): New interncall.
3887         (ves_icall_Type_make_byref_type): New interncall.
3888
3889         * reflection.h (MonoReflectionGenericParam): Derive from
3890         MonoReflectionType, not just from MonoObject.  Added `refobj' and
3891         `index' fields.
3892
3893         * reflection.c (mono_reflection_define_generic_parameter): Create
3894         and return a new MonoReflectionGenericParam; don't initialize the
3895         constraints here.
3896         (mono_reflection_initialize_generic_parameter): New public method;
3897         initializes the constraints and creates the `param->pklass'.
3898
3899 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
3900
3901         * reflection.h reflection.c: Use the new fields 'num_types', 
3902         'num_fields' and 'num_methods' to track the number of types etc.
3903
3904         * verify.c (check_corlib): Check corlib version number.
3905
3906 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
3907
3908         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
3909         function works on all methods.
3910
3911 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
3912
3913         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
3914         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
3915         the custom_type_info flag of the transparent proxy.
3916         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
3917         objects that supports IRemotingTypeInfo.
3918         * object.h: Added custom_type_info field in transparent proxy.
3919
3920 2003-12-06  Martin Baulig  <martin@ximian.com>
3921
3922         * class.c (mono_class_create_from_generic): Removed.
3923         (mono_class_from_generic): Check `ginst->klass' before doing
3924         anything else.  This is important to fully support "recursive"
3925         generic types.
3926
3927         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
3928         empty `generic_inst->klass' before doing anything else.
3929
3930 2003-12-06  Dick Porter  <dick@ximian.com>
3931
3932         * verify.c: 
3933         * object.h:
3934         * icall.c:
3935         * locales.c: Use C structs to access class fields.  Don't do a
3936         conversion between MonoString and UChar because both are
3937         platform-endian UTF-16.  Compare now takes startindex and count
3938         parameters.  Add a char overload for IndexOf.  Speed up the
3939         invariant string IndexOf.
3940
3941 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
3942
3943         * Makefile.am (monosn_LDADD): Fix parallel build.
3944
3945 2003-12-04  Martin Baulig  <martin@ximian.com>
3946
3947         * icall.c
3948         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
3949         (ves_icall_Type_make_array_type): New interncall.       
3950
3951 2003-12-04  Martin Baulig  <martin@ximian.com>
3952
3953         * locales.c: also change it in the !HAVE_ICU case.
3954
3955 2003-12-04  Dick Porter  <dick@ximian.com>
3956
3957         * icall.c:
3958         * locales.c: construct_compareinfo is now in CompareInfo, not
3959         CultureInfo.
3960
3961 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
3962
3963         * image.c (mono_image_load_file_for_image): Cache loaded images in the
3964         image->files array.
3965
3966         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
3967         table as well.
3968
3969         * assembly.c (mono_assembly_load_references): Only load references
3970         once.
3971
3972         * class.c (mono_class_from_name): Avoid linear search of the 
3973         EXPORTEDTYPE table.
3974
3975         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
3976
3977 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
3978
3979         * image.h (MonoImage): Add 'field_cache' field.
3980
3981         * loader.c (mono_field_from_token): Cache field lookups.
3982         
3983         * reflection.c (mono_module_get_object): Fix name property.
3984
3985         * icall.c (ves_icall_get_enum_info): Update after changes to 
3986         mono_metadata_get_constant_index ().
3987
3988         * icall.c: Get rid of get_type_info icall, use a separate icall for
3989         each type property to avoid needless memory allocations. Fixes #51514.
3990
3991         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
3992         to avoid needless binary searches.
3993
3994         * class.c (class_compute_field_layout): Move the initialization of
3995         field->def_value to mono_class_vtable ().
3996
3997         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
3998         non-corlib types.
3999
4000         * object.c (mono_object_allocate): Make it inline.
4001
4002         * object.c (mono_object_allocate_spec): Make it inline.
4003         
4004 2003-12-02  Dick Porter  <dick@ximian.com>
4005
4006         * locales.c (create_NumberFormat): NumberFormatInfo construction.
4007         Patch by Mohammad DAMT (mdamt@cdl2000.com).
4008
4009 2003-12-01  Dick Porter  <dick@ximian.com>
4010
4011         * threads.c: Fix signature and call in CreateMutex and
4012         CreateEvent.
4013
4014 2003-12-01  Dick Porter  <dick@ximian.com>
4015
4016         * icall.c: 
4017         * locales.c: Implement string compares and searching
4018
4019         * object.h: Add extra Thread field
4020
4021 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
4022
4023         * reflection.c (fixup_method): Add support for MonoCMethod.
4024
4025 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
4026
4027         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
4028
4029         * reflection.c (assembly_name_to_aname): Allow extra characters in
4030         assembly names. Fixes #51468.
4031
4032 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
4033
4034         * exception.c (mono_exception_from_name_domain): New helper function.
4035
4036         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
4037         exception object in the correct domain.
4038
4039         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
4040         formatting + make a copy a the input data.
4041
4042         * loader.c (mono_get_method_from_token): Methods which contain
4043         native code do not have entries in the ImplMap.
4044
4045         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
4046         Thanks to Gonzalo for spotting this.
4047         
4048         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
4049         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
4050
4051         * assembly.h (mono_assembly_load_from): Split the second part of 
4052         assembly loading into a new public function.
4053
4054         * exception.h (mono_get_exception_bad_image_format): New function.
4055
4056 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
4057
4058         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4059         Enumerate all modules inside a dynamic assembly. Fixes #51293.
4060         
4061         * icall.c: Add new icall for creating dynamic methods.
4062
4063         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
4064
4065         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
4066
4067         * reflection.c (mono_reflection_create_dynamic_method): New icall to
4068         create a dynamic method.
4069
4070         * reflection.c (resolve_object): New helper function.
4071
4072         * reflection.c: Generalize ReflectionMethodBuilder and the functions
4073         which manipulate it so they can also work on dynamic methods.
4074
4075         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
4076         creating the MonoReflectionMethodAux structure if it is not needed.
4077         
4078         * reflection.h verify.c: Update after changes to object layout.
4079
4080         * reflection.c (method_builder_encode_signature): Fix compilation on
4081         gcc 2.95.x.
4082
4083 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
4084
4085         * appdomain.h: Added support for context static fields. Added static_data
4086           field to MonoAppContext and renamed thread_static_fields to a more
4087           generic special_static_fields in MonoAppDomain, since it can now contain
4088           context static fields.
4089         * domain.c: Updated hashtable name.
4090         * object.c: Replaced field_is_thread_static() for a more generic
4091           field_is_special_static() which also checks for context static attribute.
4092           In mono_class_vtable(), added support for static context fields.
4093         * threads.c: Changed methods that manage thread static fields to more
4094           generic methods so they can be reused both for thread and context static
4095           data.
4096         * threads.h: Declared some new methods.
4097
4098 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
4099
4100         * reflection.h: Update after changes to the managed types.
4101
4102         * reflection.c (encode_custom_modifiers): New helper function.
4103
4104         * reflection.c (method_encode_signature): Emit custom modifiers.
4105
4106         * reflection.c (field_encode_signature): Emit custom modifiers.
4107
4108 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
4109
4110         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
4111
4112         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
4113         implementation.
4114
4115         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
4116         icall.
4117
4118         * object.c (mono_field_get_value_object): New function.
4119
4120         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
4121         specific.
4122
4123 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
4124
4125         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
4126         return a preallocated out-of-memory exception instance.
4127
4128         * object.c (out_of_memory): Use the new function.
4129
4130         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
4131         flag is before the custom modifiers. Fixes #49802.
4132
4133 2003-11-16  Martin Baulig  <martin@ximian.com>
4134
4135         * class.c (mono_class_is_open_constructed_type): Implemented the
4136         MONO_TYPE_GENERICINST case.
4137
4138 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
4139
4140         * assembly.c (mono_assembly_fill_assembly_name): New function to
4141         fill out the MonoAssemblyName structure.
4142         (mono_assembly_open): Use the new function.
4143
4144         * icall.c (fill_reflection_assembly_name): New helper function.
4145
4146         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
4147         new function.
4148
4149         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
4150
4151 2003-11-15  Martin Baulig  <martin@ximian.com>
4152
4153         * class.c (mono_class_is_open_constructed_type): New public
4154         function; checks whether a type is an open constructed type,
4155         ie. whether it still contains type parameters.
4156         (mono_class_inflate_generic_type): If we're a type parameter and
4157         the inflated type is also a MONO_TYPE_(M)VAR, return the original
4158         type.
4159
4160         * class.h (MonoGenericInst): Added `guint32 is_open'.
4161
4162         * loader.c (method_from_methodspec): Check whether we're an open
4163         or closed constructed type and set `ginst->is_open'.
4164
4165         * reflection.c (mono_reflection_bind_generic_parameters): Check
4166         whether we're an open or closed constructed type and set
4167         `ginst->is_open'.
4168         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
4169         from open constructed types.
4170
4171 2003-11-15  Martin Baulig  <martin@ximian.com>
4172
4173         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4174         a generic instance (instead of a generic type declaration) with
4175         unbound generic parameters, bind them to our actual types.
4176
4177 2003-11-14  Martin Baulig  <martin@ximian.com>
4178
4179         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
4180
4181         * reflection.c (mono_reflection_bind_generic_parameters): If we're
4182         an interface type, populate `res->interfaces' with instantiated
4183         versions of all the interfaces we inherit.
4184
4185 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
4186
4187         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
4188         when MONO_PATH is set but doesn't contain the install dir.
4189
4190 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4191
4192         * icall.c:
4193         (ves_icall_Type_GetInterfaces): don't return an interface twice when
4194         it's also implemented in base classes. Fixes bug #50927.
4195
4196 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
4197
4198         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
4199         if this method is called from a finalizer. Fixes #50913.
4200
4201 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
4202
4203         * threads.c: Implement VolatileRead/VolatileWrite
4204
4205         * icall.c: Add new icalls for VolatileRead/VolatileWrite
4206
4207 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4208
4209         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
4210         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
4211         2.95.3.
4212
4213         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
4214         from Peter Ross (pro@missioncriticalit.com).
4215         
4216 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
4217
4218         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
4219
4220 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4221
4222         * assembly.c (mono_assembly_load_references): Disable check because it
4223         triggers on older corlibs which lots of people have.
4224
4225 2003-11-12  Jackson Harper  <jackson@ximian.com>
4226
4227         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
4228         load corlib.dll if mscorlib.dll is not found.
4229         * assembly.h: Remove corlib name define.
4230         * class.c:
4231         * domain.c:
4232         * image.c: Change corlib name to mscorlib.
4233         
4234 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
4235
4236         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
4237
4238 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
4239
4240         * appdomain.h: Added loader_optimization here to sync with the C#
4241         code, and add disallow_binding_redirects field.
4242
4243 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4244
4245         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
4246
4247         * reflection.c (mono_image_build_metadata): Fix crash on modules
4248         with no types.
4249
4250         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
4251
4252         * icall.c (ves_icall_get_method_info): Return callingConvention as
4253         well.
4254
4255         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
4256         namespaces from the EXPORTEDTYPE table as well.
4257
4258         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
4259         from all modules inside the assembly.
4260         
4261 2003-11-11  Martin Baulig  <martin@ximian.com>
4262
4263         * reflection.c (mono_reflection_bind_generic_parameters): Make
4264         this work for interfaces.
4265
4266 2003-11-11  Martin Baulig  <martin@ximian.com>
4267
4268         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
4269
4270 2003-11-11  Martin Baulig  <martin@ximian.com>
4271
4272         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
4273         "MonoInflatedMethod" and "MonoInflatedCtor".
4274
4275 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
4276
4277         * reflection.c (resolution_scope_from_image): Use the assembly table
4278         from the manifest module, since other modules don't have it.
4279
4280         * debug-helpers.c (mono_type_full_name): New helper function.
4281
4282         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
4283
4284         * image.c (mono_image_load_file_for_image): New public function which
4285         is a replacement for the load_file_for_image in class.c.
4286
4287         * assembly.c (mono_assembly_load_module): A wrapper for the function
4288         above which does assembly association and reference loading too.
4289
4290         * class.c (mono_class_from_name): Call mono_assembly_load_module.
4291
4292 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4293
4294         * appdomain.c: not all of the attributes for the full assembly name
4295         are required and the order doesn't matter. Fixes bug #50787.
4296
4297 2003-11-10  Dick Porter  <dick@ximian.com>
4298
4299         * locales.c: Use platform-endian UTF16
4300
4301 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4302
4303         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4304         
4305 2003-11-10  Martin Baulig  <martin@ximian.com>
4306
4307         * metadata.c
4308         (mono_metadata_load_generic_params): Make this actually work.
4309
4310         * reflection.c (mono_reflection_bind_generic_parameters): If our
4311         parent is a generic instance, pass all the `types' to it, no
4312         matter whether it has the same number of type parameters or not.
4313
4314 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
4315
4316         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
4317
4318         * assembly.c (mono_assembly_load_references): Move the image<->assembly
4319         assignment code to this function so it gets called recursively for all
4320         modules.
4321
4322         * image.c (load_modules): Remove the assembly assignment since it is
4323         now done by mono_assembly_load_references.
4324         
4325         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
4326         Add 'module' argument.
4327         (mono_module_get_types): New helper function.
4328         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
4329
4330 2003-11-08  Martin Baulig  <martin@ximian.com>
4331
4332         * class.c (mono_class_inflate_generic_method): Interface method
4333         don't have a header.
4334
4335         * reflection.c (mono_image_get_methodspec_token): Take an
4336         additional `MonoGenericInst *' argument instead of reading it from
4337         the header; this is necessary to support interfaces.
4338         (mono_image_create_token): Pass the `MonoGenericInst *' from the
4339         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
4340         (inflated_method_get_object): Take an additional `MonoGenericInst *'
4341         argument.
4342
4343         * reflection.h (MonoReflectionInflatedMethod): Added
4344         `MonoGenericInst *ginst'.
4345
4346 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
4347
4348         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
4349
4350 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
4351
4352         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
4353
4354 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
4355
4356         * reflection.c 
4357         (reflection_methodbuilder_from_method_builder):
4358         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
4359         initialize a ReflectionMethodBuilder structure.
4360         (mono_image_get_methodbuilder_token):
4361         (mono_image_get_ctorbuilder_token): New functions to emit memberref
4362         tokens which point to types in another module inside the same assembly.
4363
4364         * reflection.c: Use the new helper functions.
4365         
4366         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
4367
4368         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
4369         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
4370
4371         * reflection.c (resolution_scope_from_image): Emit a moduleref if
4372         neccesary.
4373
4374         * reflection.c (mono_image_build_metadata): Emit metadata only for the
4375         current module. Emit the manifest only for the main module.
4376
4377         * reflection.c (mono_image_create_token): Add assertion when a 
4378         memberref needs to be created.
4379
4380         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
4381
4382         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
4383         larger buffer for the custom attribute blob. Fixes #50637.
4384         
4385 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4386
4387         * threadpool.c: notify listener on async processing handles after
4388         invoking the async callback. Thanks to Zoltan.
4389
4390 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4391
4392         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
4393         avoid code duplication.
4394
4395         * reflection.h (MonoDynamicImage): New type which is currently unused,
4396         but will be used through the ref.emit code in place of 
4397         MonoDynamicAssembly.
4398
4399         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4400         object layout.
4401
4402         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
4403         a MonoDynamicImage instead of just a MonoImage.
4404         
4405         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
4406         icalls to ModuleBuilder but keep their semantics, so they will work
4407         with moduleb->assemblyb. This will change later.
4408         
4409 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4410
4411         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
4412         object layout.
4413
4414         * reflection.c (mono_image_build_metadata): Avoid creation of a default
4415         main module, since it is now done by the managed code.
4416
4417 2003-11-03  Martin Baulig  <martin@ximian.com>
4418
4419         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
4420         `ginst->klass' here.
4421         (method_encode_methodspec): Don't use the `ginst->generic_method's
4422         klass if it's a generic instance, use `ginst->klass' in this case.
4423
4424 2003-11-03  Martin Baulig  <martin@ximian.com>
4425
4426         * reflection.c (mono_image_get_generic_method_param_info):
4427         Removed, use mono_image_get_generic_param_info() instead.
4428         (mono_image_get_type_info): Write the GenericParam table before
4429         the Method table.  This is neccessary because in the GenericParam
4430         table, type parameters of the class (ie. '!0' etc.) must come
4431         before the ones from its generic methods (ie. '!!0' etc).
4432
4433 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
4434
4435         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
4436
4437 2003-11-02  Martin Baulig  <martin@ximian.com>
4438
4439         * reflection.c (create_generic_typespec): Take a
4440         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
4441         the generic parameters from it.
4442
4443 2003-11-02  Martin Baulig  <martin@ximian.com>
4444
4445         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
4446         instead of a `MonoClassField *' since we just need the type.
4447         (create_generic_typespec): New static function.  Creates a
4448         TypeSpec token for a generic type declaration.
4449         (mono_image_get_generic_field_token): New static function.
4450         (mono_image_create_token): If we're a FieldBuilder in a generic
4451         type declaration, call mono_image_get_generic_field_token() to get
4452         the token.
4453
4454 2003-11-02  Martin Baulig  <martin@ximian.com>
4455
4456         * reflection.h
4457         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
4458         `MonoReflectionGenericInst *declaring_type' and
4459         `MonoReflectionGenericInst *reflected_type' fields.
4460
4461         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
4462         `MonoReflectionGenericInst *declaring_type' and a
4463         `MonoReflectionGenericInst *reflected_type' argument instead of a
4464         single `MonoReflectionGenericInst *type' one.  Set
4465         `res->declaring_type' and `res->reflected_type' from them.
4466         (mono_reflection_inflate_field): Likewise.      
4467
4468 2003-11-02  Martin Baulig  <martin@ximian.com>
4469
4470         * class.c (mono_class_setup_vtable): Don't store generic methods
4471         in the vtable.  
4472
4473 2003-11-02  Martin Baulig  <martin@ximian.com>
4474
4475         * reflection.h (MonoReflectionGenericInst): Added
4476         `MonoReflectionType *declaring_type'.
4477
4478         * reflection.c (mono_reflection_bind_generic_parameters): Use
4479         `if (tb->parent)' instead of `klass->parent'.
4480
4481 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
4482
4483         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
4484         with an empty ASSEMBLY table.
4485
4486         * reflection.c (mono_image_build_metadata): Avoid using the same loop
4487         variable in the inner and outer loops.
4488
4489 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
4490
4491         * metadata.h (mono_metadata_make_token): Put parentheses around macro
4492         argument.
4493
4494         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
4495         
4496         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
4497         icalls. Instead, do everything in managed code. This is needed since
4498         it is hard to restore the original domain etc. in unmanaged code in the
4499         presence of undeniable exceptions.
4500
4501         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
4502         New icalls to push and pop appdomain refs.
4503
4504 2003-10-31  Martin Baulig  <martin@ximian.com>
4505
4506         * class.c (inflate_generic_type): Renamed to
4507         mono_class_inflate_generic_type() and made it public.
4508
4509         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
4510         New interncall.
4511
4512         * loader.c (mono_field_from_memberref): Also set the retklass for
4513         typespecs.
4514
4515         * fielder.c (mono_image_get_inflated_field_token): New static
4516         method; creates a metadata token for an inflated field.
4517         (mono_image_create_token, fixup_method): Added support for
4518         "MonoInflatedField".
4519         (fieldbuilder_to_mono_class_field): New static function.
4520         (mono_reflection_inflate_field): New public function.
4521
4522         * reflection.h
4523         (MonoReflectionGenericInst): Added `MonoArray *fields'.
4524         (MonoReflectionInflatedField): New typedef.     
4525
4526 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
4527
4528         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
4529         for Solaris and other platforms without s6_addr16
4530
4531 2003-10-30  Martin Baulig  <martin@ximian.com>
4532
4533         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
4534         argument instead of two.
4535         (mono_class_inflate_generic_signature): Likewise.
4536         (inflate_generic_header): Likewise.
4537         (mono_class_inflate_generic_method): Likewise.  In addition, if
4538         `ginst->klass' is set, it becomes the new `method->klass'.
4539
4540         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
4541         field.
4542
4543         * reflection.c (encode_generic_method_sig): Write a 0xa as the
4544         first byte. [FIXME]
4545         (method_encode_methodspec): If we have generic parameters, create
4546         a MethodSpec instead of a MethodRef.
4547         (fixup_method): Added support for "MonoInflatedMethod" and
4548         "MonoInflatedCtor".
4549         (mono_image_create_token): Added support for "MonoInflatedMethod"
4550         and "MonoInflatedCtor".
4551         (inflated_method_get_object): New static function; returns a
4552         managed "System.Reflection.MonoInflatedMethod" object.
4553         (mono_reflection_bind_generic_method_parameters): Return a
4554         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
4555         (mono_reflection_inflate_method_or_ctor): Likewise.
4556         (mono_image_get_generic_method_param_info): Initialize unused
4557         fields to zero.
4558         (mono_image_get_generic_param_info): Likewise.
4559
4560         * reflection.h (MonoReflectionInflatedMethod): New public
4561         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
4562         "S.R.MonoInflatedCtor" classes.
4563
4564         * loader.c (method_from_memberref): If we're a TypeSpec and it
4565         resolves to a generic instance, inflate the method.
4566
4567 2003-10-28  Dick Porter  <dick@ximian.com>
4568
4569         * object.c (mono_runtime_run_main): Convert command-line arguments
4570         into utf8, falling back to the user's locale encoding to do so.
4571
4572 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
4573
4574         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
4575         at this time.
4576
4577         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
4578
4579         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
4580         up icalls at method definition time. Partially fixes #33569.
4581
4582 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
4583
4584         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
4585         marshalling of arrays. Fixes #50116.
4586
4587         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
4588
4589         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
4590         points to a vtable in the dying appdomain.
4591
4592         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
4593         listeners into unmanaged code inside the lock.
4594
4595         * object.c (mono_class_vtable): Turn off typed allocation in non-root
4596         domains and add some comments.
4597
4598 2003-10-25  Martin Baulig  <martin@ximian.com>
4599
4600         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
4601
4602         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
4603
4604         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
4605         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
4606         currently parsing.  Create the generic class and store it in
4607         `generic_inst->klass' before parsing the type arguments.  This is
4608         required to support "recursive" definitions; see mcs/tests/gen-23.cs
4609         for an example.
4610         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
4611         to support recursive typespec entries.
4612
4613         * class.c (mono_class_setup_parent): If our parent is a generic
4614         instance, we may get called before it has its name set.
4615         (mono_class_from_generic): Splitted into
4616         mono_class_create_from_generic() and mono_class_initialize_generic().
4617
4618 2003-10-25  Martin Baulig  <martin@ximian.com>
4619
4620         * icall.c (ves_icall_Type_BindGenericParameters): Return a
4621         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
4622         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
4623         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
4624
4625         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
4626         (create_typespec): Likewise.
4627         (mono_reflection_bind_generic_parameters): Return a
4628         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
4629         (mono_reflection_inflate_method_or_ctor): New public function.
4630
4631         * reflection.h (MonoReflectionGenericInst): New typedef.        
4632
4633 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
4634
4635         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
4636         inside the domain lock. Fixes #49993.
4637         
4638         * object.c (mono_class_vtable): When typed allocation is used, 
4639         allocate vtables in the GC heap instead of in the mempool, since the
4640         vtables contain GC descriptors which are used by the collector even
4641         after the domain owning the mempool is unloaded.
4642
4643         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
4644
4645         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
4646         reflect what it does. Also invalidate mempools instead of freeing
4647         them if a define is set.
4648
4649         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
4650         of the appdomain.
4651         
4652         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
4653         hold the finalizable objects in this domain.
4654
4655         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
4656         appdomain.
4657
4658         * appdomain.c (mono_domain_set): New function to set the current
4659         appdomain, but only if it is not being unloaded.
4660
4661         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
4662         appdomain which is being unloaded.
4663         
4664         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
4665         unloading of the root appdomain.
4666
4667         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
4668         icall to execute a method in another appdomain. Intended as a 
4669         replacement for InternalSetDomain, which can confuse the code 
4670         generation in the JIT.
4671
4672         * appdomain.c (mono_domain_is_unloading): New function to determine
4673         whenever an appdomain is unloading.
4674
4675         * appdomain.c (mono_domain_unload): New function to correctly unload
4676         an appdomain.
4677
4678         * assembly.c (mono_assembly_load_references): Check that an assembly
4679         does not references itself.
4680
4681         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
4682         domain manually, it asks the finalizer thread to do it, then waits for
4683         the result. Also added a timeout.
4684
4685         * icall.c: Register the new icalls.
4686
4687         * threads.h threads.c: Export the mono_gc_stop_world and 
4688         mono_gc_start_world functions.
4689         
4690         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
4691         function to fill out the mempool with 0x2a.
4692
4693 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
4694
4695         * reflection.h (MonoReflectionMethodAux): New structure to store
4696         information which is rarely used, thus is not in the MonoMethod
4697         structure.
4698
4699         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
4700         store the aux info.
4701
4702         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
4703         and marshalling info into the aux structure.
4704
4705         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
4706         from the aux structure.
4707
4708         * loader.c (mono_method_get_param_names): Retrieve the param names from
4709         the aux structure.
4710         
4711 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
4712
4713         * exception.h exception.c: Add AppDomainUnloadedException && fix 
4714         warning.
4715
4716 2003-10-21  Dick Porter  <dick@ximian.com>
4717
4718         * socket-io.c
4719         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
4720         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
4721
4722 2003-10-21  Martin Baulig  <martin@ximian.com>
4723
4724         * reflection.c (mono_reflection_bind_generic_parameters):
4725         `klass->parent' is NULL for interfaces.
4726
4727 2003-10-21  Martin Baulig  <martin@ximian.com>
4728
4729         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
4730
4731 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
4732
4733         * exception.c (mono_exception_from_name_msg): New helper function for
4734         creating exceptions and initializing their message field.
4735
4736         * exception.c: Simplify functions using the new helper.
4737
4738         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
4739         New function.
4740
4741         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
4742         mono_raise_exception, since otherwise gcc doesn't generate the function
4743         epilog for raise_exception, confusing the stack unwinding in the JIT.
4744         Fixes #45043.
4745
4746         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
4747         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
4748         Fixes #49499.
4749
4750 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4751
4752         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
4753         utf8.
4754
4755 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
4756
4757         * icall.c: Removed GetUninitializedObject method because
4758           AllocateUninitializedClassInstance does the same.
4759
4760 2003-10-18  Martin Baulig  <martin@ximian.com>
4761
4762         * class.c (inflate_generic_signature): Renamed to
4763         mono_class_inflate_generic_signature() and made it public.
4764         (my_mono_class_from_generic_parameter): New static function; if we
4765         don't already have the generic parameter's MonoClass, create a
4766         very simple one which is just used internally in the runtime and
4767         not passed back to managed code.
4768
4769         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
4770
4771         * metadata.h (MonoMethodSignature): Moved the
4772         `MonoGenericParam *gen_params' to the MonoMethodHeader.
4773         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
4774
4775         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
4776         ves_icall_MonoMethod_GetGenericArguments(); this is now an
4777         interncall on the MonoMethod class, not on MethodInfo.
4778         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
4779         calling mono_reflection_bind_generic_method_parameters() directly.
4780
4781         * loader.c (mono_method_get_signature): If this is a MethodSpec;
4782         return the already computed `method->signature'.
4783         (method_from_methodspec): New static function to load a method
4784         from a MethodSpec entry.
4785         (mono_get_method_from_token): Call the new method_from_methodspec()
4786         for MethodSpec tokens.  
4787         (mono_get_method_from_token): If we're a generic method, load the
4788         type parameters.
4789
4790         * reflection.c (mono_image_get_memberref_token): Allow
4791         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
4792         table.
4793         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
4794         (mono_image_create_token): First check whether it's a generic
4795         method (so we'd need to create a MethodSpec), then do the other
4796         two alternatives.
4797         (mono_reflection_bind_generic_method_parameters): Return a
4798         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
4799         called directly from the interncall.
4800
4801 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
4802
4803         * reflection.c (load_public_key): Move loading of the public key
4804         into managed code.
4805
4806         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
4807
4808         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
4809         fields.
4810
4811         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
4812         culture, hash_alg and public_key. Fixes #49555.
4813
4814 2003-10-17  Martin Baulig  <martin@ximian.com>
4815
4816         * class.h (MonoGenericInst): Moved this declaration here and added
4817         `MonoMethod *generic_method'.
4818
4819         * icall.c
4820         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
4821         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
4822
4823         * metadata.c (mono_metadata_type_equal): Two types of
4824         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
4825         index; ie. don't compare the address of the `MonoGenericParam'
4826         structure.
4827         (mono_metadata_load_generic_params): Removed the `MonoMethod
4828         *method' argument.
4829
4830         * metadata.h (MonoGenericInst): Moved declaration to class.h.
4831         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
4832
4833         * reflection.c (method_encode_signature): Encode the number of
4834         generic parameters.
4835         (encode_generic_method_sig): New static function.
4836         (method_encode_methodspec): New static function; creates an entry
4837         in the MethodSpec table for a generic method.
4838         (mono_image_get_methodspec_token): New static function.
4839         (mono_image_create_token): Call mono_image_get_methodspec_token()
4840         for generic methods.
4841         (mono_reflection_bind_generic_method_parameters): New public
4842         function.  Instantiates a generic method.
4843
4844 2003-10-16  Martin Baulig  <martin@ximian.com>
4845
4846         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
4847         *gen_params' here from MonoMethodHeader.
4848
4849         * metadata.c (mono_metadata_parse_method_signature): If we have
4850         generic parameters, initialize `method->gen_params' and then set
4851         the correct `type->data.generic_param' in all the parameters.
4852
4853 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
4854
4855         * threads.c (mono_threads_get_default_stacksize): New function to 
4856         return the default stacksize.
4857
4858         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
4859         termination of the finalizer thread, since the previous method had
4860         race conditions. Fixes #49628.
4861
4862         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
4863         as for the other managed threads.
4864
4865 2003-10-16  Martin Baulig  <martin@ximian.com>
4866
4867         * class.c (inflate_generic_signature): Copy `generic_param_count'
4868         and `gen_params'.
4869
4870         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
4871         New interncall.
4872
4873         * metadata.c (mono_metadata_parse_method_signature): Actually set
4874         the `method->generic_param_count' here.
4875         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
4876
4877 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
4878
4879         * object.h: Add a new field to TypedRef to simplify the implementation
4880         of the REFANY opcodes in the JIT.
4881
4882         * icall.c: Make use of the new field.
4883
4884         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
4885         dynamically.
4886
4887 2003-10-15  Martin Baulig  <martin@ximian.com>
4888
4889         * class.c (mono_class_from_gen_param): Renamed to
4890         mono_class_from_generic_parameter() and moved most of the
4891         functionality from mono_reflection_define_generic_parameter()
4892         here; ie. we create a "real" class here.
4893         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
4894         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
4895         previously been called.
4896
4897         * class.h (MonoGenericParam): Moved the declaration of this struct
4898         here from metadata.h and added `MonoMethod *method'.
4899
4900         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
4901         interncall.
4902
4903         * loader.c (mono_get_method_from_token): If we have any generic
4904         parameters, call mono_metadata_load_generic_params() to read them
4905         from the MONO_TABLE_GENERICPAR.
4906
4907         * metadata.c (mono_metadata_load_generic_params): Added
4908         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
4909
4910         * metadata.h (MonoMethodSignature): Replaced
4911         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
4912         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
4913
4914         * reflection.c (mono_reflection_define_generic_parameter): Moved
4915         most of the functionality into the new
4916         mono_class_from_generic_parameter(); set the `method' field if
4917         we're a method parameter.       
4918
4919 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
4920
4921         * marshal.c (emit_struct_conv): if native size is 0
4922         emit no code.
4923
4924 2003-10-14  Martin Baulig  <martin@ximian.com>
4925
4926         * icall.c: The generics API has changed in the spec since it was
4927         added to System.Type; these modifications make it match the spec
4928         again.
4929         (ves_icall_Type_GetGenericParameters): Renamed to
4930         `ves_icall_Type_GetGenericArguments'.
4931         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
4932         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
4933         `ves_icall_MonoType_get_HasGenericArguments'.
4934         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
4935         `ves_icall_MonoType_get_IsGenericParameter'.
4936         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
4937         this is no interncall anymore.
4938         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
4939         `ves_icall_TypeBuilder_get_IsGenericParameter'.
4940
4941 2003-10-14  Martin Baulig  <martin@ximian.com>
4942
4943         * reflection.c (mono_reflection_bind_generic_parameters): Also
4944         inflate generic methods if we're reading the class from IL.
4945
4946 2003-10-13  Martin Baulig  <martin@ximian.com>
4947
4948         * reflection.c (mono_reflection_define_generic_parameter): This
4949         method isn't called directly from the icall anymore; take a
4950         `MonoReflectionAssemblyBuilder *' so we can use this for type and
4951         method generic parameters.
4952         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
4953         (method_builder_encode_signature): Encode generic parameters.
4954         (mono_image_get_method_info): Write generic params to the
4955         MONO_TABLE_GENERICPARAM table.
4956
4957         * reflection.h (MonoReflectionMethodBuilder): Added
4958         `MonoArray *generic_params'.
4959
4960         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
4961
4962         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
4963         wrapper for mono_reflection_define_generic_parameter().
4964         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
4965
4966 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
4967
4968         * marshal.h: Add missing function to fix build.
4969
4970         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
4971         the SetLastError pinvoke attribute.
4972
4973         * marshal.c (mono_marshal_set_last_error): New helper function called
4974         by the generated code.
4975         
4976         * marshal.c (mono_mb_emit_branch): New helper function.
4977
4978         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
4979
4980         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
4981         classes as parameters and return values of delegates. Fixes #29256. 
4982
4983 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
4984
4985         * locales.c: use gint32 in non HAVE_ICU case
4986
4987 2003-10-11  Martin Baulig  <martin@ximian.com>
4988
4989         * mono-debug.c (mono_debug_add_method): Added a workaround for
4990         bug #48591.
4991
4992 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
4993
4994         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
4995         delegates passed to native code must use the STDCALL calling 
4996         convention. Fixes #35987.
4997
4998 2003-10-10  Martin Baulig  <martin@ximian.com>
4999
5000         * class.c (inflate_generic_type): If we're inflating for a generic
5001         type instance (and not for a generic method), return
5002         MONO_TYPE_MVAR unchanged.
5003
5004 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5005
5006         * string-icalls.c: Join ignores null strings in the source array.
5007         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
5008         * threads.c: GetAvailableTheads is slightly more accurate.
5009
5010 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
5011
5012         * threads.h threads.c : add mono_threads_set_default_stacksize
5013         and pass default to CreateThread calls.
5014
5015 2003-10-09  Dick Porter  <dick@ximian.com>
5016
5017         * icall.c:
5018         * locales.h:
5019         * locales.c: Internal calls for constructing CultureInfo and
5020         related objects from libicu (if its available.)
5021
5022 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
5023
5024         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
5025
5026 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5027
5028         * threadpool.c: added an argument to async_invoke_thread that is the
5029         item to process, pass the MonoAsyncResult to the thread start function
5030         when creating a new thread. This way we don't need to acquire any lock
5031         when we're creating a new thread. Readded a semaphore for faster
5032         response times (instead of that Sleep i added).
5033
5034 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
5035
5036         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
5037         get daylight change dates better on Windows, fix handling
5038         of platforms without tm_gmtoff.
5039
5040 2003-10-06  Martin Baulig  <martin@ximian.com>
5041
5042         * class.c (inflate_generic_method): Renamed to
5043         mono_class_inflate_generic_method() and made public.
5044         (mono_class_init): Don't inflate the generic methods here.
5045         (mono_class_from_generic): Added `gboolean inflate_methods'
5046         argument.  Inflate the methods here.
5047
5048         * loader.c (mono_method_get_param_names): Ignore instances of
5049         generic types for the moment.
5050
5051         * reflection.c (fixup_method): Added support for inflated methods.
5052         (mono_image_create_token): Use mono_image_get_methodref_token()
5053         for inflated methods.
5054         (mono_custom_attrs_from_param): Ignore instances of generic types
5055         for the moment.
5056         (mono_reflection_bind_generic_parameters): New public function.
5057         Moved all the functionality from
5058         ves_icall_Type_BindGenericParameters() here and added support for
5059         dynamic types.
5060         (mono_reflection_define_generic_parameter): Initialize
5061         `klass->methods' here.
5062
5063         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
5064         functionality into mono_reflection_define_generic_parameter().
5065         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
5066         TypeBuilder, return that TypeBuilder.
5067
5068 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5069
5070         * appdomain.c: removed mono_delegate_semaphore.
5071
5072         * threadpool.c:
5073         (mono_thread_pool_add): moved hash table creation inside and the thread 
5074         creation outside of the critical region.
5075         (mono_thread_pool_finish): removed obsolete code.
5076         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
5077         continue or exit the thread depending on the queue.
5078
5079 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
5080
5081         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
5082         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
5083         handle more bool marshalling options
5084
5085 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
5086
5087         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
5088         arrays of structs. Also add a more descriptive error message when
5089         a structure member is marshalled as LPArray.
5090
5091 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
5092
5093         * marshal.c (mono_marshal_get_native_wrapper): Add support for
5094         marshalling arrays of complex types. Fixes #29098. Also remove an
5095         usused and incomplete function.
5096
5097 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5098
5099         * gc.c: report heap_size - free_bytes as total memory allocated
5100         (bug#49362).
5101
5102 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
5103
5104         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
5105         fix timezone handling problems on Windows.
5106         
5107         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
5108         asserts when the year is outside the range handled by ms the functions.
5109
5110         * class.c (setup_interface_offsets): If the class is an interface,
5111         fill out its interface_offsets slot.
5112
5113 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5114
5115         * threadpool.c: mark threadpool threads as background.
5116
5117 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
5118
5119         * decimal.c - define DECINLINE to nothing if not using GCC
5120
5121 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
5122
5123         * assembly.c: More refcount fixes.
5124
5125 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5126
5127         * string-icalls.c: if we're not trimming, return the same string.
5128         When not splitting, don't create a new string.
5129
5130 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5131
5132         * image.c:
5133         (mono_image_open): increment the ref_count inside the critical section.
5134
5135 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
5136
5137         * image.c (mono_image_open): Fix reference counting bug.
5138
5139 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
5140
5141         * marshal.c (mono_marshal_type_size) struct alignment changed for 
5142         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
5143         64bits. Avoid leak in mono_marshal_get_native_wrapper when
5144         mono_lookup_pinvoke_call throws.        
5145
5146 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
5147
5148         * reflection.c (mono_reflection_parse_type): Fix #49114.
5149
5150         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
5151         temporary workaround for cygwin header problem.
5152
5153         * object.c (mono_object_isinst): Synchronize this with the code
5154         generated by the JIT for casts.
5155
5156 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
5157
5158         * reflection.c (encode_type): Fix #38332.
5159
5160 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
5161
5162         * marshal.c (mono_marshal_method_from_wrapper): New function to return
5163         the original method from the wrapper method.
5164
5165 2003-09-25  Martin Baulig  <martin@ximian.com>
5166
5167         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
5168         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
5169         (ves_icall_Type_get_IsGenericInstance): New interncall.
5170
5171 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
5172
5173         * object.c: fix cast warning in big endian code.
5174
5175 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
5176
5177         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
5178         
5179 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5180
5181         * assembly.c: don't call check_env from mono_assembly_load. It's
5182         already done once in mono_assemblies_init and may cause headaches when
5183         multiple threads are loading assemblies.
5184
5185 2003-09-19  Martin Baulig  <martin@ximian.com>
5186
5187         * reflection.c (mono_reflection_define_generic_parameter): Don't
5188         allocate `klass->methods', set `klass->flags' to
5189         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
5190
5191 2003-09-18  Martin Baulig  <martin@ximian.com>
5192
5193         * class.c (mono_class_init): Don't create `class->methods' if it's
5194         already initialized.
5195
5196         * metadata.c (mono_metadata_load_generic_params): Make this
5197         actually work.
5198
5199         * reflection.c (mono_reflection_define_generic_parameter): Set
5200         parent class and interfaces from the constraints.
5201
5202         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
5203         to keep this struct in sync with the declaration in TypeBuilder.cs.
5204
5205 2003-09-17  Martin Baulig  <martin@ximian.com>
5206
5207         * metadata.h (MonoType): Replaced the data's `int type_param'
5208         field with `MonoGenericParam *generic_param'.
5209         (MonoGenericParam): Added `MonoClass *klass'.
5210
5211         * class.c (mono_class_from_gen_param): Removed the
5212         `MonoImage *image' and `int type_num' arguments.
5213
5214         * metadata.c (mono_metadata_parse_generic_param): New static
5215         method; creates a MonoGenericParam which just contains the index.
5216         (do_mono_metadata_parse_type): Call
5217         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
5218         MONO_TYPE_MVAR.
5219
5220         * reflection.c (mono_image_typedef_or_ref): Generic type
5221         parameters may be in the same assembly, but never use a typedef
5222         for them.
5223         (mono_reflection_define_generic_parameter): We're now creating a
5224         "real" class for the type parameter; it's now safe to call
5225         mono_class_from_mono_type() on the class'es type, it'll do the
5226         right thing.
5227
5228 2003-09-16  Martin Baulig  <martin@ximian.com>
5229
5230         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
5231         `symfile->range_entry_size' and `symfile->class_entry_size' here;
5232         the `symfile' data structure must be fully initialized before it
5233         gets added to the table.
5234
5235 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
5236
5237         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
5238
5239         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
5240         class init trampolines.
5241
5242 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
5243
5244         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
5245         to the built-in profiler to turn off time and allocation profiling
5246         respectively.
5247
5248 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
5249
5250         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
5251         g_direct_equal.
5252
5253         * debug-helpers.c (mono_method_full_name): Print the wrapper type
5254         in human readable form.
5255
5256 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
5257
5258         * reflection.c icall.c: Fixed warnings.
5259
5260         * image.c (load_class_names): Use a temporary hash table to hold the
5261         namespaces in order to avoid doing many string comparisons.
5262
5263         * image.h: Fix typo.
5264
5265         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
5266         Pass NULL instead of g_direct_equal to the GHashTable constructor 
5267         since the NULL case is short-circuited inside g_hash_table_lookup, 
5268         leading to better performance.  
5269
5270         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
5271         obtain the first custom attribute for a given index. Depends on the
5272         CustomAttribute table being sorted by the parent field.
5273
5274         * reflection.c (mono_custom_attrs_from_index): Use the new function 
5275         for better performance.
5276
5277 2003-09-07  Martin Baulig  <martin@ximian.com>
5278
5279         * class.c (mono_class_init): If we're a generic instance, inflate
5280         all our methods instead of loading them from the image.
5281         (mono_class_from_generic): Set `class->methods = gklass->methods'.
5282
5283 2003-09-07  Martin Baulig  <martin@ximian.com>
5284
5285         * mono-debug-debugger.c: Added support for constructors.
5286
5287 2003-09-06  Martin Baulig  <martin@ximian.com>
5288
5289         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
5290         New interncall.
5291
5292         * reflection.c (mono_reflection_setup_generic_class): Call
5293         ensure_runtime_vtable() to create the vtable.
5294
5295 2003-09-05  Martin Baulig  <martin@ximian.com>
5296
5297         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
5298         MONO_TYPE_MVAR.
5299
5300 2003-09-04  Martin Baulig  <martin@ximian.com>
5301
5302         * reflection.c (mono_reflection_define_generic_parameter): Generic
5303         parameters start with zero.
5304
5305 2003-09-04  Martin Baulig  <martin@ximian.com>
5306
5307         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
5308
5309         * reflection.h (MonoReflectionGenericParam): New typedef.
5310         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
5311         the generic parameters from the managed TypeBuilder.
5312
5313         * reflection.c (mono_reflection_define_generic_parameter): New function.
5314         (mono_reflection_create_runtime_class): Encode generic parameters.
5315         (mono_reflection_setup_generic_class): New function; this is
5316         called after adding adding all generic params to the TypeBuilder.
5317         (encode_type): Added MONO_TYPE_VAR.
5318
5319 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
5320
5321         * class.h class.c (mono_class_needs_cctor_run): Moved this method
5322         here from the JIT.
5323
5324         * assembly.h assembly.c: Moved the AOT loading code into an assembly
5325         load hook.
5326
5327 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
5328
5329         * reflection.h reflection.c class.h class.c: Delete duplicate 
5330         definition of mono_type_get_name () from reflection.c and export the
5331         one in class.c.
5332
5333         * class.c: Class loading fixes from Bernie Solomon 
5334         (bernard@ugsolutions.com).
5335
5336         * reflection.c: Endianness fixes from Bernie Solomon 
5337         (bernard@ugsolutions.com).
5338         
5339 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
5340
5341         * assembly.h assembly.c: Define a file format version for AOT
5342         libraries.
5343         
5344         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
5345
5346         * appdomain.h (MonoJitInfo): New field to determine whenever the
5347         code is domain neutral.
5348         
5349 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
5350
5351         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
5352
5353 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
5354
5355         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
5356         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
5357         Avoid caching the result since strings must be domain specific. Fixes
5358         #48050.
5359
5360 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
5361
5362         * marshal.c (mono_marshal_init): Make this callable multiple times
5363         since it is hard to find a correct place to call it.
5364
5365         * object.c (mono_runtime_class_init): Execute static constructors in
5366         the correct appdomain.
5367
5368         * image.c (build_guid_table): Handle the case when multiple images have
5369         the same GUID.
5370
5371 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5372
5373         * icall.c: added a couple of icalls for System.Web.
5374
5375 2003-08-28  Martin Baulig  <martin@ximian.com>
5376
5377         * icall.c (ves_icall_Type_BindGenericParameters): Use
5378         `klass->generic_inst' instead of `&klass->byval_arg' in the
5379         mono_type_get_object() call.  The returned type must be
5380         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
5381
5382 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
5383
5384         * NOTES: New file.
5385
5386         * object.c (mono_class_proxy_vtable): Make it thread safe.
5387
5388         * pedump.c: Fix warning.
5389
5390         * object.c appdomain.h: Get rid of metadata_section. 
5391         It is no longer needed and it was causing deadlocks with domain->lock.
5392
5393         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
5394
5395 2003-08-26  Martin Baulig  <martin@ximian.com>
5396
5397         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
5398
5399 2003-08-26  Martin Baulig  <martin@ximian.com>
5400
5401         * pedump.c (main): Call mono_metadata_init(),
5402         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
5403         and mono_loader_init().
5404
5405 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
5406
5407         * loader.h: Add missing include to fix build.
5408
5409         * image.h: mono_image_load_references is no more.
5410
5411         * assembly.c: Reworked assembly loading to make it really thread safe.
5412         After these changes, the assembly returned by mono_assembly_open is
5413         fully initialized, i.e. all its references assemblies are loaded.
5414
5415         * assembly.c (mono_image_load_references): Renamed to 
5416         mono_assembly_load_references, and made private, since clients no
5417         longer need to call it.
5418
5419         * class.c: Removed calls to mono_assembly_load_references, since it was
5420         a source of deadlocks.
5421
5422         * loader.h loader.c class.h class.c: Protect data structures using a 
5423         new lock, the loader lock.
5424
5425         * class.c (mono_class_setup_vtable): Create temporary hash tables and
5426         GPtrArrays only when needed.
5427
5428         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
5429         into empty structures by mcs. Fixes pinvoke7.cs.
5430         
5431         * domain.c (mono_init): Call a new initialization function.
5432
5433         * appdomain.c (mono_runtime_init): Call the new initializer function
5434         of the marshal module.
5435
5436         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
5437         inserted into empty structures by mcs. Fixes pinvoke7.cs.
5438
5439         * marshal.h marshal.c: Added locks around the wrapper caches to make
5440         this module thread safe.
5441
5442         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
5443         this argument. Fixes pinvoke1.exe.
5444
5445 2003-08-25  Lluis Sanchez <lluis@ximian.com>
5446
5447         * object.h: Added call_type field to MonoMethodMessage and the corresponding
5448         enumeration of values. Removed fields to store remote call output values in
5449         MonoAsyncResult. Not needed any more.
5450         * object.c: Initialize call_type and async_result fields in mono_message_init.
5451         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
5452         dispatching the message.
5453         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
5454         async call to finish. To do it use a message with EndInvoke call type.
5455
5456 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
5457
5458         * loader.h loader.c (mono_method_hash_marhal_info): New function which
5459         determines whenever a method has marshalling info.
5460
5461 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5462
5463         * assembly.c: fix the build on windows.
5464
5465 2003-08-22 Lluis Sanchez <lluis@ximian.com>
5466
5467         * object.cs: Fixed bug #47785.
5468
5469 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
5470
5471         * string-icalls.c (StringReplace): If their are no occurances of
5472         the old string found return a reference to the supplied
5473         string. This saves some memory and matches MS behavoir.
5474         
5475 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5476
5477         * socket-io.c: fixed compilation for systems that define AF_INET6
5478         and don't define SOL_IP/SOL_IPV6.
5479
5480 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
5481
5482         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
5483         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
5484
5485         * rawbuffer.c rawbuffer.h: Make this module thread safe.
5486
5487         * domain.c: Make this module thread safe.
5488
5489         * domain.c (mono_init): Call new initialization function.
5490
5491         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
5492         reference types too. Fixes #38812.
5493
5494         * image.c (mono_image_init): Fixed warnings.
5495
5496         * class.c (mono_class_from_typeref): Handle assembly load failure
5497         correctly.
5498
5499         * appdomain.c (add_assemblies_to_domain): Handle the case when
5500         the references of an assembly are not yet loaded.
5501
5502         * metadata.c image.c assembly.c: Moved initialization of global
5503         variables to a separate function called at startup since lazy 
5504         initialization of these variables is not thread safe.
5505         
5506         * image.c assembly.c: Made this module thread safe by adding locks in 
5507         the appropriate places.
5508
5509         * domain.c (mono_init): Call the new initialization functions of the
5510         three modules.
5511
5512 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
5513
5514         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
5515           make a direct call. It is proxy's work to make the call asynchronous.
5516           mono_delegate_end_invoke(): If the targe is a proxy, just collect
5517           the return values.
5518         * object.cs: mono_method_call_message_new(): read AsyncResult and
5519           state object from parameters list, if this info is requested.
5520         * object.h: Added fields to store remote call output values in
5521           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
5522
5523 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5524
5525         * object.h: add needed fields to MonoThread.
5526         * threads.c, threads.h: allow registering a function to cleanup data
5527         allocated per thread by the JIT.
5528
5529 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5530
5531         * loader.h: portability fix by Bernie Solomon
5532         * <bernard@ugsolutions.com>.
5533
5534 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
5535
5536         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
5537         return a MonoArray. This simplifies the code and also ensures that
5538         the cache allways contains an object reference as a value.
5539
5540         * icall.c (ves_icall_get_parameter_info): Simplified using the new
5541         function.
5542
5543 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5544
5545         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
5546         fixes a problem with byte ordering when getting the address family for
5547         a socket.
5548
5549 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
5550
5551         * .cvsignore: Added monosn.
5552
5553         * reflection.h reflection.c loader.c: Added support for parameter
5554         marshalling to dynamically created types. Fixes #47295.
5555
5556 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
5557
5558         * rand.c: remove useless warnings.
5559
5560 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5561
5562         * class.c: implemented ldtoken for methods and fieldrefs.
5563
5564 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5565
5566         * threadpool.c: when mono_async_invoke was called, no one took care of
5567         monitoring the queue. So if the method invoked took some time and we
5568         got new async invoke requests after 500 ms (the thread created waited
5569         that long in WaitForSingleObject), the new async invoke was not called
5570         until the previous one finished.
5571
5572         This is fixed now. Thanks to Totte for helping with it.
5573
5574 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5575
5576         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
5577
5578 2003-08-11  Martin Baulig  <martin@ximian.com>
5579
5580         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
5581
5582 2003-08-06  Martin Baulig  <martin@ximian.com>
5583
5584         * mono-debug-debugger.c: Added support for static fields,
5585         properties and methods.
5586
5587 2003-08-06  Martin Baulig  <martin@ximian.com>
5588
5589         * mono-debug-debugger.c: Don't store the MonoString's vtable to
5590         make this work for applications with multiple application domains.
5591
5592 2003-08-04  Martin Baulig  <martin@ximian.com>
5593
5594         * mono-debug-debugger.c: Completely reworked the type support; the
5595         most important thing is that we're now just using one single
5596         `MonoType' instance per type.
5597
5598 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
5599
5600         * mono-endian.h, mono-endian.c, icall.c: Added icall
5601         ves_icall_System_Double_AssertEndianity to assert double word endianity
5602         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
5603
5604 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5605
5606         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
5607         support, icalls and fixes.
5608
5609 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
5610
5611         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
5612         classes that are a punctuation character in .NET is not the same a
5613         g_unichar_ispunct.
5614
5615 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
5616
5617         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
5618
5619 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
5620
5621         * icall.c: Add new MemCopy internalcall.
5622         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
5623         Simplified code; It is not necessary to handle all the cases here,
5624         as the C# code takes care of it.  Only handle the case of the name
5625         resource embedded into the assembly.
5626
5627         Changed signature to return the data pointer and the size of the
5628         data. 
5629
5630 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
5631
5632         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
5633         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
5634
5635 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5636
5637         * socket-io.c: ignore EINTR error in select.
5638
5639 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
5640
5641         * class.h, class.c: removed unused subclasses field in MonoClass.
5642
5643 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
5644
5645         * icall.c: improve fix of get_base_definition(). If the parent class
5646           doesn't have the mehod, look at the parent of the parent.
5647         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
5648           to check if a parameter is an in or out parameter
5649           (PARAM_ATTRIBUTE_IN is not set by default).
5650           mono_method_return_message_restore(): Use mono_class_value_size to
5651           get the size of a value type. mono_type_stack_size (parameterType)
5652           does not return the correct value if parameterType is byRef.
5653           mono_load_remote_field(), mono_load_remote_field_new(),
5654           mono_store_remote_field(), mono_store_remote_field_new():
5655           raise exception if the remote call returns an exception.
5656
5657 2003-07-28  Martin Baulig  <martin@ximian.com>
5658
5659         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
5660         method.  This is a wrapper around mono_runtime_invoke() which
5661         boxes the instance object if neccessary.
5662
5663 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5664
5665         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
5666         metadata.h, row-indexes.h, verify.c: first cut of generics support.
5667
5668 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5669
5670         * icall.c: disable mcs bug workaround.
5671
5672 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
5673
5674         * object.c (mono_runtime_class_init): Take the metadata_section
5675         mutex before obtaining the domain mutex.
5676
5677         * appdomain.h: Added definition of metadata_section mutex here. 
5678
5679         * object.c: define metadata_mutex here.
5680
5681 2003-07-24  Ravi Pratap  <ravi@ximian.com>
5682
5683         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
5684         fixed.
5685
5686 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
5687
5688         * reflection.c: Fix bug #46669
5689
5690 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5691
5692         * exception.c:
5693         * exception.h:
5694         * icall.c:
5695         * object.h: fill in the type name for TypeLoadException.
5696
5697 2003-07-23  Ravi Pratap  <ravi@ximian.com>
5698
5699         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
5700         relationship between TypeBuilders while compiling corlib) and bug
5701         45993 (Array types returned from the runtime while compiling
5702         corlib were from the loaded corlib).
5703
5704 2003-07-22  Martin Baulig  <martin@ximian.com>
5705
5706         * mono-debug-debugger.c: Reworked the type support a bit more;
5707         distinguish between types and classes.
5708
5709 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
5710
5711         * icall.c: add IsArrayImpl icall.
5712
5713 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
5714
5715         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
5716         initializing real_size only once. Also fix bug #46602.
5717
5718 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
5719
5720         * object.c: Renamed mono_metadata_section to metadata_section.
5721
5722 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
5723
5724         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
5725           empty array if the type is an array. Fixed.
5726           ves_icall_MonoMethod_get_base_definition: if the base method
5727           is abstract, get the MethodInfo from the list of methods of
5728           the class.
5729         * reflection.c: ParameterInfo.PositionImpl should be zero-based
5730           and it was 1-based. Fixed in mono_param_get_objects.
5731
5732 2003-07-20  Martin Baulig  <martin@ximian.com>
5733
5734         * mono-debug.h: Set version number to 31.
5735         (mono_debug_init): Added `MonoDomain *' argument.
5736
5737         * mono-debug-debugger.c: Reworked the type support; explicitly
5738         tell the debugger about builtin types; pass the `klass' address to
5739         the debugger.
5740
5741 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
5742
5743         * image.c: Allow new metadata tables to be loaded without a
5744         warning. Also update the warning message to give the new constant value.
5745                 
5746 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
5747
5748         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
5749         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
5750         array type representation changes.
5751
5752 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5753
5754         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
5755         on Environment.Exit () call.
5756
5757 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
5758
5759         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
5760         requires a matching corlib.
5761
5762 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5763
5764         * Changelog: My editor decided to add a CR to each line. Sorry about that.
5765           Committed again without the CRs.
5766         
5767 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
5768
5769         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
5770           getting it from the "this" socket instance. Did not work
5771           if the socket is a subclass of Socket.
5772           Also fixed bug #35371.
5773
5774 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5775
5776         * metadata.c: fixed size for TypedByRef.
5777         * loader.c: when searching for a method, consider the vararg amrker.
5778         * unicode.c, decimal.c: constify some arrays.
5779
5780 2003-07-15  Dick Porter  <dick@ximian.com>
5781
5782         * socket-io.c: Fixed compilation for gcc < 3.2.
5783
5784         Fixed compilation for machines that don't have AF_INET6 (thanks to
5785         Bernie Solomon <bernard@ugsolutions.com> for that part.)
5786
5787         Fixed compile warnings.
5788         
5789         Fixed formatting and line endings.
5790
5791 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
5792
5793         * socket-io.h:
5794         * socket-io.c: Added IPv6 support.
5795
5796 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
5797
5798         * class.c (mono_class_is_assignable_from): New function to implement
5799         the is_assignable_from logic. Used by mono_object_isinst, 
5800         Type::IsAssignableFrom () and the interpreter.
5801
5802         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
5803         Object, even interfaces.
5804         
5805         * object.c (mono_object_isinst): Implement in terms of 
5806         is_assignable_from.
5807
5808         * icall.c (ves_icall_type_is_assignable_from): New icall.
5809
5810 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
5811
5812         * domain.c (foreach_domain): fix compiler warning.
5813
5814 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
5815
5816         * image.c (load_metadata_ptrs): use g_strndup because strndup is
5817         not available on all plattforms
5818
5819 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
5820
5821         * image.h image.c: Store the metadata version string in MonoImage.
5822         * icall.c: New icall to retrieve the image version.
5823         * reflection.c (create_dynamic_image): Fill in the image version field
5824         * reflection.c (build_compressed_metadata): Use the image version
5825         from the image structure.
5826
5827 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5828
5829         * appdomain.c: modified comment.
5830         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
5831         That will be its last iteration when mono_gc_cleanup is called from
5832         mono_runtime_cleanup and before the domain is unloaded.
5833
5834         Fixes bug #45962.
5835
5836 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
5837
5838         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
5839         attributes.
5840
5841 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5842
5843         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
5844         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
5845         Bernie Solomon <bernard@ugsolutions.com>.
5846
5847 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
5848
5849         * object.c, object.h: provide mono_object_new_fast() for faster
5850         allocation in some special cases.
5851
5852 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
5853
5854         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
5855         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
5856
5857 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
5858
5859         * threadpool.c: fix leaks.
5860
5861 2003-07-01  Dick Porter  <dick@ximian.com>
5862
5863         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
5864         using MonoGHashTables.  Fixes threadpool bug posted to list.
5865
5866 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
5867
5868         * image.h, image.c: added support to load an assembly from a byte array.
5869         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
5870         assembly bundle support.
5871
5872 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
5873
5874         * threadpool.c (mono_thread_pool_add): keep a reference to the
5875         AsyncResult to prevent GC
5876
5877 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
5878
5879         * class.c: leak fix.
5880
5881 2003-06-25  Dick Porter  <dick@ximian.com>
5882
5883         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
5884         for the async object, the WaitHandle object will close the handle.
5885         Fixes bug 45321.
5886
5887 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
5888
5889         * class.c: in mono_array_class_get (), lookup from the hash with the
5890         same type we insert: this works around a bug in
5891         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
5892         lluis. The real fix will have to wait for after the release.
5893
5894 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
5895
5896         * icall.c: fix memory leak when getting type members.
5897
5898 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5899
5900         * reflection.c: added more pubtoken special cases.
5901
5902 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
5903
5904         * class.c: handle field offset correctly when class size
5905         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
5906
5907 2003-06-20  Martin Baulig  <martin@ximian.com>
5908
5909         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
5910         *image' field.
5911
5912 2003-06-20  Martin Baulig  <martin@ximian.com>
5913
5914         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
5915
5916 2003-06-20  Martin Baulig  <martin@ximian.com>
5917
5918         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
5919         just distinguish between variables in registers and variables at
5920         an offset relative to a register.
5921
5922 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5923
5924         * icall.c: #ifdef out latest changes until mcs is fixed.
5925
5926 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
5927
5928         * icall.c: return members in metadata order.
5929
5930 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
5931
5932         * icall.c: avoid infinite loop in GetTimeZoneData.
5933
5934 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
5935
5936         * icall.c: added Marshal.Prelink/All icalls.
5937
5938 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
5939
5940         * object.c, object.h: fix warnings and do some overflow checking
5941         when creating arrays.
5942
5943 2003-06-17  Dick Porter  <dick@ximian.com>
5944
5945         * file-io.h:
5946         * file-io.c: File attributes need to be tweaked slightly when
5947         passed from the managed to the w32 world.
5948
5949 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5950         * profiler.h profiler-private.h profiler.c: Rework last patch
5951         based on suggestion by Paolo.
5952         
5953 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
5954
5955         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
5956         instruction level coverage data collection.
5957         * profiler.h profiler.c (: Added new callback function which can be
5958         used by the profiler to limit which functions should have coverage
5959         instrumentation.
5960         * profiler.c (mono_profiler_load): Call g_module_build_path to
5961         generate the file name of the profiler library.
5962
5963 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
5964
5965         * profiler.c, profiler.h, profiler-private.h: added basic block 
5966         coverage profiling API.
5967
5968 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
5969
5970         * reflection.c (mono_reflection_create_runtime_class): Add support
5971         for events in dynamically generated code.
5972
5973         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
5974         not allocated.
5975
5976 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
5977
5978         * icall.c: when getting timezone info, return reasonable values if we
5979         can't get the actual data.
5980
5981 2003-06-14  Dick Porter  <dick@ximian.com>
5982
5983         * threads.c (start_wrapper): Remove the reference to the thread
5984         object in the TLS data, so the thread object can be finalized.
5985         This won't be reached if the thread threw an uncaught exception,
5986         so those thread handles will stay referenced :-( (This is due to
5987         missing support for scanning thread-specific data in the Boehm GC
5988         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
5989
5990 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
5991
5992         * reflection.c: ensure streams and tables are first allocated with
5993         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
5994
5995 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
5996
5997         * icall.c: fixed GetElementType for byrefs (bug# 44792).
5998
5999 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
6000
6001         * reflection.c (mono_reflection_create_runtime_class): Add support for
6002         properties to dynamically created classes.
6003         * reflection.c: Fix a few places where non-MonoObjects were inserted
6004         into the tokens hashtable.
6005
6006 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6007
6008         * object.c: some support to handle out of memory exceptions.
6009
6010 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
6011
6012         * marshal.c (mono_marshal_get_native_wrapper): support reference
6013         return types
6014
6015 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6016
6017         * object.h, object.c: more portability stuff from Bernie Solomon.
6018         Unexport mono_object_allocate(). Added mono_object_unbox ().
6019         Set exitcode when an unhandled exception is thrown.
6020
6021 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
6022
6023         * marshal.c (mono_marshal_get_native_wrapper): use custom
6024         marshaler for return types.
6025
6026 2003-06-10  Dick Porter  <dick@ximian.com>
6027
6028         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
6029         ip_mreq is available
6030
6031 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
6032
6033         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
6034         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
6035         by Bernie Solomon <bernard@ugsolutions.com>.
6036
6037 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
6038
6039         * gc.c (mono_gc_init): Avoid error message on shutdown when
6040         GC_DONT_GC=1 is used.
6041
6042         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
6043         New icall to return the GUID of a module.
6044
6045 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
6046
6047         * class.c: ensure instance size always includes the parent's size
6048         even whem class size is set explicitly (fixes bug#44294).
6049
6050 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6051
6052         * profiler.h, profiler.c: made the simple profiler thread-safe,
6053         get more accurate timing info. Allow the loading of an
6054         externally-developed profiler module.
6055
6056 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
6057
6058         * marshal.c (mono_marshal_get_native_wrapper): improved
6059         class/byref arguments.
6060         (mono_marshal_get_native_wrapper): better string marshaling support.
6061
6062 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
6063
6064         * class.c: ensure .pack and .size are handled correctly and
6065         simplified layout of static fields.
6066
6067 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
6068
6069         * appdomain.c
6070         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
6071
6072         * loader.c (mono_lookup_pinvoke_call): look for modules in the
6073         current directory (fix bug 44008)
6074
6075 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
6076
6077         * marshal.c (mono_marshal_get_native_wrapper): started support for
6078         custom marshalers.
6079         (mono_delegate_to_ftnptr): consider marshalling specifications
6080
6081 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
6082
6083         * reflection.c, reflection.h: emit custom marshal info.
6084
6085 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6086
6087         * object.c: free the GError.
6088         * icall.c: added CloseEvent_internal.
6089         * threads.[ch]:
6090         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
6091         call.
6092
6093 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
6094
6095         * loader.c (mono_method_get_signature): Add support for dynamic
6096         assemblies.
6097
6098 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
6099
6100         * reflection.c: fixed bug #43905.
6101
6102 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
6103
6104         * class.c, domain.c, icall.c, metadata.h, object.h: support for
6105         handling TypedReference and ArgIterator.
6106         * loader.c, loader.h: added function to get signature at call site.
6107
6108 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6109
6110         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
6111         data readonly. Buglets and warning fixes. Some MethodSpec support.
6112
6113 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
6114
6115         * class.h, class.c, object.c: remove relative numbering support.
6116
6117 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
6118
6119         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
6120         free the string, until we get a chance to fix Gtk#
6121
6122 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6123
6124         * marshal.c: revert last patch.
6125
6126 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
6127
6128         * icall.c: updates for new mono_class_vtable() not calling
6129         the type constructor anymore.
6130
6131 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6132
6133         * object.h, object.c: separate vtable creation from type
6134         initialization. Make running the .cctor thread safe.
6135
6136 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
6137
6138         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
6139
6140 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
6141
6142         * loader.c (mono_get_method): consider calling convention
6143
6144 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
6145
6146         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
6147         to return the invisible global type for a module.
6148
6149         * reflection.c (mono_image_build_metadata): Emit global fields too.
6150
6151 2003-05-20  Peter Williams  <peterw@ximian.com>
6152
6153         * loader.c (mono_lookup_internal_call): Add a few newlines.
6154
6155 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
6156
6157         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
6158         literal strings.
6159
6160         * appdomain.c (set_domain_search_path): Recalculate search path when
6161         AppDomainSetup.PrivateBinPath changes.
6162
6163         * object.c (mono_class_compute_gc_descriptor): It turns out some
6164         parts of the class libs (like System.Thread) holds pointers to
6165         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
6166         to treat native int a pointer type here.
6167         
6168 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
6169
6170         * appdomain.h, domain.c: add hashtable for jump target resolution.
6171
6172 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
6173
6174         * reflection.h reflection.c icall.c: Added new icalls 
6175         GetManifestResourceInfoInternal, GetModulesInternal and support
6176         infrastructure.
6177
6178 2003-05-16  Dick Porter  <dick@ximian.com>
6179
6180         * icall.c:
6181         * file-io.h:
6182         * file-io.c: Implement System.IO.MonoIO::GetTempPath
6183
6184 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
6185
6186         * object.c: mono_store_remote_field: little fix to previous patch.
6187
6188 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
6189
6190         * class.c: add constructors to array classes.
6191         * icall.c: special case array construction for InternalInvoke (),
6192
6193 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
6194
6195         * class.h class.c reflection.c object.c: Added support for field
6196         defaults in dynamically generated classes.
6197
6198 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
6199
6200         * reflection.c: properly encode charset for ddlimport.
6201
6202 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
6203
6204         * threads.c: allow compiling without GC.
6205
6206 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
6207
6208         * appdomain.h, object.c, object.h, threads.c, threads.h: added
6209         handling of thread static data.
6210
6211 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
6212
6213         * reflection.h, reflection.c: added mono_custom_attrs_free ().
6214
6215 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
6216
6217         * class.c (mono_array_class_get): always set the serializable flags
6218         (mono_array_class_get): always set the SEALED attribute for array types
6219
6220 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
6221
6222         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
6223         attributes (fix for bug 42021).
6224
6225 2003-05-12  Dick Porter  <dick@ximian.com>
6226
6227         * gc.c: Don't run finalizers when the finalizer thread is
6228         finishing up, because the default domain has already been
6229         destroyed.
6230
6231 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
6232
6233         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
6234         value is null, we should throw an exception.   This is slightly
6235         different than the other conventions used for the constructor.
6236
6237 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6238
6239         * socket-io.c: fixed windows build.
6240
6241 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6242
6243         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
6244
6245 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
6246
6247         * object.c (mono_string_new_wrapper): Compatibility fix for MS
6248         compilers.
6249
6250 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
6251
6252         * class.c (mono_class_layout_fields): Add experimental GC aware
6253         auto layout facility. Requires class library changes to work correctly.
6254
6255         (mono_class_setup_vtable): Avoid overriding explicit interface
6256         method implementations. Fixes iface3.exe test.
6257
6258         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
6259         object reference.
6260         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
6261         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
6262
6263         * metadata.h: Add new type classification macro which determines
6264         whenever the type holds an object reference.
6265
6266 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
6267
6268         * marshal.c (mono_marshal_get_native_wrapper): cleanups
6269
6270 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
6271
6272         * gc.c (finalizer_thread): Work around a GC bug.
6273
6274 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
6275
6276         * marshal.c (emit_struct_conv): allow unions
6277
6278         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
6279
6280 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
6281
6282         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
6283
6284 2003-05-06  Martin Baulig  <martin@ximian.com>
6285
6286         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
6287
6288 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6289
6290         * socket-io.c:
6291         (Select_internal): allow NULLs, don't create arrays if not needed.
6292         Coupled with Socket.cs changes.
6293
6294         * threadpool.c:
6295         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
6296         register a finalizer for it that will close the semaphore handle. This
6297         fixes the leak and make Lupus' test run with > 4080 loops.
6298
6299 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
6300
6301         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
6302         Jerome Laban (bug #42287)
6303
6304 2003-05-02  Martin Baulig  <martin@ximian.com>
6305
6306         * debug-mono-symfile.h
6307         (MonoSymbolFile): Moved declaration into mono-debug.h.
6308         (MonoDebugMethodJitInfo): Likewise.
6309         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
6310         argument.
6311         (_mono_debug_address_from_il_offset): Take a
6312         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
6313
6314         * mono-debug.h
6315         (MonoDebugDomainData): New struct.
6316         (mono_debug_get_domain_data): New function.
6317         (mono_debug_add_method): Take an additional `MonoDomain *'
6318         argument.
6319         (mono_debug_source_location_from_address): Likewise.
6320         (mono_debug_il_offset_from_address): Likewise.
6321         (mono_debug_address_from_il_offset): Likewise.
6322
6323 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
6324
6325         * reflection.c: one more check for null type in custom attrs.
6326
6327 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6328
6329         * reflection.c: avoid warning (comparison is always false due to limited
6330         range of data type).
6331
6332 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6333
6334         * icall.c: throw an exception in Type.GetField if the argument 'name'
6335         is NULL.
6336
6337 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
6338
6339         * reflection.c: fixed handling of enums in named arguments to custom
6340         attributes (bug #42123).
6341
6342 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
6343
6344         * reflection.c: use the right array element type and handle
6345         a null for a Type argument, too.
6346
6347 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
6348
6349         * reflection.c: handle arrays as arguments to custom attributes.
6350
6351 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
6352
6353         * reflection.c: handle a string value in a custom attr
6354         ctor that takes an object.
6355
6356 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
6357
6358         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
6359         (fix bug #42063)
6360
6361 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
6362
6363         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
6364
6365 2003-04-27  Martin Baulig  <martin@ximian.com>
6366
6367         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
6368         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
6369         MONO_DEBUGGER_EVENT_BREAKPOINT.
6370         (mono_breakpoint_trampoline_code): Removed.
6371         (mono_debugger_event_handler): The last argument is now a
6372         `guint32'.
6373         (mono_debugger_insert_breakpoint_full): Removed the
6374         `use_trampoline' argument.
6375         (mono_debugger_method_has_breakpoint): Likewise.
6376         (mono_debugger_trampoline_breakpoint_callback): Renamed to
6377         mono_debugger_breakpoint_callback(); take the method and
6378         breakpoint number as arguments.
6379
6380 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
6381
6382         * metadata.c: fix off by one when loading parameters attributes.
6383
6384 2003-04-24  Martin Baulig  <martin@ximian.com>
6385
6386         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
6387
6388 2003-04-24  Martin Baulig  <martin@ximian.com>
6389
6390         * mono-debug-debugger.c: Moved all code which interacts with the
6391         Mono Debugger here.
6392
6393         * debug-mono-symfile.c: This code now just deals with the symbol
6394         file itself, the debugger code is now in mono-debug-debugger.c.
6395
6396 2003-04-23  Martin Baulig  <martin@ximian.com>
6397
6398         * mono-debug.c (mono_debug_source_location_from_il_offset):
6399         New method; like mono_debug_source_location_from_address(), but
6400         takes an IL offset instead of a machine address.
6401
6402 2003-04-23  Martin Baulig  <martin@ximian.com>
6403
6404         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
6405         `line' field; this is now computed by the debugger.
6406
6407 2003-04-23  Martin Baulig  <martin@ximian.com>
6408
6409         * mono-debug.[ch]: New files.  This is the new debugging interface.
6410
6411         * mono-debug-debugger.[ch]: New files.  Moved all code which
6412         interacts with the Mono Debugger here.
6413
6414 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
6415
6416         * domain.c (mono_init): initialize mono_defaults.monitor_class
6417
6418 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
6419
6420         * reflection.c (method_encode_code): Add a spicy exception to help
6421         future compiler authors.
6422
6423 2003-04-21  Martin Baulig  <martin@ximian.com>
6424
6425         * icall.c
6426         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6427         Make this work with relative pathnames; g_filename_to_uri() needs
6428         an absolute filename.
6429
6430 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
6431
6432         * icall.c: Track name changes in Object and ValueType.
6433
6434 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
6435
6436         * metadata.c (mono_type_stack_size): size should be a multiple of
6437         sizeof (gpointer)
6438
6439 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6440
6441         * gc.c:
6442         (internal_domain_finalize): moved into mono_domain_finalize. No need
6443         to create another thread because the finalizers will be run in the
6444         finalizer thread.
6445         
6446         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
6447         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
6448         to be run (MS does this too).
6449
6450 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
6451
6452         * object.c (mono_class_compute_gc_descriptor): Update comment.
6453
6454         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
6455
6456         * image.h: Add synchronized wrapper cache.
6457
6458         * image.c (do_mono_image_open): Initialize cache.
6459
6460         * reflection.c (create_dynamic_mono_image): Initialize cache.
6461
6462 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6463
6464         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
6465         ves_icall_System_Buffer_ByteLengthInternal.
6466
6467 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
6468
6469         * reflection.c: setup klass->nested_in earlier. Allow
6470         a dash in the assembly name.
6471
6472 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
6473
6474         * metadata.c (mono_type_to_unmanaged): dont access
6475         type->data.klass for MONO_TYPE_OBJECT
6476         (mono_type_to_unmanaged): consider System.Delegate class
6477
6478 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
6479
6480         * class.c: just setup supertypes in the proper place instead of
6481         initializing the full element class for arrays.
6482
6483 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
6484
6485         * class.c: ensure the element class of arrays is initialized.
6486         Setup the supertype info for array classes, too.
6487
6488 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
6489
6490         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
6491
6492 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6493
6494         * Makefile.am: re-added -m option when running cygpath. This way,
6495         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
6496         separator.
6497         * mono-config.c: same codepath for locating mono config file for WIN32
6498         and the rest.
6499         * assembly.c: if mono_assembly_setrootdir is called, don't override
6500         the value set.
6501
6502 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6503
6504         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
6505         MONO_ASSEMBLIES variable.
6506
6507 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
6508
6509         * icall.c: added Assembly::GetNamespaces() icall.
6510
6511 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6512
6513         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
6514
6515 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
6516
6517         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
6518         * object.c: fixed bug in the construction of vtable for proxies
6519
6520 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
6521
6522         * object.c (mono_array_new): Mark mono_array_new as an icall.
6523
6524 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6525
6526         * class.c: fixed test for public method when overriding interfaces.
6527         Closes bug #40970.
6528
6529 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
6530
6531         * appdomain.h, domain.c: added mono_domain_foreach() to
6532         be able to access the currently loaded appdomains.
6533         * object.c: make string interning work across sppdomains.
6534         Mark some functions for use as icalls.
6535
6536 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
6537
6538         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
6539
6540         * reflection.h reflection.c: Allocate long living data using 
6541         GC_MALLOC_ATOMIC so the collector does not need to scan it.
6542
6543         * reflection.c: Double the allocation size in streams instead of
6544         increasing it, to prevent unneccesary copying on large assemblies.
6545         
6546         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
6547         creation if the assembly does not have the Run flag set.
6548
6549 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
6550
6551         * class.h: avoid the C++ keywords in header files (Jerome Laban
6552         spotted and fixed this).
6553
6554 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6555
6556         * object.c:
6557         (mono_unhandled_exception): fill in the arguments for the
6558         UnhandledException event. Only trigger that event for the default
6559         domain (as MS does).
6560
6561 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
6562
6563         * object.c: Improve typed allocation stuff based on suggestions from
6564         Paolo. Also turn it on if the GC library supports it.
6565
6566 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6567
6568         * object.c object.h class.h: Added experimental typed allocation
6569         facility using the interfaces in gc_gcj.h.
6570
6571         * os/gc_wrapper.h: Added new include files.
6572         
6573 2003-04-03  Martin Baulig  <martin@ximian.com>
6574
6575         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
6576         which is not yet enabled by default.
6577
6578         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
6579         functions.
6580         (mono_gc_lock, mono_gc_unlock): New static functions.
6581
6582         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
6583         functions; stop/start the world for the garbage collector.  This
6584         is using the windows API; we need to complete the SuspendThread()/
6585         ResumeThread() implementation in the io-layer to make this work on Unix.
6586         (mono_gc_push_all_stacks): New public function; tells the garbage
6587         collector about the stack pointers from all managed threads.
6588
6589 2003-04-03  Martin Baulig  <martin@ximian.com>
6590
6591         * object.h (MonoThread): Added `gpointer stack_ptr'.
6592
6593         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
6594
6595 2003-04-03  Martin Baulig  <martin@ximian.com>
6596
6597         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
6598
6599 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
6600
6601         * reflection.c (typebuilder_setup_fields): Initialize field.first and
6602         field.last.
6603
6604 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
6605
6606         * loader.c (mono_lookup_internal_call): Report the corlib that is
6607         out of sync.
6608
6609 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
6610
6611         * icall.c (ves_icall_type_GetTypeCode): fixed check for
6612         System.DBNull (it's class not valuetype).
6613
6614 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
6615
6616         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
6617         if the array method was already assigned a token (fixes bug#40646).
6618
6619 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
6620
6621         * reflection.c (mono_reflection_get_type): Attempt type resolve even
6622         if no assembly is given.
6623
6624 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
6625
6626         * metadata.h: Added the new tables.
6627
6628         * row-indexes.h: Added definitions for new tables.
6629
6630         * metadata.c: Add schemas for new tables, and add support for
6631         computing the sizes of them.
6632
6633         * class.c: Update for handling the new type cases.
6634
6635 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
6636
6637         * metadata.h (MONO_TYPE_IS_VOID): new macro
6638
6639 2003-03-31  Martin Baulig  <martin@ximian.com>
6640
6641         * threads.h (MonoThreadCallbacks): Added `thread_created'.
6642
6643         * threads.c (mono_thread_new_init): Call `thread_created' in the
6644         mono_thread_callbacks.
6645
6646 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
6647
6648         * loader.h: added marshalbyrefobject_class to mono_defaults
6649         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
6650         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
6651           generation of output parameters.
6652           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
6653         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
6654           contextbound and the target object belongs to the context of the caller.
6655         * object.h: added context and unwrapped_server variables in MonoRealProxy.
6656         * object.c: Implemented support for interfaces and abstract classes
6657           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
6658           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
6659
6660 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
6661
6662         * class.h class.c (mono_class_is_subclass_of): New function.
6663         
6664         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
6665         routines for most common case (calls from ArrayList::ToArray).
6666
6667         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
6668         routine so programs which call Environment::Exit() can be profiled.
6669
6670         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
6671         Added MONO_ARCH_SAVE_REGS.
6672
6673         * icall.c (ves_icall_type_is_subtype_of): Use new function.
6674
6675 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
6676
6677         * blob.h: Add a couple of new MonoType types definitions.
6678
6679         * tabledefs.h: Add a couple of new call convs.
6680
6681 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
6682
6683         * reflection.h (MonoReflectionDynamicAssembly): track changes in
6684         the layout of the class.
6685
6686         * reflection.c (alloc_table): double the size on overflow to avoid
6687         unnecessary copying.
6688
6689         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
6690         avoid filling out metadata tables and blobs. Also set mb->ilgen to
6691         null so it can be garbage collected.
6692         
6693 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
6694
6695         * reflection.c (mono_reflection_get_type): Return the resolved type
6696         only if it is in the assembly we searched.
6697
6698         * reflection.c (ensure_runtime_vtable): Initialize method slots.
6699
6700         * class.c (mono_class_setup_vtable): Set the slot of the overriding
6701         method.
6702
6703 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6704
6705         * appdomain.c:
6706         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
6707         the right one is 'file:///blah', but MS allows it.
6708         * assembly.c:
6709         (mono_assembly_open): allow 'file://blah'
6710
6711         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
6712
6713 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
6714
6715         * socket-io.c: fixes bug #40310.
6716
6717 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
6718
6719         * reflection.c (mono_reflection_parse_type): handle deeply nested
6720         types correctly.
6721
6722         * reflection.c (mono_image_create_token): Use unique token values
6723         since they will be put into a hash table.
6724
6725         * class.c (mono_class_setup_vtable): If a method occurs in more than
6726         one place in the vtable, and it gets overriden, then change the
6727         other occurances too.
6728
6729         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
6730         object as return type.
6731
6732 2003-03-22  Pedro Martínez Juliá  <yoros@wanadoo.es>
6733
6734         * icall.c: Deleted "ToString" implementation for double and float
6735         because they are full implemented in managed code.
6736
6737 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6738
6739         * reflection.c, reflection.h: implemented and exported functions
6740         to retrieve info about custom attributes.
6741
6742 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6743
6744         * appdomain.c: moved Uri handling to assembly.c
6745         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
6746         work when using a file Uri in *nix and windows.
6747
6748         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
6749         GetReferencedAssemblies.
6750
6751 2003-03-18  Dick Porter  <dick@ximian.com>
6752
6753         * icall.c: Rename a couple of internal calls
6754
6755         * threads.c: Set the thread state to Stopped when a thread exits.
6756         Fixes bug 39377.
6757
6758 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
6759
6760         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
6761         New icall.
6762
6763         * object.c (mono_class_vtable): fix warning.
6764
6765 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
6766
6767         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
6768
6769         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
6770         memory.
6771         (method_encode_clauses): Create exception info structures in the right
6772         order.
6773         (mono_reflection_setup_internal_class): Initialize supertypes field.
6774
6775         * class.c object.c: Handle interfaces which implement other interfaces 
6776         correctly.
6777
6778         * class.h class.c: Move the supertypes array initialization code into 
6779         a separate function so it can be used for dynamic types too. Also call
6780         it earlier, in mono_class_init(), since it can be used before the
6781         type is initialized.
6782
6783 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6784
6785         * Makefile.am:
6786         * assembly.c:
6787         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
6788
6789         * appdomain.c:
6790         * appdomain.h:
6791         * marshal.c:
6792         * object.c: remove warnings.
6793
6794 2003-03-13  Martin Baulig  <martin@ximian.com>
6795
6796         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
6797         (MonoDebugLexicalBlockEntry): New types.
6798
6799         * debug-mono-symfile.c
6800         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
6801
6802 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6803
6804         * process.c: ret can be any non-zero value accroding to MS doc.
6805
6806 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
6807
6808         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
6809         fixing a warning for a miss-used prototype, would have cause
6810         random memory corruption.
6811
6812 2003-03-07  Martin Baulig  <martin@ximian.com>
6813
6814         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
6815         getting really annoying ....
6816
6817 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
6818
6819         * reflection.c (fixup_method): added support for array methods.
6820
6821 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
6822
6823         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
6824         (pointed out by Michael Adams).
6825
6826 2003-03-04  Dick Porter  <dick@ximian.com>
6827
6828         * icall.c: Temporarily reverted the Double and Single ToString()
6829         change, because it broke nunit.
6830
6831 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
6832
6833         * object.h, threads.h: make include files compatible with C++
6834         (patch by Jerome Laban <jlaban@wanadoo.fr>).
6835
6836 2003-03-04  Pedro Martínez Juliá  <yoros@wanadoo.es>
6837
6838         * icall.c: Erased ToString helper functions for Double and Single.
6839         Now, that implementations ar all in managed code (Double and Single
6840         Formatters).
6841
6842 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
6843
6844         * appdomain.c: Added method for initializing the default context of
6845         a domain. Added internal call for getting the default context.
6846         * appdomain.h: Added context variable in MonoDomain struct.
6847         * domain.c: mono_domain_set also sets the default context of the domain
6848         * icall.c: Mapped internal method InternalGetDefaultContext.
6849         * object.c: mono_object_get_virtual_method returns always a remoting
6850         wrapper if the object is a transparent proxy.
6851         mono_runtime_invoke_array: when creating an object by calling the
6852         constructor, if the created object is a proxy, then the constructor should
6853         be called using the a remoting wrapper.
6854
6855 2003-03-03  Dick Porter  <dick@ximian.com>
6856
6857         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
6858         variable so it compiles on solaris.  Problem spotted by
6859         Christopher Taylor <ct@cs.clemson.edu>
6860
6861 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6862
6863         * appdomain.c:
6864         (get_info_from_assembly_name): don't leak value.
6865
6866         * icall.c:
6867         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
6868         result.
6869
6870 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
6871
6872         * assembly.c: export mono_image_load_references ().
6873         * class.c: handle function pointers. mono_class_from_name() now
6874         supports nested type names directly.
6875
6876 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
6877
6878         * reflection.h reflection.c: Encode already created dynamic methods 
6879         and fields correctly as a DEF instead of a REF.
6880
6881         * reflection.c: Get rid of the force_ref argument to 
6882         mono_image_typedef_or_ref since it was wrong in the first place.
6883
6884         * string-icalls.c: add error checking to string constructors according
6885         to the MSDN docs.
6886
6887         * reflection.c: Emit types in the order their TypeBuilders were 
6888         created. Previously, a new table index was assigned to each type before
6889         the tables were emitted. This was wrong because the signature blob
6890         might already refer to a type by its original table index.
6891
6892 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
6893
6894         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
6895         change.
6896         
6897 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6898
6899         * Makefile.am: make assemblies dir have \ instead of / on windows.
6900
6901 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
6902
6903         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
6904         iterate over the NESTEDCLASS table using a linear search since the
6905         table is not guaranteed to be sorted by the secondary key.
6906
6907         * class.c (mono_class_create_from_typedef): fixed up call to
6908         mono_metadata_nesting_typedef.
6909         
6910 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
6911
6912         * marshal.c (mono_string_to_byvalstr): clear the memory as
6913         suggested by Jerome Laban <jlaban@wanadoo.fr>
6914
6915 2003-02-26  Dick Porter  <dick@ximian.com>
6916
6917         * process.c: Cope with padding in .rsrc blocks
6918
6919 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6920
6921         * metadata.h: reverted the filter_len change, it breaks reflection
6922         
6923 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
6924
6925         * metadata.h: added a new field to store the filter_len
6926         
6927
6928 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
6929
6930         * reflection.c: handle custom attributes for types and members
6931         created with Reflection.Emit (bug#38422).
6932
6933 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
6934
6935         * reflection.c: define RTSpecialName automatically for constructors for
6936         compatibility with MS.NET.
6937
6938         * reflection.c (mono_reflection_create_runtime_class): initialize
6939         nested_in field of dynamically created classes.
6940
6941 2003-02-22  Martin Baulig  <martin@ximian.com>
6942
6943         * debug-mono-symfile.h: Incremented version number.
6944
6945 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6946
6947         * object.h icall.c process.c: fix warnings.
6948
6949 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
6950
6951         * appdomain.h appdomain.c:
6952         (mono_domain_try_type_resolve): split the 
6953         name_or_tb argument into a name and a tb argument.
6954         (mono_domain_has_type_resolve): new function to check whenever the
6955         application has registered a TypeResolve event handler.
6956         
6957         * icall.c reflection.h reflection.c: move the type resolve logic into
6958         mono_reflection_get_type () so it will be invoked when 
6959         Assembly::GetType () is called.
6960
6961         * reflection.c:
6962         (mono_reflection_get_type): renamed to get_type_internal.
6963         (mono_reflection_get_type): fixed type name generation so it works 
6964         for nested types too.
6965         (mono_reflection_get_type): call has_type_resolve () to avoid the 
6966         costly type name generation if there is no resolve event handler.
6967
6968 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
6969
6970         * class.c, image.c: load exported types from file references.
6971
6972 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
6973
6974         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
6975           used to cache the managed methods used to create proxies and make 
6976           remote invocation of methods.
6977         * class.h: Added in MonoVTable a flag to indicate that a class needs 
6978           to be remotely created.
6979         * object.c: Modified the method mono_class_vtable(). It now initializes 
6980           the remote flag of the vtable. Modified mono_object_new_specific(), 
6981           so now it checks the remote flag.
6982         * icall.c: Added a couple of internal methods, one for enabling instance 
6983           creation interception for a type, and one for creating objects bypassing
6984           the remote check.
6985
6986 2003-02-18  Martin Baulig  <martin@ximian.com>
6987
6988         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
6989         New interncall to get a method's metadata token.
6990
6991         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
6992         New interncall for the debugger.
6993
6994 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
6995
6996         * class.c (mono_class_setup_vtable): allocate supertype array
6997
6998 2003-02-18  Martin Baulig  <martin@ximian.com>
6999
7000         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
7001
7002 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7003
7004         * reflection.c:
7005         (assembly_name_to_aname): jump over unknown properties (i've found
7006         something like: 'type, assembly, version=xxx, custom=null, public...',
7007         so now will ignore custom=null and still get the rest of the values).
7008
7009 2003-02-17  Dick Porter  <dick@ximian.com>
7010
7011         * threads.c: Have Thread.Start() wait for a semaphore to signal
7012         that the thread has set up all its local data.  This fixes bug
7013         34323, where Abort() raced the new thread's TLS data.
7014
7015         Also removes the handle_store() call from start_wrapper, because
7016         threads are now always created suspended and there is no longer a
7017         race between the parent and child threads to store the info.
7018
7019 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
7020
7021         * image.c: explain the #- heap issue in a message, hopefully
7022         avoiding FAQs on mono-list.
7023
7024 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7025
7026         * icall.c:
7027         (GetEntryAssembly): if the domain has not invoked
7028         AppDomain.ExecuteAssembly yet, return the assembly of the default
7029         AppDomain.
7030
7031 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
7032
7033         * class.c (mono_ldtoken): make it work in dynamic assemblies.
7034
7035 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
7036
7037         * metadata.c, reflection.c: simple speedup to type hash
7038         and equals code.
7039
7040 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
7041
7042         * image.c, image.h, class.c, assembly.c: move module loading
7043         to MonoImage. When loading metadata, consider alignemnet from
7044         the start of metadata, not from the metadata address in memory.
7045
7046 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
7047
7048         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
7049         AssemblyBuilder objects. Factored out custom attribute creation into
7050         a separate function.
7051         (create_custom_attr): new function to create custom attributes.
7052
7053 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
7054
7055         * Makefile.am: Got tired of typing the full pathname to pedump.
7056         Until there is another option, am installing this.
7057
7058 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
7059
7060         * class.c (class_compute_field_layout): always set field->parent 
7061         (mono_ldtoken): use mono_defaults.fieldhandle_class;
7062
7063 2003-02-11  Dick Porter  <dick@ximian.com>
7064
7065         * threads-types.h:
7066         * monitor.c: Rewrote Monitor, making lock much faster and
7067         Pulse/Wait work as specified.  Also uses much fewer handles, and only
7068         creates them as needed.
7069
7070         * exception.c: Added SynchronizationLockException
7071
7072         * threads.c: Deleted old Monitor implementation.  The new one is
7073         in a new file.
7074
7075 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
7076
7077         * class.c: handled TypedReference type code. Set the correct size for
7078         class data. Setup interface_offsets for interface classes, too.
7079
7080 2003-02-09  Martin Baulig  <martin@ximian.com>
7081
7082         * debug-mono-symfile.h: Reflect latest symbol writer changes.
7083
7084 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
7085
7086         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
7087         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
7088         * object.c: fixed mono_object_get_virtual_method () for interfaces.
7089         * verify.c: check for code that runs after the end of the method.
7090
7091 2003-02-08  Pedro Martínez Juliá  <yoros@wanadoo.es>
7092
7093         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
7094         "System.Math::Round2".
7095         * sysmath.h: Added Floor, Round and Round2 definitions.
7096         * sysmath.c: Modified certain functions that were not 100% compliant
7097         with MS.NET (math precision) and added the implementation of Floor,
7098         Round and Round2.
7099
7100 2003-02-07  Martin Baulig  <martin@ximian.com>
7101
7102         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
7103
7104 2003-02-07  Martin Baulig  <martin@ximian.com>
7105
7106         * debug-mono-symfile.c: Reflected latest symwriter changes.
7107         (mono_debug_create_mono_symbol_file): Removed.
7108         (mono_debug_open_mono_symbol_file): Take an argument which
7109         specifies whether to create a dynamic symbol file.
7110
7111 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
7112
7113         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
7114
7115 2003-02-05  Martin Baulig  <martin@ximian.com>
7116
7117         * reflection.c (mono_image_build_metadata): Make this public,
7118         protect it against being called multiple times, don't create
7119         resources and don't build the compressed metadata here.
7120         (mono_image_create_pefile): Do this here.
7121
7122         * icall.c
7123         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
7124
7125 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7126
7127         * socket-io.c: fixed bug #36322.
7128
7129 2003-02-06  Piers Haken <piersh@friskit.com>
7130
7131         * appdomain.[ch]:
7132         * class.h:
7133         * debug-mono-symfile.c:
7134         * icall.c:
7135         * loader.c:
7136         * mono-config.c:
7137         * monosn.c:
7138         * reflection.c:
7139         * socket-io.c: warning cleanups
7140
7141 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
7142
7143         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
7144         function. works like remoting invoke, but does a check for the Proxy first.
7145
7146 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
7147
7148         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
7149
7150 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
7151
7152         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
7153         array of pointers.
7154         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
7155         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
7156
7157         * object.c (mono_store_remote_field_new): used by the new jit
7158         instead of mono_store_remote_field
7159         (mono_load_remote_field_new): used by the new jit
7160         instead of mono_load_remote_field
7161
7162 2003-02-05  Patrik Torstensson
7163
7164         * appdomain.c: changed unload to take the domain id instead
7165         of domain
7166         
7167         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
7168
7169
7170 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7171
7172         * appdomain.c: don't look for assemblies in ApplicationBase if
7173         PrivateBinPathProbe is set.
7174
7175 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7176
7177         * object.c: make the first argument in main_args contain the absolute
7178         path to the assembly. Fixes bug #37511.
7179
7180 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7181
7182         * icall.c: get correct UTC offset for countries not using daylight
7183         time saving. Fixes bug #30030.
7184
7185 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7186
7187         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
7188         and 1 are the family).
7189
7190 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
7191
7192         * icall.c (ves_icall_InternalExecute): removed wrong assertion
7193
7194         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
7195
7196 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
7197
7198         * reflection.c: added support for SignatureHelper tokens, which is
7199         needed by the Calli opcode.
7200
7201         * reflection.h: track changes to SignatureHelper class.
7202
7203         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
7204
7205 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7206
7207         * appdomain.c: fixed loading assemblies from PrivateBinPath.
7208
7209 2003-02-03  Patrik Torstensson
7210         * appdomain.[c|h], domain.c : 
7211          - Added support for getting a domain via domain id
7212          - Support for setting and getting domain from System.AppDomain 
7213            (used in cross appdomain channel)
7214          - Added support for get/set for a MonoAppContext on a thread 
7215            (Context class in System.Runtime.Remoting.Contexts),
7216          - Removed hack in Get/SetData and ExecuteAssembly.
7217         
7218         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
7219         the managed world to get control when a proxy is created.
7220
7221         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
7222         
7223 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
7224
7225         * icall.c
7226         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7227         Populate the codebase field as well.
7228
7229 2003-02-02  Martin Baulig  <martin@ximian.com>
7230
7231         * debug-mono-symfile.c
7232         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
7233         (mono_debug_symfile_add_method): Allow interncalls.
7234
7235 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7236
7237         * icall.c: throw parse exception if strtod fails or the string is empty.
7238
7239 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
7240
7241         * marshal.c: handle object type separately from defined
7242         class types.
7243
7244 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
7245
7246         * marshal.c: handle NATIVE_LPSTR for strings when it's
7247         explicitly specified.
7248
7249 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
7250
7251         * reflection.c, reflection.h, icall.c: setup the reflection
7252         handle cache for ModuleBuilders and AssemblyBuilders.
7253
7254 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
7255
7256         * reflection.c (reflection_methodbuilder_to_mono_method): set
7257         pinvoke flag
7258
7259 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7260
7261         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
7262
7263 2003-01-29  Dick Porter  <dick@ximian.com>
7264
7265         * threads.c: No need for the fake_thread kludge now that Thread
7266         doesn't run a class constructor
7267         
7268 2003-01-29  Dick Porter  <dick@ximian.com>
7269
7270         * threads.c: Use g_direct_hash instead of the rather bogus
7271         g_int_hash
7272
7273 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
7274
7275         * marshal.c (mono_marshal_get_native_wrapper): add check for null
7276         (fix pinvoke12.exe)
7277         (mono_marshal_get_struct_to_ptr): generate valid IL code
7278         (mono_marshal_get_ptr_to_struct): generate valid IL code
7279         (*): correctly set sig->pinvoke, we need to memdup the signature
7280         to do that
7281
7282 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
7283
7284         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
7285         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
7286
7287 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7288
7289         * profiler.c: provide more callers information.
7290
7291 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
7292
7293         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
7294
7295         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
7296
7297         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
7298
7299 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7300
7301         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
7302         exception instead of going into an infinite loop on dates which it 
7303         can't yet handle.
7304
7305         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
7306         out-of-range exception if needed.
7307
7308         * class.c (mono_class_setup_vtable): allow a virtual method to provide
7309         an implementation for an interface method and to override an inherited
7310         method at the same time. 
7311         Imagine a scenario when a virtual method is used to override a
7312         virtual abstract method in a parent class, and this same method 
7313         provides an implementation for an method inherited from an interface. 
7314         In this case, the interface resolution code will set im->slot, which 
7315         means that the virtual method override pass will skip this method 
7316         which means a pointer to the abstract method inherited from the parent
7317         will remain in the vtable of this non-abstract class.
7318
7319         * class.c: (mono_class_setup_vtable): continue search for a real 
7320         method if only an abstract method is found.     
7321
7322 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
7323
7324         * reflection.c: add size to encoding for ByValStr and ByValArray
7325         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
7326
7327 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7328
7329         * class.c (mono_class_setup_vtable): pass the override info as an
7330         argument.
7331
7332         * class.c (mono_class_setup_vtable): set the slot of overriding methods
7333         correctly.
7334         
7335         * reflection.c (ensure_runtime_vtable); add support for method 
7336         overrides.
7337         
7338 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7339
7340         * reflection.c (resolution_scope_from_image): Hack to work to work with
7341         dynamic assemblies.
7342
7343         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
7344         added a 'force_ref' argument to force this function to allways return 
7345         a TypeRef. This is needed by mono_image_get_memberref_token ().
7346         
7347 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7348
7349         * reflection.c (mono_image_get_type_info): interfaces really don't have
7350         a parent.
7351
7352         * reflection.c (mono_image_basic_init): fill out missing fields of
7353         image structure.
7354
7355         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
7356         dynamic assemblies. This is required so dynamic assemblies show up in
7357         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
7358         Type::GetType() etc. This is consistent with MS behaviour.
7359
7360         * image.c image.h reflection.c: add newly created classes to the name 
7361         cache so mono_class_get () will find them.      
7362
7363 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
7364
7365         First part of changes to get IKVM.NET running under mono.
7366         
7367         * appdomain.h, appdomain.c: added new function 
7368         mono_domain_try_type_resolve() which will emit TypeResolve events. 
7369         This function will call AppDomain::DoTypeResolve to do the actual work.
7370
7371         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
7372         moved existing code dealing with dynamic tokens to a new function 
7373         called mono_reflection_lookup_dynamic_token (). This function will 
7374         raise TypeResolve events when appropriate. Since reflection.c is not 
7375         part of libmetadata, a new hook function called 
7376         mono_lookup_dynamic_token() is added to class.c which will call this.
7377
7378         * assembly.h assembly.c: make the invoke_load_hook function public,
7379         so it can be called for dynamic assemblies.
7380
7381         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
7382
7383         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
7384         type isn't found.
7385
7386         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
7387         MonoGHashTable, since it contains pointers to objects which the GC 
7388         needs to track.
7389
7390         * assembly.c (search_loaded): remove unused variable.
7391         
7392 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
7393
7394         * object.c: fixed issue exposed by gcc-generated IL programs
7395         that use RVA data for pointers.
7396
7397 2003-01-25  Martin Baulig  <martin@ximian.com>
7398
7399         * threads.c (start_wrapper): Moved the initialization of
7400         `start_func' above the mono_new_thread_init() call to which we
7401         pass it as argument.
7402
7403 2003-01-24  Martin Baulig  <martin@ximian.com>
7404
7405         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
7406         the MonoThread pointer.
7407
7408 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
7409
7410         * icall.c: Rename `PowImpl' to Pow.
7411
7412 2003-01-23  Dick Porter  <dick@ximian.com>
7413
7414         * threads.c (start_wrapper): Create a Thread object if needed, so
7415         the Main() thread can do the class initialisation in a subthread
7416         that has been set up to allow managed code execution.
7417
7418         Pass the thread ID instead of the MonoThread pointer to the thread
7419         start and attach callbacks.  This change is required, because the
7420         jit thread start callback must be called _before_ the Thread
7421         object can be created.
7422         
7423         (mono_thread_init): Removed much object creation code that is no
7424         longer needed.  No managed code is called from here now.
7425
7426         * object.c (mono_runtime_exec_managed_code): Create a subthread
7427         for Main, and call back to the runtime to use it.
7428         Set the exit code when Main exits.
7429
7430         * gc.c: Make sure domain finalisation happens in a subthread.
7431         Re-enable threaded GC, fixing bug 31333 (again).
7432
7433         * environment.c: System.Environment internall calls (so far just
7434         ExitCode is here, the others are still in icall.c)
7435
7436         * appdomain.c (mono_runtime_cleanup): All threads running managed
7437         code should have finished before mono_runtime_cleanup() is
7438         reached, so no need to clean up threads.
7439
7440 2003-01-22  Martin Baulig  <martin@ximian.com>
7441
7442         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
7443         `gpointer func' arguments.      
7444         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
7445         but added `MonoThread *thread' argument.
7446         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
7447
7448         * threads.c (mono_new_thread_init): Added `gpointer func' argument
7449         and pass it to the mono_thread_start_cb callback.
7450         (mono_install_thread_callbacks): New public function to install a
7451         set of callbacks which are set by the debugger.
7452         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
7453
7454 2003-01-22  Martin Baulig  <martin@ximian.com>
7455
7456         * Makefile.am: Install debug-mono-symfile.h.
7457
7458 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
7459
7460         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
7461
7462 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
7463
7464         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
7465         * class.c (mono_ptr_class_get): correctly set access levels of pointers
7466         (mono_array_class_get): correctly set access levels of arrays
7467
7468 2003-01-20      Patrik Torstensson
7469         * image.h (MonoAssemblyName): changed major, minor, build, revision
7470         from signed to unsigned.
7471
7472 2003-01-20  sean kasun <skasun@azstarnet.com>
7473
7474         * reflection.c (load_cattr_value): Now this handles
7475         MONO_TYPE_SZARRAY.  Fixes bug #35629
7476
7477 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
7478
7479         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
7480         integer value
7481
7482 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7483
7484         * decimal.c: fixed bug #26056.
7485
7486 2003-01-17  Martin Baulig  <martin@ximian.com>
7487
7488         * gc.c: Raise an ExecutionEngineException instead of using g_error().
7489
7490 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7491
7492         * exception.[ch]:
7493         (mono_get_exception_type_initialization): new function.
7494
7495         * object.c: throw a TypeInitializationException when an exception is
7496         thrown invoking the class constructor.
7497
7498 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7499
7500         * reflection.c: fixed attribute reading.
7501
7502 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7503
7504         * icall.c:
7505         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
7506         provided, look for the type in the calling assembly and then in
7507         mscorlib; if the assembly name is provided, only try that one.
7508
7509 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
7510
7511         * object.c: register the vtable before there is a chance it's
7512         queried again recursively.
7513
7514 2003-01-13  Duncan Mak  <duncan@ximian.com>
7515
7516         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
7517         gc-internal.h. 
7518         
7519 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
7520
7521         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
7522
7523 2003-01-11  Martin Baulig  <martin@ximian.com>
7524
7525         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
7526         this to 20 for the release.
7527
7528 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
7529
7530         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
7531
7532         * loader.c (mono_method_get_marshal_info): bug fix
7533
7534         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
7535         structures with explicit layout
7536
7537 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7538
7539         * profiler.c: made the output more readable (and sorted). 
7540         Added caller information for the allocation profiler.
7541
7542 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
7543
7544         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
7545
7546 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7547
7548         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
7549         to get value types.
7550         
7551 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
7552
7553         * object.c, profiler.h, profiler.c, profiler-private.h:
7554         Added object allocation profiler.
7555
7556 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
7557
7558         * reflection.h, reflection.c: handle global methods.
7559         Compress blob entries.
7560
7561 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
7562
7563         * marshal.c: fix compilation.
7564
7565 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
7566
7567         * loader.c (mono_method_get_marshal_info): impl.
7568
7569         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
7570
7571 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7572
7573         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
7574         for reference types.
7575
7576 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
7577
7578         * loader.c: fixed off by one error in loaded parameter names.
7579
7580 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
7581
7582         * marshal.c (mono_marshal_get_icall_wrapper): like
7583         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
7584         instead of a MonoMethod.
7585
7586 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7587
7588         * decimal.c: fixed bug #36537.
7589
7590 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
7591
7592         * marshal.c: throw a missing method exception if a
7593         P/Invoke method is not found.
7594
7595 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
7596
7597         * icall.c: allow a null this for constructors.
7598
7599 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
7600
7601         * icall.c: raise the proper exceptions if the arguments to the
7602         internal Invoke are incorrect.
7603
7604 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
7605
7606         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
7607
7608 2003-01-03  Martin Baulig  <martin@ximian.com>
7609
7610         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7611
7612 2002-12-31  Martin Baulig  <martin@ximian.com>
7613
7614         * debug-mono-symfile.c: Completely rewrote the type section.
7615         Instead of using individual malloc()ed fields, we use one big
7616         continuous memory area and offsets into this area.
7617         See the comments in the source code for details.
7618
7619 2002-12-30  Martin Baulig  <martin@ximian.com>
7620
7621         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
7622
7623 2002-12-30  Martin Baulig  <martin@ximian.com>
7624
7625         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
7626         line number table in this data blob instead of using an external
7627         pointer.
7628
7629 2002-12-28  Martin Baulig  <martin@ximian.com>
7630
7631         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
7632
7633 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
7634
7635         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
7636         as a boxed return type.
7637
7638 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
7639
7640         * appdomain.c
7641         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
7642         g_build_filename to properly get separators on the filename created.
7643
7644         * object.h: Small change, introduce MonoMarshalByRefObject to
7645         track the layout of that structure in the C# universe as we make
7646         changes there.
7647
7648 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
7649
7650         * object.c: removed assert to allow static fields on interfaces.
7651         * loader.c: a TypeSpec may be used for any type, not just arrays.
7652
7653 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
7654
7655         * class.c, class.h: added mono_class_array_element_size ().
7656         Ignore static methods in interfaces.
7657
7658 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7659
7660         * threads.c: fixed the build under cygwin.
7661
7662 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
7663
7664         * reflection.c: handle nullref constants. Allocate keys for
7665         reflection handles with the GC.
7666
7667 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7668
7669         * threads.c, threads.h: added mono_thread_get_abort_signal()
7670         to get a suitable signal for thread abort.
7671
7672 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
7673
7674         * metadata.c: fix handling of ExportedType table.
7675
7676 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7677
7678         * icall.c: added WriteWindowsDebugString internal call.
7679
7680 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7681
7682         * reflection.h: added fields to match C# implementation.
7683
7684 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7685
7686         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
7687
7688 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
7689
7690         * gc.h, gc-internal.h: Rename header for GC internal calls to
7691         gc-internal.h from gc.h as to not clash with Boehm GC having its
7692         header installed as <gc.h> in outside include paths.
7693         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
7694         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
7695
7696 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7697
7698         * icall.c: assign minor, build and revision in FillName.
7699
7700 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
7701
7702         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
7703         Added support for running code generated by Reflection.Emit.
7704
7705 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7706
7707         * appdomain.c: check for NULL argument in LoadFrom.
7708
7709 2002-12-10  Dick Porter  <dick@ximian.com>
7710
7711         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
7712
7713 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7714
7715         * appdomain.c: fix buglet when building exe file name.  Handle full
7716         assembly name (needed after latest changes to AssemblyName).
7717         * image.c:
7718         (mono_image_close): free some hashtables.
7719
7720 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
7721
7722         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
7723         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
7724         on some systems (redhat 7.3) 
7725
7726 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
7727
7728         * threads.c: delete the critical section of a sync block,
7729         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
7730
7731 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
7732
7733         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
7734
7735 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7736
7737         * appdomain.[ch]: handle the assembly preload event to try loading the
7738         assemblies using the paths we have in the current domain.
7739
7740         * assembly.[ch]: created an assembly preload hook that is called to try
7741         loading the assembly by other means that the ones provided here.
7742
7743         * domain.c: initialize the domain search path.
7744
7745         From now on, assemblies (TODO: except corlib and System) are loaded
7746         according to these rules when using mono_assembly_load ():
7747
7748                 1. It tries to load the assembly from the ApplicationBase
7749                 of the current domain appending .dll and .exe (TODO: have to
7750                 try loading from name/name.dll and name/name.exe).
7751
7752                 2. It tries the search path specified in PrivateBinPath for the
7753                 current domain (if any).
7754
7755                 3. Previous behavior.
7756
7757 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
7758
7759         * icall.c: implemented GetInterfaceMap() related icall.
7760         * domain.c, loader.h: load MethodInfo in mono_defaults.
7761
7762 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
7763
7764         * gc.c: disable the finalizer thread for now, untill all the issues
7765         with it are resolved.
7766
7767 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
7768
7769         * string-icalls.c: handle embedded nulls in string ctor when the
7770         length is specified.
7771
7772 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
7773
7774         * class.c: look for explicit interface implementation in parent
7775         classes, too.
7776
7777 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
7778
7779         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
7780
7781 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
7782
7783         * gc.c: protect handles with a critical section.
7784
7785 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7786
7787         * icall.c:
7788         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
7789         parameters. If no assembly specified, try getting the type from all
7790         the assemblies in the current domain, else, load the assembly and get
7791         the type from it.
7792
7793 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7794
7795         * marshal.c: applied patch from Aleksey Demakov that fixes
7796         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
7797
7798 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7799
7800         * icall.c: fixed get_location.
7801
7802 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
7803
7804         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
7805         declarations to make it work with older gcc. 
7806
7807         * loader.c (mono_get_method): set signature->pinvoke for native calls
7808
7809 2002-11-20  Dick Porter  <dick@ximian.com>
7810
7811         * threads.c (mono_thread_init): Set the main thread's handle
7812
7813 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
7814
7815         * gc.c: allow compilation without GC support. Changed to match the
7816         mono coding style.
7817
7818 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
7819
7820         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
7821
7822 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
7823
7824         * reflection.c: set a public key token on the core assemblies.
7825
7826 2002-11-18  Dick Porter  <dick@ximian.com>
7827
7828         * threads.c: Split out some thread initialisation so that other
7829         files can set the start callback function.
7830
7831         * gc.c: Run finalisers in a separate thread, to avoid stack
7832         overflow.  Fixes bug 31333.
7833
7834         * appdomain.c: Set up GC finalisation thread.
7835
7836         * reflection.c: 
7837         * object.c: 
7838         * domain.c: Use gc.h macros for GC_malloc
7839         
7840 2002-11-15  Dick Porter  <dick@ximian.com>
7841
7842         * threadpool.c: 
7843         * threads.c:
7844         * appdomain.c: Removed mono_runtime_init_with_attach(),
7845         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
7846         merging the extra parameter with the existing function.  Removed
7847         unneeded code in mono_thread_attach().
7848
7849 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
7850
7851         * image.c (mono_image_loaded_by_guid): a method to get loaded
7852         images by guid. 
7853         (load_metadata_ptrs): we store the guid as string.
7854
7855 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
7856
7857         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
7858
7859         * metadata.c (mono_guid_to_string): imported method form Zoltan
7860         Varga (slightly modified)
7861
7862         * assembly.c (mono_assembly_open): load precompiled code
7863
7864         * loader.h (MonoMethod): we store the method token for use in the
7865         aot compiler. 
7866
7867 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7868
7869         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
7870         the hook function called when an assembly is loaded.
7871         
7872         * domain.c: Modified file.
7873         (mono_domain_assembly_load): removed hash table insertion of assemblies.
7874
7875         Fixes bug #33196.
7876
7877 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
7878
7879         * reflection.c: Map PEFileKind to the value expected by the WinNT
7880         image loader. 
7881
7882 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7883
7884         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
7885         Read until the buffer is filled completely.
7886
7887 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7888
7889         * icall.c: implemented MonoType.InternalGetEvent ().
7890
7891 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7892
7893         * appdomain.c: implemented InitAppDomainSetup. Delayed
7894         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
7895         the entry_assembly.
7896
7897         * assembly.c: base_dir is now an absolute path ending with
7898         G_DIR_SEPARATOR.
7899
7900         * icall.c: modified get_location according to the above changes.
7901
7902         * object.c: init AppDomain.SetupInformation for the default domain after
7903         we have the entry assembly.
7904
7905         * domain.c: when unloading a domain, setup = NULL.
7906
7907 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
7908
7909         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
7910
7911 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
7912
7913         * object.h, object.c: introduced mono_object_get_virtual_method ()
7914         to lookup the method invoked on an object when a callvirt is done on
7915         a method.
7916         * icall.c: make MethodInfo::Invoke() always do a virtual call.
7917
7918 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7919
7920         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
7921         current domain when loaded an assembly and failed to load it.
7922
7923         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
7924
7925 2002-10-31  Dick Porter  <dick@ximian.com>
7926
7927         * icall.c: 
7928         * file-io.h: 
7929         * file-io.c: Return the error status in a parameter, as the
7930         GetLastError() value has long since been blown away if we try and
7931         look it up in a subsequent internal call invocation.  Delete the
7932         GetLastError() internal call, because it's useless.
7933
7934 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
7935
7936         * class.[ch]: added cast_class to fix bug 29517
7937
7938 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
7939
7940         * marshal.c: create valid IL code in the filter clause:
7941         the new JIT is less forgiving:-)
7942
7943 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7944
7945         * icall.c: removed get_property internal call.
7946
7947 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
7948
7949         * appdomain.h domain.c: Added an ID to appdomains.
7950         
7951         * threads.c threads.h icall.c: Implement icall
7952         Thread:GetDomainID(), and remove unused icall 
7953         CurrentThreadDomain_internal.
7954
7955 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7956
7957         * icall.c: Don't recurse through the base types in GetConstructor.
7958         Fixes bug #32063. 
7959
7960 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
7961
7962         * mempool.h, mempool.c: added mono_mempool_empty() and
7963         mono_mempool_stats().
7964
7965 2002-10-23  Dick Porter  <dick@ximian.com>
7966
7967         * file-io.c: 
7968         * file-io.h: 
7969         * icall.c: Added MonoIO.GetFileType internal call
7970
7971 2002-10-17  Dick Porter  <dick@ximian.com>
7972
7973         * appdomain.c (mono_runtime_cleanup): Don't signal the async
7974         delegate semaphore before waiting for all threads to finish,
7975         because new threads can also call async delegates.  Fixes bug
7976         32004.
7977
7978         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
7979         of 3 seconds, in case another async job is queued.  (This part is
7980         needed because the bug fix reintroduced the 3s exit lag.)  This
7981         makes the mono_runtime_shutdown flag superfluous.
7982
7983 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
7984
7985         * reflection.c: include ehader size in method section headers.
7986         Really check for suplicated modules entries.
7987
7988 2002-10-17  Martin Baulig  <martin@gnome.org>
7989
7990         * debug-mono-symfile.c: Added back support for locals.
7991
7992 2002-10-14  Martin Baulig  <martin@gnome.org>
7993
7994         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
7995         MONO_TYPE_VOID.
7996
7997 2002-10-14  Martin Baulig  <martin@gnome.org>
7998
7999         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
8000         mono_class_get() instead of looking in the class cache. 
8001
8002 2002-10-13  Martin Baulig  <martin@gnome.org>
8003
8004         * debug-mono-symfile.c: Set version number to 28, include the
8005         signature in method names.
8006
8007 2002-10-13  Martin Baulig  <martin@gnome.org>
8008
8009         * debug-mono-symfile.h: Set version number to 27.
8010
8011 2002-10-11  Martin Baulig  <martin@gnome.org>
8012
8013         * gc.c: Don't register/unregister NULL pointers as disappearing links.
8014
8015 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8016
8017         * metadata.c, metadata.h: added helper function to allocate signatures.
8018
8019 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8020
8021         * icall.c: added internal call to get the location of machine.config.
8022
8023 2002-10-08  Martin Baulig  <martin@gnome.org>
8024
8025         * debug-mono-symfile.c: Ignore classes with a pending init for the
8026         moment.
8027
8028 2002-10-03  Dick Porter  <dick@ximian.com>
8029
8030         * threads.c: Freebsd pthread_t is a pointer
8031
8032 2002-10-03  Dick Porter  <dick@ximian.com>
8033
8034         * socket-io.c: Implemented GetHostName_internal
8035
8036 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8037
8038         * mono-config.c:
8039         (mono_config_parse_file): don't leak the text.
8040
8041 2002-10-02  Martin Baulig  <martin@gnome.org>
8042
8043         * debug-mono-symfile.c: Added support for methods.
8044
8045 2002-10-01  Martin Baulig  <martin@gnome.org>
8046
8047         * debug-mono-symfile.c: Don't emit methods and line numbers for
8048         the dynamic symbol file, just write the type table.  We can easily
8049         have an external helper program which creates a symbol file for an
8050         IL file.        
8051
8052 2002-10-01  Dick Porter  <dick@ximian.com>
8053
8054         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
8055         Only add the handle to the cleanup array when we're about to
8056         launch the thread.  Bug 31425 deadlocked when the test was run on
8057         mono under w32.
8058
8059 2002-10-01  Martin Baulig  <martin@gnome.org>
8060
8061         * debug-mono-symfile.c: Added support for properties.
8062
8063 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8064
8065         * reflection.c: unaligned store fix from Mark Crichton
8066         <crichton@gimp.org>.
8067
8068 2002-09-27  Martin Baulig  <martin@gnome.org>
8069
8070         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
8071         New interncall.
8072
8073 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
8074
8075         * assembly.h, assembly.c: use a sane API to hook into the assembly
8076         loading process instead of a useless special-purpouse hack
8077         (ngen needs a hook, too, for example).
8078
8079 2002-09-27  Dick Porter  <dick@ximian.com>
8080
8081         * threads.c (mono_thread_init): Call GetCurrentProcess() so
8082         io-layer can set up some process handle info.  Not needed on w32,
8083         but doesn't hurt either.
8084
8085         * process.c: Pass the program name in the second parameter to
8086         CreateProcess, so the path is searched.  Include the working
8087         directory. Implemented process name, process enumeration, and some
8088         process detail internal calls.
8089         
8090         * icall.c: Added internal calls for process lookup, and some
8091         process details
8092
8093 2002-09-26  Martin Baulig  <martin@gnome.org>
8094
8095         * assembly.c (mono_install_open_assembly_hook): New global
8096         function to install a function to be invoked each time a new
8097         assembly is loaded.
8098         (mono_assembly_open): Run this callback function if set.
8099
8100         * debug-mono-symfile.c: Put back line numbers for the dynamic
8101         symbol file and also record the .il file as source file.  This
8102         allows us to install the temporary symbol file as `file.dbg' just
8103         like a compiler-generated one.
8104
8105 2002-09-26  Nick Zigarovich <nick@chemlab.org>
8106
8107         * Corrected typo in gc.c (BOHEM vs BOEHM).
8108
8109 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8110
8111         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
8112         GetProperties. Also avoid calling g_slist_length in GetProperties and
8113         GetMethods.
8114
8115 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8116
8117         * reflection.c: avoid unaligned stores (bug spotted by
8118         Mark Crichton  <crichton@gimp.org>).
8119
8120 2002-09-25  Martin Baulig  <martin@gnome.org>
8121
8122         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
8123         instead of guint64 for addresses and added prologue/epilogue info.
8124
8125 2002-09-25  Martin Baulig  <martin@gnome.org>
8126
8127         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
8128         store line number info.  For the dynamic symbol file, we only need
8129         to provide the JIT generated dynamic line number info for the dynamic
8130         symbol file.
8131
8132 2002-09-25  Martin Baulig  <martin@gnome.org>
8133
8134         * debug-mono-symfile.h: Incremented version number.
8135
8136 2002-09-24  Martin Baulig  <martin@gnome.org>
8137
8138         * class.c (mono_debugger_class_init_func): New global function
8139         pointer variable.
8140         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
8141         call it.
8142
8143         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
8144         function.  This is called via the mono_debugger_class_init_func
8145         hook to add all types to the dynamic type table.
8146         (ves_icall_MonoDebugger_GetType): New interncall to get a class
8147         from its metadata token.
8148
8149         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
8150         New interncall for the debugger.
8151
8152 2002-09-24  Nick Drochak <ndrochak@gol.com>
8153
8154         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
8155         before using it in case it is null.
8156         
8157 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
8158
8159         * metadata.c: allow custom modifiers in local var signatures
8160         (bug spotted by Zoltan Varga).
8161
8162 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
8163
8164         * class.c: deal with the <Module> class that may have a NULL vtable.
8165         Eliminate warnings.
8166
8167 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8168
8169         * image.c, image.h: more strong name helpers.
8170         * monosn.c: more work: convert pem keys to cryptoapi format.
8171
8172 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8173
8174         * string-icalls.c: speedup IndexOf.
8175
8176 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8177
8178         * icall.c: updates from Zoltan.2.Varga@nokia.com.
8179
8180 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8181
8182         * icall.c: cleanup: use mono_object_domain ().
8183
8184 2002-09-23  Martin Baulig  <martin@gnome.org>
8185
8186         * debug-mono-symfile.c: Improved type support.
8187
8188 2002-09-22  Martin Baulig  <martin@gnome.org>
8189
8190         * debug-mono-symfile.c: Added support for reference types and strings.
8191
8192 2002-09-22  Martin Baulig  <martin@gnome.org>
8193
8194         * debug-mono-symfile.c: Started to work on the type table.
8195
8196 2002-09-21  Martin Baulig  <martin@gnome.org>
8197
8198         * debug-mono-symfile.c: Largely reworked the symbol table format.
8199         The symbol table is now incrementally updated each time a new
8200         method is added.  We're now also using our own magic and version
8201         so that you don't need to recompile all your classes if the
8202         dynamic table changes.
8203         (mono_debug_update_mono_symbol_file): Removed.
8204         (mono_debug_symfile_add_method): New function to add a method.
8205
8206 2002-09-21  Martin Baulig  <martin@gnome.org>
8207
8208         * icall.c
8209         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
8210         New interncall.
8211
8212         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
8213         New interncall to get a method from its metadata token.
8214
8215 2002-09-21  Martin Baulig  <martin@gnome.org>
8216
8217         * debug-mono-symfile.c: Create type table.
8218
8219 2002-09-20  Martin Baulig  <martin@gnome.org>
8220
8221         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
8222
8223 2002-09-20  Martin Baulig  <martin@gnome.org>
8224
8225         * debug-mono-symfile.c: Provide information about params and locals.
8226
8227 2002-09-20  Martin Baulig  <martin@gnome.org>
8228
8229         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
8230         New interncall.
8231
8232         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
8233         interncall to get a method from its metadata token.
8234
8235 2002-09-20  Martin Baulig  <martin@gnome.org>
8236
8237         * debug-mono-symfile.c: Added a few checks for method->header
8238         being non-NULL.  This should never happen, but for the moment
8239         let's use a g_warning() rather than a g_assert().
8240
8241 2002-09-19  Mark Crichton  <crichton@gimp.org>
8242
8243         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
8244         even if support for it isn't present.  Added an #ifdef to fix this.
8245
8246         * socket-io.c: Added checks back for Solaris support.
8247
8248 2002-09-19  Martin Baulig  <martin@gnome.org>
8249
8250         * debug-mono-symfile.c (read_string, write_string): Reflect latest
8251         changes in the symbol file format.
8252
8253 2002-09-18  Martin Baulig  <martin@gnome.org>
8254
8255         * debug-mono-symfile.c: Set version number to 21.
8256
8257 2002-09-18  Dick Porter  <dick@ximian.com>
8258
8259         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
8260         on netbsd.  Fixes bug 30051.
8261
8262 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8263
8264         * reflection.c:
8265         (set_version_from_string): little fix.
8266
8267 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8268
8269         * monosn.c, Makefile.am: added strong name utility.
8270         * reflection.h, reflection.c: implemented delayed signing,
8271         locale, version and hash id assembly attributes.
8272
8273 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
8274
8275         * loader.c, metadata.c: load param attributes in signatures.
8276
8277 2002-09-16  Martin Baulig  <martin@gnome.org>
8278
8279         * debug-mono-symfile.c: Added string table with all method names.
8280
8281 2002-09-14  Martin Baulig  <martin@gnome.org>
8282
8283         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
8284         fast method lookup.
8285
8286 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8287
8288         * reflection.c: record the public key token of referenced assemblies.
8289
8290 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
8291
8292         * image.c, image.h: added functions to get the strong name and the
8293         public key of an assembly.
8294         * pedump.c: use them.
8295
8296 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
8297
8298         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
8299
8300 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
8301
8302         * marshal.c (mono_marshal_get_managed_wrapper): Added
8303         MONO_TYPE_BOOLEAN 
8304
8305 2002-09-11  Martin Baulig  <martin@gnome.org>
8306
8307         * gc.c: Call GC_unregister_disappearing_link() on all links when
8308         finalizing them, this is necessary to aviod a crash in boehm's
8309         finalize handler.
8310
8311 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8312
8313         * gc.c: handle GetTarget for finalized objects spotted and fixed by
8314         nick@chemlab.org.
8315
8316 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
8317
8318         * icall.c: implemented MonoType::Module.
8319         * reflection.c, reflection.h: mono_module_get_object () from
8320         Tomi Pakarinen <tomi.pakarinen@welho.com>.
8321
8322 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
8323
8324         * icall.c: ignore overridden methods in GetMethods ().
8325         Fix for FieldInfo::SetValue().
8326         * object.c: handle float/double in runtime invoke.
8327
8328 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
8329
8330         * object.c: allow a constructor to be called again on an object.
8331
8332 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8333
8334         * class.h, class.c: move field layout code to it's own function and
8335         export it. Get an interface id earlier. Move fields in MonoClass
8336         so they are more cache friendly and align the bitfields.
8337         * loader.c: temporary handle get_param_names() for a runtime method.
8338         * reflection.c, reflection.h: more code to handle runtime creation of
8339         types.
8340
8341 2002-09-09  Martin Baulig  <martin@gnome.org>
8342
8343         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
8344         signature with the pinvoke field being set for the actual call.
8345
8346 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8347
8348         * icall.c: removed some unused icalls. Start of map of glib charsets
8349         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
8350
8351 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8352
8353         * debug-helpers.c: break infinite loop (found and fixed by
8354         Holger Arnold <harnold@gmx.de>).
8355
8356 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
8357
8358         * icall.c: target may be null in create_delegate.
8359
8360 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
8361
8362         * marshal.c: handle a boolean return type.
8363
8364 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
8365
8366         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
8367
8368 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8369
8370         * gc.c: fix weakreferences.
8371
8372 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
8373
8374         * icall.c: added icall to get default codepage.
8375
8376 2002-09-03  Dick Porter  <dick@ximian.com>
8377
8378         * threads.h: 
8379         * threads.c: Use MonoThread instead of MonoObject where
8380         apropriate.
8381
8382         Store running thread objects in a hash table, so that we have all
8383         the info to hand when waiting for them to finish
8384         (means we don't need OpenThread() any more, so mingw builds should
8385         be fully functional again.)
8386
8387         * verify.c:
8388         * object.h: Added thread ID to MonoThread
8389
8390 2002-09-03  Martin Baulig  <martin@gnome.org>
8391
8392         * icall.c (System.Reflection.Assembly::get_location): New interncall.
8393
8394 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8395
8396         * icall.c: fixed leak in get_temp_path. Thanks lupus.
8397
8398 2002-09-03  Martin Baulig  <martin@gnome.org>
8399
8400         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
8401         argument to store the end address of the disassembled instruction.
8402
8403         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
8404         here from debug-symfile.h.
8405         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
8406         JIT into this struct.
8407         (MonoSymbolFile): Added `char *image_file' field.
8408         (MonoDebugGetMethodFunc): Removed.
8409         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
8410         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
8411         (mono_debug_find_method): New method.
8412
8413         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
8414         create a full symbol file.
8415         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
8416         and static symbol files.
8417         (mono_debug_find_method): The symbol file keeps an internal method hash,
8418         call this to get a MonoDebugMethodInfo from a MonoMethod.
8419
8420         * debug-symfile.[ch]: Removed.
8421
8422 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
8423
8424         * image.c (do_mono_image_open): Remove linker version check.
8425
8426 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
8427
8428         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
8429         wrappers for instance methods.
8430         
8431 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8432
8433         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
8434
8435 2002-08-28  Dick Porter  <dick@ximian.com>
8436
8437         * Makefile.am: Export HOST_CC for w32 builds
8438
8439 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
8440
8441         * file-io.c process.c: MonoString are null terminated, no
8442         need for mono_string_to_utf16() anymore.
8443
8444 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8445
8446         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
8447
8448 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
8449
8450         * icall.c, reflection.h: speedup System.MonoType.
8451
8452 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
8453
8454         * reflection.c: allow null as the value of a string argument in
8455         custom attributes constructors.
8456
8457 2002-08-27  Martin Baulig  <martin@gnome.org>
8458
8459         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
8460         `trampoline_address' field.
8461
8462 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
8463
8464         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
8465         check (fixes bug #29486) 
8466
8467 2002-08-27  Martin Baulig  <martin@gnome.org>
8468
8469         * debug-mono-symfile.c: Changed the file format in a way that allows us
8470         open it read-only and to use a specially malloced area for all the
8471         dynamic data.  We can now also generate a symbol file on-the-fly if we're
8472         debugging IL code and there is no MCS generated symbol file for it.
8473
8474 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
8475
8476         * object.c: added a define for a good string and array
8477         creation speedup (not enabled by default because we need to deal with
8478         the synch stuff).
8479
8480 2002-08-26  Martin Baulig  <martin@gnome.org>
8481
8482         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
8483         function to create a dynamic symbol file.  This is used by the
8484         debugger to create a symbol file for IL code on-the-fly.
8485
8486 2002-08-26  Martin Baulig  <martin@gnome.org>
8487
8488         * loader.c (mono_lookup_pinvoke_call): Include the error message
8489         from g_module_error() in the error message.
8490
8491 2002-08-24  Martin Baulig  <martin@gnome.org>
8492
8493         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
8494         function to update the symbol file.  The symbol file is mmap()ed
8495         writable, but private.  This allows us to install the symbol file
8496         together with the assembly.
8497
8498 2002-08-24  Martin Baulig  <martin@gnome.org>
8499
8500         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
8501         but they can read the new symbol file format which mcs is now creating.
8502
8503         * debug-symfile.c (mono_debug_find_source_location): Moved to
8504         debug-mono-symfile.c; this is now operating on the new symbol file.
8505
8506 2002-08-23  Martin Baulig  <martin@gnome.org>
8507
8508         * debug-helpers.c (mono_method_desc_from_method): New function to get
8509         a MonoMethodDesc from a MonoMethod.
8510
8511 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
8512
8513         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
8514         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
8515
8516 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
8517
8518         * string-icalls.[ch]: make helper methods static.
8519
8520 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8521
8522         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
8523         types to it and to SetValueInternal.
8524
8525         * object.c: Moved handle_enum label to its proper place. This was the
8526         f... bug! ;-)
8527
8528         This time i compiled mcs and gtk-sharp and they both work.
8529
8530 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8531
8532         * icall.c: reverted partially my previous patch until 
8533         object.c:set_value handles enums correcly.
8534
8535 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8536
8537         * icall.c:
8538         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
8539         (ves_icall_System_Environment_get_MachineName): removed warning when
8540         compiling under cygwin.
8541
8542 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
8543
8544         * object.c: fixed field_get_value() for reference types.
8545
8546 2002-08-22  Dick Porter  <dick@ximian.com>
8547
8548         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
8549         Don't free a buffer while it's still needed.  Patch from Jonathan
8550         Liger <Jonathan.liger@wanadoo.fr>
8551
8552 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
8553
8554         * icall.c (ves_icall_System_Environment_get_Platform): Add new
8555         internal call.
8556
8557 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
8558
8559         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
8560         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
8561
8562         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
8563         we call unmanaged code which throws exceptions.
8564
8565 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8566
8567         * appdomain.h: added per-domain entry_assembly.
8568         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
8569         arguments.
8570         * icall.c: Assembly::GetEntryAssembly icall.
8571         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
8572         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
8573
8574 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8575
8576         * appdomain.h, gc.c: added mono_domain_finalize ().
8577
8578 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8579
8580         * object.c:
8581         (mono_print_unhandled_exception): changed g_warning by g_printerr
8582         because g_log has a 1024 characters limit (yeah, i got a big stack
8583         trace). Don't print exception name, that should be in ToString 
8584         returned string.
8585
8586 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8587
8588         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
8589         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
8590
8591 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8592
8593         * object.c:
8594         (mono_print_unhandled_exception): after previous commit, i realized
8595         that MS calls ToString on the exception. I changed this function to
8596         do that. This way we get stack_trace for free.
8597
8598 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8599
8600         * object.c:
8601         (mono_print_unhandled_exception): invoke Message property instead of
8602         getting 'message' field from Exception. Don't allocate memory for
8603         'trace' and 'message' if not needed.
8604
8605 2002-08-18  Dick Porter  <dick@ximian.com>
8606
8607         * unicode.c: Fix asserts to match Encoder.cs checks
8608
8609 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8610
8611         * marshal.c: fix unaligned store issue and a few wrong
8612         opcode argument types.
8613
8614 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8615
8616         * icall.c: added GetUninitializedObjectInternal internal call.
8617
8618 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
8619
8620         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
8621         to the right domain.
8622
8623 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
8624
8625         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
8626
8627         * class.c (class_compute_field_layout): set blittable to false for Strings
8628
8629         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
8630
8631 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8632
8633         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
8634         first chunk of code to create types at runtime. Code to
8635         handle ReflectedType/DeclaringType. Make reflection handles
8636         domain specific.
8637
8638 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
8639
8640         * class.c: set correct name in arrays.
8641
8642 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
8643
8644         * appdomain.c (mono_domain_transfer_object): make it work with
8645         valuetypes. bug fixes.
8646
8647 2002-08-12  Dick Porter  <dick@ximian.com>
8648
8649         * object.h: Rename some parameters to avoid c++ keywords (Patch
8650         from Joseph Wenninger <kde@jowenn.at>)
8651
8652 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
8653
8654         * icall.c: added icall to implement Assembly.GetFile*.
8655
8656 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8657
8658         * reflection.h, reflection.c: code to embed managed resources.
8659
8660 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
8661
8662         * class.c: move all the type size stuff into
8663         class_compute_field_layout().
8664
8665 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
8666
8667         * class.c: ensure enums have always the correct instance size.
8668         * unicode.c: remove wrong assert.
8669
8670 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
8671
8672         * assembly.c: fix mem corruption issue.
8673         * image.h, image.c: added mono_image_get_resource () to access
8674         managed resources.
8675         * icall.c: implemented Assembly.EntryPoint property and some
8676         Managed Resources related internalcalls.
8677
8678
8679 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
8680
8681         * image.c, image.h: impemented mono_image_get_entry_point ().
8682         * appdomain.c: use mono_image_get_entry_point.
8683
8684 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8685
8686         * reflection.c: support the object type argument when loading
8687         custom attributes.
8688
8689 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
8690
8691         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
8692         String as return type.
8693
8694 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
8695
8696         * reflection.c: fix encoding of named args for custom attrs to match
8697         the ms implementation. Read them back when instantiating custom
8698         attributes.
8699
8700 2002-08-02  Radek Doulik  <rodo@ximian.com>
8701
8702         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
8703         by Dietmar as quick fix
8704         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
8705         16 as stack size, used on more places as quick fix before Dietmar
8706         will fix it properly
8707
8708 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
8709
8710         * object.h, object.c: added accessors for fields and properties.
8711
8712 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
8713
8714         * class.c, class.h: made mono_class_get_field_from_name ()
8715         loop on parent types.
8716         Added mono_class_get_property_from_name ().
8717
8718 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
8719
8720         * class.c, class.h: move the code to setup the type vtable in its own
8721         function so that it can be reused also for types created at runtime.
8722         Eliminate the "class" identifier from the header file.
8723         * reflection.c: setup the vtable for enums so that we can create
8724         objects for use in SetConstant ().
8725
8726 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
8727
8728         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
8729         instead of the delegate itself as this pointer (bug #28383)
8730
8731 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
8732
8733         * marshal.c (mono_marshal_get_managed_wrapper): added return type
8734         conversions.
8735
8736 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8737
8738         * loader.c: don't set the pinvoke bit on icalls.
8739
8740 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
8741
8742         * debug-helpers.c (mono_method_full_name): only print a number to
8743         indicate wrapper type (so that the output is more readable in traces).
8744
8745 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
8746
8747         * class.c (mono_class_init): include method override patch from Paolo
8748
8749 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
8750
8751         * icall.c: fixed GetTypeCode().
8752
8753 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
8754
8755         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
8756         use real delegate invoke function to make it work with multicast
8757         delegates (fix bug# 28291).
8758
8759 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
8760
8761         * object.c: load constant strings.
8762
8763 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
8764
8765         * reflection.c: no magic numbers.
8766         * tabledefs.h: security action enum.
8767
8768 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
8769
8770         * assembly.c: fix possible memory corruption.
8771
8772 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
8773
8774         * reflection.h, reflection.c: added support for linking resources.
8775         * verify.c: check we have an updated corlib.
8776
8777 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
8778
8779         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
8780         string arrays.
8781         (mono_marshal_string_array): null terminate unmanaged string arrays.
8782         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
8783
8784 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
8785
8786         * icall.c: Type.GetType () can now return also types from the
8787         calling assembly.
8788
8789 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8790
8791         * loader.h, loader.c: stack walking support.
8792         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
8793         GetCallingAssembly.
8794
8795 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
8796
8797         * marshal.c: added optimisations for blittable types 
8798
8799         * class.c (mono_array_class_get): do not set blittable attribute on arrays
8800         (mono_class_setup_mono_type): set blittable attribute for single
8801         and double.
8802
8803         * marshal.c (mono_string_utf8_to_builder): impl.
8804         (mono_string_builder_to_utf8): impl.
8805         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
8806
8807 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
8808
8809         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
8810         (mono_marshal_get_managed_wrapper): impl. byref types
8811
8812 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8813
8814         * icall.c:
8815         (search_method): don't display debug message. 
8816
8817 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8818
8819         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
8820
8821 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
8822
8823         * appdomain.c: set the missing filename when throwing exception.
8824
8825 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
8826
8827         * metadata.c (mono_type_size): code cleanup
8828         (mono_type_stack_size): removed some test code
8829
8830 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
8831
8832         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
8833         mono_get_exception_file_not_found now.
8834
8835         * exception.c (mono_exception_from_name_two_strings): New version
8836         that will call a constructor with two string arguments. 
8837         (mono_get_exception_file_not_found): New helper routine, used to
8838         report file-not-found errors.
8839
8840 2002-07-20  Dick Porter  <dick@ximian.com>
8841
8842         * process.h:
8843         * process.c: Pass file handles to CreateProcess
8844         
8845         * icall.c:
8846         * file-io.h:
8847         * file-io.c: Implemented CreatePipe
8848
8849 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8850
8851         * metadata.c (mono_get_param_info): set alignment for value types
8852
8853 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
8854
8855         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
8856         Constify mono_domain_assembly_open().
8857         * loader.c: handle null namespace in icalls.
8858
8859 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
8860
8861         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
8862         (emit_str_to_ptr_conv): marshal object as structs
8863
8864         * metadata.c (mono_type_to_unmanaged): marshal object as structs
8865
8866         * marshal.c (mono_marshal_get_runtime_invoke): support value types
8867
8868 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
8869
8870         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
8871         (mono_marshal_get_native_wrapper): we an now return value types
8872
8873 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
8874
8875         * verify.c: more checks implemented.
8876
8877 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
8878
8879         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
8880         (fix bug #27695)
8881         (mono_marshal_get_native_wrapper): allow byref arguments
8882         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
8883         impl. PtrToStringXXX methods
8884         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
8885         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
8886         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
8887         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
8888         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
8889
8890 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8891
8892         * reflection.c: fix buglet in parsing an assembly name.
8893
8894 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8895
8896         * marshal.c (emit_ptr_to_str_conv): first impl.
8897
8898 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
8899
8900         * object.c, class.h: cache the vtable in the class as suggested by
8901         vargaz@freemail.hu (Zoltan Varga).
8902
8903 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
8904
8905         * class.h, loader.c: added mono_field_from_token().
8906         * verify.c: first cut of type checking code.
8907
8908 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
8909
8910         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
8911
8912 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
8913
8914         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
8915         (fix bug #27782)
8916         (mono_marshal_get_remoting_invoke): impl.
8917         (mono_delegate_begin_invoke): impl.
8918         (mono_mb_emit_save_args): impl.
8919         (mono_delegate_end_invoke): impl.
8920         (mono_marshal_get_delegate_begin_invoke):
8921         (mono_marshal_get_delegate_end_invoke):
8922         (mono_marshal_get_delegate_invoke): generate a special name for
8923         those methods (including the signature) and associate them whith
8924         the delegate class. 
8925
8926 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
8927
8928         * reflection.[ch]: 
8929         (mono_reflection_type_from_name): now it has a MonoImage parameter
8930         which is used as the default image to search the type in. If the image
8931         is NULL or getting the type from it fails, it defaults to corlib.
8932
8933         * icall.c: changed 1 call to mono_reflection_type_from_name to match
8934         new parameter.
8935
8936 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
8937
8938         * reflection.c: update the parameter table index.
8939
8940 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8941
8942         * domain.c: don't include the mark byte in the string hash.
8943
8944 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
8945
8946         * icall.cs: icall for Type.GetTypeCode ().
8947         * verify: a couple of fixes and disabled local initialization checks.
8948
8949 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
8950
8951         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
8952
8953         * debug-helpers.c (mono_method_full_name): print the type of the
8954         runtime wrapper
8955
8956         * metadata.c (mono_signature_hash): a hash function for signatures
8957         (mono_signature_hash): better hash algorithm
8958
8959         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
8960
8961         * debug-helpers.c (mono_method_full_name): this can now generate
8962         method names with signatures
8963
8964         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
8965         method dont have this pointers.
8966
8967 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
8968
8969         * reflection.c: fixup typebuilder tokens.
8970         * image.c: fix buglet.
8971         * marshal.h: remove whitespace.
8972         * metadata.h, metadata.c: reinstate code that was removed.
8973         * verify.c: handle catch directives and fix another couple of bugs.
8974
8975 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
8976
8977         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
8978         (mono_marshal_get_native_wrapper): make it comp. with the old code
8979         (mono_marshal_get_native_wrapper): support boolean
8980         (mono_marshal_get_managed_wrapper): support more types
8981
8982 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
8983
8984         * class.c (class_compute_field_layout): compute class->blittable attribute.
8985
8986 2002-07-09  Dick Porter  <dick@ximian.com>
8987
8988         * threads.c: Make the thread cleaning up cope with threads that
8989         call ExitThread()
8990
8991 2002-07-08  Radek Doulik  <rodo@ximian.com>
8992
8993         * reflection.c (method_encode_code): use non-translated values to
8994         compute finally_start, this fixes exception handling on ppc, yay!
8995
8996         * decimal.h (struct signscale): fix endianess
8997
8998 2002-07-07  Radek Doulik  <rodo@ximian.com>
8999
9000         * reflection.c: swap box_val and not val
9001
9002 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9003
9004         * reflection.c, reflection.h: handle full assembly info in type name.
9005         Handle Type arguments when loading custom attributes.
9006         * icall.c: updated to use new mono_reflection_type_from_name () method.
9007
9008 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9009
9010         * loader.c:
9011         (method_from_memberref): also print assembly name when method not found.
9012
9013 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9014
9015         * icall.c:
9016         (ves_icall_TypeGetProperties): fixed bug #27473. 
9017
9018 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9019
9020         * reflection.c: display image name and token when cannot find the
9021         .ctor for an attribute.
9022
9023 2002-07-05  Martin Baulig  <martin@gnome.org>
9024
9025         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9026
9027 2002-07-04  Dick Porter  <dick@ximian.com>
9028
9029         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
9030         compile on mingw.  This will cause mingw builds to not wait for
9031         subthreads to terminate after the main thread does.  I've lodged a
9032         bug with the mingw developers for them to wrap OpenThread().
9033
9034 2002-07-03  Dick Porter  <dick@ximian.com>
9035
9036         * threads.c: Store thread IDs instead of handles, because
9037         GetCurrentThread() returns a pseudohandle and therefore stores
9038         useless values.  mono_thread_cleanup() continues checking the
9039         array of threads until it is empty, to cope with subthreads
9040         spawning new threads after the main thread has finished.
9041
9042         * profiler.h:
9043         * profiler.c:
9044         * profiler-private.h: Pass the thread ID to thread profiler
9045         functions, instead of a handle
9046
9047 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9048
9049         * verify.c: fixes to make it more usable.
9050         * pedump.c: added --verify code to verify IL code in an assembly.
9051
9052 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9053
9054         * reflection.c: turn errors into warnings to allow compiling corlib.
9055
9056 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
9057
9058         * reflection.c: add special cases to compile corlib.
9059
9060 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9061
9062         * reflection.c: handle properties with only a set method.
9063
9064 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9065
9066         * opcodes.h: add enum with opcodes in opval order.
9067
9068 2002-07-01  Dick Porter  <dick@ximian.com>
9069         
9070         * object.h:
9071         * object.c (mono_runtime_run_main): Removed unneeded argument
9072
9073 2002-06-28  Martin Baulig  <martin@gnome.org>
9074
9075         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
9076
9077 2002-06-27  Dick Porter  <dick@ximian.com>
9078
9079         * threads.c: Store the handle in both the parent thread and in the
9080         subthread, to minimise the time between starting a new thread and
9081         storing its ID.
9082
9083 2002-06-26  Dick Porter  <dick@ximian.com>
9084
9085         * appdomain.c (mono_runtime_cleanup): Close the socket library
9086         after all the threads have finished, not before
9087
9088 2002-06-26  Martin Baulig  <martin@gnome.org>
9089
9090         * debug-symfile.c (mono_debug_find_source_location): Added
9091         `guint32 *line_number' argument.  If it's not NULL, store the line number
9092         there and return the file name without the line number.
9093
9094 2002-06-25  Dick Porter  <dick@ximian.com>
9095
9096         * icall.c:
9097         * process.h:
9098         * process.c: Process forking and other support functions
9099
9100 2002-06-25  Dick Porter  <dick@ximian.com>
9101
9102         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
9103         things dont happen when the image is closed.
9104         (mono_image_lookup_resource): Walk the resource section looking
9105         for a particular entry
9106
9107         * cil-coff.h: PE resource section decoding
9108
9109 2002-06-25  Dick Porter  <dick@ximian.com>
9110         
9111         * assembly.h:
9112         * assembly.c: 
9113         (mono_assembly_foreach): Accessor functions to walk the list of
9114         loaded assemblies
9115         (mono_assembly_set_main):
9116         (mono_assembly_get_main): Process methods need to know which
9117         assembly is the "main" one
9118
9119         * object.c (mono_runtime_run_main): Record the main assembly
9120
9121         * debug-helpers.c: Fix typo
9122
9123 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
9124
9125         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
9126         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
9127
9128 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9129
9130         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
9131
9132 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
9133
9134         * image.c (do_mono_image_open): Initialize reference count,
9135         otherwise we leak the MonoImage.
9136
9137 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9138
9139         * reflection.c: small tweak to handle self-hosting.
9140
9141 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
9142
9143         * reflection.c: fix type name parse code.
9144
9145 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9146
9147         * reflection.c: break out of the loop.
9148         * image.c: special case corlib.
9149
9150 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9151
9152         * reflection.c: add all the custom attrs at the end to ensure the
9153         ctors have been properly initialized when the attributes are defined
9154         in the current assembly.
9155
9156 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9157
9158         * reflection.c: handle correctly multiple-nested types.
9159
9160 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
9161
9162         * row-indexes.h: fix typos.
9163         * reflection.c: adjust for typos and fix method_def_or_ref
9164         encoding in MethodImpl table.
9165
9166 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9167
9168         * reflection.c: fix entry point patching (thanks Serge!).
9169
9170 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
9171
9172         * verify.c: add check for System.Exception
9173
9174 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
9175
9176         * image.c, class.c: minifix for code just c&p'ed.
9177         * reflection.c: warning fix.
9178         * object.h, loader.h, domain.c: load also StringBuilder.
9179
9180 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
9181
9182         * marshal.h, marshal.c: some support code to handle complex marshaling.
9183
9184 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9185
9186         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
9187         Better signatures with vtable error dump.
9188
9189 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
9190
9191         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
9192
9193 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
9194
9195         * icall.c (ves_icall_Type_GetField): impl.
9196
9197 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9198
9199         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
9200         to retrieve a marshal description blob for a field or param.
9201
9202 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
9203
9204         * reflection.h, reflection.c: change order of nested type emission
9205         to avoid table corruption. The NestedTypes table is sorted.
9206         * icall.c: change order of GetConstructor results to workaround mcs bug.
9207
9208 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9209
9210         * reflection.h, reflection.c: handle field and param marshal
9211         information.
9212
9213 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9214
9215         * icall.c, marshal.c marshal.h: more Marshal class implementation.
9216
9217 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9218
9219         * reflection.c: fix call convention.
9220
9221 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9222
9223         * reflection.h, reflection.c: mono_image_get_memberref_token()
9224         takes a type instead of a class, now. Added
9225         mono_image_get_array_token() to create tokens for the special
9226         multi-dim array methods.
9227
9228 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9229
9230         * assembly.c: handle modules (no assembly table). Split
9231         loading references in its own function.
9232         * class.c: handle moduleref resolution scope.
9233         * image.c, image.h: cache module name in image.
9234
9235 2002-06-07  Martin Baulig  <martin@gnome.org>
9236
9237         * reflection.c (mono_image_get_type_info): Only add a class layout entry
9238         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
9239
9240 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9241
9242         * icall.c: more signature fixes that used uint instead of int.
9243
9244 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9245
9246         * reflection.c: fixed signature of field refs.
9247
9248 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9249
9250         * class.c, reflection.c: handle typerefs of nested types
9251         (both on read and when writing files).
9252
9253 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
9254
9255         * icall.c: fix method signatures that tried to workaround the previous
9256         typo, d'oh!
9257
9258 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9259
9260         * debug-helpers.c: fix typo.
9261
9262 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9263
9264         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
9265         rewrote the PE/COFF writing code (our programs are understood by the
9266         ms runtime, now).
9267
9268 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
9269
9270         * gc.c, gc.h, icall.c: weakreference support.
9271
9272 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
9273
9274         * Makefile.am, mono-config.c: use $(sysconfdir).
9275
9276 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9277
9278         * icall.c: changed default precision of Double.ToString() to 15.
9279         Fixed memory leak. Unified with Single.ToString.
9280
9281 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
9282
9283         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
9284
9285 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
9286
9287         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
9288         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
9289         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
9290         and myself.
9291
9292 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9293
9294         * debug-symfile.c, sysmath.c: yet more compilation fixes.
9295
9296 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9297
9298         * reflection.c, socket-io.c: more compilation fixes.
9299
9300 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9301
9302         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
9303         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
9304         unicode.c: warning and compiler compatibility fixes.
9305
9306 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9307
9308         * class.h, metadata.c: fixed warnings/compilation errors.
9309
9310 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
9311
9312         * Makefile.am, mono-config.c, mono-config.h: configuration file
9313         support routines.
9314         * loader.c, loader.h: make Dll mapping configurable at runtime in the
9315         config file. Export methods to insert and lookup mappings.
9316
9317 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
9318
9319         * reflection.c: handle types and boxed objects in custom attr
9320         constructors.
9321
9322 2002-05-30  Martin Baulig  <martin@gnome.org>
9323
9324         * debug-symfile.c
9325         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
9326
9327 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
9328
9329         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
9330         to lookup the implmap row for a P/Invoke method.
9331         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
9332         P/Invoke method from the runtime on an as needed basis.
9333
9334 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
9335
9336         * metadata.c (mono_metadata_parse_signature): impl.
9337
9338 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9339
9340         * class.c: handle .pack directive.
9341
9342 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
9343
9344         * object.c: initialize static fields with RVA data.
9345
9346 2002-05-25  Martin Baulig  <martin@gnome.org>
9347
9348         * debug-symfile.c
9349         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
9350
9351 2002-05-24  Martin Baulig  <martin@gnome.org>
9352
9353         * debug-symfile.c
9354         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
9355         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
9356         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
9357
9358 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9359
9360         * object.c: special case string ctros in invoke.
9361         * gc.c: silly whitespace changes.
9362
9363 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
9364
9365         * threadpool.[ch]: impl. a threadpool that can
9366         be used by mint and mono.
9367
9368 2002-05-22  Martin Baulig  <martin@gnome.org>
9369
9370         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
9371         The first argument is now a `MonoReflectionModuleBuilder *', the return
9372         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
9373         `methods' field to get the method builder.  The `token' argument is the
9374         unfixed token.
9375
9376         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
9377         invalid characters instead of g_assert_not_reached()ing.  This seems
9378         to be the behaviour of mscorlib.
9379
9380 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
9381
9382         * object.c (mono_runtime_invoke_array): applied patch from Rachel
9383         Hestilow to fix bug #25104
9384
9385 2002-05-21  Martin Baulig  <martin@gnome.org>
9386
9387         * debug-symfile.c (mono_debug_find_source_location): New function.
9388         Looks up an IL offset in the line number table and returns the source
9389         location as a string.
9390
9391 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9392
9393         * icall.c:
9394         (mono_double_ToStringImpl): changed %f by %g until we have something
9395         better.
9396
9397 2002-05-21  Nick Drochak  <ndrochak@gol.com>
9398
9399         * icall.c : Use different name for Math.Pow's icall.  Needed to check
9400         parameters first in C#.
9401
9402 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9403
9404         * icall.c, reflection.h: added icall to get info about an event.
9405
9406 2002-05-20  Radek Doulik  <rodo@ximian.com>
9407
9408         * object.c (mono_value_box): don't use memcpy for boxing on BIG
9409         endian
9410         (mono_value_box): don't use memcpy for small sizes on
9411         architectures with unaligned access
9412
9413 2002-05-20  Martin Baulig  <martin@gnome.org>
9414
9415         * reflection.c (mono_reflection_setup_internal_class): Don't crash
9416         if `tb->parent == NULL'.
9417         (mono_reflection_create_internal_class): New function.  This is
9418         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
9419         for enum types.
9420
9421         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
9422         New interncall.
9423
9424 2002-05-19  Martin Baulig  <martin@gnome.org>
9425
9426         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
9427         argument to get the length, don't default to the array length.
9428
9429 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
9430
9431         * assembly.c (mono_assembly_setrootdir): New function used to
9432         override the MONO_ASSEMBLIES directory.
9433
9434 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9435
9436         * icall.c: ValueType_GetHashCode() initialize local var.
9437
9438 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9439
9440         * reflection.c: sort custom attributes table.
9441
9442 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9443
9444         * reflection.c: support named args in custom attributes (write support).
9445
9446 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
9447
9448         * reflection.c: fix finally position calculation.
9449
9450 2002-05-15  Radek Doulik  <rodo@ximian.com>
9451
9452         * reflection.c: fixed endianess at many places
9453
9454         * icall.c (ves_icall_InitializeArray): comment out debug msg
9455
9456 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
9457
9458         * object.c (mono_unhandled_exception): new function to handle
9459         unhandled exceptions.
9460         (mono_unhandled_exception): call the UnhandledException event.
9461         (mono_runtime_delegate_invoke): impl.
9462
9463 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
9464
9465         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
9466         returns the RVA, not the direct pointer to the data. Handle the case
9467         when the class size is fixed.
9468
9469 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
9470
9471         * reflection.c: fix some endianess issues.
9472
9473 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
9474
9475         * object.c (mono_runtime_invoke): is now able to catch exceptions.
9476
9477         * threads.c (mono_thread_init): added a callback which is invoked
9478         at thread start.
9479
9480 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9481         
9482         * icall.c: make GetHashCode return non-negative values.
9483
9484 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
9485
9486         * object.c, icall.c, gc.c: revert to address-based hashcode.
9487
9488 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
9489
9490         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
9491
9492 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9493
9494         * icall.c, class.c: special case <Module>.
9495
9496 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
9497
9498         * icall.c: fix bug in GetNow().
9499
9500 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
9501
9502         * object.c (mono_runtime_class_init): make sure that we call all
9503         static class constructors.
9504
9505 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
9506
9507         * reflection.c: sort methodsemantics table.
9508
9509 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
9510
9511         * reflection.h, reflection.c: honour init locals setting.
9512
9513 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
9514
9515         * icall.c: copied Double ToStringImpl for Single ToStringImpl
9516
9517 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9518
9519         * reflection.c: support ContructorBuilders in attribute blob creation.
9520
9521 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9522
9523         * reflection.c: some changes to build a binary that can be run
9524         directly in windows.
9525
9526 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9527
9528         * loader.c: print a big message when an icall can't be found.
9529
9530 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9531
9532         * string-icalls.c: fix bug 24248.
9533
9534 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
9535
9536         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
9537         icall.c, reflection.h: separate assembly loading by pathname and by
9538         assembly name. Use the MONO_PATH env var to search for assemblies.
9539
9540 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9541
9542         * assembly.c, image.h: add some support for assemblies
9543         with multiple modules.
9544         * class.c, class.h: export mono_class_from_typeref().
9545         * loader.c: remove duplicated code and use mono_class_from_typeref(),
9546         instead.
9547
9548 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9549
9550         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
9551         documentation says (the ECMA one is correct).
9552
9553 2002-05-02  Dick Porter  <dick@ximian.com>
9554
9555         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
9556         Don't name the synchronisation mutex.
9557
9558 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
9559
9560         * rand.c
9561         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
9562         Make the prototypes match.
9563         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
9564         Same.
9565
9566         * icall.c
9567         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
9568         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
9569         all systems have tm.tm_zone, so use strftime() with %Z to print
9570         the timezone abreviation into a temp string.
9571
9572         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
9573         rather than mono_array_addr() on a MonoString on Big Endian
9574         machines.
9575
9576 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
9577
9578         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
9579         fix bug 24041
9580
9581 2002-04-30  Dick Porter  <dick@ximian.com>
9582
9583         * socket-io.c: Cope with SOCKET being an integer rather than a
9584         pointer now.
9585
9586         * threads.c: Added Thread_free_internal, to deal with thread
9587         handle cleanup.  Moved calls to handle_store() and handle_remove()
9588         to start_wrapper(), so each can only be called once.  Allocate
9589         synchronisation blocks with GC_malloc(), and use GC finalisation
9590         to close the handles.
9591
9592         * icall.c: added System.Threading.Thread::Thread_free_internal
9593
9594 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9595
9596         * icall.c: support Environment.Exit, CommandLineArgs().
9597
9598 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
9599
9600         * object.c, object.h: added mono_runtime_run_main () and
9601         mono_runtime_get_main_args () for use in System.Environment.
9602
9603 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
9604
9605         * gc.c: fix thinko, enable actual finalization since the jit is now
9606         fixed.
9607
9608 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9609
9610         * gc.c, object.c: take into account that an object may be offset wrt the address
9611         returned by GC_malloc().
9612
9613 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
9614
9615         * image.c: handle files without entries in the assembly table (modules).
9616
9617 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
9618
9619         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
9620         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
9621         allowed to be null when it's System.Object class setup.
9622
9623 2002-04-27  Martin Baulig  <martin@gnome.org>
9624
9625         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
9626         if `tb->parent == NULL' rather than crashing.
9627
9628 2002-04-28  Nick Drochak  <ndrochak@gol.com>
9629
9630         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
9631         calling acos() where asin() should have been called.
9632
9633 2002-04-26  Martin Baulig  <martin@gnome.org>
9634
9635         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
9636         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
9637         there's a subdirectory called `System', but we don't want to read that
9638         subdirectory as an assembly.
9639
9640 2002-04-25  Martin Baulig  <martin@gnome.org>
9641
9642         * debug-symfile.c: Reflect latest MonoString changes.
9643
9644 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
9645
9646         * rand.c, rand.h: instance method icalls need to have an explicit
9647         this pointer as first argument in the C implementation.
9648
9649 2002-04-25  Nick Drochak <ndrochak@gol.com>
9650
9651         * icall.c: Fix typo in map for GetNonZeroBytes
9652
9653 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9654
9655         * string-icalls.c : String does now passes unit tests without any 
9656         errors, the following changes has been made:
9657         
9658         Implemented replace methods.
9659         Renaming of methods to (try) follow the standard.
9660         Fixed compare ordinal
9661         Made all memory allocated directly to function instead of via icall function.
9662         Small performance fix in is_in_array function
9663                         
9664  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
9665
9666         c (mono_string_Internal_ctor_charp_int_int):
9667         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
9668         sindex < 0, throw ArgumentOutOfRangeException instead of
9669         ArgumentNullException.
9670
9671         Added new check for length == 0, however
9672         I need to make it return String.Empty from the C code.
9673         
9674         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
9675         that calculate the length for us here.
9676         
9677         (mono_string_Internal_ctor_sbytep_int_int): Replaced
9678         mono_string_new_utf16 with mono_string_new, since value is utf8.
9679
9680 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9681
9682         * object.c: register the object for finalization if needed.
9683         Allocate one more char in the string for the terminating 0 char.
9684
9685 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
9686
9687         * class.c, class.h, image.c: check if a type implemenst a destructor.
9688         Use the proper key for array class lookups.
9689         * icall.c: register the icalls in the System.GC class.
9690         * gc.c, gc.h: GC-related functions and icalls.
9691
9692 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9693
9694         * icall.c:
9695         * socket-io.c:
9696         * unicode.c: free some strings gotten from mono_string_to_utf8 and
9697         changed a couple of free () by g_free ().
9698
9699         * decimal.c: one-liner in the comments for decimal2string ().
9700
9701 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9702
9703         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
9704
9705 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
9706
9707         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
9708         * object.c (mono_runtime_invoke_array) : handle null in params
9709
9710 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9711
9712         * string-icalls.c: fixed bug in split (one off bug)
9713
9714 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9715
9716         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
9717         * icalls.c: added String::Equals as internal method
9718
9719 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
9720
9721         * threads.c: fixed bug in the double interlocked functions
9722
9723 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
9724
9725         * threads.c: implemented all of the new interlocked icalls.
9726         * string-icalls.c: fix a bug in insert.
9727         * icalls.c: added the icalls for interlocked, removed old string functions.
9728         
9729 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9730
9731         * loader.c: fix off-by-one error when reading argument names.
9732
9733 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9734
9735         * profiler.c: win32 counter implementation (untested).
9736         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
9737         (the latter needs testing and more complete impl. from win32 folks).
9738
9739 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
9740
9741         * object.c: mono_array_new_full workaround mono_array_class_get
9742         problem.
9743
9744 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9745
9746         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
9747         * object.h (mono_string_chars): Changed casting type.
9748
9749 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9750
9751         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
9752                            method signatures to use gunichar2 instead of gint16.
9753
9754 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
9755
9756         * object.h, object.c: domain-specific versions of mono_object_new and
9757         mono_array_new.
9758
9759 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
9760
9761         * object.c: changed String layout
9762
9763         * string-icalls.c (mono_string_Internal_ctor_chara): added
9764         internal string constructors.
9765
9766 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
9767
9768         * threads.c: pass 'this' to the thread start routine.
9769
9770 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9771
9772         * string-icalls.c: fix IndexOf and LastIndexOf. Now
9773         InternalCompareStr don't call twice mono_string_cmp_char for the last
9774         character. Improved performance in mono_string_cmp_char.
9775
9776 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
9777
9778         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
9779         code into its own library: libmonoruntime.
9780
9781 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
9782
9783         * object.h, object.c: changed array format so that szarrays do not
9784         require a bounds structure.
9785         * icall.c, appdomain.c: support for new szarray format.
9786
9787 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
9788
9789         * metadata.c: compare also the retuns type when comparing signatures:
9790         we didn't do this as an optimization since really overloaded methods
9791         must differ also in the arguments, but this doesn't work with
9792         low-level IL code (or when using explicit conversion operators: see
9793         bug#23498 for an example).
9794
9795 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
9796
9797         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
9798
9799 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
9800
9801         * icall.c: make MonoType::GetElementType its own icall.
9802
9803 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
9804
9805         * icall.c: remove MonoMethod_get_Name().
9806         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
9807         object.
9808
9809 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9810
9811         * string-icalls.c: optimized a few methods.
9812
9813 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
9814
9815         * icall.c: added all new string internal calls
9816         * string-icalls.c: added, new string internal call implementation.
9817         * object.c: added mono_string_new_size for allocating a string a size
9818
9819 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
9820
9821         * object.c (mono_object_isinst): use the same code as in the
9822         optimized x86 version.
9823
9824 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
9825
9826         * profiler.c: TSC-based timer code (faster and more accurate).
9827         Not hooked up in configure, yet (set USE_X86TSC to 1).
9828
9829 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
9830
9831         * profiler.c, profiler.h: track time spent compiling methods.
9832         * threads.c: track thread creation/destruction.
9833
9834 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
9835
9836         * profiler.c, profiler.h, profiler-private.h: profiling interface
9837         and sample implementation. Moved here so that it can be used also by
9838         the jit.
9839
9840 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
9841
9842         * reflection.c, reflection.h: keep types and other handles separate in
9843         the hash tables for referred tokens. Add guid for modules.
9844
9845 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
9846
9847         * assembly.c: fix bugs found with valgrind.
9848         * metadata.h, metadata.c: added mono_metadata_guid_heap().
9849
9850 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
9851
9852         * threads: added icall support for getting current domain for
9853                    the thread.
9854  
9855 2002-04-13  Martin Baulig  <martin@gnome.org>
9856
9857         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
9858         (MonoDebugVarInfo): Added `index' field for register based addresses.
9859         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
9860         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
9861         `MonoDebugVarInfo *params' and `guint32 this_offset' with
9862         `MonoDebugVarInfo *this_var'.
9863
9864         * debug-symfile.c (relocate_variable): New static function to write
9865         a location description for a local variable or method parameter.
9866
9867 2002-04-12  Martin Baulig  <martin@gnome.org>
9868
9869         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
9870         stack offset and begin/end scope address of a local variable.
9871         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
9872         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
9873         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
9874
9875         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
9876         Added new relocation types for start/end scope of a local variable.
9877
9878 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
9879
9880         * object.h: add mono_object_domain() macro.
9881         * reflection.c: handle typespecs.
9882         * icall.c: MonoMethod::get_Name() implementation.
9883
9884 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9885
9886         * icall.c: String::GetHashCode() icall implementation.
9887
9888 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9889
9890         * icall.c: String::IndexOfAny icall.
9891         * object.c, object.h: make array->max_length more useful.
9892         Intrduced mono_object_class() and mono_string_length() macros.
9893
9894 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9895
9896         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
9897         instead of g_unichar_isdigit.
9898
9899 2002-04-11  Nick Drochak  <ndrochak@gol.com>
9900
9901         * icall.c: Implement a simple Double.ToString().
9902
9903 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
9904
9905         * appdomain.h: only io-layer.h is supposed to be included.
9906         * icall.c: explicitly import environ. Fix warning.
9907
9908 2002-04-10  Nick Drochak  <ndrochak@gol.com>
9909
9910         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
9911                 return true even if it's not Daylight Savings time.
9912                 Only return false for the case where the function isn't
9913                 implemented for a plaform (read Windows).
9914
9915 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
9916
9917         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
9918         data with a mutex.
9919
9920 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
9921
9922         * mempool.c (mono_mempool_alloc): only use g_malloc when
9923         absolutely necessary.
9924
9925 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9926
9927         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
9928
9929         * class.c (mono_class_vtable): use domain mempool to allocate vtable
9930         (mono_class_proxy_vtable): use domain mempool
9931
9932 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
9933
9934         * appdomain.h, appdomain.c: split initialization that requires the
9935         execution engine support into mono_runtime_init().
9936
9937 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
9938
9939         * class.c (mono_class_init): don't include vtable inside MonoClass
9940         to save some memory, gather some statistics.
9941         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
9942
9943 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9944
9945         * icall.c: internalcall implementation for ValueType.Equals().
9946
9947 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
9948
9949         * object.c (mono_message_init): moved 
9950         (mono_runtime_exec_main): new arch. independent impl.
9951         (mono_runtime_invoke_array): new method - like
9952         mono_runtime_invoke, but you can pass an array of objects.
9953         (mono_remoting_invoke): new arch. independent impl.
9954         (mono_message_invoke): new arch. independent impl.
9955         (mono_runtime_class_init): new arch. independent impl.
9956         (mono_runtime_object_init): new arch. independent impl.
9957
9958 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
9959
9960         * metadata.c, object.c, reflection.c: documented the exported
9961         functions.
9962
9963 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
9964
9965         * icall.c: simpler code to pass the assembly builder data to corlib.
9966         Implement GetNestedTypes() internalcall.
9967
9968 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
9969
9970         * class.c: warn if a type can't be loaded.
9971
9972 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
9973
9974         * image.h: typedef MonoImageOpenStatus
9975         * types.h: removed unused file
9976         
9977 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
9978
9979         * icall.c: Enum_ToObject accepts enum value arguments.
9980
9981 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
9982
9983         * class.c: move initialization of properties, events and nested
9984         classes, so that they happen for interfaces, too.
9985
9986 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
9987
9988         * icall.c: cleanup some ugly casts in Array_SetValue*.
9989
9990 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
9991
9992         * icall.c: the values array fro enums is of the correct type, now.
9993         Implement (correctly) getFullName instead of assQualifiedName for
9994         MonoType.
9995         * reflection.h, reflection.c: added mono_type_get_name ().
9996
9997 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
9998
9999         * assembly.c, image.h: for each MonoImage, record from wich assembly
10000         it was loaded.
10001         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
10002         Make Type.Assembly work.
10003
10004 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
10005
10006         * debug-symfile.h: use char* instead of gpointer to avoid
10007         unnecessary casts.
10008
10009         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
10010
10011         * icall.c (ves_icall_InternalExecute): impl. FielSetter
10012         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
10013
10014 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
10015
10016         * icall.c (mono_message_init): impl. (code cleanup)
10017         (ves_icall_InternalExecute): impl. FieldGetter
10018
10019         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
10020         defined we call all (non-static)methods through the vtable. 
10021
10022 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
10023
10024         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
10025         finalizer even though the memory is still referenced (and the chunk of
10026         memory is not freed).
10027
10028 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10029
10030         * assembly.c: fix brokeness.
10031
10032 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
10033
10034         * class.c: kill some warnings. Check explicit interface method
10035         implementation also without considering the namespace.
10036         Load also literal strings in static class data.
10037
10038 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
10039
10040         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
10041         (default_assembly_name_resolver): Make the resolver take the
10042         "base" directory where the assembly was originally defined, so we
10043         can load DLLs that are in the same directory as the assembly that
10044         is being referenced.
10045
10046 2002-03-28  Dick Porter  <dick@ximian.com>
10047
10048         * file-io.h: 
10049         * file-io.c:
10050         * socket-io.c: 
10051         * unicode.h: 
10052         * unicode.c: Warning cleanups
10053
10054 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
10055
10056         * object.h, reflection.h: use the correct type instead of MonoObject.
10057
10058 2002-03-28  Martin Baulig  <martin@gnome.org>
10059
10060         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
10061         (mono_debug_update_symbol_file): Initialize classes if necessary.
10062
10063 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10064
10065         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
10066         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
10067
10068 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
10069
10070         * assembly.h: fix function prototype.
10071         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
10072         * mono-endian.h: use const cast.
10073
10074 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10075
10076         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
10077
10078 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10079
10080         * loader.c: don't assert when a typeref can't be loaded, give
10081         a chance to the runtime to trow an exception instead.
10082         * loader.h: fix warning.
10083
10084 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
10085
10086         * class.c (mono_class_proxy_vtable): added proxy support
10087
10088 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
10089
10090         * icall.c: removed last of PAL calls, added System.Environment
10091         * file-io.h, file-io.c: MonoIO implementation
10092         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
10093
10094 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10095
10096         * appdomain.c: do not use the byte marker in ldstr table lookup.
10097         * debug-helpers.c: allow two ':' to separate class and method name.
10098         * object.c: allocate arrays bounds with the GC, too.
10099         * verify: add a few more checks.
10100
10101 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
10102
10103         * reflection.c: output also literal strings. Allocate parameter data
10104         with GC_malloc() (thanks, Martin, for catching this!).
10105
10106 2002-03-26  Martin Baulig  <martin@gnome.org>
10107
10108         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
10109         include the `this' offset in the `param_offsets'.
10110
10111 2002-03-25  Martin Baulig  <martin@gnome.org>
10112
10113         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
10114         mono_debug_get_class() function to get the classes. Added new
10115         relocation types for arrays and strings.
10116         (mono_debug_get_class): New static function to search in all
10117         referenced assemblies for a metadata token.
10118
10119         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
10120
10121 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10122
10123         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
10124         hold gc-allocated objects. Make the string heap a stream like the
10125         others. Removed duplicated code when writing stream info.
10126         Added asserts to catch possible buffer overflows. Set the sorted map
10127         for tables that need sorting. Added some documentation.
10128
10129 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
10130
10131         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
10132         for interned strings and vtables.
10133
10134 2002-03-24  Martin Baulig  <martin@gnome.org>
10135
10136         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
10137         it in the array since it was created with g_slist_prepend().
10138
10139 2002-03-24  Martin Baulig  <martin@gnome.org>
10140
10141         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
10142         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
10143         (mono_debug_method_from_token): Renamed to
10144         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
10145         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
10146
10147         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
10148         relocation types.
10149
10150         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
10151
10152 2002-03-24  Martin Baulig  <martin@gnome.org>
10153
10154         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
10155         (mono_debug_method_from_token): New func.
10156
10157         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
10158         New interncall, calls mono_debug_local_type_from_signature().
10159         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
10160         calls mono_debug_method_from_token().
10161
10162 2002-03-23  Martin Baulig  <martin@gnome.org>
10163
10164         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
10165         specifies the number of bytes to be converted, not the array size.
10166         Return the number of chars, not the number of bytes.
10167         (ves_icall_iconv_get_chars): The `byteCount' argument
10168         specifies the number of bytes to be converted, not the array size.
10169
10170 2002-03-23  Martin Baulig  <martin@gnome.org>
10171
10172         * reflection.h (MonoReflectionSigHelper): New type.
10173
10174         * reflection.c (mono_reflection_sighelper_get_signature_local),
10175         (mono_reflection_sighelper_get_signature_local): New functions.
10176
10177         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
10178         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
10179         interncalls.
10180
10181 2002-03-23  Martin Baulig  <martin@gnome.org>
10182
10183         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
10184         is_writeable is set.
10185         (mono_raw_buffer_update): New function to write the modified map
10186         back to disk.
10187
10188         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
10189
10190         * debug-symfile.c (mono_debug_update_symbol_file): Call
10191         mono_raw_buffer_update() when done writing.
10192
10193 2002-03-23  Martin Baulig  <martin@gnome.org>
10194
10195         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
10196
10197         * debug-symfile.c: Added support for arguments and local variables.
10198
10199 2002-03-23  Dick Porter  <dick@ximian.com>
10200
10201         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
10202         protected by ifdefs, hence breaking the w32 build.
10203
10204 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10205
10206         * object.c: implement is_interned() the right way.
10207
10208 2002-03-21  Martin Baulig  <martin@gnome.org>
10209
10210         * debug-symfile.[ch]: New files to handle debugging information
10211         files. There's also support to dynamically update these symbol
10212         files to include machine dependent information.
10213
10214 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
10215
10216         * threads.c (mono_thread_create): new function to create thread
10217         from C
10218
10219 2002-03-20  Martin Baulig  <martin@gnome.org>
10220
10221         * icall.c (ves_icall_InternalInvoke): Create a new object if the
10222         method is a constructor.
10223         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
10224         points to ves_icall_InternalInvoke().
10225
10226 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
10227
10228         * file-io.c: Flush shouldn't throw exceptions.
10229
10230 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
10231
10232         * file-io.c: FileStream flush support; FileSetLength now
10233         restores file pointer.
10234
10235 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10236
10237         * class.c: set image for pointer classes.
10238
10239 2002/03/19  Nick Drochak <ndrochak@gol.com>
10240
10241         * sysmath.c: Forgot one.
10242
10243 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
10244
10245         * sysmath.c: Avoid redefining existing names.
10246
10247 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
10248
10249         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
10250         handled by runtime as icall rather than dllimport from libm.so
10251         * file-io.c, file-io.h: fixed handle argument type.
10252
10253 2002-03-18  Dick Porter  <dick@ximian.com>
10254
10255         * reflection.c (mono_image_get_type_info): rename interface to
10256         iface, because of "#define interface struct" on windows.
10257
10258 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
10259
10260         * class.c, class.h: rename and export mono_ptr_class_get().
10261         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
10262         * reflection.c, reflection.h, icall.c: better/saner type name
10263         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
10264         method signatures.
10265
10266 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
10267
10268         * class.c (mono_class_init): removed hardcoded GHC_SLOT
10269
10270         * icall.c (ves_icall_InternalInvoke): impl.
10271
10272 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10273
10274         * reflection.c: output the interface map table, too.
10275
10276 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10277
10278         * class.c (class_compute_field_layout): separate computation of 
10279         static field layout
10280
10281 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
10282
10283         * icall.c: added System.Buffer support.
10284         * file-io.c: moved file icalls from PAL to FileStream.
10285
10286 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
10287
10288         * icall.c (ves_icall_System_Object_GetHashCode): impl.
10289
10290 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
10291
10292         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
10293
10294 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10295
10296         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
10297
10298 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10299
10300         * debug-helpers.{c,h}: moved here from monograph some useful functions
10301         to locate a method by name/signature in a class or image. Included
10302         also a small and flexible IL disassembler.
10303
10304 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10305
10306         * reflection.c: fixup tokens in methods with small header size, too.
10307
10308 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
10309
10310         * object.c (mono_string_to_utf8): remove assert(!error), instead
10311         print a warning. 
10312
10313 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
10314
10315         * icall.c: update to the new mono_Array_class_get interface.
10316
10317 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10318
10319         * appdomain.c, object.c: Boehm-GC enable.
10320         * icall.c: make get_data_chunk() support split data requests.
10321         Ensure a class is initialized in more cases. Return only the first
10322         property found in GetProperties() or the compiler gets confused. 
10323         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
10324         * reflection.h, reflection.c: add fixup mechanism for field and method
10325         tokens. Initialize assembly->typeref in a single place. Output
10326         properties after events. Support custom attributes for events, too.
10327         Typo fix for paramter custom attrs.
10328
10329 2002-03-07  Martin Baulig  <martin@gnome.org>
10330
10331         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
10332
10333 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
10334
10335         * class.c (mono_array_class_get): fix. for multi. dim. arrays
10336
10337 2002-03-06  Martin Baulig  <martin@gnome.org>
10338
10339         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
10340         non-zero lower bounds. See testcases #F10-#F13.
10341
10342 2002-03-05  Martin Baulig  <martin@gnome.org>
10343
10344         * exception.c (mono_get_exception_argument_out_of_range): New exception.
10345
10346         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
10347         ves_icall_System_Array_GetValue(), only calculate the absolute array position
10348         here.
10349         (ves_icall_System_Array_SetValue): Likewise.
10350         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
10351         as argument and does the actual work. This function is used when copying a
10352         multi-dimensional array.
10353         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
10354         now do all the widening conversions of value types.
10355         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
10356
10357 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10358
10359         * class.c: remove some magic numbers and use the smbolic names,
10360         instead. Added init_events() to load event info at class init time.
10361         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
10362         and mono_metadata_methods_from_event().
10363         * reflection.h, reflection.c: added support for writing out the evnets
10364         related information.
10365
10366 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
10367
10368         * reflection.h, icall.c: use a different method (GetInterfaces)
10369         to gather interface info and add isbyref, isprimitive and
10370         ispointer to the ves_icall_get_type_info() return value.
10371
10372 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
10373
10374         * class.h: stared adding support for events.
10375         * icall.c: split find_members implementation. Added debug icall to get
10376         the address of an object.
10377         * reflection.c: handle TypeBuilders in mono_type_get_object().
10378
10379 2002-03-01  Martin Baulig  <martin@gnome.org>
10380
10381         * icall.c (ves_icall_System_Array_GetLength): This must throw an
10382         ArgumentOutOfRangeException(), not an ArgumentException().
10383         (ves_icall_System_Array_GetLowerBound): Likewise.
10384         (ves_icall_System_Array_GetValue): Improved argument checking.
10385         (ves_icall_System_Array_SetValue): Improved argument checking.
10386
10387 2002-03-01  Martin Baulig  <martin@gnome.org>
10388
10389         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
10390         called with invalid arguments rather than just dying with g_assert().
10391         (ves_icall_System_Array_SetValue): Likewise.
10392         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
10393         raise a NotImplementedException instead.
10394         (ves_icall_System_Array_GetLength): Added argument checking.
10395         (ves_icall_System_Array_GetLowerBound): Added argument checking.
10396
10397 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
10398
10399         * object.h (mono_assert): new macros mono_assert and
10400         mono_assert_not_reached
10401
10402 2002-02-28  Martin Baulig  <martin@gnome.org>
10403
10404         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
10405         and "System::String::IsInterned" to "System::String::_IsInterned".
10406
10407 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
10408
10409         * icall.c: remove hacks for typebuilder. Added icall to create a
10410         modified type from a tybebuilder.
10411         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
10412         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
10413         to create a backing MonoClass for a TypeBuilder.
10414
10415 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10416
10417         * class.c, class.h: more refactoring of class init.
10418         Export mono_class_setup_mono_type() and mono_class_setup_parent().
10419
10420 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
10421
10422         * marshal.c, marshal.h: start of marshaling interface.
10423
10424 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10425
10426         * icall.c: fix order in assembly qualified name icall.
10427
10428 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10429
10430         * class.c: do not free str, since we store it in the hash table.
10431         * reflection.h: add label field to MonoILExceptionInfo.
10432         * reflection.c: handle references to more than one assembly. Handle
10433         case when there isn't a module created in the assembly.
10434
10435 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
10436
10437         * class.c: Fix typo. Start refactoring of class init code.
10438
10439 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
10440
10441         * appdomain.c: exit with 1 on error.
10442         * class.c: we already have the name in MonoClassField.
10443         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
10444         MonoStreamHeader instead of an offset of image->raw_metadata.
10445
10446 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
10447
10448         * appdomain.c (mono_init): Be even more descriptive about the error.
10449
10450 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
10451
10452         * appdomain.c: give the user an informative message when corlib can't
10453         be loaded.
10454
10455 2002-02-26  Martin Baulig  <martin@gnome.org>
10456
10457         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
10458         New icall to get the time zone data.
10459
10460 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10461
10462         * reflection.c: set virtual and raw size of section correctly.
10463         * threads.c: transfer domain information to newly created threads.
10464
10465 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10466
10467         * class.c: when instancing a class in a domain, load the default
10468         vaules for static fields from the constant table. Fix System.Enum to
10469         not be an enum.
10470         * icall.c: implement Object::GetType() internalcall. Implemented
10471         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
10472         Fixed checking of binding flags in find_members().
10473         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
10474         * reflection.c: handle enumerations when writing to the constant
10475         table. Use a different object cache for types.
10476
10477
10478 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
10479
10480         * object.c (mono_object_isinst): fix for arrays
10481
10482         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
10483
10484 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10485
10486         * object.c: don't use mprotect ()  and fix intern pool hash table
10487         lookup for big endian systems.
10488
10489 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10490
10491         * icall.c: change type_is_subtype_of () signature.
10492
10493 2002-02-21  Mark Crichton  <crichton@gimp.org>
10494
10495         * rand.c, rand.h: Added random number generator for
10496         System.Security.Cryptography classes.
10497
10498         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
10499
10500         * icall.c: Added System.Security.Cryptography calls.
10501
10502 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
10503
10504         * class.c, icall.c, metadata.c: better support for pointer types.
10505         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
10506         * reflection.c: Add support for getting custom attrs for properties
10507         and simplify some code.
10508
10509 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
10510
10511         * icall.c: change getToken () and add custom attribute GetBlob()helper
10512         method.
10513         * reflection.h: add custom attrs array to the reflection builder structures.
10514         * reflection.c: encode and emit custom attributes for all the relevant
10515         reflection objects. Cache fieldref and methodref tokens. Change
10516         mono_image_create_token() interface to take a MonoDynamicAssembly.
10517         More complete custom attributes decoder. Load custom attributes for
10518         Assembly, Field, Method and Constructor objects, too. Make the
10519         returned array an Attribute[] one, not object[]. Added
10520         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
10521         custom attribute constructor.
10522
10523 2002-02-20  Dick Porter  <dick@ximian.com>
10524
10525         * icall.c:
10526         * rawbuffer.c:
10527         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
10528         problem code out for now).
10529
10530 2002-02-19  Radek Doulik  <rodo@ximian.com>
10531
10532         * object.c (mono_ldstr): use hash table to avoid multiple swapping
10533
10534 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
10535
10536         * icall.c: register the GetCustomAttributes method.
10537         * object.c, object.h: add mono_string_new_len ().
10538         * reflection.h, reflection.c: added mono_runtime_invoke(),
10539         mono_install_runtime_invoke(). Added
10540         mono_reflection_get_custom_attrs () to load custom attributes and
10541         create the attribute objects.
10542
10543 2002-02-19  Dick Porter  <dick@ximian.com>
10544         * threads-dummy-types.c:
10545         * threads-dummy-types.h:
10546         * threads-dummy.c:
10547         * threads-dummy.h:
10548         * threads-pthread-types.c:
10549         * threads-pthread-types.h:
10550         * threads-pthread.c:
10551         * threads-pthread.h:  Deleted obsolete files
10552
10553 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
10554
10555         * class.c (mono_class_vtable): runtime init the class when we
10556         allocate static class data.
10557
10558         * icall.c (ves_icall_System_Array_SetValue): check for null values.
10559
10560         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
10561         and String - but we will need generic marshalling support in the
10562         future. 
10563         (mono_init): set the domain name in a ms compatible way
10564
10565         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
10566         String[].
10567
10568 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
10569
10570         * object.c (mono_array_clone): use alloca() instead of g_malloc  
10571         for sizes
10572
10573         * appdomain.c (mono_domain_unload): impl.
10574
10575 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10576
10577         * appdomain.c, object.c: fix intern pool implementation.
10578         * class.c: fix alignment code.
10579
10580 2002-02-16  Radek Doulik  <rodo@ximian.com>
10581
10582         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
10583         and s2 > s1, just copy lower bytes to be compatible with little
10584         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
10585         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
10586
10587         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
10588         force big_endian to be 1 for big endian machines 
10589         (ves_icall_iconv_new_decoder): ditto
10590
10591 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
10592
10593         * socket-io.c (convert_sockopt_level_and_name): If the system
10594         doesn't define SOL_IP or SOL_TCP, get them by hand using
10595         getprotobyname() and caching the values (because this could be a
10596         slow operation).
10597         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
10598         Use the appropriate struct when the system does support it. Ie,
10599         not all systems have struct ip_mreqn so use struct ip_mreq when
10600         appropriate.
10601
10602 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
10603
10604         * reflection.c: handle finally clauses.
10605
10606 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
10607
10608         * socket-io.c: use g_snprintf() instead of snprintf.
10609
10610 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10611
10612         * reflection.c (mono_param_get_objects): Cast second argument to
10613         mono_method_get_param_names to a const char** to silence the
10614         compiler warning.
10615
10616         * appdomain.c (mono_domain_assembly_open): Put parens around the
10617         truth statement in the for-loop.
10618
10619         * unicode.c (iconv_convert): Got rid of a compiler warning about
10620         int i being unused when the system has a new iconv.
10621         (iconv_get_length): Same.
10622
10623         * image.c (load_class_names): Cast the second argument to
10624         g_hash_table_insert() to char* to hush compiler warnings about the
10625         arg being a const.
10626         (mono_image_open): Same here.
10627
10628         * socket-io.c: Don't conditionally include sys/filio.h or
10629         sys/sockio.h here anymore since we now get them from
10630         io-layer/io-layer.h
10631         (inet_pton): If the system doesn't support inet_aton, implement
10632         using inet_addr and also #define INADDR_NONE if it isn't defined
10633         by the system.
10634
10635 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
10636
10637         * metadata.c, metadata.h: added function to get packing and size info
10638         of a typedef.
10639         * reflection.h, reflection.c: handle field RVA data. Save info about
10640         the table layout if needed. Assign typedef indexes to all the types
10641         before dumping the info about them to avoid forward reference problems.
10642
10643 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
10644
10645         * socket-io.c (convert_sockopt_level_and_name): ifdef
10646         SO_ACCEPTCONN because it is not defined on my system (old debian)
10647
10648 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
10649
10650         * opcode.c: use stddef.h to get NULL.
10651
10652 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
10653
10654         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
10655         for FIONBIO, FIONREAD and SIOCATMARK.
10656         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
10657         define INADDR_NONE and besides, inet_addr() is deprecated and
10658         should not be used. Use inet_pton() instead - it also has the
10659         added bonus that it can easily handle IPv6 addresses as well.
10660         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
10661
10662 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
10663
10664         * decimal.c: remove _MSC_VER conditional.
10665
10666 2002-02-13  Dick Porter  <dick@ximian.com>
10667
10668         * socket-io.c: 
10669         * icall.c: Internal calls for Blocking, Select, Shutdown,
10670         GetSocketOption and SetSocketOption
10671
10672 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10673
10674         * assembly.cs: better resolver: use it instead of some kludgy
10675         code.
10676
10677 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
10678
10679         * reflection.c: the best way to speed-up the compiler is to avoid
10680         infinite loops.
10681
10682 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
10683
10684         * class.c (mono_class_vtable): changed the object layout
10685         (obj->vtable->class). 
10686         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
10687
10688 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
10689
10690         * assembly.c: look for assemblies in the assembly dir, too.
10691
10692 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10693
10694         * class.c: fix thinko in mono_class_from_type().
10695
10696 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
10697
10698         * exception.h, exception.c: added TypeLoadException.
10699         * object.h, object.c: added mono_array_clone ().
10700         * icall.c: handle throwOnError in AssemblyGetType().
10701         Added Array.Clone().
10702         * opcode.h, opcode.c: use a single value for the opcode val.
10703         Compile fix for non-gcc compilers.
10704
10705 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
10706
10707         * opcodes.c, opcodes.h: export interesting info about opcodes.
10708
10709 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
10710
10711         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
10712         icalls. 
10713
10714         * class.c (class_compute_field_layout): set element_class for enums
10715         (mono_class_create_from_typedef): set element_class for normal classes
10716
10717         * icall.c (ves_icall_System_Enum_get_value): impl.
10718
10719         * class.c (mono_class_create_from_typedef): do not set valuetype
10720         flag for System.ValueType and System.Enum
10721
10722 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
10723
10724         * unicode.c (iconv_convert): fix big endian problem.
10725
10726 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
10727
10728         * class.c: add asserts if we are ever going to scribble over memory.
10729         * socket-io.c: not all systems have AF_IRDA defined.
10730
10731 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
10732
10733         * class.c (class_compute_field_layout): do not consider static
10734         fields to compute alignment
10735
10736 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
10737
10738         * appdomain.c (mono_appdomain_get): impl.
10739         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
10740
10741 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
10742
10743         * icall.c: ignore "file://" prefix when loading an assembly.
10744
10745 2002-01-23  Dick Porter  <dick@ximian.com>
10746
10747         * socket-io.c:
10748         * icall.c:
10749         * Makefile.am: Added socket support
10750
10751 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10752
10753         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
10754         code back.  This should return the assemblies that are loaded by
10755         the runtime on behalf of an application domain. 
10756
10757         The current implementation is still broken, it just returns every
10758         assembly loaded, but until we get real applications domain this
10759         will do.
10760
10761 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
10762
10763         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
10764         AppDomain object.
10765
10766 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
10767
10768         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
10769         the mono_class_from_name lookup.
10770         (ves_icall_get_parameter_info): ditto.
10771         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
10772         method.
10773         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
10774
10775 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
10776
10777         * class.c: load also nested classes on class init.
10778         System.ValueType instance methods gets passed boxed
10779         values, unless methods in derived classed that get a pointer to the
10780         data.
10781         * icall.c: use better name parsing code in GetType().
10782         * image.c, image.h: add mono_image_loaded ().
10783         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
10784         * reflection.c, reflection.h: added mono_reflection_parse_type().
10785
10786 2002-01-22  Veronica De Santis <veron78@interfree.it>
10787
10788         * icall.c : Added mapping of internal calls for Manual and Auto reset events
10789         * threads.c : Added the implementation of internal calls for events
10790         * threads.h : Added prototypes of internal calls for events
10791         
10792 2002-01-21  Radek Doulik  <rodo@ximian.com>
10793
10794         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
10795
10796 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
10797
10798         * class.c (mono_class_init): set min_align to 1 (instead of 0)
10799         (mono_class_value_size): use min_align
10800
10801 2002-01-20  Dick Porter  <dick@ximian.com>
10802
10803         * threads.h:
10804         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
10805         so it compiles on w32.
10806
10807 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
10808
10809         * metadata.c (mono_type_stack_size): impl.
10810
10811         * class.c (mono_class_get_field): impl. memberref token
10812
10813 2002-01-16 Veronica De Santis <veron78@@interfree.it>
10814
10815         * icall.h : Added the internal calls mapping for CreateMutex_internal
10816                     and ReleaseMutex_internal.
10817         * threads.h : Added the prototype of mutexes internal calls.
10818         * threads.c : Added the implementations of mutexes internal calls.
10819
10820 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
10821
10822         * metaparse.h: removed unused file.
10823         * reflection.c, reflection.h: added stream_data_align () function 
10824         to align data in streams and keep stream aligned. Add support for
10825         exception support in method headers.
10826
10827 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
10828
10829         * unicode.c: make iconv_convert () return the number of bytess written
10830         in the output buffer.
10831
10832 2002-01-15  Dick Porter  <dick@ximian.com>
10833         * threads.c: Make the runtime's idea of infinite timeouts coincide
10834         with the class library's
10835
10836         Fix a particularly egregious bug in mono_thread_cleanup(). That
10837         code was so utterly bogus it must have been written on a Monday.
10838
10839 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
10840
10841         * reflection.h: add subtypes field to TypeBuilder.
10842         * reflection.c: encode constants for literal fields.
10843         Handle subtypes. Fix user string token (and add a zero byte)
10844         at the end.
10845         
10846 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
10847
10848         * class.c (mono_class_init): bug fix: assign slot numbers for
10849         abstract methods.
10850
10851 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10852
10853         * reflection.c: don't try to output a code RVA for abstract methods.
10854         Small fixes for method header format. Output parameter info to the
10855         ParamDef table. Save method overriding info to MethodImpl table.
10856         Fix property support. Allow typedef.extends to be a type in the
10857         building assembly.
10858         * verify.c: fix off-by-one error.
10859
10860 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
10861
10862         * class.c: fix mono_class_from_mono_type () for szarray types.
10863         Remove unused cache check in mono_class_from_type_spec().
10864         * icall.c: *type_from_name () functions handle simple arrays and byref.
10865         * reflection.c: handle byref and szarray types. Handle methods without
10866         body (gets P/Invoke compilation working). Handle types and fields in
10867         get_token ().
10868         * reflection.h: add rank to MonoTypeInfo.
10869
10870 2002-01-10  Dick Porter  <dick@ximian.com>
10871
10872         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
10873         internal calls
10874
10875 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
10876
10877         * icall.c: initialize class in type_from_handle ().
10878         Loop also in parent classes for get_method ().
10879         * reflection.c: properly encode class and valuetype types.
10880         Start on encoding TypeBuilder types. Handle fieldrefs.
10881         Use correct length when registering a user string.
10882         Handle ConstructorBuilder and MonoMethod in get_token ().
10883         Make mono_type_get_object () aware of cached types.
10884         * object.c: back out change to mono_string_new ().
10885
10886 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
10887         * object.c: mono_string_new should return a NULL when the string 
10888         passed in is NULL -- not try to deference it.
10889         
10890 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
10891
10892         * icall.c: hack to make IsSubType work for TypeBuilders.
10893         * reflection.c: emit constructors before methods.
10894         Retrieve param names in mono_param_get_objects().
10895
10896 2002/01/05  Nick Drochak  <ndrochak@gol.com>
10897
10898         * Makefile.am: fix list of headers and sources so automake 1.5
10899         doesn't complain. Removed \# at end of list.
10900
10901 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
10902
10903         * reflection.c: get token for a method ref. Set return type of
10904         constructor to void.
10905         * loader.c: debug message.
10906         * class.c: typo fix.
10907
10908 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
10909
10910         * icall.c: fix array init with rank > 1. FindMembers
10911         loops in parent class as well.
10912         * image.c: do not insert nested types in name cache.
10913         * reflection.c: warning fix.
10914         * reflection.h: add override method (for interface impl).
10915
10916 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
10917
10918         * metadata.c: fix customattr decoding.
10919
10920 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
10921
10922         * rawbuffer.cs: Added native Win32 implementation, avoids using
10923         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
10924
10925 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
10926
10927         * class.c: make the low-level routines handle the cache.
10928
10929 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
10930
10931         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
10932
10933 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
10934
10935         * class.c: fix mono_array_element_size() for objects.
10936         * class.h, class.c: add properties to MonoClass and load them
10937         at init time.
10938         * icall.c: check with isinst() when assigning a value to an array
10939         instead of requiring the classes to match exactly.
10940         Implemented icall for System.Type::GetType().
10941         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
10942         enums. Handle bindingflags when looking for methods and fields.
10943         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
10944         and mono_metadata_methods_from_property().
10945         * reflection.h, reflection.c: added structures for propreties,
10946         parameters and enums. Implemented mono_property_get_object() and
10947         mono_param_get_objects().
10948
10949 2001-12-18  Dick Porter  <dick@ximian.com>
10950
10951         * file-io.c: Use mono_string_to_utf16() instead of
10952         mono_string_chars()
10953
10954         * object.c: Added mono_string_to_utf16(), which copies the non
10955         NULL-terminated MonoString into a new double-null-terminated
10956         buffer.
10957
10958 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
10959
10960         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
10961
10962 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
10963
10964         * file-io.c: raise exceptions if handle is invalid.
10965
10966 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
10967
10968         * assembly.c: yet another check for mscorlib.
10969         * class.c, class.h: load nesting info for classes.
10970         * icall.c: many new functions to support the Reflection classes.
10971         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
10972         * reflection.h, reflection.c: mono_image_create_token(),
10973         mono_assembly_get_object(), mono_type_get_object(),
10974         mono_method_get_object(), mono_field_get_object(): methods to return
10975         objects that parallel the C representation of assemblies, types,
10976         methods, fields.
10977
10978 2001-12-11  Dick Porter  <dick@ximian.com>
10979
10980         * icall.c:
10981         * file-io.c: Internal calls for file IO.
10982
10983 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
10984
10985         * tabledefs.h: missing FileAttributes.
10986         * verify.h, verify.c: use is_valid_string () to simplify and check for
10987         valid strings more correctly. Fix warnings and speeling.
10988         Check more tables: Filed, File, ModuleRef, StandAloneSig.
10989         Check code: branches, maxstack, method calls.
10990
10991 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
10992
10993         * object.c (mono_object_allocate): removed static, so that the jit
10994         can allocate value types.
10995
10996         * icall.c (ves_icall_System_DateTime_GetNow): impl.
10997
10998 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
10999
11000         * class.c: init enum types right away and register the
11001         token->MonoClass map in mono_class_create_from_typedef ().
11002         * verify.h, verify.c: first cut of the verifier.
11003         * pedump.c: add --verify switch to verify metadata tables.
11004         * tabledefs.h: add some missing enums.
11005
11006 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
11007
11008         * class.c (mono_install_runtime_class_init): impl.
11009         (mono_class_init): renamed mono_class_metadata_init to
11010         mono_class_init, also removed the metadata_inited flag
11011
11012         * object.c (mono_object_isinst): use faster algorithm
11013
11014 2001-11-30  Radek Doulik  <rodo@ximian.com>
11015
11016         * mono-endian.h: reverted last change
11017         added function prototypes
11018
11019         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
11020         add mono-endian.c back
11021
11022         * mono-endian.c: returned back, as Paolo pointed out, it's needed
11023         for unaligned access, I've mistaked it with endianess. I am
11024         sorry.
11025         (mono_read16): fix reverted endianess
11026         (mono_read64): ditto
11027         (mono_read32): ditto
11028
11029 2001-11-30  Dick Porter  <dick@ximian.com>
11030
11031         * exception.c: Implement mono_exception_from_name()
11032
11033 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11034
11035         * metadata.h, metadata.c: remove params_size and locals_size and their
11036         calculation from the metadata code: they are only usefult to the
11037         interp.
11038
11039 2001-11-29  Radek Doulik  <rodo@ximian.com>
11040
11041         * object.c (mono_ldstr): swap bytes here, it's probably not the
11042         best place, but works for me now, I'll redo it once I know mono
11043         better, also note that I add PROT_WRITE and don't reset back, also
11044         note that it's only affects big endians, so x86 should be OK
11045
11046         * mono-endian.h (read16): use just glib macros for both endians
11047
11048         * mono-endian.c: removed as glib macros are used in in
11049         mono-endian.h so we don't need to care about endianess for read
11050         macros as glib does that for us already
11051
11052 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
11053
11054         * class.h, class.h: take minimum alignment into consideration so
11055         that the fields of a class remain aligned also when in an array.
11056
11057 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11058
11059         * loader.h, loader.c: add mono_method_get_param_names().
11060         * class.c: 0-init class fields.
11061
11062 2001-11-26  Dick Porter  <dick@ximian.com>
11063
11064         * icall.c:
11065         * threads-types.h:
11066         * threads.c: New file that handles System.Threading on all platforms
11067
11068         * object.c: 
11069         * object.h: Remove the synchronisation struct from MonoObject,
11070         replace it with a pointer that gets initialised on demand
11071
11072         * Makefile.am: Replace all the system-specific threading code with
11073         a single file that uses the new wrapper library
11074
11075 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
11076
11077         * class.c, class.h: add mono_install_trampoline() so that the runtime
11078         can register a function to create a trampoline: removes the ugly
11079         requirement that a runtime needed to export arch_create_jit_trampoline.
11080         * object.h, object.c: added mono_install_handler() so that the runtime
11081         can install an handler for exceptions generated in C code (with
11082         mono_raise_exception()). Added C struct for System.Delegate.
11083         * pedump.c: removed arch_create_jit_trampoline.
11084         * reflection.c: some cleanups to allow registering user strings and
11085         later getting a token for methodrefs and fieldrefs before the assembly
11086         is built.
11087         * row-indexes.h: updates and fixes from the new ECMA specs.
11088
11089 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
11090
11091         * class.h, class.c: add enum_basetype field to MonoClass.
11092         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
11093         to get index in the constant table reated to a field, param or
11094         property.
11095         * reflection.h, reflection.c: handle constructors. Set public-key and
11096         version number of the built assembly to 0.
11097         * row-indexes.h: update from new ECMA spec.
11098
11099 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11100
11101         * class.h, class.c: add a max_interface_id to MonoClass.
11102         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
11103         since it's used to do that. Added mono_type_type_from_obj().
11104         Make GetType() return NULL instead of segfaulting if the type was not
11105         found. Handle simple arrays in assQualifiedName.
11106         * object.h: add a struct to represent an Exception.
11107         * reflection.c: output call convention in method signature.
11108         Add code to support P/Invoke methods and fixed offsets for fields.
11109
11110 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
11111
11112         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
11113         the value.
11114         * icall.c: use mono_array_addr instead of array->vector: fixes the
11115         reflection image writing.
11116         * reflection.c: init call convention byte to 0 in method signature.
11117         Encode the property signature. Don't output property-related methods
11118         twice. Really process the properties for a type (don't cast a field to
11119         a property, my mom always told me that).
11120         Fix 64 bit issues in pointer alignment in a different and more
11121         readable way.
11122
11123 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
11124
11125         * loader.h: Removed type class from MonoDefaults, added monotype
11126
11127         * loader.c: Loaded MonoType, removed loading of Type
11128
11129         * icall.c (my_mono_new_object): Now returns a System.MonoType,
11130         and fills in System.Type._impl with a RuntimeTypeHandle rather
11131         than the actual MonoClass *
11132
11133         (ves_icall_type_from_handle): change from type_class to
11134         monotype_class
11135
11136         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
11137         implemented
11138
11139         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
11140         implemented
11141
11142         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
11143
11144         (ves_icall_System_Reflection_Assembly_GetType): implemented
11145
11146         (ves_icall_System_MonoType_assQualifiedName): implemented
11147
11148         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
11149
11150 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
11151
11152         * assembly.c (mono_assembly_open): Implement a cache for the
11153         assemblies. 
11154
11155         (mono_assembly_close): only destroy the assembly when the last
11156         reference is gone.
11157         
11158 2001-11-09  Dick Porter  <dick@ximian.com>
11159
11160         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
11161
11162 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
11163
11164         * class.c (mono_class_metadata_init): bug fix: compute the right slot
11165
11166 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
11167
11168         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
11169         from Martin Weindel.
11170         * object.h: add mono_string_chars ().
11171
11172 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
11173
11174         * reflection.c (build_compressed_metadata): Eliminates warnings
11175         and uses 64-bit clean code.
11176
11177         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
11178         (mono_type_equal): Change signature to eliminate warnings.
11179
11180 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
11181
11182         * icall.c, loader.c: remove the internalcall array constructors.
11183         Changes to match the new MonoArray structure.
11184         * object.h, object.c: an array object doesn't allocate an extra
11185         vector. Add mono_array_new_full () to create jagged arrays easily.
11186
11187 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
11188
11189         * metadata.h, metadata.c: add mono_metadata_field_info () to
11190         retreive all the info about a field from vairous tables.
11191         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
11192         * class.h, class.c: augment MonoClassField with more info.
11193         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
11194         policy and load a field's RVA if needed.
11195
11196 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
11197
11198         * class.c (mono_class_metadata_init): create a trampoline for all
11199         virtual functions instead of actually compiling them.
11200
11201 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
11202
11203         * class.h, class.c: include name in MonoClassField.
11204         * class.c: fix fundamental type of System.Object and System.String.
11205         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
11206         tokens in ldtoken.
11207         * icall.c: remove internalcalls for the Reflection stuff that is now
11208         done in C# code.
11209         * loader.c: mono_field_from_memberref () implementation.
11210         * mono-endian.c: thinko (s/struct/union/g).
11211         * object.c, object.h: make the mono_string_* prototypes actually use
11212         MonoString instead of MonoObject.
11213         * reflection.c, reflection.h: updates for changes in the reflection
11214         code in corlib: we use C structures that map to the actual C# classes.
11215         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
11216         fat method header if needed and use the info from the ILGenerator for
11217         methods. Handle fields in types. Misc fixes.
11218
11219 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
11220
11221         * class.c (mono_class_metadata_init): bug fix: always allocate
11222         space for static class data
11223
11224 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
11225
11226         * class.c (mono_compute_relative_numbering): use relative
11227         numbering to support fast runtime type checks.
11228
11229 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
11230
11231         * class.c (mono_class_create_from_typeref): added debugging output
11232         to print class name when MonoDummy is returned instead of real class
11233
11234 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
11235
11236         * class.c (mono_class_metadata_init): interface offset table now
11237         contains pointers into the vtable - this is more efficient for the jit
11238
11239 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
11240
11241         * class.c (mono_class_metadata_init): use a temporary vtable (the
11242         old algorithm only worked for the interpreter, but not for the jit)
11243
11244 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
11245
11246         * loader.c (method_from_memberref): use mono_class_get to get the
11247         class of an array instead of using System.Array directly.
11248         (mono_get_method): also add MEMBERREF methods to the method cache
11249         which usefull for arrays.
11250
11251 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
11252
11253         * pedump.c (arch_compile_method): added to compute vtable entry
11254
11255         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
11256         number of interfaces.
11257         
11258         * class.h: merged MonoArrayClass into MonoClass
11259
11260         * class.c (mono_class_create_from_typedef): compute the vtable size and
11261         allocate space to include the vtable inside MonoClass
11262         (mono_class_metadata_init): initialize the vtable
11263
11264 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
11265
11266         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
11267         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
11268         * image.c: endian fixes by Laurent Rioux.
11269         * object.h, object.c: rename MonoStringObject to MonoString and
11270         MonoArrayObject to MonoArray. Change some function names to conform to
11271         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
11272         guint16* as first argument, so don't use char*.
11273         Provide macros to do the interesting things on arrays in a portable way.
11274         * threads-pthread.c: updates for the API changes and #include <sched.h>
11275         (required for sched_yield()).
11276         * icall.c: updates for the API changes above.
11277         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
11278         platforms that need them.
11279
11280 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11281
11282         * class.c: set the correct type for all the fundamental
11283         type when loading the class.
11284
11285 2001-10-05  Dick Porter  <dick@ximian.com>
11286
11287         * threads-pthread.c (pthread_mutex_timedlock): Simple
11288         compatibility version for C libraries that lack this call.
11289
11290 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11291
11292         * class.c: MonoTypes stored in MonoClass are stored as
11293         fundamental MonoTypes when the class represents a
11294         fundamental type (System.Int32, ...).
11295         The TypeHandle return by ldtoken is a MonoType*.
11296         * icall.c: ves_icall_get_data_chunk () write out all the
11297         PE/COFF stuff. Implement ves_icall_define_method (),
11298         ves_icall_set_method_body (), ves_icall_type_from_handle ().
11299         * image.c: properly skip unknown streams.
11300         * loader.h, loader.c: add type_class to mono_defaults.
11301         * metadata.c, metadata.h: export compute_size () as
11302         mono_metadata_compute_size () with a better interface.
11303         Typo and C&P fixes.
11304         * pedump.c: don't try to print the entry point RVA if there is no entry point.
11305         * reflection.c, reflection.h: many cleanups, fixes, output method
11306         signatures and headers, typedef and typeref info, compress the metadata
11307         tables, output all the heap streams, cli header etc.
11308         * row-indexes.h: typo fixes.
11309
11310 2001-10-04  Dick Porter  <dick@ximian.com>
11311
11312         * object.h: Add a synchronisation mutex struct to MonoObject
11313
11314         * object.c (mono_new_object): Initialise the object
11315         synchronisation mutexes
11316
11317         * icall.c: System.Threading.Monitor internal calls
11318         
11319         * threads-pthread.h:
11320         * threads-pthread.c: System.Threading.Monitor internal calls
11321
11322         * threads-types.h: New file, includes the system-specific thread
11323         structures
11324         
11325         * threads-pthread-types.h:
11326         * threads-pthread-types.c: New files, handle pthread-specific
11327         synchronisation types
11328
11329         * threads-dummy-types.h: 
11330         * threads-dummy-types.c: New files of dummy support for
11331         thread-specific types
11332
11333         * metadata.c:
11334         * image.c:
11335         * pedump.c: include mono-endian.h not endian.h
11336         
11337         * Makefile.am: More threads files.
11338         Name mono-endian.h not endian.h
11339
11340 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
11341
11342         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
11343         stuff and implement a few more bits.
11344         * icall.c: a field needs to be dereferenced twice. Do not use the same
11345         name for two variables in the same scope.
11346         * image.c, image.h: cleanups.
11347
11348 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
11349
11350         * class.c (mono_class_metadata_init): bug fix: compute the right size
11351
11352 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
11353
11354         * icall.c: implemented some of the Reflection internalcalls.
11355         * image.c, image.h: start writing out the PE/COFF image.
11356         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
11357         that does the reverse than decode_blob_size ().
11358         * object.c: use mono_metadata_encode_value (). Move here
11359         temporary implementation of mono_string_to_utf8 ().
11360         * rawbuffer.c: make malloc_map static.
11361
11362 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11363
11364         * metadata.c: fix type comparison for arrays.
11365         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
11366         Added a couple of new classes to monodefaults.
11367         * icall.c: added a couple of Reflection-related internalcalls.
11368         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
11369         Added a byval_arg MonoType to MonoClass.
11370
11371 2001-09-28  Dick Porter  <dick@ximian.com>
11372
11373         * icall.c:
11374         * threads-pthread.h: 
11375         * threads-pthread.c: Implemented internal calls for
11376         LocalDataStoreSlot operations.  Applied mutexes around all shared
11377         data.  Reworked the thread creation and Start() operations to
11378         avoid a race condition.
11379         
11380         * threads-dummy.h:
11381         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
11382
11383 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
11384
11385         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
11386
11387 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
11388
11389         * class.c, loader.c: warn and return NULL instead of erroring out.
11390         * icall.c: added System.AppDomain::getCurDomain().
11391         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
11392
11393 2001-09-25  Dick Porter  <dick@ximian.com>
11394
11395         * threads-pthread.h:
11396         * threads-pthread.c: Implemented timed thread joining and added
11397         System.Threading.Thread::Join_internal internal call
11398
11399         * icall.c: Added System.Threading.Thread::Join_internal internal call
11400
11401         * threads-dummy.h:
11402         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
11403
11404 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
11405
11406         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
11407         mono_string_intern () to implement the semantics of the ldstr opcode
11408         and the interning of System.Strings.
11409         * icall.c: provide hooks to make String::IsIntern and String::Intern
11410         internalcalls.
11411
11412 2001-09-23  Dick Porter  <dick@ximian.com>
11413
11414         * threads-dummy.c: 
11415         * threads-dummy.h: New files of dummy threading routines
11416
11417         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
11418         support code based on system specifics
11419
11420         Rename PTHREAD_LIBS to THREAD_LIBS
11421         
11422 2001-09-23  Dick Porter  <dick@ximian.com>
11423
11424         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
11425         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
11426         internal calls.
11427         (mono_thread_init): Set up a Thread object instance to return when
11428         the main thread calls Thread.CurrentThread
11429         (mono_thread_cleanup): Wait for all subthreads to exit
11430
11431         * icall.c: New internal calls for System.Threading.Thread::Sleep
11432         (including Schedule) and CurrentThread
11433
11434         * threads.h: New file, to insulate thread-specific stuff from the
11435         rest of the code
11436
11437 2001-09-21  Dick Porter  <dick@ximian.com>
11438
11439         * threads-pthread.h: 
11440         * threads-pthread.c: New file, for handling pthreads-style
11441         threading support.  Start() now starts a new thread and executes
11442         the ThreadStart delegate instance.
11443
11444         * icall.c: Added the internalcall for
11445         System.Threading.Thread::Start_internal
11446
11447         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
11448
11449 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
11450
11451         * loader.c: work around the different signatures for delegates
11452         constructors csc generates in compiled code vs the ones compiled in mscorlib.
11453
11454 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11455
11456         * class.h, class.c: add mono_class_get_field_from_name ().
11457         * *: Fix C comments and other ANSI C issues.
11458
11459 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
11460
11461         * endian.h, assembly.c: fix some endianness issues.
11462
11463 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
11464
11465         * loader.h, load.c: add delegate_class to mono_defaults.
11466         Handle runtime provided methods in mono_get_method ().
11467
11468 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
11469
11470         * loader.c (mono_get_method): use pinvoke for internal call
11471
11472         * icall.c: use pinvoke for internal call
11473
11474         * loader.c (method_from_memberref): set the method name
11475
11476 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
11477
11478         * metadata.c: help the compiler generate better code for
11479         mono_class_from_mono_type ().
11480
11481 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
11482
11483         * class.c (mono_class_metadata_init): delayed computing of the
11484         class size to mono_class_metadata_init ()
11485
11486 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
11487
11488         * class.c, class.h: add an interfaces member to MonoClass.
11489         * image.c, image.h: add assembly_name field to MonoImage
11490         from the assembly table.
11491         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
11492
11493 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11494
11495         * class.c: Handle Array in mono_class_from_mono_type ().
11496         * metadata.c, pedump.c: some endian fixes.
11497
11498 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
11499
11500         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
11501         * metadata.c: fix small problem introduced with the latest commit.
11502
11503 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
11504
11505         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
11506         We don't need a MonoMetadata pointer anymore to compare signatures in
11507         mono_metadata_signature_equal (), update callers.
11508         Reduced memory usage an number of allocations for MonoMethodHeader and
11509         MonoMethodSignature.
11510
11511 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
11512
11513         * metadata.c: added compare for szarray.
11514
11515 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
11516
11517         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
11518         and add a couple more types to it and mono_defaults. Give an hint on
11519         classes that need implementing in our corlib and are referenced
11520         in mscorlib.
11521
11522 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
11523
11524         * class.h, class.c: keep track if a class is also an Enum.
11525         * loader.c: Implement a couple more types for use in libffi
11526         marshalling. Gives better diagnostics when failing to dlopen
11527         a library. Set method->klass for P/Invoke methods, too.
11528
11529 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
11530
11531         * class.c, class.h: add a MonoType this_arg to MonoClass that
11532         represents a pointer to an object of the class' type that
11533         can be used by the interpreter and later the type cache.
11534         Add best guess alignment info for valuetype objects.
11535
11536 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
11537
11538         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
11539         into MonoType: one less level of indirection and allocation and
11540         simplifies quite a bit of code. Added cache for MonoTypes that are
11541         used frequently, so that we don't need to allocate them all the time.
11542
11543 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
11544
11545         * class.c (mono_class_create_from_typedef): System.Enum is also a
11546         value type, although it does not derive from System.ValueType
11547         (maybe a bug in the ms compiler?)
11548
11549         * metadata.c (mono_type_size): return the right size for value types
11550
11551         * loader.c (mono_get_method): only initialize method header if not abstract
11552
11553         * class.c (mono_class_from_mono_type): use mono_default values. 
11554
11555 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
11556
11557         * *: use MonoClass pointers instead of <type_tokens>
11558         
11559         * class.h: new flag: metadata_inited.
11560
11561         * class.c (mono_class_metadata_init): impl.
11562         (mono_class_instance_size): impl.
11563         (mono_class_data_size): impl.
11564
11565 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
11566
11567         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
11568         MonoClass now has the name and name_space fields. 
11569         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
11570         mono_get_method () takes and optional MonoClass as argument.
11571         Removed mono_typedef_from_name() and added mono_class_token_from_name()
11572         instead that takes advantage of a map from class names to typedef
11573         tokens in MonoImage.
11574
11575 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
11576
11577         * metadata.c: zero is not a valid alignment boundary.
11578         Merge MONO_TYPE_VOID in default decoding code.
11579
11580 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
11581
11582         * image.h: merged MonoMetadata into MonoImage
11583
11584         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
11585         identify the type of elements.
11586
11587 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
11588
11589         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
11590         * cil-coff.h: split MonoMSDOSHeader and add size info.
11591         * image.c: add some consistency checks.
11592         * metadata.c: fix row size computation: one programmer
11593         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
11594         add explanation for the locator routine.
11595         Fix decoding of size in method header.
11596         
11597 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
11598
11599         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
11600         (g_concat_dir_and_file): Bring g_concat_dir_and_file
11601         function from gnome-libs.  This uses the right path separator
11602         based on the OS, and also works around a bug in some systems where
11603         a double slash is not allowed. 
11604         (default_assembly_name_resolver): Use g_concat_dir_and_file
11605         (mono_assembly_open): ditto.
11606
11607 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
11608
11609         * metadata.c (mono_metadata_signature_equal): impl.
11610
11611         * *: void is now a realy MonoType (instead of using NULL)
11612         
11613         * metadata.c (do_mono_metadata_parse_type): use
11614         mono_metadata_parse_type to parse void value.
11615
11616 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
11617
11618         * metadata.c, metadata.h: in the signature and method header store
11619         only the space required for holding the loca vars and incoming arguments.
11620
11621 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
11622
11623         * metadata.c (do_mono_metadata_parse_type): treat void like any
11624         other type (instead of assigning NULL);
11625
11626 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
11627
11628         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
11629
11630 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
11631
11632         * image.c (do_mono_image_open): added a cache for arrays.
11633
11634 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11635
11636         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
11637         decode a single column from a row in a metadata table and changes
11638         to take advantage of it in the typedef locator (gives a nice speed up).
11639         Store offset info for function params.
11640
11641 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
11642
11643         * image.h (MONO_IMAGE_IS_CORLIB): removed 
11644
11645 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
11646
11647         * assembly.c: how could mono_assembly_close () had ever worked?
11648         * metadata.c, metadata.h: provide offset info for local vars.
11649         Implement mono_type_size () to take care of alignment as well
11650         as size (it was mono_field_type_size in cli/class.c before).
11651
11652 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
11653
11654         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
11655
11656         * assembly.h (CORLIB_NAME): set to corlib.dll
11657
11658         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
11659
11660 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
11661
11662         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
11663         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
11664         tokentype.h: massive namespace cleanup.
11665
11666 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
11667
11668         * metadata.h, metadata.c: decode exception clauses when parsing method header.
11669
11670 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
11671
11672         * metadata.c (mono_metadata_free_type): added check for type !=
11673         NULL (void) before calling mono_metadata_free_type()
11674
11675 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
11676
11677         * metadata.h, row_indexes.h: added header with enumerations to use
11678         to index in the columns from tables in metadata and to decode coded
11679         tokens: we should start using this instead of embedding magic numbers
11680         all over the code.
11681
11682 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
11683
11684         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
11685         Move metadata_t info from cli_image_info_t to MonoImage, where
11686         it's easily accessible. Changed all the uses accordingly.
11687         Added the method and class caches to MonoImage.
11688         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
11689         and mono_metadata_decode_value () signature to be more consistent
11690         with the other parse functions (and simplify code). Taken advantage
11691         of zero-length array allocation with GCC. Removed reduntant (and
11692         wrong) MonoFieldType struct and use MonoParam instead. Changed
11693         mono_metadata_parse_field_type () to use common code for parsing.
11694         Added mono_metadata_typedef_from_field () and
11695         mono_metadata_typedef_from_method () to lookup a typedef index from a
11696         field or method token.
11697         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
11698
11699 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
11700
11701         * metadata.c (mono_metadata_parse_field_type): Implement. 
11702         (do_mono_metadata_parse_type): Split engine from
11703         mono_metadata_parse_type, so that we can create smaller structures
11704         for things that just have one pointer to the MonoType (look at
11705         the MonoFieldType)
11706
11707 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
11708
11709         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
11710         as Jan Gray found out, it is incorrect. 
11711
11712 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
11713
11714         * assembly.c: Implement asssembly loading.  This loads an image
11715         and loads all the referenced assemblies.  Come to think of it, we
11716         could always do lazy loading of the assemblies. 
11717
11718         * image.c (mono_image_open): Keep loaded images in a hashtable.
11719
11720         * image.h (MonoImage): Add reference count.
11721
11722 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
11723
11724         * assembly.c (mono_assembly_open): Keep track of the file name in
11725         case the assembly has no ASSEMBLY table.
11726
11727         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
11728         from get.c here.
11729
11730 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
11731
11732         * metadata.c, metadata.h: decode local vars in method header
11733         parse function. Change callers accordingly.
11734
11735 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
11736
11737         * metadata.h, cil-coff.h: protect against multiple inclusion.
11738         Added some new structures to hold information decoded from metadata:
11739         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
11740         and relevant decoding/free functions.
11741         * metadata.c: implement decoding functions. Add warning for out of bounds
11742         index in mono_metadata_locate(). Implement mono_get_method () to retreive
11743         all the info about a method signature and invocation. Remove check on
11744         uninitialized local var in parse_mh() and fix memory leak.
11745
11746 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
11747
11748         * metadata.h: More macros.
11749
11750         * tokentype.h: New file.
11751
11752 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
11753
11754         * assembly.c: added a consistency check and initialize
11755         some structures with g_new0().
11756         * metadata.c: fixed a couple more bugs in table size computation
11757         and add other checks for out-of bound access to metadata.
11758
11759 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
11760
11761         * metatada.c: fix bugs computing table sizes. Spew a
11762         warning when index in string heap is out of bounds.
11763
11764 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
11765
11766         * metadata.h: Add a couple of macros to manipulate tokens. 
11767
11768 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
11769
11770         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
11771         cli_section_tables).
11772
11773 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
11774
11775         * metadata.c (mono_metadata_user_string): New function, provides
11776         access to the UserString heap. 
11777
11778 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
11779
11780         * metadata.c: Add inline documentation.
11781
11782 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
11783
11784         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
11785         files. 
11786
11787 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
11788
11789         * typeattr.h: New file, TypeAttribute flags. 
11790
11791 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
11792
11793         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
11794         mono_assembly_ensure_section): Section loading code.
11795         (load_section_tables): Load the sections.
11796
11797         * mono/metadata/metadata.c (mono_metadata_locate_token,
11798         mono_metadata_locate): Functions to locate the information
11799         definition given a token or a table and an index.
11800         (mono_metadata_compute_table_bases): New.
11801         (compute_size): New function to compute the sizes of the various
11802         tables.
11803
11804         * mono/metadata/metadata.h: Finish listing the different index
11805         types. 
11806
11807         * mono/metadata/pedump.c: Improve to dump new information.
11808
11809 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
11810
11811         * mono/metadata/metadata.c: Entered all the tables matching
11812         Beta2. 
11813
11814         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
11815