Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1
2 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
3
4         * class.c: cleanup of the code that synthetizes interfaces for
5         arrays in 2.0: saves quit a bit of corlib mempool memory.
6         Code to fix bug #325495 ifdeffed out for now until the issues
7         with memory usage and O(n^2) behaviour are fixed.
8
9 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
10
11         * marshal.c: when possible, do not duplicate the name of the methods
12         in the method builder and in the generated MonoMethod.
13
14 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
15         * verify.c: added support for type checking ldind_* opcodes.
16
17 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
18
19         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
20         which is used to distinguish the fully open instantiation of a TypeBuilder
21         with the rest. This temporary hack is required to restore the property that
22         the fully open instantiation is the same type of the generic type definition.
23
24         * class-internals.h (mono_generic_class_is_generic_type_definition):
25         new function as part of the internal API.
26
27         * class.c (inflate_generic_type): return NULL when the generic inst is
28         fully open. The fully open generic type is now the same as the generic type
29         definition for non TypeBuilder types.
30
31         * class.c (mono_generic_class_get_class): removed assert since it is
32         no longer valid, gklass->cached_class can point to the generic type definition.
33
34         * class.c (mono_generic_class_is_generic_type_definition): new.
35
36         * metadata.c (mono_generic_class_hash): added is_tb_open field
37         to the hash calculation.
38
39         * metadata.c (free_generic_class): if the generic class is associated
40         with the generic type definition, its field will come from the mempool and
41         must not be freed.
42
43         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
44         new, this function identifies the corner case of a TypeBuilder fully open
45         instantiation.
46
47         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
48         for lookup. Set gclass->cached_class to be the container class in case of
49         the fully open instantiation of non TypeBuilder types.
50
51         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
52         to compare generic classes.
53
54         * reflection.c (method_encode_methodspec): remove assert that
55         no longer is valid.
56
57         * reflection.c (mono_reflection_generic_class_initialize): add
58         an aditional assert to ensure the proper type is used.
59
60 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
61
62         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
63         to enjoy it.
64
65 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
66
67         * verify.c (push_arg): Fixed support for ldarga
68         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
69         MonoType used as first arg in case of instance calls.
70
71 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
72
73         * verify.c: Support for verifying VAR and MVAR types, 
74
75 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
76
77         * icall.c (ves_icall_get_property_info): Set the reflected type of the
78         accessors correctly.
79
80 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
81
82         * threads.c: support OSX and other systems in
83         mono_thread_get_stack_bounds (bug #328026).
84
85 2007-09-25  Martin Baulig  <martin@ximian.com>
86
87         * mono-debug.h
88         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
89
90 2007-09-24  Martin Baulig  <martin@ximian.com>
91
92         * mono-debug.h
93         (MonoDebugClassEntry): Moved the definition of this struct into
94         mono-debug.c to make it private.
95
96         * mono-debug.c
97         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
98         type table per symbol file, we don't need to store the symfile id
99         any longer.
100
101 2007-09-24  Martin Baulig  <martin@ximian.com>
102
103         Create one type table per symbol file, since a `MonoClass *' gets
104         invalid when its image is unloaded.
105
106         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
107         (MonoDebugHandle): Added `type_table'.
108
109 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
110
111         * mempool.c, mempool.h: added mono_mempool_new_size () API
112         to be able to specify a smaller initial size for the pool.
113         Adjusted the code to slowly increase pool size before using
114         the previous default size.
115         * image.c: use a small initial size for image mempools.
116
117 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
118
119         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
120         Fixes ##320990.
121
122         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
123         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
124
125 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
126
127         * metadata.c (mono_type_create_from_typespec): Remove an invalid
128         free. Fixes #327438.
129
130 2007-09-21  Raja R Harinath  <harinath@gmail.com>
131
132         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
133         generic instantiations, etc.
134         <MONO_TYPE_ARRAY>: Likewise.
135
136 2007-09-21  Martin Baulig  <martin@ximian.com>
137
138         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
139         these structs were never defined.
140         (MonoDebugHandle): Removed the `_priv' field, it was never used.
141
142 2007-09-21  Martin Baulig  <martin@ximian.com>
143
144         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
145
146 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
147
148         * image.c: removed the guid hash tables: we can get the same info
149         without the additional memory usage hit (partially fixes also bug #327052).
150
151 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
152
153         * profiler.h, profiler-private.h, profiler.c: add a new profiler
154         event to handle unloading methods. After the event is called, the
155         corresponding MonoMethod* must be considered invalid.
156         * loader.c (mono_free_method): call the new mono_profiler_method_free
157         event.
158
159 2007-09-20  Mark Probst  <mark.probst@gmail.com>
160
161         * domain-internals.h: New flag in MonoJitInfo which marks shared
162         generic methods.  New hash table (shared_generics_hash) in
163         MonoDomain to keep track of shared generic methods.  Prototypes
164         for functions to register and lookup shared generic methods.
165
166         * domain.c: Support for registering and looking up shared generic
167         methods via a hash table (shared_generics_hash) in MonoDomain.
168
169         * class-internals.h: New exception to signal failure of shared
170         compilation of a generic method.  New counters for generics
171         sharing in MonoStats.
172
173 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
174
175         * image.c, metadata-internals.h: don't keep a file descriptor open
176         for loaded assemblies (bug#325988).
177
178 2007-09-19  Raja R Harinath  <rharinath@novell.com>
179
180         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
181         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
182         use the corresponding datatypes.
183         (type_in_image): Update to changes.
184         (CleanForImageUserData): Simplify.
185         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
186         Avoid quadratic behaviour in handling the "stolen" list by
187         separating the filter predicate out, and by prepending the stolen
188         items rather than appending them.
189         (steal_ginst_in_image): Likewise.
190         (mono_metadata_clean_for_image): Update to changes.
191
192 2007-09-19  Martin Baulig  <martin@ximian.com>
193
194         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
195
196 2007-09-19  Martin Baulig  <martin@ximian.com>
197
198         * mono-debug.c (mono_debug_cleanup): Don't call
199         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
200
201 2007-09-19  Raja R Harinath  <harinath@gmail.com>
202
203         Fix crash on 'make run-test' in mcs/errors
204         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
205         Avoid more potential allocations in mono_class_from_mono_type.
206         (ginst_in_image): Update to changes.
207         (gclass_in_image): Rearrange slightly.
208
209 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
210
211         * class.c (mono_class_init): Move the code that sets up class->methods to 
212         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
213
214         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
215         canonical instance of an inflated generic signature.
216         (mono_type_create_from_typespec): Remove an invalid free.
217
218         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
219
220 2007-09-18  Marek Habersack  <mhabersack@novell.com>
221
222         * domain-internals.h: added a declaration of the
223         mono_assembly_load_full_nosearch internal function.
224
225         * assembly.c (mono_assembly_load_with_partial_name): use
226         mono_try_assembly_resolve return value properly.
227         (mono_assembly_load_full_nosearch): copied the function body from
228         mono_assembly_load_full, without the code to invoke assembly
229         search hooks.
230         (mono_assembly_load_full): calls the above new function and if the
231         assembly is not resolved, invokes the search hooks.
232
233         * appdomain.c (mono_runtime_init): restore the global postload
234         assembly search handlers.
235
236 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
237
238         * class.c (mono_class_init): Make sure class->methods and class->properties
239         are never NULL in the generics case.
240
241         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
242
243 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
244
245         * metadata.c (free_generic_class): Disable some code to fix the build.
246
247         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
248
249         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
250         from the image mempool.
251
252         * metadata.c (free_generic_class): Free more data from the inflated class.
253
254         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
255
256         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
257         mempool.
258         (mono_type_create_from_typespec): Ditto.
259
260         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
261         MonoImage to the caller.
262         (mono_init_internal): Save the opened image in a global variable.
263         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
264
265         * reflection.c (resolve_object): Fix a leak.
266
267         * metadata.c: Fix the freeing of data in the generics caches.
268         
269         * metadata.c (free_generic_inst): Comment this out to fix the build.
270         (free_generic_class): Ditto.
271
272         * metadata.c: Free cached generic methods, instantinations and classes when
273         they are removed from the caches.
274         (mono_metadata_free_type): Free the type itself.
275
276         * class.c: Free the result of mono_class_inflate_generic_type () in a few
277         places.
278
279 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
280
281         * boehm-gc.c: restrict managed allocs to __thread supporting
282         architectures.
283
284 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
285
286         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
287         (mono_generic_class_get_class): Fix a leak.
288
289         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
290         mono_metadata_free_type ().
291         (mono_metadata_inflate_generic_inst): Fix a leak.
292
293 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
294
295         * mono-debug.c (free_header_data): Fix a leak missed earlier.
296
297         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
298         mempool.
299
300         * mono-debug.c (mono_debug_close_image): Fix call to 
301         g_hash_table_remove ().
302
303 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
304
305         * icall-def.h: redirect all the string ctor to the managed
306         CreateString () methods.
307         * string-icalls.c, string-icalls.h: removed dead code for string
308         ctors and icalls.
309
310 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
311
312         * mono-debug.c: Fix memory leaks.
313
314 2007-09-14  Jonathan Chambers <joncham@gmail.com>
315
316         * threads-types.h: Implement mono_hazard_pointer_set and 
317         mono_hazard_pointer_clear macros using do/while(0) to fix
318         compilation with MSVC.
319         
320         Code is contributed under MIT/X11 license.
321
322 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
323
324         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
325         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
326
327 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
328
329         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
330         icalls.
331
332 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
333
334         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
335         managed-code allocated as well.
336
337 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
338
339         * class.c (mono_class_is_assignable_from): Add support for generic variance.
340
341 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
342
343         * boehm-gc.c: fixed the build after the AOT changes.
344
345 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
346
347         * wrapper-types.h: Add an ALLOC wrapper type.
348
349         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
350         reference managed allocator methods.
351
352 2007-09-12  Marek Safar  <marek.safar@gmail.com>
353
354         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
355         of Type array and not MonoType, a fix suggested by Hari.
356         
357 2007-09-12  Jonathan Chambers <joncham@gmail.com>
358
359         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
360         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
361         
362         Code is contributed under MIT/X11 license.
363
364 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
365
366         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
367
368 2007-09-12  Marek Habersack  <mhabersack@novell.com>
369
370         * image.c (do_mono_image_open): if assembly file fails to open and
371         MONO_IOMAP is in effect, try to find the path in a
372         case-insensitive way.
373
374         * appdomain.c (mono_runtime_init): do not install postload hooks -
375         tests show that MS.NET doesn't use anything of that sort to
376         trigger the AppDomain.AssemblyResolve event.
377         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
378         made non-static.
379         (mono_runtime_init): init portability helpers here.
380
381         * assembly.c (mono_assembly_load_with_partial_name): if other   
382         attempts fail, trigger the AppDomain.AssemblyResolve event handler
383         to resolve the assembly.
384
385         * domain-internals.h: added mono_try_assembly_resolve and marked
386         it as internal.
387
388 2007-09-11  Jb Evain  <jbevain@novell.com>
389
390         * object-internals.h (MonoReflectionDynamicMethod): add
391         a `MonoReflectionType *owner` field. The owner is used
392         * reflection.c:
393         (mono_reflection_create_dynamic_method): use the owner of the dynamic
394         method as the class declaring the dynamic method.
395         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
396         dynamic method to the declaring type of the methodbuilder.
397
398 2007-09-11  Mark Probst  <mark.probst@gmail.com>
399
400         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
401         rules for calling methods via reflection.
402
403 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
404
405         * reflection.c (resolve_object): Add support for MonoGenericClass. 
406         Inflate MonoType's.
407
408 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
409
410         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
411         provide a managed method that does fast allocations without needing
412         a managed->unmanaged transition. Boehm GC implementation currently
413         enabled for ptrfree objects on sane architectures.
414
415 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
416
417         * marshal.c, marshal.h: exported a couple of useful functions and
418         added mono_mb_get_label () to easily handle backward branches.
419
420 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
421
422         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
423
424 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
425
426         * loader.c (find_method): Fixed the regression introduced while
427         fixing bug #81466.
428
429 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
430
431         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
432         well.
433         
434         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
435         icall.c reflection.c: Pass a MonoGenericContext argument to 
436         mono_lookup_dynamic_token ().
437
438         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
439         #82744.
440         
441 2007-09-09  Robert Jordan  <robertj@gmx.net>
442
443         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
444         for generic methods.
445
446         * object.c (mono_object_get_virtual_method): Handle generic methods.
447         Fixes bug #78882.
448
449         Code is contributed under MIT/X11 license.
450
451 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
452
453         * image.c: fix locking in mono_image_load_file_for_image ().
454
455 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
456
457         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
458         used only as a cache: added an icall to fill it.
459
460 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
461
462         * reflection.h: exposed mono_reflection_free_type_info
463         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
464         since mono_reflection_bind_generic_parameters makes a copy of it.
465         * reflection.c (free_type_info): subinfos should be freed.
466         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
467         made non static.
468         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
469         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
470         this fixes #82695 and #81726.
471    
472
473 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
474
475         * process.h, process.c:  added support for user profile/info in
476           ProcessStartInfo. For now only Windows works.
477
478 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
479
480         * metadata.c: consider the generic arguments when comparing
481         signatures (bug #82614).
482
483 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
484
485         * cil-coff.h, image.c: updated assembly loader to cope with the
486         PE32+ 64 bit file format.
487
488 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
489
490         * assembly.c, class.c, domain.c, loader.c: remove useless
491         inclusion of cil-coff.h.
492
493 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
494
495         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
496         if interface is marked with CoClassAttribute. 
497    
498         Code is contributed under MIT/X11 license.
499
500 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
501
502         * sgen-gc.c: ensure no object from the to space is copied again or finalized
503         if it's seen twice in major collections.
504
505 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
506
507         * sgen-gc.c: big objects are not copied to the gray area, but they
508         need to be considered for scanning, too, if they are brought alive
509         by an object ready for finalizations or a survived one.
510
511 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
512
513         * sgen-gc.c: properly account the number of disappearing links when
514         they are nullified.
515
516 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
517
518         * sgen-gc.c: share the code to scan the registered roots between the
519         different types of collections.
520
521 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
522
523         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
524
525 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
526
527         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
528         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
529
530 2007-08-28  Mark Probst  <mark.probst@gmail.com>
531
532         * security-manager.c (mono_security_manager_get_methods):
533         LinkDemandSecurityException now has 2 arguments instead of 3.
534
535 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
536
537         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
538         platforms which need it.
539
540 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
541
542         * sgen-gc.c: unregister thread data structures with a pthread_key_t
543         dtor.
544
545 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
546
547         * threads.c: free the thread static data on thread exit.
548
549 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
550
551         * class.c: walk the hierarchy to find the generic definition for
552         a class (fixes runtime part of bug #82498).
553
554 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
555
556         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
557         ...
558
559         * image.c (mono_image_close): Here. Hopefully fixes #82510.
560
561 2007-08-24  Mark Probst  <mark.probst@gmail.com>
562
563         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
564
565 2007-08-24  Robert Jordan  <robertj@gmx.net>
566
567         * appdomain.c: don't perform the ':'->';' substitution on Win32.
568
569 2007-08-24  Jb Evain  <jbevain@novell.com>
570
571         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
572         for byref types.
573
574 2007-08-24  Mark Probst  <mark.probst@gmail.com>
575
576         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
577         #82286.
578
579 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
580
581         * assembly.c: Fix a warning.
582         
583 2007-08-23  Marek Habersack  <mhabersack@novell.com>
584
585         * appdomain.c: parse the <runtime> section looking for the probing
586         element with the 'privatePath' attribute, which sets additional
587         directories in which the runtime should look for assemblies.
588
589 2007-08-23  Robert Jordan  <robertj@gmx.net>
590
591         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
592         Fixes #82499.
593
594 2007-08-23  Martin Baulig  <martin@ximian.com>
595
596         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
597         _mono_debug_init_corlib() and remove it from the header file.
598
599 2007-08-23  Martin Baulig  <martin@ximian.com>
600
601         * mono-debug-debugger.c
602         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
603         don't notify the debugger about it.
604
605         * mono-debug-debugger.h
606         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
607
608 2007-08-23  Robert Jordan  <robertj@gmx.net>
609
610         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
611         Code is contributed under MIT/X11 license.
612
613 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
614
615         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
616
617 2007-08-22  Martin Baulig  <martin@ximian.com>
618
619         * mono-debug.c: Store debugging info on a per-domain basis and
620         free it on domain unload.  Add support for unloading symbol files.
621
622         * mono-debug.h
623         (MonoDebugList): New typedef.
624         (MonoSymbolTable):
625         - add `data_tables and `type_table'.
626         - replace 'symbol_files' and `num_symbol_files' with a
627           `MonoDebugList *'.
628         (mono_debug_data_table): Removed.
629         (mono_debug_list_add): New public function.
630         (mono_debug_list_remove): New public function.
631         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
632         (mono_debug_init_2_memory): Renamed into
633         mono_debug_open_image_from_memory().
634         (mono_debug_close_image): New public function.
635         (mono_debug_domain_create): Likewise.
636         (mono_debug_domain_unload): Likewise.
637         (MONO_DEBUGGER_VERSION): Bump to 60.
638
639         * mono-debug-debugger.h
640         (MonoDebuggerEvent):
641         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
642         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
643         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
644         - rename `THREAD_CREATED' and `THREAD_EXITED' into
645           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
646         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
647           meaning.
648         (mono_debugger_add_symbol_file): Removed.
649         (mono_debugger_add_type): Removed.
650         (mono_debugger_lookup_type): Removed.
651         (mono_debugger_lookup_assembly): Removed.
652
653         * domain.c
654         (mono_domain_create): Call mono_debug_domain_create().
655         (mono_init_internal): Call mono_debug_init_corlib().
656
657         * assembly.c
658         (mono_assembly_close): Call mono_debug_close_image().
659
660 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
661
662         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
663         mmap call.
664
665 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
666
667         * sgen-gc.c: ensure section->pin_queue_end is initialized
668         correctly when non pinning objects in the section have been found.
669
670 2007-08-22  Marek Habersack  <mhabersack@novell.com>
671
672         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
673         containing a list of directories separated by ':'. MSDN docs say
674         the directories should be separated with ';'. Part of a bugfix for
675         bug #81446
676
677 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
678
679         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
680         it should MonoType and not MonoClass.
681
682 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
683
684         * culture-info-table.h : regenerated.
685
686 2007-08-20  William Holmes  <billholmes54@gmail.com>
687
688         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
689          to call ReplaceFile Kernel32 on windows or in io-layer.
690         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
691         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
692          as an internal call.
693
694         Code is contributed under MIT/X11 license.
695
696 2007-08-20  Jb Evain  <jbevain@novell.com>
697
698         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
699         and MONO_EXCEPTION_FIELD_ACCESS.
700
701         * debug-helpers.[c|h]: new mono_field_full_name function.
702
703 2007-08-20  Mark Probst  <mark.probst@gmail.com>
704
705         * class.c: Removed class_security_level() and moved it to
706         security-core-clr.c.
707
708         * security-core-clr.c, security-core-clr.h: class_security_level()
709         is now public and renamed to mono_security_core_clr_class_level().
710         It also looks for security attributes in the classes a class is
711         nested in.
712
713 2007-08-20  Mark Probst  <mark.probst@gmail.com>
714
715         * security-core-clr.c, security-core-clr.h: CoreCLR security
716         utility functions.
717
718         * Makefile.am: Added security-core-clr.[ch].
719
720         * security-manager.c, security-manager.h: Functions and enum for
721         setting and getting the security mode.
722
723         * class.c: CoreCLR security checks.
724
725 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
726
727         * icall-def.h, process.c, process.h: implemented icall to get
728         user/system processor times.
729
730 2007-08-17  Mark Probst  <mark.probst@gmail.com>
731
732         * domain.c, threads.c, class-internals.h, domain-internals.h: New
733         reader-lock-free jit_info_table.
734
735 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
736
737         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
738
739         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
740
741         * object-internals.h (MonoException): Add missing _data member.
742
743 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
744
745         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
746         checking that only methods with matching qname or fqname are picked
747         from implemented interfaces.
748
749 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
750
751         * verify.c (do_newarr):added, do type verification of
752         newarr ops, push the right value on the eval stack.
753         * verify.c (mono_method_verify): use do_newarr
754
755
756 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
757
758         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
759         factored the common code into get_boxable_mono_type, which
760         is now using mono_type_get_full, this fixed byref related tests.
761
762 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
763
764         * class.c: added mono_type_get_full, this function has the same
765         behavior of mono_class_get_full but the returned MonoType has
766         all metadata of the associated token in case of a typespec token.
767         * class.c: added mono_type_retrieve_from_typespec, used by 
768         mono_type_get_full to retrieve the token type.
769         * class.c (mono_class_create_from_typespec): changed to use
770         mono_type_retrieve_from_typespec.
771         * class.c (mono_ldtoken): changed to use mono_type_get_full
772         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
773         * class-internals.h: exported mono_type_get_full for internal use.
774
775 2007-08-16  Jb Evain  <jbevain@novell.com>
776
777         * domain.c (supported_runtimes): add entry for
778         the 'moonlight' runtime version.
779
780 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * verify.c (mono_method_verify): small typo sliped in.  
783
784 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
785
786         * verify.c (do_unbox_value): added, do type verification of
787         unboxing ops
788         * verify.c (mono_method_verify): use do_unbox_value
789
790
791 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * verify.c (dump_stack_value): fixed typo, was printing string
794         instead of object on stack.
795         * verify.c (do_box_value): moved the byref check up as it leads
796         to invalid code and should be done earlier.
797         * verify.c: improved error messages for and ldobj
798
799 2007-08-15  William Holmes  <billholmes54@gmail.com>
800
801         * marshal.c (emit_marshal_custom): Omit the call to 
802           marshal_native_to_managed when calling native to managed 
803           and the argument is specified as an out argument.
804
805         Code is contributed under MIT/X11 license.
806
807 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
808
809         * verify.c: fixed the type checks for generics, function pointers and vectors.
810         Added type verification for ldobj and ldtoken. The verifier
811         would segfault if header or signature of a method contained references
812         to non-existant types.
813
814 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
815
816         * marshal.c (cominterop_get_ccw): Patch from
817         Bill Holmes to no walk up interface hierarchy. 
818         All parent methods should be present in the interface for COM.
819    
820         Code is contributed under MIT/X11 license.
821
822 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
823
824         * marshal.c (emit_marshal_com_interface): Patch from
825         Bill Holmes to handle COM Interfaces as return values
826         for native->managed calls.
827    
828         Code is contributed under MIT/X11 license.
829
830 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
831
832         * marshal.c (cominterop_get_idispatch_for_object): Implement
833         for runtime callable wrappers.
834    
835         Code is contributed under MIT/X11 license.
836
837 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
838
839         * pedump.c (main): changed from mono_init to mono_init_from_assembly
840         so 2.0 types are accessible
841
842
843 2007-08-13  Miguel de Icaza  <miguel@novell.com>
844
845         * domain.c (mono_init_internal): Call mono_assembly_load_friends
846         once we load mscorlib.   Due to the order in which we initialize,
847         the mono_assembly_load_full routine that loads mscorlib did not
848         load friends.   We now load it once we load the
849         mono_defaults.internals_visible_class class. 
850
851         * assembly.c: Expose the mono_load_friend_assemblies method.
852
853 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
854
855         * verify.c: improved the handling of boxing, better
856         type checking for unary ops and conversion. Fix bug
857         regarding managed pointer compatibility checking
858
859 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
860
861         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
862
863         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
864
865 2007-08-09  Raja R Harinath  <rharinath@novell.com>
866
867         * reflection.c (dup_type): Remove.
868         * class.c (dup_type): Remove.
869         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
870         instead of the dodgy 'dup_type'.
871         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
872         handle the case where 'dup_type' needed the second argument.
873
874 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
875
876         * domain.c: Fix a warning.
877
878 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
879
880         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
881         checking that methods with the same fqname are not overridden
882         with a method from an ancestor.
883
884 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
885
886         * threads.c (free_thread_static_data_helper): Avoid a crash if
887         thread->static_data is not yet set.
888
889 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
890
891         * marshal.c: Use correct image when emitting
892         native wrapper for COM calls.
893    
894         Code is contributed under MIT/X11 license.
895
896 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
897
898         * icall-def.h, security.c, security.h :
899           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
900
901 2007-08-07  Martin Baulig  <martin@ximian.com>
902
903         * mono-debug-debugger.h
904         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
905
906         * domain.c (mono_domain_free): Call
907         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
908
909 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
910
911         * verify.c (check_underflow, check_overflow): error message now returns IL offset
912         * verify.c (in_same_block): code should test if either offset is inside the clauses
913         * verify.c (mono_method_verify): push the exception into the eval stack of exception
914         and filter blocks
915
916 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
917
918         * image.c (mono_image_close): Fix a leak.
919
920         * object.c (mono_runtime_invoke_array): Avoid using alloca.
921
922         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
923
924 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
925
926         * domain.c, threads.c, threads-types.h: fix memory retention issue
927         with thread static variables not being cleared on domain unload.
928         Reuse thread static slots after domain unload.
929
930 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
931
932         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
933         nullable type.
934
935         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
936         now done in mono_runtime_invoke_array.
937
938         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
939         receiver is a nullable type.
940
941         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
942         generic parameter.
943
944 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
945
946         * marshal.c: Implement COM Objects as return type for 
947         managed->unmanaged calls. Added Release calls for COM Object
948         out/return values in managed->unmanaged calls.
949
950         Code is contributed under MIT/X11 license.
951
952 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
953
954         * threads.h, threads-type.h: move the hazard pointer declarations
955         to the private header.
956
957 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
958
959         * file-io.c, appdomain.c: memory leak fixes.
960
961 2007-08-02  Dick Porter  <dick@ximian.com>
962
963         * socket-io.c
964         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
965         SO_REUSEADDR setting into io-layer/sockets.c.
966
967 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
968
969         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
970         from Object when called on a generic parameter. Fixes #82211.
971
972 2007-08-01  Dick Porter  <dick@ximian.com>
973
974         * file-io.c (convert_share): Test FileShare values bit-by-bit.
975         Fixes bug 79250 yet again.
976
977 2007-07-30  Martin Baulig  <martin@ximian.com>
978
979         Merged the `debugger-dublin' branch.
980
981         * mono-debug.h
982         (MonoDebugDataTable): New typedef.
983         (MonoDebugMethodAddressList): New typedef.
984         (MonoDebugWrapperData): Removed.
985         (MonoDebugSymbolTable): Removed `current_data_table',
986         `current_data_table_size', `current_data_table_offset'.
987         (MonoDebugDataItemType): Moved into mono-debug.c.
988         (MonoDebugMethodJitInfo): Remove `address'.
989         (mono_debug_data_table): New global variable.
990         (mono_debug_lookup_method_addresses): New public function.
991         (mono_debug_find_method): Take a `MonoMethod *', not a
992         `MonoDebugMethodInfo *'.
993
994         * mono-debug.c: Drop support for the old symbol tables.
995
996 2007-06-28  Martin Baulig  <martin@ximian.com>
997
998         * mono-debug.c (mono_debug_debugger_version): New public variable.
999
1000 2007-07-31  William Holmes  <billholmes54@gmail.com>
1001
1002         * metadata.c Changed mono_type_create_from_typespec to not insert
1003           the type into the hash map until after
1004           do_mono_metadata_parse_type has completed.
1005         Fixes Bug #82194
1006         Code is contributed under MIT/X11 license.
1007
1008 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
1009
1010         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
1011         generic parameter. Fixes #82211.
1012
1013 2007-07-27  Jb Evain  <jbevain@novell.com>
1014
1015         * pedump.c (dump_metadata, dump_metadata_header): dump
1016         versions contained in the metadata header.
1017
1018 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
1019
1020         * threads.c: register small_id_table with the GC.
1021
1022 2007-07-27  Mark Probst  <mark.probst@gmail.com>
1023
1024         * threads.c, threads.h, class-internals.h, object-internals.h:
1025         Hazard pointers, to be used by lock-free parallel algorithms.
1026
1027 2007-07-26  Dick Porter  <dick@ximian.com>
1028
1029         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
1030         routine on non-windows platforms, as I've not managed to think of
1031         a non-kludgy way of doing this.  Finishes off bug 78739.
1032
1033 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
1034
1035         * object.c: properly setup interface_bitmap in proxy vtables.
1036
1037 2007-07-25  Marek Habersack  <mhabersack@novell.com>
1038
1039         * appdomain.c (get_shadow_assembly_location): do not use TickCount
1040         to create unique shadow copy target directories, use the domain's
1041         serial number instead. Each domain gets a unique target directory
1042         that way.
1043
1044         * domain.c (mono_domain_create): added code to increment domain
1045         shadow copy serial number and cache the value in the current
1046         domain structure.
1047
1048         * domain-internals.h (struct _MonoDomain): added a new field -
1049         shadow_serial to hold the serial number used in generation of
1050         shadow-copy directories. This is to make sure that the directory
1051         name is unique for each and every domain created. We avoid a race
1052         condition with overriding assemblies already in use by other app
1053         domains.
1054
1055 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
1056
1057         * class.c (mono_bounded_array_class_get): fixed memory leak when 
1058         binding generic parameters.
1059
1060 2007-07-24  Raja R Harinath  <rharinath@novell.com>
1061
1062         * metadata.c (do_mono_metadata_parse_generic_class): Use
1063         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
1064         error.
1065
1066 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
1067
1068         * loader.c, class-internals.h, reflection.c: removed the per-method
1069         generics hashtable: we use the global one through the call of
1070         mono_class_inflate_generic_method ().
1071
1072 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1073
1074         * class.c, metadata.c, class-internals.h: introduce yet another
1075         generics global cache for inflated methods (fixes 98% of the perf
1076         issue in bug #81806).
1077
1078 2007-07-23  Raja R Harinath  <rharinath@novell.com>
1079
1080         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
1081         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
1082         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
1083         return a MonoGenericInst containing (a copy) of those types.
1084         (mono_metadata_inflate_generic_inst): Update to changes.
1085         (mono_metadata_parse_generic_inst): Likewise.
1086         (mono_get_shared_generic_inst): Likewise.
1087         * reflection.c (mono_class_bind_generic_parameters): Likewise.
1088         (mono_reflection_bind_generic_method_parameters): Likewise.
1089         * metadata-internals.h: Likewise.
1090         * icall.c (free_generic_context): Kill.
1091         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
1092
1093         * reflection.c (reflection_methodbuilder_to_mono_method): Use
1094         mono_metadata_type_dup.
1095         * marshal.c (mono_mb_create_method): Likewise.
1096
1097         * metadata.c (mono_metadata_type_dup): Rename from
1098         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
1099         MonoImage.  Handle a few more cases, esp. when no mempool is given.
1100         * marshal.c, metadata-internals.h: Update to changes.
1101
1102 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
1103
1104         * class.c: fixed a small leak for array classes and removed warning.
1105
1106 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
1107
1108         * loader.c (mono_method_get_param_token): Make this work on generic methods.
1109         Return 0x8000000 for return parameters. Fixes #82161.
1110
1111 2007-07-21  Marek Habersack  <grendello@gmail.com>
1112
1113         * appdomain.c (get_shadow_assembly_location): append the current
1114         ticks value to the path. Avoids overwriting the same assemblies by
1115         several threads at the same time.
1116
1117 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1118         and Raja R Harinath  <rharinath@novell.com>
1119
1120         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1121         Simplify slightly.
1122         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
1123         property for testing if a method is a generic method definition.
1124
1125 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
1126
1127         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
1128
1129 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1130
1131         * verify.c: used function from private branch, reverted to the one in class.h 
1132
1133 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1134
1135         * verify.c: a typo slipped in and the code wont compile
1136
1137 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1138
1139         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
1140         disabled box instruction as it is doing the wrong thing
1141         improved stack dump messages, now it is easier to debug type related issues
1142
1143
1144 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
1145
1146         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
1147
1148 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1149
1150         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
1151         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
1152         grouped with class and valuetype. This change will simply 
1153         the code as it should be handled just like unmanaged pointers.
1154
1155 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1156
1157         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
1158
1159 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1160
1161         * verify.c: several stack merge issues fixed, reference comparisons now
1162         check the type size. strict type check now works correctly.
1163         added more uses of IS_MANAGED_POINTER macro.
1164         fixed issues pointed by running the test suite against .net.
1165         
1166
1167 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1168
1169         * class.c, loader.c, class-internals.h: Removed the
1170         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
1171         defines.
1172
1173         * icall.c: Better error checking in some internal reflection
1174         methods.
1175
1176 2007-07-18  William Holmes  <billholmes54@gmail.com>
1177
1178         * filewatcher.c : removed unused variable 'filename' in 
1179           ves_icall_System_IO_FSW_SupportsFSW
1180
1181 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
1182
1183         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
1184         obsolete, removed.
1185
1186 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
1187
1188         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
1189         
1190         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
1191
1192 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1193
1194         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
1195         Implement generics support.
1196         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1197
1198         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
1199         type_args and method_args arguments.
1200         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
1201         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1202         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
1203
1204 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
1205
1206         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
1207           It adds a rootimage parameter to mono_reflection_get_type_internal,
1208           adds new function mono_reflection_get_type_with_rootimage and use
1209           the rootimage to resolve the types instead of the current image
1210
1211 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1212
1213         * culture-info-table.h: Forgot to update after r78304.
1214
1215 2007-07-13  Raja R Harinath  <rharinath@novell.com>
1216
1217         * class.c (mono_class_is_open_constructed_type)
1218         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
1219
1220 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
1221
1222         * class.c (mono_bounded_array_class_get):  method fails if used with
1223         an incomplete TypeBuilder enum (no basetype field), fixed it by 
1224         avoiding calculating the size for such array as it cannot be instantiated.
1225         Fix bug #82015
1226
1227 2007-07-12  Raja R Harinath  <rharinath@novell.com>
1228
1229         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
1230         field.
1231         * metadata.c, reflection.c: Update to changes.
1232
1233 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
1234
1235         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
1236         mono_class_is_valid_enum, they are used to valide a enum when loading.
1237         * reflection.c: used new functions to throw TypeLoadException when and
1238         invalid enum is build with TypeBuilder. Fixes #82018
1239   
1240 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1241
1242         * object.c: forgot commit of mono_class_setup_methods () to access
1243         iface->methods.
1244         * object-internals.h: added a few more handy fields to
1245         MonoIMTCheckItem.
1246
1247 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
1250         iface->methods.
1251
1252 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
1253
1254         * class-internals.h, object-internals.h, object.c: IMT-based
1255         interface invocation core from Massimiliano Mantione
1256         (massi@ximian.com) with a reworked arch-specific interface,
1257         bsearch implementation and a few bugfixes and memory savings by me.
1258
1259 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
1260
1261         * class.c (mono_class_create_from_typedef): mono would segfault if 
1262         an enum did not have a __value field. It now throws a TypeLoadException
1263         for such cases. Fix bug #82022
1264
1265 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1266
1267         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
1268
1269 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1270
1271         * class.c (mono_class_init): If a class is already inited but has
1272         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
1273
1274 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1275
1276         * class.c: Properly handle the case of an unimplemented interface
1277         method.  Fixes: 81673.
1278
1279 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
1280
1281         * class-internals.h, object.c: cleanup patch from massi: use
1282         MonoVTable->interface_bitmap since the vtable interfaces offset array
1283         is going away.
1284
1285 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
1288         GetMDStreamVersion icall instead.
1289
1290 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1291
1292         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
1293         not use mono_dl_build_path() with a full library name: makes
1294         fallbacks to libgaim and libfam work.
1295
1296 2007-07-06  William Holmes  <billholmes54@gmail.com>
1297
1298         * assembly.c: Added a continue statement in probe_for_partial_name when
1299          parse_assembly_directory_name fails.  Fixes : 82002
1300
1301 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
1302
1303         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
1304         and added a verification  for TYPEDBYREF.
1305         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
1306         make native int interchangeable with int32 and some small cleanup and formating.
1307         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
1308         handle byref of byref.
1309         * verify.c (push_local): handle byref of byref.
1310         * verify.c (do_binop): invalid mix of values is unverifiable
1311         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
1312         added visibility checks
1313         * verify.c (field related method): added visibility checks
1314         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
1315
1316 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
1317
1318         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
1319         string.
1320
1321 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1322
1323         * profiler.c (mono_profiler_load): Fix an off-by-one error.
1324
1325         * marshal.c (emit_marshal_string): When returning a string from managed code,
1326         allways make a copy even for unicode strings. Fixes #81990.
1327
1328 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
1329
1330         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
1331         of byref generic inst types (bug #81997).
1332
1333 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
1334
1335         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
1336         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
1337
1338 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
1339
1340         * marshal.c (emit_marshal_string): Add support for unicode strings in
1341         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
1342
1343 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1344
1345         * verify.c: field load/store are now verified, missing only access checks now
1346
1347 2007-06-28  Martin Baulig  <martin@ximian.com>
1348
1349         * mono-debug.c (mono_debug_debugger_version): New public variable.
1350
1351 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
1352
1353         * locales.c: When constructing DateTimeFormat or NumberFormat for
1354         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
1355         MonoCultureInfo contructed from the current locale is always
1356         read-only and has UseUserOverride set to true. All MonoCultureInfo
1357         instances returned for GetCultures have both IsReadOnly and
1358         UseUserOverride set to true. Fixes part of bug #81930.
1359
1360 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
1361
1362        * icall-def.h: Update System.__ComObject icalls
1363        * marshal.c: Avoid managed transition (and object creation)
1364        when looking up COM interface in RCW.
1365        * marshal.h: Ditto.
1366        
1367        Code is contributed under MIT/X11 license.
1368
1369 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
1370
1371         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
1372         to avoid crashes during assembly unloading.
1373
1374 2007-06-22  Raja R Harinath  <rharinath@novell.com>
1375
1376         Fix MethodInfo.IsGenericMethodDefinition
1377         * reflection.c (mono_reflection_bind_generic_method_parameters):
1378         Rearrange code to ensure we always uses a generic method definition.
1379         * class.c (mono_class_inflate_generic_method_full): Set
1380         'generic_container' field only for generic method definitions.
1381         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1382         Use presense of 'generic_container' field as indication of being a
1383         generic method definition.
1384
1385 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1386
1387         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1388
1389         * object-internals.h: Reflect changes in the layout of the managed Delegate
1390         class.
1391         
1392         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
1393         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
1394         runtime memory used by the dynamic method. Fixes #77146.
1395
1396 2007-06-21  Dick Porter  <dick@ximian.com>
1397
1398         * file-io.h: 
1399         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
1400         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
1401         81767.
1402
1403 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1404
1405         * reflection.c (method_encode_methodspec): Add a tripwire.
1406         * class.c (inflate_generic_type): The fully open generic type is
1407         not the same as the generic type definition.
1408
1409 2007-06-21  Martin Baulig  <martin@ximian.com>
1410
1411         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
1412
1413         * mono-debug-debugger.h
1414         (MonoDebuggerBreakpointInfo): Removed.
1415         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
1416         (mono_debugger_remove_breakpoint): Likewise.
1417         (mono_debugger_breakpoint_callback): Likewise.
1418         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
1419
1420 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1421
1422         * metadata.c (mono_metadata_lookup_generic_class): The fully open
1423         generic type is not the same as the generic type definition.
1424         * class.c (mono_generic_class_get_class): Likewise.
1425
1426 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
1427
1428         * icall.c: The second argument to 
1429         System.Reflection.MethodBase.GetMethodFromHandleInternalType
1430         is a MonoType not a MonoClass.
1431
1432 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1433
1434         * verify.c: support for function pointers in the verifier
1435
1436 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1437
1438         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
1439
1440 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
1441
1442         * assembly.c: removed Mono.Data.SqliteClient from the list of
1443         forward-compatible assemblies as it breaks the ABI (bug #81899).
1444
1445 2007-06-19  Raja R Harinath  <rharinath@novell.com>
1446
1447         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
1448         lookup/update with the loader lock.
1449         * reflection.c (mono_class_bind_generic_parameters): No need to
1450         protect mono_metadata_lookup_* with the loader lock.
1451         * class.c (inflate_generic_type): Likewise.
1452         
1453         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
1454         on a generic instantiated type.
1455
1456 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
1457
1458         *verify.c: produce meanfull error messages on verification error
1459         *verify.c: fixed some cases of verification errors reported as validation errors
1460         *pedump.c: fixed the error name array, now it shows validation errors properly
1461         *verify.h: fixed the contant that should be used for verification errors
1462
1463 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1464
1465         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1466         for bug #77596, 81858 and 80743 (generics data structures on domain
1467         unload).
1468
1469 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1470
1471         Avoid allocating 'MonoGenericContext' on the heap.
1472         * class-internals (_MonoMethodInflated::context): Make field
1473         inline, not a pointer.
1474         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1475         stack.  Use the context embedded within the inflated method as the
1476         hash key, rather than 'new_context'.
1477         * class.c (inflate_generic_context): Simplify.  Return a struct
1478         rather than allocating on the heap.
1479         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1480         doesn't salt away a copy of the context -- simplifying the
1481         lifetime rules of a 'MonoGenericContext *'.
1482         (mono_method_get_context): Return pointer to embedded context.
1483         (setup_generic_array_ifaces): Allocate temporary context on stack.
1484         * reflection.c (inflate_mono_method): Likewise.
1485         (mono_reflection_bind_generic_method_parameters): Likewise.
1486         Use the context embedded within the inflated method as the hash key.
1487
1488         Avoid a source of allocation of 'MonoGenericContext'.
1489         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1490         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1491         * class.c: Update to changes.
1492         (mono_generic_class_get_context): Simplify drastically.  Now just
1493         returns a pointer to the field.
1494         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1495         argument as a const pointer.
1496         (mono_metadata_generic_context_equal): Likewise.
1497         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1498         Update to changes.
1499
1500 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1501
1502         * verify.c improved the handling of brtrue/brfalse, factored out common code
1503
1504 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1505
1506         Kill MonoGenericMethod.
1507         * class-internals.h (MonoGenericContext::method_inst): Rename from
1508         'gmethod' and convert to a MonoGenericInst.
1509         (MonoGenericMethod): Remove.
1510         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1511         * loader.c (method_from_methodspec): Update to changes.  Use a
1512         MonoGenericContext as the key to the hashtable.
1513         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1514         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1515         (mono_metadata_generic_context_hash): Likewise from
1516         'mono_metadata_generic_method_hash'.  Change hash function.
1517         (mono_metadata_load_generic_params): Update to changes.
1518         (mono_get_shared_generic_method): Remove.
1519         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1520         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1521         (inflate_generic_context): Likewise.
1522         (mono_class_inflate_generic_method_full): Likewise.
1523         (setup_generic_array_ifaces): Likewise.
1524         (mono_class_create_from_typespec): Likewise.
1525         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1526         (method_encode_methodspec): Update callsite.
1527         (reflection_methodbuilder_to_mono_method): Update to changes.
1528         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1529         MonoGenericContext as the key to the hashtable.
1530         (inflate_mono_method): Update to changes.
1531
1532         * class-internals.h (MonoGenericMethod::container): Remove.
1533         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1534
1535 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1536
1537         * profiler-private.h, profiler.c, profiler.h: added API to profile
1538         exception events.
1539
1540 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1541
1542         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1543
1544 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1545
1546         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1547         Fixed overflow and underflow not aborting the verification process.
1548
1549 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1550
1551         * class-internals.h (MonoStats): Added stats entries for dynamic
1552         code allocations.
1553
1554 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1555
1556         * loader.c (mono_free_method): Free header->locals and header->clauses.
1557
1558         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1559         dynamic case.
1560
1561         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1562
1563         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1564
1565 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1566
1567         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1568         the tables.
1569
1570 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1571
1572         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1573
1574 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1575
1576         MonoGenericMethod on a diet
1577         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1578         here ...
1579         (_MonoGenericMethod::reflection_info): ... from here.
1580         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1581         Update to changes.
1582         * reflection.c (inflate_mono_method): Likewise.
1583         (mono_reflection_bind_generic_method_parameters): Likewise.
1584
1585 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1586
1587         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1588         *verify.c: factored long ldarg forms to share code with short forms
1589
1590 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1591
1592         *verify.c: fixed code formating factored some duplicate code
1593         into a new function
1594
1595         *verify.h: fixed binary incompatibility introduced earlier
1596
1597         *pedump.c: fixed formating
1598
1599 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1600
1601         Fix assertion when disassembling Mono.C5.dll
1602         * loader.c (method_from_methodspec): Avoid inflating a method
1603         twice with the same context.  If the methodref is inflated, use
1604         the declaring method instead.
1605
1606         * class.c (mono_class_from_generic_parameter): Fix case similar to
1607         bug #81830 handled below, but for method containers.
1608
1609 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1610
1611         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1612         get_shared_generic_class.  Directly inflate the instance.
1613         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1614         (inflate_generic_class): Delete.
1615         (get_shared_generic_class): Delete.  Move setting of
1616         'cached_class' and 'cached_context' ...
1617         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1618
1619         * metadata.c (mono_metadata_lookup_generic_class): Change
1620         signature to take the components of a MonoGenericClass rather than
1621         an allocated MonoGenericClass.  Change semantics to be intern-like.
1622         * reflection.c (mono_class_bind_generic_parameters): Update to
1623         changes.  Make locking region tighter.
1624         * class.c (inflate_generic_class): Update to changes.
1625         (get_shared_generic_class): Likewise.
1626         * metadata-internals.h: Likewise.
1627
1628         * reflection.c (mono_class_bind_generic_parameters): Take and
1629         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1630         (mono_reflection_bind_generic_parameters): Use
1631         'mono_class_bind_generic_parameters' rather than duplicate the code.
1632         * class.c (mono_bounded_array_class_get): Update to changes.
1633         * object-internals.h: Likewise.
1634
1635         * reflection.c (mono_class_bind_generic_parameters): Only support
1636         parameterizing generic type definitions.  Remove support for other
1637         open types.
1638
1639 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1640
1641         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1642
1643         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1644         in the dynamic case.
1645
1646 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1647
1648         * threads.c: When cleaning up thread, reset the Background bit.
1649         Fixes bug #81720.
1650
1651 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1652
1653        * metadata.c: Move variable declarations to top of scope.
1654        * verify.c: Move variable declarations to top of scope.
1655
1656        Code is contributed under MIT/X11 license.
1657
1658 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1659
1660         * reflection.c (mono_class_bind_generic_parameters): Replace
1661         open-coded loop with mono_metadata_inflate_generic_inst.
1662
1663         * class.c (get_shared_generic_class): Don't call
1664         mono_get_shared_generic_inst.  Use the container's own
1665         'class_inst'.
1666
1667         * metadata.c (mono_metadata_load_generic_params): Move
1668         initialization of 'context' field here from ...
1669         * class.c (mono_class_create_from_typedef): ... here, and ...
1670         * loader.c (mono_get_method_from_token): ... here.
1671
1672         * class.c (get_shared_generic_class): Rename from
1673         mono_get_shared_generic_class and make static.
1674         (mono_get_shared_generic_inst): Move to metadata.c.
1675         * loader.c (mono_get_shared_generic_method): Likewise.
1676         * class-internals.h, metadata-internals.h: Update to changes.
1677
1678         Fix #81830
1679         * class.c (mono_class_from_generic_parameter): Don't assume a
1680         generic container owner exists.  Generic containers from monodis
1681         don't have any.
1682
1683 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1684
1685         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1686         * verify.h: new typedefs to returns the non-verifiable status
1687         * verify.c: initial implementation of generics, stack merging and object compatibility check
1688
1689 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1690
1691         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1692         a MonoInternalHashTable again (fixed bug in internal hash table
1693         code).
1694
1695 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1696
1697         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1698         MonoInternalHashTable again (fixed bug in internal hash table
1699         code).
1700
1701 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1702
1703         * class.c, image.c, class-internals.h, domain.c,
1704         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1705         changes.  Have to figure out what makes them break the SWF
1706         regression.
1707
1708 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1709
1710         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1711         a MonoInternalHashTable now.
1712
1713 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1714
1715         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1716         MonoInternalHashTable now.
1717
1718 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1719
1720         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1721         invoke_impl code.
1722
1723         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1724
1725         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1726         dependent trampoline.
1727
1728         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1729
1730         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1731
1732 2007-05-29  Robert Jordan  <robertj@gmx.net>
1733
1734         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1735
1736 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1737
1738         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1739
1740 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1741
1742        * marshal.c: Fix interface lookup loops for
1743        cominterop_get_com_slot_for_method and 
1744        cominterop_get_method_interface. Only need to lookup
1745        if type is a class, else use interface type method is on.
1746
1747        Code is contributed under MIT/X11 license.
1748
1749 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1750
1751         * reflection.c: HasSecurity can be present even if no specially 
1752         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1753         SecurityAttribute). Fix CAS regression tests on buildbot.
1754
1755 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1756
1757        * appdomain.c: Add configure checks for header files.
1758        * image.c: Add configure checks for header files.
1759        * file-io.c: Add configure checks for header files.
1760        * debug-mono-symfile.c: Add configure checks for header files.
1761        * threadpool.c: Add configure checks for header files.
1762        * console-io.c: Add configure checks for header files.
1763        * profiler.c: Add configure checks for header files.
1764        * rawbuffer.c: Add configure checks for header files.
1765        * icall.c: Add configure checks for header files.
1766        * rand.c: Add configure checks for header files.
1767        * socket-io.c: Add configure checks for header files.
1768
1769        Code is contributed under MIT/X11 license.
1770
1771 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1772
1773         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1774         assertion as it breaks the build.
1775         
1776         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1777
1778         * reflection.c (lookup_custom_attr): Make a copy here too.
1779
1780         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1781         dynamic images.
1782
1783         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1784         images.
1785
1786         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1787         info.
1788
1789 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1790
1791         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1792         (load_cattr_value): Ditto.
1793
1794 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1795
1796         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1797
1798 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1799
1800         * threads.c: In "start_wrapper", set apartment_state to MTA if
1801         apartment_state is Unknown and we're running on 2.0 profile or
1802         higher.
1803         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1804         to main method, then set apartment_state to Unknown on 1.0 profile,
1805         and MTA on 2.0 profile.
1806
1807 2007-05-16  Jb Evain  <jb@nurv.fr>
1808
1809         * class-internals.h (MonoDefaults): Add an attribute_class and
1810           customattribute_data_class.
1811         * domain.c (mono_init_internal): Populate them.
1812         * reflection.c: Use them to remove duplicates. Make a vew
1813         MonoClass variables `static'.
1814
1815 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1816
1817         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1818         step in implementing IMT, so that all isinst checks now can go
1819         through the bitmap.
1820         This was needed because vtables for TransparentProxy need to look
1821         like the vtable of the "target" class, so they need to point to
1822         its interface bitmap directly.
1823
1824         * object.c: inside "mono_class_create_runtime_vtable" and
1825         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1826
1827 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1828
1829         * object-internals.h
1830           culture-info.h : added territory field in MonoCulture and
1831           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1832         * locales.c : fill territory field above too.
1833         * culture-info-table.h : regenerated.
1834
1835 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1836
1837         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1838         Fixes #81599.
1839
1840 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1841
1842         * object.c: Always initialize apartment, even if 
1843         there is no custom attributes on entry point.
1844         
1845         Code is contributed under MIT/X11 license.
1846
1847 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1848
1849         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1850         * metadata.c: If no encoding is set, check for unicode
1851         on class.
1852         
1853         Code is contributed under MIT/X11 license.
1854
1855 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1856
1857         * threads.c: Handle if mono_thread_current returns NULL 
1858         
1859         Code is contributed under MIT/X11 license.
1860
1861 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1862
1863         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1864         in start_wrapper. Added mono_thread_init_apartment_state and
1865         mono_thread_cleanup_apartment_state.
1866         * object.c: Initialize thread apartment state on main thread
1867         by checking for STAThreadAttribute on entry point.
1868         * object-internals.h: Add apartment_state field to MonoThread.
1869         * threads-types.h: Add unmanaged definition of 
1870         System.Threading.ApartmentState, MonoThreadApartmentState.
1871         
1872         Code is contributed under MIT/X11 license.
1873         
1874 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1875
1876         * class.c: Fix windows build.
1877         * class-internals.h: Fix windows build.
1878         
1879         Code is contributed under MIT/X11 license.
1880
1881 2007-05-08  Robert Jordan  <robertj@gmx.net>
1882
1883         * process.c (CreateProcess_internal):
1884         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1885         .CreateNoWindow was specified. Fixes #81496.
1886
1887 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1888
1889         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1890         step in implementing IMT, replaced it with two compact arrays
1891         (interfaces_packed and interface_offsets_packed) and a bitmap that
1892         is used for isinst checks (interface_bitmap).
1893
1894         * class.c: (compare_interface_ids): compare function to pass to
1895         bsearch when looking for an interface with a given id.
1896         (mono_class_interface_offset): reimplemented using bsearch on
1897         interfaces_packed, getting the offset from interface_offsets_packed.
1898         (print_implemented_interfaces): utility debugging function.
1899         (setup_interface_offsets): reworked to initialize interfaces_packed,
1900         interface_offsets_packed and interface_bitmap.
1901
1902         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1903         with uses of interfaces_packed and interface_offsets_packed.
1904
1905 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1906
1907         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1908         mono_class_interface_offset prototype to wrap all accesses to
1909         "MonoClass.interface_offsets".
1910
1911         * class.c: Implemented mono_class_interface_offset, and wrapped all
1912         accesses to "MonoClass.interface_offsets".
1913
1914         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1915         "MonoClass.interface_offsets".
1916
1917 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1918
1919         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1920         GetMethodFromHandle overloads (bug #78637).
1921
1922 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1923
1924         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1925         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1926
1927 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1928
1929         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1930         #81498.
1931
1932         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1933         gracefully.
1934         (mono_custom_attrs_from_index): Ditto.
1935
1936         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1937         Fixes #81501.
1938
1939 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1940
1941         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1942         is now allocated from a mempool.
1943
1944 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1945
1946         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1947         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1948
1949 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1950
1951         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1952         mono_loader_clear_error () too late. Fixes #81463.
1953
1954 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1955
1956         * culture-info-table.h : regenerated.
1957
1958 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1959
1960         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1961         is missing.
1962
1963 2007-04-25  Dick Porter  <dick@ximian.com>
1964
1965         * Makefile.am: Put the mingw enforced-optimisation back into the
1966         PLATFORM_WIN32 section.
1967
1968 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1969
1970         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1971         patch.
1972
1973         * image.c (mono_image_load_module): New API function to load a module reference.
1974
1975         * image.c (load_modules): Load modules lazily. Fixes #80812.
1976
1977         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1978         
1979         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1980
1981         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1982         to mono_image_load_module_dynamic.
1983
1984 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1985
1986         * marshal.c: Fix calling convention for CCW on non-windows
1987         platforms. STDCALL on windows, CDECL everywhere else to work 
1988         with XPCOM and MainWin COM.
1989         
1990         Code is contributed under MIT/X11 license.
1991
1992 2007-04-23  Martin Baulig  <martin@ximian.com>
1993
1994         Fix #80969.
1995
1996         * loader.c
1997         (method_from_memberref): Added `gboolean *used_context' argument.
1998         (mono_get_method_from_token): Likewise.
1999         (mono_get_method_full): Don't insert the method in the cache when
2000         `used_context' is true.
2001
2002 2007-04-23  Raja R Harinath  <rharinath@novell.com>
2003
2004         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
2005
2006         * reflection.c (mono_reflection_bind_generic_parameters): Don't
2007         create new MonoTypes for returned types.
2008         * class.c (mono_generic_class_get_class): Export mono-internal.
2009         * class-internals.h: Update to changes.
2010
2011 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
2012
2013         * threadpool.c, threadpool.h, icall-def.h: patch from
2014         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
2015
2016 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
2017
2018         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
2019         
2020         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
2021
2022         * threads.c (mono_thread_get_stack_bounds): New helper function.
2023
2024         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
2025         Correctly compute stack bounds when attaching. Fixes #81394.
2026
2027 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
2028
2029         * reflection.c: fix handling of doubles in custom attributes
2030         for the arm-fpa format (bug #81368).
2031
2032 2007-04-18  Raja R Harinath  <rharinath@novell.com>
2033
2034         * reflection.c (assembly_add_win32_resources): Mildly relax an
2035         bounds check to let the end pointer point just past the end of the
2036         allocated buffer.  (may fix #81384)
2037
2038 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
2039
2040         * culture-info-table.h : regenerated.
2041
2042 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
2043
2044         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
2045         the thread is aborted early.
2046
2047 2007-04-05  Dick Porter  <dick@ximian.com>
2048
2049         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
2050         FindFirstFile()/FindNextFile() to find entries.  This lets the
2051         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
2052         81038.
2053
2054         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
2055         the parameters of
2056         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
2057
2058 2007-04-04  Martin Baulig  <martin@ximian.com>
2059
2060         * debug-helpers.c
2061         (mono_method_desc_full_match): Add support for nested classes.
2062
2063 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
2064
2065         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
2066
2067 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
2068
2069         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
2070         waiting for too many threads.
2071
2072 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
2073
2074         * environment.c: Fix return value check on uname so we can get the 
2075         executing version on Solaris operating systems.
2076
2077 2007-03-28  Jb Evain  <jbevain@gmail.com>
2078
2079         * class.c (mono_type_get_name_recurse): Complete the
2080         fix for the creation of assembly qualified names for
2081         pointer types. Fixes #81208.
2082
2083 2007-03-27  Dick Porter  <dick@ximian.com>
2084
2085         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
2086         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
2087         changed.
2088
2089         * threads.c
2090         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
2091         the value of ReleaseMutex().
2092
2093 2007-03-27  Dick Porter  <dick@ximian.com>
2094
2095         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
2096         in little-endian order, not network endian, so must be converted
2097         to host endian here.  Fixes bug 80593.
2098
2099 2007-03-22  Jb Evain  <jbevain@gmail.com>
2100
2101         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
2102         qualified names for pointer types. Fixes #81208.
2103
2104 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
2105
2106         * marshal.c: Add support for PreserveSigAttribute. 
2107         
2108         Code is contributed under MIT/X11 license.
2109
2110 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
2111
2112         * process.c: Fix endianness issues. Fixes #81126.
2113
2114         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
2115         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
2116
2117         * image.c (mono_image_lookup_resource): Make this work on big-endian
2118         machines.Change API contract so the caller needs to free the return value.
2119         
2120         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
2121         API change.
2122         
2123 2007-03-14  Martin Baulig  <martin@ximian.com>
2124
2125         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
2126         mono_type_get_desc() as well.
2127
2128 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
2129
2130         * icall.c:  Fix environ access in VS.  
2131         
2132 2007-03-13  Alp Toker  <alp@atoker.com>
2133
2134         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
2135         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
2136         #63841.
2137
2138 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
2139
2140         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
2141         circular references among dynamic methods. Fixes #81091.
2142
2143         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
2144
2145 2007-03-09  Martin Baulig  <martin@ximian.com>
2146
2147         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
2148
2149 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
2150
2151         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
2152         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
2153         
2154         Code is contributed under MIT/X11 license.
2155         
2156 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
2157
2158         * loader.c: Reapply patch for bug #79424.
2159
2160 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2161
2162         * metadata.c (mono_type_to_unmanaged): Only convert object to
2163         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
2164
2165 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
2166
2167         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
2168         (and incorrectly set) is_reference field from MonoGenericInst.
2169
2170 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2171
2172         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
2173         a little earlier.
2174
2175         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
2176
2177         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
2178
2179 2007-03-05  Miguel de Icaza  <miguel@novell.com>
2180
2181         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
2182         FileOptions.1 value to mean "temporary", map that to
2183         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
2184
2185         Fixes 80688
2186
2187 2007-03-03  Marek Habersack  <mhabersack@novell.com>
2188
2189         * appdomain.c: implement MS .Net style shadow copying. Copies of
2190         the assemblies are made in a subdirectory of the dynamic base
2191         directory, the assembly names are preserved.
2192         Copy .mdb and .config files along with the assemblies being shadowed.
2193
2194 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2195
2196         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
2197         (emit_marshal_handleref): Ditto.
2198
2199         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
2200         on Visual C++. Fixes #80671.
2201
2202 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2203
2204         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
2205         for clone operations.
2206
2207 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2208
2209         * marshal.c: Fix warnings.
2210
2211 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
2212
2213         * loader.c: allow case-insensitive matching of the dll name
2214         in dllmap handling when prefixed with "i:".
2215
2216 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
2217
2218         * threads.c: Fix #ifdef for dummy_apc function for VS.
2219
2220 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2221
2222         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
2223
2224 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
2225         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
2226         giving precedence to the methods with a fully qualified name
2227         (InterfaceName.MethodName) when building the interface sections
2228         of the vtable.
2229
2230 2007-02-16  Dick Porter  <dick@ximian.com>
2231
2232         * threadpool.c (append_job): Fix fast-path array handling, so it's
2233         less likely the array will grow exponentially when the load is
2234         heavy.
2235
2236 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2237
2238         * metadata-internals.h, loader.c: fix dllmap lookup order
2239         for non-function maps, too, and prepare for fallback code.
2240
2241 2007-02-12  Robert Jordan  <robertj@gmx.net>
2242
2243         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
2244         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
2245         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
2246         GlobalFree. Fixes a part of bug #77075.
2247
2248 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
2249
2250         * loader.c: implemented typedef parent in field memberref.
2251
2252 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
2253
2254         * marshal.c: Fix warnings and remember to call Release on
2255         IUnknown of RCW.
2256         
2257         Code is contributed under MIT/X11 license.
2258
2259 2007-02-10  Miguel de Icaza  <miguel@novell.com>
2260
2261         * class-internals.h: Add MonoHandleRef definition, and
2262         handleref_class to mono_defaults. 
2263
2264         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
2265         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
2266
2267         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
2268         (do nothing on this stage)
2269         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
2270         (emit_marshal_handleref): New method, used for argument handling
2271         of HandleRefs. 
2272
2273 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
2274
2275         * class.c (mono_class_setup_parent): Lazily init com types.
2276         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
2277         init com types.
2278         * object.c (mono_remote_class_vtable): Lazily init com types.
2279         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
2280         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
2281         * domain-internals.h: Expose mono_init_com_types.
2282         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
2283         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
2284         Add support for COM Callable Wrapper marshalling.
2285         * marshal.h: Add icall definitions.
2286         * gc.c: Handle freeing of CCWs in finalizer code.
2287         
2288         Code is contributed under MIT/X11 license.
2289
2290 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
2291
2292         * reflection.c: changed all the signature encoding code to use
2293         a variable-sized buffer.
2294
2295 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2296
2297         * marshal.c: locking fixes: never take the loader lock
2298         or other runtime locks when holding the marshal lock
2299         (fixes bug#80664).
2300
2301 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
2302
2303         * marshal.c: make the delegate function pointer mapping
2304         work for the moving GC.
2305
2306 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
2307
2308         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
2309         for bug #80618.
2310
2311 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2312
2313         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
2314         gmodule.
2315
2316 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
2317
2318         * threadpool.c: made the code moving-GC safe.
2319
2320 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
2321
2322         * assembly.c, boehm-gc.c, class-internals.h, class.c,
2323         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
2324         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
2325         warning cleanup.
2326         * reflection.c: warning cleanup, some threading and moving GC fixes.
2327
2328 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
2329
2330         * class.c, loader.c: create the needed Set/Get/Address array methods
2331         as well as the .ctors in mono_class_init (), fixes bug #80567.
2332
2333 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
2334
2335         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
2336         we doesn't decrease its alignment. Should fix the sparc build.
2337
2338 2007-01-24  Dick Porter  <dick@ximian.com>
2339
2340         * socket-io.c
2341         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2342         Create the returned object if we need to ignore an unsupported
2343         socket option.  Fixes a segfault reported by Atsushi.
2344
2345 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
2346
2347         * class.c, object.c: restrict GC-tracked fields to
2348         UIntPtr fields used inside corlib, so we provide better
2349         type info to the GC and also allow broken packing as in
2350         bug #80580.
2351
2352 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
2353
2354         * sgen-gc.c: removed duplicated function.
2355
2356 2007-01-19  Miguel de Icaza  <miguel@novell.com>
2357
2358         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
2359         value that means that the value is not supported, but that we
2360         should not return a failure, but instead report this as a
2361         successful operation.
2362
2363 2007-01-19  Raja R Harinath  <rharinath@novell.com>
2364
2365         Fix tests/bug79956.2.il
2366         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
2367         (mono_generic_class_get_class): If the generic definition in an
2368         enum, copy over other fields related to it.
2369
2370 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
2371
2372         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
2373         genericinst enums (bug #79215).
2374
2375 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
2376         * class.c: Fix bug 80307.
2377
2378 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
2379
2380         * image.c: if the file table is not present, try to load
2381         all the modules, since we don't have info about them
2382         having or not metadata (bug #80517).
2383         * assembly.c: allow mono_assembly_load_references () to
2384         work for netmodules.
2385
2386 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2387
2388         * image.c, metadata-internals.h, object.c: execute module
2389         cctors when running on the 2 runtime if present (bug #80487).
2390
2391 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2392
2393         * icall.c: optimized InitializeArray() on bigendian.
2394
2395 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
2396
2397         * icall.c: fix for the broken ARM FPA double format.
2398
2399 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2400
2401         * icall.c: handle endian issues for r4 and r8 types, too, in
2402         the InitializeArray() icall.
2403
2404 2007-01-15  Miguel de Icaza  <miguel@novell.com>
2405
2406         * loader.c (mono_loader_error_prepare_exception): Clear the error
2407         once we have extracted the information from it, do this before we
2408         call into the JIT's class loading mechanisms.
2409
2410         * object.c (mono_class_create_runtime_vtable): Do not clear the
2411         loader error before calling mono_class_get_exception_for_failure
2412         as the loader error is needed inside
2413         mono_class_get_exception_for_failure to throw the error (thinko).
2414
2415         Fixes #80521
2416         
2417 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2418
2419         * reflection.c: align fields rva data so it's faster to load at
2420         runtime.
2421
2422 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2423
2424         Prepare to simplify GenericMethod handling.
2425         * class-internals.h (mono_method_get_context): New accessor function.
2426         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
2427         rather than directly accessing '->context' field.
2428
2429         * class-internals.h (_MonoGenericParam.method): Move ...
2430         (_MonoGenericContainer): ... here.  Add into union with klass field.
2431         * class.c, icall.c, loader.c, metadata.c, reflection.c:
2432         Update to changes.
2433
2434 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
2435
2436         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
2437         the wrapper type enum and reduce relocations.
2438
2439 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2440
2441         * reflection.c (inflate_mono_method): Reuse method instantiation
2442         from the generic method, if available.
2443
2444 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2445
2446         * marshal.c (emit_marshal_variant): Fix conv_arg
2447         type in last commit, based on whether parameter is byref.
2448         
2449 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2450
2451         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
2452         marshalling.
2453         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
2454         MONO_TYPE_OBJECT back for VARIANT support.
2455
2456 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2457
2458         * marshal.c, marshal.h, icall-def.h: Implement 
2459         Marshal.ReAllocCoTaskMem.
2460
2461 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
2462
2463         * marshal.c: memory retention fixes: use the proper
2464         image cache for runtime_invoke method lookups.
2465
2466 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2467
2468         * mempool.c: added code to help debug mempool allocations.
2469
2470 2007-01-11  Dick Porter  <dick@ximian.com>
2471
2472         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2473         support (experimenting with faking it with IP_MTU_DISCOVER for
2474         systems that don't have IP_DONTFRAGMENT.)
2475         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2476         icall.
2477
2478         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2479
2480         * socket-io.h: Add new fields to MonoSocketAsyncResult
2481         corresponding to the new ones in Socket.cs.
2482
2483 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2484
2485         Fix IronPython regression mentioned in #80249
2486         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2487         'cached_context' field, since it may have been initialized as a
2488         side-effect of metadata parsing.
2489
2490         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2491         (_MonoGenericClass.cached_class): Move here and rename from lone
2492         remaining field of ...
2493         (_MonoInflatedGenericClass): ... this.  Remove.
2494         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2495         to changes.
2496
2497         Fix mcs/tests/test-128.cs regression.
2498         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2499         2007-01-10 change below.
2500         [MONO_TYPE_OBJECT]: Recurse into array case.
2501
2502 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2503
2504         * class-internals.h (mono_get_inflated_generic_class): Remove.
2505         * class.c (mono_get_inflated_generic_class): Remove.
2506         (mono_generic_class_get_class): Rename from
2507         mono_class_create_generic.
2508         (mono_class_from_mono_type) [GENERICINST]: Use it.
2509         * reflection.c, metadata.c: Update to changes.  Use
2510         'mono_class_from_mono_type'.
2511
2512 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2513
2514         * reflection.c: use passed type when encoding an array element
2515         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2516
2517 2007-01-09  Robert Jordan  <robertj@gmx.net>
2518
2519         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2520         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2521         Fixes bug #80392.
2522
2523 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2524
2525         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2526
2527         * object.c (set_value): Avoid aliasing between type->data.klass
2528         and type->data.generic_class.
2529
2530         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2531
2532 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2533
2534         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2535         between type->data.klass and type->data.generic_class.
2536
2537 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2538
2539         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2540         value in out parameters.
2541
2542 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2543
2544         Simplify invariant for MonoGenericClass::klass field.
2545         * class.c (mono_class_create_generic): Verify 'klass' is null.
2546         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2547         initialize 'klass' field.
2548
2549 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2550
2551         Ongoing work to avoid redundant data and simplify invariants.
2552         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2553         'generic_class', and change type to a GenericInst.
2554         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2555         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2556
2557 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2558
2559         * class.c : skip io-layer under PLATFORM_WIN32.
2560
2561 2007-01-03  Tor Lillqvist  <tml@novell.com>
2562
2563         Fix #80305: In a bundled executable, look in the bundled exe
2564         assembly to determine the runtime version. Add the possibility to
2565         bundle also the machine.config file.
2566         
2567         * assembly.c (mono_assembly_open_from_bundle): Make
2568         non-static. Allow being called even if we have no bundled
2569         assemblies, and return NULL right away in that case.
2570
2571         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2572         here.
2573
2574         * domain.c (app_config_parse): Take an assembly exe file name as
2575         parameter instead of a config file name. Check for a bundled
2576         config file for that assembly by calling
2577         mono_config_string_for_assembly_file() (see below) before looking
2578         for one in the file system.
2579         (get_runtimes_from_exe): Corrsponding change to call of
2580         app_config_parse().
2581         (get_runtimes_from_exe): Check for bundled assembly exe file first
2582         by calling mono_assembly_open_from_bundle(). If no bundled
2583         assembly exe file is found, call mono_image_open() as before to
2584         look it up in the file system.
2585
2586         * mono-config.c: Add variable bundled_machinec_onfig.
2587         (mono_config_string_for_assembly_file): New function.
2588         (mono_config_for_assembly): Move code snippet that looks for a
2589         bundled assembly .config file into the above new function. Call
2590         it.
2591         (mono_register_machine_config, mono_get_machine_config): New
2592         functions to set and retrieve
2593
2594         * assembly.h: Declare mono_register_machine_config().
2595
2596         * mono-config.h: Declare mono_get_machine_config() and
2597         mono_config_string_for_assembly_file().
2598
2599         * icall.c: No declaration of environ necessary on Win32. It is
2600         declared (as a macro expanding to a function call) in stdlib.h.
2601         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2602         New internal mono function. Returns the value of
2603         mono_get_machine_config() as a Mono string.
2604
2605         * icall-def.h: Add get_bundled_machine_config().
2606
2607 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2608
2609         Remove redundant field
2610         * class-internals.h (_MonoGenericContext.container): Remove field.
2611         * loader.c (mono_method_get_signature_full): Don't parse a
2612         "container" for a signature parse when the signature is inflated
2613         immediately.
2614         (method_from_methodspec): Likewise, for a generic_inst.
2615         * class.c, metadata.c, reflection.c: Update to changes.
2616
2617 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2618
2619         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2620         'cached_context', and change semantics -- it starts off NULL, and
2621         is initialized on demand.
2622         * class.c (mono_generic_class_get_context): New accessor to
2623         replace 'context' field accesses.
2624         (mono_class_get_context): New helper.
2625         (*): Update to changes.
2626         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2627
2628 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2629
2630         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2631         before the memcpy.   Fixes Marshal2 regression.
2632
2633 2007-01-02  Jb Evain  <jbevain@gmail.com>
2634
2635         * blob.h: add a MONO_TYPE_ENUM definition
2636         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2637         fix the encoding of arrays of enums in custom attributes.
2638
2639         Fixes #79666.
2640
2641 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2642
2643         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2644         string is null terminated, but only cut the string short if it
2645         overflows the buffer.   
2646         
2647         (mono_string_to_byvalstr): Also fix this routine.   The code here
2648         was not properly terminating a string (it was only terminated
2649         because of the previous catch-all memset). 
2650
2651         I left the memset, because I do not know if applications expect
2652         the runtime to clear this region. 
2653
2654         Fixes #79944.
2655
2656         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2657         Clear the error before returning to unmanaged code to prevent the
2658         runtime from being confused later on (fixes  80420).
2659         (ves_icall_type_from_name): Always call mono_loader_clear_error
2660         after parsing a type that could have failed.
2661         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2662
2663         * loader.c (mono_loader_clear_error): Fix indentation.
2664
2665 2006-12-28  Martin Baulig  <martin@ximian.com>
2666
2667         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2668
2669 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2670
2671         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2672         getting a token for an EnumBuilder.
2673
2674 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2675
2676         * reflection.c: be more careful in case resource generation
2677         fails to create the data array.
2678
2679 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2680
2681         * sgen-gc.c: write barrier for clone and fix unregister handles.
2682
2683 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2684
2685         * reflection.c: some fixes needed in the generics code for the moving GC.
2686
2687 2006-12-22  Robert Jordan  <robertj@gmx.net>
2688
2689         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2690         account. Fixes bug #80299.
2691
2692 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2693
2694         Fix WaitHandle usage in delegates.
2695         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2696         * object.c (mono_wait_handle_new): Use the property set method to
2697         initialize the handle.
2698         (mono_wait_handle_get_handle): New.
2699         * threadpool.c (mono_async_invoke): Use it.
2700         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2701         Likewise.
2702         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2703
2704 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2705
2706         * marshal.c (emit_marshal): Call emit_marshal_variant and
2707         emit_marshal_com_interface when applicable.
2708         (emit_marshal_variant, emit_marshal_com_interface): Add
2709         methods for this case and remove if's from emit_marshal_object.
2710         
2711 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2712
2713         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2714
2715 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2716
2717         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2718         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2719         and GlobalFree on Windows. Remove FIXME.
2720
2721 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2722
2723         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2724         implementation for managed objects.
2725
2726 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2727
2728         * object.c: implemented code to be used for checking
2729         that no reference field overlaps with non-references.
2730
2731 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2732
2733         * threadpool.c: fix queue code to be compatible with the
2734         moving GC.
2735
2736 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2737
2738         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2739         in structures by throwing ArgumentNullException.
2740
2741         (emit_marshal_safehandle): Also when they are null parameters.
2742
2743         (emit_marshal_safehandle): Add support for ref
2744         SafeHandles parameters
2745
2746 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2747
2748         * profiler.c: updated to use the mono-dl API instead of
2749         gmodule.
2750
2751 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2752
2753         * profiler.c: updated to use the mono-dl dynamic loading
2754         API instead of gmodule.
2755
2756 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2757
2758         * profiler.c: use readlink, older versions of glib don't have
2759         g_file_read_link ().
2760
2761 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2762
2763         * profiler.c: try to detect the path to mono if libc fails to provide
2764         a useful name (bug #80286).
2765
2766 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2767
2768         Fix #80242
2769         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2770         instance, use the generic type definition instead.
2771         (ves_icall_Type_GetNestedTypes): Likewise.
2772         * class.c (mono_class_create_generic): Always set the
2773         nested_classes of a generic instance to NULL, even if the generic
2774         type definition has nested types.
2775
2776 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2777
2778         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2779         and fix on Linux.
2780         
2781 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2782
2783         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2784         my arguments were in the wrong order.   I also fixed the Windows
2785         version which seems to have had the same issue.
2786
2787         (mono_free_bstr): On Unix, this is g_free.
2788         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2789         conversions (for the tests in corlib to pass).
2790
2791 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2792
2793         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2794         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2795         exception if a ref SafeHandle in a struct has changed).
2796         
2797         (emit_struct_conv): Do not perform layout checks for classes
2798         derived from SafeHandle, as those are specially handled. 
2799
2800         (emit_object_to_ptr_conv): Add support for
2801         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2802
2803         (emit_marshal_safehandle): Implement conversion of return values
2804         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2805         
2806         * threads.c: WaitHandle now is compiled with two different handles
2807         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2808         for 2.0.
2809         
2810         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2811         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2812         these routines to cope with both kinds of fields.
2813
2814 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2815
2816         * metadata.c (mono_type_to_unmanaged): Handle the case where
2817         type->data.klass is a SafeHandle, and in that case, return the
2818         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2819         MONO_MARSHAL_CONV_SAFEHANDLE. 
2820
2821 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2822
2823         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2824         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2825         calling emit_marshal_object.
2826
2827         (emit_marshal_safehandle): Implement marshalling of
2828         SafeHandle parameters (no ref support yet).
2829
2830         (MarshalAction): Document the defines as I implement
2831         them for SafeHandle.
2832
2833         (emit_marshal_object): indentation police.
2834
2835         * class-internals.h: Define MonoSafeHandle.
2836         Add safehandle_class to MonoDefaults type.
2837
2838         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2839         list of classes to check for fields. 
2840
2841         * domain.c (mono_init_internal): Add SafeHandle to the list of
2842         mono_defaults loaded.
2843
2844 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2845
2846         Fix #80253
2847         * reflection.c (mono_reflection_bind_generic_parameters): If the
2848         generic type definition is a type builder, ensure that it is fully
2849         initialized before instantiating it.  Kill some dead code.
2850
2851 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2852
2853         * object.c: clear the loader_error () before loading
2854         more metadata stuff (bug #80258).
2855
2856 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2857
2858         * icall.c, icall-defs.h: type modifiers icalls for
2859         parameters and properties.
2860
2861 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2862
2863         * object.c, icall.c: fixed warnings.
2864
2865 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2866
2867         * marshal.c: fixed a couple of leaks and coding style in a few places.
2868
2869 2006-12-08  Dick Porter  <dick@ximian.com>
2870
2871         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2872         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2873         80173.
2874
2875 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2876
2877         * process.c: ProcessStartInfo may have only filename set and
2878         arguments can be NULL.
2879
2880 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2881
2882         * icall.c: fix leak found by Robert Jordan.
2883
2884 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2885
2886         * marshal.c, marshal.h: generate managed method to access an element
2887         of a multi-dimensional array.
2888
2889 2006-11-30  Paolo Molaro (lupus@ximian.com)
2890
2891         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2892
2893 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2894
2895         * icall.c: back out GetFields () fix until the serialization code is
2896         fixed to not depend on the incorrect behaviour.
2897
2898 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2899
2900         * profiler.c: provide defaults if none are set.
2901
2902 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2903
2904         * Makefile.am, attrdefs.h: new public header file with
2905         constants for attributes for use by embedders.
2906
2907 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2908
2909         * icall.c: GetFields () fix for bug #80064.
2910
2911 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2912
2913         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2914         removed long unused icalls.
2915
2916 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2917   
2918         * marshal.c: 
2919                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2920                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2921                 can be generated without a delegate class.
2922                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2923         
2924         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2925
2926 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2927
2928         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2929         #80069.
2930
2931 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2932
2933         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2934         icall-def.h: added icalls needed by System.GC.
2935
2936 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2937
2938         * loader.c: ensure the class in catch clauses is handled
2939         correctly for generics methods (fixes bug#79980).
2940
2941 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2942
2943         * monitor.h, monitor.c: added mono_locks_dump () function
2944         to help debug deadlocks involving managed locks.
2945
2946 2006-11-13  Dick Porter  <dick@ximian.com>
2947
2948         * file-io.c (get_file_attributes): If the file is a symlink try
2949         and get the stat data for the target, but also add the
2950         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2951         the specs for the windows symlink support, but will probably have
2952         to be reworked when I have test data from a vista machine.  Fixes
2953         bug 79887.
2954
2955 2006-11-13  Dick Porter  <dick@ximian.com>
2956
2957         * gc.c (mono_domain_finalize): 
2958         * marshal.c (mono_delegate_begin_invoke): 
2959         * threadpool.c (socket_io_init, mono_thread_pool_init)
2960         (mono_thread_pool_finish): 
2961         * monitor.c (mono_monitor_try_enter_internal): 
2962         * threads.c (mono_thread_resume, mono_thread_init)
2963         (mono_thread_suspend_all_other_threads)
2964         (mono_thread_execute_interruption): 
2965         * appdomain.c (mono_domain_unload): Check for NULL error returns
2966         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2967         75733.
2968
2969 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2970
2971         * process.c
2972         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2973         Only close the handle if the value of the handle is not
2974         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2975         robust.
2976
2977         Improvement for #75733, so that we do not run into this problem. 
2978
2979         
2980         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2981         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2982         internal variables.  Fixes #79462 
2983         
2984
2985 2006-11-09  Dick Porter  <dick@ximian.com>
2986
2987         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2988         Use poll() not select().  Fixes bug 79397.
2989
2990 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2991
2992         Fix #79872
2993         * assembly.c (mono_assembly_load_from_full): Check that the given
2994         image has an assembly manifest.
2995
2996 2006-11-09  Ankit Jain  <jankit@novell.com>
2997
2998         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2999         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
3000         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
3001
3002 2006-11-07  Dick Porter  <dick@ximian.com>
3003
3004         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
3005         Put the old resolver behaviour back for pre-2.0 profiles.
3006
3007 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
3008
3009         * threadpool.c: precise GC and locking fixes.
3010
3011 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
3012
3013         * class.c: don't load types that have an explicit unaligned
3014         managed reference. Provide better info in the TypeLoad exception.
3015         Part of the fix for bug #79744.
3016         * object.c: use the correct check for class type load issues.
3017
3018 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
3019
3020         * class.c: enforce alignment of fields with managed references
3021         even when Pack=1 is forced by the user (bug #77788).
3022
3023 2006-11-03  Dick Porter  <dick@ximian.com>
3024
3025         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
3026         If the address reverse lookup fails, return it as the hostname
3027         anyway.  Fixes bug 79721.
3028
3029 2006-11-03  Dick Porter  <dick@ximian.com>
3030
3031         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
3032         Fix build on Windows.
3033
3034 2006-11-02  Dick Porter  <dick@ximian.com>
3035
3036         * icall-def.h: 
3037         * object-internals.h: 
3038         * exception.c (mono_get_exception_thread_interrupted): 
3039         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
3040         Fixes bug 74525.
3041
3042         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
3043         Check for pending Thread.Interrupt.
3044
3045 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
3046         * loader.c: Fixed bug 79684.
3047
3048 2006-10-27  Dick Porter  <dick@ximian.com>
3049
3050         * file-io.c (get_file_attributes): Force symlinks to directories
3051         to be returned as a regular file.  Fixes bug 79733.
3052 2006-10-26  Dick Porter  <dick@ximian.com>
3053
3054         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
3055         CreateFile to open a directory then we need to set the
3056         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
3057
3058 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
3059
3060         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
3061         friends.
3062
3063 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3064
3065         * sgengc.c: small cleanup of timer code.
3066
3067 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3068
3069         * sgen-gc.c: fix some warnings and start adding support for
3070         complete object removal on domain unload.
3071
3072 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
3073
3074         * assembly.c: build_assembly_name should not consider a version
3075         number without build or revision number invalid. Fixes bug #79715.
3076
3077 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
3078
3079         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
3080         call kernel32 function OutputDebugString directly.
3081         
3082         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
3083         
3084 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
3085
3086         * reflection.c: small cleanup, using a function to insert a MonoString
3087         in the string heap.
3088
3089 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
3090
3091         * reflection.c: moving GC fixes.
3092
3093 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
3094
3095         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
3096         all the objects with finalizers belonging to an unloading appdomain.
3097
3098 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
3099
3100         * sgen-gc.c: added ability to allocate even when the nursery is fully
3101         pinned and fixed a couple of bugs.
3102
3103 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
3104
3105         * threads.h: Revert the last change for now.
3106
3107         * threads.h (mono_thread_get_pending_exception): Rename this to
3108         mono_thread_get_undeniable_exception ().
3109
3110 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
3111
3112         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
3113         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
3114         when fname does not refer to valid assembly. This result in a more
3115         meaningful error message.
3116         * exception.c: added mono_get_exception_bad_image_format2 which 
3117         constructs a BadImageFormatException using the ctor taking a custom
3118         message and the file name. Passing in a NULL msg results in a default
3119         message.
3120         * exception.h: define mono_get_exception_bad_image_format2 function.
3121         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
3122         when file name pointed to an invalid IL image. Use 
3123         mono_get_exception_file_not_found2 to construct FileNotFoundException,
3124         as this results in a more meaningful error message.
3125
3126 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
3127
3128         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
3129         #79465.
3130
3131 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
3132
3133         * metadata.c (mono_type_size): Change the align parameter to guint32 for
3134         consistency with the other _size functions.
3135         (mono_type_stack_size): Ditto.
3136
3137         * class.c object.c icall.c: Fix warnings caused by the above change.
3138
3139         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
3140
3141         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
3142
3143         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
3144
3145 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3146
3147         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
3148         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
3149         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
3150         threadpool.h, threads-types.h: mark more internal functions.
3151
3152 2006-10-11  Dick Porter  <dick@ximian.com>
3153
3154         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
3155         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
3156         reproduce the bug even before applying the fix.)
3157
3158 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
3159
3160         * reflection.c: allow retrieving attributes for arguments in generic
3161         methods (bug #79241).
3162
3163 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
3164
3165         * debug-mono-symfile.c: properly check fopen () result (found by
3166         coverity).
3167
3168 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
3169
3170         * reflection.c: make error message clearer and fixed two
3171         issuelets found by Coverity.
3172
3173 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
3176
3177 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3178
3179         * object-internals.h, gc-internal.h, profiler-private.h:
3180         mark internal functions.
3181
3182 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3183
3184         * reflection.c: put data in the text section.
3185         * icall.c: recognize more types in type_from_typename ().
3186         * process.c, marshal.c: added some GC FIXMEs.
3187
3188 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3189
3190         * loader.c: check for NULL before initializing.
3191
3192 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
3193
3194         * gc.c (finalizer_thread): Use a non-alertable wait here.
3195
3196         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
3197         until the correct solution is found.
3198
3199 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3200
3201         * reflection.c (mono_module_get_object): Avoid an assert when operating on
3202         modules with no metadata. Fixes #79596.
3203
3204         * image.c (load_metadata_ptrs): Put back the error message when
3205         the #- heap is encountered since the support is not complete yet.
3206
3207 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3208
3209         * gc.c: do not allow the user to SuppressFinalize () a
3210         delegate because it would leak the trampoline if present.
3211
3212 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3213
3214         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
3215         PropertyPtr table.
3216
3217 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
3218
3219         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
3220
3221         * metadata.c (mono_metadata_get_param_attrs): Ditto.
3222
3223         * row-indexes.h: Add definitions for *Ptr tables.
3224
3225         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
3226
3227         * metadata.c (mono_metadata_translate_token_index): New helper function to
3228         translate table indexes used in uncompressed metadata.
3229         (mono_metadata_decode_table_row): Ditto.
3230         (mono_metadata_decode_table_row_col): Ditto.
3231
3232         * metadata.c: Add table schema for *Ptr tables.
3233
3234         * class.c loader.c: Use the new helper function to access the affected metadata
3235         tables.
3236         
3237         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
3238         #38532.
3239         
3240 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
3241
3242         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
3243         sequences which can be unbounded in size. Fixes #79583.
3244
3245 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
3246
3247         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
3248         static initialization.
3249
3250         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
3251
3252         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
3253
3254         * domain.c (mono_domain_free): Free up type_init_exception_hash.
3255
3256         * object.c (mono_runtime_class_init): Implement correct semantics when a static
3257         ctor fails, i.e. throw the same exception on subsequent accesses.
3258         
3259 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
3260
3261         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
3262         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
3263         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
3264         Handle marshalling of interfaces and VARIANTs contained in structs.
3265         
3266         Code is contributed under MIT/X11 license.
3267         
3268 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
3269
3270         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
3271         
3272         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
3273         mempool.
3274
3275 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3276
3277         * console-io.c: ignore previous SIGINT handler.
3278
3279 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
3280
3281         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
3282         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
3283         #79460, #79461, #79485.
3284
3285         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
3286
3287         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
3288         #79217.
3289
3290 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
3291
3292         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
3293         could be generated from it.
3294
3295 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
3296
3297         * rand.c: fix read loop to correctly handle EINTR.
3298
3299 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3300
3301         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
3302         internal calls are defined to keep methods closer to the declaring
3303         type and allow a significant reduction in runtime relocations and
3304         memory usage.
3305
3306 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
3307
3308         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
3309         exception message to have FileNotFoundException use the default
3310         assembly load error message. Fixes bug #79426.
3311         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
3312
3313 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3314
3315         * threadpool.c: (start_thread_or_queue) use the root domain when
3316         creating the thread instead of the async object one.
3317
3318 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
3319
3320         * class.c, object.c, class-internals.h, reflection.c:
3321         for arrays, store element_size inside MonoClass (speedup
3322         for array object creation).
3323
3324 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
3325
3326         * icall.c: fixed CodeBase to use the file name and not the module
3327         name (bug #79365).
3328
3329 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3330
3331         * mono-debug.c, mono-debug.h: export find_method as
3332         mono_debug_find_method ().
3333
3334 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3335
3336         * debug-helpers.c, class-internals.h: added a few functions useful
3337         when debugging under gdb.
3338
3339 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3340
3341         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
3342         characters that need special handling.
3343
3344 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
3345
3346         * mono-config.c: make the os/cpu specification more flexible,
3347         allowing lists and negation.
3348
3349 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
3350
3351         * marshal.c: COM Interop fixes. Handle case where method->klass.
3352         is interface. Handle BSTR/MonoString when null. Use CDECL as 
3353         calling convention on non-windows platforms. This is for
3354         compatibility with XPCOM and MainWin COM.
3355         
3356         Code is contributed under MIT/X11 license.
3357         
3358
3359 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
3360
3361         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
3362         correctly. Fixes #79217.
3363
3364         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
3365
3366 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
3367
3368         * mono-config.c: allow both an os and cpu attribute for dllmap
3369         and dllentry elemnets to enable a single config file to be used
3370         for multiple architectures.
3371
3372 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
3373
3374         * loader.c: MonoLoaderError was cleared too soon on load failure.
3375         Fixes bug #79424.
3376
3377 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
3378
3379         * icall.c: use the defining class vtable when accessing a
3380         static field, not a pobblibly derived class.
3381
3382 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
3383
3384         * icall.c string-icalls.c: Remove references to unicode.h.
3385
3386         * unicode.h unicode.c Makefile.am: Remove these unused source files.
3387
3388         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
3389
3390         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
3391         indicating the image where custom marshaller types should be looked up.
3392         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
3393         custom marshallers, instead of corlib. Fixes #79425.
3394
3395 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
3396
3397         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
3398
3399 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
3400
3401         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
3402         Implement Environment.ProcessorCount.
3403         
3404         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
3405         Implement Environment.ProcessorCount.
3406         
3407         * icall.c: 
3408         Add Environment.ProcessorCount icall.
3409         
3410         Patch by Jason McFall.
3411
3412 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3413
3414         * assembly.c: don't append .exe/.dll when the filename already contains
3415         one of those extensions.
3416
3417 2006-09-12  Martin Baulig  <martin@ximian.com>
3418
3419         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
3420         to array interfaces.
3421
3422 2006-09-11  Martin Baulig  <martin@ximian.com>
3423
3424         * reflection.c (mono_image_build_metadata): Create the
3425         MethodImpl's after emitting all types and methods, so we don't
3426         need another fixup pass for them.
3427
3428 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
3429
3430         * class.c (mono_class_from_name_case): Fix regression introduced by the last
3431         change.
3432
3433 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
3434
3435         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
3436         unload.
3437
3438 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
3439
3440         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
3441         args is not set. Fixes #78926.
3442
3443 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
3444
3445         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
3446
3447         * image.c (load_class_names): Move this to class.c, and rename it to 
3448         'mono_image_init_name_cache'.
3449         (load_modules): Fix a warning.
3450
3451         * class.c icall.c image.c: Initialize image->name_cache lazily.
3452
3453         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
3454         on its name using information in the AOT file.
3455
3456         * class.c (mono_class_from_name): Use the new hook function.
3457
3458 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
3459
3460         * reflection.c (mono_param_get_objects): Handle enum default parameter values
3461         correctly.
3462
3463         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
3464         Fixes #79289.
3465         
3466 2006-09-06  Martin Baulig  <martin@ximian.com>
3467
3468         * icall.c (mono_lookup_internal_call): Small fix.
3469
3470 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3471
3472         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3473         double g_free.
3474
3475 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3476
3477         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3478         when --debug is specified.
3479
3480 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3481
3482         * class.c (setup_generic_array_ifaces): Fix a warning.
3483
3484 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3485
3486         * Temporarily remove the patch to assemly.c that checks the
3487         assembly versions as it breaks our gacutil.
3488
3489 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3490
3491         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3492
3493         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3494         a net 1.0 runtime.
3495
3496         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3497         created using the default ctor. Fixes #79152.
3498         (mono_string_builder_to_utf16): Ditto.
3499
3500 2006-09-01  Martin Baulig  <martin@ximian.com>
3501
3502         Fix handling of the generic array interfaces.
3503
3504         * class-internals.h
3505         (MonoDefaults): Removed `generic_array_class' and added
3506         `generic_ilist' class.
3507
3508         * class.c
3509         (mono_bounded_array_class_get): Add the new generic array interfaces.
3510         (setup_generic_array_ifaces): New static method; create vtable
3511         entries for each method in the generic array interfaces.
3512
3513         * metadata.c
3514         (select_container): Allow "parent-less" generic methods.
3515
3516         * marshal.c
3517         (mono_marshal_get_generic_array_helper): New public method.
3518
3519         * icall.c
3520         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3521         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3522         moved the interncall into System.Array.
3523
3524 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3525
3526         A few more cases of avoiding work on types with ->byref set.
3527         Has the real fix for #79238
3528         * icall.c (is_generic_parameter): New helper.
3529         (ves_icall_Type_GetGenericParameterPosition): Use it.
3530         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3531         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3532         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3533         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3534         reference types.
3535         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3536         reference types.
3537         (ves_icall_Type_get_IsGenericInstance): Likewise.
3538         (ves_icall_Type_get_IsGenericType): Likewise.
3539
3540 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3541
3542         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3543         class if possible.
3544
3545         * mempool.h (mono_mempool_get_allocated): New helper function.
3546
3547         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3548         change.
3549
3550         * mempool.c: Fix warnings and the calculation of stats.
3551
3552         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3553
3554         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3555
3556         * loader.c (mono_get_method_from_token): Update method_count stat.
3557
3558         * class-internals.h (MonoStats): Add some stats.
3559
3560 2006-08-31 Robert Jordan  <robertj@gmx.net>
3561
3562         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3563         with managed variants.
3564         All code is contributed under the MIT/X11 license.
3565         
3566 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3567
3568         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3569         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3570
3571         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3572
3573         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3574         with cycles in classes.
3575
3576         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3577
3578         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3579         missing a [MarshalAs] directive. Fixes #79203.
3580
3581         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3582         klass->marshal_info. Fixes #79217.
3583
3584 2006-08-30  Martin Baulig  <martin@ximian.com>
3585
3586         Committing a patch from Joachim Ante <joe@otee.dk>:
3587         Add support for binary data symbol stores.
3588
3589         * debug-mono-symfile.c
3590         (mono_debug_open_mono_symbol_file): Renamed into
3591         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3592         arguments.
3593
3594         * mono-debug.c
3595         (mono_debug_open_image): Added `raw_contents' and `size' args.
3596         (mono_debug_init_2_memory): New public function.
3597
3598 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3599
3600         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3601
3602 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3603
3604         * appdomain.c: implement support for ShadowCopyFiles.
3605
3606 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3607
3608         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3609         when value is NULL (and should remove CID #51).
3610
3611 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3612
3613         * image.c: moved 2 functions to ../utils.
3614
3615 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3616
3617         * gc.c: cope with the target object of a GC handle being NULL
3618         (bug #78877).
3619
3620 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3621
3622         * class.c: recursively check parent's explicit implementations
3623         of interface methods (fixes bug #79125).
3624
3625 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3626
3627         * filewatcher.c: Avoid warnings when building, do not redefine
3628         constants that are defined.
3629
3630         Remove warnings.
3631
3632 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3633
3634         * image.c: don't fail when the link points to an absolute path.
3635
3636 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3637
3638         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3639         Fix CID #3.
3640
3641 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3642
3643         * image.c (full_path): A new method used to obtain the actual path
3644         of an assembly even in the presence of symbolic links.  
3645
3646         This is necessary for the case where we are running a binary that
3647         has been GACed, but we are using the "published" path name
3648         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3649         file in the GAC.
3650
3651         This was the source of the failure for the `xsp' command with the
3652         recent AppDomain changes, as far as the runtime was concerned,
3653         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3654         $prefix/mono/gac/blah/version/blah.exe.
3655
3656         (do_mono_image_open): use full path
3657
3658 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3659
3660         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3661
3662 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3663
3664         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3665         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3666
3667 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3668
3669         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3670         small structures. Fixes #78990.
3671
3672 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3673
3674         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3675
3676         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3677
3678 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3679
3680         * appdomain.c:
3681         * marshal.c: don't load all the assemblies from a domain into newly
3682         created ones. The new domains might have different rules and load
3683         assemblies from different locations. Fixes bug #76757.
3684
3685         Patch by Lluis. Conflicts resolved by Brian Crowell.
3686
3687 2006-08-16  Alp Toker  <alp@atoker.com>
3688
3689         * socket-io.c: First half of the fix for #79084.
3690         Set sa_size to the length of the content, not that of the struct.
3691         Don't add NULL suffix to the content, this should be done in
3692         managed code if needed.
3693
3694 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3695
3696         Fix part of #79012
3697         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3698         mono_metadata_parse_type returns NULL.
3699
3700 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3701
3702         * normalization-tables.h : new file for string normalization data.
3703         * locales.c, locales.h, icall.c :
3704           added load_normalization_resource() for string normalization,
3705           and icall as well.
3706         * Makefile.am : added normalization-tables.h to the sources.
3707
3708 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3709
3710         * marshal.c: Add more helper functions to reduce code duplication and use them
3711         everywhere.
3712
3713 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3714
3715         * marshal.c: Fix non-x86 stdcall warnings.
3716         
3717         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3718         them everywhere.
3719
3720 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3721
3722         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3723         type check on multi-dimensional arrays. Fixes #79000.
3724
3725 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3726
3727         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3728         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3729         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3730         * class-internals.h: add is_com_object to class structure.
3731         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3732         null checks to COM object marshalling. Fix .ctor call on RCW.
3733         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3734         
3735         All code is contributed under the MIT/X11 license.
3736
3737 2006-08-09  Dick Porter  <dick@ximian.com>
3738
3739         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3740         racing mono_monitor_allocator_lock() somewhere, so don't delete
3741         the critical section for now.  Found by running and exiting
3742         monodevelop.
3743
3744 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3745
3746         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3747         (ves_icall_System_ComObject_FindInterface): Ditto.
3748         (ves_icall_System_ComObject_CacheInterface): Ditto.
3749
3750         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3751         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3752
3753 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3754
3755         * threadpool.c: treat pipes from process asynchronous reads as sockets
3756         when reading from them, so we get select/poll or epoll to wait for
3757         data.
3758
3759 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3760
3761         * loader.c: Fix a typo (CID #233) in the null check.
3762
3763 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3764
3765         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3766         Hopefully fixes #78949.
3767         
3768         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3769         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3770         bytes. Fixes #78972.
3771
3772 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3773
3774         * filewatcher.c: we need to set errno here.
3775
3776 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3777
3778         * filewatcher.c: let Win32Exception get the error value.
3779
3780 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3781
3782         * filewatcher.c: translate errno into win32 errors for Win32Exception
3783         to know what happened.
3784
3785 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3786
3787         * threadpool.c: Fix more warnings.
3788
3789         * assembly.c (search_loaded): Fix warnings.
3790
3791         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3792         (mono_async_invoke): Ditto.
3793
3794 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3795
3796         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3797         entries for __ComObject type in addition to ComImport types.
3798         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3799         about hash table.
3800         
3801         All code is contributed under the MIT/X11 license.
3802
3803 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3804
3805         * image.c: avoid tentative loading of modulerefs that contain
3806         no metadata (P/Invoke library names).
3807
3808 2006-07-28  Dick Porter  <dick@ximian.com>
3809
3810         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3811         mono_loader_lock() somewhere, so don't delete the critical section
3812         for now.  Found by running and exiting monodevelop.
3813
3814 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3815
3816         * filewatcher.c: define the inotify syscalls when we're building on
3817         linux and have sys/syscall.h. The build system might not have support
3818         for inotify but the target system might have it.
3819
3820 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3821
3822         * domain.c: Documentation updates.
3823
3824         * loader.c (mono_free_method): Do not release the method
3825         information if we are being profiled, as profilers will use this
3826         information at shut down to present some data to the user.
3827
3828         This is needed so that the profiler does not crash, as the
3829         profiler tends to keep MonoMethods around, and they might become
3830         invalid if we free these.
3831
3832         (mono_get_method_constrained): Return the original CIL stream
3833         method as well, so verification can be performed against it.
3834
3835 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3836
3837         * filewatcher.[ch]: support for inotify file system watcher.
3838         * icall.c: add new internal calls for the inotify file system watcher.
3839
3840 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3841
3842         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3843         #78888.
3844
3845 2006-07-20  Dick Porter  <dick@ximian.com>
3846
3847         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3848         warning.
3849
3850 2006-07-20  Dick Porter  <dick@ximian.com>
3851
3852         * threads.c (start_wrapper): Do the thread cleanup while we still
3853         hold a reference to its object.  Fixes bug 78123.
3854
3855 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3856
3857         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3858         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3859           "managed-to-managed".
3860         * icall.c: Redirect string constructors that take sbyte* to
3861           ves_icall_System_String_ctor_RedirectToCreateString.
3862         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3863           to CreateString () methods with matching signature.
3864         * reflection.c: Use original security informations for
3865           MONO_WRAPPER_MANAGED_TO_MANAGED.
3866         * security-manager.c: Use original security informations for
3867           MONO_WRAPPER_MANAGED_TO_MANAGED.
3868         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3869           that is a placeholder and only its address should be used.
3870         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3871           that is a placeholder and only its address should be used.
3872
3873 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3874
3875         Begin implementing COM Interop.
3876         * appdomain.c: Increment corlib version.
3877         * class.c: Set ComImport classes' parent to __ComObject.
3878         * loader.c: Mark cominterop methods as such.
3879         * domain.c: Add __ComObject class to MonoDefaults structure.
3880         * image.c: Add 2 hashtables to the image for COM Interop related methods
3881         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3882         using the mempool allocator
3883         
3884         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3885         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3886         declaration for mono_metadata_type_dup_mp.
3887         
3888         * debug-helpers.c: Added strings for two additional wrapper types
3889         * object.c: Create proxy objects for ComImport classes
3890         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3891         and added __ComObject class to MonoDefaults structure.
3892         
3893         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3894         MonoComInteropProxy and MonoComObject.
3895         
3896         * marshal.c: Added support for COM Interop
3897         (signature_cominterop): Converts managed signature to corresponding
3898         unmanaged COM signature.
3899         (cominterop_get_function_pointer): gets unmanaged function pointer via
3900         COM object vtable
3901         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3902         (cominterop_get_method_interface): returns interface type that method is defined on
3903         (mono_mb_emit_cominterop_call): emits native call to function pointer
3904         gotten from vtable
3905         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3906         that matches signature of unmanaged function.
3907         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3908         (cominterop_get_invoke): forwards call from proxy to __ComObject
3909         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3910         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3911         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3912         
3913         * marshal.h: Added Marshal icall declarations.
3914         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3915         so we can access them in finalizer
3916         
3917 2006-07-14  Dick Porter  <dick@ximian.com>
3918
3919         * object.c (mono_type_initialization_cleanup): Fix a race
3920         condition by temporarily commenting out the critical section
3921         deletion.
3922
3923 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3924
3925         * reflection.c (create_custom_attr): Fix some warnings.
3926         (create_custom_attr_data): Ditto.
3927         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3928         types. Fixes #78855.
3929
3930 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3931
3932         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3933
3934         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3935
3936 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3937
3938         * reflection.c (resolve_object): Add support for DynamicMethod.
3939
3940         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3941         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3942
3943 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3944
3945         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3946         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3947
3948 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3949
3950         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3951         Fixes #77888.
3952
3953 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3954
3955         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3956         slightly: remove a shadow local variable.
3957
3958 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3959
3960         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3961         definition that introduces the virtual function slot.
3962         Also fix Coverity #105.
3963
3964 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3965
3966         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3967         for dynamic assemblies. Fixes #78724.
3968
3969 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3970
3971         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3972         Fixes #78722.
3973
3974 2006-06-21  Martin Baulig  <martin@ximian.com>
3975
3976         * reflection.c
3977         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3978         fixes #76484.
3979
3980 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3981
3982         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3983
3984 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3985
3986         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3987         nor TYPEREFs.
3988         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3989         Inflate result if necessary.
3990         (mono_class_get_full): Remove old version.  Rename from
3991         'mono_class_get' and add 'context' argument.  Pass it to
3992         ..._create_from_typespec.
3993         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3994         (mono_ldtoken): Revert change below.
3995
3996 2006-06-20  Martin Baulig  <martin@ximian.com>
3997
3998         * class.c (mono_ldtoken): Don't pass the generic context to
3999         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
4000
4001 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
4002
4003         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
4004         and later freeing it. Fixes #78638.
4005
4006 2006-06-15  Miguel de Icaza  <miguel@novell.com>
4007
4008         * icall.c (mono_class_get_throw): Revert over-zealous error
4009         throwing, the caller for mono_class_get_throw will cope with
4010         errors when classes are not properly initialized already.
4011
4012         The code still copes with loader exceptions though.
4013
4014         Fixes the regression in reftype1 and reftype3 from the CAS tests.
4015         
4016 2006-06-14  Miguel de Icaza  <miguel@novell.com>
4017
4018         Fixes the `make run1' version of RuntimeAbort (to be commited,
4019         source is in Bugzilla).
4020         
4021         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
4022         FALSE on class loading failure instead of returning true.
4023
4024         * class.c (mono_class_create_from_typedef): It is possible for
4025         mono_metadata_interfaces_from_typedef_full to fail if a class is
4026         not found, cope with this.
4027         
4028
4029 2006-06-14  Dick Porter  <dick@ximian.com>
4030
4031         * socket-io.c: 
4032         * process.c: Fix a bunch of signed/unsigned warnings from gcc
4033         4.1.1
4034
4035 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
4036
4037         * culture-info-table.h : oops, forgot to make it nsync with r61548.
4038
4039 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
4040
4041         * icall.c: Another fix for building mono in Visual Studio.
4042
4043 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
4044
4045         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
4046         
4047 2006-06-09  Martin Baulig  <martin@ximian.com>
4048
4049         * debug-mono-symfile.c: Put this back and really fix it this
4050         time. Sorry for all the trouble.
4051
4052 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
4053
4054         * icall.c (mono_class_get_throw): Fix a warning.
4055         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
4056         ReflectionTypeLoadException if needed. Fixes #78606.
4057
4058         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
4059         (mono_class_init): Ditto.
4060
4061         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
4062         ref_only exceptions.
4063         (mono_loader_clear_error): Make this work even if there is no error.
4064
4065 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
4066
4067         * object-internals.h marshal.c marshal.h icall.c: Implement method 
4068         Marshal.GetComSlotForMethodInfo using internal call.
4069
4070 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
4071
4072         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
4073         a function for signalling it.
4074
4075         * class.c (mono_class_from_typeref): Use the new kind of loader error when
4076         a referenced assembly is not found.
4077
4078         * loader.c (mono_loader_error_prepare_exception): Add support for 
4079         LOADER_ERROR_ASSEMBLY. Fix formatting.
4080
4081 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4082
4083         * domain.c appdomain.c class-internals.h marshal.c: Add support 
4084         for VARIANT marshalling on windows and increment corlib version
4085         since Variant struct was added.
4086
4087 2006-06-03  Miguel de Icaza  <miguel@novell.com>
4088
4089         * debug-mono-symfile.c: Revert Martin's previous patch which broke
4090         stack trace line information:
4091
4092         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
4093         (Martin) when looking up B which is between A and C, return A not C.
4094
4095         Bug is #78573.
4096
4097         Thanks to Alexander Olk for tracking this down.
4098
4099 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
4100
4101         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
4102         
4103         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
4104         avoid clobbering its value.
4105         (mono_string_to_lpstr): Fix a warning on windows.
4106
4107 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
4108
4109         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
4110
4111         * reflection.c loader.c: Removed references to 'dummy' flag.
4112
4113         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
4114
4115         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
4116         it gets GC tracking.
4117
4118         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
4119         GC tracking.
4120         
4121         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
4122
4123         * marshal.c threadpool.c: Update callers of mono_async_result_new.
4124
4125         * appdomain.c: Bump corlib version.
4126
4127 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
4128
4129         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
4130         CEE_STIND_REF when working with object references.
4131
4132 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
4133
4134         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
4135         Fixes #78539.
4136
4137 2006-05-30  Miguel de Icaza  <miguel@novell.com>
4138
4139         * loader.c (method_from_memberref): Fix argument value for
4140         mono_loader_set_error_method_load (I was passing the MonoClass
4141         instead of the class name char *).
4142
4143 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
4144
4145         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
4146         CEE_STIND_REF when working with object references.
4147
4148 2006-05-30  Martin Baulig  <martin@ximian.com>
4149
4150         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
4151         mono_method_full_name() change and replace the ':' with a '.'
4152         here.
4153
4154 2006-05-30  Martin Baulig  <martin@ximian.com>
4155
4156         * debug-mono-symfile.c
4157         (mono_debug_symfile_lookup_location): Fix the algorithm:
4158         when looking up B which is between A and C, return A not C.
4159
4160 2006-05-29  Martin Baulig  <martin@ximian.com>
4161
4162         * mono-debug.h
4163         (MonoDebugMethodInfo): Make the typedef public.
4164         (MonoDebugSourceLocation): New public struct.
4165
4166         * mono-debug.c
4167         (mono_debug_source_location_from_address): Removed.
4168         (mono_debug_source_location_from_il_offset): Removed.
4169         (mono_debug_il_offset_from_address): Removed.
4170         (mono_debug_address_from_il_offset): Removed.
4171         (mono_debug_lookup_method): New public function.
4172         (mono_debug_lookup_source_location): New public function; replaces
4173         the old mono_debug_source_location_from_*() functions; see the
4174         inline documentation.
4175         (mono_debug_free_source_location): New public function.
4176         (mono_debug_print_stack_frame): New public function; see the
4177         inline documentation.
4178
4179         * debug-mono-symfile.c
4180         (mono_debug_find_source_location): Renamed into
4181         mono_debug_symfile_lookup_location(); only take a
4182         `MonoDebugMethodInfo *' and an `offset' argument; added inline
4183         documentation.
4184         (mono_debug_find_method): Renamed into
4185         mono_debug_symfile_lookup_method().
4186
4187 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
4188
4189         * assembly.c (mono_assembly_open_full): Dont overwrite the status
4190         returned by mono_image_open_full ().
4191
4192         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
4193         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
4194         #78517.
4195
4196         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
4197         #78518.
4198
4199 2006-05-27  Miguel de Icaza  <miguel@novell.com>
4200
4201         * class.c (mono_class_from_typeref): handle missing images
4202         earlier, deals with bug #78418.   Refactor code; 
4203
4204         Fix a warning introduced in my previous commit (some stale code
4205         from before I revisited my patch).
4206
4207         * class.c (mono_class_create_from_typedef): On failure, remove the
4208         class from the MonoImage->class_cache as the class is not
4209         initialized;   Fixes the leak pointed out by Paolo.
4210
4211 2006-05-25  Dick Porter  <dick@ximian.com>
4212
4213         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
4214         DeleteCriticalSections until I figure out which one may still be
4215         sometimes locked when mono_thread_cleanup is called.
4216
4217 2006-05-24  Dick Porter  <dick@ximian.com>
4218
4219         * threads.c (mono_thread_cleanup): Move the threading cleanup out
4220         of mono_thread_manage and back into its own function, so it can be
4221         called after the finalizer thread has finished.
4222
4223         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
4224
4225 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
4226
4227         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
4228         Fixes #78495.
4229
4230         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
4231         with non-blittable elements.
4232         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
4233
4234 2006-05-24  Martin Baulig  <martin@ximian.com>
4235
4236         * mono-debug-debugger.h (MonoDebuggerEvent): Added
4237         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
4238
4239         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
4240         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
4241         `mono_debugger_event_handler' to NULL.
4242
4243 2006-05-24  Martin Baulig  <martin@ximian.com>
4244
4245         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
4246
4247 2006-05-24  Martin Baulig  <martin@ximian.com>
4248
4249         * mono-debug-debugger.h
4250         (mono_debugger_create_notification_function): Added
4251         `MonoCodeManager *' argument.
4252
4253 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
4254
4255         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
4256
4257 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
4258
4259         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
4260         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
4261         implementation.
4262
4263 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
4264
4265         * icall.c: precise GC support: objects can't be stored in unmanaged
4266         memory anymore, even if they are kept alive by other references: since
4267         they can move the GC needs to be able to always find them.
4268
4269 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
4270
4271         * object.c: precise GC support for static fields. Support
4272         for moving GCs: write barriers and pinned allocation for interned
4273         strings.
4274
4275 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
4276
4277         * domain.c, domain-internals.h: precise GC support for the MonoDomain
4278         structure.
4279
4280 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
4281
4282         * class.c, gc.c: sgen and precise GC updates.
4283
4284 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
4285
4286         * marshal.h, marshal.c: added write barrier wrapper and precise type
4287         fixes.
4288
4289 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
4290
4291         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
4292         support.
4293
4294 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
4295
4296         * reflection.c: precise and sgen GC updates.
4297
4298 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
4299
4300         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
4301
4302 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
4303
4304         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
4305
4306 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
4307
4308         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
4309         MONO_TYPE_OBJECT. Fixes #78462.
4310
4311 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
4312
4313         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
4314         and blittable types.
4315
4316 2006-05-17  Miguel de Icaza  <miguel@novell.com>
4317
4318         * class.c (mono_class_get_exception_for_failure): Implement parts
4319         of a TODO: if the loader error is set (instead of the class
4320         error), we return a Loader exception that can be properly thrown
4321         elsewhere.
4322
4323         This was exposed by some Winforms 2.0 code that I tried to run
4324         (Atsushi pointed me to it).
4325
4326 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
4327
4328         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
4329         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
4330         
4331         * marshal.c (emit_marshal_vtype): Add limited support for 
4332         UnmanagedType.LPStruct. Fixes #78427.
4333
4334         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
4335         Applied a patch from kangaroo to fix #77523.
4336
4337 2006-05-17  Martin Baulig  <martin@ximian.com>
4338
4339         * threads.c
4340         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
4341         (debugger_thread_created): Removed.
4342         (debugger_thread_exited): Removed.
4343
4344 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
4345
4346         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4347
4348         * object-internals.h (MonoReflectionResource): Sync with managed version.
4349
4350 2006-05-12  Wade Berrier <wberrier@novell.com>
4351
4352         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
4353
4354 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
4355
4356         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
4357         functions try to allocate from the image mempool.
4358
4359 2006-05-12  Dick Porter  <dick@ximian.com>
4360
4361         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
4362
4363 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
4364
4365         * object.c: The FieldGetter and FieldSetter methods require the full
4366         name of the class, not only the name. Fixes bug #78277.
4367
4368 2006-05-11  Miguel de Icaza  <miguel@novell.com>
4369
4370         * loader.c (method_from_memberref): Do not pass the NULL klass to
4371         mono_loader_set_error_() methods.  Pass the non-NULL value
4372         (class). 
4373
4374 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
4375
4376         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
4377         (mono_assembly_close): Null out assembly->image->references after freeing it.
4378
4379         * image.c (mono_image_close): Free image->references.
4380         
4381         * reflection.c (mono_image_basic_init): Fix a small memory leak.
4382
4383 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4384
4385         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
4386         before checking if it's NULL (g_assert).
4387
4388 2006-05-10  Martin Baulig  <martin@ximian.com>
4389
4390         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
4391         I thought I already killed that two months ago, but now it somehow reappeared.
4392
4393 2006-05-10  Martin Baulig  <martin@ximian.com>
4394
4395         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
4396
4397 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
4398
4399         * reflection.c: Allocate memory for dynamically created methods in the image
4400         mempools.
4401
4402 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4403
4404         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
4405         don't use the ad pointer before checking if it's NULL (g_assert).
4406
4407 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
4408
4409         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
4410         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
4411
4412         * marshal.c: Allocate all signatures from mempools.
4413
4414         * marshal.c: Allocate some more signatures from mempools.
4415
4416 2006-05-09  Miguel de Icaza  <miguel@novell.com>
4417
4418         * object.c (mono_load_remote_field): The code used to provide a
4419         temporary variable for returning results if the user did not
4420         provide a result pointer.  But our temporary variable was allocted
4421         on the satck.
4422
4423         Fix calling code to always pass a result area.   Coverity ID 103.
4424
4425 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
4426
4427         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
4428         value, not the old. Fixes #78312.
4429         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
4430
4431         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
4432         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
4433         per-image cache.
4434
4435         * assembly.c (mono_assembly_close): Free image->references.
4436
4437         * assembly.c (mono_assembly_names_equal): Fix a warning.
4438         (mono_assemblies_cleanup): Cleanup more global data.
4439
4440         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
4441
4442         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
4443         ptr_cache and image->modules.
4444
4445         * image.c (mono_image_init): Allocate array_cache lazily.
4446         
4447 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4448
4449         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
4450         behavior was changed recently and has bad side effects.
4451
4452 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
4453
4454         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
4455         
4456         * assembly.c (mono_assembly_close): Remove a debug printf.
4457
4458         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
4459
4460         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
4461         to also allow for temporary references between mono_image_open ()/close ().
4462
4463         * domain.c (get_runtimes_from_exe): Add a FIXME.        
4464
4465 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4466
4467         * marshal.c: Fix support for dynamic methods.
4468
4469         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4470
4471         * marshal.c (mono_marshal_cleanup): New cleanup function.
4472
4473         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4474         image mempools.
4475
4476         * class.c (mono_class_init): Fix leaking class->nested_classes.
4477
4478         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4479
4480         * image.c (mono_image_init): Initialize the new cashes.
4481
4482         * image.c (mono_image_close): Destroy the new cashes.
4483
4484         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4485
4486         * mempool.c (mono_mempool_strdup): New helper function.
4487
4488         * class-internals.h: Add prototype for mono_loader_unlock ().
4489
4490         * domain.c (mono_jit_info_table_find): Fix a warning.
4491         (mono_debugger_check_runtime_version): Ditto.
4492
4493         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4494         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4495         functions to these modules.
4496
4497         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4498         metadata modules.
4499         
4500         * marshal.c (mono_free_bstr): Fix a warning.
4501
4502         * assembly.c (mono_assembly_open_full): Fix another small leak.
4503
4504         * object.c: Fix some unload leaks in the remoting code.
4505
4506         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4507         function.
4508
4509         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4510
4511         * reflection.c: Fix some unload leaks in dynamic assemblies.
4512
4513 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4514
4515         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4516         * marshal.h: Add BSTR support on Win32
4517         * icall.c: Add BSTR icalls
4518         * metadata.h: Add BSTR enums
4519
4520 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4521
4522         Work to catch the crash from #76795 and turn it into an
4523         exception.   As I stubbed out pieces of the VisualBasic support,
4524         I found a number of places where the code was failing and I added
4525         checks to those places. 
4526         
4527         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4528         function return a status code.  If we fail to parse the signature
4529         from mono_metadata_parse_generic_inst, return FALSE.
4530
4531         * loader.c (mono_get_method_from_token): If we fail to load the
4532         method (mono_class_get) return NULL.   
4533
4534         * (method_from_memberref): Return NULL if we are unable to parse
4535         the method signature
4536
4537         (mono_loader_error_prepare_exception): Since we now use the
4538         loader_error flag internally to stop processing, and obtaining
4539         exceptions that might be thrown will walk this code path the
4540         proper way of going from a MonoLoaderError into a
4541         MonoException was convoluted.   This new routine encapsulates the
4542         process of turning the error into an exception and *clearing* the
4543         error afterwards.
4544         
4545 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4546
4547         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4548         with missing assemblies), and to cope with:
4549
4550                 * Missing fieldref from a non-existing assembly.
4551                 * Missing methodref from a non-existing assembly.
4552
4553         The first batch of work to address *some* of the issues from 76661.
4554         
4555         * object.c (mono_class_create_runtime_vtable): If we fail to
4556         initialize the class raise the exception here. 
4557
4558         * metadata.c (mono_class_get_overrides_full): If any methods fail
4559         to load return the failure to the caller.
4560
4561         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4562         flagging assemblies that failed to load.   
4563
4564         Do not crash if we are unable to load the assembly.
4565
4566         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4567         assemblies. 
4568
4569         * loader.c (mono_loader_set_error_type_load): Change the
4570         convention to always pass unallocated strings, so we make our own
4571         copies (I know our own code had duplicated strings before, but
4572         this keeps the normal conventions).
4573         (method_from_memberref): Call mono_loader_set_error_method_load
4574         for all possible failures of loading the class. 
4575         Remove assert, turn into a loader error.
4576
4577         (mono_loader_error_to_exception): Move this routine from mini
4578         (mini_loader_error_to_exception) there was no need to have that in
4579         mini. 
4580
4581         * class.c (mono_class_from_typeref): If we were not able to load
4582         the assembly with mono_assembly_load_reference, call the
4583         mono_loader_set_error_type_load to register the problem.
4584
4585         (mono_class_setup_fields): If we fail to load the type from
4586         mono_metadata_parse_type_full, call mono_class_set_failure and
4587         break from the loop.
4588
4589         If class->exception_type is set, we do not layout the fields as
4590         that might crash the runtime, and instead return (from breaking
4591         from the previous loop).
4592
4593         (mono_class_setup_vtable): This now returns a boolean indicating
4594         whether the table was properly setup.   The decision is driven by
4595         mono_class_get_overrides_full which might run into non-existing
4596         methods. 
4597         
4598         (mono_class_init): Returns TRUE on success or FALSE if there was a
4599         problem in loading the type (incorrect assemblies, missing
4600         assemblies, methods, etc).
4601
4602         When we call mono_class_setup_fields we also check for a potential
4603         error inside this call (either a class exception or a general
4604         loader exception).
4605
4606         (mono_class_create_from_typedef): If the parent fails to load
4607         (calling mono_class_get_full) return NULL.
4608         
4609         ** Important **
4610
4611         calls to mono_metadata_parse_type_full should be checked
4612         everywhere and set the mono_class_set_failure
4613         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4614
4615         The current patch checks the places where my manually constructed
4616         tests show the errors are showing up, but we should do it
4617         everywhere. 
4618
4619         ** Important2 **
4620
4621         mono_class_init return values should be tested everywhere, like
4622         the previous case this is something that we should audit
4623         everywhere and not only on the cases exposed by the tests I
4624         created. 
4625
4626 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4627
4628         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4629         boolean parameter and instead pass the information on `options'
4630         parameter (FileOptions).
4631
4632         * icall.c: Register the new signature for MonoIO.Open.
4633
4634         * debug-helpers.c (dis_one): Trying to understand how coverity
4635         works.  Fix Run 5, item 78.
4636
4637 2006-04-26  Dick Porter  <dick@ximian.com>
4638
4639         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4640         dereference.
4641
4642 2006-04-25  Martin Baulig  <martin@ximian.com>
4643
4644         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4645
4646         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4647         debugger_thread_created().
4648         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4649         special way.
4650         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4651         (mono_debugger_finalize_threads): New function; undo the effects
4652         of mono_debugger_init_threads().
4653         (mono_debugger_create_all_threads): Removed.
4654
4655 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4656
4657         * image.c (mono_image_close): Tidy up trace messages.
4658
4659         * assembly.c (mono_assembly_close): Ditto.
4660
4661         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4662         no longer references an already freed assembly. Fixes #78168.
4663
4664 2006-04-21  Dick Porter  <dick@ximian.com>
4665
4666         * threads.c (mono_thread_detach): Fix reference counting when
4667         detaching threads.
4668
4669 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4670
4671         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4672         #78155.
4673
4674 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4675
4676         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4677         (mono_type_to_stind): Ditto.
4678
4679         * marshal.c: Use the new helper functions to simplify code.
4680
4681         * image.c (mono_image_close): Add some code for help debug assembly unloading
4682         problems.
4683
4684         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4685         image mempool.
4686
4687         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4688         assembly was already loaded in another appdomain. Fixes #78083.
4689
4690 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4693         referenced assemblies.
4694         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4695
4696         * domain.c (mono_domain_free): Add a trace message.
4697
4698         * appdomain.c (add_assemblies_to_domain): Ditto.        
4699
4700         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4701         field.  
4702
4703 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4704
4705         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4706
4707 2006-04-12  Martin Baulig  <martin@ximian.com>
4708
4709         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4710         `USE_INCLUDED_LIBGC'.   
4711
4712 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4713
4714         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4715         the patch contains ../ and a small directory name later. Hopefully fixes
4716         #78035.
4717
4718 2006-04-10  Martin Baulig  <martin@ximian.com>
4719
4720         Clean up the debugger's thread-handling code.
4721
4722         The debugger's thread-handling code has been moved from
4723         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4724         over the `threads' hash, keep track of exiting threads and also
4725         use proper locking.
4726
4727         We can now debug XSP and XSP based applications with the debugger.
4728
4729         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4730
4731         * threads.h
4732         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4733         (mono_install_thread_callbacks): Likewise.      
4734
4735         * threads.c (mono_thread_callbacks): Removed.
4736         (debugger_thread_created, debugger_thread_exited): New static functions.
4737         (start_wrapper): Call debugger_thread_created().
4738         (thread_cleanup): Call debugger_thread_exited().
4739         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4740         (mono_debugger_init_threads): New public function.
4741         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4742         iterate directly over the `threads' hash and also use proper locking.
4743
4744         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4745
4746         * mono-debug-debugger.h
4747         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4748
4749 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4750
4751         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4752         argument type=array. Fixes #78057.
4753
4754 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4755
4756         * culture-info-table.h : regenerated. Fixed bug #69652.
4757
4758 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4759
4760         * loader.c metadata.c: Reapply a variant r59116.
4761         
4762         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4763
4764         * class.c (mono_class_setup_interface_offsets): New internal function.
4765
4766         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4767         interfaces too. Fixes #77398.
4768
4769         * reflection.c (encode_cattr_value): Add support for 
4770         parameter type=object, argument type=array.
4771         (load_cattr_value): Ditto. Fixes #77916.
4772
4773         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4774         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4775
4776         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4777         a byval char array and CharSet is Ansi.
4778
4779         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4780
4781 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4782
4783         * metadata.c: Add some locking comments.
4784         
4785         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4786         mempool.
4787         (mono_metadata_free_method_signature): Don't free the signature itself.
4788
4789         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4790
4791         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4792         reference the same MonoImage.
4793         (mono_assembly_load_from_full): Add an assert.
4794
4795 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4796
4797         * image.c (mono_image_close): Don't put the image we are about to free into the
4798         loaded_images_guid_hash.
4799
4800         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4801         to reduce code duplication.
4802
4803         * marshal.c: Register the native functions called by this module as icalls, to
4804         somewhat centralize the creation of MonoMethodSignature's.
4805
4806         * loader.c (mono_method_signature): Add a cache for method signatures.
4807
4808         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4809         the parameter attributes of a method.
4810         (mono_metadata_parse_method_signature_full): Refactored the computation of
4811         parameter attributes into a separate function. Also avoid one allocation in
4812         most cases.
4813
4814         * assembly.c (mono_assembly_close): Ditto.
4815
4816         * image.c (mono_image_close): Log trace messages with INFO level.
4817
4818         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4819
4820         * image.c reflection.c: Correct reference counting of image modules.
4821         
4822         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4823         of this function from the image mempool.
4824         
4825         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4826         to allow more cached types to be used.
4827
4828         * mono-debug.c (mono_debug_add_method): Appled patch from
4829         David S. Miller  <davem@sunset.davemloft.net>: Access 
4830         minfo->lexical_blocks[] entry elements using read32().
4831
4832 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4833
4834         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4835         methods as it is allocated from the mempool.
4836
4837         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4838         image mempool.
4839
4840         * metadata-internals.h: Add comments describing the reference counting scheme
4841         used for MonoImage and MonoAssembly.
4842
4843         * image.c assembly.c reflection.c: Rework reference counting of images and 
4844         assemblies so they are freed when the runtime is shut down. Free some 
4845         additional memory structures when an image is unloaded.
4846         
4847 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4848
4849         * class.c loader.c reflection.c: Allocate more data structures in
4850         the image mempool.
4851
4852 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4853
4854         * icall.c
4855         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4856         build on pre glib 2.4 systems.
4857
4858 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4859
4860         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4861
4862         * icall.c: Fix some warnings.
4863
4864 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4865
4866         * culture-info-table.h : regenerated.
4867
4868 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4869
4870         * threads.c, object-internals.h, verify.c: changed the culture caching
4871         code to use a normal MonoArray for storage so the GC can keep track of
4872         them easily. Fixed bits of the cache logic, too and simplified the
4873         code.
4874
4875 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4876
4877         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4878         thread for non-Boehm GCs.
4879
4880 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4881
4882         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4883         needed to keep track of the data for static fields.
4884
4885 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4886
4887         Fix #75172
4888         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4889         for interface classes.  Use 'num_methods' instead.
4890         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4891         before using '->vtable_size' field.
4892
4893 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4894
4895         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4896         doesn't contain managed pointers, so use a normal hashtable.
4897
4898 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4899
4900         * reflection.c, class-internals.h, domain.c: fixed handling of types
4901         used as values for objects in custom attributes (bug #77915):
4902
4903 2006-03-24  Martin Baulig  <martin@ximian.com>
4904
4905         * class.c (mono_class_setup_fields): Added support for generic
4906         instances; fixes #77580.
4907
4908 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4909
4910         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4911
4912 2006-03-24  Dick Porter  <dick@ximian.com>
4913
4914         * file-io.c (get_file_attributes): More stat macro breakage.
4915         Fixes bug 77759.
4916
4917 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4918
4919         * profiler.c: added the file=filename option in the default profiler
4920         to output the profile data to filename.
4921
4922 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4923
4924         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4925         bug #77877.
4926
4927 2006-03-22  Martin Baulig  <martin@ximian.com>
4928
4929         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4930         allocated `MonoClassField *' in `fb->handle'.
4931
4932 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4933
4934         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4935         allocate interface ID to save memory and allow better ID reuse on
4936         appdomain unload. setup_generic_vtable () removal from Martin.
4937
4938 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4939
4940         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4941         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4942         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4943         write barriers for reference stores with managed objects accessed with
4944         C structures in the runtime and in embedding programs.
4945
4946 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4947
4948         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4949         'interface_id' and 'max_interface_id' fields of MonoClasses
4950         representing open generic types.
4951
4952 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4953
4954         * object.h, object.c, icall.c: added functions to deal with
4955         storing valuetypes that contain references in managed objects.
4956         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4957         fixes and comments around uses of mono_array_addr ().
4958
4959 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4960
4961         * object.h, icall.c, monitor.c: object.GetHashCode ()
4962         implementation that supports the moving garbage collector.
4963
4964 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4965
4966         * icall.c, threads-types.h, threads.c: implemented finalizer for
4967         LocalDataStoreSlot.
4968
4969 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4970
4971         * metadata.c (mono_type_size): Add a fixme.
4972         (mono_type_stack_size): Ditto.
4973
4974         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4975         'type_forwarders' field.
4976
4977         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4978         attribute from net 2.0.
4979
4980         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4981         from class.c.
4982
4983         * class.c (mono_class_setup_fields): Fix a warning.
4984         
4985         * class.c (mono_class_from_name): Add support for assemblyref entries
4986         in the EXPORTEDTYPE table.
4987
4988         * reflection.c: Add support for handling type forwarders under net 2.0.
4989
4990         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4991         
4992 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4993
4994         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4995         overwriting entries in ModuleBuild->types, also clean up the code
4996         a little. Fixes #77774.
4997
4998 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4999
5000         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
5001         load friend assembly info when present.
5002
5003 2006-03-14  Raja R Harinath  <rharinath@novell.com>
5004
5005         Fix crasher on gtest-158.cs.
5006         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
5007         the return value if the MonoClass we want is yet in an
5008         inconsistent state.
5009         * class.c (mono_class_create_from_typedef): Add an comment
5010         explaining an order dependency between mono_class_setup_parent and
5011         mono_class_setup_mono_type.
5012
5013 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
5014
5015         * class.c: documentation updates and events bug fix.
5016
5017 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
5018
5019         * class.c: some cleanup, locking fixes.
5020
5021 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
5022
5023         * class.c: fix the generics code to setup nested
5024         type info to the instantiated type (bug #77770).
5025
5026 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
5027
5028         * marshal.c: fixed a few type correctness issues.
5029
5030 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5031
5032         * loader.c: the Set/Get/Addrtess array methods should be public.
5033
5034 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
5035
5036         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
5037         
5038         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
5039         info->wrapper.
5040
5041 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
5042
5043         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
5044
5045         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
5046
5047         * mempool.c (mono_mempool_alloc): Speed this up a bit.
5048         (mono_mempool_alloc0): Ditto.
5049
5050 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5051
5052         * socket-io.c:
5053         (create_object_from_sockaddr): it was allocating 4 extra bytes
5054         for the AF_UNIX data. Fixes bug #77747.
5055
5056 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
5057
5058         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
5059
5060 2006-03-09  Dick Porter  <dick@ximian.com>
5061
5062         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
5063         Fixes bug 76966 again.
5064
5065 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
5066
5067         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
5068         names from r57532
5069         * appdomain.c: Bumped corlib version to 48 (due to r57532)
5070
5071 2006-03-07  Martin Baulig  <martin@ximian.com>
5072
5073         * object.c
5074         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
5075
5076 2006-03-07  Martin Baulig  <martin@ximian.com>
5077
5078         * class.c
5079         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
5080         regression introduced in r56970; see gtest-252.cs.
5081
5082         * loader.c (mono_get_method_constrained): Correctly handle generic
5083         methods; see gtest-253.cs.
5084
5085 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
5086
5087         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
5088
5089 2006-03-04  Martin Baulig  <martin@ximian.com>
5090
5091         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
5092         compute the parent type at runtime, just like we're already doing
5093         it for interfaces.
5094
5095         * reflection.c
5096         (mono_reflection_bind_generic_parameters): Don't compute the
5097         parent type anymore.
5098
5099         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
5100
5101 2006-03-04  Martin Baulig  <martin@ximian.com>
5102
5103         * mono-debug-debugger.h
5104         (mono_debugger_create_notification_function): Allocate memory at
5105         runtime and return a pointer to it.
5106
5107 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
5108
5109         * assembly.c: Fix windows build.
5110         
5111         * assembly.c: Fix build.
5112
5113         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
5114
5115         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
5116         
5117 2006-03-03  Dick Porter  <dick@ximian.com>
5118
5119         * process.c
5120         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5121         Check parameters before dereferencing them.  Fixes Aaron's part of
5122         bug 77393.
5123
5124 2006-03-03  Raja R Harinath  <rharinath@novell.com>
5125
5126         Fix performance regression.
5127         * loader.c (find_method_in_class): Add 'from_class' argument.
5128         Rename 'klass' argument to 'in_class'.  The signature is compared
5129         against the method in 'in_class', and the corresponding method is
5130         returned from 'from_class'.
5131         (find_method): Walk both 'in_class' and 'from_class' in parallel.
5132         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
5133         type definition and generic instantiation in parallel.
5134         (mono_get_method_constrained): Update to changes.
5135
5136 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
5137
5138         * threads.c: make sure the domain is correct, too when doing
5139         mono_thread_attach ().
5140
5141 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
5142
5143         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
5144         windows. Fixes #77683.
5145
5146 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
5147
5148         * object.h, *: introduced specific way to set elements of an array
5149         of references to be used as write barrier. Still need to audit the
5150         uses of mono_array_addr.
5151
5152 2006-03-01  Miguel de Icaza  <miguel@novell.com>
5153
5154         * object-internals.h: New field to cache the assmebly name, patch
5155         from Tambet Ingo (tambet@ximian.com)
5156
5157 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
5158
5159         * decimal.h, class-internals.h, metadata-internals.h,
5160         file-io.h: mark a few function declarations as internal, to
5161         reduce the number of PLT entries.
5162
5163 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5164
5165         * file-io.c: fix typo in warning message.
5166
5167 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
5168
5169         * loader.c: on unix, lookup the "*A" version of a function
5170         if charset is auto as a second option before failing.
5171
5172 2006-02-28  Raja R Harinath  <rharinath@novell.com>
5173
5174         * class.h (mono_class_inflate_generic_method): Revert to two
5175         argument version.
5176         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
5177         (mono_class_inflate_generic_method_full): Add.
5178         * class.c (mono_class_inflate_generic_method_full): Rename from
5179         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
5180         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
5181         * loader.c, reflection.c: Update to changes.
5182
5183 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
5184
5185         * icall.c: const fixes and small improvements.
5186
5187 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5188
5189         * threadpool.c: for asynchronous connect(), enable the same workaround
5190         for BSD 6 as for the Mac. Fixes bug #77637.
5191
5192 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
5193
5194         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
5195         formatted classes. Fixes #77524.
5196
5197 2006-02-24  Raja R Harinath  <rharinath@novell.com>
5198
5199         * class.c (inflate_generic_type): Add a couple more
5200         micro-optimizations.
5201         (inflate_generic_context): Don't use the 'gmethod' from
5202         'inflate_with'.
5203         (mono_class_inflate_generic_method): If the method has generic
5204         parameters, but the passed-in context doesn't have a 'gmethod',
5205         create one.  Use the possibly simplified generic instantiation
5206         from the declaring class instead of the one passed in.
5207
5208 2006-02-24  Raja R Harinath  <harinath@gmail.com>
5209
5210         Make generic method signature and method header handling lazy.
5211         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
5212         (inflate_generic_header): Likewise.
5213         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
5214         parameter to avoid inflating types.
5215         (mono_get_inflated_method): Empty out.
5216         * class.h (mono_class_inflate_generic_method): Update to changes.
5217         * loader.c (mono_get_method_from_token): Don't parse signature for
5218         generic methods, nor methods of generic classes.
5219         (mono_method_signature): Rename from 'mono_method_signature'.
5220         Inflate signature on demand.
5221         (mono_method_get_header): Inflate method header on demand.
5222         * reflection.c: Update to changes.
5223
5224 2006-02-23  Raja R Harinath  <rharinath@novell.com>
5225
5226         * metadata.c (mono_metadata_inflate_generic_inst): If the
5227         instantiation is closed, don't bother expanding it in the new
5228         context.
5229         * class.c (inflate_generic_class): If the generic instantiation
5230         doesn't change after inflation, return the argument itself.
5231         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
5232         Add bounds checks.
5233         (inflate_generic_context): If neither the generic class nor the
5234         generic method instantiations change, return the original context.
5235         * reflection.c (mono_method_get_object): Do
5236         'mono_get_inflated_method' before accessing the ->klass field.
5237         (inflate_mono_method): Don't create a MonoGenericMethod unless
5238         necessary.
5239         (inflate_method): Don't pass a constructed type as the declaring
5240         type of a methodbuilder.
5241
5242 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
5243
5244         * object.c: fix memory overwrite.
5245
5246 2006-02-22  Dick Porter  <dick@ximian.com>
5247
5248         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
5249         it doesn't work any more.
5250         (mono_threads_request_thread_dump): Fix unused variable warnings.
5251
5252 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5253
5254         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
5255         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
5256         the public header file.
5257
5258 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
5259
5260         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
5261
5262 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
5263
5264         * class-internals.h, object.c: reduce the size of MonoVTable
5265         and store the interface_offsets array at negative offsets.
5266
5267 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
5268
5269         * metadata.c: tweak table descriptors data structures to reduce
5270         size and runtime relocations.
5271
5272 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5273
5274         * marshal.c: fix some types and opcodes to be type-safe
5275         in marshaling wrappers.
5276
5277 2006-02-21  Ankit Jain  <jankit@novell.com>
5278
5279         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
5280
5281 2006-02-21  Raja R Harinath  <rharinath@novell.com>
5282
5283         * metadata.c (get_constraints): Relax debugging checks for monodis.
5284
5285 2006-02-21  Ankit Jain  <jankit@novell.com>
5286
5287         * metadata.c (mono_metadata_load_generic_params): Move the code
5288         checking for ambiguous generic params from here to mono/dis/get.c
5289         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
5290
5291 2006-02-21  Raja R Harinath  <harinath@gmail.com>
5292
5293         Fix assertion triggered when compiling nemerle.
5294         * class.c (mono_get_shared_generic_inst): Rename from
5295         get_shared_inst and make non-static.
5296         * loader.c (mono_get_shared_generic_method): New.  Used to create
5297         the MonoGenericContext-equivalent of a MonoGenericContainer.
5298         (mono_get_method_from_token): Initialize the 'context' field of
5299         the created MonoGenericContainer.
5300         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
5301         * metadata.c (get_constraints): Add sanity check.
5302         * class-internals.h: Add new internal methods.
5303
5304         * reflection.c (verify_safe_for_managed_space): New sanity check.
5305         Currently checks that owner-less generic parameters aren't allowed
5306         in managed space.
5307         (mono_type_get_object): Use it.
5308         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
5309         that are now in mono_type_get_object.
5310         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
5311
5312 2006-02-19  Raja R Harinath  <harinath@gmail.com>
5313
5314         * metadata.c (mono_type_create_from_typespec): Rename from
5315         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
5316         argument and caching of types in the generic container.
5317         (unwrap_arrays, find_generic_param): Remove.
5318         * metadata-internals.h: Update.
5319         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
5320
5321 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
5322
5323         * class.c (mono_class_get_exception_for_failure): Fix a warning.
5324
5325         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
5326         return values. Fixes #77581.
5327
5328         * class.c (mono_fnptr_class_get): Switch name and name_space.
5329
5330         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
5331         classes and add support for [In, Out] attributes.
5332         (mono_marshal_free_asany): Ditto. Fixes #77524.
5333
5334 2006-02-18  Raja R Harinath  <harinath@gmail.com>
5335
5336         * class.c (mono_class_from_generic_parameter): Make more robust to
5337         incomplete MonoGenericContainers from monodis.
5338
5339 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5340
5341         * class-internals.h: added some more exception types.
5342         * class.c, metadata.c: added a few checks to handle missing
5343         types.
5344
5345 2006-02-17  Raja R Harinath  <rharinath@novell.com>
5346
5347         Use owner-less generic-params some more.
5348         * class.c (my_mono_class_from_generic_parameter): Remove.
5349         (mono_class_from_generic_parameter): Handle null image,
5350         param->name and param->owner.
5351         (mono_class_from_mono_type): Update.
5352         (mono_class_create_from_typespec): Remove 'container' parameter.
5353         If that parameter is non-null, the result is always inflated by
5354         'mono_class_get_full' anyway.
5355         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
5356         parameter.
5357         (mono_class_get_full): Update.
5358
5359         * class.c (inflate_generic_type) [GENERICINST]: If the generic
5360         instance is not open, don't bother inflating.
5361         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
5362         parse metadata for inflated classes.
5363         (_mono_class_get): Change GenericContext* parameter to
5364         GenericContainer*.
5365         (mono_class_create_from_typespec): Likewise.  Simplify, and
5366         implement trivially.  All the cases are handled in
5367         mono_class_from_mono_type.  Don't inflate returned class.
5368         (mono_class_get_full): Delegate GENERICINST optimization to
5369         inflate_generic_type.
5370         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
5371
5372 2006-02-16  Dick Porter  <dick@ximian.com>
5373
5374         * socket-io.c (create_object_from_sockaddr): Fix typo.
5375         (create_sockaddr_from_object): Check array lengths before
5376         potentially accessing items off the end.
5377         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
5378         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
5379         (ves_icall_System_Net_Sockets_Socket_Send_internal)
5380         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
5381         length checks to avoid wraparound overflows.
5382         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
5383         contents of the array of sockets
5384         (hostent_to_IPHostEntry2)
5385         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
5386         Check return value of inet_ntop ().
5387         (addrinfo_to_IPHostEntry): Fix typo
5388
5389 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5390
5391         Type metadata parsing doesn't use generic-instantiation information.
5392         * metadata.c (mono_metadata_parse_array_full): Change
5393         MonoGenericContext* parameter to MonoGenericContainer*.
5394         (mono_metadata_parse_type_full): Likewise.
5395         (mono_type_create_from_typespec_full): Likewise.
5396         (mono_metadata_parse_mh_full): Likewise.
5397         (mono_metadata_parse_generic_inst): Likewise.
5398         (do_mono_metadata_parse_generic_class): Likewise.
5399         (do_mono_metadata_parse_type): Likewise.
5400         * metadata-internals.h: Update to changes.
5401         * class.c (mono_class_find_enum_basetype): Likewise.
5402         (mono_class_setup_fields): Likewise.
5403         (mono_class_create_from_typespec): Likewise.
5404         * loader.c (method_from_methodspec): Likewise.
5405         (mono_get_method_from_token): Likewise.
5406         (mono_method_get_header): Likewise.
5407
5408 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5409
5410         * marshal.c: handle additional GENERICINST case (patch from
5411         Thong Nguyen <tum@veridicus.com>).
5412         Fix a few cases where LDIND_I/STIND_I was used for references.
5413
5414 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5415
5416         * reflection.c (mono_reflection_get_token): Remove unused variable.
5417
5418 2006-02-16  Martin Baulig  <martin@ximian.com>
5419
5420         * reflection.c (mono_reflection_get_token): Add support for fields
5421         in instantiated generic types.
5422
5423         * icall.c
5424         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
5425
5426 2006-02-15  Martin Baulig  <martin@ximian.com>
5427
5428         * icall.c
5429         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
5430         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
5431         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
5432         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
5433
5434 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5435
5436         * class.c, metadata.c, metadata.h, object.c, icall.c,
5437         marshal.c: changed mono_type_get_underlying_type () to do
5438         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
5439         Fixed handling of instantiated generic valuetypes (bug #75479).
5440
5441 2006-02-15  Raja R Harinath  <rharinath@novell.com>
5442
5443         * metadata.c (mono_metadata_decode_signed_value): Simplify.
5444         Delegate to mono_metadata_decode_value, and work on the returned value.
5445
5446         * icall.c (ves_icall_MonoType_GetGenericArguments):
5447         Add consistency check here too.
5448         
5449 2006-02-15  Ankit Jain  <jankit@novell.com>
5450
5451         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
5452         char/short etc.
5453
5454 2006-02-15  Ankit Jain  <jankit@novell.com>
5455
5456         * metadata.c (mono_metadata_decode_signed_value): New function to decode
5457         signed values, used only for representing lower bounds of arrays.
5458         (mono_metadata_parse_array_full): Use new
5459         mono_metadata_decode_signed_value to decode lower bounds.
5460
5461 2006-02-14  Martin Baulig  <martin@ximian.com>
5462
5463         * reflection.c
5464         (mono_reflection_get_token): Support "MonoGenericMethod" and
5465         "MonoGenericCMethod" and allow generic instances / methods.
5466
5467 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5468
5469         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5470         to obtain the terminal size using an ioctl.
5471
5472         * object.c (mono_nullable_init): Revert this as nullable reference
5473         types are not valid.
5474         (mono_nullable_box): Ditto.
5475
5476 2006-02-09  Dick Porter  <dick@ximian.com>
5477
5478         * threads.c (mono_thread_detach): Drop a reference to the thread
5479         we're detaching.
5480
5481 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5482
5483         * object.c (mono_nullable_init): Handle nullable reference types.
5484         (mono_nullable_box): Ditto. Fixes #77446.
5485
5486 2006-02-07  Martin Baulig  <martin@ximian.com>
5487
5488         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5489
5490 2006-02-07  Ankit Jain  <jankit@novell.com>
5491
5492         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5493         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5494         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5495         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5496         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5497         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5498
5499 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5500
5501         * class.c (mono_class_create_generic): Set type_token as well.
5502
5503         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5504         compatible with MS.
5505
5506 2006-02-02  Martin Baulig  <martin@ximian.com>
5507
5508         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5509         has never been used so far.
5510
5511 2006-02-02  Martin Baulig  <martin@ximian.com>
5512
5513         * mono-debug-debugger.h: Changed comment at the top of this file;
5514         the header is not installed, but it's safe to #include it from
5515         within the JIT.
5516
5517         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5518         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5519
5520 2006-02-02  Martin Baulig  <martin@ximian.com>
5521
5522         * mono-debug.h
5523         (MonoSymbolTable): Removed the `metadata_info' field.
5524
5525         * mono-debug.c
5526         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5527
5528         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5529         (mono_debugger_add_builtin_types): Removed.
5530         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5531         (mono_debugger_create_notification_function): We now operate on a
5532         pre-allocated area; take a `gpointer' and return `void'.
5533
5534         * mono-debug-debugger.c
5535         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5536         (mono_debugger_add_builtin_types): Removed.
5537
5538 2006-02-02  Martin Baulig  <martin@ximian.com>
5539
5540         * threads.c (mono_debugger_create_all_threads): New public method.
5541
5542 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5543
5544         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5545         breaks on several platforms.
5546
5547 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5548
5549         * assembly.c: the VS.NET build doesn't supply default values for
5550         MONO_ASSEMBLIES and MONO_CFG_DIR.
5551
5552 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5553
5554         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5555         helper function.
5556
5557         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5558
5559         * loader.c (method_from_memberref): Fix a warning.
5560
5561         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5562
5563         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5564         with explicit layout. Fixes #77433.
5565
5566 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5567
5568         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5569         max_interface_id is initialized before using it. Fixes #77398.
5570         (ves_icall_Type_GetInterfaces): Ditto.
5571
5572 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5573
5574         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5575         allocate memory for parameter attributes when parsing memberref
5576         signatures.
5577         * loader.c (mono_loader_set_error_method_load): Don't warn.
5578         (method_from_memberref): Ensure MissingMethodException gets thrown
5579         if method is not found.  Make warning more informative.
5580
5581 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5582
5583         Fix #77397
5584         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5585         return true if is byref.
5586         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5587         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5588         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5589
5590 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5591
5592         Fix tests/find-method.2.il
5593         * loader.c (find_method, find_method_in_class): Remove is_inflated
5594         argument.  Revert 2006-01-18 change.
5595         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5596         is generic, search for method in its generic definition.
5597         * class.c (mono_class_setup_vtable_general): Print generic
5598         arguments of generic types in debugging printf.
5599
5600 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5601
5602         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5603
5604         * threads.c (mono_threads_request_thread_dump): New helper function.
5605
5606 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5607
5608         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5609
5610 2006-01-25  Ankit Jain  <jankit@novell.com>
5611
5612         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5613         move definition to ..
5614         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5615         
5616 2006-01-25  Ankit Jain  <jankit@novell.com>
5617             Raja R Harinath  <rharinath@novell.com>
5618
5619         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5620         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5621         as necessary.
5622
5623 2006-01-25  Martin Baulig  <martin@ximian.com>
5624
5625         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5626         `MonoDebuggerThread' into debug-debugger.c.
5627
5628 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5629
5630         * profiler.c: fix printing of data.
5631
5632 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5633
5634         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5635           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5636
5637 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5638
5639         * object.c: fix deadlock related to string interning.
5640
5641 2006-01-23  Martin Baulig  <martin@ximian.com>
5642
5643         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5644
5645         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5646
5647 2006-01-23  Martin Baulig  <martin@ximian.com>
5648
5649         * mono-debug.h: Moved the prototypes of some functions which are
5650         used by the JIT here from mono-debug-debugger.h.
5651
5652 2006-01-21  Martin Baulig  <martin@ximian.com>
5653
5654         * Makefile.am: Don't install mono-debug-debugger.h.
5655
5656 2006-01-21  Martin Baulig  <martin@ximian.com>
5657
5658         * mono-debug-debugger.h: Enforce the private status of this header
5659         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5660         Moved some stuff from mono-debugger-jit-wrapper.h here.
5661
5662 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5663
5664         * class.c (mono_class_from_typeref): Add a sanity test to help
5665         catch lack of assembly load/search hooks.
5666
5667 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5668
5669         * marshal.c (emit_struct_conv): Relax the fields with same offset
5670         check even more. Fixes #77230.
5671
5672 2006-01-18  Martin Baulig  <martin@ximian.com>
5673
5674         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5675         argument; if false, we compare the uninstantiated signatures.
5676         (method_from_memberref): Compare the uninstantiated signatures;
5677         fixes #76417.
5678
5679 2006-01-18  Robert Jordan  <robertj@gmx.net>
5680
5681         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5682         Clear the weak link. Fixes bug #77170.
5683
5684         * gc.c (mono_gchandle_free):
5685         Reflect *-gc.c changes (tiny optimization).
5686
5687 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5688
5689         * metadata.c (mono_metadata_signature_dup): Applied patch from
5690         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5691         Fixes #77288.
5692
5693 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5694
5695         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5696         marshalling from native to managed code. Fixes #77230.
5697
5698 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5699
5700         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5701         connect. Fixes bug #77020.
5702
5703 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5704
5705         * class.c: fixed id assignement for nested interfaces (bug #77275).
5706         Added also better info for --print-vtable debugging.
5707
5708 2006-01-12  Martin Baulig  <martin@ximian.com>
5709
5710         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5711         interfaces on-the-fly; fixes #76625.
5712
5713         * class-internals.h
5714         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5715         don't need that anymore.
5716
5717 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5718
5719         * socket-io.c
5720         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5721         To avoid initing the nested_classes when not needed I turned the
5722         PeerCredData as a toplevel internal class, as it has to be shared
5723         anyways. 
5724
5725         Fixes the CASA issue.
5726
5727 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5728
5729         * domain.c: Accessors for MonoJitInfo
5730
5731         * profiler-private.h: Add jitinfo to the end jit hook
5732
5733         * profiler.[ch]: Define new hooks, called after jitting which give
5734         the MonoJitInfo that was compiled
5735
5736 2006-01-10  Martin Baulig  <martin@ximian.com>
5737
5738         * class.c (mono_class_setup_events): Add support for generic
5739         classes; fixes #76440.
5740
5741 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5742
5743         Fix #77160.
5744         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5745         on passed-in method.
5746
5747 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5748
5749         * object.c (mono_runtime_invoke_array): Add Nullable support.
5750
5751         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5752
5753 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5754
5755         * file-io.c: Don't consider sockets as directory and avoid an endless
5756         loop. Fix bug #76966.
5757
5758 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5759
5760         * object.c (mono_nullable_init): New helper function.
5761         (mono_nullable_box): Ditto.
5762
5763         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5764
5765         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5766
5767         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5768         
5769 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5770
5771         * class.c (mono_class_is_assignable_from): Make T assignable to 
5772         Nullable<T>.
5773
5774 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5775
5776         * appdomain.c: Bump corlib version to 46.
5777         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5778         serialization purpose) and changed ves_icall_System_Reflection_
5779         Assembly_get_code_base signature to accept a boolean (to escape, or 
5780         not, the assembly code base).
5781
5782 2005-12-23  Dick Porter  <dick@ximian.com>
5783
5784         * icall.c: 
5785         * threads-types.h: 
5786         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5787         CreateEvent icall now returns "created" boolean parameter.
5788
5789 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5790
5791         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5792         #76967.
5793
5794         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5795         when attr_klass is an interface. Fixes #77045.
5796
5797 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5798
5799         * marshal.c (emit_struct_conv): Fix previous patch.
5800         
5801         * marshal.c (emit_struct_conv): Add a check for fields with the same
5802         offset.
5803
5804 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5805
5806         Fix regression in Mono.C5.
5807         * class.c (mono_class_create_generic): If 'klass' is an interface
5808         set up the interface offsets.
5809         (mono_class_is_assignable_from): Don't throw away generic arguments.
5810
5811 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5812
5813         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5814         type parameters.
5815
5816 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5817
5818         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5819         dead store.
5820         (do_mono_metadata_parse_generic_class): Don't pass the current
5821         generic context when parsing the type being instantiated: it
5822         cannot use it, anyway.
5823
5824         * loader.c (method_from_memberref): Don't inflate a signature if
5825         it doesn't contain any type parameters.
5826
5827 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5828
5829         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5830
5831 2005-12-14  Martin Baulig  <martin@ximian.com>
5832
5833         * class.c
5834         (mono_type_get_name_recurse): Don't return null for type
5835         parameters and open generic classes.
5836         (mono_class_setup_methods): Don't exclude generic instances.
5837         (mono_get_unique_iid): Use different IDs for different
5838         instantiations of the same generic type.
5839         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5840         open generic instances; create a normal vtable for closed generic
5841         instances.
5842         (mono_class_setup_vtable_general): We're now also called for
5843         closed generic instances.
5844
5845         * reflection.c
5846         (mono_reflection_bind_generic_parameters): Correctly use
5847         mono_metadata_lookup_generic_inst() everywhere.
5848
5849 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5850
5851         * object.c (mono_class_create_runtime_vtable): Call 
5852         mono_class_setup_vtable ().
5853
5854         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5855         function.
5856         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5857         #76959.
5858
5859         * loader.c (mono_loader_set_error_type_load): Print the type load
5860         warnings to the console so they are more visible to the user.
5861         (mono_loader_set_error_method_load): Ditto.
5862
5863         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5864         is still broken.
5865         
5866         * reflection.c (ensure_runtime_vtable): Fix build.
5867
5868         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5869         doesn't work in all cases.
5870
5871 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5872
5873         * object.c (mono_array_new_full): Treat a single dimensional array
5874         with 0 lower bounds as an szarray. Fixes #76973.
5875
5876         * reflection.c (custom_attr_visible): Really fix this.
5877
5878 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5879
5880         * reflection.c (custom_attr_visible): Allow nested public attributes
5881         as well.
5882
5883         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5884         interface check.
5885
5886 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5887
5888         * class.c (set_generic_param_owner): Delete.
5889         (mono_class_create_from_typedef): Don't set ->owner field of
5890         generic parameters to "param containers" of enclosing classes.
5891         * reflection.c (mono_reflection_initialize_generic_parameter):
5892         Likewise.
5893
5894 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5895
5896         * reflection.c (custom_attr_visible): Fix build.
5897
5898 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5899
5900         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5901         private attributes.
5902         
5903         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5904         handling of null parameter defaults.
5905
5906 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5907
5908         * class.c (mono_class_from_generic_parameter): Don't set
5909         klass->generic_container.
5910         (my_mono_class_from_generic_parameter): Likewise.
5911
5912 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5913
5914         * reflection.c (load_public_key): Fix a warning.
5915         (method_encode_code): Fix unaligned accesses.
5916
5917 2005-12-07  Martin Baulig  <martin@ximian.com>
5918
5919         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5920
5921         * reflection.c
5922         (write_generic_param_entry): Encode our custom attrs.
5923
5924         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5925
5926 2005-12-07  Martin Baulig  <martin@ximian.com>
5927
5928         * reflection.c (encode_new_constraint): Removed; we don't use the
5929         `NewConstraintAttribute' anymore.
5930
5931 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5932
5933         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5934         not fire a TypeResolve event when Assembly.GetType () is called.
5935
5936 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5937
5938         Beginning of support for nullable types in the runtime. Parts of
5939         this patch are from Martin.
5940
5941         * appdomain.c (MONO_CORLIB_VERSION): Bump
5942
5943         * domain.c (mono_init_internal): get the nullable type
5944
5945         * class.c (mono_class_is_nullable): New method
5946         (mono_class_get_nullable_param): New mehod
5947         (mono_class_create_generic): In types T? set cast_class to T
5948
5949         * class-internals.h (MonoDefaults): new nullable default class
5950         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5951         new methods.
5952
5953 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5954
5955         * metadata.c (select_container): New.  Refactor code to select the
5956         appropriate GenericContainer given the type of generic parameter
5957         we are looking for.
5958         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5959         not a MonoGenericContext.  Use select_container.  Update parameters.
5960         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5961         and MONO_TYPE_MVAR.
5962         (unwrap_arrays): Remove duplicate tests.
5963         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5964         generic instantiated class to find any arguments that are generic
5965         parameters.
5966         (mono_type_create_from_typespec_full): Use find_generic_param to
5967         avoid evicting some generic instantiations from the typespec
5968         cache.
5969
5970 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5971
5972         * reflection.c: fixed writing of doubles on ARM FPA.
5973
5974 2005-12-02  Robert Jordan  <robertj@gmx.net>
5975
5976         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5977
5978 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5979
5980         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5981         least on SUSE 10 they are not the same (on debian, they are just the
5982         same thing).
5983
5984 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5985
5986         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5987         DeclaringType for VARs and MVARs.
5988         * class.c (set_generic_param_owner): Fix initialization of owner
5989         fields.
5990
5991 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5992
5993         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5994
5995 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5996
5997         * threadpool.c: workaround for a bug that shows up on the Mac:
5998         select()+connect() on a blocking socket is not like it should
5999         be, so we proceed to connect() in that case, wasting the I/O
6000         threadpool thread until connect succeedes. Fixes bug #75436.
6001
6002 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6003
6004         * threadpool.c: fix typo when setting file descriptor states.
6005
6006 2005-11-28  Raja R Harinath  <rharinath@novell.com>
6007
6008         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
6009         * metadata.c (mono_metadata_parse_method_signature_full): Don't
6010         create a temporary signature container.
6011         (mono_metadata_parse_generic_param): Update to changes.
6012         (mono_type_create_from_typespec_full): Update to changes.
6013         * loader.c (method_from_memberref): Don't use a
6014         MonoGenericContainer while parsing a memberref signature.
6015         (method_from_methodspec): Remove dead-store of the 'container'
6016         variable.  It's overwritten before use.
6017
6018         * metadata.c (mono_type_create_from_typespec_full): Make debugging
6019         checks tighter.
6020         (mono_metadata_parse_generic_param): Likewise.
6021         * loader.c (find_method_in_class): Does not need a
6022         MonoGenericContainer.  Use 'mono_method_signature' rather than
6023         'mono_method_signature_full'.
6024         (find_method, mono_get_method_constrained, method_from_memberref):
6025         Update to changes.
6026
6027         * metadata.c (mono_type_create_from_typespec_full): Ensure that
6028         owner-less generic-parameters are never evicted from the typespec
6029         cache.
6030
6031         * loader.c (method_from_memberref): Don't use the current context
6032         when parsing signatures.
6033         (method_from_methodspec, mono_get_method_from_token): Update to changes.
6034
6035         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
6036         side-effects in g_assert.
6037         * loader.c (mono_get_method_from_token): Resolve klass earlier so
6038         that we don't potentially lose information.
6039
6040 2005-11-26  Dick Porter  <dick@ximian.com>
6041
6042         * icall.c:
6043         * threads.c: icalls to implement basic (ie, not named)
6044         System.Threading.Semaphore.
6045
6046 2005-11-24  Dick Porter  <dick@ximian.com>
6047
6048         * process.c
6049         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
6050         Use GetProcessId() if it's available.
6051
6052 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
6053
6054         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
6055
6056 2005-11-23  Raja R Harinath  <rharinath@novell.com>
6057             Ankit Jain  <jankit@novell.com>
6058
6059         * loader.c (mono_get_method_from_token): Initialize 'method' field
6060         of all generic parameters before parsing the signature.  Remove
6061         code that "fixed"-up MVAR references.
6062
6063 2005-11-23  Ankit Jain  <jankit@novell.com>
6064
6065         * metadata.c (mono_metadata_has_generic_params):
6066         (mono_metadata_load_generic_param_constraints):
6067         (mono_metadata_load_generic_params): Move duplicate code ...
6068         (mono_metadata_get_generic_param_row): ... here. Returns the
6069         first row-id in GenericParam table for a given owner (token).
6070         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
6071         prototype.
6072
6073 2005-11-23  Raja R Harinath  <rharinath@novell.com>
6074             Ankit Jain  <jankit@novell.com>
6075
6076         * metadata.c (mono_metadata_class_equal): Pass signature_only when
6077         comparing VARs too.
6078         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
6079         type->data.generic_param only if the type is an MVAR.
6080         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
6081         leak owner-less VARs and MVARs into managed space.
6082
6083 2005-11-21  Martin Baulig  <martin@ximian.com>
6084
6085         * class-internals.h
6086         (MonoMethod): Moved the `generic_container' here from
6087         `MonoMethodNormal' since we now also need it for
6088         `MonoMethodPInvoke';
6089         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
6090         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
6091         an union containing both `MonoMethodNormal' and
6092         `MonoMethodPInvoke'.
6093
6094         * loader.c
6095         (mono_get_method_from_token): Allow implementing generic methods
6096         as interncalls.
6097
6098         * threads.c
6099         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
6100         icall.
6101
6102 2005-11-17  Dick Porter  <dick@ximian.com>
6103
6104         * icall.c: 
6105         * process.h: 
6106         * process.c: Split the Process Start_internal icall into
6107         ShellExecuteEx_internal and CreateProcess_internal, which are
6108         called depending on whether UseShellExecute is true.  Fixes bug
6109         76670.
6110
6111         * appdomain.c (MONO_CORLIB_VERSION): Incremented
6112
6113 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
6114
6115         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
6116         'msize' parameters, use the information in 'mspec' instead.
6117         (emit_object_to_ptr_conv): Ditto.
6118
6119         * marshal.c (emit_struct_conv): Handle explicit layout structs with
6120         fields out of order. Fixes #76733.
6121
6122 2005-11-17  Ankit Jain  <jankit@novell.com>
6123
6124         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
6125
6126 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
6127
6128         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
6129           bug #76575.
6130
6131 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
6132
6133         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
6134         for types with non-auto layout. Fixes #76717.
6135
6136 2005-11-16  Ankit Jain  <jankit@novell.com>
6137
6138         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
6139         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
6140         if generic_context is null.
6141           (mono_metadata_generic_param_equal): param->owner can be null.
6142           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
6143         null.
6144
6145 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
6146
6147         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
6148         the correct value.
6149
6150 2005-11-15  Martin Baulig  <martin@ximian.com>
6151
6152         * object.c (set_value): Use mono_class_from_mono_type() instead of
6153         the hack for generic instances; fixes #76136.
6154
6155 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
6156
6157         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
6158         fields.
6159
6160         * image.c (load_metadata_ptrs): Initialize the new fields.
6161
6162         * reflection.c (create_dynamic_mono_image): Ditto.
6163
6164         * reflection.c (build_compressed_metadata): Use the new fields.
6165
6166         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
6167         icall.
6168
6169         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
6170         icall.
6171         
6172 2005-11-15  Ankit Jain  <jankit@novell.com>
6173             Raja R Harinath  <harinath@gmail.com>
6174
6175         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
6176         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
6177         new per-generic_container cache if the cached MonoType's context matches
6178         the current context.
6179           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
6180         to the expected context.
6181           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
6182
6183 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6184
6185         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
6186         we changed the signature of an icall.
6187         * icall.c: Modify to mono_double_ParseImpl return true/false 
6188         depending on the success, instead of throwing the exception. This will
6189         help us in Double.TryParse methods.
6190         
6191 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
6192
6193         * marshal.c (emit_marshal_object): Throw an exception when
6194         marshalling 'object' instead of crashing. Fixes #76696.
6195
6196 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6197
6198         * class-internals.h: Add prototype for mono_type_get_full_name ().
6199
6200 2005-11-11  Dick Porter  <dick@ximian.com>
6201
6202         * threads.c (mono_thread_manage): Make sure the main thread has
6203         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
6204
6205 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6206
6207         * loader.c (mono_loader_set_error_type_load): Log a warning to the
6208         console about the missing type.
6209         (mono_loader_set_error_method_load): Ditto.
6210
6211 2005-11-09  Miguel de Icaza  <miguel@novell.com>
6212
6213         * mono-config.c (mono_get_config_dir): Set the system defaults if
6214         none is specified.
6215
6216         * assembly.c (mono_set_dirs): New API entry point to set the
6217         assembly and the config directory in one call
6218
6219 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
6220
6221         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
6222         the ftnptr was created from a delegate in a domain other than the
6223         current domain. Fixes #75377.
6224
6225         * exception.h exception.c: Add mono_get_exception_not_supported ().
6226
6227 2005-11-08  Martin Baulig  <martin@ximian.com>
6228
6229         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
6230
6231 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
6232
6233         * security-manager.h: Added definitions to deal with strongname key 
6234         pairs bigger (and smaller) than 1024 bits.
6235         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
6236         adjust wrt the public key length being used.
6237
6238 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6239
6240         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
6241           Windows build (r51396-51397).
6242
6243 2005-11-03  Martin Baulig  <martin@ximian.com>
6244
6245         * class.c (mono_class_setup_vtable_general): Also add generic
6246         methods to the vtable; fixes #76581.
6247
6248 2005-11-01  Miguel de Icaza  <miguel@novell.com>
6249
6250         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
6251         sure that we lookup GetString method from the System.Text.Encoding
6252         class, not the derived class or we get an empty method.
6253
6254         Fixed class #76612.
6255
6256 2005-10-25  Miguel de Icaza  <miguel@novell.com>
6257
6258         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
6259         if it has been previously set (embedders). 
6260
6261         Make mono_set_rootdir available also on Unix.
6262
6263 005-10-24  Robert Jordan  <robertj@gmx.net>
6264
6265         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
6266
6267 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
6268
6269         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
6270         only calls which are made to native code use this flag.
6271
6272         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
6273
6274 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
6275
6276         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
6277         Add support for FieldBuilders.
6278
6279 2005-10-29  Martin Baulig  <martin@ximian.com>
6280
6281         * mono-debug.c
6282         (mono_debug_using_mono_debugger): New public method; returns
6283         whether we're running inside the debugger.
6284
6285 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
6286
6287         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
6288         for Method/Constructor/FieldBuilders.
6289
6290 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
6291
6292         * reflection.c (module_add_cattrs): Save custom attributes for global methods
6293         and fields as well.
6294
6295 2005-10-26  Martin Baulig  <martin@ximian.com>
6296
6297         * mono-debug-debugger.c
6298         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
6299
6300 2005-10-24  Raja R Harinath  <harinath@gmail.com>
6301
6302         * icall.c (base64_to_byte_array): Don't pass an out-of-range
6303         integer to isspace.
6304
6305 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
6306
6307         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
6308         when passing valuetypes byref. Fixes #76502.
6309
6310 2005-10-19  Jackson Harper  <jackson@ximian.com>
6311
6312         * profiler.c: Don't put a . in front of types that are not in a
6313         namespace.
6314
6315 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
6316
6317         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
6318
6319 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
6320
6321         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
6322         #76436.
6323         (mono_marshal_get_ldflda_wrapper): Fix a warning.
6324
6325 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6326
6327         * assembly.c metadata-internals.h icall.c: Define an additional
6328         parameter for mono_assembly_name_parse_full, so we can avoid creating
6329         S.R.AssemblyName.Version when no version info wasn't passed.
6330         
6331 2005-10-09  Miguel de Icaza  <miguel@novell.com>
6332
6333         * class.c (mono_type_get_full_name): Reimplement method that was
6334         removed. 
6335
6336         * image.c: Some docs
6337
6338 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
6339
6340         * profiler.c (output_newobj_profile): Fix printing of Total memory
6341         on x86.
6342
6343 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6344
6345         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
6346
6347 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
6348
6349         * threads.c: remove debug output.
6350
6351 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6352
6353         * threads.c (mono_thread_manage): Fix crashes if more than 64
6354         threads need to be aborted. Hopefully fixes #75899.
6355
6356         * assembly.c (mono_stringify_assembly_name): New helper function.
6357
6358         * class.c: Use mono_stringify_assembly_name instead of the similar
6359         static function.
6360
6361         * assembly.h assembly.c: Add support for calling a postload search 
6362         hook if an assembly cannot be loaded.
6363
6364         * appdomain.c: Register new search hooks which call the AssemblyResolve
6365         events in AppDomain. Fixes #75231
6366
6367 2005-10-07  Martin Baulig  <martin@ximian.com>
6368
6369         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
6370         methods without debug info.
6371
6372 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
6373
6374         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
6375         wrappers.
6376
6377 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6378
6379         * file-io.c: now that we return symlinks, use lstat and, when the file
6380         is a symbolic link, stat, to get the file attributes. Also avoid the
6381         conversion to/from utf16/external.
6382
6383 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
6384
6385         * class.c (mono_class_layout_fields): Compute klass->has_references
6386         correctly if an embedded valuetype is not yet initialized. Fixes
6387         #76331.
6388
6389 2005-10-04  Martin Baulig  <martin@ximian.com>
6390
6391         * metadata.c
6392         (mono_metadata_load_generic_param_constraints): New public
6393         function; splitted the constraints loading out from
6394         mono_metadata_load_generic_params().
6395
6396         * class.c (mono_class_create_from_typedef): Call
6397         mono_metadata_load_generic_param_constraints() after setting up
6398         the type and creating our parent; fixes #75329.
6399
6400 2005-10-04  Martin Baulig  <martin@ximian.com>
6401
6402         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
6403         non-dynamic parent classes.
6404
6405 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6406
6407         * file-io.c : win32 build fix (ETXTBSY seems not found).
6408
6409 2005-10-04  Martin Baulig  <martin@ximian.com>
6410
6411         * reflection.c
6412         (mono_image_get_methodspec_token): Make the cache actually work;
6413         fixes #75974.
6414
6415 2005-10-04  Martin Baulig  <martin@ximian.com>
6416
6417         * class.c (mono_class_name_from_token): Removed the unneccessary
6418         `MonoGenericContext *' argument.
6419
6420 2005-10-04  Martin Baulig  <martin@ximian.com>
6421
6422         * loader.c
6423         (method_from_methodspec): Make the caching work again; fixes the
6424         performance regression from #76262.
6425
6426 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6427
6428         * file-io.c:
6429         * file-io.h:
6430         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
6431         GetFileSystemEntries that performs the same work but without going
6432         into io-layer, locking, etc.
6433
6434 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
6435
6436         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
6437         ThreadState_Stopped as well. Fixes #76047.
6438
6439 2005-09-29  Martin Baulig  <martin@ximian.com>
6440
6441         * class.c
6442         (inflate_generic_context): If the new context has a `gmethod', set
6443         its `container' that that gmethod's `container'.
6444
6445         * metadata.c
6446         (mono_metadata_parse_generic_param): Simplify things;
6447         `generic_container = generic_context->container;' is just fine.
6448
6449         * loader.c (method_from_methodspec): Code cleanups.
6450
6451 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
6452
6453         * decimal.c: fix warning (and let gcc generate correct
6454         code on ARM with optimizations).
6455
6456 2005-09-28  Martin Baulig  <martin@ximian.com>
6457
6458         * loader.c
6459         (method_from_memberref): Added `MonoGenericContext *class_context'
6460         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
6461         (method_from_methodspec): If we're a memberref, use the enclosing
6462         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
6463
6464 2005-09-28  Martin Baulig  <martin@ximian.com>
6465
6466         * object.c (mono_runtime_invoke_array): Added support for
6467         MONO_TYPE_GENERICINST; fixes #75917.
6468
6469 2005-09-27  Martin Baulig  <martin@ximian.com>
6470
6471         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6472         `k->byval_arg.type' to determine the actual type.
6473
6474         * loader.c (method_from_methodspec): Removed some hacks.
6475
6476 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6477
6478         * class-internals.h (mono_field_is_deleted): Do the test for
6479         rtspecialname before we check the actual name of the field. This
6480         prevents us from dereferencing a pointer into the string table,
6481         saving us from accessing a few pages
6482
6483         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6484         macros. This will allow a deadlock debugger to easily be plugged
6485         in.
6486
6487 2005-09-27  Martin Baulig  <martin@ximian.com>
6488
6489         * loader.c (method_from_methodspec): Create a "signature"
6490         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6491
6492 2005-09-27  Martin Baulig  <martin@ximian.com>
6493
6494         * class.c
6495         (inflate_generic_class): Correctly set the new context's
6496         container.
6497
6498         * loader.c
6499         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6500         instead of a `MonoGenericContext *'.
6501         (mono_method_signature_full): Take a `MonoGenericContainer *'
6502         instead of a `MonoGenericContext *'.
6503
6504         * metadata.c
6505         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6506         instead of a `MonoGenericContext *'.
6507         (mono_metadata_parse_method_signature_full): Likewise.
6508
6509 2005-09-26  Martin Baulig  <martin@ximian.com>
6510
6511         * class.c
6512         (mono_class_from_generic_parameter): Set `klass->generic_container'
6513         (mono_class_from_generic_parameter): Likewise.
6514         (mono_bounded_array_class_get): We inherit the generic container
6515         from the element class.
6516
6517         * loader.c
6518         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6519         argument rather than computing it here.
6520         (method_from_memberref): Correctly set the generic context before
6521         parsing the signature.  Fixes #75681.
6522
6523 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6524
6525         * object.c (mono_class_has_special_static_fields): Fix warnings.
6526
6527 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6528
6529         * assembly.c: Add parse_public_key function, to
6530         par the public keys. Also added mono_assembly_name_parse_full,
6531         to define it the parsed key should be freed or not.
6532         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6533         to parse a long format assembly name.
6534         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6535         private, since calling it to preserve the key requires
6536         freeing it manually.
6537         
6538 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6539
6540         * locales.c : removed HAVE_ICU part.
6541
6542 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6543
6544         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6545         field_is_special_static if the klass has no special static fields.
6546
6547         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6548         (MonoCachedClassInfo): Likewise.
6549
6550         * object.c (mono_class_has_special_static_fields): New helper function.
6551
6552 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6553
6554         * class.c (mono_class_create_from_typedef): Don't call 
6555         interfaces_from_typedef_full for enums.
6556         (mono_class_create_from_typedef): Compute the base types of enums directly
6557         without calling mono_class_setup_fields ().
6558         (mono_class_find_enum_basetype): New helper function.
6559
6560         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6561         one place inside the string heap.
6562         
6563 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6564
6565         * class.c: locking fixes, code cleanups, some docs added.
6566         Allocate some data structures in the image mempool.
6567
6568 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6569
6570         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6571         the example code.
6572         
6573 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6574
6575         * class-internals.h, class.c, reflection.c: reduce memory taken by
6576         MonoClass.
6577
6578 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6579
6580         * metadata.c, metadata.h, loader.h: documentation updates, code and
6581         API cleanups.
6582
6583 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6584
6585         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6586         the example code.
6587
6588         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6589         page faults caused by the runtime while reading metadata.
6590
6591 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6592
6593         * socket-io.c: the field names were changed 3 months ago and no one
6594         realized until bug #76077 got filed!
6595
6596 2005-09-20  Martin Baulig  <martin@ximian.com>
6597
6598         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6599
6600 2005-09-20  Martin Baulig  <martin@ximian.com>
6601
6602         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6603         write the rank into the class entry.
6604
6605 2005-09-20  Martin Baulig  <martin@ximian.com>
6606
6607         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6608
6609 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6610
6611         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6612
6613         * icall.c (custom_attrs_defined_internal): New icall.
6614
6615         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6616         function.
6617         (mono_custom_attrs_construct_by_type): New helper function.
6618
6619 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6620
6621         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6622         terminate the resulting string. Fixes #76123.
6623
6624 2005-09-16  Martin Baulig  <martin@ximian.com>
6625
6626         * mono-debug.c
6627         (mono_debug_add_method): Ignore inflated methods for the moment.
6628
6629 2005-09-14  Martin Baulig  <martin@ximian.com>
6630
6631         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6632
6633 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6634
6635         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6636         return a success/failure indication.
6637         (mono_metadata_interfaces_from_typedef_full): Ditto.
6638         (get_constraints): Ditto.
6639
6640 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6641
6642         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6643         
6644         * marshal.c (emit_marshal_array): Add support for returning string
6645         arrays from delegates. Fixes #76063.
6646
6647         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6648
6649 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6650
6651         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6652         icall.
6653
6654 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6655
6656         * reflection.c icall.c: Fix after mono_get_exception_type_load
6657         signature change.
6658
6659         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6660         (mono_assembly_load_reference): Use the new helper.
6661
6662         * class-internals.h (MonoLoaderError): New structure containing 
6663         information about type loading errors.
6664
6665         * class-internals.h loader.c: Add APIs to store per-thread loader
6666         error information.
6667
6668         * loader.c class.c: Set the loader error if needed.
6669
6670         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6671
6672 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6673
6674         * decimal.c: fixed to handle the broken ARM fp format.
6675
6676 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6677
6678         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6679         broken.
6680
6681 2005-09-06  Martin Baulig  <martin@ximian.com>
6682
6683         * domain.c (supported_runtimes): Added v2.0.50727.
6684
6685 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6686
6687         * culture-info.h: reduce the size of some structures.
6688
6689 2005-09-05  Martin Baulig  <martin@ximian.com>
6690
6691         Reflect latest API changes in the August CTP.
6692
6693         * icall.c
6694         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6695         ("MonoType.HasGenericArguments"): Removed.
6696         ("MonoMethod.BindGenericParameters"): Renamed to
6697         "MakeGenericMethod".
6698         ("MethodBuilder.BindGenericParameters"): Renamed to
6699         "MakeGenericMethod".    
6700
6701 2005-09-05  Martin Baulig  <martin@ximian.com>
6702
6703         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6704
6705 2005-09-05  Martin Baulig  <martin@ximian.com>
6706
6707         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6708
6709         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6710         generic_container is non-NULL.
6711
6712 2005-09-05  Martin Baulig  <martin@ximian.com>
6713
6714         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6715
6716         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6717
6718 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6719
6720         * reflection.c (encode_locals,
6721         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6722         for large generic types.
6723
6724 2005-09-05  Martin Baulig  <martin@ximian.com>
6725
6726         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6727
6728         * class.c (mono_dup_array_type): New public method.
6729         (mono_metadata_signature_deep_dup): New public method.
6730         (dup_type): Correctly duplicate array and function types.
6731
6732 2005-09-05  Martin Baulig  <martin@ximian.com>
6733
6734         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6735
6736         * reflection.c (get_default_param_value_blobs): Handle generic types
6737         and generic methods.
6738
6739 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6740
6741         * class.c: Fixed error reporting (method/class were inversed) for 
6742         inheritance demands.
6743         * security-manager.c|h: Added the AppDomain when calling the managed
6744         System.Security.SecurityManager.InheritanceDemand method.
6745
6746 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6747
6748         * reflection.c (encode_marshal_blob): 'marshaltype' and
6749         'marshaltyperef' are alternate sources for the custom marshaler
6750         name.
6751
6752 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6753
6754         * class.c: fix creation of array classes with rank == 1
6755         (patch by Ankit Jain <jankit@novell.com>).
6756
6757 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6758
6759         * object.c: fix check for creating the bound data for arrays vs
6760         szarrays.
6761
6762 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6763
6764         * object.c: configuration file name is now based on the executable name,
6765         not the image name. Fixes bug #75931.
6766
6767 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6768
6769         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6770         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6771
6772 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6773
6774         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6775
6776 2005-08-24  Ankit Jain  <jankit@novell.com>
6777             Raja R Harinath  <rharinath@novell.com>
6778
6779         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6780           called by it recursively.
6781           (mono_class_init): Remove special case in pending_init handling, since it's
6782           superseded by the fix to mono_class_from_typeref.
6783
6784 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6785
6786         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6787         BROKEN_THREAD_START stuff.
6788
6789 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6790
6791         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6792         trampoline.
6793
6794         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6795         
6796         * object.c (mono_delegate_ctor): Replace the original function address with
6797         a delegate trampoline.
6798
6799 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6800
6801         * icall.c: add boolean argument to base64_to_byte_array and 
6802         InternalFromBase64String to control whether a whitespace-only string
6803         is allowed (or should casue a FormatException to be thrown). We need
6804         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6805         to match the MS behaviour in both profiles.
6806         * appdomain.c: Bump corlib version.
6807
6808 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6809
6810         This patch implements a big portion of publisher policy
6811         support, used to bind assembly versions and redirect
6812         one assembly from version A to version B.
6813
6814         * assembly.c:
6815         New GSList loaded_assembly_bindings, for storing the cached
6816         assembly bindings.
6817         (assembly_binding_maps_name): New static function for checking if a 
6818         assembly binding information maps an assembly name.
6819         (mono_assembly_binding_info_free): New function for freeing
6820         assembly binding information resources.
6821         (get_publisher_policy_info): New static function for retrieving 
6822         assembly binding information from a MonoImage.
6823         (compare_versions): New static function for comparing an assembly
6824         binding information data and the version of an assembly name.
6825         (check_policy_versions): New static function for checking if an
6826         assembly binding info mapping an assembly name is valid for it.
6827         (mono_assembly_load_publisher_policy): New static function for
6828         loading the 'policy.major.minor.MyAssembly' image for an assembly
6829         with an assembly name 'aname'.
6830         (mono_assembly_bind_version): New static function for updating
6831         assembly redirection.
6832         (mono_assembly_apply_binding): New static function for applying
6833         assembly binding.
6834         (search_binding_loaded): New static function for searching 
6835         loaded assembly binding infos in the cache domain.
6836         (mono_assembly_load_full): Don't apply assembly binding for
6837         reflection only assemblies.
6838
6839         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6840         which contains information about assembly binding. Also
6841         declare signature for mono_config_parse_publisher_policy ()
6842         function, used to retrieve pub policy info.
6843         
6844         * mono-config.c:
6845         (publisher_policy_start): New static function used to parse publisher 
6846         policy config files.
6847         (publisher_policy_parser): New static MonoParseHandler containing 
6848         the functions used when parsing config files.
6849         (mono_config_parse_publisher_policy): New function for parsing
6850         publisher policy files.
6851         
6852 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6853
6854         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6855
6856         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6857
6858         * object.c (mono_get_addr_from_ftnptr): New helper function.
6859
6860         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6861
6862         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6863
6864 2005-08-19  Dick Porter  <dick@ximian.com>
6865
6866         * threads.c, threads.h, appdomain.c, appdomain.h,
6867         profiler-private.h, monitor.c, object.c, object-internals.h,
6868         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6869         store the thread ID, so it can hold a 64 bit value if needed.
6870
6871 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6872
6873         * reflection.c (mono_reflection_create_dynamic_method): Store the
6874         handle class into the method references as well so ldtoken works in
6875         dynamic methods.
6876
6877         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6878         types.
6879
6880 2005-08-19  Ankit Jain <jankit@novell.com>
6881
6882         Fix #75847.
6883         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6884           here rather than using the method signature of a arbitrary function
6885           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6886           two arguments.
6887           Hack done with Harinath.
6888
6889 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6890
6891         * threadpool.c: disable printing stack traces when we get a exception
6892         in a threadpool thread. I need to do more testing to figure out which
6893         cases actually print this. Fixes bug #75828.
6894
6895 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6896
6897         * icall.c: there might be ignored whitespace after the last '='. This
6898         fixes length computation and bug #75840.
6899
6900 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6901
6902         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6903         well. Fixes #75809.
6904
6905         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6906         #75784.
6907         
6908         * reflection.c (create_custom_attr_data): Ditto.
6909
6910 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6911
6912         * locales.c, culture-info.h : removed RegionLCIDMap.
6913         * culture-info-tables.h : regenerated.
6914
6915 2005-08-16  Martin Baulig  <martin@ximian.com>
6916
6917         * class.c (mono_type_get_name_recurse): Small fix.
6918
6919 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6920
6921         * locales.c : indentation fixie.
6922
6923 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6924
6925         * object-internals.h,
6926           locales.h,
6927           locales.c,
6928           culture-info.h,
6929           icall.c : added RegionInfo table support.
6930         * culture-info-table.h : regenerated for region support.
6931
6932 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6933
6934         * reflection.c (resolve_object): handle all kinds of MonoMethod
6935         including generic ones
6936
6937 2005-08-12  Ankit Jain <jankit@novell.com>
6938
6939         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6940           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6941
6942 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6943
6944         * process.c: Don't close a thread handle when it's NULL. This is a
6945         workaround for bug #75733.
6946
6947 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6948
6949         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6950
6951 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6952
6953         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6954
6955 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6956
6957         * threadpool.c: if a work item in the thread pool has a callback that
6958         catches a exception, don't propagate it after invoking the callback.
6959         Fixes bug #75336.
6960
6961 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6962
6963         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6964
6965         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6966
6967         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6968
6969         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6970
6971 2005-08-03  Ankit Jain  <jankit@novell.com>
6972
6973         Fix #75683.
6974         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6975           PInvoke calling convention is 0.
6976
6977 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6978
6979         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6980         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6981
6982 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6983
6984         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6985         to handle threads not started by the GC (patch by Michael Meeks
6986         <michael.meeks@novell.com>).
6987
6988 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6989
6990         * reflection.c: Make buffer used in emitting types larger for some
6991         big generic types (patch by Michal Moskal).
6992
6993 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6994
6995         * mono-debug.c: Fix some (not all) alignment problems.
6996
6997 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6998
6999         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
7000         Invoke mono_image_load_from_data_full passing the refonly
7001         parameter.
7002
7003         * assembly.c
7004         (mono_assembly_open_from_bundle): Add the refonly argument, 
7005         in order to pass it to other methods it calls to.
7006         (do_mono_assembly_open): Add the refonly argument, in order 
7007         to pass it to other methods it calls to.
7008         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
7009         the refonly parameter to it.
7010
7011         * image.c: Add loaded_images_refonly_hash and
7012         loaded_images_refonly_guid_hash to cache the reflection
7013         only loaded images.
7014         (mono_images_init): Initialize the hash tables used for
7015         caching the reflection only images.
7016         (load_modules): Invoke mono_image_open_full passing the refonly
7017         parameter to load the modules the correct way.
7018         (build_guid_table): Add the refonly argument, to re-build the 
7019         correct hash table.
7020         (do_mono_image_open): Added the refonly argument, in order to
7021         define it for the loaded image.
7022         (mono_image_loaded_full): New function, which receives an
7023         additional parameter to look for the image in the refonly or
7024         non-refonly section.
7025         (mono_image_loaded): Updated, using mono_image_loaded_full.
7026         (mono_image_loaded_by_guid_full): The same case that happens
7027         with mono_image_loaded_full.
7028         (mono_image_loaded_by_guid): Likewise.
7029         (register_image): Use the ref_only variable inside MonoImage
7030         to decide in which hash table store the current image.
7031         (mono_image_open_from_data_full): Rename
7032         mono_image_open_from_data to mono_image_open_from_data_full,
7033         adding the refonly argument, to define the ref_only variable 
7034         inside MonoImage.
7035         (mono_image_open_from_data): Return 
7036         mono_image_open_from_data_full.
7037         (mono_image_open_full): Rename mono_image_open to
7038         mono_image_open_full, receiving the new refonly argument,
7039         to pass it to inner methods.
7040         (mono_pe_file_open): Update this function, to open
7041         a MonoImage as a non-refonly image.
7042         (mono_image_close): Use the refonly variable inside
7043         MonoImage to remove the image from the correct caches.
7044
7045         * image.h: Add the signatures of mono_image_open_full,
7046         mono_image_open_from_data_full, mono_image_loaded_full,
7047         mono_image_loaded_by_guid_full.
7048
7049         * metadata-internals.h: Add the ref_only field to 
7050         MonoImage.
7051         
7052 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7053
7054         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
7055         Fix the last behavior, which used to load the assemblies and
7056         extract MonoReflectionAssemblyName information, instead of
7057         extract it from the metadata tables. Needed for Reflection
7058         Only assemblies.
7059         
7060 2005-07-29  Martin Baulig  <martin@ximian.com>
7061
7062         * mono-debug-debugger.c
7063         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
7064         not initialized.
7065
7066         * mono-debug.c
7067         (mono_debug_address_from_il_offset): Check whether we have
7068         debugging support before attempting to take the lock.
7069         (mono_debug_source_location_from_address): Likewise.
7070         (mono_debug_source_location_from_il_offset): Likewise.
7071         (mono_debug_il_offset_from_address): Likewise.
7072         (mono_debug_address_from_il_offset): Likewise.
7073
7074 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
7075
7076         * class.c (mono_class_from_name_case): Add support for dynamic images.
7077         Fixes #75650.
7078
7079         * object.c (mono_class_compute_gc_descriptor): Add a workaround
7080         for #75479.
7081
7082 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
7083         
7084         * reflection.c (mono_method_get_object): Fix warning.
7085
7086 2005-07-28  Martin Baulig  <martin@ximian.com>
7087
7088         * mono-debug.c
7089         (mono_debug_add_wrapper): Also write the wrapper type.
7090
7091 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
7092
7093         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
7094         
7095         * class.c (mono_class_init): Avoid reading nested classes if the AOT
7096         data indicates the class has none.
7097
7098 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
7099
7100         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
7101         loader lock with the debugger lock. Prevents deadlocks for beagle.
7102
7103         Beagle can now run on an smp box for a weekend without any
7104         issues. Woohoo!
7105
7106 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
7107
7108         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
7109         in a module. Fixes #75629.
7110
7111 2005-07-26  Martin Baulig  <martin@ximian.com>
7112
7113         * mono-debug.c (mono_debug_add_wrapper): New static method.
7114         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
7115         interncall or a wrapper.
7116
7117         * mono-debug.h (MonoDebugWrapperData): New public typedef.
7118         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
7119         (MONO_DEBUGGER_VERSION): Bump to 51.
7120
7121         * mono-debug-debugger.c
7122         (mono_debugger_add_type): Removed this empty function.
7123         (mono_debugger_add_method): Likewise.
7124
7125 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
7126
7127         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
7128         before accessing method->slot.
7129
7130 2005-07-21  Jb Evain  <jbevain@gmail.com>
7131
7132         * reflection.c (method_encode_clauses/class): Handle filters clauses.
7133         Fixes #75010.
7134
7135 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
7136
7137         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
7138         #75587.
7139
7140 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
7141
7142         * image.h image.c: Add mono_image_get_guid () API function.
7143
7144 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
7145
7146         There were issues when multiple threads tried to load
7147         assemblies. A deadlock was created between assemblies_mutex and
7148         mono_domain_assemblies_lock. This fixes the issue by making the
7149         assembly ref counting be lock free. See bug 75586.
7150         
7151         * image.c (mono_image_close): The add ref function here was using
7152         Interlocked operations while the unref was using a mutex and a
7153         --. I don't think this was ever a bug that would be exposed in a
7154         non-pendantic way (ie, by an embedder doing a ref on one thread
7155         and an unref on another), but for the sake of correctness, this is
7156         now Interlocked.
7157
7158         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
7159         (mono_assembly_load_reference): Call mono_assembly_addref rather
7160         than touching the refcount ourselves.
7161         (mono_assembly_close): Use InterlockedDecrement to unref the
7162         assembly. Don't acquire the lock unless it is actually needed.
7163
7164 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7165
7166         * class.c (mono_class_layout_fields): Fix calculation of has_references
7167         for generic types.
7168
7169 2005-07-12  Martin Baulig  <martin@ximian.com>
7170
7171         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7172
7173         * metadata.c
7174         (mono_type_hash): Provide better hashing for generic instances.
7175         (mono_generic_inst_hash): Improve hashing.
7176         (mono_generic_class_hash): Likewise.
7177
7178         * reflection.c (mymono_metadata_type_hash): Improve hashing for
7179         generic instances.
7180
7181 2005-07-12  Martin Baulig  <martin@ximian.com>
7182
7183         * reflection.c (mono_reflection_create_runtime_class): Remove the
7184         hack for generic type definitions and non-`Run' assemblies.
7185         (mono_reflection_bind_generic_parameters): Also use
7186         `klass->wastypebuilder' to check for TypeBuilders.
7187
7188 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7189
7190         * class.c (mono_class_layout_fields): Fix calculation of has_references
7191         for generic types.
7192
7193         * class.c (inflate_generic_class): Fix a leak.
7194         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
7195         for generic types.
7196
7197 2005-07-11  Martin Baulig  <martin@ximian.com>
7198
7199         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
7200         on error.
7201
7202 2005-07-11  Martin Baulig  <martin@ximian.com>
7203
7204         * loader.c (find_method): Also lookup in
7205         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
7206
7207 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7208
7209         * appdomain.c (mono_domain_unload): Don't free the error message
7210         before passing it to mono_get_exception_...
7211
7212         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
7213         
7214 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
7215
7216         * threads.c: try to better guess an available RT signal (bug #75387).
7217
7218 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7219
7220         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
7221         and CACHE_OBJECT.
7222
7223 2005-07-07  Martin Baulig  <martin@ximian.com>
7224
7225         * class.c (mono_type_get_name_full): Return NULL for
7226         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
7227         fixes #75408.
7228
7229 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7230
7231         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
7232         exit the appdomain as well being aborted.
7233
7234         * threadpool.c: Create all threadpool threads inside the root appdomain, and
7235         change back to the root domain after calling managed code. This enables
7236         appdomains using threadpools to be unloaded.
7237
7238 2005-07-07  Martin Baulig  <martin@ximian.com>
7239
7240         * class-internals.h
7241         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
7242         into `MonoDynamicGenericClass' since we only need it for dynamic
7243         types.
7244
7245         * reflection.c (mono_class_bind_generic_parameters): We don't need
7246         to compute the `parent' here.
7247
7248 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
7249
7250         * culture-info-table.h : regenerated.
7251
7252 2005-07-06  Martin Baulig  <martin@ximian.com>
7253
7254         * icall.c
7255         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
7256
7257         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
7258
7259 2005-07-06  Martin Baulig  <martin@ximian.com>
7260
7261         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
7262         we're doing a signature-only comparision; fixes #74945.
7263
7264 2005-07-06  Martin Baulig  <martin@ximian.com>
7265
7266         * class-internals.h (MonoGenericClass): Moved some things out into
7267         a new `MonoInflatedGenericClass' type.  
7268         (MonoInflatedGenericClass): New type; the `klass' of a
7269         `MonoGenericClass' is now computed lazyly in
7270         mono_get_inflated_generic_class().      
7271
7272         * class.c (mono_get_inflated_generic_class): New public function.
7273         (mono_class_inflate_generic_method): Removed the unused
7274         `MonoClass *' argument.
7275         (setup_generic_vtable): Don't call mono_get_inflated_method() on
7276         all the methods.
7277         (mono_class_create_generic): Make this static and merge it with
7278         mono_class_create_generic_2(); we're now called automatically from
7279         mono_get_inflated_generic_class().
7280
7281         * loader.c (mono_method_signature): Call
7282         mono_get_inflated_method() here.
7283
7284 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
7285
7286         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
7287         type of fields with RVA.
7288
7289         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
7290         for this pseudo class.
7291         (my_mono_class_from_generic_parameter): Likewise.
7292         (mono_class_init): Allow interfaces to have cctors.
7293
7294 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7295
7296         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
7297         lazily for AOT methods.
7298
7299 2005-07-05  Martin Baulig  <martin@ximian.com>
7300
7301         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
7302         returns FALSE for a successful match, not TRUE.
7303
7304 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7305
7306         * loader.c (mono_method_get_index): Optimize this a bit.
7307
7308 2005-07-04  Martin Baulig  <martin@ximian.com>
7309
7310         * class.c
7311         (class_compute_field_layout): Move the check for generic type
7312         definitions into mono_class_layout_fields().  Fixes #74684.
7313         (mono_class_from_generic_parameter): Correctly compute
7314         `klass->parent'; fixes #75457.
7315
7316         * reflection.c (register_assembly, register_module): Make sure
7317         `domain->rejobject_hash' is already created.
7318
7319 2005-07-02  Martin Baulig  <martin@ximian.com>
7320
7321         * class-internals.h
7322         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
7323         `MonoDynamicGenericClass'.      
7324
7325 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
7326
7327         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
7328         returned by a field getter is null, since null is a valid value.
7329
7330 2005-07-01  Martin Baulig  <martin@ximian.com>
7331
7332         * reflection.c (mono_reflection_generic_class_initialize): Update
7333         the `dgclass->fields [i].parent' to the correct class.
7334         (mono_image_get_fieldref_token): Use the declaring type, not the
7335         reflected type.
7336
7337 2005-07-01  Martin Baulig  <martin@ximian.com>
7338
7339         * loader.c (find_method): Also look in the interfaces; fixes #75429.
7340
7341 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
7342
7343         * threads.c (thread_cleanup): assert that thread != NULL
7344         (wait_for_tids_or_state_change): We were using the wrong variable
7345         when accessing wait->threads. `i' was always out of the bounds of
7346         the array.
7347
7348 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7349
7350         * loader.c: map user32 and kernel32 to libMonoSupportW
7351
7352 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
7353
7354         * appdomain.c (unload_thread_main): Mark this as WINAPI.
7355
7356 2005-06-28  Martin Baulig  <martin@ximian.com>
7357
7358         * loader.c (method_from_methodspec): Fix #75334.
7359
7360 2005-06-28  Martin Baulig  <martin@ximian.com>
7361
7362         Fix #74953 - Arrays now implement the generic IList<T> interface
7363         on the 2.0 platform.
7364
7365         * class-internals.h (MonoDefaults): Added `generic_array_class'.
7366
7367         * reflection.c (mono_class_bind_generic_parameters): New public
7368         function; similar to mono_reflection_bind_generic_parameters(),
7369         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
7370
7371         * domain.c (mono_init_internal): Try to initialize.
7372         `mono_defaults.generic_array_class' here; this'll only succeed if
7373         we're using the 2.0 corlib.
7374
7375         * icall.c
7376         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
7377         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
7378         (mono_lookup_internal_call): Added support for nested classes.
7379
7380         * loader.c
7381         (mono_get_method_from_token): Set `result->signature->pinvoke' if
7382         we're an interncall and have generic arguments.
7383
7384         * class.c
7385         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
7386         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
7387         instance of System.Array.InternalArray<T> for arrays, so they
7388         implement the generic IList<T> interface.
7389
7390 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
7391
7392         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
7393         (chastamar@yahoo.com). Fixes #75374.    
7394
7395 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
7396
7397         * culture-info-table.h: regenerated.
7398
7399 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7400
7401         * icall.c: handle spaces correctly for base64 strings.
7402
7403 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
7404
7405         * *.c: Kill some warnings.
7406
7407 2005-06-23  Duncan Mak  <duncan@novell.com>
7408
7409         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
7410         that this builds on Solaris 10 (x86).
7411
7412 2005-06-23  Martin Baulig  <martin@ximian.com>
7413
7414         * class.c
7415         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
7416         generic type definitions.
7417
7418 2005-06-23  Martin Baulig  <martin@ximian.com>
7419
7420         Fix #75331.
7421
7422         * metadata.c (mono_class_get_overrides): Renamed to
7423         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
7424         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
7425         pass it to mono_get_method_full().
7426
7427 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
7428
7429         * reflection.c (mono_reflection_create_runtime_class): take the
7430         mono_domain_lock in this method. Prevents deadlocks
7431
7432 2005-06-22  Martin Baulig  <martin@ximian.com>
7433
7434         * loader.c (method_from_methodspec): Fix #75330.
7435
7436 2005-06-22  Martin Baulig  <martin@ximian.com>
7437
7438         * reflection.c (type_get_qualified_name): Use
7439         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
7440         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
7441         argument; use it if we don't have an assembly name.
7442
7443 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
7444
7445         * object.c: In mono_message_init, set "copy out" flag for in
7446         parameters with the [Out] flag.
7447
7448 2005-06-21  Martin Baulig  <martin@ximian.com>
7449
7450         * class.c
7451         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
7452         and MONO_TYPE_PTR.
7453
7454 2005-06-21  Martin Baulig  <martin@ximian.com>
7455
7456         * class.c (mono_class_init): Don't initialize `class->fields' for
7457         generic instances since they're initialized again in
7458         compute_field_layout(). 
7459         (compute_field_layout): Set the field's `generic_info' here; fix
7460         #75320. 
7461
7462 2005-06-21  Martin Baulig  <martin@ximian.com>
7463
7464         * class-internals.h
7465         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7466
7467         * metadata.c (mono_metadata_generic_method_equal): Also
7468         distinguish the `generic_class'; fixes #75334.
7469
7470 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7471
7472         * domain.c:
7473         * appdomain.c:
7474         * domain-internals.h:
7475         * reflection.c: 'domain_assemblies' field is now protected by its own
7476         lock. Don't call into managed code to run the AssemblyLoad event if we
7477         now there are no registered delegates for it.
7478
7479 2005-06-20  Martin Baulig  <martin@ximian.com>
7480
7481         * class.c (mono_class_is_assignable_from): Use a custom version of
7482         mono_class_has_parent() to make things work for generic instances;
7483         fix #75300.
7484
7485 2005-06-20  Martin Baulig  <martin@ximian.com>
7486
7487         * loader.c (method_from_methodspec): Apply a patch from
7488         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7489
7490 2005-06-20  Martin Baulig  <martin@ximian.com>
7491
7492         * class.c (mono_class_init): Reverted Zoltan's last change; it
7493         breaks generics.
7494
7495 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7496
7497         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7498
7499 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7500
7501         * socket-io.c: fix the index in the socket array for writable/error
7502         sockets. Fixes bug #75306.
7503
7504 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7505
7506         * class.c (mono_class_init): Allow interfaces to have static ctors.
7507
7508 2005-06-17  Martin Baulig  <martin@ximian.com>
7509
7510         * loader.c (method_from_methodspec): Use `context->container' when
7511         parsing the `gmethod->inst'.
7512
7513 2005-06-17  Martin Baulig  <martin@ximian.com>
7514
7515         * class.c (mono_type_get_name_recurse): Don't add the assembly
7516         name for type arguments.
7517
7518 2005-06-15  Martin Baulig  <martin@ximian.com>
7519
7520         * reflection.c (mono_image_get_inflated_method_token): Encode
7521         correct klass; fixes #75260.
7522
7523 2005-06-13 Michal Moskal <malekith@nemerle.org>
7524
7525         * icall.c: Make GetCorrespondingMethod/Constructor take
7526         MonoReflectionMethod method not MonoMethod. Removed
7527         MonoType.GetCorrespondingField, and make
7528         MonoGenericType.GetCorrespondingField take name not
7529         MonoClassField.
7530
7531 2005-06-13  Michal Moskal <malekith@nemerle.org>
7532
7533         * reflection.c (field_encode_signature, encode_locals):
7534          Make sizes of buffers for types larger (for big generic types).
7535          (create_generic_typespec,
7536          mono_reflection_sighelper_get_signature_local,
7537          mono_reflection_sighelper_get_signature_field):
7538          Add asserts for too small buffers.
7539
7540 2005-06-15  Martin Baulig  <martin@ximian.com>
7541
7542         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7543         if our parent is not a dynamic type.
7544
7545 2005-06-15  Martin Baulig  <martin@ximian.com>
7546
7547         * class-internals.h (MonoTypeNameFormat): New enum.
7548
7549         * class.c
7550         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7551         (mono_type_get_full_name): Removed.
7552         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7553         argument instead of the boolean's.
7554
7555         * icall.c (ves_icall_System_MonoType_getFullName):
7556         Added `gboolean assembly_qualified'.    
7557
7558         * reflection.h
7559         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7560
7561         * reflection.c (mono_reflection_parse_type): Parse the new type
7562         name format.
7563
7564 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7565
7566         * icall.c: no need to convert from utf16 to utf8 and then back again
7567         after the call to GetLogicalDrives.
7568
7569 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7570
7571         * icall.c: frombase64. Fix problems exposed by new tests.
7572
7573 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7574
7575         * icall.c: added internal calls for converting char [] and strings in
7576         base64 into byte [].
7577
7578 2005-06-10  Martin Baulig  <martin@ximian.com>
7579
7580         * class.c (mono_class_create_generic_2): Read the nested classes
7581         from the metadata rather than from `gklass->nested_classes' since
7582         `gklass' might not be initialized yet.
7583
7584 2005-06-09  Duncan Mak  <duncan@novell.com>
7585
7586         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7587         all public headers. Fixes #74919.
7588
7589 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7590
7591         * domain.c: The key for proxy_vtable_hash is now a pointer
7592         array. Added new GHashFunc and GCompareFunc functions for this.
7593
7594         * class.h: The list of interfaces in MonoRemoteClass is known in
7595         advance and can't grow (we create a new MonoRemoteClass if needed),
7596         so now the interface array can be allocated together with
7597         MonoRemoteClass.
7598         
7599         * object.c: Added a new method create_remote_class_key.
7600         Fixed mono_remote_class so it does not depend on
7601         mono_upgrade_remote_class.
7602         Removed extend_interface_array.
7603         Added new method clone_remote_class(), which makes a copy of a remote
7604         class and adds a new interface or class to it.
7605         mono_upgrade_remote_class() now creates a new remote class (or gets
7606         it from the cache) if an vtable upgrade is needed. In this way
7607         we make sure that other objects sharing the same remote class
7608         don't get the new vtable with unwanted interfaces.
7609         
7610         * object-internals.h:
7611         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7612         
7613         * marshal.c: Track changes in mono_upgrade_remote_class().
7614
7615 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7616         * icall.c: Add runtime methods for obtaining members of inflated
7617         class, which were created from supplied non-inflated members. It
7618         is used in internal Get{Method,Constructor,Field} methods in
7619         System.Type
7620
7621 2005-06-09  Martin Baulig  <martin@ximian.com>
7622
7623         * reflection.c
7624         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7625
7626 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7627         * reflection.c (mono_image_basic_init): Define
7628         Version in MonoDynamicAssembly. 
7629         
7630 2005-06-08  Martin Baulig  <martin@ximian.com>
7631
7632         Fix #75136.
7633
7634         * loader.c
7635         (mono_method_signature_full): New public method; takes a
7636         `MonoGenericContext *'.
7637         (find_method): Use mono_method_signature_full() and pass the
7638         klass'es context to it.
7639
7640         * class.c (mono_class_is_inflated_method): Use
7641         mono_method_signature_full() and pass the context to it.
7642
7643 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7644
7645         * object.c: add proper locking in mono_remote_class_vtable(),
7646         fixes possible memory corruption.
7647
7648 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7649
7650         * marshal.c (mono_remoting_marshal_init): set
7651         initialized after initialization.
7652
7653 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7654
7655         * locales.c : hush.
7656
7657 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7658
7659         * object.c (extend_interface_array): fix really silly
7660         memory corrupting / comparison bug.
7661
7662 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7663
7664         * reflection.c: Functions added to support the creation
7665         of CustomAttributeData, which includes Attribute data
7666         used by ReflectionOnly methods.
7667
7668         * reflection.h:  mono_reflection_get_custom_attrs_data and
7669          mono_custom_attrs_data_construct added (functions exposed).
7670
7671          * icall.c: Added mono_reflection_get_custom_attrs_data
7672          as icall.
7673         
7674 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7675
7676         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7677         lupus's request.
7678
7679 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7680
7681         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7682
7683         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7684         dynamic DllImportAttribute.
7685
7686         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7687         dynamic DllImportAttribute.
7688
7689         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7690         Fixes #75162.
7691
7692 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7693
7694         * threads.c: avoid segfault when an unstarted thread is aborted.
7695
7696 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7697
7698         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7699         Returns the name and version of the runtime for reporting.
7700
7701 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7702
7703         * appdomain.c: bump corlib version.
7704         * object-internals.h: new field in MonoReflectionAssembly.
7705
7706 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7707
7708         * object-internals.h: Carlos forgot to add this field.
7709
7710 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7711
7712         * icall.c: Added create_version to create instances
7713         of Version of MonoReflectionAssemblyName. This change helps
7714         the AssemblyName tests to keep running fine.
7715         
7716 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7717   
7718         * object.c (mono_method_return_message_restore): A somehow less
7719         intrusive fix for #75138.
7720
7721 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7722
7723         * object.c (mono_method_return_message_restore): Fix computation
7724         of expected number of out args.
7725
7726 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7727
7728         * reflection.c (mono_image_get_method_info): Fix the case when the
7729         charset is empty.
7730
7731 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7732
7733         * object.c: Added missing null check in
7734           mono_method_return_message_restore.
7735
7736 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7737
7738         * reflection.c (mono_image_get_method_info): Handle the case when
7739         dllentry is empty.
7740
7741 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7742
7743         * object.c: When creating the vtable for a proxy, take into account
7744         all inherited interfaces, not only the ones registered in
7745         iclass->interfaces. This fixs bug #74996.
7746         Also, in mono_method_return_message_restore, verify that the array
7747         of out args has the expected lengh.
7748
7749 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7750
7751         * socket-io.c: update the timeout in Poll when the call is interrupte.
7752
7753 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7754
7755         * socket-io.c: support abort/suspend in Select_internal after last
7756         change.
7757
7758 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7759
7760         * threadpool.c: remove warning.
7761
7762 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7763
7764         * icall.c:
7765         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7766         removing the 1024 limit from select(). Runtime part of the fix for
7767         bug #71203.
7768
7769 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7770
7771         * socket-io.c: when resolving the addresses for the same
7772         host returned by gethostname(), get the local IPs from the interface
7773         list. Loopback addresses are discarded if the are interfaces up with
7774         non-loopback ones. Fixes bug #63265.
7775
7776 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7777
7778         * appdomain.c, verify.c, object-internals.h, reflection.c:
7779         bumped corlib number to 36, and added new extra_flags field
7780         to ReflectionMethodBuilder and friends.  Fixes #75060.
7781
7782 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7783
7784         * gc.c: register a new weak link only if the object is non-null
7785         (fixes bug#75047).
7786
7787 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7788
7789         * culture-info.h : short time pattern too.
7790
7791 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7792
7793         * culture-info.h : expand long time pattern string length.
7794
7795 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7796
7797         * culture-info-table.h : update (more French date format; #72788).
7798
7799 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7800
7801         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7802         the method is static. Fixes #75029.
7803
7804 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7805
7806         * reflection.c: Update the table_idx field of method builders after
7807         saving the module, since it can change. This is a workaround for
7808         bug #74914. 
7809
7810 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7811
7812         * culture-info-table.h : update (additional French date format).
7813
7814 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7815
7816         * icall.c (ves_icall_type_Equals): Revert last change.
7817         
7818         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7819
7820         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7821
7822 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7823
7824         * class-internals.h: Added executioncontext_class field to 
7825         MonoDefaults structure.
7826         * domain.c: Cache System.Threading.ExecutionContext class in 
7827         mono_defaults.
7828         * object.c: Capture the ExecutionContext for asynchroneous calls in
7829          mono_async_result_new.
7830         * object-internals.h: Added execution_context and original_context 
7831         fields to MonoAsyncResult. Added execution_context to MonoThread.
7832         * security-manager.c|.h: Added mono_get_context_capture_method to 
7833         return the capture method (if required by the security manager or by
7834         the framework version used).
7835         * threadpool.c: Apply capture (if present) ExecutionContext in 
7836         mono_async_invoke and revert to original context after it completes.
7837
7838 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7839
7840         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7841
7842 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7843
7844         * culture-info-table.h : zh-CHT related workaround.
7845
7846 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7847
7848         * marshal.c (emit_marshal_custom): Add some error checking and call the
7849         methods in the ICustomMarshaler interface. Fixes #74875.
7850         
7851         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7852         native->managed wrappers.
7853
7854 2005-05-12  Martin Baulig  <martin@ximian.com>
7855
7856         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7857         here and use the loader lock.
7858
7859         * mono-debug.c: Properly lock when the debugger is not attached.
7860         (mono_debug_init): Release the initial lock if we're not running
7861         in the debugger.
7862
7863 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7864
7865         * marshal.c (emit_marshal_custom): Pass through NULL values without
7866         calling the custom marshalling routines.
7867
7868         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7869         conversion in structures. Fixes #74882.
7870
7871 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7872
7873         * culture-info-table.h : zh-* cultures were missing.
7874
7875 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7876
7877         * threads.c: Added a new event background_change_event which is signaled
7878         when a thread changes its background mode.
7879         Moved here several checks previously done in managed code. The checks
7880         require the thread lock, and using the thread lock in managed code
7881         can result in deadlocks.
7882         Merged Start_internal and Thread_internal into a single method. Now 
7883         Thread_internal does all work of creating and starting a thread.
7884         Added icalls for setting and getting the state of the object. Moved from
7885         managed code to avoid locking there.
7886         Added wait_for_tids_or_state_change() which is called instad of
7887         wait_for_tids when waiting for non-backround threads to end. This method
7888         will return if one of the threads ends or the background_change_event
7889         is signaled.
7890         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7891         the background mode. This method signals the background_change_event
7892         event.
7893         * icall.c:
7894         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7895         removed Start_internal.
7896         
7897 2005-05-11  Martin Baulig  <martin@ximian.com>
7898
7899         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7900         to order of some fields to get proper alignment on 64-bit machines.
7901
7902 2005-05-11  Martin Baulig  <martin@ximian.com>
7903
7904         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7905         changes as they're broken and completely fuck up the debugger.
7906
7907         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7908
7909 2005-05-10  Martin Baulig  <martin@ximian.com>
7910
7911         * reflection.c (mono_reflection_generic_class_initialize): Don't
7912         call mono_class_setup_parent() here.
7913
7914 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7915
7916         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7917         send/receive timeout use an integer in milliseconds. We were using a
7918         struct timeval.
7919
7920 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7921
7922         * locales.c:
7923         (internal_get_cultures): reserve the first slot of the array for the
7924         InvariantCulture, which will be filled in managed code.
7925
7926 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7927
7928         * reflection.c (mono_image_fill_module_table): Initialize the
7929         GENERATION field as well.
7930
7931 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7932
7933         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7934         Monitor.Enter on the object.
7935
7936 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7937
7938         * threads.c: Enable the wait for running threads when exiting.
7939         * icall.c: Suspend all threads before exiting.
7940
7941 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7942
7943         * assembly.c (mono_assembly_load_reference): Fix warning.
7944
7945 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7946
7947         * threadpool.c: changed the default number of threads per cpu. From now
7948         on, the default will be 20 + (5 * number of cpus) instead of 50.
7949
7950 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7951
7952         * loader.c (mono_method_get_signature_full): Add locking here.
7953
7954 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7955
7956         * appdomain.c: Moved methods for parsing and freeing assembly
7957         names to assembly.c.
7958         * assembly.c, domain-internals.h: Created public methods for parsing
7959         assembly names. Fixed mono_assembly_load_with_partial_name:
7960         it now finds the best match, taking into account the version,
7961         token and culture specified in the partial name. Also return
7962         the latest version if no version information is specified.
7963
7964 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7965
7966         * threadpool.c: replace check for SocketAsyncCall class.
7967
7968 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7969
7970         * threadpool-internals.h:
7971         * Makefile.am: added threadpool-internals.h
7972
7973         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7974         that happen in threadpool threads (tested on MS).
7975         (mono_thread_pool_remove_socket): new function that dispatch any pending
7976         AIO call on a socket that is closing. By now only epoll really needs it,
7977         as select/poll wake up when the socket closes.
7978
7979
7980         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7981
7982 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7983
7984         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7985
7986 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7987
7988         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7989
7990 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7991
7992         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7993         has an abort request, convert it into a suspend request.
7994
7995 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7996
7997         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7998         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7999         is not supported yet.
8000
8001 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8002
8003         * image.c: register assemblies loaded from data (bundles) in the loaded
8004         assemblies hash. Fixes bug #74772.
8005
8006 2005-04-29  Martin Baulig  <martin@ximian.com>
8007
8008         * class.c (mono_type_get_name_recurse): Update to the new naming
8009         schema from the latest .NET 2.x beta2.
8010         (mono_class_setup_vtable_general): If we're a generic instance,
8011         copy the vtable from our generic type definition and inflate all
8012         the methods in it.
8013
8014         * loader.c (find_method): Update to the new naming schema from the
8015         latest .NET 2.x beta2.
8016
8017 2005-04-29  Raja R Harinath  <harinath@gmail.com>
8018
8019         * class.c (mono_class_init): Add a mono_loader_unlock to the
8020         #74734 fix.
8021
8022 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
8023
8024         * icall.c (ves_icall_System_Environment_Exit): Remove the 
8025         suspend_all_other_threads () call for the time being, since it can hang.
8026
8027         * threads.c (mono_thread_manage): Similarly, disable the waiting for
8028         the background threads to exit, since it can also hang.
8029
8030         * class.c (mono_class_init): Applied patch from Ankit Jain 
8031         (radical@gmail.com). Avoid pending init errors when a field refers
8032         to a nested class using a typeref. Fixes #74734.
8033
8034         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
8035         this for dynamic modules.
8036
8037 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8038
8039         * threads.c: don't wait for threads that are in the process of aborting
8040         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
8041         and waiting for background threads to finish. This makes xsp and
8042         mod-mono-server exit without random length delays and/or hangs.
8043
8044 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8045
8046         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
8047
8048 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
8049
8050         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
8051         dynamic types to prevent infinite loops. Fixes #74727.
8052
8053         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
8054         ..._is_assignable_to.
8055
8056 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
8057
8058         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
8059
8060 2005-04-25  Martin Baulig  <martin@ximian.com>
8061
8062         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
8063
8064         * domain.c
8065         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
8066
8067         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
8068
8069         * reflection.c (build_compressed_metadata): Set metadata header
8070         version to 2.0.
8071
8072 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
8073
8074         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
8075         number into an integral and a decimal part. Fixes #70473.
8076
8077         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
8078
8079 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
8080
8081         * culture-info-table.h : reflected the latest locale-builder output.
8082
8083 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8084
8085         * threadpool.c: check for SuspendRequested too when deciding if
8086         mono_thread_interruption_checkpoint should be called.
8087
8088 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8089
8090         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
8091         * threads.c: remove interruption_mutex and use Interlocked instead. When
8092         suspending all the threads, wait for all the suspended events at once.
8093         If we're shutting down and get an APC that is going to be queued,
8094         call mono_thread_execute_interruption immediately, as the thread might
8095         be sleeping on a pthread condition or mutex.
8096
8097         * icall.c: call mono_runtime_set_shutting_down before suspending the
8098         threads.
8099
8100         Fixes bug #74693. And now xsp is happier when exiting.
8101
8102 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
8103
8104         * loader.c (mono_stack_walk): Fix #74690.
8105
8106 2005-04-22  Martin Baulig  <martin@ximian.com>
8107
8108         * mono-debug.h (MonoDebugMethodJitInfo): Added
8109         `MonoDebugMethodJitInfo *jit'.
8110
8111         * mono-debug.c (mono_debug_read_method): Cache the
8112         MonoDebugMethodJitInfo in `address->jit'.
8113         (mono_debug_free_method_jit_info): New public method.
8114
8115 2005-04-22  Martin Baulig  <martin@ximian.com>
8116
8117         * class.c (mono_class_is_assignable_from): Disallow
8118         type parameter -> interface.
8119
8120 2005-04-21  Dick Porter  <dick@ximian.com>
8121
8122         * threads.c (mono_thread_create): Turn an assertion into an error.
8123
8124 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
8125
8126         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
8127         
8128         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
8129         Fix some gcc 4.0 warnings.
8130
8131 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
8132
8133         * file-io.c: fix alt dir separator char on unix systems
8134         and cleanup (fixes bug #71214).
8135
8136 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
8137
8138         * marshal.c: Use CALLVIRT instead of CALL when dispatching
8139         a call to a remote domain, since the method may be an
8140         interface method in the client domain. This fixes bug #74192.
8141
8142 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8143
8144         * threadpool.c: recv/send are now performed before going back to managed
8145         code to save one transition.
8146
8147 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8148
8149         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
8150
8151         * metadata/threadpool.c: removed hack to workaround the bug above.
8152
8153         Fixes bug #74618.
8154
8155 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
8156
8157         * reflection.c reflection.h: Fix handling of parameter defaults in
8158         dynamic methods. Also fixes handling of parameter attributes.
8159         Fixes #74609.
8160
8161         * mono-debug.c (mono_debug_close_image): Fix warning.
8162
8163 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8164
8165         * socket-io.h: replaced old unused field with new 'blocking'.
8166         * threadpool.c: restore socket blocking state on windows(tm).
8167
8168 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
8169
8170         * icall.c: don't return the codebase in the AssemblyName[] returned by
8171         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
8172         * object-internals.h: Removed FIXME (fields were presents) and fixed
8173         versioncompat declaration.
8174
8175 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8176
8177         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
8178         not closed, so don't cleanup when it happens.
8179
8180 2005-04-13  Chris Toshok  <toshok@ximian.com>
8181
8182         * mono-debug-debugger.h: change prototype for
8183         mono_debugger_lookup_type.
8184
8185         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
8186         this function, although it should probably be named
8187         mono_debugger_init_type.
8188
8189 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8190
8191         * threadpool.c: fix non-AIO case.
8192
8193 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
8194
8195         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
8196         the built-in profiler to measure just JIT compilation times.
8197
8198 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8199
8200         * threadpool.c: the epollfd might be closed by another thread at
8201         any time, so ignore EBADF at treat it as a "we're closing" sign.
8202
8203 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8204
8205         * threadpool.c: release the semaphores with a count equals to the number
8206         of working threads in both IO and regular pools. Fixed typo that messed
8207         up the count of IO pool threads. Don't initialize the pipe handles if
8208         we're using epoll.
8209
8210 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8211
8212         * threadpool.c: some systems don't like a NULL when deleting the socket
8213         from epoll.
8214
8215 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8216
8217         * threadpool.c: fix semaphore allocation.
8218
8219 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8220
8221         * threadpool.c: added epoll() based implementation for asynchronous IO
8222         that is used instead of the default poll() when available.
8223         It can be disabled by setting MONO_DISABLE_AIO.
8224
8225 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8226
8227         * threadpool.c: windows needs 'closesocket' and instead of returning
8228         0 when the stream is closed while in select, it returns -1. Fixes bug
8229         #74573.
8230
8231 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
8232
8233         * class.c (class_compute_field_layout): Fix the regression caused by
8234         the previous try.
8235
8236 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8237
8238         * threadpool.c: separate pool for socket async. IO.
8239         * threadpool.h: mono_max_worker_threads is not a global any more.
8240
8241 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
8242
8243         * class.c (class_compute_field_layout): Fix #74549.
8244
8245 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8246
8247         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
8248         use 2 connected sockets instead.
8249
8250 2005-04-08  Miguel de Icaza  <miguel@novell.com>
8251
8252         * mono-config.c: Add new entry point for mkbundle
8253         mono_config_parse_memory. 
8254
8255 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8256
8257         * threadpool.c: removed another unused function.
8258
8259 2005-04-08  Ankit Jain  <radical@corewars.org>
8260
8261         * reflection.c (get_default_param_value_blobs): Add 'types'
8262         parameter to get the types encoded in the constant table.
8263         (mono_param_get_objects): Use the type from the constant table,
8264         not the type of the parameter, when creating default values.
8265         Handle null default values correctly.
8266
8267 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8268
8269         * file-io.c:
8270         * file-io.h:
8271         * threadpool.c:
8272         * threadpool.h:
8273         * icall.c:
8274         * socket-io.c: removed dead code for async IO.
8275
8276 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8277
8278         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
8279
8280         * threadpool.c: intercept socket async. calls and pass them to a thread
8281         that is polling and dispatching the job items to the threadpool as
8282         socket become ready. Fixes bugs #71217, #71933.
8283
8284         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
8285         between char and short/ushort arrays.
8286
8287         * socket-io.c: remove dead code.
8288
8289 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8290
8291         * locales.c,
8292           icall.c : removed InternalToUpper_Comp() and
8293           InternalToLower_Comp().
8294
8295 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8296
8297         * char-conversions.h : The tables were incorrectly generated. Should
8298           be generated against invariant culture.
8299
8300 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
8301
8302         * object.c (mono_runtime_invoke_array): Fix return value when 
8303         passing pre-created valuetype objects to ctors.
8304
8305         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
8306         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
8307         Fixes #74338.
8308
8309 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
8310
8311         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
8312         only used with --security and hides the wrong corlib version error.
8313
8314 2005-03-30  Joshua Tauberer  <tauberer@for.net>
8315
8316         * class.c: Changed mono_class_name_from_token so that types
8317         outside of a namespace don't have an initial period.  Improved
8318         the g_warning message used in _mono_class_get when loading
8319         fails.
8320         * assembly.c: In mono_assembly_load_reference, when an assembly
8321         can't be found, "No such file or directory" is misleading and
8322         unhelpful because a few paths were checked for the presence of
8323         the assembly.  When that happens (ENOENT), display a nicer
8324         message indicating the directories that were searched.  In all
8325         cases, the warning is made easier to read for non-hackers.
8326
8327 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
8328
8329         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
8330         project/solution.
8331         * appdomain.h|domain.c: Removed inline from functions.
8332         * appdomain.c: Reduced warnings when compiling on windows.
8333         * icall.c: Fixed output_debug declaration to gunichar2*.
8334         * mono-config.c: Reduced warnings when compiling on windows.
8335         * rand.c: Added missing "windows.h". Added missing return value.
8336         * rawbuffer.c: Added missing winsock2.h for windows.
8337         * sysmath.h: Added mono-compiler.h header to allow/ease 
8338         compilation with non-GCC compilers.
8339         * threads.c: Fixed declarations to compile with VS.NET C compiler.
8340         Removed cast warnings.
8341
8342         Adapted from the work of J Lothian (for VC6).
8343
8344 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
8345
8346         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
8347         from default_path.
8348
8349 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
8350
8351         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
8352         the 2.0 profile.
8353
8354 2005-03-27  Raja R Harinath  <harinath@gmail.com>
8355
8356         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
8357         has to be in $(exec_prefix).  $(prefix) is for arch-independent
8358         stuff, and it would probably use $(prefix)/share rather than
8359         $(prefix)/lib.
8360
8361 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8362
8363         * console-io.c: added 2 includes that might be missing.
8364
8365 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
8366
8367         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
8368         profile.
8369
8370         * reflection.c (create_custom_attr): Allocate the params array using
8371         alloca so it gets GC tracking.
8372
8373 2005-03-23  Chris Toshok  <toshok@ximian.com>
8374
8375         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
8376         out some spew.
8377
8378 2005-03-24  Raja R Harinath  <rharinath@novell.com>
8379
8380         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
8381         changes to pick up any changes in prefix, etc.
8382
8383 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8384
8385         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
8386         
8387         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
8388         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
8389
8390 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8391
8392         * class-internals.h object-internals.h class.c reflection.c: Extend the
8393         mono_lookup_dynamic_token () function to return the class of the
8394         token as well. 
8395
8396         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
8397         well. Fixes #73848.
8398
8399 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
8400
8401         * security-manager.c: Skip inheritance checks for intra-corlib
8402         class inheritance and method overrides. This skips a lot of checks
8403         and (anyway) permissions cannot work until corlib is loaded.
8404
8405 2005-03-23  Martin Baulig  <martin@ximian.com>
8406
8407         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
8408         MONO_TYPE_GENERICINST.  
8409
8410 2005-03-23  Martin Baulig  <martin@ximian.com>
8411
8412         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
8413
8414 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8415
8416         * class.c: added locking comments to some functions.
8417         Cache the interface offsets arrays (saves about 20 KB
8418         of runtime memory in a typical app).
8419         Reduce the time overhead in mono_class_setup_supertypes ().
8420
8421 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
8422
8423         * icall.c: speedup and fix leaks in GetMethodsByName and
8424         GetPropertiesByName.
8425
8426 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8427
8428         * reflection.c: some locking fixes.
8429
8430 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8431
8432         * metadata.c: added missing break in case statement.
8433
8434 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
8435
8436         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8437         typedbyref return values. Fixes #73941.
8438
8439 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
8440
8441         * security-manager.c|h: Added demandunmanaged method and 
8442         suppressunmanagedcodesecurity class to MonoSecurityManager.
8443         Renamed aptc class to allowpartiallytrustedcallers.
8444
8445 2005-03-17  Martin Baulig  <martin@ximian.com>
8446
8447         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
8448
8449 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8450
8451         * file-io.c: disabled file async. IO using aio_*. It uses the
8452         threadpool now. Workaround for bug #73718.
8453
8454 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8455
8456         * assembly.h, mono-config.c: added code to deal with bundled configs
8457         for bundled assemblies.
8458
8459 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
8460
8461         * *.c, private.h: cleanup, removing old private.h header file.
8462
8463 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
8464
8465         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8466         and throw_on_unmappable_char attributes.
8467
8468 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8469
8470         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8471         _ProcessName_internal.
8472
8473 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8474
8475         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8476         #73631.
8477
8478         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8479         are no longer used.
8480
8481 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8482
8483         * object.c (compute_class_bitmap): Add support for generics. Fixes
8484         #73527.
8485
8486 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8487
8488         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8489
8490 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8491
8492         * filewatcher.c: commented out the code for windows watcher, as we don't
8493         use it (we use the managed implementation instead).
8494
8495 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8496
8497         * object-internals.h (MonoThread): Remove 'unused1' field.
8498
8499         * appdomain.c: Bump corlib version.
8500
8501         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8502
8503         * reflection.c (mono_reflection_create_runtime_class): Remove the
8504         AssemblyBuilder.Save optimization since it causes too many problems.
8505
8506 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8507
8508         * exception.c|h: Added mono_get_exception_reflection_type_load to
8509         create a ReflectionTypeLoadException object.
8510         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8511         to return NULL is a InheritanceDemand fails during reflection. Updated
8512         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8513         ReflectionTypeLoadException if an InheritanceDemand fails during 
8514         reflection. Added icall mapping for GetLinkDemandSecurity.
8515         * security-manager.c|h: Added ves_icall_System_Security_
8516         SecurityManager_GetLinkDemandSecurity internal call to return the
8517         class and methods permissions set for a LinkDemand. Removed unused
8518         fields in MonoSecurityManager.
8519
8520 2005-03-10  Martin Baulig  <martin@ximian.com>
8521
8522         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8523         it's a generic instance.
8524
8525 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8526
8527         * reflection.c (mono_get_object_from_blob): Applied patch from
8528         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8529
8530         * class.c (mono_class_is_assignable_from): Another try at fixing 
8531         #73469 without breaking anything.
8532
8533 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8534
8535         * class.c: (mono_class_is_assignable_from): Revert the last changes
8536         since they don't work with generics.
8537         
8538         * class.c (mono_class_is_assignable_from): Fix build bustage.
8539
8540         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8541         the managed IsAssignableFrom method. Fixes #73469.
8542
8543         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8544         function.
8545
8546 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8547
8548         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8549         memory when the remoting callback does not sets the out arguments.
8550         Fixes #73007.
8551
8552         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8553         by mistake.
8554
8555         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8556
8557         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8558
8559         * appdomain.c: Bump corlib version.
8560
8561 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8562
8563         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8564         function.
8565
8566         * threads.c (mono_thread_attach): Detect threads which are not started
8567         by the GC pthread wrappers.
8568
8569 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8570
8571         * icall.c: Added new icall for RNG.
8572         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8573         single handle on Linux to access /dev/urandom and fix #73183.
8574
8575 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8576
8577         * object.c: setting the new vtable in a transparent proxy object must
8578         not change the GC descriptor.
8579
8580 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8581
8582         * object.c: fixed compilation without GCJ support.
8583         * reflection.c: for runtime-created types ensure klass->has_references
8584         is correct (bug #73215).
8585
8586 2005-03-02  Martin Baulig  <martin@ximian.com>
8587
8588         * class.c (mono_class_is_assignable_from): Make this work if
8589         `oklass' is a generic instance; fixes #72831.
8590
8591 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8592
8593         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8594         with hasthis set.
8595         
8596         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8597
8598         * marshal.c: Reorganize native->managed marshalling code to also use
8599         the emit_marshal_... functions.
8600
8601 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8602
8603         * object.c: typed allocs have issues with bitmap sizes > 30,
8604         so check for max_set >= 30.
8605
8606 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8607
8608         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8609         managed code. Fixes #73012.
8610
8611         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8612
8613         * metadata.c reflection.c: Load/Emit elem_mult as well.
8614         
8615         * metadata.h (MonoMarshalSpec): Add comment.
8616
8617         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8618
8619         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8620         num_elem to -1 if not given.
8621
8622         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8623
8624         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8625         given values.
8626
8627 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8628
8629         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8630
8631 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8632
8633         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8634
8635         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8636
8637 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8638
8639         * object.c: generalized the reference bitmap creation
8640         and added hooks for the new GC.
8641         * class-internals.c: removed the gc_bitmap field from MonoClass.
8642
8643 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8644
8645         * domain.c: help the compiler to produce better code
8646         in mono_jit_info_table_find ().
8647
8648 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8649
8650         * object.c: make all allocations look typed.
8651
8652 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8653
8654         * socket-io.c: load Mono.Posix if it's not loaded already
8655         (fixes bug#73033).
8656
8657 2005-02-24  Martin Baulig  <martin@ximian.com>
8658
8659         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8660         * reflection.c (dup_type): Likewise.
8661
8662 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8663
8664         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8665         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8666
8667 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8668
8669         * domain.c, threads.c, object-internals.h: make the critical thread
8670         local vars use the fast access mode (even when we're compiled in
8671         a lib). Provide accessors to be used by the jit during codegen.
8672
8673 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8674
8675         * appdomain.c: Changed hook functios behavior to include
8676         support for the reflection only assemblies. Some icalls were changed
8677         to support the mentioned assemblies too. Signatures of static methods
8678         try_assembly_resolve and real_load now have an additional parameter:
8679         refonly.
8680
8681         * assembly.c: General changes to mono_assembly_ methods to support
8682         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8683         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8684         suffix, to support an additional gbool parameter to specify whether
8685         the assembli is reflection only or not. Created some new hook functions 
8686         to add support for reflection only assemblies. Signatures of static 
8687         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8688         have now an additional parameter: refonly.
8689
8690         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8691         indicating whether the assembly is reflection only or not.
8692
8693         * exception.c: Add mono_get_exception_invalid_operation.
8694
8695         * icall.c: Throw an InvalidOperationException when trying to invoke
8696         a property/method/event, or trying to set/get the value of a field.
8697         Also add an icall to retrieve the ref_only flag to the
8698         MonoReflectionAssembly.
8699
8700 2005-02-23  Chris Toshok  <toshok@ximian.com>
8701
8702         Part of fix for #72827.
8703         * mono-debug.c (mono_debug_add_method): add lexical block data to
8704         the info we write.  Kind of a hack at the moment - we copy the
8705         lexical block info from the MonoDebugMethodInfo to the
8706         MonoDebugMethodJitInfo here, before writing it.
8707         (mono_debug_read_method): read the lexical block info.
8708
8709         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8710
8711         * debug-mono-symfile.h: add lexical block support.
8712
8713         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8714         support.
8715
8716 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8717
8718         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8719
8720         * object.c (mono_runtime_free_method): Call mono_free_method () and
8721         put the TODOs there.
8722
8723         * loader.c (mono_free_method): Free up most memory allocated for 
8724         dynamic methods.
8725
8726 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8727
8728         * reflection.c: properly flag a Type argument to a
8729         named custom attr value (bug #72248).
8730
8731 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8732
8733         * reflection.c: reduce code duplication in named custom
8734         attribute encoding.
8735
8736 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8737
8738         * reflection.c: properly encode custom attrs of type object
8739         (bug #72649).
8740
8741 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8742
8743         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8744
8745 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8746
8747         * socket-io.c: load System.dll if it's not loaded already
8748         (bug #72850 and #70477).
8749
8750 2005-02-21  Martin Baulig  <martin@ximian.com>
8751
8752         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8753         generic instances.
8754
8755 2005-02-21  Martin Baulig  <martin@ximian.com>
8756
8757         * reflection.c (mono_image_build_metadata): We also need to
8758         "fixup" the MethodImpl table after we computed the final method
8759         indices.  Call fixup_methodimpl() to do that.
8760         (fixup_methodimpl): New private method.
8761
8762 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8763
8764         * assembly.c: special case mscorlib.dll (bug#72536),
8765         patch from Carlos Alberto Cortez.
8766
8767 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8768
8769         * threads-types.h threads.c: Fix build bustage.
8770
8771         * threads.c: Use a union for long<->double conversions.
8772
8773         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8774         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8775
8776         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8777         containing the checkpoint call with NOT_TAKEN.
8778         
8779         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8780         checkpoint before pushing the arguments, so they won't have to be
8781         spilled to stack.
8782
8783 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8784
8785         * domain.c, assembly.c, domain-internals.h: make some data
8786         const and relocation-free.
8787
8788 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8789
8790         * object.c, appdomain.c, class-internals.h: introduce the
8791         MonoClassRuntimeInfo structure to hold the info needed to
8792         use a class at runtime. Made mono_class_vtable() lock-free
8793         for all the appdomains.
8794
8795 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8796
8797         * metadata-internals.h, image.c: introduce a per-image mempool to
8798         be used for memory that has the same lifetime as the image.
8799
8800 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8801
8802         * domain.c: In mono_init_internal(), instead of selecting the first
8803         runtime version supported by an executable, get a list of all
8804         supported versions and select the one for which an mscorlib exists
8805         (since even if the runtime supports a given version, it doesn't mean
8806         that the framework for that version is installed).
8807         Modified get_runtimes_from_exe to support this behavior.
8808         In supported_runtimes, added information about additional system
8809         assembly versions.
8810         
8811         * assembly.c: Added support for more than one system assembly version
8812         per runtime version. Updated the assembly list.
8813         In mono_assembly_remap_version, removed the initial version check,
8814         since we don't know to which version we need to compare until we
8815         get the version set on which the assembly is based.
8816         Moved the code for loading corlib into the new method
8817         mono_assembly_load_corlib(), so it can be used by the initialization
8818         code.
8819         
8820         * domain-internals.h: Updated data structures and added declaration
8821         for mono_assembly_load_corlib.
8822
8823 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8824
8825         * reflection.c (resolve_object): Fix the creation of the signature in 
8826         the SignatureHelper case.
8827
8828         * assembly.c (mono_assembly_remap_version): Fix binary search.
8829         
8830 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8831  
8832         * class.c: Added inheritance check when a method is overloaded (from a
8833         virtual method or when implementing an interface) and when a class is
8834         inherited. Added functions to set a failure for a class and to 
8835         retreive the exception from a failure.
8836         * class-internals.h: Added fields to MonoClass to keep the exception
8837         information status for inheritance (or other exceptions) to be thrown
8838         later (i.e. not at load time).
8839         * object.c: Throw the inheritance SecurityException when a type is to 
8840         be created with either class or method inheritance violations.
8841         * reflection.c|h: Fix when getting declsec from a class. Removed 
8842         unrequired code for class. Improved sanity in parameter naming.
8843         * security-manager.c|h: Added functions to check for class and method
8844         inheritance.
8845
8846 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8847
8848         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8849         and has_finalize in dynamic types as well.
8850
8851 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8852
8853         * culture-info-table.h : fixed currency format for en-GB (and so on).
8854
8855 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8856
8857         * gc.c: ensure the GC handles never have 0 as a value.
8858
8859 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8860
8861         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8862         a pointer to a struct to unmanaged code. Fixes #72625.
8863
8864 2005-02-16  Martin Baulig  <martin@ximian.com>
8865
8866         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8867
8868 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8869
8870         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8871
8872 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8873
8874         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8875
8876         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8877         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8878         etc. Fixes #71471.
8879
8880         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8881
8882         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8883
8884 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8885
8886         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8887         changes to make the current context a field in MonoThread.
8888
8889 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8890
8891         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8892         the last change.
8893         
8894         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8895         extracted from mono_marshal_get_native_wrapper.
8896
8897         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8898         to create wrappers around native functions.
8899
8900         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8901         delegates for arbitrary function pointers. Fixes #71472.
8902
8903 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8904
8905         * threads.c: cleaned up the code a little.
8906
8907 2005-02-15  Martin Baulig  <martin@ximian.com>
8908
8909         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8910         the data table.
8911
8912         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8913         allocate larger chunks if needed.
8914
8915 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8916
8917         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8918         in by mistake.
8919
8920 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8921
8922         * domain.c: keep the domains in an array and ensure the domain ids
8923         are kept small, so they can be used as indexes to domain-specific data
8924         with a small memory overhead.
8925
8926 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8927
8928         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8929
8930 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8931
8932         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8933
8934 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8935
8936         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8937
8938         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8939         values.
8940
8941         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8942         
8943 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8944
8945         * domain-internals.h: add the hashtable here.
8946
8947         * class-internals.h: Remove `info' from MonoMethod
8948
8949         * domain.c: Add a new hashtable, jit_trampoline_hash
8950
8951 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8952
8953         * object.c: don't set the value of static fields
8954         (fixes bug#72494).
8955
8956 2005-02-11  Martin Baulig  <martin@ximian.com>
8957
8958         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8959         (mono_debug_add_method): Silently ignore the method if it's too big.
8960         (mono_debug_add_type): Likewise.
8961
8962 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8963
8964         * threads.c, appdomain.c: remove #ifdefs from the code.
8965
8966 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8967
8968         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8969         common security informations. This allows us to stay in unmanaged code
8970         when doing LinkDemand and it's special cases (except for the first 
8971         time for initialization). The flags a very much used with --security.
8972         * reflection.c|h: Added code to get declarative security attributes 
8973         for LinkDemand and InheritanceDemand. This required to refactor the
8974         existing code for Demand.
8975         * security-manager.c|h: Added new method fields for the special cases
8976         of LinkDemand.
8977
8978 2005-02-10  Martin Baulig  <martin@ximian.com>
8979
8980         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8981         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8982
8983 2005-02-10  Martin Baulig  <martin@ximian.com>
8984
8985         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8986         debugging code; this is almost a complete rewrite.
8987
8988         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8989
8990 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8991
8992         * domain.c, object.h: expose mono_string_equal () and 
8993         mono_string_hash ().
8994         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8995         it's implemented in managed code.
8996
8997 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8998
8999         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
9000         lo leak objects between appdomains.
9001
9002 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9003
9004         * assembly.c: old compilers compilation fix from 
9005         robertj@gmx.net (Robert Jordan).
9006
9007 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
9008
9009         * class-internals.h: Little reminder for the future.
9010
9011         * debug-helpers.c: Fix up wrapper_type_names
9012
9013 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9014
9015         * image.c, metadata-internals.h: when loading an image from a file,
9016         mmap all of it and use the same codepaths as when using a
9017         in-memory image: the code is simpler and we use less memory
9018         (both writable and readonly).
9019
9020 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
9021
9022         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
9023         API to alloc runtime data structures that need to be tracked by the
9024         GC and contain pointers.
9025         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
9026         make the code more readable and eventually use a different GC.
9027
9028 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
9029
9030         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
9031         for out arguments.
9032         
9033 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
9034
9035         * object.c: In release_type_locks(), don't release the cctor lock
9036         if it has already been released. This fixes a crash in the
9037         thread5 test.
9038
9039 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
9040
9041         * gc.c, marshal.c, icall.c: register a delegate for finalization
9042         only when the native function pointer has been allocated for it.
9043
9044 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9045
9046         * object.c: cleaned up some code, allocate objects that are
9047         pointer free with the atomic malloc variant. Allocate memory
9048         for static data from the mempool if it's pointer-free.
9049         Allocate the bounds array at the end of the array data, when needed.
9050         * object-internals.h, object.h: move a private function in a private
9051         header.
9052         * class.c: handle missing case in tracking references in fields.
9053
9054 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
9055
9056         * class.c, class-internals.h: keep track if a type has
9057         reference fields in either the instance or static fields.
9058
9059 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
9060
9061         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
9062         and renamed to MonoRuntimeInfo. Added fields to store the expected
9063         framework assembly version. Changed mono_get_framework_version and
9064         mono_get_runtime_version for a single mono_get_runtime_info method.
9065         
9066         * assembly.c: Added method to remap system assembly versions to the
9067         current executing runtime version. Removed old mapping code.
9068         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
9069         
9070         * icall.c, reflection.c: Track api changes.
9071
9072 2005-02-06  Miguel de Icaza  <miguel@novell.com>
9073
9074         * loader.c (method_from_memberref): Improve error reporting,
9075         produce the class name instead of the typeref/typedef index. 
9076
9077 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
9078
9079         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
9080
9081 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9082
9083         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
9084         stdcall and charset name mangling.  Reorganize the code and add
9085         some tracing stuff.
9086
9087 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
9088
9089         * monodiet.c: More iters!
9090
9091         * marshal.c: Iter usage.
9092
9093         * icall.c: Iter usage.
9094
9095         * object.c: Use iters.
9096
9097         * debug-helpers.c: More iters
9098
9099 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9100
9101         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
9102         under win32.
9103
9104 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
9105
9106         * mono-debug-debugger.c: use iters
9107
9108         * class.c, class-internals.h: mono_class_setup_events is static
9109         now
9110
9111         * All callers: use iters
9112
9113 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
9114
9115         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
9116         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
9117
9118 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
9119
9120         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
9121
9122         * marshal.h: Add prototypes for ldfld/stfld_remote.
9123
9124         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
9125         this is called during startup.
9126         
9127 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
9128
9129         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
9130         MonoThreadsSync struct private in monitor.c. Changed the way
9131         MonoThreadsSync is allocated so it's faster and there is no
9132         need to keep track of it with a finalizer and it uses less memory.
9133         This also finally allows us to allocate mono objects as ptrfree when
9134         there are no reference fields.
9135
9136 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
9137
9138         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
9139         disappearing link to the GC interface and use them to simplify
9140         the gchandles code.
9141
9142 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
9143
9144         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
9145         stfld_remote which call mono_load/store_field_new. This allows methods
9146         calling ldfld/stfld wrappers to be AOTed.
9147
9148         * console-io.c: Include sys/filio.h under solaris.
9149         
9150         * console-io.c: Include curses.h if needed correctly.
9151
9152 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9153         
9154         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
9155         method->klass as well.
9156
9157         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
9158
9159         * class.c (mono_class_init): Switch on lazy initialization of 
9160         methods.
9161
9162         * class.c (mono_class_get_finalizer): Handle the case when the 
9163         finalizer is inherited.
9164
9165 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9166
9167         * console-io.c: <curses.h> is needed by term.h on solaris.
9168
9169 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
9170
9171         * icall.c, class-internals.h, monodiet.c, class.c: Remove
9172         mono_class_setup_properties where possible. Remove this ftn from
9173         the header file, and make it static.
9174
9175 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9176
9177         * loader.c: Add missing setup_... call.
9178
9179         * class.c: Add missing setup_... calls.
9180
9181         * class.c (mono_class_init): Switch on lazy initialization of 
9182         the generic vtable.
9183         
9184         * class.c (mono_class_init): Fix generics broken by the recent changes.
9185
9186         * monodiet.c (handle_type): Add missing setup_... calls.
9187
9188         * class.c: Back out garbage in previous patch.
9189         
9190         * class.c: Add missing setup_... calls.
9191
9192         * class.c (mono_class_get_method_from_name_flags): Avoid calling
9193         mono_class_setup_methods () if possible.
9194
9195         * class-internals.h (MonoClass): Add 'has_cctor' flag.
9196
9197         * class-internals.h (MonoCachedClassInfo): New structure.
9198
9199         * class.c: Initialize properties and events fields of MonoClass lazily.
9200
9201         * class.c: Add infrastructure for lazily initializing the methods and
9202         vtable fields of MonoClass. Not yet used.
9203
9204         * class.c (mono_class_get_finalizer): New helper function.
9205
9206         * class.c: Add infrastructure for loading some class related data from
9207         an AOT file.
9208
9209         * object.c: Add infrastructure for initializing the vtable from data
9210         in the AOT file.
9211
9212         * gc.c (run_finalize): Use mono_class_get_finalizer ().
9213
9214         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
9215         appropriate initialization function before accessing parts of the
9216         MonoClass structure.
9217
9218         * marshal.c: Fix warnings.
9219         
9220         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
9221
9222         * mono-debug-debugger.c (get_exception_message): Use 
9223         mono_class_get_method_from_name_flags ().
9224
9225 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
9226
9227         * reflection.c, appdomain.c: Replace a few manual searches that
9228         Zoltan missed. (Paolo approved this part of my initial patch).
9229
9230 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
9231
9232         * profiler.c: disable recording statistical events at report time.
9233
9234 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9235
9236         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
9237         to byteswap arrays of enum values, too (bug #72080).
9238
9239 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
9240
9241         * appdomain.c (set_domain_search_path): Allow this to be called if
9242         domain->setup is not yet set.
9243
9244         * loader.c (mono_method_get_index): New helper function.
9245
9246         * loader.c reflection.c: Use mono_method_get_index ().
9247
9248         * class.c (mono_class_get_method_from_name_flags): New helper method.
9249
9250         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
9251         this.
9252
9253         * class.c (mono_class_get_cctor): New helper method.
9254
9255         * string-icalls.c object.c class.c marshal.c reflection.c: Use
9256         mono_class_get_method () to look up methods.
9257
9258 2005-02-01  Miguel de Icaza  <miguel@novell.com>
9259
9260         * console-io.c: Fix the build, this should work on Windows.
9261
9262 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
9263
9264         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
9265         be set to null to keep things valid
9266
9267 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9268
9269         * icall.c: added Console 2.0 icalls.
9270         * Makefile.am: added console-io.[ch]
9271         * console-io.[ch]: internal calls for Console 2.0 API.
9272
9273 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9274
9275         * class.c: make sure we consider all the interfaces
9276         when calculating max_interface_id (bug found by
9277         Jeroen Frijters running ikvm).
9278
9279 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
9280
9281         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
9282         valuetype fields to null.
9283
9284         * object.c (set_value): Ditto. Fixes #71669.    
9285
9286 2005-01-31  Martin Baulig  <martin@ximian.com>
9287
9288         * metadata.c (mono_metadata_has_generic_params): New public
9289         function; checks whether something is a generic method.
9290
9291 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
9292
9293         * appdomain.c: fix infinite recursion when adding assemblies.
9294
9295 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
9296
9297         * object.c: Fix small typo to return all items for Environment.
9298         GetCommandLineArgs.
9299
9300 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
9301
9302         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
9303         reflection.c: more domain and assembly-unload related fixes
9304         and memory leaks plugs.
9305
9306 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
9307
9308         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
9309
9310 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
9311
9312         * loader.c (mono_method_signature): Make this method lazy
9313         (mono_get_method_from_token): Don't computate the signature here.
9314
9315         Doing this saves quite a bit of memory. I got 90 kb on starting up
9316         monodoc. It should also save some disk reads on startup.
9317
9318         * *: MonoMethod->signature might be NULL now. You *MUST* use
9319         mono_method_signature.
9320
9321 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
9322
9323         * object.c (mono_runtime_get_main_args): Return an array from the
9324         current domain here. Fixes #71938.
9325
9326 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
9327
9328         * monitor.c: formatting changes to comply with the
9329         mono coding style and remove #ifdefs from the code.
9330
9331 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9332
9333         * metadata.c, private.h: remove some unneeded data
9334         and use a more compact representation for table schemas.
9335
9336 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
9337
9338         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
9339         to get a better distribution in hash tables.
9340         * *.c: use mono_aligned_addr_hash() where appropriate.
9341         * assembly.c: make var static.
9342
9343 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
9344
9345         * domain-internals.h: Put MonoJitInfo on a diet.
9346
9347         * domain.c: Fix a warning.
9348
9349 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9350
9351         * gc.c: rework the gc handles code to reuse handles
9352         when freed.
9353
9354 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
9355
9356         * domain.c: fixed long standing bug in mono_string_equal() which
9357         was brought to light with the ldstr changes.
9358
9359 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
9360
9361         * reflection.c: Remove warning by adding missing include for marshal.h
9362
9363 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9364
9365         * domain.c, object.c: change the ldstr_table to hold
9366         MonoString* as keys: makes the runtime isinterned lookup
9367         faster and simplifies memory management.
9368
9369 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9370  
9371         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
9372         possible to add imperative security checks before calling the icall.
9373         * reflection.c: Return security attributes on the original MonoMethod
9374         (and not the wrapped one). This fix permissions on icalls.
9375
9376 2005-01-25  Dick Porter  <dick@ximian.com>
9377
9378         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
9379         the check for mktime() support actually test the mktime() return
9380         value.  "Fixes" bug 71682, though the output is still different to
9381         MS.
9382
9383 2005-01-25  Martin Baulig  <martin@ximian.com>
9384
9385         * class.c (mono_class_is_assignable_from): Make this work for
9386         generic instances.
9387
9388 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
9389
9390         * marshal.c (mono_string_utf8_to_builder)
9391         (mono_string_builder_to_utf16): We might not have ownership of the
9392         string. In thise case, we need to create a new buffer.
9393
9394         * object-internals.h (mono_stringbuilder_capacity): sb->str might
9395         be null, in which case, use the default capacity.
9396
9397 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9398
9399         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
9400         GC events to the profiler.
9401
9402 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9403
9404         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
9405         if you don't want the GC to run.
9406
9407 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
9408
9409         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
9410         start providing a GC API and keeping different implementations in
9411         their own file.
9412         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
9413
9414 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
9415
9416         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
9417         mmap rather than allocating a huge buffer.
9418         (mono_debug_close_mono_symbol_file): Free the buffer allocated
9419         above.
9420
9421 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9422
9423         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
9424         and CheckExecutionRights.
9425         * reflection.c|h: Keep the index of the declarative security to be 
9426         used, instead of the pointer, when AOT compiler is used. Also add 
9427         class initialization when requesting demands.
9428         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
9429         CheckExecutionRights. Both properties are now FALSE by default, and
9430         unmodifiable, unless the --security option is used.
9431
9432 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9433
9434         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
9435         reflection.c: properly refcount images and assemblies, many leaks fixed.
9436
9437 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9438
9439         * threadpool.c: increase the timeout for threads in the thread pool to
9440         10s.  Fixes bug #67159.
9441
9442 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
9443
9444         * class-internals.h: Sun's compiler insists on explicit
9445         signed on bit fields to handle then correctly.
9446
9447 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
9448
9449         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
9450         Make the size of the array fit only the number of invalid path
9451         chars that we have.
9452
9453         * class.c (_mono_class_get): Improve the error reporting when a
9454         class referenced is not found, to assist debugging. 
9455
9456 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
9457
9458         * threads.c: fix off-by-one error.
9459         * domain.c: free data allocated in the domain.
9460
9461 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9462
9463         * reflection.c (mono_method_body_get_object): Fill out exception info
9464         as well.
9465
9466         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9467         structure.
9468         
9469 2005-01-19  Martin Baulig  <martin@ximian.com>
9470
9471         * loader.c (mono_get_method_constrained): Make this work again.
9472
9473 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9474
9475         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9476         guint16 to match the managed side.
9477
9478         * reflection.c (mono_reflection_body_get_object): Fill out local
9479         variables array.
9480
9481         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9482         as well.
9483
9484         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9485         'local_var_sig_token'.
9486
9487 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9488
9489         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9490         System.Drawing.
9491
9492         * reflection.c (mono_method_body_get_object): Handle abstract and
9493         runtime methods.
9494
9495 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9496
9497         * marshal.c, loader.c, class-internals.h, reflection.c:
9498         store the emthod data for a wrapper in an array instead of a list.
9499
9500 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9501
9502         * marshal.c: change the code to allocate memory more
9503         conservatively for method wrappers.
9504
9505 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9506
9507         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9508         fields from MonoClass to the marshal info structure where they belong.
9509
9510 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9511
9512         * class.c, object.c, class-internals.h, marshal.c: rearrange
9513         some fields and tweak some types to lower memory usage.
9514
9515 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9516
9517         * threads.c (signal_thread_state_change): Handle the case when the
9518         target thread is the current thread.
9519
9520         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9521
9522         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9523         emit_ptr_to_object_conv. 
9524
9525         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9526         marshalling. Fixes #71352.
9527
9528 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9529
9530         * metadata.h, blob.h: move table enum to blob.h so it can be included
9531         in any header.
9532         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9533         cut the size of MonoImage/MonoDynamicImage.
9534
9535 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9536
9537         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9538
9539 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9540
9541         * reflection.c, reflection.h, icall.c: add a function to check
9542         if an attribute type is defined for a metadata object.
9543
9544 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9545
9546         * object-internals.h: Added some needed fields from StringBuilder class.
9547         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9548
9549 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9550
9551         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9552         threads before shutting down the runtime.
9553
9554         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9555
9556 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9557
9558         * object-internal.h, threads.c: implement stacksize and 
9559         parameterized thread start functionality (requires
9560         matching corlib). Marked broken code for later removal.
9561
9562 2005-01-12  Martin Baulig  <martin@ximian.com>
9563
9564         * class-internals.h (MonoGenericClass): Moved the `initialized'
9565         flag to MonoDynamicGenericClass, removed `init_pending'.
9566         (MonoGenericInst): Added `is_reference' flag.
9567
9568 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9569
9570         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9571         inside the MSDOS header. Fixes #71201.
9572
9573         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9574         gc thread.
9575         (mono_domain_finalize): Ditto.
9576
9577 2005-01-12  Martin Baulig  <martin@ximian.com>
9578
9579         * class.c (mono_get_shared_generic_class): Use the cache for
9580         non-dynamic generic classes.
9581
9582         * class-internals.h (mono_class_create_generic_2): Removed
9583         function prototype, this function is now static inside class.c.
9584
9585         * class.c (mono_class_create_generic_2): Made this static, only
9586         call it from mono_class_init() and mono_class_setup_parent().
9587         (collect_implemented_interfaces_aux): Call mono_class_init() on
9588         the interfaces we collect.
9589         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9590
9591 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9592
9593         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9594         it a real thread handle.
9595
9596         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9597         MonoJitExceptionInfo, since each catch clause needs its own variable.
9598         
9599 2005-01-11  Dick Porter  <dick@ximian.com>
9600
9601         * image.c (mono_pe_file_open): New variant on mono_image_open()
9602         that does not set up the CLI metadata; used for FileVersionInfo so
9603         it can get the data for windows binaries too.
9604         
9605         * process.c (process_read_string_block): Don't read off the end of
9606         the StringTable block.
9607
9608         These both fix bug 70766.
9609
9610 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9611
9612         * gc.c: set some fields to NULL at GC cleanup time.
9613         * threads.c: if we quit the main thread, call exit ().
9614
9615 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9616
9617         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9618
9619 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9620
9621         * threads.h, threads.c, object.c: added accessor and settor for
9622         main_thread. Handle it specially when exiting from it: wait
9623         for other foreground threads to exit.
9624
9625 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9626
9627         * process.c, verify.c: remove some bloat.
9628
9629 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9630
9631         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9632         the calling convention to cdecl under win32.
9633
9634 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9635
9636         * object.c (mono_object_get_size): New function to get the size of
9637         an object instance.
9638
9639         * profiler.c (simple_allocation): Use above.
9640
9641 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9642
9643         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9644         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9645         get an appdomain by it's id and we can't assume the root's id is 0).
9646         * domain-internals.h: Change the function prototype to match.
9647         * icall.c: Change the icall table for AppDomain.
9648
9649 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9650
9651         * locales.c (string_invariant_compare_char): Only compute
9652         GUnicodeTypes in the case where we need them.  Test for ordinality
9653         first and return if so.
9654
9655         From the commit:
9656
9657                 /*
9658                  * FIXME: here we must use the information from c1type and c2type
9659                  * to find out the proper collation, even on the InvariantCulture, the
9660                  * sorting is not done by computing the unicode values, but their
9661                  * actual sort order.
9662                  */
9663
9664 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9665
9666         * loader.c: for P/Invoke methods, allow the "Internal" shared
9667         library name to refer to the calling process symbol namespace.
9668
9669 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9670
9671         * Makefile.am: Add the security manager to the build.
9672         * security-manager.c|h: New. Initialization of the security manager.
9673
9674 2005-01-07  Dick Porter  <dick@ximian.com>
9675
9676         * threads.c: 
9677         * monitor.c: Update thread state during Monitor and WaitHandle
9678         waits.  Fixes bug 71031.
9679
9680 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9681
9682         * reflection.c (property_encode_signature): Correctly handle when the
9683         property has no methods.
9684
9685 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9686
9687         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9688         
9689         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9690         fields from mb, not rmb. Fixes #71017.
9691
9692         * marshal.c (emit_ptr_to_str_conv): Add support for 
9693         ByValTStr -> string conversion. Fixes #71015.
9694
9695         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9696
9697         * mempool.c (mono_mempool_contains_addr): New helper function.
9698
9699 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9700
9701         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9702         HasSematics encoded fields.
9703         
9704         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9705         invalid string marshalling.
9706
9707         * metadata.c: Fix warnings.
9708         
9709 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9710
9711         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9712         profiler support.
9713
9714 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9715
9716         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9717         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9718         tests.
9719
9720 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9721
9722         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9723         so methods containing these can be AOTed.
9724
9725 2005-01-03  Martin Baulig  <martin@ximian.com>
9726
9727         * loader.c (find_method): Removed the hack for generic instances.
9728         (method_from_memberref): If our parent is a generic instance, pass
9729         its generic type definition to find_method() and then inflate the
9730         method.
9731         (mono_get_method_constrained): Pass the generic type definition to
9732         find_method() and inflate the method later.
9733
9734         * class-internals.h (MonoStats): Added `generic_class_count'.
9735
9736         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9737         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9738
9739         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9740         generic type definitions.
9741
9742 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9743
9744         * loader.c icall.c: Fix warnings.
9745
9746 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9747
9748         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9749         blittable types. Fixes #70864.
9750
9751 2004-12-29  Martin Baulig  <martin@ximian.com>
9752
9753         * icall.c
9754         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9755
9756         * reflection.c (mono_method_get_object): Create a
9757         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9758         call mono_get_inflated_method().
9759
9760         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9761
9762 2004-12-27  Martin Baulig  <martin@ximian.com>
9763
9764         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9765         (MonoMethodInflated): Added `inflated' field.
9766
9767         * class.c (mono_class_inflate_generic_method): Don't really
9768         inflate the method here; just set the `is_inflated' flag in the
9769         MonoMethod.
9770         (mono_class_get_inflated_method): Actually inflate the method here
9771         if it's not already inflated; we use the MonoMethodInflated's new
9772         `inflated' field as a cache.
9773
9774 2004-12-26  Martin Baulig  <martin@ximian.com>
9775
9776         * class.c
9777         (inflate_generic_class): Moved some code out of inflate_generic_type().
9778         (mono_class_inflate_generic_method): If we're already inflated,
9779         inflate the context and use the declaring method; ie. make sure
9780         the declaring method of an inflated method is always the generic
9781         method definition.
9782         (mono_class_create_from_typedef): Create
9783         `class->generic_container->context->gclass'.
9784
9785 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9786
9787         * metadata-internals.h, marshal.c, reflection.c: More
9788         MonoGHashTable->GHashTable.
9789
9790         * domain-internals.h, class.c: Change MonoGHashTable's into
9791         GHashTables for some cases where no gc stuff is used
9792
9793         All users: update apis
9794
9795 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9796
9797         * metadata.c (builtin_types): Make this `const'. Makes this get
9798         put into the shareable section.
9799         (mono_metadata_init): Casts to make gcc happy.
9800
9801 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9802
9803         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9804
9805 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9806
9807         * icall.c: Added an internal call to retrieve the position and length
9808         of assembly-level declarative security attributes (RequestMinimum, 
9809         RequestOptional and RequestRefuse). This is used by the Assembly class
9810         to re-create the corresponding permission sets.
9811
9812 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9813
9814         * marshal.c: fix the stelemref wrapper to be type correct
9815         (and faster).
9816
9817 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9818
9819         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9820         to do key & 0x7fffffff. Hashtable already does this. It just
9821         results in longer code.
9822
9823 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9824
9825         * appdomain.c: Bump corlib version.
9826         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9827         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9828         * reflection.c|h: Add functions to get declarative security infos
9829         (blob position and length) for assemblies, classes and methods.
9830
9831 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9832
9833         * reflection.c: sort the constant table (bug #70693).
9834
9835 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9836
9837         * object-internals.h, threads.c, domain.c: add accessors for
9838         the MonoThread and MonoDomain tls keys.
9839
9840 2004-12-18  Martin Baulig  <martin@ximian.com>
9841
9842         * class.c (inflate_generic_type): If we're inflating a generic
9843         instance, set `ngclass->context->container = context->container';
9844         ie. the container we inflated into.
9845
9846         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9847         inflate_generic_type() changes.
9848
9849 2004-12-17  Martin Baulig  <martin@ximian.com>
9850
9851         * class-internals.h
9852         (MonoGenericClass): Replaced `MonoType *generic_type' with
9853         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9854         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9855         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9856
9857 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9858
9859         * exception.c (mono_exception_from_token): New helper function.
9860
9861 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9862
9863         * assembly.c (mono_assembly_load_with_partial_name): Call 
9864         mono_assembly_loaded before invoking the preload hooks. Fixes
9865         #70564.
9866
9867         * object-internals.h (MonoThread): Change culture_info and 
9868         ui_culture_info into an array.
9869
9870         * threads.c: Cache culture info objects from more than one appdomain.
9871
9872         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9873         current UI culture.
9874
9875 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9876
9877         * threads.h threads.c appdomain.c: Clear the culture_info field of
9878         all threads during unloading if they point to an object in the dying
9879         appdomain.
9880
9881 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9882
9883         * culture-info.h (TextInfoEntry): New struct
9884         * object-internals.h: sync with managed
9885         * locales.c: fill the `text_info_data' field
9886         * culture-info-tables.h: update
9887
9888 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9889
9890         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9891         collector.
9892
9893 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9894
9895         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9896         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9897
9898 2004-12-12  Martin Baulig  <martin@ximian.com>
9899
9900         * mono-debug-debugger.c (write_type): If we're an enum and the
9901         builtin types have already been initialized, call mono_class_init().
9902
9903 2004-12-11  Martin Baulig  <martin@ximian.com>
9904
9905         * metadata.c (mono_metadata_load_generic_params): Added
9906         `MonoGenericContainer *parent_container' argument; automatically
9907         compute `container->is_method'; pass the correct owner to
9908         get_constraints().      
9909
9910         * reflection.c (compare_genericparam): Sort the GenericParam table
9911         according to increasing owners. 
9912
9913 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9914
9915         * profiler.c: allow disabling the default profiler.
9916
9917 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9918
9919         * decimal.c, icall.c: allow disabling System.Decimal support.
9920
9921 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9922
9923         * reflection.c: Add support for null attribute arguments.
9924
9925 2004-12-09  Martin Baulig  <martin@ximian.com>
9926
9927         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9928         names to get rid of compiler warnings.
9929
9930 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9931
9932         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9933         mono_marshal_load_type_info (). Fixes #69625.
9934         (mono_marshal_get_ptr_to_struct): Likewise.
9935
9936 2004-12-08  Martin Baulig  <martin@ximian.com>
9937
9938         * mono-debug.h: Bumped version number to 47.
9939
9940         * mono-debug-debugger.c
9941         (mono_debugger_event_handler, mono_debugger_event): Take two
9942         guint64 arguments insteed of a gpointer and a guint32.  
9943
9944 2004-12-08  Martin Baulig  <martin@ximian.com>
9945
9946         * debug-mono-symfile.h
9947         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9948         `address' to `native_offset'.
9949
9950 2004-12-08  Martin Baulig  <martin@ximian.com>
9951
9952         * class.c (mono_class_create_from_typespec): Only inflate if we
9953         either have `context->gclass' or `context->gmethod'.
9954
9955 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9956
9957         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9958
9959         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9960
9961         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9962
9963         * reflection.c (mono_assembly_get_object): Remove the workaround put
9964         in for the release.
9965         
9966         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9967
9968         * appdomain.c: Bump corlib version.
9969
9970         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9971         be visible in other appdomains.
9972
9973 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9974
9975         * threads.c: Interlocked inc and dec for longs were messed up,
9976         use a KISS based impl for this. Fixes 70234
9977
9978 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9979
9980         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9981
9982 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9983
9984         * icall.c: fix to follow policy not to allow struct
9985         arguments in icalls.
9986
9987 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9988
9989         * process.c: make the patch that handles spaces in file paths work
9990         on mono/windows too.
9991
9992 2004-12-06  Martin Baulig  <martin@ximian.com>
9993
9994         * class.c (mono_class_create_generic): Call
9995         mono_class_setup_supertypes() if we're dynamic.
9996         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9997
9998 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9999
10000         * object-internals.h: Add new fields to MonoThread.
10001
10002         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10003
10004         * icall.c threads-types.h threads.c: Add new icalls.
10005
10006         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
10007
10008         * object-internals.h (MonoReflectionAssembly): Sync object layout with
10009         managed side.
10010
10011         * appdomain.c: Bump corlib version.
10012
10013         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
10014         internal assemblies. Fixes #69181.
10015
10016 2004-12-05  Martin Baulig  <martin@ximian.com>
10017
10018         * class.c (mono_class_inflate_generic_signature): Make this a
10019         no-op if `context' is NULL or we don't have any type parameters;
10020         also copy `sentinelpos'.        
10021
10022 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
10023
10024         * image.c: Add unbox_wrapper_cache.
10025
10026         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
10027
10028         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
10029         function generator.
10030         
10031         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
10032         Fixes #70173.
10033
10034         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
10035         
10036 2004-12-04  Martin Baulig  <martin@ximian.com>
10037
10038         * loader.c (mono_method_get_signature_full): New public function;
10039         like mono_method_get_signature(), but with an additional
10040         `MonoGenericContext *' argument.
10041
10042         * class.c (mono_class_inflate_generic_signature): Formerly known
10043         as inflate_generic_signature(); make this public.
10044
10045 2004-12-04  Martin Baulig  <martin@ximian.com>
10046
10047         * metadata.c
10048         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
10049         instead of a `MonoGenericContainer *'.  
10050         (mono_metadata_parse_array_full): Likewise.
10051         (mono_metadata_parse_signature_full): Likewise.
10052         (mono_metadata_parse_method_signature_full): Likewise.
10053         (mono_metadata_parse_generic_inst): Likewise.
10054         (mono_metadata_parse_generic_param): Likewise.
10055         (mono_metadata_parse_mh_full): Likewise.
10056         (mono_type_create_from_typespec_full): Likewise.
10057
10058 2004-12-03  Martin Baulig  <martin@ximian.com>
10059
10060         * class-internals.h (MonoGenericContainer): Replaced the
10061         `MonoGenericContext * pointer with a `MonoGenericContext'
10062         structure and made it the first element.
10063
10064 2004-12-03  Martin Baulig  <martin@ximian.com>
10065
10066         * class.c
10067         (inflate_generic_type): Set the `context->container' when creating
10068         a new MonoGenericContext.
10069         (mono_class_inflate_generic_method): Likewise.
10070         (mono_class_create_from_typespec): Just use `context->container'
10071         to get the container.
10072
10073         * loader.c (method_from_methodspec): Set `context->parent' from
10074         `context->container' - and if that's a method container, use its
10075         parent.  Also set the `context->container' when creating a new
10076         MonoGenericContext.
10077         (mono_get_method_from_token): Use just `context->container' to get
10078         the container.
10079
10080         * metadata.c (do_mono_metadata_parse_generic_class): Also set
10081         `gclass->context->container'.
10082
10083         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
10084         the `context->container' when creating a new MonoGenericContext.
10085
10086 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
10087
10088         * reflection.c (compare_genericparam): Sort params with identical
10089         owner by their number. Fixes gen-111 on sparc.
10090
10091 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
10092
10093         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
10094         around the domain changes.
10095
10096         * appdomain.c (mono_domain_unload): Handle the case when the thread
10097         calling Unload is itself being aborted during unloading. Fixes #70022.
10098
10099         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
10100
10101         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
10102         checkpoint_func as an icall so it gets a wrapper.
10103         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
10104         in the cross-appdomain wrappers too.
10105
10106         * threads.c (mono_thread_has_appdomain_ref): Make this public.
10107
10108         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
10109
10110         * reflection.c: Fix some memory leaks.
10111         
10112 2004-12-02  Martin Baulig  <martin@ximian.com>
10113
10114         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
10115
10116         * metadata.c (generic_class_cache): New static hashtable.
10117         (mono_metadata_lookup_generic_class): New public method.
10118
10119 2004-12-02  Martin Baulig  <martin@ximian.com>
10120
10121         * class.c (mono_class_create_from_typedef): Call
10122         mono_class_setup_parent() and mono_class_create_mono_type() before
10123         parsing the interfaces.
10124
10125 2004-12-02  Martin Baulig  <martin@ximian.com>
10126
10127         * metadata.c (generic_inst_cache): New static hashtable.
10128         (mono_metadata_lookup_generic_inst): New public function.
10129         (mono_metadata_inflate_generic_inst): New public function.
10130         (mono_metadata_parse_generic_inst): New public function.
10131         (do_mono_metadata_parse_generic_class): Use the new
10132         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
10133         since this'll also use the cache.
10134
10135         * reflection.c (mono_reflection_bind_generic_method_parameters):
10136         Use mono_metadata_lookup_generic_inst() to use the new cache.
10137
10138         * class.c (inflate_mono_type): Use
10139         mono_metadata_inflate_generic_inst() to inflate a generic
10140         instance; this'll also use the new cache.
10141
10142         * loader.c (method_from_methodspec): Use
10143         mono_metadata_parse_generic_inst() and
10144         mono_metadata_inflate_generic_inst() rather than parsing it
10145         manually, so we can use the new cache.
10146
10147 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
10148
10149         * threads.c (wait_for_tids): Do not incorrectly free threads when 
10150         the wait times out.
10151
10152 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
10153
10154         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
10155         iter->args based on whether parameters are passed in registers (i.e.
10156         MONO_ARCH_REGPARMS is defined)
10157
10158 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
10159
10160         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
10161         the exception message. Fixes #70070.
10162         (method_from_methodspec): Fix warnings.
10163
10164 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10165
10166         * process.c: (complete_path) return the path quoted
10167
10168 2004-12-01  Martin Baulig  <martin@ximian.com>
10169
10170         * class-internals.h (MonoGenericInst): New structure.
10171         (MonoGenericClass): Replaced `type_argc', `type_argv' and
10172         `is_open' with `MonoGenericInst *inst'.
10173         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
10174         `is_open' with `MonoGenericInst *inst'.
10175
10176 2004-11-30  Martin Baulig  <martin@ximian.com>
10177
10178         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
10179
10180         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
10181         to `generic_class_cache'.
10182
10183         * metadata.c
10184         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
10185         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
10186         (mono_generic_inst_is_valuetype): Renamed to
10187         mono_generic_class_is_valuetype().
10188
10189         * class-internals.h
10190         (MonoGenericInst): Renamed to MonoGenericClass.
10191         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
10192         (MonoClass): Renamed `generic_inst' to `generic_class'.
10193         (MonoGenericContext): Renamed `ginst' to `gclass'.
10194
10195         * object-internals.h
10196         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
10197
10198         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
10199         mono_reflection_generic_class_initialize().
10200
10201         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
10202         now known as "System.Reflection.MonoGenericClass".
10203         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
10204
10205 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
10206
10207         * class-internals.h: Added a flag field to MonoClass to cache the
10208         declarative security attributes actions associated with the class.
10209         * domain-internals.h: Added booleans to MonoJitInfo to cache the
10210         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
10211         applicable to the JITted method.
10212         * reflection.c|h: Added functions to extract (as flags) which security
10213         actions are available (declaratively) for a method, class or assembly.
10214         * metadata.c|h: Added functions to search the declarative security
10215         table in the metadata.
10216         
10217 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
10218
10219         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
10220         EXPORTEDTYPES are already in the class name cache, so there is no
10221         need to add extra code here to look at them. Just removes a bit of
10222         cruft.
10223
10224         (ves_icall_System_Environment_get_TickCount): No need for #if
10225         WINDOWS. We already have the code in io-layer.
10226
10227 2004-11-28  Martin Baulig  <martin@ximian.com>
10228
10229         * loader.c
10230         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
10231         Fixes gen-112.cs.
10232
10233 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
10234
10235         * assembly.c (do_mono_assembly_open): Instead of having a
10236         conditional WITH_BUNDLE, incorporate support for bundles here, by
10237         having a global `bundles' variable holding a pointer to the actual
10238         bundles. 
10239
10240         (mono_register_bundled_assemblies): New API call used by the
10241         bundle code. 
10242
10243         See mkbundle.1 for details.
10244         
10245 2004-11-27  Martin Baulig  <martin@ximian.com>
10246
10247         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
10248         the vtable for generic methods.
10249
10250 2004-11-26  Martin Baulig  <martin@ximian.com>
10251
10252         * metadata.c
10253         (mono_metadata_generic_method_hash): New public function.
10254         (mono_metadata_generic_method_equal): Likewise.
10255
10256         * class-internals.h
10257         (MonoGenericContainer): Added `GHashTable *method_hash'.
10258
10259         * reflection.c (ReflectionMethodBuilder): Added
10260         `MonoGenericContainer *generic_container'.
10261         (reflection_methodbuilder_to_mono_method): Don't create a new
10262         MonoGenericContainer each time we're called.
10263         (mono_reflection_bind_generic_method_parameters): Use
10264         `container->method_hash' to cache the results so we don't create a
10265         different method if we're called several times with the same
10266         arguments.
10267
10268         * loader.c (method_from_methodspec): Use the new
10269         `container->method_hash' here, too.
10270
10271 2004-11-26  Martin Baulig  <martin@ximian.com>
10272
10273         * class.c (inflate_generic_signature): Correctly compute
10274         `res->has_type_parameters'.
10275         (mono_class_vtable): Use the `has_type_parameters' flag to
10276         determine whether we're a generic method.
10277
10278         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
10279
10280 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
10281
10282         * object.c (mono_runtime_run_main): Fix a small memory leak.
10283
10284 2004-11-25  Martin Baulig  <martin@ximian.com>
10285
10286         * class.c (set_generic_param_owner): Fixed the loop.
10287
10288 2004-11-25  Martin Baulig  <martin@ximian.com>
10289
10290         * object.c (mono_class_vtable): Don't create any JIT wrappers for
10291         generic methods.
10292
10293 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
10294
10295         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
10296         names. Fixes #69787.
10297
10298 2004-11-24  Martin Baulig  <martin@ximian.com>
10299
10300         * class.c (mono_class_create_generic_2): If we don't have a
10301         `ginst->parent', inflate `gklass->parent' to get our parent.
10302
10303 2004-11-24  Martin Baulig  <martin@ximian.com>
10304
10305         * reflection.c (compare_genericparam): Correctly sort the
10306         GenericParam table; fixes #69779.
10307
10308 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
10309
10310         * reflection.c: When writing a PE file, don't create a huge
10311         buffer in memory. Just write the arrays we have to the file.
10312         This reduces memory usage.
10313
10314         * metadata-internals.h: MonoDynamicStream pefile is no longer used
10315         globally.
10316
10317 2004-11-17  Martin Baulig  <martin@ximian.com>
10318
10319         * class.c (mono_class_init): Don't setup `class->parent' for
10320         dynamic instances; moved this to mono_class_generic_2().
10321         (mono_class_create_generic): Also set `klass->inited' for dynamic
10322         generic instances.
10323         (mono_class_create_generic_2): Don't do anything for dynamic
10324         generic instances.  Set `klass->parent' here and also call
10325         mono_class_setup_parent() here. 
10326
10327         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
10328         `MonoType *parent' argument; set `ginst->parent' before calling
10329         mono_class_create_generic_2(), so we set the correct parent.
10330
10331 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
10332
10333         * reflection.c: allow getting attributes from ModuleBuilder
10334         (used by ikvm).
10335
10336 2004-11-17  Martin Baulig  <martin@ximian.com>
10337
10338         * class.c (mono_class_create_from_typedef): If a type parameter is
10339         inherited from an outer class, set its owner to that class.
10340
10341 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
10342
10343         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
10344           for (int*) written size. This fixes bug #69592.
10345
10346 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
10347
10348         * icall.c: Added IsAuthenticodePresnet internal call.
10349         * image.c|h: New function that check a MonoImage for an Authenticode
10350         signature in the certificate PE data directory.
10351         * security.c|h: New internal call to ask the runtime if an 
10352         Authenticode signature seems referenced in the PE header.
10353
10354 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
10355
10356         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
10357
10358         * reflection.c (mono_image_create_pefile): Free the assembly streams
10359         after writing out the assembly file.
10360
10361         * object.c (mono_runtime_run_main): Fix small memory leak.
10362
10363         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
10364         property access modifiers. Fixes #69389.
10365
10366 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
10367
10368         * domain.c, object.c, object-internals.h, domain-internals.h,
10369         object.h, marshal.c: keep dynamic code info per domain.
10370
10371 2004-11-15  Martin Baulig  <martin@ximian.com>
10372
10373         * class.c (mono_type_get_name_recurse): Put type arguments in
10374         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
10375         see bug #68387.
10376
10377 2004-11-15  Martin Baulig  <martin@ximian.com>
10378
10379         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
10380         (mono_class_setup_vtable): When computing `the_cname' for a
10381         generic instance, don't include the namespace since we'd otherwise
10382         add it twice.
10383
10384 2004-11-15  Martin Baulig  <martin@ximian.com>
10385
10386         * class.c (mono_class_create_generic): Changed return type to void.
10387         (mono_class_create_generic_2): New public function; setup
10388         `class->method', `class->field' and `class->interfaces' here
10389         instead of in mono_class_init().
10390
10391         * class.h (mono_class_create_generic): Moved to class-internals.h.
10392
10393 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
10394
10395         * reflection.c (mono_image_create_pefile): take a file HANDLE.
10396         rather than writing to memory, write to this file. Right now,
10397         we are just writting into a buffer, and copying that. However
10398         we can avoid the buffer later.
10399
10400         (mono_dynamic_stream_reset): new function
10401
10402         * icall.c, object-internals.h: update for the above.
10403
10404 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
10405
10406         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
10407         have been using gc'd memory. First it is slower, unlikely
10408         the comment in the source code said, secondly, it increases
10409         our footprint to do it in the gc.
10410
10411         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
10412         the method so that it does not have to copy to managed code.
10413
10414 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
10415
10416         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
10417
10418 2004-11-12  Martin Baulig  <martin@localhost>
10419
10420         * reflection.c (mono_image_create_token): Allow generic method
10421         definitions here, since they may appear in an `.override'; see
10422         gen-98/gen-99 for an example.
10423
10424 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
10425
10426         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
10427         #69365.
10428
10429         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
10430         descriptive.
10431
10432 2004-11-11  Martin Baulig  <martin@ximian.com>
10433
10434         * class.c (mono_class_setup_vtable): In an explicit interface
10435         implementation, the method name now includes the arity.
10436
10437 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
10438
10439         * object.c (mono_array_full_copy): Fix warning.
10440
10441 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
10442
10443         * appdomain.c: Removed look_for_method_by_name(). Use the new method
10444         mono_class_get_method_from_name() instead.
10445         
10446         * class-internals.h: Added two new types of wrappers. 
10447         Added MonoRemotingTarget enum. Added new trampoline function type, which
10448         takes an additional MonoRemotingTarget value as parameter, so it is
10449         possible to request a trampoline for a specific target.
10450         
10451         * class.c: Added new mono_class_get_method_from_name() method.
10452         
10453         * class.h: In MonoRemoteClass, we can have now to vtables, one for
10454         general remoting sinks and one specific for cross domain calls.
10455         
10456         * debug-helpers.c: Added new wrapper names.
10457         
10458         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
10459         of a remote class.
10460         
10461         * image.c: Porperly delete value objects form the remoting invoke hashtable.
10462         
10463         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
10464         with several other methods (mono_marshal_get_xappdomain_dispatch,
10465         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10466         and others) can generate a fast remoting wrapper for cross domain calls.
10467         More information can be found in docs/remoting.
10468         Other changes: Removed mono_find_method_by_name, and used
10469         mono_class_get_method_from_name instead.
10470         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10471         is stored in the remoting invoke hashtable.
10472         
10473         * marshal.h: published the new method for getting the xdomain wrapper,
10474         and also added a method for getting the adequate wrapper for a given
10475         method and target.
10476         
10477         * object-internals.h, object.c: Added a couple of methods for capying and
10478         cloning arrays.
10479         Modified mono_install_remoting_trampoline, which takes the new remoting
10480         trampoline that has a remoting target as parameter.
10481         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10482         will return the most suitable vtable for the target.
10483         Added mono_remote_class_vtable, which returns the vtable of a remote class
10484         (which can be the normal remoting vtable or the xdomain vtable).
10485         
10486         * threads.c: the xdomain invoke and dispatch wrappers must also be
10487         protected against interruptions.
10488
10489 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10490
10491         * icall.c: use memmove in BlockCopyInternal when the source and
10492         destination arrays are the same.
10493
10494 2004-11-09  Martin Baulig  <martin@ximian.com>
10495
10496         * class-internals.h (MonoGenericContainer): Removed `method' and
10497         `signature', replaced them with `is_method' and `is_signature'
10498         flags.  Added `context'.
10499
10500         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10501         instead of a `MonoGenericContainer *'.
10502
10503         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10504         for dynamic type parameters.
10505         (mono_metadata_load_generic_params): Setup `container->context'.
10506
10507         * reflection.c (mono_reflection_setup_generic_class): Setup
10508         `tb->generic_container->context'.
10509         (do_mono_reflection_bind_generic_parameters): Use
10510         mono_class_inflate_generic_type() to correctly inflate types,
10511         rather than using our own hack just for MONO_TYPE_VAR.
10512
10513 2004-11-09  Martin Baulig  <martin@ximian.com>
10514
10515         * class.c (mono_class_inflate_generic_method): Small fix; don't
10516         crash here.
10517
10518         * icall.c
10519         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10520         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10521         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10522         (ves_icall_Type_BindGenericParameters): Likewise.
10523         (ves_icall_Type_get_IsGenericInstance): Likewise.
10524         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10525         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10526         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10527         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10528
10529 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10530
10531         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10532         assembly versions and public key tokens. Fixes #69113.
10533
10534 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10535
10536         * metadata.c: fix bug introduced with the type cache changes
10537         on 2004-11-06.
10538
10539 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10540
10541         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10542         the MonoClass pointer instead of the token in exception clauses.
10543         * reflection.c: updates for the above and make the code not depend
10544         on the structure of MonoExceptionClause.
10545
10546 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10547
10548         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10549         Add support for dynamic assemblies. Fixes #69114.
10550
10551         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10552
10553 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10554
10555         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10556         since most only those methods use it. the code member of
10557         MonoMethodPInvoke was dead, so that can be removed too. Also,
10558         remove inline_count (again, not used), and move slot so that it
10559         can share bits with some other flags. This saves 8 bytes in the
10560         structure and gives us about 50 kb back for mcs helloworld.cs
10561
10562         * *.[ch]: Do naming changes for the above.
10563
10564         * loader.c (mono_method_get_header): Lazily init the header
10565         on first access.
10566         (mono_get_method_from_token): don't init the header here
10567         (mono_free_method): the header may never be allocated
10568
10569         Overall, this saves 150 kb of unmanaged allocations
10570         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10571         memory at runtime.
10572         
10573         * loader.c, loader.h (mono_method_get_header): new accessor.
10574
10575         * *.[ch]: use the above method. Prepares us to lazily load
10576         the header.
10577
10578         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10579         three warnings, which are actual bugs (see 69206).
10580
10581         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10582         unused. Saves a cool 4 bytes / method.
10583
10584 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10585
10586         * metadata.c (builtin_types): Add types for System.Object here.
10587         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10588         for a class or valuetype from klass->this_arg or klass->byval_arg.
10589
10590         On mcs for a hello world, this gets us down from 21836 MonoType's
10591         to 14560.
10592
10593         (mono_metadata_free_type): Account for the above change.
10594
10595 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10596
10597         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10598         exception instead of asserting if name is null.
10599         (ves_icall_System_AppDomain_GetData): Ditto.
10600
10601 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10602
10603         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10604         EnumBuilder.
10605
10606         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10607         Return NULL when the domain does not have entry_assembly set.
10608
10609         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10610         Add a 'resource_modules' argument.
10611         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10612
10613         * reflection.c (mono_reflection_create_runtime_class): Move setting
10614         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10615         for enums too.
10616
10617         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10618         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10619         Throw an ArgumentNullException if 'ptr' is null.
10620
10621         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10622         assemblies here. Fixes #69020.
10623
10624 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10625
10626         * reflection.c (build_compressed_metadata): Fix the previous patch for
10627         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10628         the stack.
10629
10630 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10631
10632         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10633         the cultures is false. Fixes #69090.
10634
10635         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10636         detected by valgrind.
10637         
10638         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10639         TypeResolve multiple times for the same type. Fixes #65577.
10640
10641 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10642
10643         * marshal.c: Avoid using ldftn to call managed functions. It is
10644         much slower than just a call.
10645
10646         * reflection.c (mono_module_get_object): free the basename we
10647         allocate here from glib.
10648         
10649         * reflection.c (ensure_runtime_vtable): make sure to free
10650         overrides.  Also, we were allocating an array of MonoMethod not an
10651         array of MonoMethod*.
10652
10653         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10654
10655         * image.c (mono_image_close): free image->guid here.
10656
10657 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10658
10659         * reflection.c: Fix some spec conformance issues with the PE file
10660         structures so mcs compiled apps run on the Net 2.0 beta.
10661
10662 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10663
10664         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10665         Implement this. Fixes #67264.
10666
10667         * debug-helpers.h debug-helpers.c marshal.c: Move 
10668         mono_find_method_by_name to debug-helpers.c.
10669
10670 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10671
10672         * object.c (mono_release_type_locks): type_initialization_hash is
10673         a GHashTable.
10674
10675         * reflection.c object.c object-internals.h: Fix warnings.
10676
10677         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10678         without accessors. Fixes #61561.
10679
10680         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10681         application base from the root domain if not set. Fixes #65641.
10682         (mono_runtime_init): Fix warning.
10683
10684 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10685
10686         * appdomain.c: call mono_thread_pool_init.
10687         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10688         of worker threads based on the number of CPUs and the environment
10689         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10690         for non-windows (windows) systems.
10691
10692 2004-10-27  Chris Toshok  <toshok@ximian.com>
10693
10694         * mono-debug-debugger.c (write_class): don't call mono_class_init
10695         here, as even with the check for (!klass->init_pending), we get
10696         into a situation where we're hitting cycles in class
10697         initialization.  Fixes #68816.
10698
10699 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10700
10701         * image.c: Avoid overwriting values in the loaded_images_hash when an
10702         assembly is loaded multiple times. Fixes #61152.
10703
10704         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10705         so multiple satellite assemblies for the same name can be loaded.
10706         Fixes #68259.
10707
10708         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10709         not NULL.
10710
10711         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10712         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10713
10714         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10715         pending finalizers are not invoked after the appdomain has been 
10716         unloaded. Fixes #67862.
10717
10718 2004-10-22  Martin Baulig  <martin@ximian.com>
10719
10720         * mono-debug-debugger.c
10721         (mono_debugger_runtime_invoke): Don't box valuetypes.
10722
10723 2004-10-22  Chris Toshok  <toshok@ximian.com>
10724
10725         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10726         don't hide private methods.
10727
10728 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10729
10730         * icall.c: Allows the runtime to "share" (when known) the public key
10731         token of an assembly. This avoid the need to recalculate the token 
10732         (from the public key) in managed code.
10733
10734 2004-10-21  Chris Toshok  <toshok@ximian.com>
10735
10736         * debug-helpers.c (append_class_name): argh, revert last patch.
10737         
10738 2004-10-21  Chris Toshok  <toshok@ximian.com>
10739
10740         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10741         not '/', so that it matches what the debugger uses to look up
10742         methods.
10743
10744 2004-10-21  Martin Baulig  <martin@ximian.com>
10745
10746         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10747         public method; this is called each time an exception is thrown and
10748         allows the debugger to use exception catch points.
10749
10750 2004-10-21  Martin Baulig  <martin@ximian.com>
10751
10752         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10753         the stack pointer and the exception object in some struct and pass
10754         that to the debugger.
10755
10756 2004-10-21  Chris Toshok  <toshok@ximian.com>
10757
10758         * mono-debug-debugger.c (do_write_class): add instance/static
10759         event support.  We don't expose "raise" or "other" yet.
10760         (event_is_static): new method.
10761
10762 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10763
10764         * mono-debug-debugger.c
10765         (mono_debugger_handle_exception): Remove
10766         bogus return value for fussy compilers.
10767
10768 2004-10-20  Martin Baulig  <martin@ximian.com>
10769
10770         * mono-debug-debugger.c
10771         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10772         (mono_debugger_handled_exception): Likewise.
10773
10774 2004-10-20  Martin Baulig  <martin@ximian.com>
10775
10776         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10777         MONO_DEBUGGER_EVENT_EXCEPTION.
10778
10779         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10780         public function to send the debugger a notification for an
10781         exception and inform it about a catch/finally clause.
10782
10783 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10784
10785         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10786         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10787         fix 2.95 build. 
10788
10789         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10790
10791 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10792
10793         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10794         marshalled as [In,Out]. Fixes #58325.
10795
10796 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10797
10798         * reflection.c (mono_method_body_get_object): Implement some fields.
10799
10800 2004-10-12  Martin Baulig  <martin@ximian.com>
10801
10802         * reflection.c (mono_reflection_bind_generic_parameters): Small
10803         fix, correctly retrieve our parent from a generic instance.
10804
10805 2004-10-12  Martin Baulig  <martin@ximian.com>
10806
10807         * metadata.c (mono_metadata_generic_param_equal): We always have
10808         an owner.
10809
10810         * class.c
10811         (mono_class_from_generic_parameter): We need to have an owner.
10812         (my_mono_class_from_generic_parameter): Likewise.
10813
10814         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10815         mono_reflection_create_generic_class() and added a new
10816         mono_reflection_setup_generic_class().  
10817         (mono_reflection_initialize_generic_param): If we're a nested
10818         generic type and inherited from the containing class, set our
10819         owner to the outer class.
10820
10821 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10822
10823         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10824
10825         * reflection.c (mono_method_body_get_object): New function to create
10826         a MethodBody object.
10827
10828         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10829
10830 2004-10-11  Martin Baulig  <martin@ximian.com>
10831
10832         * metadata.c (_mono_metadata_type_equal): Renamed to
10833         do_mono_metadata_type_equal() and made static.
10834
10835 2004-10-11  Martin Baulig  <martin@ximian.com>
10836
10837         * appdomain.c: Bump corlib version number to 28.
10838
10839 2004-10-10  Martin Baulig  <martin@ximian.com>
10840
10841         * class-internals.h
10842         (MonoGenericInst): Added `MonoGenericContainer *container'.
10843         (MonoGenericMethod): Likewise.
10844         (MonoGenericContext): Likewise.
10845         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10846
10847         * metadata.c
10848         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10849         (do_mono_metadata_parse_generic_inst): Likewise.
10850         (mono_metadata_parse_type_full): New public method.  This is the actual
10851         mono_metadata_parse_type() implementation - with an additional
10852         `MonoGenericContainer *' argument.
10853         (mono_metadata_parse_array_full): Likewise.
10854         (mono_metadata_parse_signature_full): Likewise.
10855         (mono_metadata_parse_method_signature_full): Likewise.
10856         (mono_metadata_parse_mh_full): Likewise.
10857         (mono_type_create_from_typespec): Likewise.
10858         (mono_metadata_interfaces_from_typedef_full): New public method;
10859         this is similar to the other _full() methods, but we take a
10860         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10861         (mono_metadata_parse_generic_param): Take an additional
10862         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10863         from that container.
10864         (mono_metadata_generic_param_equal): New static method to compare
10865         two type parameters.
10866         (_mono_metadata_type_equal): New static method; takes an
10867         additional `gboolean signature_only' argument - if true, we don't
10868         compare the owners of generic parameters.
10869         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10870         with a TRUE argument - do a signature-only comparision.
10871
10872         * loader.c: Use the new _full() methods and pass the
10873         MonoGenericContainer to them.
10874
10875         * object-internals.h (MonoReflectionTypeBuilder): Added
10876         `MonoGenericContainer *generic_container' field.
10877         (MonoReflectionMethodBuilder): Likewise.
10878
10879 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10880
10881         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10882         case initial images of dynamic assemblies.
10883
10884         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10885
10886         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10887
10888         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10889         length of event->other array.
10890         (typebuilder_setup_events): Ditto.
10891
10892         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10893         'assembly_by_name' and add an 'assemblies' list.
10894
10895         * assembly.h assembly.c: Add a new search hook for determining whenever
10896         an assembly is already loaded. Use this instead of searching in the
10897         loaded_assemblies list.
10898
10899         * domain.c appdomain.c: Implement the new search hook so loaded 
10900         assemblies are now scoped by appdomain. Fixes #67727.
10901
10902 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10903
10904         * threads.c (mono_thread_attach): Initialize synch_lock field so
10905         mono_thread_detach works again.
10906
10907         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10908         'lib' too. Fixes #63130.
10909
10910 2004-10-06  Jackson Harper  <jackson@ximian.com>
10911
10912         * culture-info-tables.h: regenerated.
10913
10914 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10915
10916         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10917         implemented by other interfaces in the result. Fixes #65764.
10918         
10919         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10920         Handle unloadable modules without crashing.
10921
10922         * image.c (load_modules): Revert the previous patch since modules must
10923         have a fixed index inside the array.
10924         
10925         * image.c (load_modules): Don't include native modules in the modules
10926         array.
10927
10928 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10929
10930         * reflection.h: Add param_defaults field.
10931
10932         * reflection.c: Add support for parameter defaults in dynamic methods.
10933         Fixes #64595.
10934
10935         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10936         an empty string when a type has no namespace. Fixes #64230.
10937
10938 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10939
10940         * tabledefs.h: Added "internal" security actions to support non-CAS
10941         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10942         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10943
10944 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10945
10946         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10947         constructor of abstract class. Fixes #61689.
10948
10949 2004-10-04  Martin Baulig  <martin@ximian.com>
10950
10951         * class-internals.h (MonoGenericContainer): New type.
10952         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10953         `MonoGenericContainer *generic_container'.
10954         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10955         `MonoGenericContainer *generic_container'.
10956
10957         * metadata.c (mono_metadata_load_generic_params): Return a
10958         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10959         removed the `num' argument.
10960
10961 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10962
10963         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10964         for dynamic images.
10965
10966         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10967         machine fields.
10968
10969         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10970
10971         * reflection.c: Save pe_kind and machine values into the generated
10972         image file.
10973
10974         * appdomain.c: Bump corlib version number.
10975
10976         * object-internals.h: Reorganize layout of LocalBuilder.
10977
10978         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10979         New helper function.
10980
10981         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10982         created MonoType for dynamic types. Fixes #66180.
10983
10984 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10985
10986         * threadpool.c: the ares hashtable needs a critical section around it.
10987         this prevents some nasty segfaults
10988
10989 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10990
10991         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10992         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10993         bug 67324).
10994         
10995 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10996
10997         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10998         
10999 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
11000
11001         * image.c: Always canonicalize image file names, to avoid loading
11002         the same assembly twice when referenced using a relative path.
11003
11004 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
11005
11006         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
11007
11008         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
11009
11010         * marshal.c: Fix warnings.
11011
11012 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
11013
11014         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
11015         attempting to marshal the delegate_trampoline as the method_addr.
11016         This patch has a static hashtable of marshalled delegates so that 
11017         we can map delegate_trampoline addresses back to delegates.  This
11018         allows a delegate passed to managed code to be passed back into native
11019         code.  Fixes #67039
11020
11021 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
11022
11023         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
11024
11025         * reflection.c (method_encode_code): Align method headers properly.
11026         Fixes #66025.
11027
11028 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
11029
11030         * marshal.c: In the runtime invoke wrapper, reset the abort
11031         exception if it is cached. This avoids the automatic rethrowal of 
11032         the exception after the catch of the wrapper. Also check for pending
11033         interruptions before calling the managed method. This is done using
11034         the new method emit_thread_force_interrupt_checkpoint, since the
11035         normal checkpoint method is ignored when running the invoke wrapper.
11036         * object.c: If the abort exception is rethrown, set the abort_exc
11037         field of the thread, so it will be rethrown aftere every catch.
11038         * threadpool.c: Only run an interruption checkpoint if what has been
11039         requested is a stop of the thread (aborts will be ignored).
11040         * threads.c: By default, a thread will now never be interrumped while
11041         running the runtime invoke wrapper (this ensures that runtime_invoke
11042         will always return to the caller if an exception pointer is provided).
11043         There is a new special method mono_thread_force_interruption_checkpoint()
11044         to force an interruption checkpoint even if running a protected
11045         wrapper, which is used by the same runtime invoke wrapper to do a check
11046         at a safe point.
11047
11048 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
11049
11050         * object.c, object-internals.h: Implemented mono_release_type_locks,
11051         which releases the cctor locks held by a thread.
11052         * threads.c, threads.h: In thread_cleanup, release cctor locks held
11053         by a thread. Added mono_thread_exit() method to be used to safely stop
11054         a thread.
11055
11056 2004-09-28  Raja R Harinath  <rharinath@novell.com>
11057
11058         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11059         Move null check before dereference.  Avoid indexing beyond the end
11060         of the 'modules' array.
11061
11062 2004-09-28  Raja R Harinath  <rharinath@novell.com>
11063
11064         * metadata-internals.h (MonoImage): Add module_count field.
11065         * image.c (load_modules): Set image->module_count.
11066         (mono_image_load_file_for_image): Use image->module_count.
11067         * reflection.c (mono_image_load_module): Append to image->modules array 
11068         of dynamic assembly.
11069         (mono_module_get_object): Fix loop to actually increment index.
11070         Use image->module_count.
11071         * assembly.c (mono_assembly_load_references): Use image->module_count.
11072         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
11073         Likewise.
11074
11075 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
11076
11077         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
11078         Avoid assert on generic types.
11079
11080 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
11081
11082         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
11083
11084         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
11085
11086         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
11087         function to convert a MarshalSpec structure to its managed counterpart.
11088
11089         * reflection.c: Fix warnings.
11090         
11091         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
11092         field.
11093
11094         * icall.c (mono_create_icall_signature): Fix build.
11095
11096 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
11097
11098         * icall.c: Add MakePointType icall.
11099
11100         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
11101         warnings.
11102
11103 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11104
11105         * threadpool.c: reuse allocated slots in the queue.
11106
11107 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
11108
11109         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
11110
11111         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
11112
11113         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
11114         previous change.
11115
11116         * tabledefs.h: Add constants for pinvoke attributes BestFit and
11117         ThrowOnUnmappableChar.
11118
11119         * icall.c (ves_icall_Type_GetPacking): New icall.
11120
11121 2004-09-24  Martin Baulig  <martin@ximian.com>
11122
11123         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
11124
11125 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11126
11127         * appdomain.c:
11128         (mono_domain_set): allow setting a domain that is being unloaded.
11129         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
11130         being unloaded.
11131
11132 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
11133
11134         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
11135         the GetCustomAttributes icall.
11136
11137 2004-09-23  Martin Baulig  <martin@ximian.com>
11138
11139         * object-internals.h (MonoReflectionGenericParam): Replaced
11140         'has_ctor_constraint', `has_reference_type' and `has_value_type'
11141         with `guint32 attrs'.
11142
11143 2004-09-23  Martin Baulig  <martin@ximian.com>
11144
11145         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
11146
11147 2004-09-23  Martin Baulig  <martin@ximian.com>
11148
11149         * object-internals.h (GenericParameterAttributes): New enum.
11150
11151 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
11152
11153         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
11154         
11155         * class.c (init_events): Fill out event->other field.
11156
11157         * class.c: Fix warnings.
11158
11159         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
11160
11161 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
11162
11163         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
11164         walk which doesn't supply the IL offset.
11165
11166 2004-09-22  Martin Baulig  <martin@ximian.com>
11167
11168         * reflection.c (mono_reflection_setup_internal_class): If we're
11169         System.ValueType, System.Object or System.Enum, set
11170         `klass->instance_size' and create the vtable.
11171         (mono_reflection_create_internal_class): If we're an enum type,
11172         get the base class from our current corlib.
11173
11174 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
11175
11176         * reflection.h (MonoResolveTokenError): New type.
11177
11178         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
11179         icall.
11180
11181         * icall.c: Add an 'error' argument to the ResolveToken icalls.
11182
11183 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
11184
11185         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
11186         Support also calling constructors, but only for already allocated objects.
11187
11188 2004-09-17  Geoff Norton <gnorton@customerdna.com>
11189
11190         * reflection.c (type_get_qualified_name): If the klass is null
11191         return the typename to avoid a NullRefEx.
11192         (encode_cattr_value): Get the qualified name of the boxed type,
11193         not the underlying enumtype.  Fixes #62984.
11194
11195 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
11196
11197         * marshal.c: Fix problems with previous checkin.
11198
11199 2004-09-21    <vargaz@freemail.hu>
11200
11201         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
11202         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
11203
11204         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
11205
11206 2004-09-21  Geoff Norton <gnorton@customerdna.com>
11207
11208         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
11209         should only return a type for pointers, arrays, and passbyref types.
11210         Fixes bug #63841.
11211
11212 2004-09-21  Martin Baulig  <martin@ximian.com>
11213
11214         * domain.c (mono_debugger_check_runtime_version): New public
11215         function.
11216
11217         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
11218
11219 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
11220
11221         * reflection.c: Added missing sort to the declarative security 
11222         attributes table. MS implementation stops seeing the attributes if the
11223         token number regress in the table (as shown by ildasm and permview).
11224
11225 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
11226
11227         * object-internals.h (MonoReflectionModule): Add 'token' field.
11228         
11229         * reflection.c (mono_reflection_get_token): Add support for Module
11230         and Assembly.
11231         (mono_module_get_object): Set 'token' field.
11232         (mono_module_file_get_object): Set 'token' field.
11233
11234         * icall.c: Add new Assembly and Module icalls.
11235
11236         * appdomain.c: Bump corlib version.
11237
11238 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
11239
11240         * loader.h loader.c class.h class.c: Add helper functions for obtaining
11241         tokens of metadata objects.
11242
11243         * reflection.h reflection.c (mono_reflection_get_token): New function
11244         to obtain the token of a metadata object.
11245
11246         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
11247
11248 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
11249
11250         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
11251         
11252         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
11253
11254 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
11255
11256         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
11257         * object-internals.h: Added 3 MonoArray* members to MonoReflection
11258         AssemblyBuilder to access the permissions set in the class lib.
11259         * reflection.c: Added security attributes encoding step in 
11260         mono_image_build_metadata.
11261         * tabledefs.h: Added new security actions defined in 2.0:
11262         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
11263
11264 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11265
11266         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
11267         macro parameter.
11268
11269 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11270  
11271         * locales.c: nullify the ICU_collator member of CompareInfo when it is
11272           finalized. There where random SIGSEVs at program termination, when
11273           an object being finalized was trying to do a string comparison and
11274           the current culture was already finalized.
11275  
11276 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11277
11278         * threads.c: call thread_cleanup before finishing the thread if we get
11279         there.
11280
11281 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
11282
11283         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
11284         assemblies from the parent. Fixes #65665.
11285
11286 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
11287
11288         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
11289         modifiers.
11290
11291 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
11292
11293         * reflection.h: add prototype for mono_get_dbnull_object
11294         * reflection.c: add prototypes for get_default_param_value_blobs 
11295         and mono_get_object_from_blob for fussier compilers
11296
11297 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
11298  
11299         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
11300         false deadlock checks in class initialization.
11301  
11302 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
11303
11304         * image.c (mono_image_addref): Fix comment.
11305
11306         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
11307         possible.
11308
11309 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
11310
11311         * reflection.c (mono_param_get_objects): Modified to return
11312         ParameterInfo.DefaultValue object.
11313
11314         (get_default_param_value_blobs):
11315         (mono_get_object_from_blob):
11316         (mono_get_dbnull_object): New helper routines. 
11317
11318         * object.c (mono_get_constant_value_from_blob): New helper routine
11319         carved out from get_default_field_value ()
11320
11321         * object-internals.h (mono_get_constant_value_from_blob): Added
11322         function declaration.
11323
11324 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
11325
11326         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
11327         referenced assemblies. Fixes #62135.
11328
11329         * exception.h exception.c (mono_get_exception_file_not_found2): New
11330         helper function.
11331
11332 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
11333
11334         * class.h class.c: Add mono_type_get_underlying_type ().
11335
11336 2004-09-09  Geoff Norton <gnorton@customerndna.com>
11337
11338         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
11339         Fix GetTypes() to support dynamically created assemblies.
11340
11341 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
11342
11343         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
11344         
11345         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
11346         previous patch.
11347
11348         * reflection.h reflection.c loader.c: Allow dynamic construction of
11349         pinvoke methods. Fixes #65571.
11350         
11351         * reflection.c (mono_reflection_get_type): Revert previous change since
11352         it causes regressions.
11353
11354 2004-09-08  Martin Baulig  <martin@ximian.com>
11355
11356         * class.c (class_compute_field_layout): Don't call
11357         mono_class_layout_fields() for open generic instances.
11358
11359 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
11360         * threads.c appdomain.c: fix typo in GC macro
11361
11362 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11363
11364         * threads.c: don't call mono_thread_detach() in start_wrapper(),
11365         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
11366
11367 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
11368
11369         * image.c (mono_image_close): Applied patch from 
11370         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
11371         assembly is loaded multiple times from data.
11372         
11373         * image.c (mono_image_open): Fix warning.
11374
11375 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11376
11377         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
11378         once. Fixes #58334.
11379         
11380         * reflection.c (mono_reflection_create_runtime_class): Initialize
11381         klass->nested_classes. Fixes #61224.
11382
11383 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11384
11385         * threads.c: sched_yield() on exit, to allow threads to quit.
11386
11387 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11388
11389         * object.c (mono_unhandled_exception): Remove leftover debug code.
11390
11391 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
11392
11393         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
11394
11395 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11396
11397         * marshal.c (emit_marshal_array): Really null terminate string arrays.
11398         
11399         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
11400
11401 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11402
11403         * marshal.c (emit_marshal_array): Null terminate string arrays.
11404         
11405         * marshal.c (raise_auto_layout_exception): Fix warning.
11406
11407         * reflection.c (mono_param_get_objects): Initialize the default value
11408         with DBNull.Value, not null. Fixes #62123.
11409
11410 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
11411
11412         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
11413         throw an exception with a cute explanation.
11414
11415 2004-09-06  Dick Porter  <dick@ximian.com>
11416
11417         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
11418         Close the new process's thread handle, as we don't use it.  The
11419         handle stays around forever otherwise.
11420
11421 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11422
11423         * object.c (arith_overflow): Fix warning.
11424
11425         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
11426         calling conventions in method refs. Fixes #65352.
11427
11428         * reflection.c: Fix warnings.
11429
11430 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11431
11432         * icall.c: Add a new icall for Array.Clear
11433
11434 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11435
11436         * object.c: When allocating an array, we have to throw
11437         an overflow exception if any of the lengths are < 0.
11438
11439 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11440
11441         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
11442         properly. Also move implementation of string array marshalling to 
11443         managed code. Fixes #42316.
11444
11445 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11446
11447         * assembly.c: provide more information when loading an assembly fails.
11448
11449 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11450
11451         * filewatcher.c: don't expect the development fam package to be
11452         installed.
11453
11454 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
11455
11456         * marshal.c: Make a copy of the signature cookie since it will be
11457         freed by the caller.
11458         
11459         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
11460
11461         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
11462
11463         * metadata.c (mono_metadata_free_marshal_spec): New function to free
11464         marshal specs.
11465
11466         * marshal.c: More refactoring.
11467         
11468         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11469         smaller functions.
11470
11471 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11472
11473         * object.c: In mono_message_invoke, fill the output parameter array after
11474           calling the managed method (it was done before the call). This fixes
11475           bug #59299.
11476
11477 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11478
11479         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11480         as well.
11481
11482 2004-09-02  Martin Baulig  <martin@ximian.com>
11483
11484         * class.c (mono_class_instance_size): Don't allow generic type
11485         definitions or open generic instances.
11486         (mono_class_array_element_size): If we're a value type, call
11487         mono_class_instance_size() on the original class.
11488
11489         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11490         handle generic instances.
11491
11492         * mono-debug-debugger.c (write_type): Handle generic instances
11493         like classes.
11494
11495 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11496
11497         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11498         the allocation request fails. Fixes #65089.
11499
11500         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11501         
11502         * object.c (mono_runtime_free_method): New function to free a dynamic
11503         method.
11504
11505         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11506         delegate trampoline.
11507
11508         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11509         with hasthis as dynamic,
11510
11511         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11512
11513         * domain.c (mono_jit_info_table_remove): New function to remove an
11514         entry from the jit info table.
11515
11516         * class-internals.h (MonoMethod): Add 'dynamic' field.
11517
11518         * loader.c: Fix warnings.
11519
11520 2004-09-01  Martin Baulig  <martin@ximian.com>
11521
11522         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11523         instead of mono_debugger_lock() because the latter one is a no-op
11524         unless running in the debugger.
11525
11526 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11527
11528         * class.c (class_compute_field_layout): Classes with auto-layout or
11529         reference fields are not blittable.
11530         
11531 2004-09-01  Dick Porter  <dick@ximian.com>
11532
11533         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11534         mono_image_get_filename() to get the assembly location.
11535
11536         * icall.c:
11537         * metadata.h: Fix compile warnings
11538
11539 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11540
11541         * class.c (class_compute_field_layout): System.Object is blittable.
11542
11543         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11544         as in/out. Fixes #59909.
11545
11546 2004-09-01  Martin Baulig  <martin@ximian.com>
11547
11548         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11549         mono_metadata_generic_inst_is_valuetype() if we're a generic
11550         instance to check whether our underlying type is a reference type.
11551
11552 2004-09-01  Martin Baulig  <martin@ximian.com>
11553
11554         * metadata.c (mono_type_size): If we're a generic instance, call
11555         mono_class_value_size() for value types.
11556
11557 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11558
11559         * marshal.c: Implement more custom marshalling functionality. Fixes
11560         #64915.
11561
11562 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11563
11564         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11565
11566 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11567
11568         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11569
11570         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11571
11572         * icall.c: Fix some warnings.
11573
11574         * threads.c (abort_appdomain_thread): Fix unref errors.
11575         (mono_thread_current): Fix THREAD_DEBUG define.
11576
11577 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11578
11579         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11580
11581         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11582
11583 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11584
11585         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11586         string arrays.
11587
11588 2004-08-28  Martin Baulig  <martin@ximian.com>
11589
11590         * metadata.c
11591         (mono_metadata_generic_inst_is_valuetype): New public function.
11592
11593         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11594         mono_metadata_generic_inst_is_valuetype() if we're a generic
11595         instance to check whether our underlying type is a valuetype.
11596
11597 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11598
11599         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11600         #63768.
11601
11602 2004-08-25  Martin Baulig  <martin@ximian.com>
11603
11604         * loader.c (mono_get_method_from_token): Abstract methods can also
11605         be generic and thus have type parameters.
11606
11607         * metadata-internals.h
11608         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11609
11610         * reflection.c (mono_image_get_generic_param_info): Don't create a
11611         metadata row, just add an entry to the `gen_params' array.
11612         (build_compressed_metadata): Sort the `gen_params' array and then
11613         actually create the metadata.
11614
11615 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11616
11617         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11618
11619 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11620
11621         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11622
11623 2004-08-24  Martin Baulig  <martin@ximian.com>
11624
11625         * class.cs (mono_class_is_subclass_of): Like an interface, a
11626         generic instance also derives from System.Object.
11627
11628 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11629
11630         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11631         custom modifiers to be in any order. Fixes #61990.
11632
11633 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11634
11635         * object.c: Register mono_object_new_fast icall.
11636         
11637         * object.c (mono_class_get_allocation_ftn): Return to calling
11638         mono_object_new_fast, since it seems faster to compute the object 
11639         size in unmanaged code than passing it as a parameter.
11640
11641         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11642
11643         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11644         this function with Boehm as the oom handler, so we don't have to check
11645         the result of GC_malloc.
11646
11647         * object.c: Remove checks for oom.
11648
11649         * object.h object.c (mono_class_get_allocation_ftn): New function to
11650         return the icall which can be used to allocate an instance of a given
11651         class. 
11652
11653         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11654
11655         * class-internals.h: Add 'enabled' field.
11656
11657 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11658
11659         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11660
11661 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11662         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11663         value 0x0010.
11664
11665 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11666
11667         * appdomain.c: use the Tls function for appdomain too,
11668         at Zoltan's request. Actually return in mono_context_get
11669
11670         * appdomain.c, profiler.c, threads.c: use __thread
11671
11672 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11673
11674         * appdomain.c threads.c: Call GC_CreateThread on windows.
11675
11676         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11677         multiple libraries since this don't work on windows.
11678
11679 2004-08-18  Martin Baulig  <martin@ximian.com>
11680
11681         * class-internals.h
11682         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11683         MonoMethodHeader.
11684
11685         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11686         MonoMethodNormal since we also need it for abstract and interface
11687         methods.
11688
11689         * reflection.c
11690         (build_compressed_metadata): Sort the GenericParam table.
11691         (mono_image_create_token): Added `gboolean create_methodspec'
11692         argument; this is false when generating a MethodImpl token.
11693         (reflection_methodbuilder_to_mono_method): Abstract and interface
11694         methods may also have generic parameters.
11695
11696 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11697
11698         * appdomain.c: thread local alloc
11699
11700 2004-08-17  Martin Baulig  <martin@ximian.com>
11701
11702         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11703
11704         * icall.c
11705         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11706         argument.
11707
11708         * class.c (mono_type_get_full_name): New public function.
11709         (mono_type_get_name): Don't include the type arguments.
11710
11711 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11712
11713         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11714         for inclusion into the mono executable.
11715
11716 2004-08-16  Martin Baulig  <martin@ximian.com>
11717
11718         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11719         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11720
11721 2004-08-14  Martin Baulig  <martin@ximian.com>
11722
11723         * class.c (dup_type): Also copy the `byref' field.
11724
11725 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11726
11727         * reflection.c (create_dynamic_mono_image): Revert the last change 
11728         since it breaks bootstrap.
11729
11730 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11731
11732         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11733
11734         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11735         not free them with g_free.
11736
11737 2004-08-11  Martin Baulig  <martin@ximian.com>
11738
11739         * reflection.c (mono_reflection_setup_internal_class): Also call
11740         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11741
11742 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11743
11744         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11745         called during default (first) AppDomain creation. Keep track of
11746         Evidence when loading assemblies.
11747
11748 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11749
11750         * opcodes.c, opcodes.h: reduce runtime relocations.
11751
11752 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11753
11754         * culture-info.h, locales.c: fixes and chages to sue the new
11755         optimized format of the locale data.
11756         * culture-info-tables.h: regenerated.
11757
11758 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11759         
11760         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11761
11762 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11763
11764         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11765         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11766         * domain-internals.h: icall declaration.
11767         * icall.c: icall registration.
11768         * object-internals.h: New fields in MonoAssembly for CAS.
11769
11770 2004-08-05  Duncan Mak  <duncan@ximian.com>
11771
11772         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11773         CEE_LDELEM_ANY.
11774
11775 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11776
11777         * reflection.c: fix to deal with object[] arrays in custom ctors
11778         (bug #62550).
11779
11780 2004-08-05  Martin Baulig  <martin@ximian.com>
11781
11782         * class.c (mono_class_array_element_size): Added support for
11783         generic instances and correctly handle "recursive" types.
11784
11785 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11786
11787         * assembly.c: Fix warnings.
11788
11789 2004-08-04  Martin Baulig  <martin@ximian.com>
11790
11791         * class.c
11792         (mono_type_get_name_recurse): Added `gboolean include_arity'
11793         argument specifying whether or not we should include the generic
11794         arity in the type name.
11795         (_mono_type_get_name): New static function.
11796         (mono_class_setup_vtable): If we're a generic instance, don't
11797         include the generic arity in the names of explicit method
11798         implementations.        
11799
11800 2004-08-03  Martin Baulig  <martin@ximian.com>
11801
11802         * class.c (mono_type_get_name_recurse): Enclose the generic type
11803         arguments in `<', '>'.
11804
11805 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11806
11807         * gc.c: make GC warning messages use the trace API, they are just
11808         noise to most of the users.
11809
11810 2004-08-03  Martin Baulig  <martin@ximian.com>
11811
11812         * debug-mono-symfile.c (read_string): Correctly read the string.
11813
11814 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11815
11816         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11817         
11818         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11819         icalls.
11820         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11821
11822 2004-07-30  Martin Baulig  <martin@ximian.com>
11823
11824         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11825         Reflect latest symbol writer changes.   
11826
11827 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11828
11829         * object.c: always create an object if null is passed
11830         to Invoke() where a valuetype is expected.
11831
11832 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11833
11834         * marshal.c (mono_marshal_init): make managed
11835         signatures match native ones better for 64bits.
11836
11837 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11838
11839         * appdomain.c: hack to build correctly the private bin path on windows.
11840         Fixes bug #61991.
11841
11842 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11843
11844         * assembly.c: Load mscorlib from the correct framework directory
11845           (mono/<version>/mscorlib.dll).
11846         * appdomain.h: Added prototypes for new functions.
11847         * internals.h: Added some prototypes.
11848         * domain.c: When initializing the runtime, get from the executable and
11849           the configuration files the runtime version that the app supports.
11850           Added support methods for reading app.exe.config. Added list of versions
11851           supported by the JIT. Added two new methods: mono_init_from_assembly,
11852           which initializes the runtime and determines the required version from
11853           the provided exe file, and mono_init_version, which initializes
11854           the runtime using the provided version.
11855         * icall.c: Get machine.config from version-specific directory.
11856         * reflection.c: When generating an image, embed the version number
11857           of the current runtime.
11858
11859 2004-07-28  Dick Porter  <dick@ximian.com>
11860
11861         * socket-io.c
11862         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11863         returned sockaddr size before creating the remote address object.
11864         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11865         61608.
11866
11867 2004-07-28  Dick Porter  <dick@ximian.com>
11868
11869         * locales.c (string_invariant_compare_char): Fix invariant char
11870         compares between upper and lower cases.  Fixes bug 61458.
11871
11872 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11873         
11874         * marshal.c: actually cache stelem.ref wrappers.
11875         
11876 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11877
11878         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11879         sections and remove the mono_cli_rva_map () function.
11880
11881 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11882
11883         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11884         by Geoff Norton (<gnorton@customerdna.com>).
11885
11886 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11887
11888         * class.c: fix class loads for pointer types (typeof(int) !=
11889         typeof(int*)).
11890
11891 2004-07-27  Martin Baulig  <martin@ximian.com>
11892
11893         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11894         reading the debugging information from an external ".mdb" file.
11895
11896 2004-07-24  Martin Baulig  <martin@ximian.com>
11897
11898         * reflection.c (mono_image_get_type_info): Only write a class
11899         layout entry if we actually have a size or a packing size.
11900
11901 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11902
11903         * reflection.c (type_get_fully_qualified_name): 
11904         insert cast to get type checking of ?: with non-gcc compilers
11905
11906 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11907
11908         * rand.c: use g_getenv for both lookups of
11909         MONO_EGD_SOCKET
11910
11911 2004-07-17  Martin Baulig  <martin@ximian.com>
11912
11913         * reflection.c (mono_reflection_bind_generic_method_parameters):
11914         Set `gmethod->reflection_info'.
11915
11916 2004-07-17  Martin Baulig  <martin@ximian.com>
11917
11918         * class.c (mono_class_create_from_typedef): Insert the newly
11919         created class into the hash table before computing the interfaces
11920         since we could be called recursively.
11921
11922 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11923
11924         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11925         function to implement stelem.ref in managed code
11926         * class-internals.h, debug-helpers.c: a new wrapper type
11927         for the above.
11928
11929 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11930
11931         * gc.c: allow GC handles to work even when no GC is compiled in.
11932         Fix part of bug #61134 (GetAddrOfPinnedObject).
11933
11934 2004-07-13  Peter Williams  <peter@newton.cx>
11935  
11936         * process.c (complete_path): Make sure we don't attempt to execute
11937         directories.
11938  
11939 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11940
11941         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11942           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11943           and will add/subtract the hour if needed
11944
11945 2004-07-12  Martin Baulig  <martin@ximian.com>
11946
11947         * reflection.c (mono_field_get_object): If we have
11948         `field->generic_info', take the attributes from
11949         `field->generic_info->generic_type'.    
11950
11951 2004-07-12  Martin Baulig  <martin@ximian.com>
11952
11953         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11954         This function must be called before initializing the runtime.
11955         (mono_debug_init_1): New function; call this after initializing
11956         the runtime, but before loading the assembly.  It tells the
11957         debugger to load corlib and the builtin types.
11958
11959         * mono-debug-debugger.c: Did some larger changes in the debugging
11960         code; support recursive class declarations, make sure we actually
11961         add all classes.
11962
11963 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11964
11965         * debug-helpers.c: undo my previous patch and fixed the real issue in
11966         ../mini/exceptions-x86.c
11967
11968 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11969
11970         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11971         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11972         called from other .cctors.
11973
11974 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11975
11976         * loader.c: Removed the mono_loader_wine_init hack now that we are
11977         doing a managed version of Windows.Forms.
11978
11979 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11980
11981         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11982         threadpool.c, threads.c: remove static data from rootset.
11983
11984 2004-07-09  Dick Porter  <dick@ximian.com>
11985
11986         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11987         Don't do any more processing if the matched length was 0.  It was
11988         increasing the size of the string before.  Fixes bug 61167.
11989
11990 2004-07-09  Dick Porter  <dick@ximian.com>
11991
11992         * socket-io.h:
11993         * socket-io.c
11994         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11995         Add support for SO_PEERCRED if its available.
11996
11997 2004-07-09  Peter Bartok <pbartok@novell.com>
11998         * loader.c: winelib.exe.so error message is now only displayed if
11999         MONO_DEBUG is set. To help us avoid questions when people are trying
12000         out the new Managed.Windows.Forms.
12001
12002 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
12003
12004         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
12005         for isinst and castclass wrappers.
12006
12007         * class-internals.h icall.c: Move registration and lookup of JIT icalls
12008         to libmetadata from the JIT, so they could be used by the marshalling
12009         code and the interpreter.
12010
12011         * marshal.c: Register marshalling related JIT icalls here instead of
12012         in mini.c. Use CEE_MONO_ICALL instead of the family of 
12013         CEE_MONO_PROC<x> opcodes to call marshalling functions.
12014
12015         * metadata.h: Remove unneeded marshalling conversions.
12016
12017         * opcodes.c: Update for new opcodes.
12018         
12019 2004-07-08  Martin Baulig  <martin@ximian.com>
12020
12021         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
12022         (mono_debug_get_domain_data): Make this function static.
12023
12024 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
12025
12026         * gc.c, object.h: add nice GC handle API for embedders.
12027
12028 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
12029
12030         * reflection.c: more changes for the new api
12031
12032         * object.c: When we reflect on a field w/ a constant value, it
12033         will not have a memory location, so we must access metadata. Also,
12034         allow easier reading of strings so that we can read them from
12035         the constant data.
12036
12037         * class.c (mono_class_layout_fields): no need for literal fields here.
12038
12039         * class-internals.h: api changes for const fields
12040
12041         * icall.c (ves_icall_get_enum_info): use new apis for const fields
12042
12043 2004-07-06  Martin Baulig  <martin@ximian.com>
12044
12045         * mono-debug.h: Increment version number to 44.
12046
12047         * mono-debug.c (mono_debug_add_wrapper): The second argument is
12048         now a gpointer, rewrote this whole method.
12049
12050         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
12051         function.  Add information about the wrapper in a new "misc table".
12052
12053         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
12054         for the new misc table.
12055
12056 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
12057
12058         * metadata-internals.h image.c: Add a cache for helper signatures.
12059
12060         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
12061
12062 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
12063
12064         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
12065         delegates from a delegate. Fixes #61033.
12066         
12067         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
12068         marshalling of stringbuilder arrays. Fixes #59900.
12069
12070 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
12071
12072         * icall.c: Add EnumBuilder:setup_enum_type icall.
12073
12074 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
12075
12076         * icall.c: Added a new icall for the property version of
12077         OffsetOfStringData.
12078
12079 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
12080
12081         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
12082         it has a constant size across platforms.
12083
12084         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
12085         stack trace.
12086
12087 2004-06-29  Martin Baulig  <martin@ximian.com>
12088
12089         * mono-debug.c (mono_debug_add_method): Protect the whole function
12090         in mono_debugger_lock(), not just parts of it.
12091
12092 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
12093
12094         * reflection.c: make sure padding bytes in heaps are zeroed.
12095
12096 2004-06-24  David Waite  <mass@akuma.org>
12097
12098         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
12099         image.c, loader.c, locales.c, marshal.c, metadata.c,
12100         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
12101         string-icalls.c, threads.c: change to C90-style comments from C99 /
12102         C++ -style
12103
12104 2004-06-24  Dick Porter  <dick@ximian.com>
12105
12106         * threads.c
12107         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
12108         return createdNew.  Fixes bug 60412.
12109
12110         * threads-types.h: 
12111         * icall.c: Add createdNew parameter to CreateMutex icall
12112
12113 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
12114
12115         * reflection.c, object-internals.h: save default value in params.
12116
12117 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12118
12119         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
12120         no need to build a new path combining that with the application base.
12121         Fixes bug #60442.
12122
12123 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
12124
12125         * reflection.c: fixed minor standard compliance issues.
12126
12127 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
12128
12129         * reflection.c: fixed issue with encoding some custom attributes
12130         (arrays in properties and fields, bug #60411).
12131
12132 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12133
12134         * reflection.c: fix start address when copying the public key token.
12135
12136 2004-06-23  Martin Baulig  <martin@ximian.com>
12137
12138         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
12139         the `exc' object in a static object to put it into the GC's root set.
12140
12141 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
12142
12143         * reflection.c: make mono_reflection_setup_internal_class ()
12144         callable a second time to setup a new parent class.
12145
12146 2004-06-23  Dick Porter  <dick@ximian.com>
12147
12148         * threads.c: Check for WAIT_IO_COMPLETION return values.
12149
12150 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
12151
12152         * appdomain.c: Removed the g_free on the public key token. Now copy 
12153         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
12154         * assembly.c: Added public key token string value when loading 
12155         assemblies. Fix bug #60439.
12156         * icall.c: Added missing informations (like public key) in 
12157         GetReferencedAssemblies. Fix #60519.
12158         * image.h: Changed definition for public key token from const char*
12159         public_tok_value to guchar public_key_token [17];
12160         * reflection.c: Updated for changes to public key token.
12161
12162 2004-06-22  Lluis Sanchez Gual
12163
12164         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
12165         for the field in base classes.
12166
12167 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12168
12169         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
12170         mark headers as not supported, they are installed only for use by the
12171         debugger.
12172
12173 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
12174
12175         * *.c, *.h: avoid namespace pollution in public headers.
12176
12177 2004-06-21  Martin Baulig  <martin@ximian.com>
12178
12179         * exception.c (mono_get_exception_security): It's in
12180         "System.Security", not in "System".
12181
12182         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
12183         the exception classes.
12184
12185 2004-06-21  Martin Baulig  <martin@ximian.com>
12186
12187         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
12188         Protect the exception object from being finalized.
12189
12190 2004-06-21  Martin Baulig  <martin@ximian.com>
12191
12192         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
12193         public function.
12194
12195 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
12196
12197         * reflection.c: Load the assembly in mono_reflection_type_from_name,
12198         if it was not loaded before. Fix parts of #60439.
12199
12200 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
12201
12202         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
12203         code that was broken since Ben's change: wrappers are now
12204         dependent on the method signature only again.
12205
12206 2004-06-21  Martin Baulig  <martin@ximian.com>
12207
12208         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
12209         added interface support.
12210
12211 2004-06-21  Martin Baulig  <martin@ximian.com>
12212
12213         * class.c (mono_vtable_get_static_field_data): New public method.
12214
12215 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
12216
12217         * filewatcher.c : Windows build fix to be compliant with API changes.
12218
12219 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12220
12221         * class.h, class.c: more accessors.
12222         * metadata.h, metadata.c: prepare for hiding MonoType and
12223         MonoMethodSignature: people should use the accessors from now on
12224         outside of the tree.
12225
12226 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12227
12228         * *.c, *.h: more API cleanups.
12229
12230 2004-06-18  Jackson Harper  <jackson@ximian.com>
12231
12232         * assembly.c: Trace loading assemblies.
12233         * loader.c: Trace loading native libraries.
12234         * mono-config.c: Trace loading config files.
12235         
12236 2004-06-18  Dick Porter  <dick@ximian.com>
12237
12238         * locales.c: Tell ICU the lengths of strings, it can cope with
12239         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
12240
12241 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
12242
12243         * image.c: swapped name/filename;
12244
12245 2004-06-18  Martin Baulig  <martin@ximian.com>
12246
12247         * mono-debug-debugger.c (write_class): Write the parent class at
12248         the end of the header.
12249
12250 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
12251
12252         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
12253
12254 2004-06-17  Raja R Harinath  <rharinath@novell.com>
12255
12256         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
12257         (bundle_obj): New conditional define.
12258         (BUILT_SOURCES): Remove.
12259         ($(bundle_srcs)): Make parallel-make safe.
12260         (libmonoruntime_la_LIBADD): Make unconditional.
12261         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
12262         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
12263
12264 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
12265
12266         * culture-info-tables.h: It was inconsistent with the latest
12267           supp info files.
12268
12269 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
12270
12271         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
12272         be loaded.
12273
12274         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
12275         with gcc 2.95.
12276
12277 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
12278
12279         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
12280         cleaned up public header threads.h.
12281
12282 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
12283
12284         * Makefile.am, *.c, *.h: more API cleanups.
12285
12286 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
12287
12288         * Makefile.am: removed monosn from compilation.
12289         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
12290         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
12291         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
12292         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
12293         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
12294         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
12295
12296 2004-06-15  Jackson Harper  <jackson@ximian.com>
12297
12298         * assembly.c: Make locales lower case when searching the GAC for
12299         assemblies. gacutil will always make locales lowercase when
12300         installing so this effectively makes them case insensitive.
12301         
12302 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
12303
12304         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
12305         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
12306           parameter which allows to choose whether the wait can be interrupted or 
12307           not. Also added the method mono_monitor_enter(), which locks the monitor
12308           using an infinite wait and without allowing interruption.
12309           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
12310           interrupted.
12311         * object.h: Added new fields in MonoThread. suspend_event holds the event
12312           used to susped/resume the thread. synch_lock is the lock object to use for
12313           modifying the thread state.
12314         * threads.c: Use the new synch_lock object for locking, instead of "this",
12315           which can generate deadlocks.
12316           Moved thread state change in Thread.Sleep and Thread.Join from managed
12317           to unmanaged code. This avoids a deadlock when the thread was suspended
12318           just after acquiring the thread lock.
12319           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
12320           Implemented Thread.Suspend using an event instead of ThreadSuspend,
12321           which is not fully implemented in the io-layer.
12322         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
12323
12324 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
12325
12326         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
12327         threads-types.h: more API cleanups.
12328
12329 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
12330
12331         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
12332         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
12333         threadpool.c, threads.c: first pass at the exported API cleanup.
12334
12335 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
12336
12337         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
12338
12339 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12340
12341         * icall.c: added internalGetHome.
12342
12343 2004-06-14  Dick Porter  <dick@ximian.com>
12344
12345         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
12346         possible to return successfully when '.' or '..' were the only
12347         entries in a directory, but were skipped.  The MonoIOStat was not
12348         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
12349         Fixes bug 59574.
12350
12351 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
12352
12353         * reflection.c: make binaries run on .Net 1.1 by default.
12354
12355 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12356
12357         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
12358
12359 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
12360
12361         * marshal.c: keep track of struct size with explicit layout
12362         (bug #59979).
12363
12364 2004-06-12  Martin Baulig  <martin@ximian.com>
12365
12366         * mono-debug-debugger.c: Comment out a debugging g_message().
12367
12368 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12369
12370         * reflection.c, reflection.h: do not free custom attrs that are cached.
12371         * icall.c: use braces to make code clearer.
12372
12373 2004-06-11  Martin Baulig  <martin@ximian.com>
12374
12375         * class.h (MonoInflatedField): New type.
12376         (MonoClassField): Replaced `MonoType *generic_type' with
12377         `MonoInflatedField *generic_info'.
12378
12379         * icall.c
12380         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
12381
12382 2004-06-11  Martin Baulig  <martin@ximian.com>
12383
12384         * reflection.c (mono_image_create_method_token): Correctly encode
12385         varargs methods.
12386
12387 2004-06-11  Martin Baulig  <martin@ximian.com>
12388
12389         * metadata.c (mono_metadata_parse_method_signature): When parsing
12390         a MethodDef which has VarArgs, also set sentinelpos if we don't
12391         have any parameters.
12392
12393 2004-06-11  Martin Baulig  <martin@ximian.com>
12394
12395         * verify.c (mono_method_verify): In CEE_CALL, use
12396         mono_method_get_signature() to get the method's signature, unless
12397         we're a PInvoke method.
12398
12399 2004-06-10  Jackson Harper  <jackson@ximian.com>
12400
12401         * assembly.c: Use <path>/lib/mono/gac for the extra paths
12402         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
12403         logical name as the supplied path is just a prefix to the gac not
12404         the direct path to it.
12405         
12406 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
12407
12408         * reflection.c: make the token for a created method match
12409         the token of the MethodBuilder it was created from
12410         (IKVM requires this behaviour now).
12411
12412 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
12413
12414         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
12415         reflection.c, socket-io.c: leak fixes.
12416
12417 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
12418
12419         * icall.c: handle sentinel pos in vararg methods in position different
12420         from 0.
12421
12422 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12423
12424         * culture-info-tables.h: freshly generated.
12425
12426 2004-06-09  Martin Baulig  <martin@ximian.com>
12427
12428         * loader.c (mono_get_method_constrained): Call `mono_class_init
12429         (constrained_class)'.   
12430
12431 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
12432
12433         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
12434         any methods. Fixes #59629.
12435
12436 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12437
12438         * culture-info-tables.h: reflecting locale-builder updates.
12439
12440 2004-06-08  Dick Porter  <dick@ximian.com>
12441
12442         * object.h:
12443         * locales.c: Fixed compile warnings, including a real bug in
12444         CompareInfo_internal_compare.
12445         
12446 2004-06-08  Dick Porter  <dick@ximian.com>
12447
12448         * locales.c
12449         (ves_icall_System_Globalization_CompareInfo_internal_index):
12450         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12451         Double-check the resuls of usearches, because ICU currently
12452         ignores most of the collator settings here.  Fixes bug 59720.
12453         
12454 2004-06-08  Dick Porter  <dick@ximian.com>
12455
12456         * locales.c
12457         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12458         Fix memory leak and segfault-causing typo.  No idea how this one
12459         lasted so long without being noticed.
12460
12461 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
12462
12463         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
12464         any methods. Fixes #59629.
12465
12466 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12467
12468         * assembly.c:
12469         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12470         own the critical section before). Removed dead code (that's done
12471         in the preload hook).
12472
12473         (mono_assembly_load_with_partial_name): call the preload hook.
12474
12475 2004-06-08  Martin Baulig  <martin@ximian.com>
12476
12477         * metadata.c (mono_metadata_signature_alloc): Default
12478         `sentinelpos' to -1.
12479
12480         * reflection.c (mono_image_get_array_token): Likewise.
12481
12482 2004-06-08  Martin Baulig  <martin@ximian.com>
12483
12484         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12485
12486         * metadata.c (mono_metadata_parse_method_signature): When parsing
12487         a MethodDef which has VarArgs, set sentinelpos.
12488
12489         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12490         `gint16' since we're using -1 for non-varargs methods.
12491
12492         * reflection.c
12493         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12494         (method_encode_signature): Added varargs support.
12495         (method_builder_encode_signature): Likewise.
12496         (mono_image_get_varargs_method_token): New static method.
12497         (mono_image_create_method_token): New public method; this is
12498         called via an icall instead of mono_image_create_token() when
12499         calling a varargs method.       
12500
12501 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12502
12503         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12504
12505 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12506
12507         * culture-info-tables.h : Reflecting the latest locale-builder that
12508           fixed empty array representation ({} to {0}).
12509
12510 2004-06-07  Jackson Harper  <jackson@ximian.com>
12511
12512         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12513         looking up extra gac paths. This allows MONO_GAC_PATH to act
12514         exactly like a prefix.
12515         
12516 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12517
12518         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12519         type name before modifying it. Fixes #59405.
12520
12521 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12522
12523         * culture-info.h: added fields for "all datetime patterns".
12524         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12525           _construct_datetime_format ()): fill xxx_patterns fields.
12526         * object.h: added fields for "all datetime patterns" to
12527           MonoDateTimeFormatInfo.
12528         * culture-info-tables.h: reflecting locale-builder updates.
12529
12530 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12531
12532         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12533         the event has no add and remove methods. Fixes #59629.
12534
12535 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12536
12537         * object.c: Fixed possible integer overflow when allocating large
12538         strings.
12539
12540 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12541
12542         * culture-info-tables.h: reflecting locale-builder updates.
12543
12544 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12545
12546         * culture-info-tables.h: reflecting locale-builder updates.
12547
12548 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12549
12550         * culture-info-tables.h: reflecting locale-builder updates.
12551
12552 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12553
12554         * threads.c: Made Thread.Sleep abortable.
12555
12556 2004-06-02  Martin Baulig  <martin@ximian.com>
12557
12558         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12559
12560         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12561
12562 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12563
12564         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12565
12566 2004-05-30  Jackson Harper  <jackson@ximian.com>
12567
12568         * reflection.c: Do not hardcode assembly versions or public key
12569         tokens anymore. All of this except the corlib section was dead
12570         code anyways.
12571         
12572 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12573
12574         * object.c (mono_runtime_invoke_array): Automatically create boxed
12575         objects for byref valuetypes if needed. Fixes #59300.
12576         
12577         * object.c (mono_method_return_message_restore): Handle 
12578         MONO_TYPE_OBJECT as well.
12579
12580 2004-05-28  Jackson Harper  <jackson@ximian.com>
12581
12582         * reflection.c: The modified type encoding was causing build
12583         problems. Reverted for now.
12584         
12585 2004-05-28  Jackson Harper  <jackson@ximian.com>
12586
12587         * reflection.c/h: Take an assembly ref so that we dont create
12588         fully qualified names when encoding types in the same assembly as
12589         the custom attribute being emitted.
12590         * appdomain.c: Increment version number.
12591         
12592 2004-05-26  Duncan Mak  <duncan@ximian.com>
12593
12594         * icall.c
12595         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12596         Set the full version number (major, minor, build, revision).
12597
12598 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12599
12600         * marshal.c (emit_struct_conv): increment src/dst after blit
12601         (mono_marshal_get_managed_wrapper,
12602         mono_marshal_get_native_wrapper): make sure we have marshalling
12603         info before marshalling params (info computation affects
12604         blittable)
12605
12606         * class.c (class_compute_field_layout): correctly deal with
12607         blittable
12608         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12609         value types (as per what windows dows by default)
12610         (mono_class_setup_mono_type): System.ValueType is blittable
12611         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12612         blittable
12613
12614         * marshal.c (mono_marshal_load_type_info): flag types  as
12615         non-blittable if the native layout doesn't match the managed
12616         layout
12617
12618 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12619
12620         * appdomain.c: don't add stuff in the private search path that is
12621         above the application base. If application base is not set, there's
12622         no private search path.
12623
12624 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12625
12626         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12627         byref struct arguments in native->managed marshalling.
12628
12629 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12630
12631         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12632         cache methods using signature (special case for methods
12633         that are value type or string class)
12634         
12635         * image.c (mono_image_close): clean up allocated GSList's
12636         in runtime_invoke_cache.
12637
12638 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12639
12640         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12641         there's no MONO_CFG_DIR environment variable defined.
12642
12643 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12644
12645         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12646
12647 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12648
12649         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12650           is interrumped.
12651         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12652           before waiting for it, and call CloseHandle after the wait to unref it.
12653           This will make sure that handles are not disposed too early.
12654
12655 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12656
12657         * appdomain.c:
12658         * appdomain.h:
12659         * icall.c: removed
12660         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12661         needed now.
12662
12663         * object.c: se the application_base only for the domain that runs
12664         Main. Fixes bug #59216,
12665
12666 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12667
12668         * appdomain.c:
12669         * object.c: only the domain in which Main is run have
12670         SetupInformation.ConfigurationFile set, so moved a few lines from
12671         appdomain.c to object.c.
12672
12673 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12674
12675         * appdomain.c: we tried to load [name].(dll|exe), but according
12676         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12677         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12678         There's a test case attached to bug #58922.
12679
12680 2004-05-27  Dick Porter  <dick@ximian.com>
12681
12682         * icall.c:
12683         * file-io.c: Implemented icalls for locking and unlocking regions
12684         in a file.
12685         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12686         FALSE on error (fixes both compiler warning and real bug.)
12687
12688 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12689
12690         * culture-info-tables.h: reflecting locale-builder updates.
12691
12692           (Added missing ChangeLog entry for 05/26)
12693
12694 2004-05-27  Jackson Harper  <jackson@ximian.com>
12695
12696         * locales.c: Fix some cut and paste errors.
12697         
12698 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12699
12700         * mono-config.c: set the correct path for config. directory on windows.
12701
12702 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12703
12704         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12705           on win32.
12706
12707 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12708
12709         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12710         from pinvoke functions.
12711         
12712         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12713
12714 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12715
12716         * culture-info-tables.h: reflecting locale-builder updates.
12717
12718 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12719
12720         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12721         #59086.
12722
12723 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12724
12725         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12726         * icall.c: Modified icalls for RNG.
12727         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12728         Windows (CryptoAPI).
12729
12730 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12731
12732         * locales.c: Fix build.
12733
12734 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12735
12736         * culture-info-tables.h: reflecting locale-builder updates.
12737
12738 2004-05-25  Jackson Harper  <jackson@ximian.com>
12739
12740         * locales.c: When creating the current culture use the $LANGs
12741         specific culture. So DateTimeFormat and NumberFormat entries are created.
12742         
12743 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12744
12745         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12746         a char array as parameter.
12747
12748 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12749
12750         * image.c: In mono_image_open(), always use an absolute path name to
12751           look for already loaded images.
12752
12753 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12754
12755         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12756         missing in the windows build (like older cygwin include files).
12757
12758 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12759
12760         * icall.c: Fixed check for possible integer overflow in Buffer_
12761         BlockCopy icall. Replaced comments style // by /* */.
12762
12763 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12764
12765         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12766         
12767         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12768         check after MONO_VTADDR. Fixes pinvoke2.exe.
12769
12770         * marshal.h marshal.c metadata.h: Add beginnings of support for
12771         ftnptr -> delegate marshalling.
12772
12773 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12774
12775         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12776         * threads.c: Fix warnings.
12777
12778 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12779
12780         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12781         * icall.c: Registered icalls for Suspend and Resume.
12782         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12783           Thread.Abort.
12784         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12785         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12786         * process.c: Use WaitForSingleObjectEx.
12787         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12788           checkpoints.
12789         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12790           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12791           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12792           background threads. Added basic support for Abort in Windows.
12793           Start new threads using a managed delegate invoke wrapper. This wrapper
12794           has an interruption checkpoint that is needed since an interruption
12795           can be requested before the thread leaves the unmanaged code that starts 
12796           the thread.
12797         * marshal.c: Added interruption checkpoint after every native call, and
12798           also before managed calls for wrappers called from unmanaged code to
12799           go into managed code.
12800         * object.h: Added new field in MonoThread to keep track of interruption
12801           requests.
12802
12803 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12804
12805         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12806         calls.
12807
12808 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12809
12810         * appdomain.c:
12811         * assembly.c:
12812         * gc.c:
12813         * locales.c:
12814         * mono-config.c:
12815         * rand.c: getenv -> g_getenv (windows!)
12816
12817         * process.c: complete_path is also used on non-windows platforms.
12818
12819 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12820
12821         * icall.c: new signature for Process_Start.
12822
12823         * process.[ch]: new signature for Process_Start. If we're on windows
12824         and UseShellExecute is false, we have to search for the program by
12825         ourselves if we don't get a full path.
12826
12827 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12828
12829         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12830         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12831
12832 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12833
12834         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12835         Fixes bug #58373.
12836
12837 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12838
12839         * process.c: use double quotes to quote program name and arguments on
12840         windows. Fixes bug #58575.
12841
12842 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12843
12844         * file-io.c: don't return "." and ".." when using windows Find*File.
12845
12846 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12847
12848         * marshal.c: Don't pass wrappers to message init because method 
12849         addressed used to lookup metadata. part of remoting[2|3] fix.
12850
12851 2004-05-15  Jackson Harper  <jackson@ximian.com>
12852
12853         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12854         path is essentially the same as MONO_PATH except that it points to
12855         GACs instead of lib directories.
12856         * loader.h: The user gac is gone so we dont need function to
12857         enable/disable it.
12858         * mono-config.c: user gac option is now gone.
12859         
12860 2004-05-15  Jackson Harper  <jackson@ximian.com>
12861
12862         * culture-info.h: Make defines more consistent, add calendar data
12863         to the culture info table.
12864         * culture-info-tables.h: Add basic calendar data. Basically
12865         everyone gets default gregorian until all the data is
12866         updated.
12867         * locales.c: Use the new consistent defines. Set calendar data for
12868         culture info objects.
12869         * object.h: add a field for calendar data to CultureInfo
12870         
12871 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12872
12873         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12874         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12875         a signature.
12876         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12877         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12878         an extra param that is the pointer of the method to invoke. The IL for
12879         the invoke method is no longer specific to the method, but to the
12880         signature of the method. Thus, we can share the same code for multiple
12881         methods. This reduces the number of methods that have to be compiled.
12882
12883 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12884
12885         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12886
12887         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12888
12889         * icall.c: Optimize Buffer.BlockCopy.
12890
12891 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12892
12893         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12894         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12895         quote). Changed them to "MMMM yyyy".
12896
12897 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12898
12899         * rand.c
12900         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12901
12902 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12903
12904         * reflection.h: Updated after changes to managed structures.
12905
12906         * appdomain.c: Bump corlib version.
12907
12908 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12909
12910         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12911         windows.
12912
12913 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12914
12915         * Makefile.am: link to ../os/libmonoos.la on windows.
12916
12917         * assembly.c:
12918                 -If MONO_DEBUG, warn about non-existing directories in
12919                 MONO_PATH.
12920                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12921                 compile time variable.
12922                 -Removed init_default_path and call mono_set_rootdir from
12923                 libmonoos.a instead (windows only).
12924
12925         * assembly.h: declare mono_assembly_getrootdir().
12926
12927         * domain.c:
12928         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12929
12930         * loader.c: s/getenv/g_getenv/
12931
12932 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12933
12934         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12935
12936         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12937
12938         * metadata.h: Add new marshalling conversions.
12939
12940         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12941         function.
12942
12943         * reflection.c (mono_reflection_get_type): Lookup the type in all
12944         modules of a multi-module assembly. Fixes #58291.
12945
12946 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12947
12948         * threads.c: Before aborting a background, set the StopRequested
12949         state.  This avoids throwing the Abort exception.
12950         In mono_thread_manage, don't continue with the shutdown until all
12951         aborted threads have actually stopped.
12952
12953 2004-05-10  Jackson Harper  <jackson@ximian.com>
12954
12955         * locales.c: Remove the modifier from culture names.
12956         
12957 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12958
12959         * Makefile.am: monosn is not installed any more. It has been deprecated
12960         in favor of sn.
12961
12962 2004-05-07  Jackson Harper  <jackson@ximian.com>
12963
12964         * locales.c
12965         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12966         Fix array construction, add bailout if the length is 0.
12967
12968 2004-05-07  Dick Porter  <dick@ximian.com>
12969
12970         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12971         machine doesn't have a DNS entry.  Patch by Urs Muff
12972         (umuff@quark.com), fixes bug 57928.
12973
12974 2004-05-06  Jackson Harper  <jackson@ximian.com>
12975
12976         * reflection.c: Handle null PublicTokens properly. alloc mem for
12977         assembly names culture so we dont crash when freeing it.
12978         
12979 2004-05-06  Jackson Harper  <jackson@ximian.com>
12980
12981         * assembly.c: Check the usergac when loading with partial names.
12982         
12983 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12984
12985         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12986         does nothing for now (not required for Linux/Windows) but the class
12987         library can call it (and a newer or modified runtime could need it).
12988         * icall.c: Registred icall.
12989
12990 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12991
12992         * loader.c: prints a message on module loading error we set MONO_DEBUG
12993         environment variable.
12994
12995 2004-05-05  Jackson Harper  <jackson@ximian.com>
12996
12997         * appdomain.c: Handle PublicKeyToken=null properly.
12998         
12999 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
13000
13001         * environment.c|h: Added icall ves_icall_System_Environment_
13002         GetOSVersionString to get the current OS version as a string.
13003         * icall.c: Registred icall.
13004
13005 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
13006
13007         * object.c: in mono_object_get_virtual_method(), take into account that
13008         non-virtual methods don't have a slot in the vtable. Check needed when
13009         the object is a proxy.
13010
13011 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
13012
13013         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
13014         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
13015
13016         * object.c (mono_class_compute_gc_descriptor): Fix warning.
13017
13018         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
13019         passed when a valuetype is expected.
13020
13021         * object.c (mono_unhandled_exception): Only set the exit code if the
13022         exception happens in the main thread. Fixes thread5.exe.
13023
13024         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
13025         invalid names. Fixes #58047.
13026
13027 2004-05-03  Jackson Harper  <jackson@ximian.com>
13028
13029         * assembly.c: This line was committed accidently and is unneeded.
13030         
13031 2004-05-03  Jackson Harper  <jackson@ximian.com>
13032
13033         * icall.c: Add new icall for Assembly::LoadWithPartialName
13034         * assembly.c/.h: new function that probes the GAC to load partial
13035         assembly names by Paolo Molaro.
13036         
13037 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13038
13039         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
13040         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
13041         (type_get_fully_qualified_name): Added PublicKeyToken when building a
13042         full type name.
13043
13044 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13045
13046         * appdomain.c: fixed check for 'neutral' culture and removed warning.
13047         * reflection.c: fix bug when parsing a full type name and Version is not
13048         the last thing in the string.
13049
13050 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
13051
13052         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
13053         crashes when it is freed.
13054
13055 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13056
13057         * assembly.c: print the compat warning to stderr.
13058
13059 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
13060
13061         * assembly.c (mono_assembly_load_references): Add a compatibility
13062         hack to run old applications that might be still referencing the
13063         3300-based assemblies, only do this for System.xxx.
13064
13065 2004-05-01  Jackson Harper  <jackson@ximian.com>
13066
13067         * appdomain.c: If the culture is neutral we set it to "".
13068         
13069 2004-04-29  Jackson Harper  <jackson@ximian.com>
13070
13071         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
13072
13073 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
13074  
13075         * string-icalls.c: added low overhead function for copying chars
13076         * icall.c: added needed icall for the above function
13077  
13078 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13079
13080         * icall.c: fix return value of get_global_assembly_cache.  Implemented
13081         Environment.GetLogicalDrives.
13082
13083 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
13084
13085         * rand.c: try and talk to egd or prngd
13086         for random bytes if opening devices fail.
13087
13088 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
13089
13090         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
13091         alignment for the type using the native alignment of its members 
13092         instead of using klass->min_align.
13093
13094         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
13095
13096 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13097
13098         * file-io.c:
13099         * socket-io.c: added check for sys/aio.h.
13100
13101 2004-04-28  Dick Porter  <dick@ximian.com>
13102
13103         * threads.c: Don't abort a thread thats already aborting, when
13104         terminating everything.
13105
13106 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13107
13108         * icall.c: added 2 new async calls for Socket.
13109
13110         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
13111         IO on *nix systems.
13112
13113         * threadpool.c: removed unused variable.
13114
13115 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
13116
13117         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
13118
13119 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
13120
13121         * locales.c: put back string_invariant_tolower () and
13122         string_invariant_toupper ().
13123
13124 2004-04-26 David Waite <mass@akuma.org>
13125
13126         * file-io.h:
13127         * socket-io.h:
13128         * threads.h:
13129         * unicode.h: remove comma from end of enumeration declarations
13130
13131 2004-04-26 David Waite <mass@akuma.org>
13132
13133         * debug-mono-symfile.h:
13134         * decimal.c:
13135         * mono_debug.h:
13136         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
13137
13138
13139 2004-04-26  Jackson Harper  <jackson@ximian.com>
13140
13141         * appdomain.c: Increment version number.
13142         
13143 2004-04-26  Jackson Harper  <jackson@ximian.com>
13144
13145         * appdomain.c: Set assembly references public token value when
13146         PublicKeyToken is specified, not the hash_value. Free public token
13147         values when free assembly name data. Previously the public key
13148         token was hex decoded, however we are using hex encoded public key
13149         tokens, so this is not neccasary.
13150         * assembly.c: Lookup assemblies in the gac if their public token
13151         value is set. Add function to allow enabling user gac
13152         lookups. Specify whether or not the assembly was loaded from the
13153         GAC. Compare full assembly names when checking the cache for
13154         assemblies (Temporarily disabled see comment in code). Remove
13155         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
13156         specifies trace-loader they get extra info to stdout on the
13157         loading of assemblies.
13158         * image.h: Add a field for an assembly references public token
13159         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
13160         whether an assembly has been loaded from the GAC.
13161         * image.c: Remove a corlib -> mscorlib name mapping.
13162         * loader.h: Add function to enable/disable the user gac.
13163         * mono-config.c: Check if the usergac is enabled in the config
13164         file.
13165         * icall.c: New icall to determine whether or not an assembly has
13166         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
13167         * tabldefs.h: Add constant for assemblyref flag that specifies a
13168         full public key is used instead of a public token.
13169         * reflection.c: Remove mscorlib -> corlib mappings. Set
13170         PublicTokenValue instead of hash value. This value is a hex
13171         string so it does not need to be expanded.
13172
13173 2004-04-26  Martin Baulig  <martin@ximian.com>
13174
13175         * mono-debug-debugger.c (mono_debugger_initialize): Set
13176         `mono_debugger_initialized' before calling mono_debug_lock().
13177
13178 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
13179
13180         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
13181           InternalToUpper/InternalToLower.
13182         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
13183           removed invariant culture shortcut.  This is now done in managed code.
13184         * locales.c: (string_invariant_toupper/tolower) removed.
13185
13186 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13187
13188         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
13189         Added Poll internal call.
13190
13191         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
13192         call for Poll. Select was too heavy for polling a single socket.
13193
13194         * threadpool.[ch]: added mono_threadpool_cleanup.
13195         * threads.c: use it. Don't use Thread_Abort on windows.
13196
13197 2004-04-23  Martin Baulig  <martin@ximian.com>
13198
13199         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
13200
13201 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
13202
13203         * icall.c: Registred new icalls for key pair protection and added an
13204         icall for Environment.GetFolderPath on Windows.
13205         * security.c|h: Added new icalls for key pair protection.
13206
13207 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13208
13209         * socket-io.c: don't display the non-supported family warning for known
13210         families. Now this is not displayed on windows when checking support
13211         for IPv4/IPv6.
13212
13213 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13214
13215         * class.c: don't display the layout warning for static fields.
13216
13217 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
13218
13219         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
13220         * locales.c, locales.h: Added new icalls for culture-specific
13221         Char.ToLower and Char.ToUpper.
13222
13223 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13224
13225         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
13226         by David Waite.
13227
13228 2004-04-20  Martin Baulig  <martin@ximian.com>
13229
13230         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
13231         of the type name before passing it to mono_reflection_type_from_name().
13232
13233 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
13234
13235         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
13236         encodings here. Fixes #56965.
13237
13238 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
13239
13240         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13241         fix test on strstr result not that I can see anything that
13242         relies on the result.
13243
13244 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
13245
13246         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
13247         Fixes #57081.
13248
13249         * marshal.c (mono_marshal_get_string_encoding): New helper function.
13250
13251         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
13252         function to determine which marshalling to use for strings. Fixes
13253         #56965.
13254
13255         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
13256
13257         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
13258
13259 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
13260
13261         * icall.c: #include mono-config.h
13262
13263 2004-04-15  Jackson Harper  <jackson@ximian.com>
13264
13265         * culture-info-tables.h: Fix date formats for en-US culture.
13266         
13267 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
13268
13269         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
13270         ThreadPool.SetMinThreads.
13271         * threadpool.c: Implemented ThreadPool.GetMinThreads and
13272         ThreadPool.SetMinThreads.
13273
13274 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
13275
13276         * mono-config.c: also load the .config file in the directory
13277         where the assembly was found.
13278
13279 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
13280
13281         * assembly.c: load per-assembly config files.
13282         * icall.c: decrapified code to get the config dir and moved to
13283         mono-config.c.
13284         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
13285         per-assembly config files. When doing a dll map lookup give precedence
13286         to the per-assembly data.
13287
13288 2004-04-14  Martin Baulig  <martin@ximian.com>
13289
13290         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
13291         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
13292         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
13293
13294         * mono-debugger-debugger.c: While the debugger is locked, remember
13295         whether the symbol tables have changes and send one single
13296         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
13297
13298 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
13299
13300         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
13301
13302         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
13303         function.
13304
13305         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
13306         account when marshalling string arrays. Fixes #56965.
13307
13308 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
13309
13310         * icall.c: Add new icalls mapping for security.
13311         * security.c|h: Add internal calls for WindowsIdentity,
13312         WindowsImpersonationContext and WindowsPrincipal.
13313
13314 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
13315
13316         * class.c: Added comment to ensure the System.MonoDummy class
13317         is removed when no longer necessary
13318
13319 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
13320
13321         * appdomain.c: Pass arguments to the bootstraping exceptions to
13322         minimize JITed methods at boot
13323
13324         * metadata.c (mono_exception_from_name_two_strings): Allow for the
13325         second string to be null.
13326
13327         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13328         Change the protocol to minimize the JIT methods at startup.  Now
13329         it Returns the internal codepage, if the value of "int_code_page"
13330         is 1 at entry, and we can not compute a suitable code page
13331         number, returns the code page as a string.
13332
13333 2004-04-13  Jackson Harper  <jackson@ximian.com>
13334
13335         * culture-info-tables.h: Fix number of decimal digits for all
13336         english locales.
13337
13338 2004-04-13  Jackson Harper  <jackson@ximian.com>
13339
13340         * icall.c: Clairfy out of sync error message. It is not always
13341         your corlib that is out of sync.
13342
13343 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
13344
13345         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
13346         properties when only the set accessor is overriden. Fixes #55874.
13347
13348 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
13349
13350         * assembly.c (mono_assembly_load_references): Make this thread safe.
13351         Fixes #56327.
13352
13353 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
13354
13355         * monosn.c: Add missing initialization calls.
13356
13357 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
13358
13359         * locales.c:
13360         ves_icall_System_Globalization_CultureInfo_construct_number_format
13361         Fix g_assert so it compiles on fussier compilers re int/ptr
13362         mismatch
13363
13364 2004-04-08  Dick Porter  <dick@ximian.com>
13365
13366         * socket-io.h:
13367         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
13368         53992.  Also rearrange the code so that the internal calls return
13369         an error value and exceptions are thrown from managed code.
13370
13371         * icall.c: Add type info to the socket icalls.
13372
13373 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13374
13375         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
13376         owes me a beer.
13377
13378 2004-04-07  Martin Baulig  <martin@ximian.com>
13379
13380         * class.c (mono_class_from_generic_parameter): Don't default
13381         `klass->parent' to `mono_defaults.object_type'.
13382
13383 2004-04-07  Martin Baulig  <martin@ximian.com>
13384
13385         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13386         `param->pklass->reflection_info'.       
13387
13388 2004-04-07  Jackson Harper  <jackson@ximian.com>
13389
13390         * culture-info-tables.h: Fix date separator symbol.
13391         
13392 2004-04-07  Martin Baulig  <martin@ximian.com>
13393
13394         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
13395         from System.Type to System.MonoType.
13396
13397 2004-04-07  Martin Baulig  <martin@ximian.com>
13398
13399         * reflection.h
13400         (MonoReflectionGenericParam): Added `has_reference_type' and
13401         `has_value_type' fields.
13402
13403         * reflection.c (mono_image_get_generic_param_info): Encode the
13404         correct flags if we have the `class' or `struct' constraint.
13405
13406 2004-04-07  Martin Baulig  <martin@ximian.com>
13407
13408         * reflection.h
13409         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
13410
13411 2004-04-07  Jackson Harper  <jackson@ximian.com>
13412
13413         * appdomain.c: Revert extra patches, just wanted to bump the
13414         version number.
13415         
13416 2004-04-07  Jackson Harper  <jackson@ximian.com>
13417
13418         * Makefile.am: Add culture-info private headers.
13419         * icall.c: Add new icalls for contructing locales.
13420         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
13421         * locales.h: Declare new culture info construction methods.
13422         * object.h: Add new fields used to avoid the CultureMap to
13423         MonoCultureInfo.
13424         * culture-info.h: Definition of structs used in the culture info
13425         tables.
13426         * culture-info-tables.h: Autogenerated tables that contain culture
13427         info data. This file was generated with the locale-builder tool.
13428         * appdomain.c: Incement corlib version number.
13429         
13430 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
13431
13432         * appdomain.c: (mono_runtime_init) move mono_thread_init
13433         to before mono_object_new calls so critical sections
13434         are initialized before use.
13435
13436 2004-04-07  Martin Baulig  <martin@ximian.com>
13437
13438         * icall.c
13439         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
13440         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
13441         (ves_icall_MonoGenericParam_initialize): Removed.
13442         (monogenericparam_icalls): Removed.
13443         (generictypeparambuilder_icalls): Added new table for
13444         System.Reflection.Emit.GenericTypeParameterBuilder.
13445
13446         * reflection.c
13447         (mono_reflection_define_generic_parameter): Removed.
13448         (mono_reflection_initialize_generic_parameter): This is now called
13449         from GenericTypeParameterBuilder's .ctor.
13450
13451 2004-04-06  Martin Baulig  <martin@ximian.com>
13452
13453         * class.c (mono_class_init): Don't inflate nested classes in a
13454         generic instance.
13455         (mono_type_get_name_recurse): Include the generic arguments for
13456         generic instances and generic type declarations.
13457         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
13458         (_mono_class_get_instantiation_name): Removed.
13459         (mono_class_create_generic): Always use `gklass->name' as our name.
13460
13461         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
13462
13463         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
13464         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
13465         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13466         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13467         closed generic methods here.
13468
13469         * reflection.c
13470         (mono_reflection_generic_inst_get_nested_types): Removed.
13471         (inflate_mono_method): Copy the generic parameters from the
13472         MonoMethodHeader into out MonoGenericMethod.
13473
13474 2004-04-06  Martin Baulig  <martin@ximian.com>
13475
13476         * row-indexes.h
13477         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13478
13479         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13480
13481         * reflection.c (build_compressed_metadata): If we have any entries
13482         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13483         set the header version to 1.1.
13484
13485 2004-04-06  Martin Baulig  <martin@ximian.com>
13486
13487         * class.c (mono_class_init): If we're a generic instance,
13488         initialize our nested classes, too.
13489         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13490         suffix. 
13491
13492 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13493
13494         * process.c: quote the argument passed to the shell on windows.
13495
13496 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13497
13498         * threads.c (mono_alloc_special_static_data): Allow this to be
13499         called during startup.
13500
13501 2004-04-02  Martin Baulig  <martin@ximian.com>
13502
13503         * icall.c
13504         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13505
13506 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13507
13508         * icall.c: Fix build.
13509
13510 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13511
13512         * Makefile.am: Added security.c|h.
13513         * icall.c: Added icall for get_UserName;
13514         * security.c: New file for security related icalls. Added function
13515         get_UserName for System.Environment (fix #56144).
13516         * security.h: New. Header file for security.c
13517
13518 2004-04-02  Dick Porter  <dick@ximian.com>
13519
13520         * icall.c: Deleted the icalls that were obsoleted some time ago
13521         by the ICU string code, and which were mixed into the icall
13522         rearranging.  Fixes bug 55969.
13523
13524         * string-icalls.h: 
13525         * string-icalls.c: Deleted the code that those icalls reference.
13526
13527 2004-04-01  Martin Baulig  <martin@ximian.com>
13528
13529         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13530
13531         * class.c (mono_class_from_generic_parameter): Don't set 
13532         TYPE_ATTRIBUTE_INTERFACE.
13533         (my_mono_class_from_generic_parameter): Likewise.
13534
13535 2004-04-01  Martin Baulig  <martin@ximian.com>
13536
13537         * loader.c (find_method): Added an optional `MonoClass *ic'
13538         argument to search in a specific interface.
13539         (mono_get_method_constrained): New public function.
13540
13541 2004-04-01  Martin Baulig  <martin@ximian.com>
13542
13543         * reflection.c (mono_image_get_generic_field_token): Use the
13544         `handleref' cache here.
13545
13546 2004-04-01  Martin Baulig  <martin@ximian.com>
13547
13548         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13549
13550         * reflection.c (create_generic_typespec): Use the `typespec' hash
13551         here, not the `typeref' one.    
13552
13553 2004-04-01  Martin Baulig  <martin@ximian.com>
13554
13555         * class.c (mono_class_inflate_generic_type): Moved the
13556         functionality into a new static inflate_generic_type() which
13557         returns NULL if it didn't do anything.  Only increment the
13558         `mono_stats.inflated_type_count' if we actually inflated
13559         something.
13560         (mono_class_get_full): Check the classes type to see whether we
13561         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13562
13563 2004-04-01  Jackson Harper  <jackson@ximian.com>
13564
13565         * reflection.c: Set culture for assembly references.
13566         
13567 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13568
13569         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13570
13571 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13572
13573         * assembly.c:
13574         (do_mono_assembly_open): the critical section also covers
13575         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13576
13577 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13578
13579         * threads.c:
13580         (mono_manage_threads): abort the background threads when finishing.
13581         Fixes bug #47232.
13582
13583 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13584
13585         * gc.c: only close the done_event handle if there was no timeout.
13586         C-ified comments.
13587
13588 2004-03-30  Martin Baulig  <martin@ximian.com>
13589
13590         * icall.c (icall_entries): It's called "System.Activator", not
13591         "System.Activation".    
13592
13593 2004-03-30  Martin Baulig  <martin@ximian.com>
13594
13595         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13596         (mono_class_create_from_typespec): Likewise.
13597
13598 2004-03-30  Martin Baulig  <martin@ximian.com>
13599
13600         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13601         `has_ctor_constraint' and `initialized'.
13602
13603 2004-03-30  Martin Baulig  <martin@ximian.com>
13604
13605         * reflection.c (encode_new_constraint): New static function to add
13606         the constructor constraint attribute to a type parameter.
13607         (encode_constraints): Call encode_new_constraint() if necessary.
13608
13609         * reflection.h
13610         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13611
13612         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13613         
13614 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13615
13616         * reflection.c, icall.c: add support for pinning variables. 
13617
13618 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13619
13620         * marshal.c (mono_marshal_get_managed_wrapper):
13621         init bool local with zero rather than null.
13622
13623 2004-03-29  Martin Baulig  <martin@ximian.com>
13624
13625         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13626         the "official" behavior here.
13627         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13628
13629 2004-03-29  Martin Baulig  <martin@ximian.com>
13630
13631         * icall.c: Reflect latest API changes.
13632
13633 2004-03-29  Martin Baulig  <martin@ximian.com>
13634
13635         * loader.c (mono_get_method_from_token): Also call
13636         mono_metadata_load_generic_params () for abstract and interface
13637         methods; replace the type arguments in the method signature with
13638         the ones which are loaded from the metadata.
13639
13640 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13641
13642         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13643         of the lock is not the current thread. MS.NET don't do it, in spite of
13644         what the documentation says. See bug #56157.
13645
13646 2004-03-28  Martin Baulig  <martin@ximian.com>
13647
13648         * class.c (mono_class_init): Don't call init_properties() and
13649         init_events() for generic instances; set `prop->parent' when
13650         inflating properties.
13651
13652         * reflection.c (mono_generic_inst_get_object): Call
13653         `mono_class_init (ginst->klass)'.
13654         (mono_type_get_object): Only create a MonoGenericInst if your
13655         generic type is a TypeBuilder.
13656         (do_mono_reflection_bind_generic_parameters): Only set
13657         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13658
13659 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13660
13661         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13662         Fixes #56091.
13663
13664 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13665
13666         * icall.c: added Kill_internal icall.
13667         * process.[ch]: added Kill_internal icall.
13668
13669 2004-03-25  Martin Baulig  <martin@ximian.com>
13670
13671         * class.h (MonoStats): Added `generic_instance_count',
13672         `inflated_method_count', `inflated_type_count' and
13673         `generics_metadata_size'.       
13674
13675 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13676
13677         * reflection.c: no warnings now.
13678
13679 2004-03-25  Martin Baulig  <martin@ximian.com>
13680
13681         * class.c (mono_class_get_full): New public function; does a
13682         mono_class_get(), but also takes a `MonoGenericContext *'.
13683
13684         * loader.c (mono_field_from_memberref): Renamed to
13685         `field_from_memberref', made static and added `MonoGenericContext *'
13686         argument.
13687         (mono_field_from_token): Added `MonoGenericInst *' argument.
13688         (method_from_memberef): Likewise.
13689         (mono_get_method_from_token): Likewise.
13690         (mono_get_method_full): New public function; does a
13691         mono_get_method(), but also takes a `MonoGenericContext *'.
13692
13693         * verify.c (mono_method_verify): Get the method's generic context
13694         and pass it to mono_field_from_token(), mono_get_method_full() and
13695         mono_class_get_full().
13696
13697 2004-03-25  Martin Baulig  <martin@ximian.com>
13698
13699         * class.c (mono_class_inflate_generic_type): Take a
13700         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13701         `MonoGenericMethod *'.
13702
13703 2004-03-25  Martin Baulig  <martin@ximian.com>
13704
13705         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13706         instead of the MonoGenericMethod here.
13707
13708 2004-03-25  Martin Baulig  <martin@ximian.com>
13709
13710         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13711         each time we create a new MonoGenericInst, we also create a new
13712         context which points back to us.
13713
13714         * class.c (inflate_method): Use `ginst->context' instead of
13715         creating a new context.
13716
13717         * loader.c (method_from_memberref): Use
13718         `klass->generic_inst->context' instead of creating a new context.
13719
13720 2004-03-25  Martin Baulig  <martin@ximian.com>
13721
13722         * class.h (MonoGenericContext): New struct.
13723         (MonoGenericMethod): Removed `generic_inst'.
13724
13725         * class.c (mono_class_inflate_generic_method): Take a
13726         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13727
13728 2004-03-25  Martin Baulig  <martin@ximian.com>
13729
13730         * loader.h (MonoMethodInflated): New typedef.
13731
13732         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13733         `generic_param_count' consume just 30 bits, added `is_inflated'
13734         and `has_type_parameters' flags (one bit each).
13735
13736         * class.c (mono_class_inflate_generic_method): Create a
13737         MonoMethodInflated instead of a MonoMethodNormal and set
13738         `is_inflated' in the method signature.
13739
13740         * class.h (MonoGenericMethod): Removed `generic_method'.
13741
13742 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13743
13744         * image.c: Make sure the name of a MonoImage is always an absolute path.
13745           This fixes bug #54415.
13746
13747 2004-03-24  Martin Baulig  <martin@ximian.com>
13748
13749         * class.c (mono_class_setup_vtable): If we're a generic instance,
13750         use our generic type's vtable size.
13751
13752 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13753
13754         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13755         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13756         problems.
13757
13758 2004-03-23  Martin Baulig  <martin@ximian.com>
13759
13760         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13761         `MonoEvent *events'.
13762
13763         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13764         (typebuilder_icalls): Added "get_event_info"; calls
13765         mono_reflection_event_builder_get_event_info(). 
13766
13767         * reflection.c (mono_reflection_generic_inst_initialize): Added
13768         `MonoArray *events'.
13769         (mono_reflection_event_builder_get_event_info): New function.
13770
13771 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13772
13773         * object.h: add mono_type_initialization_init
13774
13775         * object.c (mono_runtime_class_init): 
13776         implement class constructor synchronization rules
13777         to cope with threading issues.  
13778         add mono_type_initialization_init
13779
13780         * appdomain.c (mono_runtime_init): call 
13781         mono_type_initialization_init
13782
13783         * class.h: removing initializing field from MonoVTable
13784
13785 2004-03-23  Martin Baulig  <martin@ximian.com>
13786
13787         * class.c (my_mono_class_from_generic_parameter): Use
13788         `param->name' if it's not NULL. 
13789
13790 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13791
13792         * class.c: do not insert non-virtual methods in the vtable.
13793         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13794         that means the method is non-virtual. This never would have
13795         happened before.
13796
13797 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13798
13799         * profiler.c: Added lock for accessing coverage_hash.
13800
13801 2004-03-22  Martin Baulig  <martin@ximian.com>
13802
13803         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13804         `method->method->signature->generic_param_count != 0' to make it
13805         work for interface methods.
13806
13807 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13808
13809         * process.c: quote the string passed to the shell using g_shell_quote.
13810
13811 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13812
13813         * threads.c:
13814         (mono_threads_manage): don't remove the finalizer thread and self
13815         from the threads hash table so that mono_thread_manage can be called
13816         more than once.
13817
13818 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13819
13820         * process.c: quote the arguments when UseShellExecute is true. Fixes
13821         bug #55790.
13822
13823 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13824
13825         * threads.c: set mono_thread_detach as a cleanup routine for every
13826         thread. This way it's always executed upon thread termination, either
13827         aborted or finished normally. No more xsp hangs!
13828
13829 2004-03-17  Martin Baulig  <martin@ximian.com>
13830
13831         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13832         `int count_nested' and a `MonoType **nested'.
13833
13834         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13835         most of the functionality into a new static
13836         do_mono_reflection_bind_generic_parameters() and don't take a
13837         `MonoType *nested_in' argument any more.  Don't compute nested
13838         types here.
13839         (mono_reflection_generic_inst_get_nested_types): New public method
13840         to get nested types.
13841
13842         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13843         we're a nested class.
13844
13845         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13846         mono_reflection_generic_inst_get_nested_types() to compute the
13847         nested types.
13848
13849 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13850
13851         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13852         descriptive error message under windows.
13853         
13854 2004-03-17  Martin Baulig  <martin@ximian.com>
13855
13856         * class.c (dup_type): Added `const MonoType *original' argument;
13857         copy the attrs from the original type.
13858
13859 2004-03-17  Martin Baulig  <martin@ximian.com>
13860
13861         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13862         `m->generic_inst_cache' here.
13863
13864 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13865
13866         * exception.h exception.c: Add stack_overflow_exception.
13867
13868 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13869
13870         * threadpool.c:
13871         (overlapped_callback): call SetEvent *after* invoking the callback.
13872         No need to call CloseHandle.
13873
13874 2004-03-16  Martin Baulig  <martin@ximian.com>
13875
13876         * reflection.c (mono_image_get_fieldref_token): Take a
13877         `MonoReflectionField *' instead of a `MonoClassField *' and a
13878         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13879
13880 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13881
13882         * appdomain.c: don't add the culture to the filename we're looking for
13883         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13884
13885 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13886
13887         * locales.c: don't ignore symbols when doing case insensitive compares.
13888         Thanks Dick! Fixes bug #54046.
13889
13890         * threads.c: surround 'threads' usage with enter/leave in
13891         mono_thread_manage.
13892
13893 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13894
13895         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13896         implicitly marshalled as [Out]. Fixes #55450.
13897
13898         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13899         an exception.
13900
13901 2004-03-16  Martin Baulig  <martin@ximian.com>
13902
13903         * class.c (mono_class_from_generic_parameter): Use the actual
13904         parameter name. 
13905
13906 2004-03-16  Martin Baulig  <martin@ximian.com>
13907
13908         * reflection.c (type_get_signature_size): New static function.
13909         Compues the size of the type in a method signature.
13910         (method_get_signature_size): New static function; calls
13911         type_get_signature_size() to compute the actual size of the
13912         method's signature.
13913         (method_encode_signature): Use method_get_signature_size() to get
13914         the signature's size rather than using `nparams * 10'.
13915
13916 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13917
13918         * file-io.h: define here WapiOverlapped on windows. I don't want the
13919         regular OVERLAPPED one.
13920
13921         * file-io.c:
13922         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13923         Disabling AIO on windows.
13924
13925 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13926
13927         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13928         bug #55385.
13929
13930 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13931
13932         * appdomain.c: upgraded corlib version.
13933
13934         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13935         and BeginWrite. Allow opening files for asynchrnous operations.
13936
13937         * file-io.h: new struct that maps FileStreamAsyncResult.
13938         * icall.c: added new icalls.
13939         * process.[ch]: support setting child process environment variables
13940         and use the SHELL or COMSPEC when UseShellExecute is true.
13941
13942         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13943         callback for async. IO is here and also BindHandle.
13944
13945         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13946         from here.
13947
13948 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13949
13950         * reflection.c (create_custom_attr): Allow len == 0.
13951
13952         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13953         computation on big-endian machines.
13954
13955 2004-03-13  Martin Baulig  <martin@ximian.com>
13956
13957         * class.h (MonoGenericInst): Added `int count_ifaces'.
13958
13959         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13960         `ginst->count_ifaces' instead `klass->interface_count' since we
13961         may get called before the vtable is created.
13962
13963         * loader.c (mono_method_get_param_names): If we're a generic
13964         instance, return and don't initialize the class.
13965
13966         * reflection.c (mono_reflection_setup_generic_class): Don't call
13967         ensure_runtime_vtable().
13968         (mono_reflection_bind_generic_parameters): Set
13969         `ginst->count_ifaces'.
13970
13971 2004-03-11  Jackson Harper <jackson@ximian.com>
13972
13973         * icall.c:
13974         * unicode.c:
13975         * unicode.h: Remove unused System.Char icalls.
13976         
13977 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13978
13979         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13980         code when we P/Invoke the first library in Windows.Forms, instead
13981         of when we first open the assembly.
13982
13983         * assembly.c: Drop the lookup from here.
13984
13985 2004-03-10  Martin Baulig  <martin@ximian.com>
13986
13987         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13988         class for properties, fields and events.  Finally fixes #54945.
13989
13990 2004-03-10  Martin Baulig  <martin@ximian.com>
13991
13992         * metadata.c (mono_metadata_class_equal): New static function;
13993         checks whether two generic instances or two generic parameters are
13994         equal.
13995         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13996         compare classes.        
13997
13998 2004-03-10  Martin Baulig  <martin@ximian.com>
13999
14000         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
14001
14002         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
14003         argument and write it into the `reflection_info' field.
14004
14005         * icall.c
14006         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
14007         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
14008
14009 2004-03-09  Jackson Harper  <jackson@ximian.com>
14010
14011         * char-conversions.h: use 8 bits for numeric data its all we need
14012         * icall.c: numeric data is only 8 bits now.
14013
14014 2004-03-09  Martin Baulig  <martin@ximian.com>
14015
14016         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
14017
14018         * class.c (init_properties, init_events): Initialize the new
14019         `parent' field.
14020
14021         * reflection.c (typebuilder_setup_properties): Likewise.
14022         (typebuilder_setup_events): Likewise.
14023
14024         * reflection.h (MonoEventInfo): Replaced `parent with
14025         `declaring_type' and `reflected_type'.
14026
14027         * icall.c (ves_icall_get_property_info): Distinguish between
14028         declaring and reflected type.
14029         (ves_icall_get_event_info): Likewise.
14030
14031 2004-03-09  Martin Baulig  <martin@ximian.com>
14032
14033         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
14034         (ves_icall_Type_GetField): Correctly set field->klass.
14035
14036 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
14037
14038         * loader.h: Fix warning.
14039
14040 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
14041
14042         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
14043         library routine if present.  Notice that it will still continue
14044         executing even if its missing, for those working on the Gtk#
14045         edition of Windows.Forms.
14046
14047         * assembly.c (do_mono_assembly_open): If loading the
14048         System.Windows.Forms call mono_loader_wini_init.
14049
14050 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
14051
14052         * class.h: Added MonoRemoteClass struct.
14053         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
14054         function for MonoStrings.
14055         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
14056         Added internal call for getting the proxy type.
14057         * marshal.c: Get the type of transparent proxies from its remote_class.
14058         Added methods that generate the IL for type checks and casts:
14059         mono_marshal_get_isinst, mono_marshal_get_castclass, 
14060         mono_marshal_get_proxy_cancast.
14061         * marshal.h: Declaration of the previous new methods.
14062         * object.c: Added new moethods for creating and updating MonoRemoteClass
14063         instances: mono_remote_class, mono_upgrade_remote_class, 
14064         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
14065         * verify.c: FIx transparent_proxy_fields layout.
14066         * appdomain.c: Bump corlib version.
14067
14068 2004-03-04  Jackson Harper  <jackson@ximian.com>
14069
14070         * icall.c: Add icall to access char conversion tables.
14071         * char-conversions.h: Character conversion tables.
14072         * Makefile.am: Add char-conversions.h private header file.
14073         
14074 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
14075
14076         * appdomain.c (unload_thread_main): Increase unloading timeout to
14077         10 sec as a temporary workaround for Nant problems.
14078
14079 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
14080
14081         * gc.c: Add checks for GC_enable and GC_disable.
14082
14083         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
14084         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
14085         (bug #54988).
14086         
14087 2004-02-27  Martin Baulig  <martin@ximian.com>
14088
14089         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14090         `MonoReflectionType *' instead of a `MonoType *'.
14091
14092 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
14093
14094         * gc.c (run_finalize): Avoid finalizing the object representing the
14095         finalizer thread.
14096         (finalizer_thread): Fix warning.
14097
14098 2004-02-25  Martin Baulig  <martin@ximian.com>
14099
14100         * class.c (_mono_class_get_instantiation_name): Added `int offset'
14101         argument for nested types.
14102         (mono_class_create_generic): Added support for nested generictypes.
14103
14104         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
14105         `GList *nested'.
14106
14107         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
14108
14109         * reflection.c (method_encode_signature): Increase the minimum
14110         value of `size' from 10 to 11.
14111         (mono_reflection_bind_generic_parameters): Take `int type_argc'
14112         and `MonoType **types' arguments instead of the `MonoArray
14113         *types'; added `MonoType *nested_in'.  Recursively instantiate
14114         nested classes. 
14115
14116 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
14117
14118         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
14119         stack_overflow_ex members which are used by exception handling.
14120
14121         * appdomain.c (mono_runtime_init): Initialize the new members.
14122
14123         * gc.c (mono_gc_enable): New helper function.
14124         * gc.c (mono_gc_disable): New helper function.
14125
14126 2004-02-23  Martin Baulig  <martin@ximian.com>
14127
14128         * icall.c: I must have been really stupid - make it actually work
14129         this time ;-)
14130
14131 2004-02-23  Martin Baulig  <martin@ximian.com>
14132
14133         * loader.c (method_from_memberref): Only inflate the method if
14134         it's in another klass.
14135
14136 2004-02-23  Martin Baulig  <martin@ximian.com>
14137
14138         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
14139         (mono_class_init): If we're a generic instance and an interface,
14140         compute `class->interface_id'; also create `class->interfaces'
14141         here and inflate them.
14142
14143         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
14144         `ginst->is_open'.
14145         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
14146
14147         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
14148
14149 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
14150
14151         * reflection.c (method_encode_code): Improved the error message
14152         generated by the exception.
14153
14154 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14155
14156         * icall.c: Martin did not do what he said in the ChangeLog for
14157         2004-02-18, but put back the changes for properties and events.
14158         Commenting those changes out again and adding comment to bug #54518.
14159         
14160         * process.c: removed warning.
14161
14162 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
14163
14164         * marshal.c (emit_struct_conv): Print an error message instead of
14165         asserting when a type does not have the StructLayout attribute.
14166
14167 2004-02-20  Martin Baulig  <martin@ximian.com>
14168
14169         * reflection.c (mono_type_get_object): Also use the cache for
14170         generic instances.
14171         (mono_reflection_bind_generic_parameters): Always compute
14172         `ginst->ifaces'.        
14173
14174 2004-02-20  Martin Baulig  <martin@ximian.com>
14175
14176         * class.h (MonoGenericMethod): Removed `klass'.
14177
14178         * class.c (mono_class_inflate_generic_method): Added `MonoClass
14179         *klass' argument.
14180
14181 2004-02-20  Martin Baulig  <martin@ximian.com>
14182
14183         * reflection.c (method_encode_methodspec): Actually use the
14184         uninflated signature for the memberref.
14185
14186 2004-02-20  Martin Baulig  <martin@ximian.com>
14187
14188         * class.h (MonoGenericMethod): Removed `declaring'.
14189
14190         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
14191         is NULL, compute it here.
14192
14193 2004-02-20  Martin Baulig  <martin@ximian.com>
14194
14195         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
14196
14197         * metadata.c (mono_metadata_generic_inst_hash): New method.
14198         (mono_metadata_generic_inst_equal): New method.
14199
14200         * reflection.c (mono_reflection_bind_generic_parameters): Use the
14201         `klass->image->generic_inst_cache' cache to avoid creating
14202         duplicate MonoGenericInst's.
14203
14204         * class.c (mono_class_inflate_generic_type): Use the cache.
14205
14206 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
14207
14208         * object.c: fixed gc descriptor calculation for embedded valuetypes.
14209
14210 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14211
14212         * icall.c: added Socket.WSAIoctl icall.
14213
14214         * socket-io.[ch]: implemented
14215         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
14216
14217 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
14218
14219         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
14220
14221 2004-02-18  Urs C Muff  <umuff@quark.com>
14222
14223         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
14224         this work on PPC and other big-endian architectures.
14225
14226         * debug-mono-symfile.h: Prepended the names of all the `guint32'
14227         fields with an underscore to make sure they're only accessed by
14228         the read32() macro.
14229
14230 2004-02-18  Martin Baulig  <martin@ximian.com>
14231
14232         * icall.c: Put the klass->refclass changes back for methods and
14233         fields, but not for properties and events.  We're currently not
14234         distinguishing between DeclaringType and ReflectedType for
14235         properties and events, that's what caused the regressions.
14236
14237 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14238
14239         * object.c:
14240         (mono_async_result_new): the handle can be NULL.
14241
14242         * threadpool.c: Use an event instead of a semaphore, don't initialize
14243         it until needed. This saves quite a few semaphores from being created
14244         when using the threadpool.
14245
14246 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
14247
14248         * object.c (mono_string_is_interned_lookup): Fix interning of long
14249         strings. Fixes #54473.
14250
14251         * domain.c (ldstr_equal): Optimize if the two strings are equal.
14252
14253         * icall.c: Revert the klass->refclass changes since they introduce
14254         regressions (bug #54518).
14255
14256 2004-02-18  Martin Baulig  <martin@ximian.com>
14257
14258         * class.c (mono_class_init): If we're a generic instance and don't
14259         come from a TypeBuilder, inflate our members here.
14260         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
14261         (mono_class_create_generic): New public method.
14262         (mono_class_initialize_generic): Removed.
14263         (get_instantiation_name): Renamed to
14264         _mono_class_get_instantiation_name() and made it public.
14265
14266 2004-02-18  Martin Baulig  <martin@ximian.com>
14267
14268         * class.c (mono_class_inflate_generic_type): Clear the new
14269         instance's `nginst->klass' when inflating a generic instance.
14270         (mono_class_is_subclass_of): Added (basic) support for generic
14271         instances.
14272
14273 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
14274
14275         * appdomain.h, domain.c: use a MonoCodeManager instead of a
14276         MonoMempool to hold compiled native code.
14277
14278 2004-02-17  Martin Baulig  <martin@ximian.com>
14279
14280         * class.h (MonoDynamicGenericInst): Added `count_properties' and
14281         `properties'.
14282
14283         * reflection.c (mono_reflection_generic_inst_initialize): Added
14284         `MonoArray *properties' argument.
14285
14286         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
14287
14288 2004-02-17  Martin Baulig  <martin@ximian.com>
14289
14290         * icall.c (ves_icall_Type_GetFields): Renamed to
14291         ves_icall_Type_GetFields_internal() and added a
14292         `MonoReflectionType *rtype' argument; pass it to
14293         mono_field_get_object() to set the field's "reflected" type.
14294         (ves_icall_Type_GetConstructors): Likewise.
14295         (ves_icall_Type_GetEvents): Likewise.
14296         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
14297         argument; pass it to mono_method_get_object() to set the method's
14298         "reflected" type.       
14299
14300 2004-02-17  Martin Baulig  <martin@ximian.com>
14301
14302         * class.h (MonoDynamicGenericInst): New type.
14303         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
14304
14305         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
14306         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
14307         (ves_icall_MonoGenericInst_GetFields): New interncall.
14308
14309         * class.c (mono_class_from_generic): Don't call
14310         mono_class_initialize_generic() if this is a dynamic instance;
14311         ie. it's being created from a TypeBuilder.
14312         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
14313         `class->byval_arg.type'.
14314
14315         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
14316         to `inflate_method' and made static.
14317         (mono_reflection_inflate_field): Removed.
14318         (mono_reflection_generic_inst_initialize): New public method.
14319
14320         * reflection.h (MonoReflectionGenericInst): Removed `methods',
14321         `ctors' and `fields'; added `initialized'.
14322
14323 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
14324
14325         * debug-helpers.c (mono_method_full_name): Fix output for empty
14326         namespaces.
14327
14328 2004-02-12  Martin Baulig  <martin@ximian.com>
14329
14330         * class.h (MonoClassField): Added `MonoType *generic_type'.
14331
14332         * reflection.c (mono_image_get_fieldref_token): Added support for
14333         instantiated generic types.
14334         (field_encode_inflated_field): Removed.
14335         (mono_image_get_inflated_field_token): Removed.
14336         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
14337
14338         * reflection.h (MonoReflectionInflatedField): Removed.
14339
14340 2004-02-12  Martin Baulig  <martin@ximian.com>
14341
14342         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
14343         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
14344
14345         * reflection.c (mono_image_get_methodspec_token): Take a
14346         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
14347         (mono_image_create_token): Check whether we have a
14348         `method->signature->gen_method' and call
14349         mono_image_get_methodspec_token() if appropriate.
14350         (inflated_method_get_object): Removed.
14351         (mono_reflection_bind_generic_method_parameters): Return a
14352         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
14353         (mono_reflection_inflate_method_or_ctor): Likewise.
14354
14355         * reflection.h (MonoReflectionInflatedMethod): Removed.
14356
14357 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
14358
14359         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
14360         for custom valuetype marshalling.
14361
14362         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
14363
14364 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14365
14366         * icall.c: fixed WSAGetLastError_internal name.
14367
14368 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
14369
14370         * threads.c (mono_thread_attach): Allow this to be called multiple
14371         times for a thread.
14372         
14373         * threads.c (build_wait_tids): Do not wait for ourselves.
14374
14375         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
14376         appdomain list is empty.
14377
14378         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
14379         memory returned by mono_string_builder_to_utf16, since it points into
14380         managed memory. Thanks to Bernie Solomon for noticing this.
14381
14382         * icall.c: Add AppDomainSetup icalls.
14383
14384         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
14385
14386         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
14387         types.
14388
14389         * reflection.c (reflection_methodbuilder_to_mono_method): Save
14390         custom attributes to the method_aux struct. Also fix array indexes etc.
14391
14392         * loader.c (mono_method_get_param_names): Make dynamic case work again.
14393         
14394 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
14395
14396         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
14397         (both static and runtime) and reduce startup time.
14398
14399 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
14400
14401         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
14402         AsAny marshalling conversion instead of crashing.
14403
14404         * marshal.c: Fix warnings.
14405
14406 2004-02-09  Martin Baulig  <martin@ximian.com>
14407
14408         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
14409
14410         * reflection.h (MonoReflectionInflatedMethod): Removed the
14411         `declaring' field, it's now in the unmanaged MonoGenericMethod.
14412
14413         * reflection.c (method_encode_methodspec): Removed the `method'
14414         argument; we get it from `gmethod->declaring'.
14415         (inflated_method_get_object): Removed the `declaring' argument.
14416
14417 2004-02-09  Martin Baulig  <martin@ximian.com>
14418
14419         * class.h (MonoGenericMethod): New type.
14420         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
14421         `generic_method'.
14422
14423         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
14424         a `MonoGenericMethod *gen_method' one.
14425
14426         * class.c (mono_class_inflate_generic_type): Take an additional
14427         `MonoGenericMethod * argument.  This is only non-NULL if we're
14428         inflating types for a generic method.   
14429         (mono_class_inflate_generic_signature): Renamed to
14430         inflate_generic_signature() and made static; take a
14431         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14432         (inflate_generic_header): Take a `MonoGenericMethod *' argument
14433         instead of a `MonoGenericInst *' one.
14434         (mono_class_inflate_generic_method): Likewise.
14435
14436         * reflection.c (encode_generic_method_sig): Take a
14437         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14438         (method_encode_methodspec): Likewise.
14439         (inflated_method_get_object): Likewise. 
14440
14441         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
14442         field with a `MonoGenericMethod *gmethod' one.  
14443
14444 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
14445
14446         * class.h (mono_class_has_parent): add parens to expansion
14447         so you can ! this.
14448
14449 2004-02-08  Martin Baulig  <martin@ximian.com>
14450
14451         * image.h (MonoImage): Removed `generics_cache'.
14452
14453         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
14454         instead of a `MonoType *' argument; removed the `inflate_methods'
14455         argument.  Don't inflate methods here.
14456
14457         * loader.c (find_method): If it's a generic instance, call
14458         mono_class_init() on the `sclass->generic_inst->generic_type'.
14459
14460         * metadata.c (mono_type_size): Make this work on uninitialized
14461         generic instances; call it on the `ginst->generic_type's class.
14462
14463         * reflection.c (mono_reflection_bind_generic_parameters): Call
14464         mono_class_from_generic() to create the `ginst->klass'.
14465
14466 2004-02-08  Martin Baulig  <martin@ximian.com>
14467
14468         * class.h (MonoClass): Changed type of `generic_inst' from
14469         `MonoType *' to `MonoGenericInst *'.
14470
14471 2004-02-08  Martin Baulig  <martin@ximian.com>
14472
14473         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14474         mono_type_get_object(), this is now creating a `MonoGenericInst'
14475         for MONO_TYPE_GENERICINST.
14476         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14477         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14478
14479         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14480         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14481         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14482         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14483         and reflected type.
14484
14485         * reflection.h (MonoReflectionInflatedMethod): Removed
14486         `declaring_type' and `reflected_type'.
14487
14488 2004-02-08  Martin Baulig  <martin@ximian.com>
14489
14490         * class.h (MonoGenericInst): Added `MonoType *parent' and
14491         `MonoType **ifaces'.
14492
14493         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14494         `parent' and `interfaces'.
14495
14496         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14497         `MonoType *' argument and return a `MonoType *'.
14498
14499         * icall.c
14500         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14501         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14502
14503 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14504
14505         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14506         valuetype marshalling.
14507
14508 2004-02-06  Martin Baulig  <martin@ximian.com>
14509
14510         * class.c
14511         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14512         (my_mono_class_from_generic_parameter): Likewise.
14513
14514 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14515
14516         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14517         contents of the symbol files lazily.
14518
14519         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14520
14521         * threads.h threads.c icall.c: New icalls for getting and setting the
14522         threads name.
14523
14524 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14525
14526         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14527         Raise an exception when the domain is not found.
14528
14529 2004-02-03  Martin Baulig  <martin@ximian.com>
14530
14531         * reflection.c (mono_image_get_methodspec_token): Use the
14532         uninflated signature; fixes gen-33.
14533
14534 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14535
14536         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14537         the finalizer code can use thread functionality.
14538
14539         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14540         the finalizer thread.
14541
14542         * threads.c: Make some functions more robust.
14543
14544         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14545
14546         * metadata.h: Add new marshalling conventions.
14547
14548         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14549         stringbuilder marshalling. Fixes #53700.
14550
14551         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14552
14553         * reflection.c (mono_image_get_type_info): Save declarative security
14554         info.
14555
14556         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14557         unmanaged fields as well.
14558
14559         * appdomain.c: Bump corlib version.
14560
14561 2004-02-01  Martin Baulig  <martin@ximian.com>
14562
14563         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14564         method type arguments.  
14565
14566 2004-01-30  Duncan Mak  <duncan@ximian.com>
14567
14568         * marshal.h: Add prototype for
14569         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14570         and
14571         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14572         fix the build.
14573
14574 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14575
14576         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14577         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14578
14579 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14580
14581         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14582         custom marshalling of valuetypes.
14583
14584         * marshal.c: Fix some warnings.
14585
14586 2004-01-29  Martin Baulig  <martin@ximian.com>
14587
14588         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14589         for generic method parameters.
14590
14591         * reflection.c (method_encode_methodspec): Write the uninflated
14592         signature into the methodspec table.
14593         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14594         is always the uninflated method.
14595         (reflection_methodbuilder_to_mono_method): Copy the generic
14596         parameters from the MethodBuilder into `header->gen_params'.
14597
14598 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14599
14600         * class.c (mono_class_from_generic_parameter): Fix warning.
14601
14602 2004-01-27  Martin Baulig  <martin@ximian.com>
14603
14604         * class.c (mono_class_from_generic_parameter): Don't create
14605         `klass->methods' here.  
14606
14607 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14608
14609         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14610         extension since it does not work with libraries named lib<FOO>.dll.so.
14611
14612 2004-01-25  Martin Baulig  <martin@ximian.com>
14613
14614         * class.c (mono_class_inflate_generic_type): Added support for
14615         MONO_TYPE_GENERICINST.
14616
14617         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14618         inflate methods on open constructed types.      
14619
14620 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14621
14622         * object.c: fire ProcessExit event in the root AppDomain after running
14623         Main. Fixes bug #53299.
14624
14625 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14626
14627         * socket-io.c: include the new socket-wrappers.h header.
14628         Use the wrappers instead of the unix socket functions to make the code
14629         more clear.
14630
14631 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14632
14633         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14634
14635         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14636         Fixes #22532.
14637
14638 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14639
14640         * reflection.c (mono_image_create_pefile): Handle the case when the
14641         entry point is not a MethodBuilder.
14642
14643         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14644         field to ReflectionMethod since it is not allways a builder.
14645
14646         * reflection.c (type_get_fully_qualified_name): New helper function to
14647         return the fully qualified name of a type.
14648
14649         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14650         type name for custom marshallers.
14651
14652         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14653
14654         * class.c (mono_class_setup_vtable): If a parent class already 
14655         implements an interface, use the implementing methods from that class.
14656         Fixes #53148.
14657
14658 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14659
14660         * threadpool.c: just return instead of ExitThread to allow for thread
14661         clean up earlier.
14662
14663 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14666         when closing resource modules.
14667
14668         * reflection.c (mono_image_create_pefile): Handle the case when the
14669         entry point is not a MethodBuilder.
14670
14671         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14672         field to ReflectionMethod since it is not allways a builder.
14673
14674 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14675
14676         * marshal.c (mono_marshal_get_managed_wrapper): 
14677         mono_marshal_alloc takes native int so CONV_I
14678         the arg for 64bits.
14679
14680 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14681
14682         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14683         tokens in the cattr table. Fixes #53108.
14684
14685 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14686
14687         * loader.c: don't trim ".dll" before looking up in the config file.
14688         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14689
14690 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14691
14692         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14693         Return the module which contains the resource as well.
14694         (ves_icall_System_Reflection_Module_Close): New icall.
14695
14696         * appdomain.c: Bump corlib version number.
14697
14698         * image.c (mono_image_addref): New public function.
14699
14700         * assembly.c: Call mono_image_addref.
14701
14702         * reflection.c (mono_module_get_object): Increase reference count of 
14703         the image.
14704
14705         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14706         Fixes #22532.
14707
14708         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14709         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14710         proper exceptions on DllImport problems.
14711
14712 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14713
14714         * class.c, metadata.c: eliminate CSIZE macro.
14715
14716 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14717
14718         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14719         * object.h: Added async_callback field in MonoAsyncResult.
14720         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14721         * verify.c: Added async_callback in MonoAsyncResult layout.
14722
14723 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14724
14725         * reflection.c (mono_reflection_get_custom_attrs): Add support
14726         for Modules.
14727
14728 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14729
14730         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14731         marshalling.
14732         (mono_marshal_method_from_wrapper): Add null pointer check.
14733
14734 2004-01-16  Martin Baulig  <martin@ximian.com>
14735
14736         * debug-mono-symfile.h: Set version number to 36 and reflect
14737         latest symbol writer changes.
14738
14739 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14740
14741         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14742         multi-dimensional arrays.
14743         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14744         (mono_class_from_mono_type): Use bounded_array_class_get.
14745         
14746         * class.c (mono_bounded_array_class_get): New function which takes
14747         a 'bounded' bool argument to distinguish vectors from one dimensional
14748         arrays.
14749
14750         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14751         bounded_array_class_get if the array has bounds.
14752
14753         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14754         Search modules loaded using AssemblyBuilder:AddModule as well.
14755
14756 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14757
14758         * appdomain.c: increased corlib version.
14759         * filewatcher.c: removed g_print.
14760         * icall.c:
14761         (get_property_info): only allocate what is actually requested.
14762         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14763
14764 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14765
14766         * Makefile.am: added filewatcher.[ch]
14767         * filewatcher.[ch]: FileSystemWatcher runtime support.
14768         * icall.c: added new FSW icalls.
14769
14770 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14771
14772         * string-icalls.c: fix stringbuilder regression as suggested by
14773         Iain McCoy <iain@mccoy.id.au>.
14774
14775 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14776
14777         * process.c (process_read_stringtable_block): Recognize '007f' as
14778         a language neutral stringtable block.
14779
14780 2004-01-12  Patrik Torstensson
14781
14782         * object.h (MonoStringBuilder) : Changed layout to support our
14783         new stringbuilder class.
14784         * marshal.c: Change marshalling to support the new layout of 
14785         string builder.
14786         * appdomain.c: increased version number because new layout of
14787         string builder.
14788
14789 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14790
14791         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14792         assembly name as an string instead of an AssemblyName, since it is
14793         easier to extract info from it.
14794
14795         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14796         the culture subdirectories too. Fixes #52231.
14797
14798 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14799
14800         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14801         It takes 2 new parameters with an optional name for the method to look
14802         for and case ignoring info.
14803
14804         * threadpool.c: removed unused variable.
14805
14806 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14807
14808         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14809         It takes 2 new parameters with an optional name for the property to look
14810         for and case ignoring info.
14811         Fixes bug #52753.
14812
14813 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14814
14815         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14816         Fix #52451.
14817
14818 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14819
14820         * appdomain.c:
14821         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14822         Fixes bug #52630.
14823
14824 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14825
14826         * reflection.c: Add support for more than one unmanaged resource.
14827
14828         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14829         in field->def_value, as done in all other cases.
14830
14831         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14832         TypeBuilders.
14833
14834         * reflection.c (mono_reflection_create_runtime_class): Remove 
14835         errorneous assignment to klass->element_class, since it is already
14836         done in mono_reflection_setup_internal_class.
14837
14838 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14839
14840         * gc.c: added missing LeaveCriticalSection.
14841         * icall.c: indented a couple of lines.
14842         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14843         if we call EndInvoke inside a callback. Fixes bug #52601.
14844
14845 2004-01-07  Martin Baulig  <martin@ximian.com>
14846
14847         * mono-debug-debugger.h
14848         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14849
14850 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14851
14852         * appdomain.c: Use messages in NotImplementedException.
14853
14854         * exception.c (mono_get_exception_not_implemented): Now this takes
14855         a message argument.
14856
14857         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14858         exception instead of g_asserting an aborting when something is not
14859         implemented.
14860
14861         Add some inline docs.
14862
14863 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14864
14865         * reflection.h: Update after changes to object layout.
14866
14867         * reflection.c: Implement saving of unmanaged aka win32 resources.
14868
14869         * appdomain.c: Bump version number.
14870
14871         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14872         Handle missing domains gracefully.
14873
14874 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14875
14876         * file-io.c : On Windows, there are much more invalid_path_chars.
14877
14878 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14879
14880         * class.h, object.c: prepare for GetType () speedup.
14881
14882 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14883
14884         * profiler.c: workaround for --profile null reference exception on
14885           cygwin. Patch by Patrik Torstensson.
14886
14887 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14888
14889         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14890         make work for unaligned access.
14891
14892 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14893
14894         * class.c: small cleanup (class->fields [i] -> field).
14895         * image.c: check address of metadata is valid.
14896
14897 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14898
14899         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14900         search the list of loaded assemblies.
14901
14902         * reflection.c (mono_reflection_type_from_name): Use 
14903         mono_assembly_loaded instead of mono_image_loaded.
14904
14905         * reflection.c: Fix warnings.
14906
14907 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14908
14909         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14910         is dynamic. This is needed since an assembly can contain both dynamic and
14911         non-dynamic images.
14912
14913         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14914         assembly->dynamic.
14915
14916         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14917
14918         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14919         to store modules loaded using AddModule.
14920
14921         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14922         on Modules.
14923
14924         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14925
14926         * reflection.c (mono_image_fill_export_table_from_module): New function to
14927         fill out the EXPORTEDTYPES table from a module.
14928
14929         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14930         into a separate function. Also handle loaded non-dynamic modules.
14931
14932         * reflection.c (mono_image_basic_init): Fix memory allocation.
14933
14934         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14935
14936         * assembly.c (mono_assembly_load_references): Make this public.
14937
14938 2003-12-19  Martin Baulig  <martin@ximian.com>
14939
14940         * class.c (mono_class_initialize_generic): Made this static, take
14941         a `MonoGenericInst *' instead of a `MonoClass *'.
14942         (mono_class_from_generic): Call mono_class_initialize_generic()
14943         unless we're already initialized or being called from
14944         do_mono_metadata_parse_generic_inst().
14945
14946         * class.h (MonoGenericInst): Added `initialized' and
14947         `init_pending' flags.
14948
14949         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14950         `mono_class_init (gklass)' or mono_class_initialize_generic()
14951         here; set `generic_inst->init_pending' while parsing the
14952         `type_argv'.
14953
14954 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14955
14956         * locales.c: include string.h for memxxx prototypes
14957
14958 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14959
14960         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14961         constructor when accessing literal fields.
14962
14963 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14964
14965         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14966
14967         * reflection.c (assembly_add_resource_manifest): New function to fill
14968         the MANIFESTRESOURCE table.
14969
14970         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14971
14972         * reflection.h: Update to changes in class layout.
14973
14974         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14975         Reenable call to mono_runtime_is_shutting_down ().
14976
14977         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14978         determine if the runtime is shutting down.
14979
14980 2003-12-16  Jackson Harper <jackson@ximian.com>
14981
14982         * icall.c: comment out call to mono_runtime_is_shutting_down to
14983         fix build.
14984         
14985 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14986
14987         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14988         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14989
14990 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14991
14992         * reflection.c: move definition of swap_with_size
14993         to before its first call
14994
14995 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14996
14997         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14998
14999         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
15000         icall.
15001
15002         * object.c: Fix warnings.
15003
15004         * icall.c (ves_icall_Type_Get...): Only consider inherited static
15005         members if FlattenHierarchy is set.
15006
15007         * reflection.c (mono_image_add_decl_security): New function to emit
15008         declarative security.
15009
15010         * reflection.h reflection.c: Add support for declarative security.
15011
15012         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
15013         
15014 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
15015
15016         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
15017         
15018         * appdomain.c verify.c: Moved corlib version checking into its own
15019         function in appdomain.c since it needs to create vtables etc.
15020
15021 2003-12-13  Patrik Torstensson <p@rxc.se>
15022
15023         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
15024         instead of unwrapped server.
15025
15026 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
15027
15028         * verify.c (check_corlib): Fix field index.
15029
15030 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
15031
15032         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
15033         GetGacPath icall.
15034
15035 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
15036
15037         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
15038         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
15039         cope with sizeof(size_t) != sizeof(guint32).
15040
15041 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15042
15043         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
15044         in case of failure.
15045
15046 2003-12-10  Mark Crichton <crichton@gimp.org>
15047
15048         * icall.c: removed the GetNonZeroBytes.  We now handle this case
15049         in managed code.
15050
15051         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
15052
15053 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
15054
15055         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
15056         marked as deleted.
15057
15058 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
15059
15060         * verify.c (check_corlib): Handle the case when the version field is 
15061         initialized by a static constructor.
15062
15063 2003-12-08  Patrik Torstensson  <p@rxc.se>
15064
15065     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
15066
15067 2003-12-08  Martin Baulig  <martin@ximian.com>
15068
15069         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
15070         a MonoReflectionGenericParameter, also take the parameter index
15071         and name as arguments.
15072         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
15073         (ves_icall_MonoGenericParam_initialize): New interncall.
15074         (ves_icall_Type_make_byref_type): New interncall.
15075
15076         * reflection.h (MonoReflectionGenericParam): Derive from
15077         MonoReflectionType, not just from MonoObject.  Added `refobj' and
15078         `index' fields.
15079
15080         * reflection.c (mono_reflection_define_generic_parameter): Create
15081         and return a new MonoReflectionGenericParam; don't initialize the
15082         constraints here.
15083         (mono_reflection_initialize_generic_parameter): New public method;
15084         initializes the constraints and creates the `param->pklass'.
15085
15086 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
15087
15088         * reflection.h reflection.c: Use the new fields 'num_types', 
15089         'num_fields' and 'num_methods' to track the number of types etc.
15090
15091         * verify.c (check_corlib): Check corlib version number.
15092
15093 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
15094
15095         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
15096         function works on all methods.
15097
15098 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
15099
15100         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
15101         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
15102         the custom_type_info flag of the transparent proxy.
15103         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
15104         objects that supports IRemotingTypeInfo.
15105         * object.h: Added custom_type_info field in transparent proxy.
15106
15107 2003-12-06  Martin Baulig  <martin@ximian.com>
15108
15109         * class.c (mono_class_create_from_generic): Removed.
15110         (mono_class_from_generic): Check `ginst->klass' before doing
15111         anything else.  This is important to fully support "recursive"
15112         generic types.
15113
15114         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
15115         empty `generic_inst->klass' before doing anything else.
15116
15117 2003-12-06  Dick Porter  <dick@ximian.com>
15118
15119         * verify.c: 
15120         * object.h:
15121         * icall.c:
15122         * locales.c: Use C structs to access class fields.  Don't do a
15123         conversion between MonoString and UChar because both are
15124         platform-endian UTF-16.  Compare now takes startindex and count
15125         parameters.  Add a char overload for IndexOf.  Speed up the
15126         invariant string IndexOf.
15127
15128 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
15129
15130         * Makefile.am (monosn_LDADD): Fix parallel build.
15131
15132 2003-12-04  Martin Baulig  <martin@ximian.com>
15133
15134         * icall.c
15135         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15136         (ves_icall_Type_make_array_type): New interncall.       
15137
15138 2003-12-04  Martin Baulig  <martin@ximian.com>
15139
15140         * locales.c: also change it in the !HAVE_ICU case.
15141
15142 2003-12-04  Dick Porter  <dick@ximian.com>
15143
15144         * icall.c:
15145         * locales.c: construct_compareinfo is now in CompareInfo, not
15146         CultureInfo.
15147
15148 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
15149
15150         * image.c (mono_image_load_file_for_image): Cache loaded images in the
15151         image->files array.
15152
15153         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
15154         table as well.
15155
15156         * assembly.c (mono_assembly_load_references): Only load references
15157         once.
15158
15159         * class.c (mono_class_from_name): Avoid linear search of the 
15160         EXPORTEDTYPE table.
15161
15162         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
15163
15164 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
15165
15166         * image.h (MonoImage): Add 'field_cache' field.
15167
15168         * loader.c (mono_field_from_token): Cache field lookups.
15169         
15170         * reflection.c (mono_module_get_object): Fix name property.
15171
15172         * icall.c (ves_icall_get_enum_info): Update after changes to 
15173         mono_metadata_get_constant_index ().
15174
15175         * icall.c: Get rid of get_type_info icall, use a separate icall for
15176         each type property to avoid needless memory allocations. Fixes #51514.
15177
15178         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
15179         to avoid needless binary searches.
15180
15181         * class.c (class_compute_field_layout): Move the initialization of
15182         field->def_value to mono_class_vtable ().
15183
15184         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
15185         non-corlib types.
15186
15187         * object.c (mono_object_allocate): Make it inline.
15188
15189         * object.c (mono_object_allocate_spec): Make it inline.
15190         
15191 2003-12-02  Dick Porter  <dick@ximian.com>
15192
15193         * locales.c (create_NumberFormat): NumberFormatInfo construction.
15194         Patch by Mohammad DAMT (mdamt@cdl2000.com).
15195
15196 2003-12-01  Dick Porter  <dick@ximian.com>
15197
15198         * threads.c: Fix signature and call in CreateMutex and
15199         CreateEvent.
15200
15201 2003-12-01  Dick Porter  <dick@ximian.com>
15202
15203         * icall.c: 
15204         * locales.c: Implement string compares and searching
15205
15206         * object.h: Add extra Thread field
15207
15208 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
15209
15210         * reflection.c (fixup_method): Add support for MonoCMethod.
15211
15212 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
15213
15214         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
15215
15216         * reflection.c (assembly_name_to_aname): Allow extra characters in
15217         assembly names. Fixes #51468.
15218
15219 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
15220
15221         * exception.c (mono_exception_from_name_domain): New helper function.
15222
15223         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
15224         exception object in the correct domain.
15225
15226         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
15227         formatting + make a copy a the input data.
15228
15229         * loader.c (mono_get_method_from_token): Methods which contain
15230         native code do not have entries in the ImplMap.
15231
15232         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
15233         Thanks to Gonzalo for spotting this.
15234         
15235         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
15236         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
15237
15238         * assembly.h (mono_assembly_load_from): Split the second part of 
15239         assembly loading into a new public function.
15240
15241         * exception.h (mono_get_exception_bad_image_format): New function.
15242
15243 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
15244
15245         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15246         Enumerate all modules inside a dynamic assembly. Fixes #51293.
15247         
15248         * icall.c: Add new icall for creating dynamic methods.
15249
15250         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
15251
15252         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
15253
15254         * reflection.c (mono_reflection_create_dynamic_method): New icall to
15255         create a dynamic method.
15256
15257         * reflection.c (resolve_object): New helper function.
15258
15259         * reflection.c: Generalize ReflectionMethodBuilder and the functions
15260         which manipulate it so they can also work on dynamic methods.
15261
15262         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
15263         creating the MonoReflectionMethodAux structure if it is not needed.
15264         
15265         * reflection.h verify.c: Update after changes to object layout.
15266
15267         * reflection.c (method_builder_encode_signature): Fix compilation on
15268         gcc 2.95.x.
15269
15270 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
15271
15272         * appdomain.h: Added support for context static fields. Added static_data
15273           field to MonoAppContext and renamed thread_static_fields to a more
15274           generic special_static_fields in MonoAppDomain, since it can now contain
15275           context static fields.
15276         * domain.c: Updated hashtable name.
15277         * object.c: Replaced field_is_thread_static() for a more generic
15278           field_is_special_static() which also checks for context static attribute.
15279           In mono_class_vtable(), added support for static context fields.
15280         * threads.c: Changed methods that manage thread static fields to more
15281           generic methods so they can be reused both for thread and context static
15282           data.
15283         * threads.h: Declared some new methods.
15284
15285 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
15286
15287         * reflection.h: Update after changes to the managed types.
15288
15289         * reflection.c (encode_custom_modifiers): New helper function.
15290
15291         * reflection.c (method_encode_signature): Emit custom modifiers.
15292
15293         * reflection.c (field_encode_signature): Emit custom modifiers.
15294
15295 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
15296
15297         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
15298
15299         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
15300         implementation.
15301
15302         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
15303         icall.
15304
15305         * object.c (mono_field_get_value_object): New function.
15306
15307         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
15308         specific.
15309
15310 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
15311
15312         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
15313         return a preallocated out-of-memory exception instance.
15314
15315         * object.c (out_of_memory): Use the new function.
15316
15317         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
15318         flag is before the custom modifiers. Fixes #49802.
15319
15320 2003-11-16  Martin Baulig  <martin@ximian.com>
15321
15322         * class.c (mono_class_is_open_constructed_type): Implemented the
15323         MONO_TYPE_GENERICINST case.
15324
15325 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
15326
15327         * assembly.c (mono_assembly_fill_assembly_name): New function to
15328         fill out the MonoAssemblyName structure.
15329         (mono_assembly_open): Use the new function.
15330
15331         * icall.c (fill_reflection_assembly_name): New helper function.
15332
15333         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
15334         new function.
15335
15336         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
15337
15338 2003-11-15  Martin Baulig  <martin@ximian.com>
15339
15340         * class.c (mono_class_is_open_constructed_type): New public
15341         function; checks whether a type is an open constructed type,
15342         ie. whether it still contains type parameters.
15343         (mono_class_inflate_generic_type): If we're a type parameter and
15344         the inflated type is also a MONO_TYPE_(M)VAR, return the original
15345         type.
15346
15347         * class.h (MonoGenericInst): Added `guint32 is_open'.
15348
15349         * loader.c (method_from_methodspec): Check whether we're an open
15350         or closed constructed type and set `ginst->is_open'.
15351
15352         * reflection.c (mono_reflection_bind_generic_parameters): Check
15353         whether we're an open or closed constructed type and set
15354         `ginst->is_open'.
15355         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
15356         from open constructed types.
15357
15358 2003-11-15  Martin Baulig  <martin@ximian.com>
15359
15360         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15361         a generic instance (instead of a generic type declaration) with
15362         unbound generic parameters, bind them to our actual types.
15363
15364 2003-11-14  Martin Baulig  <martin@ximian.com>
15365
15366         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
15367
15368         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15369         an interface type, populate `res->interfaces' with instantiated
15370         versions of all the interfaces we inherit.
15371
15372 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
15373
15374         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
15375         when MONO_PATH is set but doesn't contain the install dir.
15376
15377 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15378
15379         * icall.c:
15380         (ves_icall_Type_GetInterfaces): don't return an interface twice when
15381         it's also implemented in base classes. Fixes bug #50927.
15382
15383 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
15384
15385         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
15386         if this method is called from a finalizer. Fixes #50913.
15387
15388 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
15389
15390         * threads.c: Implement VolatileRead/VolatileWrite
15391
15392         * icall.c: Add new icalls for VolatileRead/VolatileWrite
15393
15394 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15395
15396         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
15397         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
15398         2.95.3.
15399
15400         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
15401         from Peter Ross (pro@missioncriticalit.com).
15402         
15403 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
15404
15405         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
15406
15407 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15408
15409         * assembly.c (mono_assembly_load_references): Disable check because it
15410         triggers on older corlibs which lots of people have.
15411
15412 2003-11-12  Jackson Harper  <jackson@ximian.com>
15413
15414         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
15415         load corlib.dll if mscorlib.dll is not found.
15416         * assembly.h: Remove corlib name define.
15417         * class.c:
15418         * domain.c:
15419         * image.c: Change corlib name to mscorlib.
15420         
15421 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15422
15423         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
15424
15425 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
15426
15427         * appdomain.h: Added loader_optimization here to sync with the C#
15428         code, and add disallow_binding_redirects field.
15429
15430 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15431
15432         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
15433
15434         * reflection.c (mono_image_build_metadata): Fix crash on modules
15435         with no types.
15436
15437         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
15438
15439         * icall.c (ves_icall_get_method_info): Return callingConvention as
15440         well.
15441
15442         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
15443         namespaces from the EXPORTEDTYPE table as well.
15444
15445         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
15446         from all modules inside the assembly.
15447         
15448 2003-11-11  Martin Baulig  <martin@ximian.com>
15449
15450         * reflection.c (mono_reflection_bind_generic_parameters): Make
15451         this work for interfaces.
15452
15453 2003-11-11  Martin Baulig  <martin@ximian.com>
15454
15455         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
15456
15457 2003-11-11  Martin Baulig  <martin@ximian.com>
15458
15459         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
15460         "MonoInflatedMethod" and "MonoInflatedCtor".
15461
15462 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15463
15464         * reflection.c (resolution_scope_from_image): Use the assembly table
15465         from the manifest module, since other modules don't have it.
15466
15467         * debug-helpers.c (mono_type_full_name): New helper function.
15468
15469         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15470
15471         * image.c (mono_image_load_file_for_image): New public function which
15472         is a replacement for the load_file_for_image in class.c.
15473
15474         * assembly.c (mono_assembly_load_module): A wrapper for the function
15475         above which does assembly association and reference loading too.
15476
15477         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15478
15479 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15480
15481         * appdomain.c: not all of the attributes for the full assembly name
15482         are required and the order doesn't matter. Fixes bug #50787.
15483
15484 2003-11-10  Dick Porter  <dick@ximian.com>
15485
15486         * locales.c: Use platform-endian UTF16
15487
15488 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15489
15490         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15491         
15492 2003-11-10  Martin Baulig  <martin@ximian.com>
15493
15494         * metadata.c
15495         (mono_metadata_load_generic_params): Make this actually work.
15496
15497         * reflection.c (mono_reflection_bind_generic_parameters): If our
15498         parent is a generic instance, pass all the `types' to it, no
15499         matter whether it has the same number of type parameters or not.
15500
15501 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15502
15503         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15504
15505         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15506         assignment code to this function so it gets called recursively for all
15507         modules.
15508
15509         * image.c (load_modules): Remove the assembly assignment since it is
15510         now done by mono_assembly_load_references.
15511         
15512         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15513         Add 'module' argument.
15514         (mono_module_get_types): New helper function.
15515         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15516
15517 2003-11-08  Martin Baulig  <martin@ximian.com>
15518
15519         * class.c (mono_class_inflate_generic_method): Interface method
15520         don't have a header.
15521
15522         * reflection.c (mono_image_get_methodspec_token): Take an
15523         additional `MonoGenericInst *' argument instead of reading it from
15524         the header; this is necessary to support interfaces.
15525         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15526         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15527         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15528         argument.
15529
15530         * reflection.h (MonoReflectionInflatedMethod): Added
15531         `MonoGenericInst *ginst'.
15532
15533 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15534
15535         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15536
15537 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15538
15539         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15540
15541 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15542
15543         * reflection.c 
15544         (reflection_methodbuilder_from_method_builder):
15545         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15546         initialize a ReflectionMethodBuilder structure.
15547         (mono_image_get_methodbuilder_token):
15548         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15549         tokens which point to types in another module inside the same assembly.
15550
15551         * reflection.c: Use the new helper functions.
15552         
15553         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15554
15555         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15556         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15557
15558         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15559         neccesary.
15560
15561         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15562         current module. Emit the manifest only for the main module.
15563
15564         * reflection.c (mono_image_create_token): Add assertion when a 
15565         memberref needs to be created.
15566
15567         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15568
15569         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15570         larger buffer for the custom attribute blob. Fixes #50637.
15571         
15572 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15573
15574         * threadpool.c: notify listener on async processing handles after
15575         invoking the async callback. Thanks to Zoltan.
15576
15577 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15578
15579         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15580         avoid code duplication.
15581
15582         * reflection.h (MonoDynamicImage): New type which is currently unused,
15583         but will be used through the ref.emit code in place of 
15584         MonoDynamicAssembly.
15585
15586         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15587         object layout.
15588
15589         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15590         a MonoDynamicImage instead of just a MonoImage.
15591         
15592         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15593         icalls to ModuleBuilder but keep their semantics, so they will work
15594         with moduleb->assemblyb. This will change later.
15595         
15596 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15597
15598         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15599         object layout.
15600
15601         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15602         main module, since it is now done by the managed code.
15603
15604 2003-11-03  Martin Baulig  <martin@ximian.com>
15605
15606         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15607         `ginst->klass' here.
15608         (method_encode_methodspec): Don't use the `ginst->generic_method's
15609         klass if it's a generic instance, use `ginst->klass' in this case.
15610
15611 2003-11-03  Martin Baulig  <martin@ximian.com>
15612
15613         * reflection.c (mono_image_get_generic_method_param_info):
15614         Removed, use mono_image_get_generic_param_info() instead.
15615         (mono_image_get_type_info): Write the GenericParam table before
15616         the Method table.  This is neccessary because in the GenericParam
15617         table, type parameters of the class (ie. '!0' etc.) must come
15618         before the ones from its generic methods (ie. '!!0' etc).
15619
15620 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15621
15622         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15623
15624 2003-11-02  Martin Baulig  <martin@ximian.com>
15625
15626         * reflection.c (create_generic_typespec): Take a
15627         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15628         the generic parameters from it.
15629
15630 2003-11-02  Martin Baulig  <martin@ximian.com>
15631
15632         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15633         instead of a `MonoClassField *' since we just need the type.
15634         (create_generic_typespec): New static function.  Creates a
15635         TypeSpec token for a generic type declaration.
15636         (mono_image_get_generic_field_token): New static function.
15637         (mono_image_create_token): If we're a FieldBuilder in a generic
15638         type declaration, call mono_image_get_generic_field_token() to get
15639         the token.
15640
15641 2003-11-02  Martin Baulig  <martin@ximian.com>
15642
15643         * reflection.h
15644         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15645         `MonoReflectionGenericInst *declaring_type' and
15646         `MonoReflectionGenericInst *reflected_type' fields.
15647
15648         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15649         `MonoReflectionGenericInst *declaring_type' and a
15650         `MonoReflectionGenericInst *reflected_type' argument instead of a
15651         single `MonoReflectionGenericInst *type' one.  Set
15652         `res->declaring_type' and `res->reflected_type' from them.
15653         (mono_reflection_inflate_field): Likewise.      
15654
15655 2003-11-02  Martin Baulig  <martin@ximian.com>
15656
15657         * class.c (mono_class_setup_vtable): Don't store generic methods
15658         in the vtable.  
15659
15660 2003-11-02  Martin Baulig  <martin@ximian.com>
15661
15662         * reflection.h (MonoReflectionGenericInst): Added
15663         `MonoReflectionType *declaring_type'.
15664
15665         * reflection.c (mono_reflection_bind_generic_parameters): Use
15666         `if (tb->parent)' instead of `klass->parent'.
15667
15668 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15669
15670         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15671         with an empty ASSEMBLY table.
15672
15673         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15674         variable in the inner and outer loops.
15675
15676 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15677
15678         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15679         argument.
15680
15681         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15682         
15683         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15684         icalls. Instead, do everything in managed code. This is needed since
15685         it is hard to restore the original domain etc. in unmanaged code in the
15686         presence of undeniable exceptions.
15687
15688         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15689         New icalls to push and pop appdomain refs.
15690
15691 2003-10-31  Martin Baulig  <martin@ximian.com>
15692
15693         * class.c (inflate_generic_type): Renamed to
15694         mono_class_inflate_generic_type() and made it public.
15695
15696         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15697         New interncall.
15698
15699         * loader.c (mono_field_from_memberref): Also set the retklass for
15700         typespecs.
15701
15702         * fielder.c (mono_image_get_inflated_field_token): New static
15703         method; creates a metadata token for an inflated field.
15704         (mono_image_create_token, fixup_method): Added support for
15705         "MonoInflatedField".
15706         (fieldbuilder_to_mono_class_field): New static function.
15707         (mono_reflection_inflate_field): New public function.
15708
15709         * reflection.h
15710         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15711         (MonoReflectionInflatedField): New typedef.     
15712
15713 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15714
15715         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15716         for Solaris and other platforms without s6_addr16
15717
15718 2003-10-30  Martin Baulig  <martin@ximian.com>
15719
15720         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15721         argument instead of two.
15722         (mono_class_inflate_generic_signature): Likewise.
15723         (inflate_generic_header): Likewise.
15724         (mono_class_inflate_generic_method): Likewise.  In addition, if
15725         `ginst->klass' is set, it becomes the new `method->klass'.
15726
15727         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15728         field.
15729
15730         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15731         first byte. [FIXME]
15732         (method_encode_methodspec): If we have generic parameters, create
15733         a MethodSpec instead of a MethodRef.
15734         (fixup_method): Added support for "MonoInflatedMethod" and
15735         "MonoInflatedCtor".
15736         (mono_image_create_token): Added support for "MonoInflatedMethod"
15737         and "MonoInflatedCtor".
15738         (inflated_method_get_object): New static function; returns a
15739         managed "System.Reflection.MonoInflatedMethod" object.
15740         (mono_reflection_bind_generic_method_parameters): Return a
15741         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15742         (mono_reflection_inflate_method_or_ctor): Likewise.
15743         (mono_image_get_generic_method_param_info): Initialize unused
15744         fields to zero.
15745         (mono_image_get_generic_param_info): Likewise.
15746
15747         * reflection.h (MonoReflectionInflatedMethod): New public
15748         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15749         "S.R.MonoInflatedCtor" classes.
15750
15751         * loader.c (method_from_memberref): If we're a TypeSpec and it
15752         resolves to a generic instance, inflate the method.
15753
15754 2003-10-28  Dick Porter  <dick@ximian.com>
15755
15756         * object.c (mono_runtime_run_main): Convert command-line arguments
15757         into utf8, falling back to the user's locale encoding to do so.
15758
15759 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15760
15761         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15762         at this time.
15763
15764         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15765
15766         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15767         up icalls at method definition time. Partially fixes #33569.
15768
15769 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15770
15771         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15772         marshalling of arrays. Fixes #50116.
15773
15774         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15775
15776         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15777         points to a vtable in the dying appdomain.
15778
15779         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15780         listeners into unmanaged code inside the lock.
15781
15782         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15783         domains and add some comments.
15784
15785 2003-10-25  Martin Baulig  <martin@ximian.com>
15786
15787         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15788
15789         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15790
15791         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15792         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15793         currently parsing.  Create the generic class and store it in
15794         `generic_inst->klass' before parsing the type arguments.  This is
15795         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15796         for an example.
15797         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15798         to support recursive typespec entries.
15799
15800         * class.c (mono_class_setup_parent): If our parent is a generic
15801         instance, we may get called before it has its name set.
15802         (mono_class_from_generic): Splitted into
15803         mono_class_create_from_generic() and mono_class_initialize_generic().
15804
15805 2003-10-25  Martin Baulig  <martin@ximian.com>
15806
15807         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15808         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15809         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15810         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15811
15812         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15813         (create_typespec): Likewise.
15814         (mono_reflection_bind_generic_parameters): Return a
15815         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15816         (mono_reflection_inflate_method_or_ctor): New public function.
15817
15818         * reflection.h (MonoReflectionGenericInst): New typedef.        
15819
15820 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15821
15822         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15823         inside the domain lock. Fixes #49993.
15824         
15825         * object.c (mono_class_vtable): When typed allocation is used, 
15826         allocate vtables in the GC heap instead of in the mempool, since the
15827         vtables contain GC descriptors which are used by the collector even
15828         after the domain owning the mempool is unloaded.
15829
15830         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15831
15832         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15833         reflect what it does. Also invalidate mempools instead of freeing
15834         them if a define is set.
15835
15836         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15837         of the appdomain.
15838         
15839         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15840         hold the finalizable objects in this domain.
15841
15842         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15843         appdomain.
15844
15845         * appdomain.c (mono_domain_set): New function to set the current
15846         appdomain, but only if it is not being unloaded.
15847
15848         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15849         appdomain which is being unloaded.
15850         
15851         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15852         unloading of the root appdomain.
15853
15854         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15855         icall to execute a method in another appdomain. Intended as a 
15856         replacement for InternalSetDomain, which can confuse the code 
15857         generation in the JIT.
15858
15859         * appdomain.c (mono_domain_is_unloading): New function to determine
15860         whenever an appdomain is unloading.
15861
15862         * appdomain.c (mono_domain_unload): New function to correctly unload
15863         an appdomain.
15864
15865         * assembly.c (mono_assembly_load_references): Check that an assembly
15866         does not references itself.
15867
15868         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15869         domain manually, it asks the finalizer thread to do it, then waits for
15870         the result. Also added a timeout.
15871
15872         * icall.c: Register the new icalls.
15873
15874         * threads.h threads.c: Export the mono_gc_stop_world and 
15875         mono_gc_start_world functions.
15876         
15877         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15878         function to fill out the mempool with 0x2a.
15879
15880 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15881
15882         * reflection.h (MonoReflectionMethodAux): New structure to store
15883         information which is rarely used, thus is not in the MonoMethod
15884         structure.
15885
15886         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15887         store the aux info.
15888
15889         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15890         and marshalling info into the aux structure.
15891
15892         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15893         from the aux structure.
15894
15895         * loader.c (mono_method_get_param_names): Retrieve the param names from
15896         the aux structure.
15897         
15898 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15899
15900         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15901         warning.
15902
15903 2003-10-21  Dick Porter  <dick@ximian.com>
15904
15905         * socket-io.c
15906         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15907         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15908
15909 2003-10-21  Martin Baulig  <martin@ximian.com>
15910
15911         * reflection.c (mono_reflection_bind_generic_parameters):
15912         `klass->parent' is NULL for interfaces.
15913
15914 2003-10-21  Martin Baulig  <martin@ximian.com>
15915
15916         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15917
15918 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15919
15920         * exception.c (mono_exception_from_name_msg): New helper function for
15921         creating exceptions and initializing their message field.
15922
15923         * exception.c: Simplify functions using the new helper.
15924
15925         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15926         New function.
15927
15928         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15929         mono_raise_exception, since otherwise gcc doesn't generate the function
15930         epilog for raise_exception, confusing the stack unwinding in the JIT.
15931         Fixes #45043.
15932
15933         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15934         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15935         Fixes #49499.
15936
15937 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15938
15939         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15940         utf8.
15941
15942 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15943
15944         * icall.c: Removed GetUninitializedObject method because
15945           AllocateUninitializedClassInstance does the same.
15946
15947 2003-10-18  Martin Baulig  <martin@ximian.com>
15948
15949         * class.c (inflate_generic_signature): Renamed to
15950         mono_class_inflate_generic_signature() and made it public.
15951         (my_mono_class_from_generic_parameter): New static function; if we
15952         don't already have the generic parameter's MonoClass, create a
15953         very simple one which is just used internally in the runtime and
15954         not passed back to managed code.
15955
15956         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15957
15958         * metadata.h (MonoMethodSignature): Moved the
15959         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15960         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15961
15962         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15963         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15964         interncall on the MonoMethod class, not on MethodInfo.
15965         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15966         calling mono_reflection_bind_generic_method_parameters() directly.
15967
15968         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15969         return the already computed `method->signature'.
15970         (method_from_methodspec): New static function to load a method
15971         from a MethodSpec entry.
15972         (mono_get_method_from_token): Call the new method_from_methodspec()
15973         for MethodSpec tokens.  
15974         (mono_get_method_from_token): If we're a generic method, load the
15975         type parameters.
15976
15977         * reflection.c (mono_image_get_memberref_token): Allow
15978         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15979         table.
15980         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15981         (mono_image_create_token): First check whether it's a generic
15982         method (so we'd need to create a MethodSpec), then do the other
15983         two alternatives.
15984         (mono_reflection_bind_generic_method_parameters): Return a
15985         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15986         called directly from the interncall.
15987
15988 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15989
15990         * reflection.c (load_public_key): Move loading of the public key
15991         into managed code.
15992
15993         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15994
15995         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15996         fields.
15997
15998         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15999         culture, hash_alg and public_key. Fixes #49555.
16000
16001 2003-10-17  Martin Baulig  <martin@ximian.com>
16002
16003         * class.h (MonoGenericInst): Moved this declaration here and added
16004         `MonoMethod *generic_method'.
16005
16006         * icall.c
16007         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
16008         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
16009
16010         * metadata.c (mono_metadata_type_equal): Two types of
16011         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
16012         index; ie. don't compare the address of the `MonoGenericParam'
16013         structure.
16014         (mono_metadata_load_generic_params): Removed the `MonoMethod
16015         *method' argument.
16016
16017         * metadata.h (MonoGenericInst): Moved declaration to class.h.
16018         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
16019
16020         * reflection.c (method_encode_signature): Encode the number of
16021         generic parameters.
16022         (encode_generic_method_sig): New static function.
16023         (method_encode_methodspec): New static function; creates an entry
16024         in the MethodSpec table for a generic method.
16025         (mono_image_get_methodspec_token): New static function.
16026         (mono_image_create_token): Call mono_image_get_methodspec_token()
16027         for generic methods.
16028         (mono_reflection_bind_generic_method_parameters): New public
16029         function.  Instantiates a generic method.
16030
16031 2003-10-16  Martin Baulig  <martin@ximian.com>
16032
16033         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
16034         *gen_params' here from MonoMethodHeader.
16035
16036         * metadata.c (mono_metadata_parse_method_signature): If we have
16037         generic parameters, initialize `method->gen_params' and then set
16038         the correct `type->data.generic_param' in all the parameters.
16039
16040 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
16041
16042         * threads.c (mono_threads_get_default_stacksize): New function to 
16043         return the default stacksize.
16044
16045         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
16046         termination of the finalizer thread, since the previous method had
16047         race conditions. Fixes #49628.
16048
16049         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
16050         as for the other managed threads.
16051
16052 2003-10-16  Martin Baulig  <martin@ximian.com>
16053
16054         * class.c (inflate_generic_signature): Copy `generic_param_count'
16055         and `gen_params'.
16056
16057         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
16058         New interncall.
16059
16060         * metadata.c (mono_metadata_parse_method_signature): Actually set
16061         the `method->generic_param_count' here.
16062         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
16063
16064 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
16065
16066         * object.h: Add a new field to TypedRef to simplify the implementation
16067         of the REFANY opcodes in the JIT.
16068
16069         * icall.c: Make use of the new field.
16070
16071         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
16072         dynamically.
16073
16074 2003-10-15  Martin Baulig  <martin@ximian.com>
16075
16076         * class.c (mono_class_from_gen_param): Renamed to
16077         mono_class_from_generic_parameter() and moved most of the
16078         functionality from mono_reflection_define_generic_parameter()
16079         here; ie. we create a "real" class here.
16080         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
16081         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
16082         previously been called.
16083
16084         * class.h (MonoGenericParam): Moved the declaration of this struct
16085         here from metadata.h and added `MonoMethod *method'.
16086
16087         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
16088         interncall.
16089
16090         * loader.c (mono_get_method_from_token): If we have any generic
16091         parameters, call mono_metadata_load_generic_params() to read them
16092         from the MONO_TABLE_GENERICPAR.
16093
16094         * metadata.c (mono_metadata_load_generic_params): Added
16095         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
16096
16097         * metadata.h (MonoMethodSignature): Replaced
16098         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
16099         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
16100
16101         * reflection.c (mono_reflection_define_generic_parameter): Moved
16102         most of the functionality into the new
16103         mono_class_from_generic_parameter(); set the `method' field if
16104         we're a method parameter.       
16105
16106 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
16107
16108         * marshal.c (emit_struct_conv): if native size is 0
16109         emit no code.
16110
16111 2003-10-14  Martin Baulig  <martin@ximian.com>
16112
16113         * icall.c: The generics API has changed in the spec since it was
16114         added to System.Type; these modifications make it match the spec
16115         again.
16116         (ves_icall_Type_GetGenericParameters): Renamed to
16117         `ves_icall_Type_GetGenericArguments'.
16118         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
16119         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
16120         `ves_icall_MonoType_get_HasGenericArguments'.
16121         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
16122         `ves_icall_MonoType_get_IsGenericParameter'.
16123         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
16124         this is no interncall anymore.
16125         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
16126         `ves_icall_TypeBuilder_get_IsGenericParameter'.
16127
16128 2003-10-14  Martin Baulig  <martin@ximian.com>
16129
16130         * reflection.c (mono_reflection_bind_generic_parameters): Also
16131         inflate generic methods if we're reading the class from IL.
16132
16133 2003-10-13  Martin Baulig  <martin@ximian.com>
16134
16135         * reflection.c (mono_reflection_define_generic_parameter): This
16136         method isn't called directly from the icall anymore; take a
16137         `MonoReflectionAssemblyBuilder *' so we can use this for type and
16138         method generic parameters.
16139         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
16140         (method_builder_encode_signature): Encode generic parameters.
16141         (mono_image_get_method_info): Write generic params to the
16142         MONO_TABLE_GENERICPARAM table.
16143
16144         * reflection.h (MonoReflectionMethodBuilder): Added
16145         `MonoArray *generic_params'.
16146
16147         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
16148
16149         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
16150         wrapper for mono_reflection_define_generic_parameter().
16151         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
16152
16153 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
16154
16155         * marshal.h: Add missing function to fix build.
16156
16157         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
16158         the SetLastError pinvoke attribute.
16159
16160         * marshal.c (mono_marshal_set_last_error): New helper function called
16161         by the generated code.
16162         
16163         * marshal.c (mono_mb_emit_branch): New helper function.
16164
16165         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
16166
16167         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16168         classes as parameters and return values of delegates. Fixes #29256. 
16169
16170 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
16171
16172         * locales.c: use gint32 in non HAVE_ICU case
16173
16174 2003-10-11  Martin Baulig  <martin@ximian.com>
16175
16176         * mono-debug.c (mono_debug_add_method): Added a workaround for
16177         bug #48591.
16178
16179 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
16180
16181         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
16182         delegates passed to native code must use the STDCALL calling 
16183         convention. Fixes #35987.
16184
16185 2003-10-10  Martin Baulig  <martin@ximian.com>
16186
16187         * class.c (inflate_generic_type): If we're inflating for a generic
16188         type instance (and not for a generic method), return
16189         MONO_TYPE_MVAR unchanged.
16190
16191 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16192
16193         * string-icalls.c: Join ignores null strings in the source array.
16194         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
16195         * threads.c: GetAvailableTheads is slightly more accurate.
16196
16197 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
16198
16199         * threads.h threads.c : add mono_threads_set_default_stacksize
16200         and pass default to CreateThread calls.
16201
16202 2003-10-09  Dick Porter  <dick@ximian.com>
16203
16204         * icall.c:
16205         * locales.h:
16206         * locales.c: Internal calls for constructing CultureInfo and
16207         related objects from libicu (if its available.)
16208
16209 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
16210
16211         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
16212
16213 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16214
16215         * threadpool.c: added an argument to async_invoke_thread that is the
16216         item to process, pass the MonoAsyncResult to the thread start function
16217         when creating a new thread. This way we don't need to acquire any lock
16218         when we're creating a new thread. Readded a semaphore for faster
16219         response times (instead of that Sleep i added).
16220
16221 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
16222
16223         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
16224         get daylight change dates better on Windows, fix handling
16225         of platforms without tm_gmtoff.
16226
16227 2003-10-06  Martin Baulig  <martin@ximian.com>
16228
16229         * class.c (inflate_generic_method): Renamed to
16230         mono_class_inflate_generic_method() and made public.
16231         (mono_class_init): Don't inflate the generic methods here.
16232         (mono_class_from_generic): Added `gboolean inflate_methods'
16233         argument.  Inflate the methods here.
16234
16235         * loader.c (mono_method_get_param_names): Ignore instances of
16236         generic types for the moment.
16237
16238         * reflection.c (fixup_method): Added support for inflated methods.
16239         (mono_image_create_token): Use mono_image_get_methodref_token()
16240         for inflated methods.
16241         (mono_custom_attrs_from_param): Ignore instances of generic types
16242         for the moment.
16243         (mono_reflection_bind_generic_parameters): New public function.
16244         Moved all the functionality from
16245         ves_icall_Type_BindGenericParameters() here and added support for
16246         dynamic types.
16247         (mono_reflection_define_generic_parameter): Initialize
16248         `klass->methods' here.
16249
16250         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
16251         functionality into mono_reflection_define_generic_parameter().
16252         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
16253         TypeBuilder, return that TypeBuilder.
16254
16255 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16256
16257         * appdomain.c: removed mono_delegate_semaphore.
16258
16259         * threadpool.c:
16260         (mono_thread_pool_add): moved hash table creation inside and the thread 
16261         creation outside of the critical region.
16262         (mono_thread_pool_finish): removed obsolete code.
16263         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
16264         continue or exit the thread depending on the queue.
16265
16266 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
16267
16268         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
16269         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
16270         handle more bool marshalling options
16271
16272 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
16273
16274         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
16275         arrays of structs. Also add a more descriptive error message when
16276         a structure member is marshalled as LPArray.
16277
16278 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
16279
16280         * marshal.c (mono_marshal_get_native_wrapper): Add support for
16281         marshalling arrays of complex types. Fixes #29098. Also remove an
16282         usused and incomplete function.
16283
16284 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16285
16286         * gc.c: report heap_size - free_bytes as total memory allocated
16287         (bug#49362).
16288
16289 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
16290
16291         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
16292         fix timezone handling problems on Windows.
16293         
16294         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
16295         asserts when the year is outside the range handled by ms the functions.
16296
16297         * class.c (setup_interface_offsets): If the class is an interface,
16298         fill out its interface_offsets slot.
16299
16300 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16301
16302         * threadpool.c: mark threadpool threads as background.
16303
16304 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
16305
16306         * decimal.c - define DECINLINE to nothing if not using GCC
16307
16308 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
16309
16310         * assembly.c: More refcount fixes.
16311
16312 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16313
16314         * string-icalls.c: if we're not trimming, return the same string.
16315         When not splitting, don't create a new string.
16316
16317 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16318
16319         * image.c:
16320         (mono_image_open): increment the ref_count inside the critical section.
16321
16322 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
16323
16324         * image.c (mono_image_open): Fix reference counting bug.
16325
16326 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
16327
16328         * marshal.c (mono_marshal_type_size) struct alignment changed for 
16329         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
16330         64bits. Avoid leak in mono_marshal_get_native_wrapper when
16331         mono_lookup_pinvoke_call throws.        
16332
16333 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
16334
16335         * reflection.c (mono_reflection_parse_type): Fix #49114.
16336
16337         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
16338         temporary workaround for cygwin header problem.
16339
16340         * object.c (mono_object_isinst): Synchronize this with the code
16341         generated by the JIT for casts.
16342
16343 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
16344
16345         * reflection.c (encode_type): Fix #38332.
16346
16347 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
16348
16349         * marshal.c (mono_marshal_method_from_wrapper): New function to return
16350         the original method from the wrapper method.
16351
16352 2003-09-25  Martin Baulig  <martin@ximian.com>
16353
16354         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
16355         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
16356         (ves_icall_Type_get_IsGenericInstance): New interncall.
16357
16358 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
16359
16360         * object.c: fix cast warning in big endian code.
16361
16362 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
16363
16364         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
16365         
16366 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16367
16368         * assembly.c: don't call check_env from mono_assembly_load. It's
16369         already done once in mono_assemblies_init and may cause headaches when
16370         multiple threads are loading assemblies.
16371
16372 2003-09-19  Martin Baulig  <martin@ximian.com>
16373
16374         * reflection.c (mono_reflection_define_generic_parameter): Don't
16375         allocate `klass->methods', set `klass->flags' to
16376         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
16377
16378 2003-09-18  Martin Baulig  <martin@ximian.com>
16379
16380         * class.c (mono_class_init): Don't create `class->methods' if it's
16381         already initialized.
16382
16383         * metadata.c (mono_metadata_load_generic_params): Make this
16384         actually work.
16385
16386         * reflection.c (mono_reflection_define_generic_parameter): Set
16387         parent class and interfaces from the constraints.
16388
16389         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
16390         to keep this struct in sync with the declaration in TypeBuilder.cs.
16391
16392 2003-09-17  Martin Baulig  <martin@ximian.com>
16393
16394         * metadata.h (MonoType): Replaced the data's `int type_param'
16395         field with `MonoGenericParam *generic_param'.
16396         (MonoGenericParam): Added `MonoClass *klass'.
16397
16398         * class.c (mono_class_from_gen_param): Removed the
16399         `MonoImage *image' and `int type_num' arguments.
16400
16401         * metadata.c (mono_metadata_parse_generic_param): New static
16402         method; creates a MonoGenericParam which just contains the index.
16403         (do_mono_metadata_parse_type): Call
16404         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
16405         MONO_TYPE_MVAR.
16406
16407         * reflection.c (mono_image_typedef_or_ref): Generic type
16408         parameters may be in the same assembly, but never use a typedef
16409         for them.
16410         (mono_reflection_define_generic_parameter): We're now creating a
16411         "real" class for the type parameter; it's now safe to call
16412         mono_class_from_mono_type() on the class'es type, it'll do the
16413         right thing.
16414
16415 2003-09-16  Martin Baulig  <martin@ximian.com>
16416
16417         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
16418         `symfile->range_entry_size' and `symfile->class_entry_size' here;
16419         the `symfile' data structure must be fully initialized before it
16420         gets added to the table.
16421
16422 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
16423
16424         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
16425
16426         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
16427         class init trampolines.
16428
16429 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
16430
16431         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
16432         to the built-in profiler to turn off time and allocation profiling
16433         respectively.
16434
16435 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
16436
16437         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
16438         g_direct_equal.
16439
16440         * debug-helpers.c (mono_method_full_name): Print the wrapper type
16441         in human readable form.
16442
16443 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
16444
16445         * reflection.c icall.c: Fixed warnings.
16446
16447         * image.c (load_class_names): Use a temporary hash table to hold the
16448         namespaces in order to avoid doing many string comparisons.
16449
16450         * image.h: Fix typo.
16451
16452         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
16453         Pass NULL instead of g_direct_equal to the GHashTable constructor 
16454         since the NULL case is short-circuited inside g_hash_table_lookup, 
16455         leading to better performance.  
16456
16457         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
16458         obtain the first custom attribute for a given index. Depends on the
16459         CustomAttribute table being sorted by the parent field.
16460
16461         * reflection.c (mono_custom_attrs_from_index): Use the new function 
16462         for better performance.
16463
16464 2003-09-07  Martin Baulig  <martin@ximian.com>
16465
16466         * class.c (mono_class_init): If we're a generic instance, inflate
16467         all our methods instead of loading them from the image.
16468         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16469
16470 2003-09-07  Martin Baulig  <martin@ximian.com>
16471
16472         * mono-debug-debugger.c: Added support for constructors.
16473
16474 2003-09-06  Martin Baulig  <martin@ximian.com>
16475
16476         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16477         New interncall.
16478
16479         * reflection.c (mono_reflection_setup_generic_class): Call
16480         ensure_runtime_vtable() to create the vtable.
16481
16482 2003-09-05  Martin Baulig  <martin@ximian.com>
16483
16484         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16485         MONO_TYPE_MVAR.
16486
16487 2003-09-04  Martin Baulig  <martin@ximian.com>
16488
16489         * reflection.c (mono_reflection_define_generic_parameter): Generic
16490         parameters start with zero.
16491
16492 2003-09-04  Martin Baulig  <martin@ximian.com>
16493
16494         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16495
16496         * reflection.h (MonoReflectionGenericParam): New typedef.
16497         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16498         the generic parameters from the managed TypeBuilder.
16499
16500         * reflection.c (mono_reflection_define_generic_parameter): New function.
16501         (mono_reflection_create_runtime_class): Encode generic parameters.
16502         (mono_reflection_setup_generic_class): New function; this is
16503         called after adding adding all generic params to the TypeBuilder.
16504         (encode_type): Added MONO_TYPE_VAR.
16505
16506 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16507
16508         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16509         here from the JIT.
16510
16511         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16512         load hook.
16513
16514 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16515
16516         * reflection.h reflection.c class.h class.c: Delete duplicate 
16517         definition of mono_type_get_name () from reflection.c and export the
16518         one in class.c.
16519
16520         * class.c: Class loading fixes from Bernie Solomon 
16521         (bernard@ugsolutions.com).
16522
16523         * reflection.c: Endianness fixes from Bernie Solomon 
16524         (bernard@ugsolutions.com).
16525         
16526 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16527
16528         * assembly.h assembly.c: Define a file format version for AOT
16529         libraries.
16530         
16531         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16532
16533         * appdomain.h (MonoJitInfo): New field to determine whenever the
16534         code is domain neutral.
16535         
16536 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16537
16538         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16539
16540 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16541
16542         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16543         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16544         Avoid caching the result since strings must be domain specific. Fixes
16545         #48050.
16546
16547 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16548
16549         * marshal.c (mono_marshal_init): Make this callable multiple times
16550         since it is hard to find a correct place to call it.
16551
16552         * object.c (mono_runtime_class_init): Execute static constructors in
16553         the correct appdomain.
16554
16555         * image.c (build_guid_table): Handle the case when multiple images have
16556         the same GUID.
16557
16558 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16559
16560         * icall.c: added a couple of icalls for System.Web.
16561
16562 2003-08-28  Martin Baulig  <martin@ximian.com>
16563
16564         * icall.c (ves_icall_Type_BindGenericParameters): Use
16565         `klass->generic_inst' instead of `&klass->byval_arg' in the
16566         mono_type_get_object() call.  The returned type must be
16567         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16568
16569 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16570
16571         * NOTES: New file.
16572
16573         * object.c (mono_class_proxy_vtable): Make it thread safe.
16574
16575         * pedump.c: Fix warning.
16576
16577         * object.c appdomain.h: Get rid of metadata_section. 
16578         It is no longer needed and it was causing deadlocks with domain->lock.
16579
16580         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16581
16582 2003-08-26  Martin Baulig  <martin@ximian.com>
16583
16584         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16585
16586 2003-08-26  Martin Baulig  <martin@ximian.com>
16587
16588         * pedump.c (main): Call mono_metadata_init(),
16589         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16590         and mono_loader_init().
16591
16592 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16593
16594         * loader.h: Add missing include to fix build.
16595
16596         * image.h: mono_image_load_references is no more.
16597
16598         * assembly.c: Reworked assembly loading to make it really thread safe.
16599         After these changes, the assembly returned by mono_assembly_open is
16600         fully initialized, i.e. all its references assemblies are loaded.
16601
16602         * assembly.c (mono_image_load_references): Renamed to 
16603         mono_assembly_load_references, and made private, since clients no
16604         longer need to call it.
16605
16606         * class.c: Removed calls to mono_assembly_load_references, since it was
16607         a source of deadlocks.
16608
16609         * loader.h loader.c class.h class.c: Protect data structures using a 
16610         new lock, the loader lock.
16611
16612         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16613         GPtrArrays only when needed.
16614
16615         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16616         into empty structures by mcs. Fixes pinvoke7.cs.
16617         
16618         * domain.c (mono_init): Call a new initialization function.
16619
16620         * appdomain.c (mono_runtime_init): Call the new initializer function
16621         of the marshal module.
16622
16623         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16624         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16625
16626         * marshal.h marshal.c: Added locks around the wrapper caches to make
16627         this module thread safe.
16628
16629         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16630         this argument. Fixes pinvoke1.exe.
16631
16632 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16633
16634         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16635         enumeration of values. Removed fields to store remote call output values in
16636         MonoAsyncResult. Not needed any more.
16637         * object.c: Initialize call_type and async_result fields in mono_message_init.
16638         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16639         dispatching the message.
16640         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16641         async call to finish. To do it use a message with EndInvoke call type.
16642
16643 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16644
16645         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16646         determines whenever a method has marshalling info.
16647
16648 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16649
16650         * assembly.c: fix the build on windows.
16651
16652 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16653
16654         * object.cs: Fixed bug #47785.
16655
16656 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16657
16658         * string-icalls.c (StringReplace): If their are no occurances of
16659         the old string found return a reference to the supplied
16660         string. This saves some memory and matches MS behavoir.
16661         
16662 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16663
16664         * socket-io.c: fixed compilation for systems that define AF_INET6
16665         and don't define SOL_IP/SOL_IPV6.
16666
16667 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16668
16669         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16670         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16671
16672         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16673
16674         * domain.c: Make this module thread safe.
16675
16676         * domain.c (mono_init): Call new initialization function.
16677
16678         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16679         reference types too. Fixes #38812.
16680
16681         * image.c (mono_image_init): Fixed warnings.
16682
16683         * class.c (mono_class_from_typeref): Handle assembly load failure
16684         correctly.
16685
16686         * appdomain.c (add_assemblies_to_domain): Handle the case when
16687         the references of an assembly are not yet loaded.
16688
16689         * metadata.c image.c assembly.c: Moved initialization of global
16690         variables to a separate function called at startup since lazy 
16691         initialization of these variables is not thread safe.
16692         
16693         * image.c assembly.c: Made this module thread safe by adding locks in 
16694         the appropriate places.
16695
16696         * domain.c (mono_init): Call the new initialization functions of the
16697         three modules.
16698
16699 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16700
16701         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16702           make a direct call. It is proxy's work to make the call asynchronous.
16703           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16704           the return values.
16705         * object.cs: mono_method_call_message_new(): read AsyncResult and
16706           state object from parameters list, if this info is requested.
16707         * object.h: Added fields to store remote call output values in
16708           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16709
16710 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16711
16712         * object.h: add needed fields to MonoThread.
16713         * threads.c, threads.h: allow registering a function to cleanup data
16714         allocated per thread by the JIT.
16715
16716 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16717
16718         * loader.h: portability fix by Bernie Solomon
16719         * <bernard@ugsolutions.com>.
16720
16721 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16722
16723         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16724         return a MonoArray. This simplifies the code and also ensures that
16725         the cache allways contains an object reference as a value.
16726
16727         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16728         function.
16729
16730 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16731
16732         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16733         fixes a problem with byte ordering when getting the address family for
16734         a socket.
16735
16736 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16737
16738         * .cvsignore: Added monosn.
16739
16740         * reflection.h reflection.c loader.c: Added support for parameter
16741         marshalling to dynamically created types. Fixes #47295.
16742
16743 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16744
16745         * rand.c: remove useless warnings.
16746
16747 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16748
16749         * class.c: implemented ldtoken for methods and fieldrefs.
16750
16751 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16752
16753         * threadpool.c: when mono_async_invoke was called, no one took care of
16754         monitoring the queue. So if the method invoked took some time and we
16755         got new async invoke requests after 500 ms (the thread created waited
16756         that long in WaitForSingleObject), the new async invoke was not called
16757         until the previous one finished.
16758
16759         This is fixed now. Thanks to Totte for helping with it.
16760
16761 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16762
16763         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16764
16765 2003-08-11  Martin Baulig  <martin@ximian.com>
16766
16767         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16768
16769 2003-08-06  Martin Baulig  <martin@ximian.com>
16770
16771         * mono-debug-debugger.c: Added support for static fields,
16772         properties and methods.
16773
16774 2003-08-06  Martin Baulig  <martin@ximian.com>
16775
16776         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16777         make this work for applications with multiple application domains.
16778
16779 2003-08-04  Martin Baulig  <martin@ximian.com>
16780
16781         * mono-debug-debugger.c: Completely reworked the type support; the
16782         most important thing is that we're now just using one single
16783         `MonoType' instance per type.
16784
16785 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16786
16787         * mono-endian.h, mono-endian.c, icall.c: Added icall
16788         ves_icall_System_Double_AssertEndianity to assert double word endianity
16789         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16790
16791 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16792
16793         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16794         support, icalls and fixes.
16795
16796 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16797
16798         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16799         classes that are a punctuation character in .NET is not the same a
16800         g_unichar_ispunct.
16801
16802 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16803
16804         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16805
16806 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16807
16808         * icall.c: Add new MemCopy internalcall.
16809         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16810         Simplified code; It is not necessary to handle all the cases here,
16811         as the C# code takes care of it.  Only handle the case of the name
16812         resource embedded into the assembly.
16813
16814         Changed signature to return the data pointer and the size of the
16815         data. 
16816
16817 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16818
16819         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16820         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16821
16822 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16823
16824         * socket-io.c: ignore EINTR error in select.
16825
16826 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16827
16828         * class.h, class.c: removed unused subclasses field in MonoClass.
16829
16830 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16831
16832         * icall.c: improve fix of get_base_definition(). If the parent class
16833           doesn't have the mehod, look at the parent of the parent.
16834         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16835           to check if a parameter is an in or out parameter
16836           (PARAM_ATTRIBUTE_IN is not set by default).
16837           mono_method_return_message_restore(): Use mono_class_value_size to
16838           get the size of a value type. mono_type_stack_size (parameterType)
16839           does not return the correct value if parameterType is byRef.
16840           mono_load_remote_field(), mono_load_remote_field_new(),
16841           mono_store_remote_field(), mono_store_remote_field_new():
16842           raise exception if the remote call returns an exception.
16843
16844 2003-07-28  Martin Baulig  <martin@ximian.com>
16845
16846         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16847         method.  This is a wrapper around mono_runtime_invoke() which
16848         boxes the instance object if neccessary.
16849
16850 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16851
16852         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16853         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16854
16855 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16856
16857         * icall.c: disable mcs bug workaround.
16858
16859 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16860
16861         * object.c (mono_runtime_class_init): Take the metadata_section
16862         mutex before obtaining the domain mutex.
16863
16864         * appdomain.h: Added definition of metadata_section mutex here. 
16865
16866         * object.c: define metadata_mutex here.
16867
16868 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16869
16870         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16871         fixed.
16872
16873 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16874
16875         * reflection.c: Fix bug #46669
16876
16877 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16878
16879         * exception.c:
16880         * exception.h:
16881         * icall.c:
16882         * object.h: fill in the type name for TypeLoadException.
16883
16884 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16885
16886         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16887         relationship between TypeBuilders while compiling corlib) and bug
16888         45993 (Array types returned from the runtime while compiling
16889         corlib were from the loaded corlib).
16890
16891 2003-07-22  Martin Baulig  <martin@ximian.com>
16892
16893         * mono-debug-debugger.c: Reworked the type support a bit more;
16894         distinguish between types and classes.
16895
16896 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16897
16898         * icall.c: add IsArrayImpl icall.
16899
16900 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16901
16902         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16903         initializing real_size only once. Also fix bug #46602.
16904
16905 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16906
16907         * object.c: Renamed mono_metadata_section to metadata_section.
16908
16909 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16910
16911         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16912           empty array if the type is an array. Fixed.
16913           ves_icall_MonoMethod_get_base_definition: if the base method
16914           is abstract, get the MethodInfo from the list of methods of
16915           the class.
16916         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16917           and it was 1-based. Fixed in mono_param_get_objects.
16918
16919 2003-07-20  Martin Baulig  <martin@ximian.com>
16920
16921         * mono-debug.h: Set version number to 31.
16922         (mono_debug_init): Added `MonoDomain *' argument.
16923
16924         * mono-debug-debugger.c: Reworked the type support; explicitly
16925         tell the debugger about builtin types; pass the `klass' address to
16926         the debugger.
16927
16928 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16929
16930         * image.c: Allow new metadata tables to be loaded without a
16931         warning. Also update the warning message to give the new constant value.
16932                 
16933 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16934
16935         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16936         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16937         array type representation changes.
16938
16939 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16940
16941         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16942         on Environment.Exit () call.
16943
16944 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16945
16946         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16947         requires a matching corlib.
16948
16949 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16950
16951         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16952           Committed again without the CRs.
16953         
16954 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16955
16956         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16957           getting it from the "this" socket instance. Did not work
16958           if the socket is a subclass of Socket.
16959           Also fixed bug #35371.
16960
16961 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16962
16963         * metadata.c: fixed size for TypedByRef.
16964         * loader.c: when searching for a method, consider the vararg amrker.
16965         * unicode.c, decimal.c: constify some arrays.
16966
16967 2003-07-15  Dick Porter  <dick@ximian.com>
16968
16969         * socket-io.c: Fixed compilation for gcc < 3.2.
16970
16971         Fixed compilation for machines that don't have AF_INET6 (thanks to
16972         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16973
16974         Fixed compile warnings.
16975         
16976         Fixed formatting and line endings.
16977
16978 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16979
16980         * socket-io.h:
16981         * socket-io.c: Added IPv6 support.
16982
16983 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16984
16985         * class.c (mono_class_is_assignable_from): New function to implement
16986         the is_assignable_from logic. Used by mono_object_isinst, 
16987         Type::IsAssignableFrom () and the interpreter.
16988
16989         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16990         Object, even interfaces.
16991         
16992         * object.c (mono_object_isinst): Implement in terms of 
16993         is_assignable_from.
16994
16995         * icall.c (ves_icall_type_is_assignable_from): New icall.
16996
16997 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16998
16999         * domain.c (foreach_domain): fix compiler warning.
17000
17001 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
17002
17003         * image.c (load_metadata_ptrs): use g_strndup because strndup is
17004         not available on all plattforms
17005
17006 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
17007
17008         * image.h image.c: Store the metadata version string in MonoImage.
17009         * icall.c: New icall to retrieve the image version.
17010         * reflection.c (create_dynamic_image): Fill in the image version field
17011         * reflection.c (build_compressed_metadata): Use the image version
17012         from the image structure.
17013
17014 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17015
17016         * appdomain.c: modified comment.
17017         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
17018         That will be its last iteration when mono_gc_cleanup is called from
17019         mono_runtime_cleanup and before the domain is unloaded.
17020
17021         Fixes bug #45962.
17022
17023 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
17024
17025         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
17026         attributes.
17027
17028 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17029
17030         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
17031         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
17032         Bernie Solomon <bernard@ugsolutions.com>.
17033
17034 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
17035
17036         * object.c, object.h: provide mono_object_new_fast() for faster
17037         allocation in some special cases.
17038
17039 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
17040
17041         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
17042         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
17043
17044 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
17045
17046         * threadpool.c: fix leaks.
17047
17048 2003-07-01  Dick Porter  <dick@ximian.com>
17049
17050         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
17051         using MonoGHashTables.  Fixes threadpool bug posted to list.
17052
17053 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
17054
17055         * image.h, image.c: added support to load an assembly from a byte array.
17056         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
17057         assembly bundle support.
17058
17059 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
17060
17061         * threadpool.c (mono_thread_pool_add): keep a reference to the
17062         AsyncResult to prevent GC
17063
17064 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17065
17066         * class.c: leak fix.
17067
17068 2003-06-25  Dick Porter  <dick@ximian.com>
17069
17070         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
17071         for the async object, the WaitHandle object will close the handle.
17072         Fixes bug 45321.
17073
17074 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
17075
17076         * class.c: in mono_array_class_get (), lookup from the hash with the
17077         same type we insert: this works around a bug in
17078         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
17079         lluis. The real fix will have to wait for after the release.
17080
17081 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17082
17083         * icall.c: fix memory leak when getting type members.
17084
17085 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
17086
17087         * reflection.c: added more pubtoken special cases.
17088
17089 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
17090
17091         * class.c: handle field offset correctly when class size
17092         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
17093
17094 2003-06-20  Martin Baulig  <martin@ximian.com>
17095
17096         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
17097         *image' field.
17098
17099 2003-06-20  Martin Baulig  <martin@ximian.com>
17100
17101         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
17102
17103 2003-06-20  Martin Baulig  <martin@ximian.com>
17104
17105         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
17106         just distinguish between variables in registers and variables at
17107         an offset relative to a register.
17108
17109 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17110
17111         * icall.c: #ifdef out latest changes until mcs is fixed.
17112
17113 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17114
17115         * icall.c: return members in metadata order.
17116
17117 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
17118
17119         * icall.c: avoid infinite loop in GetTimeZoneData.
17120
17121 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
17122
17123         * icall.c: added Marshal.Prelink/All icalls.
17124
17125 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
17126
17127         * object.c, object.h: fix warnings and do some overflow checking
17128         when creating arrays.
17129
17130 2003-06-17  Dick Porter  <dick@ximian.com>
17131
17132         * file-io.h:
17133         * file-io.c: File attributes need to be tweaked slightly when
17134         passed from the managed to the w32 world.
17135
17136 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
17137         * profiler.h profiler-private.h profiler.c: Rework last patch
17138         based on suggestion by Paolo.
17139         
17140 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
17141
17142         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
17143         instruction level coverage data collection.
17144         * profiler.h profiler.c (: Added new callback function which can be
17145         used by the profiler to limit which functions should have coverage
17146         instrumentation.
17147         * profiler.c (mono_profiler_load): Call g_module_build_path to
17148         generate the file name of the profiler library.
17149
17150 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
17151
17152         * profiler.c, profiler.h, profiler-private.h: added basic block 
17153         coverage profiling API.
17154
17155 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
17156
17157         * reflection.c (mono_reflection_create_runtime_class): Add support
17158         for events in dynamically generated code.
17159
17160         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
17161         not allocated.
17162
17163 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
17164
17165         * icall.c: when getting timezone info, return reasonable values if we
17166         can't get the actual data.
17167
17168 2003-06-14  Dick Porter  <dick@ximian.com>
17169
17170         * threads.c (start_wrapper): Remove the reference to the thread
17171         object in the TLS data, so the thread object can be finalized.
17172         This won't be reached if the thread threw an uncaught exception,
17173         so those thread handles will stay referenced :-( (This is due to
17174         missing support for scanning thread-specific data in the Boehm GC
17175         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
17176
17177 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
17178
17179         * reflection.c: ensure streams and tables are first allocated with
17180         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
17181
17182 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17183
17184         * icall.c: fixed GetElementType for byrefs (bug# 44792).
17185
17186 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
17187
17188         * reflection.c (mono_reflection_create_runtime_class): Add support for
17189         properties to dynamically created classes.
17190         * reflection.c: Fix a few places where non-MonoObjects were inserted
17191         into the tokens hashtable.
17192
17193 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17194
17195         * object.c: some support to handle out of memory exceptions.
17196
17197 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
17198
17199         * marshal.c (mono_marshal_get_native_wrapper): support reference
17200         return types
17201
17202 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17203
17204         * object.h, object.c: more portability stuff from Bernie Solomon.
17205         Unexport mono_object_allocate(). Added mono_object_unbox ().
17206         Set exitcode when an unhandled exception is thrown.
17207
17208 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
17209
17210         * marshal.c (mono_marshal_get_native_wrapper): use custom
17211         marshaler for return types.
17212
17213 2003-06-10  Dick Porter  <dick@ximian.com>
17214
17215         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
17216         ip_mreq is available
17217
17218 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
17219
17220         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
17221         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
17222         by Bernie Solomon <bernard@ugsolutions.com>.
17223
17224 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
17225
17226         * gc.c (mono_gc_init): Avoid error message on shutdown when
17227         GC_DONT_GC=1 is used.
17228
17229         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
17230         New icall to return the GUID of a module.
17231
17232 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17233
17234         * class.c: ensure instance size always includes the parent's size
17235         even whem class size is set explicitly (fixes bug#44294).
17236
17237 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17238
17239         * profiler.h, profiler.c: made the simple profiler thread-safe,
17240         get more accurate timing info. Allow the loading of an
17241         externally-developed profiler module.
17242
17243 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
17244
17245         * marshal.c (mono_marshal_get_native_wrapper): improved
17246         class/byref arguments.
17247         (mono_marshal_get_native_wrapper): better string marshaling support.
17248
17249 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
17250
17251         * class.c: ensure .pack and .size are handled correctly and
17252         simplified layout of static fields.
17253
17254 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
17255
17256         * appdomain.c
17257         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
17258
17259         * loader.c (mono_lookup_pinvoke_call): look for modules in the
17260         current directory (fix bug 44008)
17261
17262 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
17263
17264         * marshal.c (mono_marshal_get_native_wrapper): started support for
17265         custom marshalers.
17266         (mono_delegate_to_ftnptr): consider marshalling specifications
17267
17268 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
17269
17270         * reflection.c, reflection.h: emit custom marshal info.
17271
17272 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17273
17274         * object.c: free the GError.
17275         * icall.c: added CloseEvent_internal.
17276         * threads.[ch]:
17277         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
17278         call.
17279
17280 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
17281
17282         * loader.c (mono_method_get_signature): Add support for dynamic
17283         assemblies.
17284
17285 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
17286
17287         * reflection.c: fixed bug #43905.
17288
17289 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
17290
17291         * class.c, domain.c, icall.c, metadata.h, object.h: support for
17292         handling TypedReference and ArgIterator.
17293         * loader.c, loader.h: added function to get signature at call site.
17294
17295 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17296
17297         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
17298         data readonly. Buglets and warning fixes. Some MethodSpec support.
17299
17300 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
17301
17302         * class.h, class.c, object.c: remove relative numbering support.
17303
17304 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
17305
17306         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
17307         free the string, until we get a chance to fix Gtk#
17308
17309 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17310
17311         * marshal.c: revert last patch.
17312
17313 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
17314
17315         * icall.c: updates for new mono_class_vtable() not calling
17316         the type constructor anymore.
17317
17318 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17319
17320         * object.h, object.c: separate vtable creation from type
17321         initialization. Make running the .cctor thread safe.
17322
17323 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
17324
17325         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
17326
17327 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
17328
17329         * loader.c (mono_get_method): consider calling convention
17330
17331 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
17332
17333         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
17334         to return the invisible global type for a module.
17335
17336         * reflection.c (mono_image_build_metadata): Emit global fields too.
17337
17338 2003-05-20  Peter Williams  <peterw@ximian.com>
17339
17340         * loader.c (mono_lookup_internal_call): Add a few newlines.
17341
17342 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
17343
17344         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
17345         literal strings.
17346
17347         * appdomain.c (set_domain_search_path): Recalculate search path when
17348         AppDomainSetup.PrivateBinPath changes.
17349
17350         * object.c (mono_class_compute_gc_descriptor): It turns out some
17351         parts of the class libs (like System.Thread) holds pointers to
17352         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
17353         to treat native int a pointer type here.
17354         
17355 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
17356
17357         * appdomain.h, domain.c: add hashtable for jump target resolution.
17358
17359 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
17360
17361         * reflection.h reflection.c icall.c: Added new icalls 
17362         GetManifestResourceInfoInternal, GetModulesInternal and support
17363         infrastructure.
17364
17365 2003-05-16  Dick Porter  <dick@ximian.com>
17366
17367         * icall.c:
17368         * file-io.h:
17369         * file-io.c: Implement System.IO.MonoIO::GetTempPath
17370
17371 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
17372
17373         * object.c: mono_store_remote_field: little fix to previous patch.
17374
17375 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17376
17377         * class.c: add constructors to array classes.
17378         * icall.c: special case array construction for InternalInvoke (),
17379
17380 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
17381
17382         * class.h class.c reflection.c object.c: Added support for field
17383         defaults in dynamically generated classes.
17384
17385 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
17386
17387         * reflection.c: properly encode charset for ddlimport.
17388
17389 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
17390
17391         * threads.c: allow compiling without GC.
17392
17393 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17394
17395         * appdomain.h, object.c, object.h, threads.c, threads.h: added
17396         handling of thread static data.
17397
17398 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17399
17400         * reflection.h, reflection.c: added mono_custom_attrs_free ().
17401
17402 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
17403
17404         * class.c (mono_array_class_get): always set the serializable flags
17405         (mono_array_class_get): always set the SEALED attribute for array types
17406
17407 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
17408
17409         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
17410         attributes (fix for bug 42021).
17411
17412 2003-05-12  Dick Porter  <dick@ximian.com>
17413
17414         * gc.c: Don't run finalizers when the finalizer thread is
17415         finishing up, because the default domain has already been
17416         destroyed.
17417
17418 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
17419
17420         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
17421         value is null, we should throw an exception.   This is slightly
17422         different than the other conventions used for the constructor.
17423
17424 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17425
17426         * socket-io.c: fixed windows build.
17427
17428 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17429
17430         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
17431
17432 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
17433
17434         * object.c (mono_string_new_wrapper): Compatibility fix for MS
17435         compilers.
17436
17437 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
17438
17439         * class.c (mono_class_layout_fields): Add experimental GC aware
17440         auto layout facility. Requires class library changes to work correctly.
17441
17442         (mono_class_setup_vtable): Avoid overriding explicit interface
17443         method implementations. Fixes iface3.exe test.
17444
17445         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
17446         object reference.
17447         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
17448         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
17449
17450         * metadata.h: Add new type classification macro which determines
17451         whenever the type holds an object reference.
17452
17453 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
17454
17455         * marshal.c (mono_marshal_get_native_wrapper): cleanups
17456
17457 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
17458
17459         * gc.c (finalizer_thread): Work around a GC bug.
17460
17461 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
17462
17463         * marshal.c (emit_struct_conv): allow unions
17464
17465         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17466
17467 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17468
17469         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17470
17471 2003-05-06  Martin Baulig  <martin@ximian.com>
17472
17473         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17474
17475 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17476
17477         * socket-io.c:
17478         (Select_internal): allow NULLs, don't create arrays if not needed.
17479         Coupled with Socket.cs changes.
17480
17481         * threadpool.c:
17482         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17483         register a finalizer for it that will close the semaphore handle. This
17484         fixes the leak and make Lupus' test run with > 4080 loops.
17485
17486 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17487
17488         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17489         Jerome Laban (bug #42287)
17490
17491 2003-05-02  Martin Baulig  <martin@ximian.com>
17492
17493         * debug-mono-symfile.h
17494         (MonoSymbolFile): Moved declaration into mono-debug.h.
17495         (MonoDebugMethodJitInfo): Likewise.
17496         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17497         argument.
17498         (_mono_debug_address_from_il_offset): Take a
17499         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17500
17501         * mono-debug.h
17502         (MonoDebugDomainData): New struct.
17503         (mono_debug_get_domain_data): New function.
17504         (mono_debug_add_method): Take an additional `MonoDomain *'
17505         argument.
17506         (mono_debug_source_location_from_address): Likewise.
17507         (mono_debug_il_offset_from_address): Likewise.
17508         (mono_debug_address_from_il_offset): Likewise.
17509
17510 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17511
17512         * reflection.c: one more check for null type in custom attrs.
17513
17514 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17515
17516         * reflection.c: avoid warning (comparison is always false due to limited
17517         range of data type).
17518
17519 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17520
17521         * icall.c: throw an exception in Type.GetField if the argument 'name'
17522         is NULL.
17523
17524 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17525
17526         * reflection.c: fixed handling of enums in named arguments to custom
17527         attributes (bug #42123).
17528
17529 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17530
17531         * reflection.c: use the right array element type and handle
17532         a null for a Type argument, too.
17533
17534 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17535
17536         * reflection.c: handle arrays as arguments to custom attributes.
17537
17538 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17539
17540         * reflection.c: handle a string value in a custom attr
17541         ctor that takes an object.
17542
17543 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17544
17545         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17546         (fix bug #42063)
17547
17548 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17549
17550         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17551
17552 2003-04-27  Martin Baulig  <martin@ximian.com>
17553
17554         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17555         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17556         MONO_DEBUGGER_EVENT_BREAKPOINT.
17557         (mono_breakpoint_trampoline_code): Removed.
17558         (mono_debugger_event_handler): The last argument is now a
17559         `guint32'.
17560         (mono_debugger_insert_breakpoint_full): Removed the
17561         `use_trampoline' argument.
17562         (mono_debugger_method_has_breakpoint): Likewise.
17563         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17564         mono_debugger_breakpoint_callback(); take the method and
17565         breakpoint number as arguments.
17566
17567 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17568
17569         * metadata.c: fix off by one when loading parameters attributes.
17570
17571 2003-04-24  Martin Baulig  <martin@ximian.com>
17572
17573         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17574
17575 2003-04-24  Martin Baulig  <martin@ximian.com>
17576
17577         * mono-debug-debugger.c: Moved all code which interacts with the
17578         Mono Debugger here.
17579
17580         * debug-mono-symfile.c: This code now just deals with the symbol
17581         file itself, the debugger code is now in mono-debug-debugger.c.
17582
17583 2003-04-23  Martin Baulig  <martin@ximian.com>
17584
17585         * mono-debug.c (mono_debug_source_location_from_il_offset):
17586         New method; like mono_debug_source_location_from_address(), but
17587         takes an IL offset instead of a machine address.
17588
17589 2003-04-23  Martin Baulig  <martin@ximian.com>
17590
17591         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17592         `line' field; this is now computed by the debugger.
17593
17594 2003-04-23  Martin Baulig  <martin@ximian.com>
17595
17596         * mono-debug.[ch]: New files.  This is the new debugging interface.
17597
17598         * mono-debug-debugger.[ch]: New files.  Moved all code which
17599         interacts with the Mono Debugger here.
17600
17601 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17602
17603         * domain.c (mono_init): initialize mono_defaults.monitor_class
17604
17605 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17606
17607         * reflection.c (method_encode_code): Add a spicy exception to help
17608         future compiler authors.
17609
17610 2003-04-21  Martin Baulig  <martin@ximian.com>
17611
17612         * icall.c
17613         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17614         Make this work with relative pathnames; g_filename_to_uri() needs
17615         an absolute filename.
17616
17617 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17618
17619         * icall.c: Track name changes in Object and ValueType.
17620
17621 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17622
17623         * metadata.c (mono_type_stack_size): size should be a multiple of
17624         sizeof (gpointer)
17625
17626 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17627
17628         * gc.c:
17629         (internal_domain_finalize): moved into mono_domain_finalize. No need
17630         to create another thread because the finalizers will be run in the
17631         finalizer thread.
17632         
17633         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17634         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17635         to be run (MS does this too).
17636
17637 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17638
17639         * object.c (mono_class_compute_gc_descriptor): Update comment.
17640
17641         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17642
17643         * image.h: Add synchronized wrapper cache.
17644
17645         * image.c (do_mono_image_open): Initialize cache.
17646
17647         * reflection.c (create_dynamic_mono_image): Initialize cache.
17648
17649 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17650
17651         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17652         ves_icall_System_Buffer_ByteLengthInternal.
17653
17654 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17655
17656         * reflection.c: setup klass->nested_in earlier. Allow
17657         a dash in the assembly name.
17658
17659 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17660
17661         * metadata.c (mono_type_to_unmanaged): dont access
17662         type->data.klass for MONO_TYPE_OBJECT
17663         (mono_type_to_unmanaged): consider System.Delegate class
17664
17665 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17666
17667         * class.c: just setup supertypes in the proper place instead of
17668         initializing the full element class for arrays.
17669
17670 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17671
17672         * class.c: ensure the element class of arrays is initialized.
17673         Setup the supertype info for array classes, too.
17674
17675 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17676
17677         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17678
17679 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17680
17681         * Makefile.am: re-added -m option when running cygpath. This way,
17682         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17683         separator.
17684         * mono-config.c: same codepath for locating mono config file for WIN32
17685         and the rest.
17686         * assembly.c: if mono_assembly_setrootdir is called, don't override
17687         the value set.
17688
17689 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17690
17691         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17692         MONO_ASSEMBLIES variable.
17693
17694 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17695
17696         * icall.c: added Assembly::GetNamespaces() icall.
17697
17698 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17699
17700         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17701
17702 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17703
17704         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17705         * object.c: fixed bug in the construction of vtable for proxies
17706
17707 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17708
17709         * object.c (mono_array_new): Mark mono_array_new as an icall.
17710
17711 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17712
17713         * class.c: fixed test for public method when overriding interfaces.
17714         Closes bug #40970.
17715
17716 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17717
17718         * appdomain.h, domain.c: added mono_domain_foreach() to
17719         be able to access the currently loaded appdomains.
17720         * object.c: make string interning work across sppdomains.
17721         Mark some functions for use as icalls.
17722
17723 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17724
17725         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17726
17727         * reflection.h reflection.c: Allocate long living data using 
17728         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17729
17730         * reflection.c: Double the allocation size in streams instead of
17731         increasing it, to prevent unneccesary copying on large assemblies.
17732         
17733         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17734         creation if the assembly does not have the Run flag set.
17735
17736 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17737
17738         * class.h: avoid the C++ keywords in header files (Jerome Laban
17739         spotted and fixed this).
17740
17741 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17742
17743         * object.c:
17744         (mono_unhandled_exception): fill in the arguments for the
17745         UnhandledException event. Only trigger that event for the default
17746         domain (as MS does).
17747
17748 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17749
17750         * object.c: Improve typed allocation stuff based on suggestions from
17751         Paolo. Also turn it on if the GC library supports it.
17752
17753 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17754
17755         * object.c object.h class.h: Added experimental typed allocation
17756         facility using the interfaces in gc_gcj.h.
17757
17758         * os/gc_wrapper.h: Added new include files.
17759         
17760 2003-04-03  Martin Baulig  <martin@ximian.com>
17761
17762         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17763         which is not yet enabled by default.
17764
17765         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17766         functions.
17767         (mono_gc_lock, mono_gc_unlock): New static functions.
17768
17769         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17770         functions; stop/start the world for the garbage collector.  This
17771         is using the windows API; we need to complete the SuspendThread()/
17772         ResumeThread() implementation in the io-layer to make this work on Unix.
17773         (mono_gc_push_all_stacks): New public function; tells the garbage
17774         collector about the stack pointers from all managed threads.
17775
17776 2003-04-03  Martin Baulig  <martin@ximian.com>
17777
17778         * object.h (MonoThread): Added `gpointer stack_ptr'.
17779
17780         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17781
17782 2003-04-03  Martin Baulig  <martin@ximian.com>
17783
17784         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17785
17786 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17787
17788         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17789         field.last.
17790
17791 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17792
17793         * loader.c (mono_lookup_internal_call): Report the corlib that is
17794         out of sync.
17795
17796 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17797
17798         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17799         System.DBNull (it's class not valuetype).
17800
17801 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17802
17803         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17804         if the array method was already assigned a token (fixes bug#40646).
17805
17806 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17807
17808         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17809         if no assembly is given.
17810
17811 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17812
17813         * metadata.h: Added the new tables.
17814
17815         * row-indexes.h: Added definitions for new tables.
17816
17817         * metadata.c: Add schemas for new tables, and add support for
17818         computing the sizes of them.
17819
17820         * class.c: Update for handling the new type cases.
17821
17822 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17823
17824         * metadata.h (MONO_TYPE_IS_VOID): new macro
17825
17826 2003-03-31  Martin Baulig  <martin@ximian.com>
17827
17828         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17829
17830         * threads.c (mono_thread_new_init): Call `thread_created' in the
17831         mono_thread_callbacks.
17832
17833 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17834
17835         * loader.h: added marshalbyrefobject_class to mono_defaults
17836         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17837         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17838           generation of output parameters.
17839           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17840         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17841           contextbound and the target object belongs to the context of the caller.
17842         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17843         * object.c: Implemented support for interfaces and abstract classes
17844           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17845           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17846
17847 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17848
17849         * class.h class.c (mono_class_is_subclass_of): New function.
17850         
17851         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17852         routines for most common case (calls from ArrayList::ToArray).
17853
17854         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17855         routine so programs which call Environment::Exit() can be profiled.
17856
17857         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17858         Added MONO_ARCH_SAVE_REGS.
17859
17860         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17861
17862 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17863
17864         * blob.h: Add a couple of new MonoType types definitions.
17865
17866         * tabledefs.h: Add a couple of new call convs.
17867
17868 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17869
17870         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17871         the layout of the class.
17872
17873         * reflection.c (alloc_table): double the size on overflow to avoid
17874         unnecessary copying.
17875
17876         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17877         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17878         null so it can be garbage collected.
17879         
17880 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17881
17882         * reflection.c (mono_reflection_get_type): Return the resolved type
17883         only if it is in the assembly we searched.
17884
17885         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17886
17887         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17888         method.
17889
17890 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17891
17892         * appdomain.c:
17893         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17894         the right one is 'file:///blah', but MS allows it.
17895         * assembly.c:
17896         (mono_assembly_open): allow 'file://blah'
17897
17898         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17899
17900 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17901
17902         * socket-io.c: fixes bug #40310.
17903
17904 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17905
17906         * reflection.c (mono_reflection_parse_type): handle deeply nested
17907         types correctly.
17908
17909         * reflection.c (mono_image_create_token): Use unique token values
17910         since they will be put into a hash table.
17911
17912         * class.c (mono_class_setup_vtable): If a method occurs in more than
17913         one place in the vtable, and it gets overriden, then change the
17914         other occurances too.
17915
17916         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17917         object as return type.
17918
17919 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17920
17921         * icall.c: Deleted "ToString" implementation for double and float
17922         because they are full implemented in managed code.
17923
17924 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17925
17926         * reflection.c, reflection.h: implemented and exported functions
17927         to retrieve info about custom attributes.
17928
17929 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17930
17931         * appdomain.c: moved Uri handling to assembly.c
17932         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17933         work when using a file Uri in *nix and windows.
17934
17935         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17936         GetReferencedAssemblies.
17937
17938 2003-03-18  Dick Porter  <dick@ximian.com>
17939
17940         * icall.c: Rename a couple of internal calls
17941
17942         * threads.c: Set the thread state to Stopped when a thread exits.
17943         Fixes bug 39377.
17944
17945 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17946
17947         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17948         New icall.
17949
17950         * object.c (mono_class_vtable): fix warning.
17951
17952 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17953
17954         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17955
17956         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17957         memory.
17958         (method_encode_clauses): Create exception info structures in the right
17959         order.
17960         (mono_reflection_setup_internal_class): Initialize supertypes field.
17961
17962         * class.c object.c: Handle interfaces which implement other interfaces 
17963         correctly.
17964
17965         * class.h class.c: Move the supertypes array initialization code into 
17966         a separate function so it can be used for dynamic types too. Also call
17967         it earlier, in mono_class_init(), since it can be used before the
17968         type is initialized.
17969
17970 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17971
17972         * Makefile.am:
17973         * assembly.c:
17974         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17975
17976         * appdomain.c:
17977         * appdomain.h:
17978         * marshal.c:
17979         * object.c: remove warnings.
17980
17981 2003-03-13  Martin Baulig  <martin@ximian.com>
17982
17983         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17984         (MonoDebugLexicalBlockEntry): New types.
17985
17986         * debug-mono-symfile.c
17987         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17988
17989 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17990
17991         * process.c: ret can be any non-zero value accroding to MS doc.
17992
17993 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17994
17995         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17996         fixing a warning for a miss-used prototype, would have cause
17997         random memory corruption.
17998
17999 2003-03-07  Martin Baulig  <martin@ximian.com>
18000
18001         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
18002         getting really annoying ....
18003
18004 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
18005
18006         * reflection.c (fixup_method): added support for array methods.
18007
18008 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18009
18010         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
18011         (pointed out by Michael Adams).
18012
18013 2003-03-04  Dick Porter  <dick@ximian.com>
18014
18015         * icall.c: Temporarily reverted the Double and Single ToString()
18016         change, because it broke nunit.
18017
18018 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
18019
18020         * object.h, threads.h: make include files compatible with C++
18021         (patch by Jerome Laban <jlaban@wanadoo.fr>).
18022
18023 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18024
18025         * icall.c: Erased ToString helper functions for Double and Single.
18026         Now, that implementations ar all in managed code (Double and Single
18027         Formatters).
18028
18029 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
18030
18031         * appdomain.c: Added method for initializing the default context of
18032         a domain. Added internal call for getting the default context.
18033         * appdomain.h: Added context variable in MonoDomain struct.
18034         * domain.c: mono_domain_set also sets the default context of the domain
18035         * icall.c: Mapped internal method InternalGetDefaultContext.
18036         * object.c: mono_object_get_virtual_method returns always a remoting
18037         wrapper if the object is a transparent proxy.
18038         mono_runtime_invoke_array: when creating an object by calling the
18039         constructor, if the created object is a proxy, then the constructor should
18040         be called using the a remoting wrapper.
18041
18042 2003-03-03  Dick Porter  <dick@ximian.com>
18043
18044         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
18045         variable so it compiles on solaris.  Problem spotted by
18046         Christopher Taylor <ct@cs.clemson.edu>
18047
18048 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18049
18050         * appdomain.c:
18051         (get_info_from_assembly_name): don't leak value.
18052
18053         * icall.c:
18054         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
18055         result.
18056
18057 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18058
18059         * assembly.c: export mono_image_load_references ().
18060         * class.c: handle function pointers. mono_class_from_name() now
18061         supports nested type names directly.
18062
18063 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
18064
18065         * reflection.h reflection.c: Encode already created dynamic methods 
18066         and fields correctly as a DEF instead of a REF.
18067
18068         * reflection.c: Get rid of the force_ref argument to 
18069         mono_image_typedef_or_ref since it was wrong in the first place.
18070
18071         * string-icalls.c: add error checking to string constructors according
18072         to the MSDN docs.
18073
18074         * reflection.c: Emit types in the order their TypeBuilders were 
18075         created. Previously, a new table index was assigned to each type before
18076         the tables were emitted. This was wrong because the signature blob
18077         might already refer to a type by its original table index.
18078
18079 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
18080
18081         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
18082         change.
18083         
18084 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18085
18086         * Makefile.am: make assemblies dir have \ instead of / on windows.
18087
18088 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
18089
18090         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
18091         iterate over the NESTEDCLASS table using a linear search since the
18092         table is not guaranteed to be sorted by the secondary key.
18093
18094         * class.c (mono_class_create_from_typedef): fixed up call to
18095         mono_metadata_nesting_typedef.
18096         
18097 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
18098
18099         * marshal.c (mono_string_to_byvalstr): clear the memory as
18100         suggested by Jerome Laban <jlaban@wanadoo.fr>
18101
18102 2003-02-26  Dick Porter  <dick@ximian.com>
18103
18104         * process.c: Cope with padding in .rsrc blocks
18105
18106 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
18107
18108         * metadata.h: reverted the filter_len change, it breaks reflection
18109         
18110 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
18111
18112         * metadata.h: added a new field to store the filter_len
18113         
18114
18115 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18116
18117         * reflection.c: handle custom attributes for types and members
18118         created with Reflection.Emit (bug#38422).
18119
18120 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
18121
18122         * reflection.c: define RTSpecialName automatically for constructors for
18123         compatibility with MS.NET.
18124
18125         * reflection.c (mono_reflection_create_runtime_class): initialize
18126         nested_in field of dynamically created classes.
18127
18128 2003-02-22  Martin Baulig  <martin@ximian.com>
18129
18130         * debug-mono-symfile.h: Incremented version number.
18131
18132 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
18133
18134         * object.h icall.c process.c: fix warnings.
18135
18136 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
18137
18138         * appdomain.h appdomain.c:
18139         (mono_domain_try_type_resolve): split the 
18140         name_or_tb argument into a name and a tb argument.
18141         (mono_domain_has_type_resolve): new function to check whenever the
18142         application has registered a TypeResolve event handler.
18143         
18144         * icall.c reflection.h reflection.c: move the type resolve logic into
18145         mono_reflection_get_type () so it will be invoked when 
18146         Assembly::GetType () is called.
18147
18148         * reflection.c:
18149         (mono_reflection_get_type): renamed to get_type_internal.
18150         (mono_reflection_get_type): fixed type name generation so it works 
18151         for nested types too.
18152         (mono_reflection_get_type): call has_type_resolve () to avoid the 
18153         costly type name generation if there is no resolve event handler.
18154
18155 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18156
18157         * class.c, image.c: load exported types from file references.
18158
18159 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
18160
18161         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
18162           used to cache the managed methods used to create proxies and make 
18163           remote invocation of methods.
18164         * class.h: Added in MonoVTable a flag to indicate that a class needs 
18165           to be remotely created.
18166         * object.c: Modified the method mono_class_vtable(). It now initializes 
18167           the remote flag of the vtable. Modified mono_object_new_specific(), 
18168           so now it checks the remote flag.
18169         * icall.c: Added a couple of internal methods, one for enabling instance 
18170           creation interception for a type, and one for creating objects bypassing
18171           the remote check.
18172
18173 2003-02-18  Martin Baulig  <martin@ximian.com>
18174
18175         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
18176         New interncall to get a method's metadata token.
18177
18178         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
18179         New interncall for the debugger.
18180
18181 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
18182
18183         * class.c (mono_class_setup_vtable): allocate supertype array
18184
18185 2003-02-18  Martin Baulig  <martin@ximian.com>
18186
18187         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
18188
18189 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18190
18191         * reflection.c:
18192         (assembly_name_to_aname): jump over unknown properties (i've found
18193         something like: 'type, assembly, version=xxx, custom=null, public...',
18194         so now will ignore custom=null and still get the rest of the values).
18195
18196 2003-02-17  Dick Porter  <dick@ximian.com>
18197
18198         * threads.c: Have Thread.Start() wait for a semaphore to signal
18199         that the thread has set up all its local data.  This fixes bug
18200         34323, where Abort() raced the new thread's TLS data.
18201
18202         Also removes the handle_store() call from start_wrapper, because
18203         threads are now always created suspended and there is no longer a
18204         race between the parent and child threads to store the info.
18205
18206 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
18207
18208         * image.c: explain the #- heap issue in a message, hopefully
18209         avoiding FAQs on mono-list.
18210
18211 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18212
18213         * icall.c:
18214         (GetEntryAssembly): if the domain has not invoked
18215         AppDomain.ExecuteAssembly yet, return the assembly of the default
18216         AppDomain.
18217
18218 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
18219
18220         * class.c (mono_ldtoken): make it work in dynamic assemblies.
18221
18222 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18223
18224         * metadata.c, reflection.c: simple speedup to type hash
18225         and equals code.
18226
18227 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
18228
18229         * image.c, image.h, class.c, assembly.c: move module loading
18230         to MonoImage. When loading metadata, consider alignemnet from
18231         the start of metadata, not from the metadata address in memory.
18232
18233 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
18234
18235         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
18236         AssemblyBuilder objects. Factored out custom attribute creation into
18237         a separate function.
18238         (create_custom_attr): new function to create custom attributes.
18239
18240 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
18241
18242         * Makefile.am: Got tired of typing the full pathname to pedump.
18243         Until there is another option, am installing this.
18244
18245 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
18246
18247         * class.c (class_compute_field_layout): always set field->parent 
18248         (mono_ldtoken): use mono_defaults.fieldhandle_class;
18249
18250 2003-02-11  Dick Porter  <dick@ximian.com>
18251
18252         * threads-types.h:
18253         * monitor.c: Rewrote Monitor, making lock much faster and
18254         Pulse/Wait work as specified.  Also uses much fewer handles, and only
18255         creates them as needed.
18256
18257         * exception.c: Added SynchronizationLockException
18258
18259         * threads.c: Deleted old Monitor implementation.  The new one is
18260         in a new file.
18261
18262 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18263
18264         * class.c: handled TypedReference type code. Set the correct size for
18265         class data. Setup interface_offsets for interface classes, too.
18266
18267 2003-02-09  Martin Baulig  <martin@ximian.com>
18268
18269         * debug-mono-symfile.h: Reflect latest symbol writer changes.
18270
18271 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
18272
18273         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
18274         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
18275         * object.c: fixed mono_object_get_virtual_method () for interfaces.
18276         * verify.c: check for code that runs after the end of the method.
18277
18278 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18279
18280         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
18281         "System.Math::Round2".
18282         * sysmath.h: Added Floor, Round and Round2 definitions.
18283         * sysmath.c: Modified certain functions that were not 100% compliant
18284         with MS.NET (math precision) and added the implementation of Floor,
18285         Round and Round2.
18286
18287 2003-02-07  Martin Baulig  <martin@ximian.com>
18288
18289         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
18290
18291 2003-02-07  Martin Baulig  <martin@ximian.com>
18292
18293         * debug-mono-symfile.c: Reflected latest symwriter changes.
18294         (mono_debug_create_mono_symbol_file): Removed.
18295         (mono_debug_open_mono_symbol_file): Take an argument which
18296         specifies whether to create a dynamic symbol file.
18297
18298 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
18299
18300         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
18301
18302 2003-02-05  Martin Baulig  <martin@ximian.com>
18303
18304         * reflection.c (mono_image_build_metadata): Make this public,
18305         protect it against being called multiple times, don't create
18306         resources and don't build the compressed metadata here.
18307         (mono_image_create_pefile): Do this here.
18308
18309         * icall.c
18310         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
18311
18312 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18313
18314         * socket-io.c: fixed bug #36322.
18315
18316 2003-02-06  Piers Haken <piersh@friskit.com>
18317
18318         * appdomain.[ch]:
18319         * class.h:
18320         * debug-mono-symfile.c:
18321         * icall.c:
18322         * loader.c:
18323         * mono-config.c:
18324         * monosn.c:
18325         * reflection.c:
18326         * socket-io.c: warning cleanups
18327
18328 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
18329
18330         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
18331         function. works like remoting invoke, but does a check for the Proxy first.
18332
18333 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
18334
18335         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
18336
18337 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
18338
18339         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
18340         array of pointers.
18341         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
18342         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
18343
18344         * object.c (mono_store_remote_field_new): used by the new jit
18345         instead of mono_store_remote_field
18346         (mono_load_remote_field_new): used by the new jit
18347         instead of mono_load_remote_field
18348
18349 2003-02-05  Patrik Torstensson
18350
18351         * appdomain.c: changed unload to take the domain id instead
18352         of domain
18353         
18354         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
18355
18356
18357 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18358
18359         * appdomain.c: don't look for assemblies in ApplicationBase if
18360         PrivateBinPathProbe is set.
18361
18362 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18363
18364         * object.c: make the first argument in main_args contain the absolute
18365         path to the assembly. Fixes bug #37511.
18366
18367 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18368
18369         * icall.c: get correct UTC offset for countries not using daylight
18370         time saving. Fixes bug #30030.
18371
18372 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18373
18374         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
18375         and 1 are the family).
18376
18377 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
18378
18379         * icall.c (ves_icall_InternalExecute): removed wrong assertion
18380
18381         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
18382
18383 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
18384
18385         * reflection.c: added support for SignatureHelper tokens, which is
18386         needed by the Calli opcode.
18387
18388         * reflection.h: track changes to SignatureHelper class.
18389
18390         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
18391
18392 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18393
18394         * appdomain.c: fixed loading assemblies from PrivateBinPath.
18395
18396 2003-02-03  Patrik Torstensson
18397         * appdomain.[c|h], domain.c : 
18398          - Added support for getting a domain via domain id
18399          - Support for setting and getting domain from System.AppDomain 
18400            (used in cross appdomain channel)
18401          - Added support for get/set for a MonoAppContext on a thread 
18402            (Context class in System.Runtime.Remoting.Contexts),
18403          - Removed hack in Get/SetData and ExecuteAssembly.
18404         
18405         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
18406         the managed world to get control when a proxy is created.
18407
18408         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
18409         
18410 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
18411
18412         * icall.c
18413         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18414         Populate the codebase field as well.
18415
18416 2003-02-02  Martin Baulig  <martin@ximian.com>
18417
18418         * debug-mono-symfile.c
18419         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
18420         (mono_debug_symfile_add_method): Allow interncalls.
18421
18422 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18423
18424         * icall.c: throw parse exception if strtod fails or the string is empty.
18425
18426 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
18427
18428         * marshal.c: handle object type separately from defined
18429         class types.
18430
18431 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
18432
18433         * marshal.c: handle NATIVE_LPSTR for strings when it's
18434         explicitly specified.
18435
18436 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
18437
18438         * reflection.c, reflection.h, icall.c: setup the reflection
18439         handle cache for ModuleBuilders and AssemblyBuilders.
18440
18441 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
18442
18443         * reflection.c (reflection_methodbuilder_to_mono_method): set
18444         pinvoke flag
18445
18446 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18447
18448         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
18449
18450 2003-01-29  Dick Porter  <dick@ximian.com>
18451
18452         * threads.c: No need for the fake_thread kludge now that Thread
18453         doesn't run a class constructor
18454         
18455 2003-01-29  Dick Porter  <dick@ximian.com>
18456
18457         * threads.c: Use g_direct_hash instead of the rather bogus
18458         g_int_hash
18459
18460 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
18461
18462         * marshal.c (mono_marshal_get_native_wrapper): add check for null
18463         (fix pinvoke12.exe)
18464         (mono_marshal_get_struct_to_ptr): generate valid IL code
18465         (mono_marshal_get_ptr_to_struct): generate valid IL code
18466         (*): correctly set sig->pinvoke, we need to memdup the signature
18467         to do that
18468
18469 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18470
18471         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18472         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18473
18474 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18475
18476         * profiler.c: provide more callers information.
18477
18478 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18479
18480         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18481
18482         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18483
18484         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18485
18486 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18487
18488         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18489         exception instead of going into an infinite loop on dates which it 
18490         can't yet handle.
18491
18492         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18493         out-of-range exception if needed.
18494
18495         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18496         an implementation for an interface method and to override an inherited
18497         method at the same time. 
18498         Imagine a scenario when a virtual method is used to override a
18499         virtual abstract method in a parent class, and this same method 
18500         provides an implementation for an method inherited from an interface. 
18501         In this case, the interface resolution code will set im->slot, which 
18502         means that the virtual method override pass will skip this method 
18503         which means a pointer to the abstract method inherited from the parent
18504         will remain in the vtable of this non-abstract class.
18505
18506         * class.c: (mono_class_setup_vtable): continue search for a real 
18507         method if only an abstract method is found.     
18508
18509 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18510
18511         * reflection.c: add size to encoding for ByValStr and ByValArray
18512         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18513
18514 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18515
18516         * class.c (mono_class_setup_vtable): pass the override info as an
18517         argument.
18518
18519         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18520         correctly.
18521         
18522         * reflection.c (ensure_runtime_vtable); add support for method 
18523         overrides.
18524         
18525 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18526
18527         * reflection.c (resolution_scope_from_image): Hack to work to work with
18528         dynamic assemblies.
18529
18530         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18531         added a 'force_ref' argument to force this function to allways return 
18532         a TypeRef. This is needed by mono_image_get_memberref_token ().
18533         
18534 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18535
18536         * reflection.c (mono_image_get_type_info): interfaces really don't have
18537         a parent.
18538
18539         * reflection.c (mono_image_basic_init): fill out missing fields of
18540         image structure.
18541
18542         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18543         dynamic assemblies. This is required so dynamic assemblies show up in
18544         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18545         Type::GetType() etc. This is consistent with MS behaviour.
18546
18547         * image.c image.h reflection.c: add newly created classes to the name 
18548         cache so mono_class_get () will find them.      
18549
18550 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18551
18552         First part of changes to get IKVM.NET running under mono.
18553         
18554         * appdomain.h, appdomain.c: added new function 
18555         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18556         This function will call AppDomain::DoTypeResolve to do the actual work.
18557
18558         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18559         moved existing code dealing with dynamic tokens to a new function 
18560         called mono_reflection_lookup_dynamic_token (). This function will 
18561         raise TypeResolve events when appropriate. Since reflection.c is not 
18562         part of libmetadata, a new hook function called 
18563         mono_lookup_dynamic_token() is added to class.c which will call this.
18564
18565         * assembly.h assembly.c: make the invoke_load_hook function public,
18566         so it can be called for dynamic assemblies.
18567
18568         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18569
18570         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18571         type isn't found.
18572
18573         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18574         MonoGHashTable, since it contains pointers to objects which the GC 
18575         needs to track.
18576
18577         * assembly.c (search_loaded): remove unused variable.
18578         
18579 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18580
18581         * object.c: fixed issue exposed by gcc-generated IL programs
18582         that use RVA data for pointers.
18583
18584 2003-01-25  Martin Baulig  <martin@ximian.com>
18585
18586         * threads.c (start_wrapper): Moved the initialization of
18587         `start_func' above the mono_new_thread_init() call to which we
18588         pass it as argument.
18589
18590 2003-01-24  Martin Baulig  <martin@ximian.com>
18591
18592         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18593         the MonoThread pointer.
18594
18595 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18596
18597         * icall.c: Rename `PowImpl' to Pow.
18598
18599 2003-01-23  Dick Porter  <dick@ximian.com>
18600
18601         * threads.c (start_wrapper): Create a Thread object if needed, so
18602         the Main() thread can do the class initialisation in a subthread
18603         that has been set up to allow managed code execution.
18604
18605         Pass the thread ID instead of the MonoThread pointer to the thread
18606         start and attach callbacks.  This change is required, because the
18607         jit thread start callback must be called _before_ the Thread
18608         object can be created.
18609         
18610         (mono_thread_init): Removed much object creation code that is no
18611         longer needed.  No managed code is called from here now.
18612
18613         * object.c (mono_runtime_exec_managed_code): Create a subthread
18614         for Main, and call back to the runtime to use it.
18615         Set the exit code when Main exits.
18616
18617         * gc.c: Make sure domain finalisation happens in a subthread.
18618         Re-enable threaded GC, fixing bug 31333 (again).
18619
18620         * environment.c: System.Environment internall calls (so far just
18621         ExitCode is here, the others are still in icall.c)
18622
18623         * appdomain.c (mono_runtime_cleanup): All threads running managed
18624         code should have finished before mono_runtime_cleanup() is
18625         reached, so no need to clean up threads.
18626
18627 2003-01-22  Martin Baulig  <martin@ximian.com>
18628
18629         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18630         `gpointer func' arguments.      
18631         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18632         but added `MonoThread *thread' argument.
18633         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18634
18635         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18636         and pass it to the mono_thread_start_cb callback.
18637         (mono_install_thread_callbacks): New public function to install a
18638         set of callbacks which are set by the debugger.
18639         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18640
18641 2003-01-22  Martin Baulig  <martin@ximian.com>
18642
18643         * Makefile.am: Install debug-mono-symfile.h.
18644
18645 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18646
18647         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18648
18649 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18650
18651         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18652         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18653         (mono_array_class_get): correctly set access levels of arrays
18654
18655 2003-01-20      Patrik Torstensson
18656         * image.h (MonoAssemblyName): changed major, minor, build, revision
18657         from signed to unsigned.
18658
18659 2003-01-20  sean kasun <skasun@azstarnet.com>
18660
18661         * reflection.c (load_cattr_value): Now this handles
18662         MONO_TYPE_SZARRAY.  Fixes bug #35629
18663
18664 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18665
18666         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18667         integer value
18668
18669 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18670
18671         * decimal.c: fixed bug #26056.
18672
18673 2003-01-17  Martin Baulig  <martin@ximian.com>
18674
18675         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18676
18677 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18678
18679         * exception.[ch]:
18680         (mono_get_exception_type_initialization): new function.
18681
18682         * object.c: throw a TypeInitializationException when an exception is
18683         thrown invoking the class constructor.
18684
18685 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18686
18687         * reflection.c: fixed attribute reading.
18688
18689 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18690
18691         * icall.c:
18692         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18693         provided, look for the type in the calling assembly and then in
18694         mscorlib; if the assembly name is provided, only try that one.
18695
18696 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18697
18698         * object.c: register the vtable before there is a chance it's
18699         queried again recursively.
18700
18701 2003-01-13  Duncan Mak  <duncan@ximian.com>
18702
18703         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18704         gc-internal.h. 
18705         
18706 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18707
18708         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18709
18710 2003-01-11  Martin Baulig  <martin@ximian.com>
18711
18712         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18713         this to 20 for the release.
18714
18715 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18716
18717         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18718
18719         * loader.c (mono_method_get_marshal_info): bug fix
18720
18721         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18722         structures with explicit layout
18723
18724 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18725
18726         * profiler.c: made the output more readable (and sorted). 
18727         Added caller information for the allocation profiler.
18728
18729 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18730
18731         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18732
18733 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18734
18735         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18736         to get value types.
18737         
18738 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18739
18740         * object.c, profiler.h, profiler.c, profiler-private.h:
18741         Added object allocation profiler.
18742
18743 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18744
18745         * reflection.h, reflection.c: handle global methods.
18746         Compress blob entries.
18747
18748 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18749
18750         * marshal.c: fix compilation.
18751
18752 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18753
18754         * loader.c (mono_method_get_marshal_info): impl.
18755
18756         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18757
18758 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18759
18760         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18761         for reference types.
18762
18763 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18764
18765         * loader.c: fixed off by one error in loaded parameter names.
18766
18767 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18768
18769         * marshal.c (mono_marshal_get_icall_wrapper): like
18770         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18771         instead of a MonoMethod.
18772
18773 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18774
18775         * decimal.c: fixed bug #36537.
18776
18777 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18778
18779         * marshal.c: throw a missing method exception if a
18780         P/Invoke method is not found.
18781
18782 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18783
18784         * icall.c: allow a null this for constructors.
18785
18786 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18787
18788         * icall.c: raise the proper exceptions if the arguments to the
18789         internal Invoke are incorrect.
18790
18791 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18792
18793         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18794
18795 2003-01-03  Martin Baulig  <martin@ximian.com>
18796
18797         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18798
18799 2002-12-31  Martin Baulig  <martin@ximian.com>
18800
18801         * debug-mono-symfile.c: Completely rewrote the type section.
18802         Instead of using individual malloc()ed fields, we use one big
18803         continuous memory area and offsets into this area.
18804         See the comments in the source code for details.
18805
18806 2002-12-30  Martin Baulig  <martin@ximian.com>
18807
18808         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18809
18810 2002-12-30  Martin Baulig  <martin@ximian.com>
18811
18812         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18813         line number table in this data blob instead of using an external
18814         pointer.
18815
18816 2002-12-28  Martin Baulig  <martin@ximian.com>
18817
18818         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18819
18820 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18821
18822         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18823         as a boxed return type.
18824
18825 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18826
18827         * appdomain.c
18828         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18829         g_build_filename to properly get separators on the filename created.
18830
18831         * object.h: Small change, introduce MonoMarshalByRefObject to
18832         track the layout of that structure in the C# universe as we make
18833         changes there.
18834
18835 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18836
18837         * object.c: removed assert to allow static fields on interfaces.
18838         * loader.c: a TypeSpec may be used for any type, not just arrays.
18839
18840 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18841
18842         * class.c, class.h: added mono_class_array_element_size ().
18843         Ignore static methods in interfaces.
18844
18845 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18846
18847         * threads.c: fixed the build under cygwin.
18848
18849 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18850
18851         * reflection.c: handle nullref constants. Allocate keys for
18852         reflection handles with the GC.
18853
18854 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18855
18856         * threads.c, threads.h: added mono_thread_get_abort_signal()
18857         to get a suitable signal for thread abort.
18858
18859 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18860
18861         * metadata.c: fix handling of ExportedType table.
18862
18863 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18864
18865         * icall.c: added WriteWindowsDebugString internal call.
18866
18867 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18868
18869         * reflection.h: added fields to match C# implementation.
18870
18871 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18872
18873         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18874
18875 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18876
18877         * gc.h, gc-internal.h: Rename header for GC internal calls to
18878         gc-internal.h from gc.h as to not clash with Boehm GC having its
18879         header installed as <gc.h> in outside include paths.
18880         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18881         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18882
18883 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18884
18885         * icall.c: assign minor, build and revision in FillName.
18886
18887 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18888
18889         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18890         Added support for running code generated by Reflection.Emit.
18891
18892 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18893
18894         * appdomain.c: check for NULL argument in LoadFrom.
18895
18896 2002-12-10  Dick Porter  <dick@ximian.com>
18897
18898         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18899
18900 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18901
18902         * appdomain.c: fix buglet when building exe file name.  Handle full
18903         assembly name (needed after latest changes to AssemblyName).
18904         * image.c:
18905         (mono_image_close): free some hashtables.
18906
18907 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18908
18909         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18910         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18911         on some systems (redhat 7.3) 
18912
18913 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18914
18915         * threads.c: delete the critical section of a sync block,
18916         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18917
18918 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18919
18920         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18921
18922 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18923
18924         * appdomain.[ch]: handle the assembly preload event to try loading the
18925         assemblies using the paths we have in the current domain.
18926
18927         * assembly.[ch]: created an assembly preload hook that is called to try
18928         loading the assembly by other means that the ones provided here.
18929
18930         * domain.c: initialize the domain search path.
18931
18932         From now on, assemblies (TODO: except corlib and System) are loaded
18933         according to these rules when using mono_assembly_load ():
18934
18935                 1. It tries to load the assembly from the ApplicationBase
18936                 of the current domain appending .dll and .exe (TODO: have to
18937                 try loading from name/name.dll and name/name.exe).
18938
18939                 2. It tries the search path specified in PrivateBinPath for the
18940                 current domain (if any).
18941
18942                 3. Previous behavior.
18943
18944 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18945
18946         * icall.c: implemented GetInterfaceMap() related icall.
18947         * domain.c, loader.h: load MethodInfo in mono_defaults.
18948
18949 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18950
18951         * gc.c: disable the finalizer thread for now, untill all the issues
18952         with it are resolved.
18953
18954 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18955
18956         * string-icalls.c: handle embedded nulls in string ctor when the
18957         length is specified.
18958
18959 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18960
18961         * class.c: look for explicit interface implementation in parent
18962         classes, too.
18963
18964 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18965
18966         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18967
18968 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18969
18970         * gc.c: protect handles with a critical section.
18971
18972 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18973
18974         * icall.c:
18975         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18976         parameters. If no assembly specified, try getting the type from all
18977         the assemblies in the current domain, else, load the assembly and get
18978         the type from it.
18979
18980 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18981
18982         * marshal.c: applied patch from Aleksey Demakov that fixes
18983         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18984
18985 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18986
18987         * icall.c: fixed get_location.
18988
18989 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18990
18991         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18992         declarations to make it work with older gcc. 
18993
18994         * loader.c (mono_get_method): set signature->pinvoke for native calls
18995
18996 2002-11-20  Dick Porter  <dick@ximian.com>
18997
18998         * threads.c (mono_thread_init): Set the main thread's handle
18999
19000 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * gc.c: allow compilation without GC support. Changed to match the
19003         mono coding style.
19004
19005 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19006
19007         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
19008
19009 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
19010
19011         * reflection.c: set a public key token on the core assemblies.
19012
19013 2002-11-18  Dick Porter  <dick@ximian.com>
19014
19015         * threads.c: Split out some thread initialisation so that other
19016         files can set the start callback function.
19017
19018         * gc.c: Run finalisers in a separate thread, to avoid stack
19019         overflow.  Fixes bug 31333.
19020
19021         * appdomain.c: Set up GC finalisation thread.
19022
19023         * reflection.c: 
19024         * object.c: 
19025         * domain.c: Use gc.h macros for GC_malloc
19026         
19027 2002-11-15  Dick Porter  <dick@ximian.com>
19028
19029         * threadpool.c: 
19030         * threads.c:
19031         * appdomain.c: Removed mono_runtime_init_with_attach(),
19032         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
19033         merging the extra parameter with the existing function.  Removed
19034         unneeded code in mono_thread_attach().
19035
19036 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
19037
19038         * image.c (mono_image_loaded_by_guid): a method to get loaded
19039         images by guid. 
19040         (load_metadata_ptrs): we store the guid as string.
19041
19042 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
19043
19044         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
19045
19046         * metadata.c (mono_guid_to_string): imported method form Zoltan
19047         Varga (slightly modified)
19048
19049         * assembly.c (mono_assembly_open): load precompiled code
19050
19051         * loader.h (MonoMethod): we store the method token for use in the
19052         aot compiler. 
19053
19054 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19055
19056         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
19057         the hook function called when an assembly is loaded.
19058         
19059         * domain.c: Modified file.
19060         (mono_domain_assembly_load): removed hash table insertion of assemblies.
19061
19062         Fixes bug #33196.
19063
19064 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
19065
19066         * reflection.c: Map PEFileKind to the value expected by the WinNT
19067         image loader. 
19068
19069 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19070
19071         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
19072         Read until the buffer is filled completely.
19073
19074 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19075
19076         * icall.c: implemented MonoType.InternalGetEvent ().
19077
19078 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19079
19080         * appdomain.c: implemented InitAppDomainSetup. Delayed
19081         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
19082         the entry_assembly.
19083
19084         * assembly.c: base_dir is now an absolute path ending with
19085         G_DIR_SEPARATOR.
19086
19087         * icall.c: modified get_location according to the above changes.
19088
19089         * object.c: init AppDomain.SetupInformation for the default domain after
19090         we have the entry assembly.
19091
19092         * domain.c: when unloading a domain, setup = NULL.
19093
19094 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
19095
19096         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
19097
19098 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
19099
19100         * object.h, object.c: introduced mono_object_get_virtual_method ()
19101         to lookup the method invoked on an object when a callvirt is done on
19102         a method.
19103         * icall.c: make MethodInfo::Invoke() always do a virtual call.
19104
19105 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19106
19107         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
19108         current domain when loaded an assembly and failed to load it.
19109
19110         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
19111
19112 2002-10-31  Dick Porter  <dick@ximian.com>
19113
19114         * icall.c: 
19115         * file-io.h: 
19116         * file-io.c: Return the error status in a parameter, as the
19117         GetLastError() value has long since been blown away if we try and
19118         look it up in a subsequent internal call invocation.  Delete the
19119         GetLastError() internal call, because it's useless.
19120
19121 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
19122
19123         * class.[ch]: added cast_class to fix bug 29517
19124
19125 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
19126
19127         * marshal.c: create valid IL code in the filter clause:
19128         the new JIT is less forgiving:-)
19129
19130 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19131
19132         * icall.c: removed get_property internal call.
19133
19134 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
19135
19136         * appdomain.h domain.c: Added an ID to appdomains.
19137         
19138         * threads.c threads.h icall.c: Implement icall
19139         Thread:GetDomainID(), and remove unused icall 
19140         CurrentThreadDomain_internal.
19141
19142 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19143
19144         * icall.c: Don't recurse through the base types in GetConstructor.
19145         Fixes bug #32063. 
19146
19147 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19148
19149         * mempool.h, mempool.c: added mono_mempool_empty() and
19150         mono_mempool_stats().
19151
19152 2002-10-23  Dick Porter  <dick@ximian.com>
19153
19154         * file-io.c: 
19155         * file-io.h: 
19156         * icall.c: Added MonoIO.GetFileType internal call
19157
19158 2002-10-17  Dick Porter  <dick@ximian.com>
19159
19160         * appdomain.c (mono_runtime_cleanup): Don't signal the async
19161         delegate semaphore before waiting for all threads to finish,
19162         because new threads can also call async delegates.  Fixes bug
19163         32004.
19164
19165         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
19166         of 3 seconds, in case another async job is queued.  (This part is
19167         needed because the bug fix reintroduced the 3s exit lag.)  This
19168         makes the mono_runtime_shutdown flag superfluous.
19169
19170 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19171
19172         * reflection.c: include ehader size in method section headers.
19173         Really check for suplicated modules entries.
19174
19175 2002-10-17  Martin Baulig  <martin@gnome.org>
19176
19177         * debug-mono-symfile.c: Added back support for locals.
19178
19179 2002-10-14  Martin Baulig  <martin@gnome.org>
19180
19181         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
19182         MONO_TYPE_VOID.
19183
19184 2002-10-14  Martin Baulig  <martin@gnome.org>
19185
19186         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
19187         mono_class_get() instead of looking in the class cache. 
19188
19189 2002-10-13  Martin Baulig  <martin@gnome.org>
19190
19191         * debug-mono-symfile.c: Set version number to 28, include the
19192         signature in method names.
19193
19194 2002-10-13  Martin Baulig  <martin@gnome.org>
19195
19196         * debug-mono-symfile.h: Set version number to 27.
19197
19198 2002-10-11  Martin Baulig  <martin@gnome.org>
19199
19200         * gc.c: Don't register/unregister NULL pointers as disappearing links.
19201
19202 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19203
19204         * metadata.c, metadata.h: added helper function to allocate signatures.
19205
19206 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19207
19208         * icall.c: added internal call to get the location of machine.config.
19209
19210 2002-10-08  Martin Baulig  <martin@gnome.org>
19211
19212         * debug-mono-symfile.c: Ignore classes with a pending init for the
19213         moment.
19214
19215 2002-10-03  Dick Porter  <dick@ximian.com>
19216
19217         * threads.c: Freebsd pthread_t is a pointer
19218
19219 2002-10-03  Dick Porter  <dick@ximian.com>
19220
19221         * socket-io.c: Implemented GetHostName_internal
19222
19223 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19224
19225         * mono-config.c:
19226         (mono_config_parse_file): don't leak the text.
19227
19228 2002-10-02  Martin Baulig  <martin@gnome.org>
19229
19230         * debug-mono-symfile.c: Added support for methods.
19231
19232 2002-10-01  Martin Baulig  <martin@gnome.org>
19233
19234         * debug-mono-symfile.c: Don't emit methods and line numbers for
19235         the dynamic symbol file, just write the type table.  We can easily
19236         have an external helper program which creates a symbol file for an
19237         IL file.        
19238
19239 2002-10-01  Dick Porter  <dick@ximian.com>
19240
19241         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
19242         Only add the handle to the cleanup array when we're about to
19243         launch the thread.  Bug 31425 deadlocked when the test was run on
19244         mono under w32.
19245
19246 2002-10-01  Martin Baulig  <martin@gnome.org>
19247
19248         * debug-mono-symfile.c: Added support for properties.
19249
19250 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19251
19252         * reflection.c: unaligned store fix from Mark Crichton
19253         <crichton@gimp.org>.
19254
19255 2002-09-27  Martin Baulig  <martin@gnome.org>
19256
19257         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
19258         New interncall.
19259
19260 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19261
19262         * assembly.h, assembly.c: use a sane API to hook into the assembly
19263         loading process instead of a useless special-purpouse hack
19264         (ngen needs a hook, too, for example).
19265
19266 2002-09-27  Dick Porter  <dick@ximian.com>
19267
19268         * threads.c (mono_thread_init): Call GetCurrentProcess() so
19269         io-layer can set up some process handle info.  Not needed on w32,
19270         but doesn't hurt either.
19271
19272         * process.c: Pass the program name in the second parameter to
19273         CreateProcess, so the path is searched.  Include the working
19274         directory. Implemented process name, process enumeration, and some
19275         process detail internal calls.
19276         
19277         * icall.c: Added internal calls for process lookup, and some
19278         process details
19279
19280 2002-09-26  Martin Baulig  <martin@gnome.org>
19281
19282         * assembly.c (mono_install_open_assembly_hook): New global
19283         function to install a function to be invoked each time a new
19284         assembly is loaded.
19285         (mono_assembly_open): Run this callback function if set.
19286
19287         * debug-mono-symfile.c: Put back line numbers for the dynamic
19288         symbol file and also record the .il file as source file.  This
19289         allows us to install the temporary symbol file as `file.dbg' just
19290         like a compiler-generated one.
19291
19292 2002-09-26  Nick Zigarovich <nick@chemlab.org>
19293
19294         * Corrected typo in gc.c (BOHEM vs BOEHM).
19295
19296 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19297
19298         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
19299         GetProperties. Also avoid calling g_slist_length in GetProperties and
19300         GetMethods.
19301
19302 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19303
19304         * reflection.c: avoid unaligned stores (bug spotted by
19305         Mark Crichton  <crichton@gimp.org>).
19306
19307 2002-09-25  Martin Baulig  <martin@gnome.org>
19308
19309         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
19310         instead of guint64 for addresses and added prologue/epilogue info.
19311
19312 2002-09-25  Martin Baulig  <martin@gnome.org>
19313
19314         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
19315         store line number info.  For the dynamic symbol file, we only need
19316         to provide the JIT generated dynamic line number info for the dynamic
19317         symbol file.
19318
19319 2002-09-25  Martin Baulig  <martin@gnome.org>
19320
19321         * debug-mono-symfile.h: Incremented version number.
19322
19323 2002-09-24  Martin Baulig  <martin@gnome.org>
19324
19325         * class.c (mono_debugger_class_init_func): New global function
19326         pointer variable.
19327         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
19328         call it.
19329
19330         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
19331         function.  This is called via the mono_debugger_class_init_func
19332         hook to add all types to the dynamic type table.
19333         (ves_icall_MonoDebugger_GetType): New interncall to get a class
19334         from its metadata token.
19335
19336         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
19337         New interncall for the debugger.
19338
19339 2002-09-24  Nick Drochak <ndrochak@gol.com>
19340
19341         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
19342         before using it in case it is null.
19343         
19344 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19345
19346         * metadata.c: allow custom modifiers in local var signatures
19347         (bug spotted by Zoltan Varga).
19348
19349 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19350
19351         * class.c: deal with the <Module> class that may have a NULL vtable.
19352         Eliminate warnings.
19353
19354 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19355
19356         * image.c, image.h: more strong name helpers.
19357         * monosn.c: more work: convert pem keys to cryptoapi format.
19358
19359 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * string-icalls.c: speedup IndexOf.
19362
19363 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19364
19365         * icall.c: updates from Zoltan.2.Varga@nokia.com.
19366
19367 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19368
19369         * icall.c: cleanup: use mono_object_domain ().
19370
19371 2002-09-23  Martin Baulig  <martin@gnome.org>
19372
19373         * debug-mono-symfile.c: Improved type support.
19374
19375 2002-09-22  Martin Baulig  <martin@gnome.org>
19376
19377         * debug-mono-symfile.c: Added support for reference types and strings.
19378
19379 2002-09-22  Martin Baulig  <martin@gnome.org>
19380
19381         * debug-mono-symfile.c: Started to work on the type table.
19382
19383 2002-09-21  Martin Baulig  <martin@gnome.org>
19384
19385         * debug-mono-symfile.c: Largely reworked the symbol table format.
19386         The symbol table is now incrementally updated each time a new
19387         method is added.  We're now also using our own magic and version
19388         so that you don't need to recompile all your classes if the
19389         dynamic table changes.
19390         (mono_debug_update_mono_symbol_file): Removed.
19391         (mono_debug_symfile_add_method): New function to add a method.
19392
19393 2002-09-21  Martin Baulig  <martin@gnome.org>
19394
19395         * icall.c
19396         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
19397         New interncall.
19398
19399         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
19400         New interncall to get a method from its metadata token.
19401
19402 2002-09-21  Martin Baulig  <martin@gnome.org>
19403
19404         * debug-mono-symfile.c: Create type table.
19405
19406 2002-09-20  Martin Baulig  <martin@gnome.org>
19407
19408         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
19409
19410 2002-09-20  Martin Baulig  <martin@gnome.org>
19411
19412         * debug-mono-symfile.c: Provide information about params and locals.
19413
19414 2002-09-20  Martin Baulig  <martin@gnome.org>
19415
19416         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
19417         New interncall.
19418
19419         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
19420         interncall to get a method from its metadata token.
19421
19422 2002-09-20  Martin Baulig  <martin@gnome.org>
19423
19424         * debug-mono-symfile.c: Added a few checks for method->header
19425         being non-NULL.  This should never happen, but for the moment
19426         let's use a g_warning() rather than a g_assert().
19427
19428 2002-09-19  Mark Crichton  <crichton@gimp.org>
19429
19430         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
19431         even if support for it isn't present.  Added an #ifdef to fix this.
19432
19433         * socket-io.c: Added checks back for Solaris support.
19434
19435 2002-09-19  Martin Baulig  <martin@gnome.org>
19436
19437         * debug-mono-symfile.c (read_string, write_string): Reflect latest
19438         changes in the symbol file format.
19439
19440 2002-09-18  Martin Baulig  <martin@gnome.org>
19441
19442         * debug-mono-symfile.c: Set version number to 21.
19443
19444 2002-09-18  Dick Porter  <dick@ximian.com>
19445
19446         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
19447         on netbsd.  Fixes bug 30051.
19448
19449 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19450
19451         * reflection.c:
19452         (set_version_from_string): little fix.
19453
19454 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19455
19456         * monosn.c, Makefile.am: added strong name utility.
19457         * reflection.h, reflection.c: implemented delayed signing,
19458         locale, version and hash id assembly attributes.
19459
19460 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19461
19462         * loader.c, metadata.c: load param attributes in signatures.
19463
19464 2002-09-16  Martin Baulig  <martin@gnome.org>
19465
19466         * debug-mono-symfile.c: Added string table with all method names.
19467
19468 2002-09-14  Martin Baulig  <martin@gnome.org>
19469
19470         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19471         fast method lookup.
19472
19473 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19474
19475         * reflection.c: record the public key token of referenced assemblies.
19476
19477 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19478
19479         * image.c, image.h: added functions to get the strong name and the
19480         public key of an assembly.
19481         * pedump.c: use them.
19482
19483 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19484
19485         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19486
19487 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19488
19489         * marshal.c (mono_marshal_get_managed_wrapper): Added
19490         MONO_TYPE_BOOLEAN 
19491
19492 2002-09-11  Martin Baulig  <martin@gnome.org>
19493
19494         * gc.c: Call GC_unregister_disappearing_link() on all links when
19495         finalizing them, this is necessary to aviod a crash in boehm's
19496         finalize handler.
19497
19498 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19499
19500         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19501         nick@chemlab.org.
19502
19503 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19504
19505         * icall.c: implemented MonoType::Module.
19506         * reflection.c, reflection.h: mono_module_get_object () from
19507         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19508
19509 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19510
19511         * icall.c: ignore overridden methods in GetMethods ().
19512         Fix for FieldInfo::SetValue().
19513         * object.c: handle float/double in runtime invoke.
19514
19515 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19516
19517         * object.c: allow a constructor to be called again on an object.
19518
19519 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19520
19521         * class.h, class.c: move field layout code to it's own function and
19522         export it. Get an interface id earlier. Move fields in MonoClass
19523         so they are more cache friendly and align the bitfields.
19524         * loader.c: temporary handle get_param_names() for a runtime method.
19525         * reflection.c, reflection.h: more code to handle runtime creation of
19526         types.
19527
19528 2002-09-09  Martin Baulig  <martin@gnome.org>
19529
19530         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19531         signature with the pinvoke field being set for the actual call.
19532
19533 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19534
19535         * icall.c: removed some unused icalls. Start of map of glib charsets
19536         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19537
19538 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19539
19540         * debug-helpers.c: break infinite loop (found and fixed by
19541         Holger Arnold <harnold@gmx.de>).
19542
19543 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19544
19545         * icall.c: target may be null in create_delegate.
19546
19547 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19548
19549         * marshal.c: handle a boolean return type.
19550
19551 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19552
19553         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19554
19555 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19556
19557         * gc.c: fix weakreferences.
19558
19559 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19560
19561         * icall.c: added icall to get default codepage.
19562
19563 2002-09-03  Dick Porter  <dick@ximian.com>
19564
19565         * threads.h: 
19566         * threads.c: Use MonoThread instead of MonoObject where
19567         apropriate.
19568
19569         Store running thread objects in a hash table, so that we have all
19570         the info to hand when waiting for them to finish
19571         (means we don't need OpenThread() any more, so mingw builds should
19572         be fully functional again.)
19573
19574         * verify.c:
19575         * object.h: Added thread ID to MonoThread
19576
19577 2002-09-03  Martin Baulig  <martin@gnome.org>
19578
19579         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19580
19581 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19582
19583         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19584
19585 2002-09-03  Martin Baulig  <martin@gnome.org>
19586
19587         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19588         argument to store the end address of the disassembled instruction.
19589
19590         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19591         here from debug-symfile.h.
19592         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19593         JIT into this struct.
19594         (MonoSymbolFile): Added `char *image_file' field.
19595         (MonoDebugGetMethodFunc): Removed.
19596         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19597         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19598         (mono_debug_find_method): New method.
19599
19600         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19601         create a full symbol file.
19602         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19603         and static symbol files.
19604         (mono_debug_find_method): The symbol file keeps an internal method hash,
19605         call this to get a MonoDebugMethodInfo from a MonoMethod.
19606
19607         * debug-symfile.[ch]: Removed.
19608
19609 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19610
19611         * image.c (do_mono_image_open): Remove linker version check.
19612
19613 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19614
19615         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19616         wrappers for instance methods.
19617         
19618 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19619
19620         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19621
19622 2002-08-28  Dick Porter  <dick@ximian.com>
19623
19624         * Makefile.am: Export HOST_CC for w32 builds
19625
19626 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19627
19628         * file-io.c process.c: MonoString are null terminated, no
19629         need for mono_string_to_utf16() anymore.
19630
19631 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19632
19633         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19634
19635 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19636
19637         * icall.c, reflection.h: speedup System.MonoType.
19638
19639 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19640
19641         * reflection.c: allow null as the value of a string argument in
19642         custom attributes constructors.
19643
19644 2002-08-27  Martin Baulig  <martin@gnome.org>
19645
19646         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19647         `trampoline_address' field.
19648
19649 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19650
19651         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19652         check (fixes bug #29486) 
19653
19654 2002-08-27  Martin Baulig  <martin@gnome.org>
19655
19656         * debug-mono-symfile.c: Changed the file format in a way that allows us
19657         open it read-only and to use a specially malloced area for all the
19658         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19659         debugging IL code and there is no MCS generated symbol file for it.
19660
19661 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19662
19663         * object.c: added a define for a good string and array
19664         creation speedup (not enabled by default because we need to deal with
19665         the synch stuff).
19666
19667 2002-08-26  Martin Baulig  <martin@gnome.org>
19668
19669         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19670         function to create a dynamic symbol file.  This is used by the
19671         debugger to create a symbol file for IL code on-the-fly.
19672
19673 2002-08-26  Martin Baulig  <martin@gnome.org>
19674
19675         * loader.c (mono_lookup_pinvoke_call): Include the error message
19676         from g_module_error() in the error message.
19677
19678 2002-08-24  Martin Baulig  <martin@gnome.org>
19679
19680         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19681         function to update the symbol file.  The symbol file is mmap()ed
19682         writable, but private.  This allows us to install the symbol file
19683         together with the assembly.
19684
19685 2002-08-24  Martin Baulig  <martin@gnome.org>
19686
19687         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19688         but they can read the new symbol file format which mcs is now creating.
19689
19690         * debug-symfile.c (mono_debug_find_source_location): Moved to
19691         debug-mono-symfile.c; this is now operating on the new symbol file.
19692
19693 2002-08-23  Martin Baulig  <martin@gnome.org>
19694
19695         * debug-helpers.c (mono_method_desc_from_method): New function to get
19696         a MonoMethodDesc from a MonoMethod.
19697
19698 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19699
19700         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19701         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19702
19703 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19704
19705         * string-icalls.[ch]: make helper methods static.
19706
19707 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19708
19709         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19710         types to it and to SetValueInternal.
19711
19712         * object.c: Moved handle_enum label to its proper place. This was the
19713         f... bug! ;-)
19714
19715         This time i compiled mcs and gtk-sharp and they both work.
19716
19717 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19718
19719         * icall.c: reverted partially my previous patch until 
19720         object.c:set_value handles enums correcly.
19721
19722 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19723
19724         * icall.c:
19725         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19726         (ves_icall_System_Environment_get_MachineName): removed warning when
19727         compiling under cygwin.
19728
19729 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19730
19731         * object.c: fixed field_get_value() for reference types.
19732
19733 2002-08-22  Dick Porter  <dick@ximian.com>
19734
19735         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19736         Don't free a buffer while it's still needed.  Patch from Jonathan
19737         Liger <Jonathan.liger@wanadoo.fr>
19738
19739 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19740
19741         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19742         internal call.
19743
19744 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19745
19746         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19747         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19748
19749         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19750         we call unmanaged code which throws exceptions.
19751
19752 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19753
19754         * appdomain.h: added per-domain entry_assembly.
19755         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19756         arguments.
19757         * icall.c: Assembly::GetEntryAssembly icall.
19758         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19759         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19760
19761 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19762
19763         * appdomain.h, gc.c: added mono_domain_finalize ().
19764
19765 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19766
19767         * object.c:
19768         (mono_print_unhandled_exception): changed g_warning by g_printerr
19769         because g_log has a 1024 characters limit (yeah, i got a big stack
19770         trace). Don't print exception name, that should be in ToString 
19771         returned string.
19772
19773 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19774
19775         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19776         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19777
19778 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19779
19780         * object.c:
19781         (mono_print_unhandled_exception): after previous commit, i realized
19782         that MS calls ToString on the exception. I changed this function to
19783         do that. This way we get stack_trace for free.
19784
19785 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19786
19787         * object.c:
19788         (mono_print_unhandled_exception): invoke Message property instead of
19789         getting 'message' field from Exception. Don't allocate memory for
19790         'trace' and 'message' if not needed.
19791
19792 2002-08-18  Dick Porter  <dick@ximian.com>
19793
19794         * unicode.c: Fix asserts to match Encoder.cs checks
19795
19796 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19797
19798         * marshal.c: fix unaligned store issue and a few wrong
19799         opcode argument types.
19800
19801 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19802
19803         * icall.c: added GetUninitializedObjectInternal internal call.
19804
19805 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19806
19807         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19808         to the right domain.
19809
19810 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19811
19812         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19813
19814         * class.c (class_compute_field_layout): set blittable to false for Strings
19815
19816         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19817
19818 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19819
19820         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19821         first chunk of code to create types at runtime. Code to
19822         handle ReflectedType/DeclaringType. Make reflection handles
19823         domain specific.
19824
19825 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19826
19827         * class.c: set correct name in arrays.
19828
19829 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19830
19831         * appdomain.c (mono_domain_transfer_object): make it work with
19832         valuetypes. bug fixes.
19833
19834 2002-08-12  Dick Porter  <dick@ximian.com>
19835
19836         * object.h: Rename some parameters to avoid c++ keywords (Patch
19837         from Joseph Wenninger <kde@jowenn.at>)
19838
19839 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19840
19841         * icall.c: added icall to implement Assembly.GetFile*.
19842
19843 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19844
19845         * reflection.h, reflection.c: code to embed managed resources.
19846
19847 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19848
19849         * class.c: move all the type size stuff into
19850         class_compute_field_layout().
19851
19852 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19853
19854         * class.c: ensure enums have always the correct instance size.
19855         * unicode.c: remove wrong assert.
19856
19857 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19858
19859         * assembly.c: fix mem corruption issue.
19860         * image.h, image.c: added mono_image_get_resource () to access
19861         managed resources.
19862         * icall.c: implemented Assembly.EntryPoint property and some
19863         Managed Resources related internalcalls.
19864
19865
19866 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19867
19868         * image.c, image.h: impemented mono_image_get_entry_point ().
19869         * appdomain.c: use mono_image_get_entry_point.
19870
19871 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19872
19873         * reflection.c: support the object type argument when loading
19874         custom attributes.
19875
19876 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19877
19878         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19879         String as return type.
19880
19881 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19882
19883         * reflection.c: fix encoding of named args for custom attrs to match
19884         the ms implementation. Read them back when instantiating custom
19885         attributes.
19886
19887 2002-08-02  Radek Doulik  <rodo@ximian.com>
19888
19889         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19890         by Dietmar as quick fix
19891         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19892         16 as stack size, used on more places as quick fix before Dietmar
19893         will fix it properly
19894
19895 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19896
19897         * object.h, object.c: added accessors for fields and properties.
19898
19899 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19900
19901         * class.c, class.h: made mono_class_get_field_from_name ()
19902         loop on parent types.
19903         Added mono_class_get_property_from_name ().
19904
19905 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19906
19907         * class.c, class.h: move the code to setup the type vtable in its own
19908         function so that it can be reused also for types created at runtime.
19909         Eliminate the "class" identifier from the header file.
19910         * reflection.c: setup the vtable for enums so that we can create
19911         objects for use in SetConstant ().
19912
19913 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19914
19915         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19916         instead of the delegate itself as this pointer (bug #28383)
19917
19918 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19919
19920         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19921         conversions.
19922
19923 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19924
19925         * loader.c: don't set the pinvoke bit on icalls.
19926
19927 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19928
19929         * debug-helpers.c (mono_method_full_name): only print a number to
19930         indicate wrapper type (so that the output is more readable in traces).
19931
19932 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19933
19934         * class.c (mono_class_init): include method override patch from Paolo
19935
19936 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19937
19938         * icall.c: fixed GetTypeCode().
19939
19940 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19941
19942         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19943         use real delegate invoke function to make it work with multicast
19944         delegates (fix bug# 28291).
19945
19946 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19947
19948         * object.c: load constant strings.
19949
19950 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19951
19952         * reflection.c: no magic numbers.
19953         * tabledefs.h: security action enum.
19954
19955 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19956
19957         * assembly.c: fix possible memory corruption.
19958
19959 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19960
19961         * reflection.h, reflection.c: added support for linking resources.
19962         * verify.c: check we have an updated corlib.
19963
19964 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19965
19966         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19967         string arrays.
19968         (mono_marshal_string_array): null terminate unmanaged string arrays.
19969         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19970
19971 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19972
19973         * icall.c: Type.GetType () can now return also types from the
19974         calling assembly.
19975
19976 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19977
19978         * loader.h, loader.c: stack walking support.
19979         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19980         GetCallingAssembly.
19981
19982 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19983
19984         * marshal.c: added optimisations for blittable types 
19985
19986         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19987         (mono_class_setup_mono_type): set blittable attribute for single
19988         and double.
19989
19990         * marshal.c (mono_string_utf8_to_builder): impl.
19991         (mono_string_builder_to_utf8): impl.
19992         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19993
19994 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19995
19996         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19997         (mono_marshal_get_managed_wrapper): impl. byref types
19998
19999 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20000
20001         * icall.c:
20002         (search_method): don't display debug message. 
20003
20004 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
20005
20006         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
20007
20008 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
20009
20010         * appdomain.c: set the missing filename when throwing exception.
20011
20012 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
20013
20014         * metadata.c (mono_type_size): code cleanup
20015         (mono_type_stack_size): removed some test code
20016
20017 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
20018
20019         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
20020         mono_get_exception_file_not_found now.
20021
20022         * exception.c (mono_exception_from_name_two_strings): New version
20023         that will call a constructor with two string arguments. 
20024         (mono_get_exception_file_not_found): New helper routine, used to
20025         report file-not-found errors.
20026
20027 2002-07-20  Dick Porter  <dick@ximian.com>
20028
20029         * process.h:
20030         * process.c: Pass file handles to CreateProcess
20031         
20032         * icall.c:
20033         * file-io.h:
20034         * file-io.c: Implemented CreatePipe
20035
20036 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
20037
20038         * metadata.c (mono_get_param_info): set alignment for value types
20039
20040 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20041
20042         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
20043         Constify mono_domain_assembly_open().
20044         * loader.c: handle null namespace in icalls.
20045
20046 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
20047
20048         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
20049         (emit_str_to_ptr_conv): marshal object as structs
20050
20051         * metadata.c (mono_type_to_unmanaged): marshal object as structs
20052
20053         * marshal.c (mono_marshal_get_runtime_invoke): support value types
20054
20055 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
20056
20057         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
20058         (mono_marshal_get_native_wrapper): we an now return value types
20059
20060 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20061
20062         * verify.c: more checks implemented.
20063
20064 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
20065
20066         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
20067         (fix bug #27695)
20068         (mono_marshal_get_native_wrapper): allow byref arguments
20069         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
20070         impl. PtrToStringXXX methods
20071         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
20072         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
20073         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
20074         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
20075         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
20076
20077 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20078
20079         * reflection.c: fix buglet in parsing an assembly name.
20080
20081 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
20082
20083         * marshal.c (emit_ptr_to_str_conv): first impl.
20084
20085 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20086
20087         * object.c, class.h: cache the vtable in the class as suggested by
20088         vargaz@freemail.hu (Zoltan Varga).
20089
20090 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20091
20092         * class.h, loader.c: added mono_field_from_token().
20093         * verify.c: first cut of type checking code.
20094
20095 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
20096
20097         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
20098
20099 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
20100
20101         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
20102         (fix bug #27782)
20103         (mono_marshal_get_remoting_invoke): impl.
20104         (mono_delegate_begin_invoke): impl.
20105         (mono_mb_emit_save_args): impl.
20106         (mono_delegate_end_invoke): impl.
20107         (mono_marshal_get_delegate_begin_invoke):
20108         (mono_marshal_get_delegate_end_invoke):
20109         (mono_marshal_get_delegate_invoke): generate a special name for
20110         those methods (including the signature) and associate them whith
20111         the delegate class. 
20112
20113 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
20114
20115         * reflection.[ch]: 
20116         (mono_reflection_type_from_name): now it has a MonoImage parameter
20117         which is used as the default image to search the type in. If the image
20118         is NULL or getting the type from it fails, it defaults to corlib.
20119
20120         * icall.c: changed 1 call to mono_reflection_type_from_name to match
20121         new parameter.
20122
20123 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20124
20125         * reflection.c: update the parameter table index.
20126
20127 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20128
20129         * domain.c: don't include the mark byte in the string hash.
20130
20131 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20132
20133         * icall.cs: icall for Type.GetTypeCode ().
20134         * verify: a couple of fixes and disabled local initialization checks.
20135
20136 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
20137
20138         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
20139
20140         * debug-helpers.c (mono_method_full_name): print the type of the
20141         runtime wrapper
20142
20143         * metadata.c (mono_signature_hash): a hash function for signatures
20144         (mono_signature_hash): better hash algorithm
20145
20146         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
20147
20148         * debug-helpers.c (mono_method_full_name): this can now generate
20149         method names with signatures
20150
20151         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
20152         method dont have this pointers.
20153
20154 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20155
20156         * reflection.c: fixup typebuilder tokens.
20157         * image.c: fix buglet.
20158         * marshal.h: remove whitespace.
20159         * metadata.h, metadata.c: reinstate code that was removed.
20160         * verify.c: handle catch directives and fix another couple of bugs.
20161
20162 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
20163
20164         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
20165         (mono_marshal_get_native_wrapper): make it comp. with the old code
20166         (mono_marshal_get_native_wrapper): support boolean
20167         (mono_marshal_get_managed_wrapper): support more types
20168
20169 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
20170
20171         * class.c (class_compute_field_layout): compute class->blittable attribute.
20172
20173 2002-07-09  Dick Porter  <dick@ximian.com>
20174
20175         * threads.c: Make the thread cleaning up cope with threads that
20176         call ExitThread()
20177
20178 2002-07-08  Radek Doulik  <rodo@ximian.com>
20179
20180         * reflection.c (method_encode_code): use non-translated values to
20181         compute finally_start, this fixes exception handling on ppc, yay!
20182
20183         * decimal.h (struct signscale): fix endianess
20184
20185 2002-07-07  Radek Doulik  <rodo@ximian.com>
20186
20187         * reflection.c: swap box_val and not val
20188
20189 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20190
20191         * reflection.c, reflection.h: handle full assembly info in type name.
20192         Handle Type arguments when loading custom attributes.
20193         * icall.c: updated to use new mono_reflection_type_from_name () method.
20194
20195 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20196
20197         * loader.c:
20198         (method_from_memberref): also print assembly name when method not found.
20199
20200 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20201
20202         * icall.c:
20203         (ves_icall_TypeGetProperties): fixed bug #27473. 
20204
20205 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20206
20207         * reflection.c: display image name and token when cannot find the
20208         .ctor for an attribute.
20209
20210 2002-07-05  Martin Baulig  <martin@gnome.org>
20211
20212         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20213
20214 2002-07-04  Dick Porter  <dick@ximian.com>
20215
20216         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
20217         compile on mingw.  This will cause mingw builds to not wait for
20218         subthreads to terminate after the main thread does.  I've lodged a
20219         bug with the mingw developers for them to wrap OpenThread().
20220
20221 2002-07-03  Dick Porter  <dick@ximian.com>
20222
20223         * threads.c: Store thread IDs instead of handles, because
20224         GetCurrentThread() returns a pseudohandle and therefore stores
20225         useless values.  mono_thread_cleanup() continues checking the
20226         array of threads until it is empty, to cope with subthreads
20227         spawning new threads after the main thread has finished.
20228
20229         * profiler.h:
20230         * profiler.c:
20231         * profiler-private.h: Pass the thread ID to thread profiler
20232         functions, instead of a handle
20233
20234 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20235
20236         * verify.c: fixes to make it more usable.
20237         * pedump.c: added --verify code to verify IL code in an assembly.
20238
20239 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20240
20241         * reflection.c: turn errors into warnings to allow compiling corlib.
20242
20243 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
20244
20245         * reflection.c: add special cases to compile corlib.
20246
20247 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20248
20249         * reflection.c: handle properties with only a set method.
20250
20251 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20252
20253         * opcodes.h: add enum with opcodes in opval order.
20254
20255 2002-07-01  Dick Porter  <dick@ximian.com>
20256         
20257         * object.h:
20258         * object.c (mono_runtime_run_main): Removed unneeded argument
20259
20260 2002-06-28  Martin Baulig  <martin@gnome.org>
20261
20262         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20263
20264 2002-06-27  Dick Porter  <dick@ximian.com>
20265
20266         * threads.c: Store the handle in both the parent thread and in the
20267         subthread, to minimise the time between starting a new thread and
20268         storing its ID.
20269
20270 2002-06-26  Dick Porter  <dick@ximian.com>
20271
20272         * appdomain.c (mono_runtime_cleanup): Close the socket library
20273         after all the threads have finished, not before
20274
20275 2002-06-26  Martin Baulig  <martin@gnome.org>
20276
20277         * debug-symfile.c (mono_debug_find_source_location): Added
20278         `guint32 *line_number' argument.  If it's not NULL, store the line number
20279         there and return the file name without the line number.
20280
20281 2002-06-25  Dick Porter  <dick@ximian.com>
20282
20283         * icall.c:
20284         * process.h:
20285         * process.c: Process forking and other support functions
20286
20287 2002-06-25  Dick Porter  <dick@ximian.com>
20288
20289         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
20290         things dont happen when the image is closed.
20291         (mono_image_lookup_resource): Walk the resource section looking
20292         for a particular entry
20293
20294         * cil-coff.h: PE resource section decoding
20295
20296 2002-06-25  Dick Porter  <dick@ximian.com>
20297         
20298         * assembly.h:
20299         * assembly.c: 
20300         (mono_assembly_foreach): Accessor functions to walk the list of
20301         loaded assemblies
20302         (mono_assembly_set_main):
20303         (mono_assembly_get_main): Process methods need to know which
20304         assembly is the "main" one
20305
20306         * object.c (mono_runtime_run_main): Record the main assembly
20307
20308         * debug-helpers.c: Fix typo
20309
20310 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
20311
20312         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
20313         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
20314
20315 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20316
20317         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
20318
20319 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
20320
20321         * image.c (do_mono_image_open): Initialize reference count,
20322         otherwise we leak the MonoImage.
20323
20324 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20325
20326         * reflection.c: small tweak to handle self-hosting.
20327
20328 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20329
20330         * reflection.c: fix type name parse code.
20331
20332 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20333
20334         * reflection.c: break out of the loop.
20335         * image.c: special case corlib.
20336
20337 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20338
20339         * reflection.c: add all the custom attrs at the end to ensure the
20340         ctors have been properly initialized when the attributes are defined
20341         in the current assembly.
20342
20343 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20344
20345         * reflection.c: handle correctly multiple-nested types.
20346
20347 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
20348
20349         * row-indexes.h: fix typos.
20350         * reflection.c: adjust for typos and fix method_def_or_ref
20351         encoding in MethodImpl table.
20352
20353 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20354
20355         * reflection.c: fix entry point patching (thanks Serge!).
20356
20357 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
20358
20359         * verify.c: add check for System.Exception
20360
20361 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20362
20363         * image.c, class.c: minifix for code just c&p'ed.
20364         * reflection.c: warning fix.
20365         * object.h, loader.h, domain.c: load also StringBuilder.
20366
20367 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20368
20369         * marshal.h, marshal.c: some support code to handle complex marshaling.
20370
20371 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20372
20373         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
20374         Better signatures with vtable error dump.
20375
20376 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
20377
20378         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
20379
20380 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
20381
20382         * icall.c (ves_icall_Type_GetField): impl.
20383
20384 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20385
20386         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
20387         to retrieve a marshal description blob for a field or param.
20388
20389 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20390
20391         * reflection.h, reflection.c: change order of nested type emission
20392         to avoid table corruption. The NestedTypes table is sorted.
20393         * icall.c: change order of GetConstructor results to workaround mcs bug.
20394
20395 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20396
20397         * reflection.h, reflection.c: handle field and param marshal
20398         information.
20399
20400 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20401
20402         * icall.c, marshal.c marshal.h: more Marshal class implementation.
20403
20404 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20405
20406         * reflection.c: fix call convention.
20407
20408 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20409
20410         * reflection.h, reflection.c: mono_image_get_memberref_token()
20411         takes a type instead of a class, now. Added
20412         mono_image_get_array_token() to create tokens for the special
20413         multi-dim array methods.
20414
20415 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20416
20417         * assembly.c: handle modules (no assembly table). Split
20418         loading references in its own function.
20419         * class.c: handle moduleref resolution scope.
20420         * image.c, image.h: cache module name in image.
20421
20422 2002-06-07  Martin Baulig  <martin@gnome.org>
20423
20424         * reflection.c (mono_image_get_type_info): Only add a class layout entry
20425         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
20426
20427 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20428
20429         * icall.c: more signature fixes that used uint instead of int.
20430
20431 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20432
20433         * reflection.c: fixed signature of field refs.
20434
20435 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20436
20437         * class.c, reflection.c: handle typerefs of nested types
20438         (both on read and when writing files).
20439
20440 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20441
20442         * icall.c: fix method signatures that tried to workaround the previous
20443         typo, d'oh!
20444
20445 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20446
20447         * debug-helpers.c: fix typo.
20448
20449 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20450
20451         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
20452         rewrote the PE/COFF writing code (our programs are understood by the
20453         ms runtime, now).
20454
20455 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20456
20457         * gc.c, gc.h, icall.c: weakreference support.
20458
20459 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20460
20461         * Makefile.am, mono-config.c: use $(sysconfdir).
20462
20463 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20464
20465         * icall.c: changed default precision of Double.ToString() to 15.
20466         Fixed memory leak. Unified with Single.ToString.
20467
20468 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20469
20470         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20471
20472 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20473
20474         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20475         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20476         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20477         and myself.
20478
20479 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20480
20481         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20482
20483 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20484
20485         * reflection.c, socket-io.c: more compilation fixes.
20486
20487 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20488
20489         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20490         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20491         unicode.c: warning and compiler compatibility fixes.
20492
20493 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20494
20495         * class.h, metadata.c: fixed warnings/compilation errors.
20496
20497 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20498
20499         * Makefile.am, mono-config.c, mono-config.h: configuration file
20500         support routines.
20501         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20502         config file. Export methods to insert and lookup mappings.
20503
20504 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20505
20506         * reflection.c: handle types and boxed objects in custom attr
20507         constructors.
20508
20509 2002-05-30  Martin Baulig  <martin@gnome.org>
20510
20511         * debug-symfile.c
20512         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20513
20514 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20515
20516         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20517         to lookup the implmap row for a P/Invoke method.
20518         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20519         P/Invoke method from the runtime on an as needed basis.
20520
20521 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20522
20523         * metadata.c (mono_metadata_parse_signature): impl.
20524
20525 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20526
20527         * class.c: handle .pack directive.
20528
20529 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20530
20531         * object.c: initialize static fields with RVA data.
20532
20533 2002-05-25  Martin Baulig  <martin@gnome.org>
20534
20535         * debug-symfile.c
20536         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20537
20538 2002-05-24  Martin Baulig  <martin@gnome.org>
20539
20540         * debug-symfile.c
20541         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20542         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20543         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20544
20545 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20546
20547         * object.c: special case string ctros in invoke.
20548         * gc.c: silly whitespace changes.
20549
20550 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20551
20552         * threadpool.[ch]: impl. a threadpool that can
20553         be used by mint and mono.
20554
20555 2002-05-22  Martin Baulig  <martin@gnome.org>
20556
20557         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20558         The first argument is now a `MonoReflectionModuleBuilder *', the return
20559         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20560         `methods' field to get the method builder.  The `token' argument is the
20561         unfixed token.
20562
20563         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20564         invalid characters instead of g_assert_not_reached()ing.  This seems
20565         to be the behaviour of mscorlib.
20566
20567 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20568
20569         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20570         Hestilow to fix bug #25104
20571
20572 2002-05-21  Martin Baulig  <martin@gnome.org>
20573
20574         * debug-symfile.c (mono_debug_find_source_location): New function.
20575         Looks up an IL offset in the line number table and returns the source
20576         location as a string.
20577
20578 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20579
20580         * icall.c:
20581         (mono_double_ToStringImpl): changed %f by %g until we have something
20582         better.
20583
20584 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20585
20586         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20587         parameters first in C#.
20588
20589 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20590
20591         * icall.c, reflection.h: added icall to get info about an event.
20592
20593 2002-05-20  Radek Doulik  <rodo@ximian.com>
20594
20595         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20596         endian
20597         (mono_value_box): don't use memcpy for small sizes on
20598         architectures with unaligned access
20599
20600 2002-05-20  Martin Baulig  <martin@gnome.org>
20601
20602         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20603         if `tb->parent == NULL'.
20604         (mono_reflection_create_internal_class): New function.  This is
20605         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20606         for enum types.
20607
20608         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20609         New interncall.
20610
20611 2002-05-19  Martin Baulig  <martin@gnome.org>
20612
20613         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20614         argument to get the length, don't default to the array length.
20615
20616 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20617
20618         * assembly.c (mono_assembly_setrootdir): New function used to
20619         override the MONO_ASSEMBLIES directory.
20620
20621 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20622
20623         * icall.c: ValueType_GetHashCode() initialize local var.
20624
20625 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20626
20627         * reflection.c: sort custom attributes table.
20628
20629 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20630
20631         * reflection.c: support named args in custom attributes (write support).
20632
20633 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20634
20635         * reflection.c: fix finally position calculation.
20636
20637 2002-05-15  Radek Doulik  <rodo@ximian.com>
20638
20639         * reflection.c: fixed endianess at many places
20640
20641         * icall.c (ves_icall_InitializeArray): comment out debug msg
20642
20643 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20644
20645         * object.c (mono_unhandled_exception): new function to handle
20646         unhandled exceptions.
20647         (mono_unhandled_exception): call the UnhandledException event.
20648         (mono_runtime_delegate_invoke): impl.
20649
20650 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20651
20652         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20653         returns the RVA, not the direct pointer to the data. Handle the case
20654         when the class size is fixed.
20655
20656 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20657
20658         * reflection.c: fix some endianess issues.
20659
20660 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20661
20662         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20663
20664         * threads.c (mono_thread_init): added a callback which is invoked
20665         at thread start.
20666
20667 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20668         
20669         * icall.c: make GetHashCode return non-negative values.
20670
20671 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20672
20673         * object.c, icall.c, gc.c: revert to address-based hashcode.
20674
20675 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20676
20677         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20678
20679 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20680
20681         * icall.c, class.c: special case <Module>.
20682
20683 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20684
20685         * icall.c: fix bug in GetNow().
20686
20687 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20688
20689         * object.c (mono_runtime_class_init): make sure that we call all
20690         static class constructors.
20691
20692 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20693
20694         * reflection.c: sort methodsemantics table.
20695
20696 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20697
20698         * reflection.h, reflection.c: honour init locals setting.
20699
20700 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20701
20702         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20703
20704 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20705
20706         * reflection.c: support ContructorBuilders in attribute blob creation.
20707
20708 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20709
20710         * reflection.c: some changes to build a binary that can be run
20711         directly in windows.
20712
20713 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20714
20715         * loader.c: print a big message when an icall can't be found.
20716
20717 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20718
20719         * string-icalls.c: fix bug 24248.
20720
20721 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20722
20723         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20724         icall.c, reflection.h: separate assembly loading by pathname and by
20725         assembly name. Use the MONO_PATH env var to search for assemblies.
20726
20727 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20728
20729         * assembly.c, image.h: add some support for assemblies
20730         with multiple modules.
20731         * class.c, class.h: export mono_class_from_typeref().
20732         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20733         instead.
20734
20735 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20736
20737         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20738         documentation says (the ECMA one is correct).
20739
20740 2002-05-02  Dick Porter  <dick@ximian.com>
20741
20742         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20743         Don't name the synchronisation mutex.
20744
20745 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20746
20747         * rand.c
20748         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20749         Make the prototypes match.
20750         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20751         Same.
20752
20753         * icall.c
20754         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20755         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20756         all systems have tm.tm_zone, so use strftime() with %Z to print
20757         the timezone abreviation into a temp string.
20758
20759         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20760         rather than mono_array_addr() on a MonoString on Big Endian
20761         machines.
20762
20763 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20764
20765         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20766         fix bug 24041
20767
20768 2002-04-30  Dick Porter  <dick@ximian.com>
20769
20770         * socket-io.c: Cope with SOCKET being an integer rather than a
20771         pointer now.
20772
20773         * threads.c: Added Thread_free_internal, to deal with thread
20774         handle cleanup.  Moved calls to handle_store() and handle_remove()
20775         to start_wrapper(), so each can only be called once.  Allocate
20776         synchronisation blocks with GC_malloc(), and use GC finalisation
20777         to close the handles.
20778
20779         * icall.c: added System.Threading.Thread::Thread_free_internal
20780
20781 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20782
20783         * icall.c: support Environment.Exit, CommandLineArgs().
20784
20785 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20786
20787         * object.c, object.h: added mono_runtime_run_main () and
20788         mono_runtime_get_main_args () for use in System.Environment.
20789
20790 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20791
20792         * gc.c: fix thinko, enable actual finalization since the jit is now
20793         fixed.
20794
20795 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20796
20797         * gc.c, object.c: take into account that an object may be offset wrt the address
20798         returned by GC_malloc().
20799
20800 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20801
20802         * image.c: handle files without entries in the assembly table (modules).
20803
20804 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20805
20806         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20807         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20808         allowed to be null when it's System.Object class setup.
20809
20810 2002-04-27  Martin Baulig  <martin@gnome.org>
20811
20812         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20813         if `tb->parent == NULL' rather than crashing.
20814
20815 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20816
20817         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20818         calling acos() where asin() should have been called.
20819
20820 2002-04-26  Martin Baulig  <martin@gnome.org>
20821
20822         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20823         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20824         there's a subdirectory called `System', but we don't want to read that
20825         subdirectory as an assembly.
20826
20827 2002-04-25  Martin Baulig  <martin@gnome.org>
20828
20829         * debug-symfile.c: Reflect latest MonoString changes.
20830
20831 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20832
20833         * rand.c, rand.h: instance method icalls need to have an explicit
20834         this pointer as first argument in the C implementation.
20835
20836 2002-04-25  Nick Drochak <ndrochak@gol.com>
20837
20838         * icall.c: Fix typo in map for GetNonZeroBytes
20839
20840 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20841
20842         * string-icalls.c : String does now passes unit tests without any 
20843         errors, the following changes has been made:
20844         
20845         Implemented replace methods.
20846         Renaming of methods to (try) follow the standard.
20847         Fixed compare ordinal
20848         Made all memory allocated directly to function instead of via icall function.
20849         Small performance fix in is_in_array function
20850                         
20851  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20852
20853         c (mono_string_Internal_ctor_charp_int_int):
20854         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20855         sindex < 0, throw ArgumentOutOfRangeException instead of
20856         ArgumentNullException.
20857
20858         Added new check for length == 0, however
20859         I need to make it return String.Empty from the C code.
20860         
20861         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20862         that calculate the length for us here.
20863         
20864         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20865         mono_string_new_utf16 with mono_string_new, since value is utf8.
20866
20867 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20868
20869         * object.c: register the object for finalization if needed.
20870         Allocate one more char in the string for the terminating 0 char.
20871
20872 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20873
20874         * class.c, class.h, image.c: check if a type implemenst a destructor.
20875         Use the proper key for array class lookups.
20876         * icall.c: register the icalls in the System.GC class.
20877         * gc.c, gc.h: GC-related functions and icalls.
20878
20879 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20880
20881         * icall.c:
20882         * socket-io.c:
20883         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20884         changed a couple of free () by g_free ().
20885
20886         * decimal.c: one-liner in the comments for decimal2string ().
20887
20888 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20889
20890         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20891
20892 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20893
20894         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20895         * object.c (mono_runtime_invoke_array) : handle null in params
20896
20897 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20898
20899         * string-icalls.c: fixed bug in split (one off bug)
20900
20901 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20902
20903         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20904         * icalls.c: added String::Equals as internal method
20905
20906 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20907
20908         * threads.c: fixed bug in the double interlocked functions
20909
20910 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20911
20912         * threads.c: implemented all of the new interlocked icalls.
20913         * string-icalls.c: fix a bug in insert.
20914         * icalls.c: added the icalls for interlocked, removed old string functions.
20915         
20916 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20917
20918         * loader.c: fix off-by-one error when reading argument names.
20919
20920 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20921
20922         * profiler.c: win32 counter implementation (untested).
20923         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20924         (the latter needs testing and more complete impl. from win32 folks).
20925
20926 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20927
20928         * object.c: mono_array_new_full workaround mono_array_class_get
20929         problem.
20930
20931 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20932
20933         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20934         * object.h (mono_string_chars): Changed casting type.
20935
20936 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20937
20938         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20939                            method signatures to use gunichar2 instead of gint16.
20940
20941 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20942
20943         * object.h, object.c: domain-specific versions of mono_object_new and
20944         mono_array_new.
20945
20946 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20947
20948         * object.c: changed String layout
20949
20950         * string-icalls.c (mono_string_Internal_ctor_chara): added
20951         internal string constructors.
20952
20953 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20954
20955         * threads.c: pass 'this' to the thread start routine.
20956
20957 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20958
20959         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20960         InternalCompareStr don't call twice mono_string_cmp_char for the last
20961         character. Improved performance in mono_string_cmp_char.
20962
20963 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20964
20965         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20966         code into its own library: libmonoruntime.
20967
20968 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20969
20970         * object.h, object.c: changed array format so that szarrays do not
20971         require a bounds structure.
20972         * icall.c, appdomain.c: support for new szarray format.
20973
20974 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20975
20976         * metadata.c: compare also the retuns type when comparing signatures:
20977         we didn't do this as an optimization since really overloaded methods
20978         must differ also in the arguments, but this doesn't work with
20979         low-level IL code (or when using explicit conversion operators: see
20980         bug#23498 for an example).
20981
20982 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20983
20984         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20985
20986 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20987
20988         * icall.c: make MonoType::GetElementType its own icall.
20989
20990 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20991
20992         * icall.c: remove MonoMethod_get_Name().
20993         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20994         object.
20995
20996 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20997
20998         * string-icalls.c: optimized a few methods.
20999
21000 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
21001
21002         * icall.c: added all new string internal calls
21003         * string-icalls.c: added, new string internal call implementation.
21004         * object.c: added mono_string_new_size for allocating a string a size
21005
21006 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
21007
21008         * object.c (mono_object_isinst): use the same code as in the
21009         optimized x86 version.
21010
21011 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
21012
21013         * profiler.c: TSC-based timer code (faster and more accurate).
21014         Not hooked up in configure, yet (set USE_X86TSC to 1).
21015
21016 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
21017
21018         * profiler.c, profiler.h: track time spent compiling methods.
21019         * threads.c: track thread creation/destruction.
21020
21021 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
21022
21023         * profiler.c, profiler.h, profiler-private.h: profiling interface
21024         and sample implementation. Moved here so that it can be used also by
21025         the jit.
21026
21027 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
21028
21029         * reflection.c, reflection.h: keep types and other handles separate in
21030         the hash tables for referred tokens. Add guid for modules.
21031
21032 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
21033
21034         * assembly.c: fix bugs found with valgrind.
21035         * metadata.h, metadata.c: added mono_metadata_guid_heap().
21036
21037 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
21038
21039         * threads: added icall support for getting current domain for
21040                    the thread.
21041  
21042 2002-04-13  Martin Baulig  <martin@gnome.org>
21043
21044         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
21045         (MonoDebugVarInfo): Added `index' field for register based addresses.
21046         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
21047         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
21048         `MonoDebugVarInfo *params' and `guint32 this_offset' with
21049         `MonoDebugVarInfo *this_var'.
21050
21051         * debug-symfile.c (relocate_variable): New static function to write
21052         a location description for a local variable or method parameter.
21053
21054 2002-04-12  Martin Baulig  <martin@gnome.org>
21055
21056         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
21057         stack offset and begin/end scope address of a local variable.
21058         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
21059         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
21060         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
21061
21062         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
21063         Added new relocation types for start/end scope of a local variable.
21064
21065 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
21066
21067         * object.h: add mono_object_domain() macro.
21068         * reflection.c: handle typespecs.
21069         * icall.c: MonoMethod::get_Name() implementation.
21070
21071 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21072
21073         * icall.c: String::GetHashCode() icall implementation.
21074
21075 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21076
21077         * icall.c: String::IndexOfAny icall.
21078         * object.c, object.h: make array->max_length more useful.
21079         Intrduced mono_object_class() and mono_string_length() macros.
21080
21081 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21082
21083         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
21084         instead of g_unichar_isdigit.
21085
21086 2002-04-11  Nick Drochak  <ndrochak@gol.com>
21087
21088         * icall.c: Implement a simple Double.ToString().
21089
21090 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21091
21092         * appdomain.h: only io-layer.h is supposed to be included.
21093         * icall.c: explicitly import environ. Fix warning.
21094
21095 2002-04-10  Nick Drochak  <ndrochak@gol.com>
21096
21097         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
21098                 return true even if it's not Daylight Savings time.
21099                 Only return false for the case where the function isn't
21100                 implemented for a plaform (read Windows).
21101
21102 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21103
21104         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
21105         data with a mutex.
21106
21107 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
21108
21109         * mempool.c (mono_mempool_alloc): only use g_malloc when
21110         absolutely necessary.
21111
21112 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
21113
21114         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
21115
21116         * class.c (mono_class_vtable): use domain mempool to allocate vtable
21117         (mono_class_proxy_vtable): use domain mempool
21118
21119 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
21120
21121         * appdomain.h, appdomain.c: split initialization that requires the
21122         execution engine support into mono_runtime_init().
21123
21124 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
21125
21126         * class.c (mono_class_init): don't include vtable inside MonoClass
21127         to save some memory, gather some statistics.
21128         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
21129
21130 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
21131
21132         * icall.c: internalcall implementation for ValueType.Equals().
21133
21134 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
21135
21136         * object.c (mono_message_init): moved 
21137         (mono_runtime_exec_main): new arch. independent impl.
21138         (mono_runtime_invoke_array): new method - like
21139         mono_runtime_invoke, but you can pass an array of objects.
21140         (mono_remoting_invoke): new arch. independent impl.
21141         (mono_message_invoke): new arch. independent impl.
21142         (mono_runtime_class_init): new arch. independent impl.
21143         (mono_runtime_object_init): new arch. independent impl.
21144
21145 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
21146
21147         * metadata.c, object.c, reflection.c: documented the exported
21148         functions.
21149
21150 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21151
21152         * icall.c: simpler code to pass the assembly builder data to corlib.
21153         Implement GetNestedTypes() internalcall.
21154
21155 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
21156
21157         * class.c: warn if a type can't be loaded.
21158
21159 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
21160
21161         * image.h: typedef MonoImageOpenStatus
21162         * types.h: removed unused file
21163         
21164 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
21165
21166         * icall.c: Enum_ToObject accepts enum value arguments.
21167
21168 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21169
21170         * class.c: move initialization of properties, events and nested
21171         classes, so that they happen for interfaces, too.
21172
21173 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21174
21175         * icall.c: cleanup some ugly casts in Array_SetValue*.
21176
21177 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21178
21179         * icall.c: the values array fro enums is of the correct type, now.
21180         Implement (correctly) getFullName instead of assQualifiedName for
21181         MonoType.
21182         * reflection.h, reflection.c: added mono_type_get_name ().
21183
21184 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
21185
21186         * assembly.c, image.h: for each MonoImage, record from wich assembly
21187         it was loaded.
21188         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
21189         Make Type.Assembly work.
21190
21191 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
21192
21193         * debug-symfile.h: use char* instead of gpointer to avoid
21194         unnecessary casts.
21195
21196         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
21197
21198         * icall.c (ves_icall_InternalExecute): impl. FielSetter
21199         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
21200
21201 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
21202
21203         * icall.c (mono_message_init): impl. (code cleanup)
21204         (ves_icall_InternalExecute): impl. FieldGetter
21205
21206         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
21207         defined we call all (non-static)methods through the vtable. 
21208
21209 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
21210
21211         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
21212         finalizer even though the memory is still referenced (and the chunk of
21213         memory is not freed).
21214
21215 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21216
21217         * assembly.c: fix brokeness.
21218
21219 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
21220
21221         * class.c: kill some warnings. Check explicit interface method
21222         implementation also without considering the namespace.
21223         Load also literal strings in static class data.
21224
21225 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
21226
21227         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
21228         (default_assembly_name_resolver): Make the resolver take the
21229         "base" directory where the assembly was originally defined, so we
21230         can load DLLs that are in the same directory as the assembly that
21231         is being referenced.
21232
21233 2002-03-28  Dick Porter  <dick@ximian.com>
21234
21235         * file-io.h: 
21236         * file-io.c:
21237         * socket-io.c: 
21238         * unicode.h: 
21239         * unicode.c: Warning cleanups
21240
21241 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
21242
21243         * object.h, reflection.h: use the correct type instead of MonoObject.
21244
21245 2002-03-28  Martin Baulig  <martin@gnome.org>
21246
21247         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
21248         (mono_debug_update_symbol_file): Initialize classes if necessary.
21249
21250 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21251
21252         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
21253         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
21254
21255 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
21256
21257         * assembly.h: fix function prototype.
21258         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
21259         * mono-endian.h: use const cast.
21260
21261 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21262
21263         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
21264
21265 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21266
21267         * loader.c: don't assert when a typeref can't be loaded, give
21268         a chance to the runtime to trow an exception instead.
21269         * loader.h: fix warning.
21270
21271 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21272
21273         * class.c (mono_class_proxy_vtable): added proxy support
21274
21275 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
21276
21277         * icall.c: removed last of PAL calls, added System.Environment
21278         * file-io.h, file-io.c: MonoIO implementation
21279         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
21280
21281 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21282
21283         * appdomain.c: do not use the byte marker in ldstr table lookup.
21284         * debug-helpers.c: allow two ':' to separate class and method name.
21285         * object.c: allocate arrays bounds with the GC, too.
21286         * verify: add a few more checks.
21287
21288 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
21289
21290         * reflection.c: output also literal strings. Allocate parameter data
21291         with GC_malloc() (thanks, Martin, for catching this!).
21292
21293 2002-03-26  Martin Baulig  <martin@gnome.org>
21294
21295         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
21296         include the `this' offset in the `param_offsets'.
21297
21298 2002-03-25  Martin Baulig  <martin@gnome.org>
21299
21300         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
21301         mono_debug_get_class() function to get the classes. Added new
21302         relocation types for arrays and strings.
21303         (mono_debug_get_class): New static function to search in all
21304         referenced assemblies for a metadata token.
21305
21306         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
21307
21308 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21309
21310         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
21311         hold gc-allocated objects. Make the string heap a stream like the
21312         others. Removed duplicated code when writing stream info.
21313         Added asserts to catch possible buffer overflows. Set the sorted map
21314         for tables that need sorting. Added some documentation.
21315
21316 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
21317
21318         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
21319         for interned strings and vtables.
21320
21321 2002-03-24  Martin Baulig  <martin@gnome.org>
21322
21323         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
21324         it in the array since it was created with g_slist_prepend().
21325
21326 2002-03-24  Martin Baulig  <martin@gnome.org>
21327
21328         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
21329         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
21330         (mono_debug_method_from_token): Renamed to
21331         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
21332         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
21333
21334         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
21335         relocation types.
21336
21337         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
21338
21339 2002-03-24  Martin Baulig  <martin@gnome.org>
21340
21341         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
21342         (mono_debug_method_from_token): New func.
21343
21344         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
21345         New interncall, calls mono_debug_local_type_from_signature().
21346         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
21347         calls mono_debug_method_from_token().
21348
21349 2002-03-23  Martin Baulig  <martin@gnome.org>
21350
21351         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
21352         specifies the number of bytes to be converted, not the array size.
21353         Return the number of chars, not the number of bytes.
21354         (ves_icall_iconv_get_chars): The `byteCount' argument
21355         specifies the number of bytes to be converted, not the array size.
21356
21357 2002-03-23  Martin Baulig  <martin@gnome.org>
21358
21359         * reflection.h (MonoReflectionSigHelper): New type.
21360
21361         * reflection.c (mono_reflection_sighelper_get_signature_local),
21362         (mono_reflection_sighelper_get_signature_local): New functions.
21363
21364         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
21365         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
21366         interncalls.
21367
21368 2002-03-23  Martin Baulig  <martin@gnome.org>
21369
21370         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
21371         is_writeable is set.
21372         (mono_raw_buffer_update): New function to write the modified map
21373         back to disk.
21374
21375         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
21376
21377         * debug-symfile.c (mono_debug_update_symbol_file): Call
21378         mono_raw_buffer_update() when done writing.
21379
21380 2002-03-23  Martin Baulig  <martin@gnome.org>
21381
21382         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
21383
21384         * debug-symfile.c: Added support for arguments and local variables.
21385
21386 2002-03-23  Dick Porter  <dick@ximian.com>
21387
21388         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
21389         protected by ifdefs, hence breaking the w32 build.
21390
21391 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21392
21393         * object.c: implement is_interned() the right way.
21394
21395 2002-03-21  Martin Baulig  <martin@gnome.org>
21396
21397         * debug-symfile.[ch]: New files to handle debugging information
21398         files. There's also support to dynamically update these symbol
21399         files to include machine dependent information.
21400
21401 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
21402
21403         * threads.c (mono_thread_create): new function to create thread
21404         from C
21405
21406 2002-03-20  Martin Baulig  <martin@gnome.org>
21407
21408         * icall.c (ves_icall_InternalInvoke): Create a new object if the
21409         method is a constructor.
21410         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
21411         points to ves_icall_InternalInvoke().
21412
21413 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
21414
21415         * file-io.c: Flush shouldn't throw exceptions.
21416
21417 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
21418
21419         * file-io.c: FileStream flush support; FileSetLength now
21420         restores file pointer.
21421
21422 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21423
21424         * class.c: set image for pointer classes.
21425
21426 2002/03/19  Nick Drochak <ndrochak@gol.com>
21427
21428         * sysmath.c: Forgot one.
21429
21430 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
21431
21432         * sysmath.c: Avoid redefining existing names.
21433
21434 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
21435
21436         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
21437         handled by runtime as icall rather than dllimport from libm.so
21438         * file-io.c, file-io.h: fixed handle argument type.
21439
21440 2002-03-18  Dick Porter  <dick@ximian.com>
21441
21442         * reflection.c (mono_image_get_type_info): rename interface to
21443         iface, because of "#define interface struct" on windows.
21444
21445 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
21446
21447         * class.c, class.h: rename and export mono_ptr_class_get().
21448         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
21449         * reflection.c, reflection.h, icall.c: better/saner type name
21450         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
21451         method signatures.
21452
21453 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
21454
21455         * class.c (mono_class_init): removed hardcoded GHC_SLOT
21456
21457         * icall.c (ves_icall_InternalInvoke): impl.
21458
21459 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21460
21461         * reflection.c: output the interface map table, too.
21462
21463 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21464
21465         * class.c (class_compute_field_layout): separate computation of 
21466         static field layout
21467
21468 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21469
21470         * icall.c: added System.Buffer support.
21471         * file-io.c: moved file icalls from PAL to FileStream.
21472
21473 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21474
21475         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21476
21477 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21478
21479         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21480
21481 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21482
21483         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21484
21485 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21486
21487         * debug-helpers.{c,h}: moved here from monograph some useful functions
21488         to locate a method by name/signature in a class or image. Included
21489         also a small and flexible IL disassembler.
21490
21491 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21492
21493         * reflection.c: fixup tokens in methods with small header size, too.
21494
21495 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21496
21497         * object.c (mono_string_to_utf8): remove assert(!error), instead
21498         print a warning. 
21499
21500 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21501
21502         * icall.c: update to the new mono_Array_class_get interface.
21503
21504 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21505
21506         * appdomain.c, object.c: Boehm-GC enable.
21507         * icall.c: make get_data_chunk() support split data requests.
21508         Ensure a class is initialized in more cases. Return only the first
21509         property found in GetProperties() or the compiler gets confused. 
21510         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21511         * reflection.h, reflection.c: add fixup mechanism for field and method
21512         tokens. Initialize assembly->typeref in a single place. Output
21513         properties after events. Support custom attributes for events, too.
21514         Typo fix for paramter custom attrs.
21515
21516 2002-03-07  Martin Baulig  <martin@gnome.org>
21517
21518         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21519
21520 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21521
21522         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21523
21524 2002-03-06  Martin Baulig  <martin@gnome.org>
21525
21526         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21527         non-zero lower bounds. See testcases #F10-#F13.
21528
21529 2002-03-05  Martin Baulig  <martin@gnome.org>
21530
21531         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21532
21533         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21534         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21535         here.
21536         (ves_icall_System_Array_SetValue): Likewise.
21537         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21538         as argument and does the actual work. This function is used when copying a
21539         multi-dimensional array.
21540         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21541         now do all the widening conversions of value types.
21542         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21543
21544 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21545
21546         * class.c: remove some magic numbers and use the smbolic names,
21547         instead. Added init_events() to load event info at class init time.
21548         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21549         and mono_metadata_methods_from_event().
21550         * reflection.h, reflection.c: added support for writing out the evnets
21551         related information.
21552
21553 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21554
21555         * reflection.h, icall.c: use a different method (GetInterfaces)
21556         to gather interface info and add isbyref, isprimitive and
21557         ispointer to the ves_icall_get_type_info() return value.
21558
21559 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21560
21561         * class.h: stared adding support for events.
21562         * icall.c: split find_members implementation. Added debug icall to get
21563         the address of an object.
21564         * reflection.c: handle TypeBuilders in mono_type_get_object().
21565
21566 2002-03-01  Martin Baulig  <martin@gnome.org>
21567
21568         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21569         ArgumentOutOfRangeException(), not an ArgumentException().
21570         (ves_icall_System_Array_GetLowerBound): Likewise.
21571         (ves_icall_System_Array_GetValue): Improved argument checking.
21572         (ves_icall_System_Array_SetValue): Improved argument checking.
21573
21574 2002-03-01  Martin Baulig  <martin@gnome.org>
21575
21576         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21577         called with invalid arguments rather than just dying with g_assert().
21578         (ves_icall_System_Array_SetValue): Likewise.
21579         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21580         raise a NotImplementedException instead.
21581         (ves_icall_System_Array_GetLength): Added argument checking.
21582         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21583
21584 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21585
21586         * object.h (mono_assert): new macros mono_assert and
21587         mono_assert_not_reached
21588
21589 2002-02-28  Martin Baulig  <martin@gnome.org>
21590
21591         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21592         and "System::String::IsInterned" to "System::String::_IsInterned".
21593
21594 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21595
21596         * icall.c: remove hacks for typebuilder. Added icall to create a
21597         modified type from a tybebuilder.
21598         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21599         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21600         to create a backing MonoClass for a TypeBuilder.
21601
21602 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21603
21604         * class.c, class.h: more refactoring of class init.
21605         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21606
21607 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21608
21609         * marshal.c, marshal.h: start of marshaling interface.
21610
21611 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21612
21613         * icall.c: fix order in assembly qualified name icall.
21614
21615 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21616
21617         * class.c: do not free str, since we store it in the hash table.
21618         * reflection.h: add label field to MonoILExceptionInfo.
21619         * reflection.c: handle references to more than one assembly. Handle
21620         case when there isn't a module created in the assembly.
21621
21622 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21623
21624         * class.c: Fix typo. Start refactoring of class init code.
21625
21626 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21627
21628         * appdomain.c: exit with 1 on error.
21629         * class.c: we already have the name in MonoClassField.
21630         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21631         MonoStreamHeader instead of an offset of image->raw_metadata.
21632
21633 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21634
21635         * appdomain.c (mono_init): Be even more descriptive about the error.
21636
21637 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21638
21639         * appdomain.c: give the user an informative message when corlib can't
21640         be loaded.
21641
21642 2002-02-26  Martin Baulig  <martin@gnome.org>
21643
21644         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21645         New icall to get the time zone data.
21646
21647 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21648
21649         * reflection.c: set virtual and raw size of section correctly.
21650         * threads.c: transfer domain information to newly created threads.
21651
21652 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21653
21654         * class.c: when instancing a class in a domain, load the default
21655         vaules for static fields from the constant table. Fix System.Enum to
21656         not be an enum.
21657         * icall.c: implement Object::GetType() internalcall. Implemented
21658         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21659         Fixed checking of binding flags in find_members().
21660         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21661         * reflection.c: handle enumerations when writing to the constant
21662         table. Use a different object cache for types.
21663
21664
21665 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21666
21667         * object.c (mono_object_isinst): fix for arrays
21668
21669         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21670
21671 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21672
21673         * object.c: don't use mprotect ()  and fix intern pool hash table
21674         lookup for big endian systems.
21675
21676 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21677
21678         * icall.c: change type_is_subtype_of () signature.
21679
21680 2002-02-21  Mark Crichton  <crichton@gimp.org>
21681
21682         * rand.c, rand.h: Added random number generator for
21683         System.Security.Cryptography classes.
21684
21685         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21686
21687         * icall.c: Added System.Security.Cryptography calls.
21688
21689 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21690
21691         * class.c, icall.c, metadata.c: better support for pointer types.
21692         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21693         * reflection.c: Add support for getting custom attrs for properties
21694         and simplify some code.
21695
21696 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21697
21698         * icall.c: change getToken () and add custom attribute GetBlob()helper
21699         method.
21700         * reflection.h: add custom attrs array to the reflection builder structures.
21701         * reflection.c: encode and emit custom attributes for all the relevant
21702         reflection objects. Cache fieldref and methodref tokens. Change
21703         mono_image_create_token() interface to take a MonoDynamicAssembly.
21704         More complete custom attributes decoder. Load custom attributes for
21705         Assembly, Field, Method and Constructor objects, too. Make the
21706         returned array an Attribute[] one, not object[]. Added
21707         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21708         custom attribute constructor.
21709
21710 2002-02-20  Dick Porter  <dick@ximian.com>
21711
21712         * icall.c:
21713         * rawbuffer.c:
21714         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21715         problem code out for now).
21716
21717 2002-02-19  Radek Doulik  <rodo@ximian.com>
21718
21719         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21720
21721 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21722
21723         * icall.c: register the GetCustomAttributes method.
21724         * object.c, object.h: add mono_string_new_len ().
21725         * reflection.h, reflection.c: added mono_runtime_invoke(),
21726         mono_install_runtime_invoke(). Added
21727         mono_reflection_get_custom_attrs () to load custom attributes and
21728         create the attribute objects.
21729
21730 2002-02-19  Dick Porter  <dick@ximian.com>
21731         * threads-dummy-types.c:
21732         * threads-dummy-types.h:
21733         * threads-dummy.c:
21734         * threads-dummy.h:
21735         * threads-pthread-types.c:
21736         * threads-pthread-types.h:
21737         * threads-pthread.c:
21738         * threads-pthread.h:  Deleted obsolete files
21739
21740 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21741
21742         * class.c (mono_class_vtable): runtime init the class when we
21743         allocate static class data.
21744
21745         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21746
21747         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21748         and String - but we will need generic marshalling support in the
21749         future. 
21750         (mono_init): set the domain name in a ms compatible way
21751
21752         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21753         String[].
21754
21755 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21756
21757         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21758         for sizes
21759
21760         * appdomain.c (mono_domain_unload): impl.
21761
21762 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21763
21764         * appdomain.c, object.c: fix intern pool implementation.
21765         * class.c: fix alignment code.
21766
21767 2002-02-16  Radek Doulik  <rodo@ximian.com>
21768
21769         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21770         and s2 > s1, just copy lower bytes to be compatible with little
21771         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21772         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21773
21774         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21775         force big_endian to be 1 for big endian machines 
21776         (ves_icall_iconv_new_decoder): ditto
21777
21778 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21779
21780         * socket-io.c (convert_sockopt_level_and_name): If the system
21781         doesn't define SOL_IP or SOL_TCP, get them by hand using
21782         getprotobyname() and caching the values (because this could be a
21783         slow operation).
21784         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21785         Use the appropriate struct when the system does support it. Ie,
21786         not all systems have struct ip_mreqn so use struct ip_mreq when
21787         appropriate.
21788
21789 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21790
21791         * reflection.c: handle finally clauses.
21792
21793 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21794
21795         * socket-io.c: use g_snprintf() instead of snprintf.
21796
21797 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21798
21799         * reflection.c (mono_param_get_objects): Cast second argument to
21800         mono_method_get_param_names to a const char** to silence the
21801         compiler warning.
21802
21803         * appdomain.c (mono_domain_assembly_open): Put parens around the
21804         truth statement in the for-loop.
21805
21806         * unicode.c (iconv_convert): Got rid of a compiler warning about
21807         int i being unused when the system has a new iconv.
21808         (iconv_get_length): Same.
21809
21810         * image.c (load_class_names): Cast the second argument to
21811         g_hash_table_insert() to char* to hush compiler warnings about the
21812         arg being a const.
21813         (mono_image_open): Same here.
21814
21815         * socket-io.c: Don't conditionally include sys/filio.h or
21816         sys/sockio.h here anymore since we now get them from
21817         io-layer/io-layer.h
21818         (inet_pton): If the system doesn't support inet_aton, implement
21819         using inet_addr and also #define INADDR_NONE if it isn't defined
21820         by the system.
21821
21822 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21823
21824         * metadata.c, metadata.h: added function to get packing and size info
21825         of a typedef.
21826         * reflection.h, reflection.c: handle field RVA data. Save info about
21827         the table layout if needed. Assign typedef indexes to all the types
21828         before dumping the info about them to avoid forward reference problems.
21829
21830 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21831
21832         * socket-io.c (convert_sockopt_level_and_name): ifdef
21833         SO_ACCEPTCONN because it is not defined on my system (old debian)
21834
21835 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21836
21837         * opcode.c: use stddef.h to get NULL.
21838
21839 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21840
21841         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21842         for FIONBIO, FIONREAD and SIOCATMARK.
21843         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21844         define INADDR_NONE and besides, inet_addr() is deprecated and
21845         should not be used. Use inet_pton() instead - it also has the
21846         added bonus that it can easily handle IPv6 addresses as well.
21847         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21848
21849 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21850
21851         * decimal.c: remove _MSC_VER conditional.
21852
21853 2002-02-13  Dick Porter  <dick@ximian.com>
21854
21855         * socket-io.c: 
21856         * icall.c: Internal calls for Blocking, Select, Shutdown,
21857         GetSocketOption and SetSocketOption
21858
21859 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21860
21861         * assembly.cs: better resolver: use it instead of some kludgy
21862         code.
21863
21864 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21865
21866         * reflection.c: the best way to speed-up the compiler is to avoid
21867         infinite loops.
21868
21869 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21870
21871         * class.c (mono_class_vtable): changed the object layout
21872         (obj->vtable->class). 
21873         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21874
21875 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21876
21877         * assembly.c: look for assemblies in the assembly dir, too.
21878
21879 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21880
21881         * class.c: fix thinko in mono_class_from_type().
21882
21883 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21884
21885         * exception.h, exception.c: added TypeLoadException.
21886         * object.h, object.c: added mono_array_clone ().
21887         * icall.c: handle throwOnError in AssemblyGetType().
21888         Added Array.Clone().
21889         * opcode.h, opcode.c: use a single value for the opcode val.
21890         Compile fix for non-gcc compilers.
21891
21892 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21893
21894         * opcodes.c, opcodes.h: export interesting info about opcodes.
21895
21896 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21897
21898         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21899         icalls. 
21900
21901         * class.c (class_compute_field_layout): set element_class for enums
21902         (mono_class_create_from_typedef): set element_class for normal classes
21903
21904         * icall.c (ves_icall_System_Enum_get_value): impl.
21905
21906         * class.c (mono_class_create_from_typedef): do not set valuetype
21907         flag for System.ValueType and System.Enum
21908
21909 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21910
21911         * unicode.c (iconv_convert): fix big endian problem.
21912
21913 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21914
21915         * class.c: add asserts if we are ever going to scribble over memory.
21916         * socket-io.c: not all systems have AF_IRDA defined.
21917
21918 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21919
21920         * class.c (class_compute_field_layout): do not consider static
21921         fields to compute alignment
21922
21923 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21924
21925         * appdomain.c (mono_appdomain_get): impl.
21926         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21927
21928 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21929
21930         * icall.c: ignore "file://" prefix when loading an assembly.
21931
21932 2002-01-23  Dick Porter  <dick@ximian.com>
21933
21934         * socket-io.c:
21935         * icall.c:
21936         * Makefile.am: Added socket support
21937
21938 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21939
21940         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21941         code back.  This should return the assemblies that are loaded by
21942         the runtime on behalf of an application domain. 
21943
21944         The current implementation is still broken, it just returns every
21945         assembly loaded, but until we get real applications domain this
21946         will do.
21947
21948 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21949
21950         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21951         AppDomain object.
21952
21953 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21954
21955         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21956         the mono_class_from_name lookup.
21957         (ves_icall_get_parameter_info): ditto.
21958         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21959         method.
21960         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21961
21962 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21963
21964         * class.c: load also nested classes on class init.
21965         System.ValueType instance methods gets passed boxed
21966         values, unless methods in derived classed that get a pointer to the
21967         data.
21968         * icall.c: use better name parsing code in GetType().
21969         * image.c, image.h: add mono_image_loaded ().
21970         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21971         * reflection.c, reflection.h: added mono_reflection_parse_type().
21972
21973 2002-01-22  Veronica De Santis <veron78@interfree.it>
21974
21975         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21976         * threads.c : Added the implementation of internal calls for events
21977         * threads.h : Added prototypes of internal calls for events
21978         
21979 2002-01-21  Radek Doulik  <rodo@ximian.com>
21980
21981         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21982
21983 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21984
21985         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21986         (mono_class_value_size): use min_align
21987
21988 2002-01-20  Dick Porter  <dick@ximian.com>
21989
21990         * threads.h:
21991         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21992         so it compiles on w32.
21993
21994 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21995
21996         * metadata.c (mono_type_stack_size): impl.
21997
21998         * class.c (mono_class_get_field): impl. memberref token
21999
22000 2002-01-16 Veronica De Santis <veron78@@interfree.it>
22001
22002         * icall.h : Added the internal calls mapping for CreateMutex_internal
22003                     and ReleaseMutex_internal.
22004         * threads.h : Added the prototype of mutexes internal calls.
22005         * threads.c : Added the implementations of mutexes internal calls.
22006
22007 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
22008
22009         * metaparse.h: removed unused file.
22010         * reflection.c, reflection.h: added stream_data_align () function 
22011         to align data in streams and keep stream aligned. Add support for
22012         exception support in method headers.
22013
22014 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
22015
22016         * unicode.c: make iconv_convert () return the number of bytess written
22017         in the output buffer.
22018
22019 2002-01-15  Dick Porter  <dick@ximian.com>
22020         * threads.c: Make the runtime's idea of infinite timeouts coincide
22021         with the class library's
22022
22023         Fix a particularly egregious bug in mono_thread_cleanup(). That
22024         code was so utterly bogus it must have been written on a Monday.
22025
22026 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
22027
22028         * reflection.h: add subtypes field to TypeBuilder.
22029         * reflection.c: encode constants for literal fields.
22030         Handle subtypes. Fix user string token (and add a zero byte)
22031         at the end.
22032         
22033 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
22034
22035         * class.c (mono_class_init): bug fix: assign slot numbers for
22036         abstract methods.
22037
22038 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
22039
22040         * reflection.c: don't try to output a code RVA for abstract methods.
22041         Small fixes for method header format. Output parameter info to the
22042         ParamDef table. Save method overriding info to MethodImpl table.
22043         Fix property support. Allow typedef.extends to be a type in the
22044         building assembly.
22045         * verify.c: fix off-by-one error.
22046
22047 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
22048
22049         * class.c: fix mono_class_from_mono_type () for szarray types.
22050         Remove unused cache check in mono_class_from_type_spec().
22051         * icall.c: *type_from_name () functions handle simple arrays and byref.
22052         * reflection.c: handle byref and szarray types. Handle methods without
22053         body (gets P/Invoke compilation working). Handle types and fields in
22054         get_token ().
22055         * reflection.h: add rank to MonoTypeInfo.
22056
22057 2002-01-10  Dick Porter  <dick@ximian.com>
22058
22059         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
22060         internal calls
22061
22062 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
22063
22064         * icall.c: initialize class in type_from_handle ().
22065         Loop also in parent classes for get_method ().
22066         * reflection.c: properly encode class and valuetype types.
22067         Start on encoding TypeBuilder types. Handle fieldrefs.
22068         Use correct length when registering a user string.
22069         Handle ConstructorBuilder and MonoMethod in get_token ().
22070         Make mono_type_get_object () aware of cached types.
22071         * object.c: back out change to mono_string_new ().
22072
22073 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
22074         * object.c: mono_string_new should return a NULL when the string 
22075         passed in is NULL -- not try to deference it.
22076         
22077 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
22078
22079         * icall.c: hack to make IsSubType work for TypeBuilders.
22080         * reflection.c: emit constructors before methods.
22081         Retrieve param names in mono_param_get_objects().
22082
22083 2002/01/05  Nick Drochak  <ndrochak@gol.com>
22084
22085         * Makefile.am: fix list of headers and sources so automake 1.5
22086         doesn't complain. Removed \# at end of list.
22087
22088 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
22089
22090         * reflection.c: get token for a method ref. Set return type of
22091         constructor to void.
22092         * loader.c: debug message.
22093         * class.c: typo fix.
22094
22095 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
22096
22097         * icall.c: fix array init with rank > 1. FindMembers
22098         loops in parent class as well.
22099         * image.c: do not insert nested types in name cache.
22100         * reflection.c: warning fix.
22101         * reflection.h: add override method (for interface impl).
22102
22103 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
22104
22105         * metadata.c: fix customattr decoding.
22106
22107 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
22108
22109         * rawbuffer.cs: Added native Win32 implementation, avoids using
22110         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
22111
22112 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
22113
22114         * class.c: make the low-level routines handle the cache.
22115
22116 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
22117
22118         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
22119
22120 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
22121
22122         * class.c: fix mono_array_element_size() for objects.
22123         * class.h, class.c: add properties to MonoClass and load them
22124         at init time.
22125         * icall.c: check with isinst() when assigning a value to an array
22126         instead of requiring the classes to match exactly.
22127         Implemented icall for System.Type::GetType().
22128         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
22129         enums. Handle bindingflags when looking for methods and fields.
22130         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
22131         and mono_metadata_methods_from_property().
22132         * reflection.h, reflection.c: added structures for propreties,
22133         parameters and enums. Implemented mono_property_get_object() and
22134         mono_param_get_objects().
22135
22136 2001-12-18  Dick Porter  <dick@ximian.com>
22137
22138         * file-io.c: Use mono_string_to_utf16() instead of
22139         mono_string_chars()
22140
22141         * object.c: Added mono_string_to_utf16(), which copies the non
22142         NULL-terminated MonoString into a new double-null-terminated
22143         buffer.
22144
22145 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
22146
22147         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
22148
22149 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
22150
22151         * file-io.c: raise exceptions if handle is invalid.
22152
22153 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
22154
22155         * assembly.c: yet another check for mscorlib.
22156         * class.c, class.h: load nesting info for classes.
22157         * icall.c: many new functions to support the Reflection classes.
22158         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
22159         * reflection.h, reflection.c: mono_image_create_token(),
22160         mono_assembly_get_object(), mono_type_get_object(),
22161         mono_method_get_object(), mono_field_get_object(): methods to return
22162         objects that parallel the C representation of assemblies, types,
22163         methods, fields.
22164
22165 2001-12-11  Dick Porter  <dick@ximian.com>
22166
22167         * icall.c:
22168         * file-io.c: Internal calls for file IO.
22169
22170 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
22171
22172         * tabledefs.h: missing FileAttributes.
22173         * verify.h, verify.c: use is_valid_string () to simplify and check for
22174         valid strings more correctly. Fix warnings and speeling.
22175         Check more tables: Filed, File, ModuleRef, StandAloneSig.
22176         Check code: branches, maxstack, method calls.
22177
22178 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
22179
22180         * object.c (mono_object_allocate): removed static, so that the jit
22181         can allocate value types.
22182
22183         * icall.c (ves_icall_System_DateTime_GetNow): impl.
22184
22185 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22186
22187         * class.c: init enum types right away and register the
22188         token->MonoClass map in mono_class_create_from_typedef ().
22189         * verify.h, verify.c: first cut of the verifier.
22190         * pedump.c: add --verify switch to verify metadata tables.
22191         * tabledefs.h: add some missing enums.
22192
22193 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
22194
22195         * class.c (mono_install_runtime_class_init): impl.
22196         (mono_class_init): renamed mono_class_metadata_init to
22197         mono_class_init, also removed the metadata_inited flag
22198
22199         * object.c (mono_object_isinst): use faster algorithm
22200
22201 2001-11-30  Radek Doulik  <rodo@ximian.com>
22202
22203         * mono-endian.h: reverted last change
22204         added function prototypes
22205
22206         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
22207         add mono-endian.c back
22208
22209         * mono-endian.c: returned back, as Paolo pointed out, it's needed
22210         for unaligned access, I've mistaked it with endianess. I am
22211         sorry.
22212         (mono_read16): fix reverted endianess
22213         (mono_read64): ditto
22214         (mono_read32): ditto
22215
22216 2001-11-30  Dick Porter  <dick@ximian.com>
22217
22218         * exception.c: Implement mono_exception_from_name()
22219
22220 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22221
22222         * metadata.h, metadata.c: remove params_size and locals_size and their
22223         calculation from the metadata code: they are only usefult to the
22224         interp.
22225
22226 2001-11-29  Radek Doulik  <rodo@ximian.com>
22227
22228         * object.c (mono_ldstr): swap bytes here, it's probably not the
22229         best place, but works for me now, I'll redo it once I know mono
22230         better, also note that I add PROT_WRITE and don't reset back, also
22231         note that it's only affects big endians, so x86 should be OK
22232
22233         * mono-endian.h (read16): use just glib macros for both endians
22234
22235         * mono-endian.c: removed as glib macros are used in in
22236         mono-endian.h so we don't need to care about endianess for read
22237         macros as glib does that for us already
22238
22239 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
22240
22241         * class.h, class.h: take minimum alignment into consideration so
22242         that the fields of a class remain aligned also when in an array.
22243
22244 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22245
22246         * loader.h, loader.c: add mono_method_get_param_names().
22247         * class.c: 0-init class fields.
22248
22249 2001-11-26  Dick Porter  <dick@ximian.com>
22250
22251         * icall.c:
22252         * threads-types.h:
22253         * threads.c: New file that handles System.Threading on all platforms
22254
22255         * object.c: 
22256         * object.h: Remove the synchronisation struct from MonoObject,
22257         replace it with a pointer that gets initialised on demand
22258
22259         * Makefile.am: Replace all the system-specific threading code with
22260         a single file that uses the new wrapper library
22261
22262 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
22263
22264         * class.c, class.h: add mono_install_trampoline() so that the runtime
22265         can register a function to create a trampoline: removes the ugly
22266         requirement that a runtime needed to export arch_create_jit_trampoline.
22267         * object.h, object.c: added mono_install_handler() so that the runtime
22268         can install an handler for exceptions generated in C code (with
22269         mono_raise_exception()). Added C struct for System.Delegate.
22270         * pedump.c: removed arch_create_jit_trampoline.
22271         * reflection.c: some cleanups to allow registering user strings and
22272         later getting a token for methodrefs and fieldrefs before the assembly
22273         is built.
22274         * row-indexes.h: updates and fixes from the new ECMA specs.
22275
22276 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
22277
22278         * class.h, class.c: add enum_basetype field to MonoClass.
22279         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
22280         to get index in the constant table reated to a field, param or
22281         property.
22282         * reflection.h, reflection.c: handle constructors. Set public-key and
22283         version number of the built assembly to 0.
22284         * row-indexes.h: update from new ECMA spec.
22285
22286 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22287
22288         * class.h, class.c: add a max_interface_id to MonoClass.
22289         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
22290         since it's used to do that. Added mono_type_type_from_obj().
22291         Make GetType() return NULL instead of segfaulting if the type was not
22292         found. Handle simple arrays in assQualifiedName.
22293         * object.h: add a struct to represent an Exception.
22294         * reflection.c: output call convention in method signature.
22295         Add code to support P/Invoke methods and fixed offsets for fields.
22296
22297 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
22298
22299         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
22300         the value.
22301         * icall.c: use mono_array_addr instead of array->vector: fixes the
22302         reflection image writing.
22303         * reflection.c: init call convention byte to 0 in method signature.
22304         Encode the property signature. Don't output property-related methods
22305         twice. Really process the properties for a type (don't cast a field to
22306         a property, my mom always told me that).
22307         Fix 64 bit issues in pointer alignment in a different and more
22308         readable way.
22309
22310 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
22311
22312         * loader.h: Removed type class from MonoDefaults, added monotype
22313
22314         * loader.c: Loaded MonoType, removed loading of Type
22315
22316         * icall.c (my_mono_new_object): Now returns a System.MonoType,
22317         and fills in System.Type._impl with a RuntimeTypeHandle rather
22318         than the actual MonoClass *
22319
22320         (ves_icall_type_from_handle): change from type_class to
22321         monotype_class
22322
22323         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
22324         implemented
22325
22326         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
22327         implemented
22328
22329         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
22330
22331         (ves_icall_System_Reflection_Assembly_GetType): implemented
22332
22333         (ves_icall_System_MonoType_assQualifiedName): implemented
22334
22335         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
22336
22337 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
22338
22339         * assembly.c (mono_assembly_open): Implement a cache for the
22340         assemblies. 
22341
22342         (mono_assembly_close): only destroy the assembly when the last
22343         reference is gone.
22344         
22345 2001-11-09  Dick Porter  <dick@ximian.com>
22346
22347         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
22348
22349 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
22350
22351         * class.c (mono_class_metadata_init): bug fix: compute the right slot
22352
22353 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22354
22355         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
22356         from Martin Weindel.
22357         * object.h: add mono_string_chars ().
22358
22359 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
22360
22361         * reflection.c (build_compressed_metadata): Eliminates warnings
22362         and uses 64-bit clean code.
22363
22364         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
22365         (mono_type_equal): Change signature to eliminate warnings.
22366
22367 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22368
22369         * icall.c, loader.c: remove the internalcall array constructors.
22370         Changes to match the new MonoArray structure.
22371         * object.h, object.c: an array object doesn't allocate an extra
22372         vector. Add mono_array_new_full () to create jagged arrays easily.
22373
22374 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22375
22376         * metadata.h, metadata.c: add mono_metadata_field_info () to
22377         retreive all the info about a field from vairous tables.
22378         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
22379         * class.h, class.c: augment MonoClassField with more info.
22380         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
22381         policy and load a field's RVA if needed.
22382
22383 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
22384
22385         * class.c (mono_class_metadata_init): create a trampoline for all
22386         virtual functions instead of actually compiling them.
22387
22388 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
22389
22390         * class.h, class.c: include name in MonoClassField.
22391         * class.c: fix fundamental type of System.Object and System.String.
22392         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
22393         tokens in ldtoken.
22394         * icall.c: remove internalcalls for the Reflection stuff that is now
22395         done in C# code.
22396         * loader.c: mono_field_from_memberref () implementation.
22397         * mono-endian.c: thinko (s/struct/union/g).
22398         * object.c, object.h: make the mono_string_* prototypes actually use
22399         MonoString instead of MonoObject.
22400         * reflection.c, reflection.h: updates for changes in the reflection
22401         code in corlib: we use C structures that map to the actual C# classes.
22402         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
22403         fat method header if needed and use the info from the ILGenerator for
22404         methods. Handle fields in types. Misc fixes.
22405
22406 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
22407
22408         * class.c (mono_class_metadata_init): bug fix: always allocate
22409         space for static class data
22410
22411 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
22412
22413         * class.c (mono_compute_relative_numbering): use relative
22414         numbering to support fast runtime type checks.
22415
22416 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
22417
22418         * class.c (mono_class_create_from_typeref): added debugging output
22419         to print class name when MonoDummy is returned instead of real class
22420
22421 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
22422
22423         * class.c (mono_class_metadata_init): interface offset table now
22424         contains pointers into the vtable - this is more efficient for the jit
22425
22426 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
22427
22428         * class.c (mono_class_metadata_init): use a temporary vtable (the
22429         old algorithm only worked for the interpreter, but not for the jit)
22430
22431 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
22432
22433         * loader.c (method_from_memberref): use mono_class_get to get the
22434         class of an array instead of using System.Array directly.
22435         (mono_get_method): also add MEMBERREF methods to the method cache
22436         which usefull for arrays.
22437
22438 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
22439
22440         * pedump.c (arch_compile_method): added to compute vtable entry
22441
22442         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
22443         number of interfaces.
22444         
22445         * class.h: merged MonoArrayClass into MonoClass
22446
22447         * class.c (mono_class_create_from_typedef): compute the vtable size and
22448         allocate space to include the vtable inside MonoClass
22449         (mono_class_metadata_init): initialize the vtable
22450
22451 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
22452
22453         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
22454         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
22455         * image.c: endian fixes by Laurent Rioux.
22456         * object.h, object.c: rename MonoStringObject to MonoString and
22457         MonoArrayObject to MonoArray. Change some function names to conform to
22458         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
22459         guint16* as first argument, so don't use char*.
22460         Provide macros to do the interesting things on arrays in a portable way.
22461         * threads-pthread.c: updates for the API changes and #include <sched.h>
22462         (required for sched_yield()).
22463         * icall.c: updates for the API changes above.
22464         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
22465         platforms that need them.
22466
22467 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22468
22469         * class.c: set the correct type for all the fundamental
22470         type when loading the class.
22471
22472 2001-10-05  Dick Porter  <dick@ximian.com>
22473
22474         * threads-pthread.c (pthread_mutex_timedlock): Simple
22475         compatibility version for C libraries that lack this call.
22476
22477 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22478
22479         * class.c: MonoTypes stored in MonoClass are stored as
22480         fundamental MonoTypes when the class represents a
22481         fundamental type (System.Int32, ...).
22482         The TypeHandle return by ldtoken is a MonoType*.
22483         * icall.c: ves_icall_get_data_chunk () write out all the
22484         PE/COFF stuff. Implement ves_icall_define_method (),
22485         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22486         * image.c: properly skip unknown streams.
22487         * loader.h, loader.c: add type_class to mono_defaults.
22488         * metadata.c, metadata.h: export compute_size () as
22489         mono_metadata_compute_size () with a better interface.
22490         Typo and C&P fixes.
22491         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22492         * reflection.c, reflection.h: many cleanups, fixes, output method
22493         signatures and headers, typedef and typeref info, compress the metadata
22494         tables, output all the heap streams, cli header etc.
22495         * row-indexes.h: typo fixes.
22496
22497 2001-10-04  Dick Porter  <dick@ximian.com>
22498
22499         * object.h: Add a synchronisation mutex struct to MonoObject
22500
22501         * object.c (mono_new_object): Initialise the object
22502         synchronisation mutexes
22503
22504         * icall.c: System.Threading.Monitor internal calls
22505         
22506         * threads-pthread.h:
22507         * threads-pthread.c: System.Threading.Monitor internal calls
22508
22509         * threads-types.h: New file, includes the system-specific thread
22510         structures
22511         
22512         * threads-pthread-types.h:
22513         * threads-pthread-types.c: New files, handle pthread-specific
22514         synchronisation types
22515
22516         * threads-dummy-types.h: 
22517         * threads-dummy-types.c: New files of dummy support for
22518         thread-specific types
22519
22520         * metadata.c:
22521         * image.c:
22522         * pedump.c: include mono-endian.h not endian.h
22523         
22524         * Makefile.am: More threads files.
22525         Name mono-endian.h not endian.h
22526
22527 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22528
22529         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22530         stuff and implement a few more bits.
22531         * icall.c: a field needs to be dereferenced twice. Do not use the same
22532         name for two variables in the same scope.
22533         * image.c, image.h: cleanups.
22534
22535 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22536
22537         * class.c (mono_class_metadata_init): bug fix: compute the right size
22538
22539 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22540
22541         * icall.c: implemented some of the Reflection internalcalls.
22542         * image.c, image.h: start writing out the PE/COFF image.
22543         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22544         that does the reverse than decode_blob_size ().
22545         * object.c: use mono_metadata_encode_value (). Move here
22546         temporary implementation of mono_string_to_utf8 ().
22547         * rawbuffer.c: make malloc_map static.
22548
22549 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22550
22551         * metadata.c: fix type comparison for arrays.
22552         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22553         Added a couple of new classes to monodefaults.
22554         * icall.c: added a couple of Reflection-related internalcalls.
22555         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22556         Added a byval_arg MonoType to MonoClass.
22557
22558 2001-09-28  Dick Porter  <dick@ximian.com>
22559
22560         * icall.c:
22561         * threads-pthread.h: 
22562         * threads-pthread.c: Implemented internal calls for
22563         LocalDataStoreSlot operations.  Applied mutexes around all shared
22564         data.  Reworked the thread creation and Start() operations to
22565         avoid a race condition.
22566         
22567         * threads-dummy.h:
22568         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22569
22570 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22571
22572         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22573
22574 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22575
22576         * class.c, loader.c: warn and return NULL instead of erroring out.
22577         * icall.c: added System.AppDomain::getCurDomain().
22578         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22579
22580 2001-09-25  Dick Porter  <dick@ximian.com>
22581
22582         * threads-pthread.h:
22583         * threads-pthread.c: Implemented timed thread joining and added
22584         System.Threading.Thread::Join_internal internal call
22585
22586         * icall.c: Added System.Threading.Thread::Join_internal internal call
22587
22588         * threads-dummy.h:
22589         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22590
22591 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22592
22593         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22594         mono_string_intern () to implement the semantics of the ldstr opcode
22595         and the interning of System.Strings.
22596         * icall.c: provide hooks to make String::IsIntern and String::Intern
22597         internalcalls.
22598
22599 2001-09-23  Dick Porter  <dick@ximian.com>
22600
22601         * threads-dummy.c: 
22602         * threads-dummy.h: New files of dummy threading routines
22603
22604         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22605         support code based on system specifics
22606
22607         Rename PTHREAD_LIBS to THREAD_LIBS
22608         
22609 2001-09-23  Dick Porter  <dick@ximian.com>
22610
22611         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22612         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22613         internal calls.
22614         (mono_thread_init): Set up a Thread object instance to return when
22615         the main thread calls Thread.CurrentThread
22616         (mono_thread_cleanup): Wait for all subthreads to exit
22617
22618         * icall.c: New internal calls for System.Threading.Thread::Sleep
22619         (including Schedule) and CurrentThread
22620
22621         * threads.h: New file, to insulate thread-specific stuff from the
22622         rest of the code
22623
22624 2001-09-21  Dick Porter  <dick@ximian.com>
22625
22626         * threads-pthread.h: 
22627         * threads-pthread.c: New file, for handling pthreads-style
22628         threading support.  Start() now starts a new thread and executes
22629         the ThreadStart delegate instance.
22630
22631         * icall.c: Added the internalcall for
22632         System.Threading.Thread::Start_internal
22633
22634         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22635
22636 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22637
22638         * loader.c: work around the different signatures for delegates
22639         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22640
22641 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22642
22643         * class.h, class.c: add mono_class_get_field_from_name ().
22644         * *: Fix C comments and other ANSI C issues.
22645
22646 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22647
22648         * endian.h, assembly.c: fix some endianness issues.
22649
22650 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22651
22652         * loader.h, load.c: add delegate_class to mono_defaults.
22653         Handle runtime provided methods in mono_get_method ().
22654
22655 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22656
22657         * loader.c (mono_get_method): use pinvoke for internal call
22658
22659         * icall.c: use pinvoke for internal call
22660
22661         * loader.c (method_from_memberref): set the method name
22662
22663 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22664
22665         * metadata.c: help the compiler generate better code for
22666         mono_class_from_mono_type ().
22667
22668 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22669
22670         * class.c (mono_class_metadata_init): delayed computing of the
22671         class size to mono_class_metadata_init ()
22672
22673 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22674
22675         * class.c, class.h: add an interfaces member to MonoClass.
22676         * image.c, image.h: add assembly_name field to MonoImage
22677         from the assembly table.
22678         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22679
22680 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22681
22682         * class.c: Handle Array in mono_class_from_mono_type ().
22683         * metadata.c, pedump.c: some endian fixes.
22684
22685 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22686
22687         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22688         * metadata.c: fix small problem introduced with the latest commit.
22689
22690 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22691
22692         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22693         We don't need a MonoMetadata pointer anymore to compare signatures in
22694         mono_metadata_signature_equal (), update callers.
22695         Reduced memory usage an number of allocations for MonoMethodHeader and
22696         MonoMethodSignature.
22697
22698 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22699
22700         * metadata.c: added compare for szarray.
22701
22702 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22703
22704         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22705         and add a couple more types to it and mono_defaults. Give an hint on
22706         classes that need implementing in our corlib and are referenced
22707         in mscorlib.
22708
22709 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22710
22711         * class.h, class.c: keep track if a class is also an Enum.
22712         * loader.c: Implement a couple more types for use in libffi
22713         marshalling. Gives better diagnostics when failing to dlopen
22714         a library. Set method->klass for P/Invoke methods, too.
22715
22716 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22717
22718         * class.c, class.h: add a MonoType this_arg to MonoClass that
22719         represents a pointer to an object of the class' type that
22720         can be used by the interpreter and later the type cache.
22721         Add best guess alignment info for valuetype objects.
22722
22723 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22724
22725         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22726         into MonoType: one less level of indirection and allocation and
22727         simplifies quite a bit of code. Added cache for MonoTypes that are
22728         used frequently, so that we don't need to allocate them all the time.
22729
22730 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22731
22732         * class.c (mono_class_create_from_typedef): System.Enum is also a
22733         value type, although it does not derive from System.ValueType
22734         (maybe a bug in the ms compiler?)
22735
22736         * metadata.c (mono_type_size): return the right size for value types
22737
22738         * loader.c (mono_get_method): only initialize method header if not abstract
22739
22740         * class.c (mono_class_from_mono_type): use mono_default values. 
22741
22742 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22743
22744         * *: use MonoClass pointers instead of <type_tokens>
22745         
22746         * class.h: new flag: metadata_inited.
22747
22748         * class.c (mono_class_metadata_init): impl.
22749         (mono_class_instance_size): impl.
22750         (mono_class_data_size): impl.
22751
22752 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22753
22754         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22755         MonoClass now has the name and name_space fields. 
22756         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22757         mono_get_method () takes and optional MonoClass as argument.
22758         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22759         instead that takes advantage of a map from class names to typedef
22760         tokens in MonoImage.
22761
22762 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22763
22764         * metadata.c: zero is not a valid alignment boundary.
22765         Merge MONO_TYPE_VOID in default decoding code.
22766
22767 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22768
22769         * image.h: merged MonoMetadata into MonoImage
22770
22771         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22772         identify the type of elements.
22773
22774 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22775
22776         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22777         * cil-coff.h: split MonoMSDOSHeader and add size info.
22778         * image.c: add some consistency checks.
22779         * metadata.c: fix row size computation: one programmer
22780         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22781         add explanation for the locator routine.
22782         Fix decoding of size in method header.
22783         
22784 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22785
22786         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22787         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22788         function from gnome-libs.  This uses the right path separator
22789         based on the OS, and also works around a bug in some systems where
22790         a double slash is not allowed. 
22791         (default_assembly_name_resolver): Use g_concat_dir_and_file
22792         (mono_assembly_open): ditto.
22793
22794 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22795
22796         * metadata.c (mono_metadata_signature_equal): impl.
22797
22798         * *: void is now a realy MonoType (instead of using NULL)
22799         
22800         * metadata.c (do_mono_metadata_parse_type): use
22801         mono_metadata_parse_type to parse void value.
22802
22803 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22804
22805         * metadata.c, metadata.h: in the signature and method header store
22806         only the space required for holding the loca vars and incoming arguments.
22807
22808 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22809
22810         * metadata.c (do_mono_metadata_parse_type): treat void like any
22811         other type (instead of assigning NULL);
22812
22813 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22814
22815         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22816
22817 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22818
22819         * image.c (do_mono_image_open): added a cache for arrays.
22820
22821 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22822
22823         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22824         decode a single column from a row in a metadata table and changes
22825         to take advantage of it in the typedef locator (gives a nice speed up).
22826         Store offset info for function params.
22827
22828 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22829
22830         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22831
22832 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22833
22834         * assembly.c: how could mono_assembly_close () had ever worked?
22835         * metadata.c, metadata.h: provide offset info for local vars.
22836         Implement mono_type_size () to take care of alignment as well
22837         as size (it was mono_field_type_size in cli/class.c before).
22838
22839 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22840
22841         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22842
22843         * assembly.h (CORLIB_NAME): set to corlib.dll
22844
22845         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22846
22847 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22848
22849         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22850         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22851         tokentype.h: massive namespace cleanup.
22852
22853 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22854
22855         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22856
22857 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22858
22859         * metadata.c (mono_metadata_free_type): added check for type !=
22860         NULL (void) before calling mono_metadata_free_type()
22861
22862 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22863
22864         * metadata.h, row_indexes.h: added header with enumerations to use
22865         to index in the columns from tables in metadata and to decode coded
22866         tokens: we should start using this instead of embedding magic numbers
22867         all over the code.
22868
22869 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22870
22871         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22872         Move metadata_t info from cli_image_info_t to MonoImage, where
22873         it's easily accessible. Changed all the uses accordingly.
22874         Added the method and class caches to MonoImage.
22875         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22876         and mono_metadata_decode_value () signature to be more consistent
22877         with the other parse functions (and simplify code). Taken advantage
22878         of zero-length array allocation with GCC. Removed reduntant (and
22879         wrong) MonoFieldType struct and use MonoParam instead. Changed
22880         mono_metadata_parse_field_type () to use common code for parsing.
22881         Added mono_metadata_typedef_from_field () and
22882         mono_metadata_typedef_from_method () to lookup a typedef index from a
22883         field or method token.
22884         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22885
22886 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22887
22888         * metadata.c (mono_metadata_parse_field_type): Implement. 
22889         (do_mono_metadata_parse_type): Split engine from
22890         mono_metadata_parse_type, so that we can create smaller structures
22891         for things that just have one pointer to the MonoType (look at
22892         the MonoFieldType)
22893
22894 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22895
22896         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22897         as Jan Gray found out, it is incorrect. 
22898
22899 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22900
22901         * assembly.c: Implement asssembly loading.  This loads an image
22902         and loads all the referenced assemblies.  Come to think of it, we
22903         could always do lazy loading of the assemblies. 
22904
22905         * image.c (mono_image_open): Keep loaded images in a hashtable.
22906
22907         * image.h (MonoImage): Add reference count.
22908
22909 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22910
22911         * assembly.c (mono_assembly_open): Keep track of the file name in
22912         case the assembly has no ASSEMBLY table.
22913
22914         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22915         from get.c here.
22916
22917 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22918
22919         * metadata.c, metadata.h: decode local vars in method header
22920         parse function. Change callers accordingly.
22921
22922 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22923
22924         * metadata.h, cil-coff.h: protect against multiple inclusion.
22925         Added some new structures to hold information decoded from metadata:
22926         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22927         and relevant decoding/free functions.
22928         * metadata.c: implement decoding functions. Add warning for out of bounds
22929         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22930         all the info about a method signature and invocation. Remove check on
22931         uninitialized local var in parse_mh() and fix memory leak.
22932
22933 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22934
22935         * metadata.h: More macros.
22936
22937         * tokentype.h: New file.
22938
22939 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22940
22941         * assembly.c: added a consistency check and initialize
22942         some structures with g_new0().
22943         * metadata.c: fixed a couple more bugs in table size computation
22944         and add other checks for out-of bound access to metadata.
22945
22946 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22947
22948         * metatada.c: fix bugs computing table sizes. Spew a
22949         warning when index in string heap is out of bounds.
22950
22951 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22952
22953         * metadata.h: Add a couple of macros to manipulate tokens. 
22954
22955 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22956
22957         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22958         cli_section_tables).
22959
22960 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22961
22962         * metadata.c (mono_metadata_user_string): New function, provides
22963         access to the UserString heap. 
22964
22965 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22966
22967         * metadata.c: Add inline documentation.
22968
22969 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22970
22971         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22972         files. 
22973
22974 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22975
22976         * typeattr.h: New file, TypeAttribute flags. 
22977
22978 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22979
22980         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22981         mono_assembly_ensure_section): Section loading code.
22982         (load_section_tables): Load the sections.
22983
22984         * mono/metadata/metadata.c (mono_metadata_locate_token,
22985         mono_metadata_locate): Functions to locate the information
22986         definition given a token or a table and an index.
22987         (mono_metadata_compute_table_bases): New.
22988         (compute_size): New function to compute the sizes of the various
22989         tables.
22990
22991         * mono/metadata/metadata.h: Finish listing the different index
22992         types. 
22993
22994         * mono/metadata/pedump.c: Improve to dump new information.
22995
22996 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22997
22998         * mono/metadata/metadata.c: Entered all the tables matching
22999         Beta2. 
23000
23001         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
23002
23003
23004