* profiler.h, profiler-private.h, profiler.c: add a new profiler
[mono.git] / mono / metadata / ChangeLog
1 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2
3         * profiler.h, profiler-private.h, profiler.c: add a new profiler
4         event to handle unloading methods. After the event is called, the
5         corresponding MonoMethod* must be considered invalid.
6         * loader.c (mono_free_method): call the new mono_profiler_method_free
7         event.
8
9 2007-09-20  Mark Probst  <mark.probst@gmail.com>
10
11         * domain-internals.h: New flag in MonoJitInfo which marks shared
12         generic methods.  New hash table (shared_generics_hash) in
13         MonoDomain to keep track of shared generic methods.  Prototypes
14         for functions to register and lookup shared generic methods.
15
16         * domain.c: Support for registering and looking up shared generic
17         methods via a hash table (shared_generics_hash) in MonoDomain.
18
19         * class-internals.h: New exception to signal failure of shared
20         compilation of a generic method.  New counters for generics
21         sharing in MonoStats.
22
23 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
24
25         * image.c, metadata-internals.h: don't keep a file descriptor open
26         for loaded assemblies (bug#325988).
27
28 2007-09-19  Raja R Harinath  <rharinath@novell.com>
29
30         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
31         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
32         use the corresponding datatypes.
33         (type_in_image): Update to changes.
34         (CleanForImageUserData): Simplify.
35         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
36         Avoid quadratic behaviour in handling the "stolen" list by
37         separating the filter predicate out, and by prepending the stolen
38         items rather than appending them.
39         (steal_ginst_in_image): Likewise.
40         (mono_metadata_clean_for_image): Update to changes.
41
42 2007-09-19  Martin Baulig  <martin@ximian.com>
43
44         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
45
46 2007-09-19  Martin Baulig  <martin@ximian.com>
47
48         * mono-debug.c (mono_debug_cleanup): Don't call
49         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
50
51 2007-09-19  Raja R Harinath  <harinath@gmail.com>
52
53         Fix crash on 'make run-test' in mcs/errors
54         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
55         Avoid more potential allocations in mono_class_from_mono_type.
56         (ginst_in_image): Update to changes.
57         (gclass_in_image): Rearrange slightly.
58
59 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
60
61         * class.c (mono_class_init): Move the code that sets up class->methods to 
62         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
63
64         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
65         canonical instance of an inflated generic signature.
66         (mono_type_create_from_typespec): Remove an invalid free.
67
68         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
69
70 2007-09-18  Marek Habersack  <mhabersack@novell.com>
71
72         * domain-internals.h: added a declaration of the
73         mono_assembly_load_full_nosearch internal function.
74
75         * assembly.c (mono_assembly_load_with_partial_name): use
76         mono_try_assembly_resolve return value properly.
77         (mono_assembly_load_full_nosearch): copied the function body from
78         mono_assembly_load_full, without the code to invoke assembly
79         search hooks.
80         (mono_assembly_load_full): calls the above new function and if the
81         assembly is not resolved, invokes the search hooks.
82
83         * appdomain.c (mono_runtime_init): restore the global postload
84         assembly search handlers.
85
86 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
87
88         * class.c (mono_class_init): Make sure class->methods and class->properties
89         are never NULL in the generics case.
90
91         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
92
93 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
94
95         * metadata.c (free_generic_class): Disable some code to fix the build.
96
97         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
98
99         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
100         from the image mempool.
101
102         * metadata.c (free_generic_class): Free more data from the inflated class.
103
104         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
105
106         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
107         mempool.
108         (mono_type_create_from_typespec): Ditto.
109
110         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
111         MonoImage to the caller.
112         (mono_init_internal): Save the opened image in a global variable.
113         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
114
115         * reflection.c (resolve_object): Fix a leak.
116
117         * metadata.c: Fix the freeing of data in the generics caches.
118         
119         * metadata.c (free_generic_inst): Comment this out to fix the build.
120         (free_generic_class): Ditto.
121
122         * metadata.c: Free cached generic methods, instantinations and classes when
123         they are removed from the caches.
124         (mono_metadata_free_type): Free the type itself.
125
126         * class.c: Free the result of mono_class_inflate_generic_type () in a few
127         places.
128
129 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
130
131         * boehm-gc.c: restrict managed allocs to __thread supporting
132         architectures.
133
134 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
135
136         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
137         (mono_generic_class_get_class): Fix a leak.
138
139         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
140         mono_metadata_free_type ().
141         (mono_metadata_inflate_generic_inst): Fix a leak.
142
143 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
144
145         * mono-debug.c (free_header_data): Fix a leak missed earlier.
146
147         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
148         mempool.
149
150         * mono-debug.c (mono_debug_close_image): Fix call to 
151         g_hash_table_remove ().
152
153 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
154
155         * icall-def.h: redirect all the string ctor to the managed
156         CreateString () methods.
157         * string-icalls.c, string-icalls.h: removed dead code for string
158         ctors and icalls.
159
160 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
161
162         * mono-debug.c: Fix memory leaks.
163
164 2007-09-14  Jonathan Chambers <joncham@gmail.com>
165
166         * threads-types.h: Implement mono_hazard_pointer_set and 
167         mono_hazard_pointer_clear macros using do/while(0) to fix
168         compilation with MSVC.
169         
170         Code is contributed under MIT/X11 license.
171
172 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
173
174         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
175         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
176
177 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
178
179         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
180         icalls.
181
182 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
183
184         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
185         managed-code allocated as well.
186
187 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
188
189         * class.c (mono_class_is_assignable_from): Add support for generic variance.
190
191 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
192
193         * boehm-gc.c: fixed the build after the AOT changes.
194
195 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
196
197         * wrapper-types.h: Add an ALLOC wrapper type.
198
199         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
200         reference managed allocator methods.
201
202 2007-09-12  Marek Safar  <marek.safar@gmail.com>
203
204         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
205         of Type array and not MonoType, a fix suggested by Hari.
206         
207 2007-09-12  Jonathan Chambers <joncham@gmail.com>
208
209         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
210         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
211         
212         Code is contributed under MIT/X11 license.
213
214 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
215
216         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
217
218 2007-09-12  Marek Habersack  <mhabersack@novell.com>
219
220         * image.c (do_mono_image_open): if assembly file fails to open and
221         MONO_IOMAP is in effect, try to find the path in a
222         case-insensitive way.
223
224         * appdomain.c (mono_runtime_init): do not install postload hooks -
225         tests show that MS.NET doesn't use anything of that sort to
226         trigger the AppDomain.AssemblyResolve event.
227         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
228         made non-static.
229         (mono_runtime_init): init portability helpers here.
230
231         * assembly.c (mono_assembly_load_with_partial_name): if other   
232         attempts fail, trigger the AppDomain.AssemblyResolve event handler
233         to resolve the assembly.
234
235         * domain-internals.h: added mono_try_assembly_resolve and marked
236         it as internal.
237
238 2007-09-11  Jb Evain  <jbevain@novell.com>
239
240         * object-internals.h (MonoReflectionDynamicMethod): add
241         a `MonoReflectionType *owner` field. The owner is used
242         * reflection.c:
243         (mono_reflection_create_dynamic_method): use the owner of the dynamic
244         method as the class declaring the dynamic method.
245         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
246         dynamic method to the declaring type of the methodbuilder.
247
248 2007-09-11  Mark Probst  <mark.probst@gmail.com>
249
250         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
251         rules for calling methods via reflection.
252
253 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
254
255         * reflection.c (resolve_object): Add support for MonoGenericClass. 
256         Inflate MonoType's.
257
258 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
259
260         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
261         provide a managed method that does fast allocations without needing
262         a managed->unmanaged transition. Boehm GC implementation currently
263         enabled for ptrfree objects on sane architectures.
264
265 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
266
267         * marshal.c, marshal.h: exported a couple of useful functions and
268         added mono_mb_get_label () to easily handle backward branches.
269
270 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
271
272         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
273
274 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
275
276         * loader.c (find_method): Fixed the regression introduced while
277         fixing bug #81466.
278
279 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
280
281         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
282         well.
283         
284         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
285         icall.c reflection.c: Pass a MonoGenericContext argument to 
286         mono_lookup_dynamic_token ().
287
288         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
289         #82744.
290         
291 2007-09-09  Robert Jordan  <robertj@gmx.net>
292
293         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
294         for generic methods.
295
296         * object.c (mono_object_get_virtual_method): Handle generic methods.
297         Fixes bug #78882.
298
299         Code is contributed under MIT/X11 license.
300
301 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
302
303         * image.c: fix locking in mono_image_load_file_for_image ().
304
305 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
306
307         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
308         used only as a cache: added an icall to fill it.
309
310 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
311
312         * reflection.h: exposed mono_reflection_free_type_info
313         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
314         since mono_reflection_bind_generic_parameters makes a copy of it.
315         * reflection.c (free_type_info): subinfos should be freed.
316         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
317         made non static.
318         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
319         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
320         this fixes #82695 and #81726.
321    
322
323 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
324
325         * process.h, process.c:  added support for user profile/info in
326           ProcessStartInfo. For now only Windows works.
327
328 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
329
330         * metadata.c: consider the generic arguments when comparing
331         signatures (bug #82614).
332
333 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
334
335         * cil-coff.h, image.c: updated assembly loader to cope with the
336         PE32+ 64 bit file format.
337
338 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
339
340         * assembly.c, class.c, domain.c, loader.c: remove useless
341         inclusion of cil-coff.h.
342
343 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
344
345         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
346         if interface is marked with CoClassAttribute. 
347    
348         Code is contributed under MIT/X11 license.
349
350 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
351
352         * sgen-gc.c: ensure no object from the to space is copied again or finalized
353         if it's seen twice in major collections.
354
355 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
356
357         * sgen-gc.c: big objects are not copied to the gray area, but they
358         need to be considered for scanning, too, if they are brought alive
359         by an object ready for finalizations or a survived one.
360
361 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
362
363         * sgen-gc.c: properly account the number of disappearing links when
364         they are nullified.
365
366 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
367
368         * sgen-gc.c: share the code to scan the registered roots between the
369         different types of collections.
370
371 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
372
373         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
374
375 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
376
377         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
378         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
379
380 2007-08-28  Mark Probst  <mark.probst@gmail.com>
381
382         * security-manager.c (mono_security_manager_get_methods):
383         LinkDemandSecurityException now has 2 arguments instead of 3.
384
385 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
386
387         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
388         platforms which need it.
389
390 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
391
392         * sgen-gc.c: unregister thread data structures with a pthread_key_t
393         dtor.
394
395 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
396
397         * threads.c: free the thread static data on thread exit.
398
399 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
400
401         * class.c: walk the hierarchy to find the generic definition for
402         a class (fixes runtime part of bug #82498).
403
404 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
405
406         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
407         ...
408
409         * image.c (mono_image_close): Here. Hopefully fixes #82510.
410
411 2007-08-24  Mark Probst  <mark.probst@gmail.com>
412
413         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
414
415 2007-08-24  Robert Jordan  <robertj@gmx.net>
416
417         * appdomain.c: don't perform the ':'->';' substitution on Win32.
418
419 2007-08-24  Jb Evain  <jbevain@novell.com>
420
421         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
422         for byref types.
423
424 2007-08-24  Mark Probst  <mark.probst@gmail.com>
425
426         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
427         #82286.
428
429 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
430
431         * assembly.c: Fix a warning.
432         
433 2007-08-23  Marek Habersack  <mhabersack@novell.com>
434
435         * appdomain.c: parse the <runtime> section looking for the probing
436         element with the 'privatePath' attribute, which sets additional
437         directories in which the runtime should look for assemblies.
438
439 2007-08-23  Robert Jordan  <robertj@gmx.net>
440
441         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
442         Fixes #82499.
443
444 2007-08-23  Martin Baulig  <martin@ximian.com>
445
446         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
447         _mono_debug_init_corlib() and remove it from the header file.
448
449 2007-08-23  Martin Baulig  <martin@ximian.com>
450
451         * mono-debug-debugger.c
452         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
453         don't notify the debugger about it.
454
455         * mono-debug-debugger.h
456         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
457
458 2007-08-23  Robert Jordan  <robertj@gmx.net>
459
460         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
461         Code is contributed under MIT/X11 license.
462
463 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
464
465         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
466
467 2007-08-22  Martin Baulig  <martin@ximian.com>
468
469         * mono-debug.c: Store debugging info on a per-domain basis and
470         free it on domain unload.  Add support for unloading symbol files.
471
472         * mono-debug.h
473         (MonoDebugList): New typedef.
474         (MonoSymbolTable):
475         - add `data_tables and `type_table'.
476         - replace 'symbol_files' and `num_symbol_files' with a
477           `MonoDebugList *'.
478         (mono_debug_data_table): Removed.
479         (mono_debug_list_add): New public function.
480         (mono_debug_list_remove): New public function.
481         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
482         (mono_debug_init_2_memory): Renamed into
483         mono_debug_open_image_from_memory().
484         (mono_debug_close_image): New public function.
485         (mono_debug_domain_create): Likewise.
486         (mono_debug_domain_unload): Likewise.
487         (MONO_DEBUGGER_VERSION): Bump to 60.
488
489         * mono-debug-debugger.h
490         (MonoDebuggerEvent):
491         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
492         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
493         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
494         - rename `THREAD_CREATED' and `THREAD_EXITED' into
495           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
496         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
497           meaning.
498         (mono_debugger_add_symbol_file): Removed.
499         (mono_debugger_add_type): Removed.
500         (mono_debugger_lookup_type): Removed.
501         (mono_debugger_lookup_assembly): Removed.
502
503         * domain.c
504         (mono_domain_create): Call mono_debug_domain_create().
505         (mono_init_internal): Call mono_debug_init_corlib().
506
507         * assembly.c
508         (mono_assembly_close): Call mono_debug_close_image().
509
510 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
511
512         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
513         mmap call.
514
515 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
516
517         * sgen-gc.c: ensure section->pin_queue_end is initialized
518         correctly when non pinning objects in the section have been found.
519
520 2007-08-22  Marek Habersack  <mhabersack@novell.com>
521
522         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
523         containing a list of directories separated by ':'. MSDN docs say
524         the directories should be separated with ';'. Part of a bugfix for
525         bug #81446
526
527 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
528
529         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
530         it should MonoType and not MonoClass.
531
532 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
533
534         * culture-info-table.h : regenerated.
535
536 2007-08-20  William Holmes  <billholmes54@gmail.com>
537
538         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
539          to call ReplaceFile Kernel32 on windows or in io-layer.
540         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
541         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
542          as an internal call.
543
544         Code is contributed under MIT/X11 license.
545
546 2007-08-20  Jb Evain  <jbevain@novell.com>
547
548         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
549         and MONO_EXCEPTION_FIELD_ACCESS.
550
551         * debug-helpers.[c|h]: new mono_field_full_name function.
552
553 2007-08-20  Mark Probst  <mark.probst@gmail.com>
554
555         * class.c: Removed class_security_level() and moved it to
556         security-core-clr.c.
557
558         * security-core-clr.c, security-core-clr.h: class_security_level()
559         is now public and renamed to mono_security_core_clr_class_level().
560         It also looks for security attributes in the classes a class is
561         nested in.
562
563 2007-08-20  Mark Probst  <mark.probst@gmail.com>
564
565         * security-core-clr.c, security-core-clr.h: CoreCLR security
566         utility functions.
567
568         * Makefile.am: Added security-core-clr.[ch].
569
570         * security-manager.c, security-manager.h: Functions and enum for
571         setting and getting the security mode.
572
573         * class.c: CoreCLR security checks.
574
575 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
576
577         * icall-def.h, process.c, process.h: implemented icall to get
578         user/system processor times.
579
580 2007-08-17  Mark Probst  <mark.probst@gmail.com>
581
582         * domain.c, threads.c, class-internals.h, domain-internals.h: New
583         reader-lock-free jit_info_table.
584
585 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
586
587         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
588
589         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
590
591         * object-internals.h (MonoException): Add missing _data member.
592
593 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
594
595         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
596         checking that only methods with matching qname or fqname are picked
597         from implemented interfaces.
598
599 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
600
601         * verify.c (do_newarr):added, do type verification of
602         newarr ops, push the right value on the eval stack.
603         * verify.c (mono_method_verify): use do_newarr
604
605
606 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
607
608         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
609         factored the common code into get_boxable_mono_type, which
610         is now using mono_type_get_full, this fixed byref related tests.
611
612 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
613
614         * class.c: added mono_type_get_full, this function has the same
615         behavior of mono_class_get_full but the returned MonoType has
616         all metadata of the associated token in case of a typespec token.
617         * class.c: added mono_type_retrieve_from_typespec, used by 
618         mono_type_get_full to retrieve the token type.
619         * class.c (mono_class_create_from_typespec): changed to use
620         mono_type_retrieve_from_typespec.
621         * class.c (mono_ldtoken): changed to use mono_type_get_full
622         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
623         * class-internals.h: exported mono_type_get_full for internal use.
624
625 2007-08-16  Jb Evain  <jbevain@novell.com>
626
627         * domain.c (supported_runtimes): add entry for
628         the 'moonlight' runtime version.
629
630 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
631
632         * verify.c (mono_method_verify): small typo sliped in.  
633
634 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
635
636         * verify.c (do_unbox_value): added, do type verification of
637         unboxing ops
638         * verify.c (mono_method_verify): use do_unbox_value
639
640
641 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
642
643         * verify.c (dump_stack_value): fixed typo, was printing string
644         instead of object on stack.
645         * verify.c (do_box_value): moved the byref check up as it leads
646         to invalid code and should be done earlier.
647         * verify.c: improved error messages for and ldobj
648
649 2007-08-15  William Holmes  <billholmes54@gmail.com>
650
651         * marshal.c (emit_marshal_custom): Omit the call to 
652           marshal_native_to_managed when calling native to managed 
653           and the argument is specified as an out argument.
654
655         Code is contributed under MIT/X11 license.
656
657 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
658
659         * verify.c: fixed the type checks for generics, function pointers and vectors.
660         Added type verification for ldobj and ldtoken. The verifier
661         would segfault if header or signature of a method contained references
662         to non-existant types.
663
664 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
665
666         * marshal.c (cominterop_get_ccw): Patch from
667         Bill Holmes to no walk up interface hierarchy. 
668         All parent methods should be present in the interface for COM.
669    
670         Code is contributed under MIT/X11 license.
671
672 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
673
674         * marshal.c (emit_marshal_com_interface): Patch from
675         Bill Holmes to handle COM Interfaces as return values
676         for native->managed calls.
677    
678         Code is contributed under MIT/X11 license.
679
680 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
681
682         * marshal.c (cominterop_get_idispatch_for_object): Implement
683         for runtime callable wrappers.
684    
685         Code is contributed under MIT/X11 license.
686
687 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
688
689         * pedump.c (main): changed from mono_init to mono_init_from_assembly
690         so 2.0 types are accessible
691
692
693 2007-08-13  Miguel de Icaza  <miguel@novell.com>
694
695         * domain.c (mono_init_internal): Call mono_assembly_load_friends
696         once we load mscorlib.   Due to the order in which we initialize,
697         the mono_assembly_load_full routine that loads mscorlib did not
698         load friends.   We now load it once we load the
699         mono_defaults.internals_visible_class class. 
700
701         * assembly.c: Expose the mono_load_friend_assemblies method.
702
703 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
704
705         * verify.c: improved the handling of boxing, better
706         type checking for unary ops and conversion. Fix bug
707         regarding managed pointer compatibility checking
708
709 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
710
711         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
712
713         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
714
715 2007-08-09  Raja R Harinath  <rharinath@novell.com>
716
717         * reflection.c (dup_type): Remove.
718         * class.c (dup_type): Remove.
719         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
720         instead of the dodgy 'dup_type'.
721         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
722         handle the case where 'dup_type' needed the second argument.
723
724 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
725
726         * domain.c: Fix a warning.
727
728 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
729
730         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
731         checking that methods with the same fqname are not overridden
732         with a method from an ancestor.
733
734 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
735
736         * threads.c (free_thread_static_data_helper): Avoid a crash if
737         thread->static_data is not yet set.
738
739 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
740
741         * marshal.c: Use correct image when emitting
742         native wrapper for COM calls.
743    
744         Code is contributed under MIT/X11 license.
745
746 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
747
748         * icall-def.h, security.c, security.h :
749           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
750
751 2007-08-07  Martin Baulig  <martin@ximian.com>
752
753         * mono-debug-debugger.h
754         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
755
756         * domain.c (mono_domain_free): Call
757         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
758
759 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
760
761         * verify.c (check_underflow, check_overflow): error message now returns IL offset
762         * verify.c (in_same_block): code should test if either offset is inside the clauses
763         * verify.c (mono_method_verify): push the exception into the eval stack of exception
764         and filter blocks
765
766 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
767
768         * image.c (mono_image_close): Fix a leak.
769
770         * object.c (mono_runtime_invoke_array): Avoid using alloca.
771
772         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
773
774 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
775
776         * domain.c, threads.c, threads-types.h: fix memory retention issue
777         with thread static variables not being cleared on domain unload.
778         Reuse thread static slots after domain unload.
779
780 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
781
782         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
783         nullable type.
784
785         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
786         now done in mono_runtime_invoke_array.
787
788         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
789         receiver is a nullable type.
790
791         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
792         generic parameter.
793
794 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
795
796         * marshal.c: Implement COM Objects as return type for 
797         managed->unmanaged calls. Added Release calls for COM Object
798         out/return values in managed->unmanaged calls.
799
800         Code is contributed under MIT/X11 license.
801
802 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
803
804         * threads.h, threads-type.h: move the hazard pointer declarations
805         to the private header.
806
807 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
808
809         * file-io.c, appdomain.c: memory leak fixes.
810
811 2007-08-02  Dick Porter  <dick@ximian.com>
812
813         * socket-io.c
814         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
815         SO_REUSEADDR setting into io-layer/sockets.c.
816
817 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
818
819         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
820         from Object when called on a generic parameter. Fixes #82211.
821
822 2007-08-01  Dick Porter  <dick@ximian.com>
823
824         * file-io.c (convert_share): Test FileShare values bit-by-bit.
825         Fixes bug 79250 yet again.
826
827 2007-07-30  Martin Baulig  <martin@ximian.com>
828
829         Merged the `debugger-dublin' branch.
830
831         * mono-debug.h
832         (MonoDebugDataTable): New typedef.
833         (MonoDebugMethodAddressList): New typedef.
834         (MonoDebugWrapperData): Removed.
835         (MonoDebugSymbolTable): Removed `current_data_table',
836         `current_data_table_size', `current_data_table_offset'.
837         (MonoDebugDataItemType): Moved into mono-debug.c.
838         (MonoDebugMethodJitInfo): Remove `address'.
839         (mono_debug_data_table): New global variable.
840         (mono_debug_lookup_method_addresses): New public function.
841         (mono_debug_find_method): Take a `MonoMethod *', not a
842         `MonoDebugMethodInfo *'.
843
844         * mono-debug.c: Drop support for the old symbol tables.
845
846 2007-06-28  Martin Baulig  <martin@ximian.com>
847
848         * mono-debug.c (mono_debug_debugger_version): New public variable.
849
850 2007-07-31  William Holmes  <billholmes54@gmail.com>
851
852         * metadata.c Changed mono_type_create_from_typespec to not insert
853           the type into the hash map until after
854           do_mono_metadata_parse_type has completed.
855         Fixes Bug #82194
856         Code is contributed under MIT/X11 license.
857
858 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
859
860         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
861         generic parameter. Fixes #82211.
862
863 2007-07-27  Jb Evain  <jbevain@novell.com>
864
865         * pedump.c (dump_metadata, dump_metadata_header): dump
866         versions contained in the metadata header.
867
868 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
869
870         * threads.c: register small_id_table with the GC.
871
872 2007-07-27  Mark Probst  <mark.probst@gmail.com>
873
874         * threads.c, threads.h, class-internals.h, object-internals.h:
875         Hazard pointers, to be used by lock-free parallel algorithms.
876
877 2007-07-26  Dick Porter  <dick@ximian.com>
878
879         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
880         routine on non-windows platforms, as I've not managed to think of
881         a non-kludgy way of doing this.  Finishes off bug 78739.
882
883 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
884
885         * object.c: properly setup interface_bitmap in proxy vtables.
886
887 2007-07-25  Marek Habersack  <mhabersack@novell.com>
888
889         * appdomain.c (get_shadow_assembly_location): do not use TickCount
890         to create unique shadow copy target directories, use the domain's
891         serial number instead. Each domain gets a unique target directory
892         that way.
893
894         * domain.c (mono_domain_create): added code to increment domain
895         shadow copy serial number and cache the value in the current
896         domain structure.
897
898         * domain-internals.h (struct _MonoDomain): added a new field -
899         shadow_serial to hold the serial number used in generation of
900         shadow-copy directories. This is to make sure that the directory
901         name is unique for each and every domain created. We avoid a race
902         condition with overriding assemblies already in use by other app
903         domains.
904
905 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
906
907         * class.c (mono_bounded_array_class_get): fixed memory leak when 
908         binding generic parameters.
909
910 2007-07-24  Raja R Harinath  <rharinath@novell.com>
911
912         * metadata.c (do_mono_metadata_parse_generic_class): Use
913         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
914         error.
915
916 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
917
918         * loader.c, class-internals.h, reflection.c: removed the per-method
919         generics hashtable: we use the global one through the call of
920         mono_class_inflate_generic_method ().
921
922 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
923
924         * class.c, metadata.c, class-internals.h: introduce yet another
925         generics global cache for inflated methods (fixes 98% of the perf
926         issue in bug #81806).
927
928 2007-07-23  Raja R Harinath  <rharinath@novell.com>
929
930         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
931         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
932         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
933         return a MonoGenericInst containing (a copy) of those types.
934         (mono_metadata_inflate_generic_inst): Update to changes.
935         (mono_metadata_parse_generic_inst): Likewise.
936         (mono_get_shared_generic_inst): Likewise.
937         * reflection.c (mono_class_bind_generic_parameters): Likewise.
938         (mono_reflection_bind_generic_method_parameters): Likewise.
939         * metadata-internals.h: Likewise.
940         * icall.c (free_generic_context): Kill.
941         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
942
943         * reflection.c (reflection_methodbuilder_to_mono_method): Use
944         mono_metadata_type_dup.
945         * marshal.c (mono_mb_create_method): Likewise.
946
947         * metadata.c (mono_metadata_type_dup): Rename from
948         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
949         MonoImage.  Handle a few more cases, esp. when no mempool is given.
950         * marshal.c, metadata-internals.h: Update to changes.
951
952 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
953
954         * class.c: fixed a small leak for array classes and removed warning.
955
956 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
957
958         * loader.c (mono_method_get_param_token): Make this work on generic methods.
959         Return 0x8000000 for return parameters. Fixes #82161.
960
961 2007-07-21  Marek Habersack  <grendello@gmail.com>
962
963         * appdomain.c (get_shadow_assembly_location): append the current
964         ticks value to the path. Avoids overwriting the same assemblies by
965         several threads at the same time.
966
967 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
968         and Raja R Harinath  <rharinath@novell.com>
969
970         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
971         Simplify slightly.
972         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
973         property for testing if a method is a generic method definition.
974
975 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
976
977         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
978
979 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
980
981         * verify.c: used function from private branch, reverted to the one in class.h 
982
983 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
984
985         * verify.c: a typo slipped in and the code wont compile
986
987 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
988
989         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
990         disabled box instruction as it is doing the wrong thing
991         improved stack dump messages, now it is easier to debug type related issues
992
993
994 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
995
996         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
997
998 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
999
1000         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
1001         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
1002         grouped with class and valuetype. This change will simply 
1003         the code as it should be handled just like unmanaged pointers.
1004
1005 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1006
1007         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
1008
1009 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
1010
1011         * verify.c: several stack merge issues fixed, reference comparisons now
1012         check the type size. strict type check now works correctly.
1013         added more uses of IS_MANAGED_POINTER macro.
1014         fixed issues pointed by running the test suite against .net.
1015         
1016
1017 2007-07-19  Mark Probst  <mark.probst@gmail.com>
1018
1019         * class.c, loader.c, class-internals.h: Removed the
1020         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
1021         defines.
1022
1023         * icall.c: Better error checking in some internal reflection
1024         methods.
1025
1026 2007-07-18  William Holmes  <billholmes54@gmail.com>
1027
1028         * filewatcher.c : removed unused variable 'filename' in 
1029           ves_icall_System_IO_FSW_SupportsFSW
1030
1031 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
1032
1033         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
1034         obsolete, removed.
1035
1036 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
1037
1038         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
1039         
1040         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
1041
1042 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
1043
1044         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
1045         Implement generics support.
1046         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1047
1048         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
1049         type_args and method_args arguments.
1050         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
1051         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1052         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
1053
1054 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
1055
1056         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
1057           It adds a rootimage parameter to mono_reflection_get_type_internal,
1058           adds new function mono_reflection_get_type_with_rootimage and use
1059           the rootimage to resolve the types instead of the current image
1060
1061 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1062
1063         * culture-info-table.h: Forgot to update after r78304.
1064
1065 2007-07-13  Raja R Harinath  <rharinath@novell.com>
1066
1067         * class.c (mono_class_is_open_constructed_type)
1068         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
1069
1070 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
1071
1072         * class.c (mono_bounded_array_class_get):  method fails if used with
1073         an incomplete TypeBuilder enum (no basetype field), fixed it by 
1074         avoiding calculating the size for such array as it cannot be instantiated.
1075         Fix bug #82015
1076
1077 2007-07-12  Raja R Harinath  <rharinath@novell.com>
1078
1079         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
1080         field.
1081         * metadata.c, reflection.c: Update to changes.
1082
1083 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
1084
1085         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
1086         mono_class_is_valid_enum, they are used to valide a enum when loading.
1087         * reflection.c: used new functions to throw TypeLoadException when and
1088         invalid enum is build with TypeBuilder. Fixes #82018
1089   
1090 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1091
1092         * object.c: forgot commit of mono_class_setup_methods () to access
1093         iface->methods.
1094         * object-internals.h: added a few more handy fields to
1095         MonoIMTCheckItem.
1096
1097 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1098
1099         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
1100         iface->methods.
1101
1102 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
1103
1104         * class-internals.h, object-internals.h, object.c: IMT-based
1105         interface invocation core from Massimiliano Mantione
1106         (massi@ximian.com) with a reworked arch-specific interface,
1107         bsearch implementation and a few bugfixes and memory savings by me.
1108
1109 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
1110
1111         * class.c (mono_class_create_from_typedef): mono would segfault if 
1112         an enum did not have a __value field. It now throws a TypeLoadException
1113         for such cases. Fix bug #82022
1114
1115 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1116
1117         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
1118
1119 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1120
1121         * class.c (mono_class_init): If a class is already inited but has
1122         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
1123
1124 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1125
1126         * class.c: Properly handle the case of an unimplemented interface
1127         method.  Fixes: 81673.
1128
1129 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
1130
1131         * class-internals.h, object.c: cleanup patch from massi: use
1132         MonoVTable->interface_bitmap since the vtable interfaces offset array
1133         is going away.
1134
1135 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1136
1137         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
1138         GetMDStreamVersion icall instead.
1139
1140 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1141
1142         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
1143         not use mono_dl_build_path() with a full library name: makes
1144         fallbacks to libgaim and libfam work.
1145
1146 2007-07-06  William Holmes  <billholmes54@gmail.com>
1147
1148         * assembly.c: Added a continue statement in probe_for_partial_name when
1149          parse_assembly_directory_name fails.  Fixes : 82002
1150
1151 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
1152
1153         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
1154         and added a verification  for TYPEDBYREF.
1155         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
1156         make native int interchangeable with int32 and some small cleanup and formating.
1157         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
1158         handle byref of byref.
1159         * verify.c (push_local): handle byref of byref.
1160         * verify.c (do_binop): invalid mix of values is unverifiable
1161         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
1162         added visibility checks
1163         * verify.c (field related method): added visibility checks
1164         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
1165
1166 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
1167
1168         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
1169         string.
1170
1171 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1172
1173         * profiler.c (mono_profiler_load): Fix an off-by-one error.
1174
1175         * marshal.c (emit_marshal_string): When returning a string from managed code,
1176         allways make a copy even for unicode strings. Fixes #81990.
1177
1178 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
1179
1180         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
1181         of byref generic inst types (bug #81997).
1182
1183 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
1184
1185         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
1186         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
1187
1188 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
1189
1190         * marshal.c (emit_marshal_string): Add support for unicode strings in
1191         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
1192
1193 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1194
1195         * verify.c: field load/store are now verified, missing only access checks now
1196
1197 2007-06-28  Martin Baulig  <martin@ximian.com>
1198
1199         * mono-debug.c (mono_debug_debugger_version): New public variable.
1200
1201 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
1202
1203         * locales.c: When constructing DateTimeFormat or NumberFormat for
1204         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
1205         MonoCultureInfo contructed from the current locale is always
1206         read-only and has UseUserOverride set to true. All MonoCultureInfo
1207         instances returned for GetCultures have both IsReadOnly and
1208         UseUserOverride set to true. Fixes part of bug #81930.
1209
1210 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
1211
1212        * icall-def.h: Update System.__ComObject icalls
1213        * marshal.c: Avoid managed transition (and object creation)
1214        when looking up COM interface in RCW.
1215        * marshal.h: Ditto.
1216        
1217        Code is contributed under MIT/X11 license.
1218
1219 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
1220
1221         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
1222         to avoid crashes during assembly unloading.
1223
1224 2007-06-22  Raja R Harinath  <rharinath@novell.com>
1225
1226         Fix MethodInfo.IsGenericMethodDefinition
1227         * reflection.c (mono_reflection_bind_generic_method_parameters):
1228         Rearrange code to ensure we always uses a generic method definition.
1229         * class.c (mono_class_inflate_generic_method_full): Set
1230         'generic_container' field only for generic method definitions.
1231         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1232         Use presense of 'generic_container' field as indication of being a
1233         generic method definition.
1234
1235 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1236
1237         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1238
1239         * object-internals.h: Reflect changes in the layout of the managed Delegate
1240         class.
1241         
1242         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
1243         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
1244         runtime memory used by the dynamic method. Fixes #77146.
1245
1246 2007-06-21  Dick Porter  <dick@ximian.com>
1247
1248         * file-io.h: 
1249         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
1250         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
1251         81767.
1252
1253 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1254
1255         * reflection.c (method_encode_methodspec): Add a tripwire.
1256         * class.c (inflate_generic_type): The fully open generic type is
1257         not the same as the generic type definition.
1258
1259 2007-06-21  Martin Baulig  <martin@ximian.com>
1260
1261         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
1262
1263         * mono-debug-debugger.h
1264         (MonoDebuggerBreakpointInfo): Removed.
1265         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
1266         (mono_debugger_remove_breakpoint): Likewise.
1267         (mono_debugger_breakpoint_callback): Likewise.
1268         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
1269
1270 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1271
1272         * metadata.c (mono_metadata_lookup_generic_class): The fully open
1273         generic type is not the same as the generic type definition.
1274         * class.c (mono_generic_class_get_class): Likewise.
1275
1276 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
1277
1278         * icall.c: The second argument to 
1279         System.Reflection.MethodBase.GetMethodFromHandleInternalType
1280         is a MonoType not a MonoClass.
1281
1282 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1283
1284         * verify.c: support for function pointers in the verifier
1285
1286 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1287
1288         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
1289
1290 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
1291
1292         * assembly.c: removed Mono.Data.SqliteClient from the list of
1293         forward-compatible assemblies as it breaks the ABI (bug #81899).
1294
1295 2007-06-19  Raja R Harinath  <rharinath@novell.com>
1296
1297         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
1298         lookup/update with the loader lock.
1299         * reflection.c (mono_class_bind_generic_parameters): No need to
1300         protect mono_metadata_lookup_* with the loader lock.
1301         * class.c (inflate_generic_type): Likewise.
1302         
1303         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
1304         on a generic instantiated type.
1305
1306 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
1307
1308         *verify.c: produce meanfull error messages on verification error
1309         *verify.c: fixed some cases of verification errors reported as validation errors
1310         *pedump.c: fixed the error name array, now it shows validation errors properly
1311         *verify.h: fixed the contant that should be used for verification errors
1312
1313 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1314
1315         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1316         for bug #77596, 81858 and 80743 (generics data structures on domain
1317         unload).
1318
1319 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1320
1321         Avoid allocating 'MonoGenericContext' on the heap.
1322         * class-internals (_MonoMethodInflated::context): Make field
1323         inline, not a pointer.
1324         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1325         stack.  Use the context embedded within the inflated method as the
1326         hash key, rather than 'new_context'.
1327         * class.c (inflate_generic_context): Simplify.  Return a struct
1328         rather than allocating on the heap.
1329         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1330         doesn't salt away a copy of the context -- simplifying the
1331         lifetime rules of a 'MonoGenericContext *'.
1332         (mono_method_get_context): Return pointer to embedded context.
1333         (setup_generic_array_ifaces): Allocate temporary context on stack.
1334         * reflection.c (inflate_mono_method): Likewise.
1335         (mono_reflection_bind_generic_method_parameters): Likewise.
1336         Use the context embedded within the inflated method as the hash key.
1337
1338         Avoid a source of allocation of 'MonoGenericContext'.
1339         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1340         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1341         * class.c: Update to changes.
1342         (mono_generic_class_get_context): Simplify drastically.  Now just
1343         returns a pointer to the field.
1344         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1345         argument as a const pointer.
1346         (mono_metadata_generic_context_equal): Likewise.
1347         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1348         Update to changes.
1349
1350 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1351
1352         * verify.c improved the handling of brtrue/brfalse, factored out common code
1353
1354 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1355
1356         Kill MonoGenericMethod.
1357         * class-internals.h (MonoGenericContext::method_inst): Rename from
1358         'gmethod' and convert to a MonoGenericInst.
1359         (MonoGenericMethod): Remove.
1360         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1361         * loader.c (method_from_methodspec): Update to changes.  Use a
1362         MonoGenericContext as the key to the hashtable.
1363         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1364         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1365         (mono_metadata_generic_context_hash): Likewise from
1366         'mono_metadata_generic_method_hash'.  Change hash function.
1367         (mono_metadata_load_generic_params): Update to changes.
1368         (mono_get_shared_generic_method): Remove.
1369         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1370         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1371         (inflate_generic_context): Likewise.
1372         (mono_class_inflate_generic_method_full): Likewise.
1373         (setup_generic_array_ifaces): Likewise.
1374         (mono_class_create_from_typespec): Likewise.
1375         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1376         (method_encode_methodspec): Update callsite.
1377         (reflection_methodbuilder_to_mono_method): Update to changes.
1378         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1379         MonoGenericContext as the key to the hashtable.
1380         (inflate_mono_method): Update to changes.
1381
1382         * class-internals.h (MonoGenericMethod::container): Remove.
1383         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1384
1385 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1386
1387         * profiler-private.h, profiler.c, profiler.h: added API to profile
1388         exception events.
1389
1390 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1391
1392         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1393
1394 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1395
1396         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1397         Fixed overflow and underflow not aborting the verification process.
1398
1399 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1400
1401         * class-internals.h (MonoStats): Added stats entries for dynamic
1402         code allocations.
1403
1404 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1405
1406         * loader.c (mono_free_method): Free header->locals and header->clauses.
1407
1408         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1409         dynamic case.
1410
1411         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1412
1413         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1414
1415 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1416
1417         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1418         the tables.
1419
1420 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1421
1422         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1423
1424 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1425
1426         MonoGenericMethod on a diet
1427         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1428         here ...
1429         (_MonoGenericMethod::reflection_info): ... from here.
1430         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1431         Update to changes.
1432         * reflection.c (inflate_mono_method): Likewise.
1433         (mono_reflection_bind_generic_method_parameters): Likewise.
1434
1435 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1436
1437         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1438         *verify.c: factored long ldarg forms to share code with short forms
1439
1440 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1441
1442         *verify.c: fixed code formating factored some duplicate code
1443         into a new function
1444
1445         *verify.h: fixed binary incompatibility introduced earlier
1446
1447         *pedump.c: fixed formating
1448
1449 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1450
1451         Fix assertion when disassembling Mono.C5.dll
1452         * loader.c (method_from_methodspec): Avoid inflating a method
1453         twice with the same context.  If the methodref is inflated, use
1454         the declaring method instead.
1455
1456         * class.c (mono_class_from_generic_parameter): Fix case similar to
1457         bug #81830 handled below, but for method containers.
1458
1459 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1460
1461         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1462         get_shared_generic_class.  Directly inflate the instance.
1463         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1464         (inflate_generic_class): Delete.
1465         (get_shared_generic_class): Delete.  Move setting of
1466         'cached_class' and 'cached_context' ...
1467         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1468
1469         * metadata.c (mono_metadata_lookup_generic_class): Change
1470         signature to take the components of a MonoGenericClass rather than
1471         an allocated MonoGenericClass.  Change semantics to be intern-like.
1472         * reflection.c (mono_class_bind_generic_parameters): Update to
1473         changes.  Make locking region tighter.
1474         * class.c (inflate_generic_class): Update to changes.
1475         (get_shared_generic_class): Likewise.
1476         * metadata-internals.h: Likewise.
1477
1478         * reflection.c (mono_class_bind_generic_parameters): Take and
1479         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1480         (mono_reflection_bind_generic_parameters): Use
1481         'mono_class_bind_generic_parameters' rather than duplicate the code.
1482         * class.c (mono_bounded_array_class_get): Update to changes.
1483         * object-internals.h: Likewise.
1484
1485         * reflection.c (mono_class_bind_generic_parameters): Only support
1486         parameterizing generic type definitions.  Remove support for other
1487         open types.
1488
1489 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1490
1491         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1492
1493         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1494         in the dynamic case.
1495
1496 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1497
1498         * threads.c: When cleaning up thread, reset the Background bit.
1499         Fixes bug #81720.
1500
1501 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1502
1503        * metadata.c: Move variable declarations to top of scope.
1504        * verify.c: Move variable declarations to top of scope.
1505
1506        Code is contributed under MIT/X11 license.
1507
1508 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1509
1510         * reflection.c (mono_class_bind_generic_parameters): Replace
1511         open-coded loop with mono_metadata_inflate_generic_inst.
1512
1513         * class.c (get_shared_generic_class): Don't call
1514         mono_get_shared_generic_inst.  Use the container's own
1515         'class_inst'.
1516
1517         * metadata.c (mono_metadata_load_generic_params): Move
1518         initialization of 'context' field here from ...
1519         * class.c (mono_class_create_from_typedef): ... here, and ...
1520         * loader.c (mono_get_method_from_token): ... here.
1521
1522         * class.c (get_shared_generic_class): Rename from
1523         mono_get_shared_generic_class and make static.
1524         (mono_get_shared_generic_inst): Move to metadata.c.
1525         * loader.c (mono_get_shared_generic_method): Likewise.
1526         * class-internals.h, metadata-internals.h: Update to changes.
1527
1528         Fix #81830
1529         * class.c (mono_class_from_generic_parameter): Don't assume a
1530         generic container owner exists.  Generic containers from monodis
1531         don't have any.
1532
1533 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1534
1535         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1536         * verify.h: new typedefs to returns the non-verifiable status
1537         * verify.c: initial implementation of generics, stack merging and object compatibility check
1538
1539 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1540
1541         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1542         a MonoInternalHashTable again (fixed bug in internal hash table
1543         code).
1544
1545 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1546
1547         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1548         MonoInternalHashTable again (fixed bug in internal hash table
1549         code).
1550
1551 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1552
1553         * class.c, image.c, class-internals.h, domain.c,
1554         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1555         changes.  Have to figure out what makes them break the SWF
1556         regression.
1557
1558 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1559
1560         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1561         a MonoInternalHashTable now.
1562
1563 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1564
1565         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1566         MonoInternalHashTable now.
1567
1568 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1569
1570         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1571         invoke_impl code.
1572
1573         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1574
1575         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1576         dependent trampoline.
1577
1578         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1579
1580         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1581
1582 2007-05-29  Robert Jordan  <robertj@gmx.net>
1583
1584         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1585
1586 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1587
1588         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1589
1590 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1591
1592        * marshal.c: Fix interface lookup loops for
1593        cominterop_get_com_slot_for_method and 
1594        cominterop_get_method_interface. Only need to lookup
1595        if type is a class, else use interface type method is on.
1596
1597        Code is contributed under MIT/X11 license.
1598
1599 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1600
1601         * reflection.c: HasSecurity can be present even if no specially 
1602         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1603         SecurityAttribute). Fix CAS regression tests on buildbot.
1604
1605 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1606
1607        * appdomain.c: Add configure checks for header files.
1608        * image.c: Add configure checks for header files.
1609        * file-io.c: Add configure checks for header files.
1610        * debug-mono-symfile.c: Add configure checks for header files.
1611        * threadpool.c: Add configure checks for header files.
1612        * console-io.c: Add configure checks for header files.
1613        * profiler.c: Add configure checks for header files.
1614        * rawbuffer.c: Add configure checks for header files.
1615        * icall.c: Add configure checks for header files.
1616        * rand.c: Add configure checks for header files.
1617        * socket-io.c: Add configure checks for header files.
1618
1619        Code is contributed under MIT/X11 license.
1620
1621 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1622
1623         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1624         assertion as it breaks the build.
1625         
1626         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1627
1628         * reflection.c (lookup_custom_attr): Make a copy here too.
1629
1630         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1631         dynamic images.
1632
1633         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1634         images.
1635
1636         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1637         info.
1638
1639 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1640
1641         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1642         (load_cattr_value): Ditto.
1643
1644 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1645
1646         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1647
1648 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1649
1650         * threads.c: In "start_wrapper", set apartment_state to MTA if
1651         apartment_state is Unknown and we're running on 2.0 profile or
1652         higher.
1653         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1654         to main method, then set apartment_state to Unknown on 1.0 profile,
1655         and MTA on 2.0 profile.
1656
1657 2007-05-16  Jb Evain  <jb@nurv.fr>
1658
1659         * class-internals.h (MonoDefaults): Add an attribute_class and
1660           customattribute_data_class.
1661         * domain.c (mono_init_internal): Populate them.
1662         * reflection.c: Use them to remove duplicates. Make a vew
1663         MonoClass variables `static'.
1664
1665 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1666
1667         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1668         step in implementing IMT, so that all isinst checks now can go
1669         through the bitmap.
1670         This was needed because vtables for TransparentProxy need to look
1671         like the vtable of the "target" class, so they need to point to
1672         its interface bitmap directly.
1673
1674         * object.c: inside "mono_class_create_runtime_vtable" and
1675         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1676
1677 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1678
1679         * object-internals.h
1680           culture-info.h : added territory field in MonoCulture and
1681           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1682         * locales.c : fill territory field above too.
1683         * culture-info-table.h : regenerated.
1684
1685 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1686
1687         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1688         Fixes #81599.
1689
1690 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1691
1692         * object.c: Always initialize apartment, even if 
1693         there is no custom attributes on entry point.
1694         
1695         Code is contributed under MIT/X11 license.
1696
1697 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1698
1699         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1700         * metadata.c: If no encoding is set, check for unicode
1701         on class.
1702         
1703         Code is contributed under MIT/X11 license.
1704
1705 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1706
1707         * threads.c: Handle if mono_thread_current returns NULL 
1708         
1709         Code is contributed under MIT/X11 license.
1710
1711 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1712
1713         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1714         in start_wrapper. Added mono_thread_init_apartment_state and
1715         mono_thread_cleanup_apartment_state.
1716         * object.c: Initialize thread apartment state on main thread
1717         by checking for STAThreadAttribute on entry point.
1718         * object-internals.h: Add apartment_state field to MonoThread.
1719         * threads-types.h: Add unmanaged definition of 
1720         System.Threading.ApartmentState, MonoThreadApartmentState.
1721         
1722         Code is contributed under MIT/X11 license.
1723         
1724 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1725
1726         * class.c: Fix windows build.
1727         * class-internals.h: Fix windows build.
1728         
1729         Code is contributed under MIT/X11 license.
1730
1731 2007-05-08  Robert Jordan  <robertj@gmx.net>
1732
1733         * process.c (CreateProcess_internal):
1734         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1735         .CreateNoWindow was specified. Fixes #81496.
1736
1737 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1738
1739         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1740         step in implementing IMT, replaced it with two compact arrays
1741         (interfaces_packed and interface_offsets_packed) and a bitmap that
1742         is used for isinst checks (interface_bitmap).
1743
1744         * class.c: (compare_interface_ids): compare function to pass to
1745         bsearch when looking for an interface with a given id.
1746         (mono_class_interface_offset): reimplemented using bsearch on
1747         interfaces_packed, getting the offset from interface_offsets_packed.
1748         (print_implemented_interfaces): utility debugging function.
1749         (setup_interface_offsets): reworked to initialize interfaces_packed,
1750         interface_offsets_packed and interface_bitmap.
1751
1752         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1753         with uses of interfaces_packed and interface_offsets_packed.
1754
1755 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1756
1757         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1758         mono_class_interface_offset prototype to wrap all accesses to
1759         "MonoClass.interface_offsets".
1760
1761         * class.c: Implemented mono_class_interface_offset, and wrapped all
1762         accesses to "MonoClass.interface_offsets".
1763
1764         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1765         "MonoClass.interface_offsets".
1766
1767 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1768
1769         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1770         GetMethodFromHandle overloads (bug #78637).
1771
1772 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1773
1774         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1775         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1776
1777 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1778
1779         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1780         #81498.
1781
1782         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1783         gracefully.
1784         (mono_custom_attrs_from_index): Ditto.
1785
1786         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1787         Fixes #81501.
1788
1789 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1790
1791         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1792         is now allocated from a mempool.
1793
1794 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1795
1796         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1797         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1798
1799 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1800
1801         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1802         mono_loader_clear_error () too late. Fixes #81463.
1803
1804 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1805
1806         * culture-info-table.h : regenerated.
1807
1808 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1809
1810         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1811         is missing.
1812
1813 2007-04-25  Dick Porter  <dick@ximian.com>
1814
1815         * Makefile.am: Put the mingw enforced-optimisation back into the
1816         PLATFORM_WIN32 section.
1817
1818 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1819
1820         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1821         patch.
1822
1823         * image.c (mono_image_load_module): New API function to load a module reference.
1824
1825         * image.c (load_modules): Load modules lazily. Fixes #80812.
1826
1827         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1828         
1829         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1830
1831         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1832         to mono_image_load_module_dynamic.
1833
1834 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1835
1836         * marshal.c: Fix calling convention for CCW on non-windows
1837         platforms. STDCALL on windows, CDECL everywhere else to work 
1838         with XPCOM and MainWin COM.
1839         
1840         Code is contributed under MIT/X11 license.
1841
1842 2007-04-23  Martin Baulig  <martin@ximian.com>
1843
1844         Fix #80969.
1845
1846         * loader.c
1847         (method_from_memberref): Added `gboolean *used_context' argument.
1848         (mono_get_method_from_token): Likewise.
1849         (mono_get_method_full): Don't insert the method in the cache when
1850         `used_context' is true.
1851
1852 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1853
1854         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1855
1856         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1857         create new MonoTypes for returned types.
1858         * class.c (mono_generic_class_get_class): Export mono-internal.
1859         * class-internals.h: Update to changes.
1860
1861 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1862
1863         * threadpool.c, threadpool.h, icall-def.h: patch from
1864         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1865
1866 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1867
1868         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1869         
1870         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1871
1872         * threads.c (mono_thread_get_stack_bounds): New helper function.
1873
1874         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1875         Correctly compute stack bounds when attaching. Fixes #81394.
1876
1877 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1878
1879         * reflection.c: fix handling of doubles in custom attributes
1880         for the arm-fpa format (bug #81368).
1881
1882 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1883
1884         * reflection.c (assembly_add_win32_resources): Mildly relax an
1885         bounds check to let the end pointer point just past the end of the
1886         allocated buffer.  (may fix #81384)
1887
1888 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1889
1890         * culture-info-table.h : regenerated.
1891
1892 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1893
1894         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1895         the thread is aborted early.
1896
1897 2007-04-05  Dick Porter  <dick@ximian.com>
1898
1899         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1900         FindFirstFile()/FindNextFile() to find entries.  This lets the
1901         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1902         81038.
1903
1904         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1905         the parameters of
1906         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1907
1908 2007-04-04  Martin Baulig  <martin@ximian.com>
1909
1910         * debug-helpers.c
1911         (mono_method_desc_full_match): Add support for nested classes.
1912
1913 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1914
1915         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1916
1917 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1918
1919         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1920         waiting for too many threads.
1921
1922 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1923
1924         * environment.c: Fix return value check on uname so we can get the 
1925         executing version on Solaris operating systems.
1926
1927 2007-03-28  Jb Evain  <jbevain@gmail.com>
1928
1929         * class.c (mono_type_get_name_recurse): Complete the
1930         fix for the creation of assembly qualified names for
1931         pointer types. Fixes #81208.
1932
1933 2007-03-27  Dick Porter  <dick@ximian.com>
1934
1935         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1936         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1937         changed.
1938
1939         * threads.c
1940         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1941         the value of ReleaseMutex().
1942
1943 2007-03-27  Dick Porter  <dick@ximian.com>
1944
1945         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1946         in little-endian order, not network endian, so must be converted
1947         to host endian here.  Fixes bug 80593.
1948
1949 2007-03-22  Jb Evain  <jbevain@gmail.com>
1950
1951         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1952         qualified names for pointer types. Fixes #81208.
1953
1954 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1955
1956         * marshal.c: Add support for PreserveSigAttribute. 
1957         
1958         Code is contributed under MIT/X11 license.
1959
1960 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1961
1962         * process.c: Fix endianness issues. Fixes #81126.
1963
1964         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1965         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1966
1967         * image.c (mono_image_lookup_resource): Make this work on big-endian
1968         machines.Change API contract so the caller needs to free the return value.
1969         
1970         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1971         API change.
1972         
1973 2007-03-14  Martin Baulig  <martin@ximian.com>
1974
1975         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1976         mono_type_get_desc() as well.
1977
1978 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1979
1980         * icall.c:  Fix environ access in VS.  
1981         
1982 2007-03-13  Alp Toker  <alp@atoker.com>
1983
1984         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1985         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1986         #63841.
1987
1988 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1989
1990         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1991         circular references among dynamic methods. Fixes #81091.
1992
1993         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1994
1995 2007-03-09  Martin Baulig  <martin@ximian.com>
1996
1997         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1998
1999 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
2000
2001         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
2002         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
2003         
2004         Code is contributed under MIT/X11 license.
2005         
2006 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
2007
2008         * loader.c: Reapply patch for bug #79424.
2009
2010 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2011
2012         * metadata.c (mono_type_to_unmanaged): Only convert object to
2013         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
2014
2015 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
2016
2017         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
2018         (and incorrectly set) is_reference field from MonoGenericInst.
2019
2020 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
2021
2022         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
2023         a little earlier.
2024
2025         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
2026
2027         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
2028
2029 2007-03-05  Miguel de Icaza  <miguel@novell.com>
2030
2031         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
2032         FileOptions.1 value to mean "temporary", map that to
2033         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
2034
2035         Fixes 80688
2036
2037 2007-03-03  Marek Habersack  <mhabersack@novell.com>
2038
2039         * appdomain.c: implement MS .Net style shadow copying. Copies of
2040         the assemblies are made in a subdirectory of the dynamic base
2041         directory, the assembly names are preserved.
2042         Copy .mdb and .config files along with the assemblies being shadowed.
2043
2044 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
2047         (emit_marshal_handleref): Ditto.
2048
2049         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
2050         on Visual C++. Fixes #80671.
2051
2052 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2053
2054         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
2055         for clone operations.
2056
2057 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2058
2059         * marshal.c: Fix warnings.
2060
2061 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
2062
2063         * loader.c: allow case-insensitive matching of the dll name
2064         in dllmap handling when prefixed with "i:".
2065
2066 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
2067
2068         * threads.c: Fix #ifdef for dummy_apc function for VS.
2069
2070 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2071
2072         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
2073
2074 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
2075         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
2076         giving precedence to the methods with a fully qualified name
2077         (InterfaceName.MethodName) when building the interface sections
2078         of the vtable.
2079
2080 2007-02-16  Dick Porter  <dick@ximian.com>
2081
2082         * threadpool.c (append_job): Fix fast-path array handling, so it's
2083         less likely the array will grow exponentially when the load is
2084         heavy.
2085
2086 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2087
2088         * metadata-internals.h, loader.c: fix dllmap lookup order
2089         for non-function maps, too, and prepare for fallback code.
2090
2091 2007-02-12  Robert Jordan  <robertj@gmx.net>
2092
2093         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
2094         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
2095         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
2096         GlobalFree. Fixes a part of bug #77075.
2097
2098 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
2099
2100         * loader.c: implemented typedef parent in field memberref.
2101
2102 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
2103
2104         * marshal.c: Fix warnings and remember to call Release on
2105         IUnknown of RCW.
2106         
2107         Code is contributed under MIT/X11 license.
2108
2109 2007-02-10  Miguel de Icaza  <miguel@novell.com>
2110
2111         * class-internals.h: Add MonoHandleRef definition, and
2112         handleref_class to mono_defaults. 
2113
2114         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
2115         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
2116
2117         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
2118         (do nothing on this stage)
2119         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
2120         (emit_marshal_handleref): New method, used for argument handling
2121         of HandleRefs. 
2122
2123 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
2124
2125         * class.c (mono_class_setup_parent): Lazily init com types.
2126         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
2127         init com types.
2128         * object.c (mono_remote_class_vtable): Lazily init com types.
2129         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
2130         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
2131         * domain-internals.h: Expose mono_init_com_types.
2132         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
2133         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
2134         Add support for COM Callable Wrapper marshalling.
2135         * marshal.h: Add icall definitions.
2136         * gc.c: Handle freeing of CCWs in finalizer code.
2137         
2138         Code is contributed under MIT/X11 license.
2139
2140 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
2141
2142         * reflection.c: changed all the signature encoding code to use
2143         a variable-sized buffer.
2144
2145 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2146
2147         * marshal.c: locking fixes: never take the loader lock
2148         or other runtime locks when holding the marshal lock
2149         (fixes bug#80664).
2150
2151 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
2152
2153         * marshal.c: make the delegate function pointer mapping
2154         work for the moving GC.
2155
2156 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
2157
2158         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
2159         for bug #80618.
2160
2161 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2162
2163         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
2164         gmodule.
2165
2166 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
2167
2168         * threadpool.c: made the code moving-GC safe.
2169
2170 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
2171
2172         * assembly.c, boehm-gc.c, class-internals.h, class.c,
2173         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
2174         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
2175         warning cleanup.
2176         * reflection.c: warning cleanup, some threading and moving GC fixes.
2177
2178 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
2179
2180         * class.c, loader.c: create the needed Set/Get/Address array methods
2181         as well as the .ctors in mono_class_init (), fixes bug #80567.
2182
2183 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
2184
2185         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
2186         we doesn't decrease its alignment. Should fix the sparc build.
2187
2188 2007-01-24  Dick Porter  <dick@ximian.com>
2189
2190         * socket-io.c
2191         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2192         Create the returned object if we need to ignore an unsupported
2193         socket option.  Fixes a segfault reported by Atsushi.
2194
2195 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
2196
2197         * class.c, object.c: restrict GC-tracked fields to
2198         UIntPtr fields used inside corlib, so we provide better
2199         type info to the GC and also allow broken packing as in
2200         bug #80580.
2201
2202 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
2203
2204         * sgen-gc.c: removed duplicated function.
2205
2206 2007-01-19  Miguel de Icaza  <miguel@novell.com>
2207
2208         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
2209         value that means that the value is not supported, but that we
2210         should not return a failure, but instead report this as a
2211         successful operation.
2212
2213 2007-01-19  Raja R Harinath  <rharinath@novell.com>
2214
2215         Fix tests/bug79956.2.il
2216         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
2217         (mono_generic_class_get_class): If the generic definition in an
2218         enum, copy over other fields related to it.
2219
2220 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
2221
2222         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
2223         genericinst enums (bug #79215).
2224
2225 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
2226         * class.c: Fix bug 80307.
2227
2228 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
2229
2230         * image.c: if the file table is not present, try to load
2231         all the modules, since we don't have info about them
2232         having or not metadata (bug #80517).
2233         * assembly.c: allow mono_assembly_load_references () to
2234         work for netmodules.
2235
2236 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2237
2238         * image.c, metadata-internals.h, object.c: execute module
2239         cctors when running on the 2 runtime if present (bug #80487).
2240
2241 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2242
2243         * icall.c: optimized InitializeArray() on bigendian.
2244
2245 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
2246
2247         * icall.c: fix for the broken ARM FPA double format.
2248
2249 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2250
2251         * icall.c: handle endian issues for r4 and r8 types, too, in
2252         the InitializeArray() icall.
2253
2254 2007-01-15  Miguel de Icaza  <miguel@novell.com>
2255
2256         * loader.c (mono_loader_error_prepare_exception): Clear the error
2257         once we have extracted the information from it, do this before we
2258         call into the JIT's class loading mechanisms.
2259
2260         * object.c (mono_class_create_runtime_vtable): Do not clear the
2261         loader error before calling mono_class_get_exception_for_failure
2262         as the loader error is needed inside
2263         mono_class_get_exception_for_failure to throw the error (thinko).
2264
2265         Fixes #80521
2266         
2267 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2268
2269         * reflection.c: align fields rva data so it's faster to load at
2270         runtime.
2271
2272 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2273
2274         Prepare to simplify GenericMethod handling.
2275         * class-internals.h (mono_method_get_context): New accessor function.
2276         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
2277         rather than directly accessing '->context' field.
2278
2279         * class-internals.h (_MonoGenericParam.method): Move ...
2280         (_MonoGenericContainer): ... here.  Add into union with klass field.
2281         * class.c, icall.c, loader.c, metadata.c, reflection.c:
2282         Update to changes.
2283
2284 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
2285
2286         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
2287         the wrapper type enum and reduce relocations.
2288
2289 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2290
2291         * reflection.c (inflate_mono_method): Reuse method instantiation
2292         from the generic method, if available.
2293
2294 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2295
2296         * marshal.c (emit_marshal_variant): Fix conv_arg
2297         type in last commit, based on whether parameter is byref.
2298         
2299 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2300
2301         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
2302         marshalling.
2303         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
2304         MONO_TYPE_OBJECT back for VARIANT support.
2305
2306 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2307
2308         * marshal.c, marshal.h, icall-def.h: Implement 
2309         Marshal.ReAllocCoTaskMem.
2310
2311 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
2312
2313         * marshal.c: memory retention fixes: use the proper
2314         image cache for runtime_invoke method lookups.
2315
2316 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2317
2318         * mempool.c: added code to help debug mempool allocations.
2319
2320 2007-01-11  Dick Porter  <dick@ximian.com>
2321
2322         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2323         support (experimenting with faking it with IP_MTU_DISCOVER for
2324         systems that don't have IP_DONTFRAGMENT.)
2325         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2326         icall.
2327
2328         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2329
2330         * socket-io.h: Add new fields to MonoSocketAsyncResult
2331         corresponding to the new ones in Socket.cs.
2332
2333 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2334
2335         Fix IronPython regression mentioned in #80249
2336         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2337         'cached_context' field, since it may have been initialized as a
2338         side-effect of metadata parsing.
2339
2340         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2341         (_MonoGenericClass.cached_class): Move here and rename from lone
2342         remaining field of ...
2343         (_MonoInflatedGenericClass): ... this.  Remove.
2344         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2345         to changes.
2346
2347         Fix mcs/tests/test-128.cs regression.
2348         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2349         2007-01-10 change below.
2350         [MONO_TYPE_OBJECT]: Recurse into array case.
2351
2352 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2353
2354         * class-internals.h (mono_get_inflated_generic_class): Remove.
2355         * class.c (mono_get_inflated_generic_class): Remove.
2356         (mono_generic_class_get_class): Rename from
2357         mono_class_create_generic.
2358         (mono_class_from_mono_type) [GENERICINST]: Use it.
2359         * reflection.c, metadata.c: Update to changes.  Use
2360         'mono_class_from_mono_type'.
2361
2362 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2363
2364         * reflection.c: use passed type when encoding an array element
2365         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2366
2367 2007-01-09  Robert Jordan  <robertj@gmx.net>
2368
2369         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2370         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2371         Fixes bug #80392.
2372
2373 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2374
2375         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2376
2377         * object.c (set_value): Avoid aliasing between type->data.klass
2378         and type->data.generic_class.
2379
2380         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2381
2382 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2383
2384         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2385         between type->data.klass and type->data.generic_class.
2386
2387 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2388
2389         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2390         value in out parameters.
2391
2392 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2393
2394         Simplify invariant for MonoGenericClass::klass field.
2395         * class.c (mono_class_create_generic): Verify 'klass' is null.
2396         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2397         initialize 'klass' field.
2398
2399 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2400
2401         Ongoing work to avoid redundant data and simplify invariants.
2402         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2403         'generic_class', and change type to a GenericInst.
2404         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2405         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2406
2407 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2408
2409         * class.c : skip io-layer under PLATFORM_WIN32.
2410
2411 2007-01-03  Tor Lillqvist  <tml@novell.com>
2412
2413         Fix #80305: In a bundled executable, look in the bundled exe
2414         assembly to determine the runtime version. Add the possibility to
2415         bundle also the machine.config file.
2416         
2417         * assembly.c (mono_assembly_open_from_bundle): Make
2418         non-static. Allow being called even if we have no bundled
2419         assemblies, and return NULL right away in that case.
2420
2421         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2422         here.
2423
2424         * domain.c (app_config_parse): Take an assembly exe file name as
2425         parameter instead of a config file name. Check for a bundled
2426         config file for that assembly by calling
2427         mono_config_string_for_assembly_file() (see below) before looking
2428         for one in the file system.
2429         (get_runtimes_from_exe): Corrsponding change to call of
2430         app_config_parse().
2431         (get_runtimes_from_exe): Check for bundled assembly exe file first
2432         by calling mono_assembly_open_from_bundle(). If no bundled
2433         assembly exe file is found, call mono_image_open() as before to
2434         look it up in the file system.
2435
2436         * mono-config.c: Add variable bundled_machinec_onfig.
2437         (mono_config_string_for_assembly_file): New function.
2438         (mono_config_for_assembly): Move code snippet that looks for a
2439         bundled assembly .config file into the above new function. Call
2440         it.
2441         (mono_register_machine_config, mono_get_machine_config): New
2442         functions to set and retrieve
2443
2444         * assembly.h: Declare mono_register_machine_config().
2445
2446         * mono-config.h: Declare mono_get_machine_config() and
2447         mono_config_string_for_assembly_file().
2448
2449         * icall.c: No declaration of environ necessary on Win32. It is
2450         declared (as a macro expanding to a function call) in stdlib.h.
2451         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2452         New internal mono function. Returns the value of
2453         mono_get_machine_config() as a Mono string.
2454
2455         * icall-def.h: Add get_bundled_machine_config().
2456
2457 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2458
2459         Remove redundant field
2460         * class-internals.h (_MonoGenericContext.container): Remove field.
2461         * loader.c (mono_method_get_signature_full): Don't parse a
2462         "container" for a signature parse when the signature is inflated
2463         immediately.
2464         (method_from_methodspec): Likewise, for a generic_inst.
2465         * class.c, metadata.c, reflection.c: Update to changes.
2466
2467 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2468
2469         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2470         'cached_context', and change semantics -- it starts off NULL, and
2471         is initialized on demand.
2472         * class.c (mono_generic_class_get_context): New accessor to
2473         replace 'context' field accesses.
2474         (mono_class_get_context): New helper.
2475         (*): Update to changes.
2476         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2477
2478 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2479
2480         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2481         before the memcpy.   Fixes Marshal2 regression.
2482
2483 2007-01-02  Jb Evain  <jbevain@gmail.com>
2484
2485         * blob.h: add a MONO_TYPE_ENUM definition
2486         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2487         fix the encoding of arrays of enums in custom attributes.
2488
2489         Fixes #79666.
2490
2491 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2492
2493         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2494         string is null terminated, but only cut the string short if it
2495         overflows the buffer.   
2496         
2497         (mono_string_to_byvalstr): Also fix this routine.   The code here
2498         was not properly terminating a string (it was only terminated
2499         because of the previous catch-all memset). 
2500
2501         I left the memset, because I do not know if applications expect
2502         the runtime to clear this region. 
2503
2504         Fixes #79944.
2505
2506         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2507         Clear the error before returning to unmanaged code to prevent the
2508         runtime from being confused later on (fixes  80420).
2509         (ves_icall_type_from_name): Always call mono_loader_clear_error
2510         after parsing a type that could have failed.
2511         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2512
2513         * loader.c (mono_loader_clear_error): Fix indentation.
2514
2515 2006-12-28  Martin Baulig  <martin@ximian.com>
2516
2517         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2518
2519 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2520
2521         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2522         getting a token for an EnumBuilder.
2523
2524 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2525
2526         * reflection.c: be more careful in case resource generation
2527         fails to create the data array.
2528
2529 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2530
2531         * sgen-gc.c: write barrier for clone and fix unregister handles.
2532
2533 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2534
2535         * reflection.c: some fixes needed in the generics code for the moving GC.
2536
2537 2006-12-22  Robert Jordan  <robertj@gmx.net>
2538
2539         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2540         account. Fixes bug #80299.
2541
2542 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2543
2544         Fix WaitHandle usage in delegates.
2545         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2546         * object.c (mono_wait_handle_new): Use the property set method to
2547         initialize the handle.
2548         (mono_wait_handle_get_handle): New.
2549         * threadpool.c (mono_async_invoke): Use it.
2550         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2551         Likewise.
2552         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2553
2554 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2555
2556         * marshal.c (emit_marshal): Call emit_marshal_variant and
2557         emit_marshal_com_interface when applicable.
2558         (emit_marshal_variant, emit_marshal_com_interface): Add
2559         methods for this case and remove if's from emit_marshal_object.
2560         
2561 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2562
2563         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2564
2565 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2566
2567         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2568         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2569         and GlobalFree on Windows. Remove FIXME.
2570
2571 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2572
2573         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2574         implementation for managed objects.
2575
2576 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2577
2578         * object.c: implemented code to be used for checking
2579         that no reference field overlaps with non-references.
2580
2581 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2582
2583         * threadpool.c: fix queue code to be compatible with the
2584         moving GC.
2585
2586 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2587
2588         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2589         in structures by throwing ArgumentNullException.
2590
2591         (emit_marshal_safehandle): Also when they are null parameters.
2592
2593         (emit_marshal_safehandle): Add support for ref
2594         SafeHandles parameters
2595
2596 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2597
2598         * profiler.c: updated to use the mono-dl API instead of
2599         gmodule.
2600
2601 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2602
2603         * profiler.c: updated to use the mono-dl dynamic loading
2604         API instead of gmodule.
2605
2606 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2607
2608         * profiler.c: use readlink, older versions of glib don't have
2609         g_file_read_link ().
2610
2611 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2612
2613         * profiler.c: try to detect the path to mono if libc fails to provide
2614         a useful name (bug #80286).
2615
2616 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2617
2618         Fix #80242
2619         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2620         instance, use the generic type definition instead.
2621         (ves_icall_Type_GetNestedTypes): Likewise.
2622         * class.c (mono_class_create_generic): Always set the
2623         nested_classes of a generic instance to NULL, even if the generic
2624         type definition has nested types.
2625
2626 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2627
2628         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2629         and fix on Linux.
2630         
2631 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2632
2633         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2634         my arguments were in the wrong order.   I also fixed the Windows
2635         version which seems to have had the same issue.
2636
2637         (mono_free_bstr): On Unix, this is g_free.
2638         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2639         conversions (for the tests in corlib to pass).
2640
2641 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2642
2643         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2644         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2645         exception if a ref SafeHandle in a struct has changed).
2646         
2647         (emit_struct_conv): Do not perform layout checks for classes
2648         derived from SafeHandle, as those are specially handled. 
2649
2650         (emit_object_to_ptr_conv): Add support for
2651         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2652
2653         (emit_marshal_safehandle): Implement conversion of return values
2654         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2655         
2656         * threads.c: WaitHandle now is compiled with two different handles
2657         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2658         for 2.0.
2659         
2660         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2661         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2662         these routines to cope with both kinds of fields.
2663
2664 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2665
2666         * metadata.c (mono_type_to_unmanaged): Handle the case where
2667         type->data.klass is a SafeHandle, and in that case, return the
2668         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2669         MONO_MARSHAL_CONV_SAFEHANDLE. 
2670
2671 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2672
2673         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2674         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2675         calling emit_marshal_object.
2676
2677         (emit_marshal_safehandle): Implement marshalling of
2678         SafeHandle parameters (no ref support yet).
2679
2680         (MarshalAction): Document the defines as I implement
2681         them for SafeHandle.
2682
2683         (emit_marshal_object): indentation police.
2684
2685         * class-internals.h: Define MonoSafeHandle.
2686         Add safehandle_class to MonoDefaults type.
2687
2688         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2689         list of classes to check for fields. 
2690
2691         * domain.c (mono_init_internal): Add SafeHandle to the list of
2692         mono_defaults loaded.
2693
2694 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2695
2696         Fix #80253
2697         * reflection.c (mono_reflection_bind_generic_parameters): If the
2698         generic type definition is a type builder, ensure that it is fully
2699         initialized before instantiating it.  Kill some dead code.
2700
2701 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2702
2703         * object.c: clear the loader_error () before loading
2704         more metadata stuff (bug #80258).
2705
2706 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2707
2708         * icall.c, icall-defs.h: type modifiers icalls for
2709         parameters and properties.
2710
2711 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2712
2713         * object.c, icall.c: fixed warnings.
2714
2715 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2716
2717         * marshal.c: fixed a couple of leaks and coding style in a few places.
2718
2719 2006-12-08  Dick Porter  <dick@ximian.com>
2720
2721         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2722         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2723         80173.
2724
2725 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2726
2727         * process.c: ProcessStartInfo may have only filename set and
2728         arguments can be NULL.
2729
2730 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2731
2732         * icall.c: fix leak found by Robert Jordan.
2733
2734 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2735
2736         * marshal.c, marshal.h: generate managed method to access an element
2737         of a multi-dimensional array.
2738
2739 2006-11-30  Paolo Molaro (lupus@ximian.com)
2740
2741         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2742
2743 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2744
2745         * icall.c: back out GetFields () fix until the serialization code is
2746         fixed to not depend on the incorrect behaviour.
2747
2748 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2749
2750         * profiler.c: provide defaults if none are set.
2751
2752 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2753
2754         * Makefile.am, attrdefs.h: new public header file with
2755         constants for attributes for use by embedders.
2756
2757 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2758
2759         * icall.c: GetFields () fix for bug #80064.
2760
2761 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2762
2763         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2764         removed long unused icalls.
2765
2766 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2767   
2768         * marshal.c: 
2769                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2770                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2771                 can be generated without a delegate class.
2772                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2773         
2774         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2775
2776 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2777
2778         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2779         #80069.
2780
2781 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2782
2783         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2784         icall-def.h: added icalls needed by System.GC.
2785
2786 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2787
2788         * loader.c: ensure the class in catch clauses is handled
2789         correctly for generics methods (fixes bug#79980).
2790
2791 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2792
2793         * monitor.h, monitor.c: added mono_locks_dump () function
2794         to help debug deadlocks involving managed locks.
2795
2796 2006-11-13  Dick Porter  <dick@ximian.com>
2797
2798         * file-io.c (get_file_attributes): If the file is a symlink try
2799         and get the stat data for the target, but also add the
2800         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2801         the specs for the windows symlink support, but will probably have
2802         to be reworked when I have test data from a vista machine.  Fixes
2803         bug 79887.
2804
2805 2006-11-13  Dick Porter  <dick@ximian.com>
2806
2807         * gc.c (mono_domain_finalize): 
2808         * marshal.c (mono_delegate_begin_invoke): 
2809         * threadpool.c (socket_io_init, mono_thread_pool_init)
2810         (mono_thread_pool_finish): 
2811         * monitor.c (mono_monitor_try_enter_internal): 
2812         * threads.c (mono_thread_resume, mono_thread_init)
2813         (mono_thread_suspend_all_other_threads)
2814         (mono_thread_execute_interruption): 
2815         * appdomain.c (mono_domain_unload): Check for NULL error returns
2816         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2817         75733.
2818
2819 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2820
2821         * process.c
2822         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2823         Only close the handle if the value of the handle is not
2824         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2825         robust.
2826
2827         Improvement for #75733, so that we do not run into this problem. 
2828
2829         
2830         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2831         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2832         internal variables.  Fixes #79462 
2833         
2834
2835 2006-11-09  Dick Porter  <dick@ximian.com>
2836
2837         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2838         Use poll() not select().  Fixes bug 79397.
2839
2840 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2841
2842         Fix #79872
2843         * assembly.c (mono_assembly_load_from_full): Check that the given
2844         image has an assembly manifest.
2845
2846 2006-11-09  Ankit Jain  <jankit@novell.com>
2847
2848         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2849         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2850         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2851
2852 2006-11-07  Dick Porter  <dick@ximian.com>
2853
2854         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2855         Put the old resolver behaviour back for pre-2.0 profiles.
2856
2857 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2858
2859         * threadpool.c: precise GC and locking fixes.
2860
2861 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2862
2863         * class.c: don't load types that have an explicit unaligned
2864         managed reference. Provide better info in the TypeLoad exception.
2865         Part of the fix for bug #79744.
2866         * object.c: use the correct check for class type load issues.
2867
2868 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2869
2870         * class.c: enforce alignment of fields with managed references
2871         even when Pack=1 is forced by the user (bug #77788).
2872
2873 2006-11-03  Dick Porter  <dick@ximian.com>
2874
2875         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2876         If the address reverse lookup fails, return it as the hostname
2877         anyway.  Fixes bug 79721.
2878
2879 2006-11-03  Dick Porter  <dick@ximian.com>
2880
2881         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2882         Fix build on Windows.
2883
2884 2006-11-02  Dick Porter  <dick@ximian.com>
2885
2886         * icall-def.h: 
2887         * object-internals.h: 
2888         * exception.c (mono_get_exception_thread_interrupted): 
2889         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2890         Fixes bug 74525.
2891
2892         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2893         Check for pending Thread.Interrupt.
2894
2895 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2896         * loader.c: Fixed bug 79684.
2897
2898 2006-10-27  Dick Porter  <dick@ximian.com>
2899
2900         * file-io.c (get_file_attributes): Force symlinks to directories
2901         to be returned as a regular file.  Fixes bug 79733.
2902 2006-10-26  Dick Porter  <dick@ximian.com>
2903
2904         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2905         CreateFile to open a directory then we need to set the
2906         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2907
2908 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2909
2910         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2911         friends.
2912
2913 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2914
2915         * sgengc.c: small cleanup of timer code.
2916
2917 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2918
2919         * sgen-gc.c: fix some warnings and start adding support for
2920         complete object removal on domain unload.
2921
2922 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2923
2924         * assembly.c: build_assembly_name should not consider a version
2925         number without build or revision number invalid. Fixes bug #79715.
2926
2927 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2928
2929         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2930         call kernel32 function OutputDebugString directly.
2931         
2932         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2933         
2934 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2935
2936         * reflection.c: small cleanup, using a function to insert a MonoString
2937         in the string heap.
2938
2939 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2940
2941         * reflection.c: moving GC fixes.
2942
2943 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2944
2945         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2946         all the objects with finalizers belonging to an unloading appdomain.
2947
2948 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2949
2950         * sgen-gc.c: added ability to allocate even when the nursery is fully
2951         pinned and fixed a couple of bugs.
2952
2953 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2954
2955         * threads.h: Revert the last change for now.
2956
2957         * threads.h (mono_thread_get_pending_exception): Rename this to
2958         mono_thread_get_undeniable_exception ().
2959
2960 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2961
2962         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2963         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2964         when fname does not refer to valid assembly. This result in a more
2965         meaningful error message.
2966         * exception.c: added mono_get_exception_bad_image_format2 which 
2967         constructs a BadImageFormatException using the ctor taking a custom
2968         message and the file name. Passing in a NULL msg results in a default
2969         message.
2970         * exception.h: define mono_get_exception_bad_image_format2 function.
2971         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2972         when file name pointed to an invalid IL image. Use 
2973         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2974         as this results in a more meaningful error message.
2975
2976 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2977
2978         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2979         #79465.
2980
2981 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2982
2983         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2984         consistency with the other _size functions.
2985         (mono_type_stack_size): Ditto.
2986
2987         * class.c object.c icall.c: Fix warnings caused by the above change.
2988
2989         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2990
2991         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2992
2993         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2994
2995 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2996
2997         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2998         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2999         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
3000         threadpool.h, threads-types.h: mark more internal functions.
3001
3002 2006-10-11  Dick Porter  <dick@ximian.com>
3003
3004         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
3005         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
3006         reproduce the bug even before applying the fix.)
3007
3008 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
3009
3010         * reflection.c: allow retrieving attributes for arguments in generic
3011         methods (bug #79241).
3012
3013 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
3014
3015         * debug-mono-symfile.c: properly check fopen () result (found by
3016         coverity).
3017
3018 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
3019
3020         * reflection.c: make error message clearer and fixed two
3021         issuelets found by Coverity.
3022
3023 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
3024
3025         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
3026
3027 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3028
3029         * object-internals.h, gc-internal.h, profiler-private.h:
3030         mark internal functions.
3031
3032 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3033
3034         * reflection.c: put data in the text section.
3035         * icall.c: recognize more types in type_from_typename ().
3036         * process.c, marshal.c: added some GC FIXMEs.
3037
3038 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3039
3040         * loader.c: check for NULL before initializing.
3041
3042 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
3043
3044         * gc.c (finalizer_thread): Use a non-alertable wait here.
3045
3046         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
3047         until the correct solution is found.
3048
3049 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3050
3051         * reflection.c (mono_module_get_object): Avoid an assert when operating on
3052         modules with no metadata. Fixes #79596.
3053
3054         * image.c (load_metadata_ptrs): Put back the error message when
3055         the #- heap is encountered since the support is not complete yet.
3056
3057 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3058
3059         * gc.c: do not allow the user to SuppressFinalize () a
3060         delegate because it would leak the trampoline if present.
3061
3062 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3063
3064         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
3065         PropertyPtr table.
3066
3067 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
3068
3069         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
3070
3071         * metadata.c (mono_metadata_get_param_attrs): Ditto.
3072
3073         * row-indexes.h: Add definitions for *Ptr tables.
3074
3075         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
3076
3077         * metadata.c (mono_metadata_translate_token_index): New helper function to
3078         translate table indexes used in uncompressed metadata.
3079         (mono_metadata_decode_table_row): Ditto.
3080         (mono_metadata_decode_table_row_col): Ditto.
3081
3082         * metadata.c: Add table schema for *Ptr tables.
3083
3084         * class.c loader.c: Use the new helper function to access the affected metadata
3085         tables.
3086         
3087         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
3088         #38532.
3089         
3090 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
3091
3092         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
3093         sequences which can be unbounded in size. Fixes #79583.
3094
3095 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
3096
3097         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
3098         static initialization.
3099
3100         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
3101
3102         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
3103
3104         * domain.c (mono_domain_free): Free up type_init_exception_hash.
3105
3106         * object.c (mono_runtime_class_init): Implement correct semantics when a static
3107         ctor fails, i.e. throw the same exception on subsequent accesses.
3108         
3109 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
3110
3111         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
3112         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
3113         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
3114         Handle marshalling of interfaces and VARIANTs contained in structs.
3115         
3116         Code is contributed under MIT/X11 license.
3117         
3118 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
3119
3120         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
3121         
3122         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
3123         mempool.
3124
3125 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3126
3127         * console-io.c: ignore previous SIGINT handler.
3128
3129 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
3130
3131         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
3132         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
3133         #79460, #79461, #79485.
3134
3135         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
3136
3137         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
3138         #79217.
3139
3140 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
3141
3142         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
3143         could be generated from it.
3144
3145 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
3146
3147         * rand.c: fix read loop to correctly handle EINTR.
3148
3149 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3150
3151         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
3152         internal calls are defined to keep methods closer to the declaring
3153         type and allow a significant reduction in runtime relocations and
3154         memory usage.
3155
3156 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
3157
3158         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
3159         exception message to have FileNotFoundException use the default
3160         assembly load error message. Fixes bug #79426.
3161         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
3162
3163 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3164
3165         * threadpool.c: (start_thread_or_queue) use the root domain when
3166         creating the thread instead of the async object one.
3167
3168 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
3169
3170         * class.c, object.c, class-internals.h, reflection.c:
3171         for arrays, store element_size inside MonoClass (speedup
3172         for array object creation).
3173
3174 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
3175
3176         * icall.c: fixed CodeBase to use the file name and not the module
3177         name (bug #79365).
3178
3179 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3180
3181         * mono-debug.c, mono-debug.h: export find_method as
3182         mono_debug_find_method ().
3183
3184 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3185
3186         * debug-helpers.c, class-internals.h: added a few functions useful
3187         when debugging under gdb.
3188
3189 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3190
3191         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
3192         characters that need special handling.
3193
3194 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
3195
3196         * mono-config.c: make the os/cpu specification more flexible,
3197         allowing lists and negation.
3198
3199 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
3200
3201         * marshal.c: COM Interop fixes. Handle case where method->klass.
3202         is interface. Handle BSTR/MonoString when null. Use CDECL as 
3203         calling convention on non-windows platforms. This is for
3204         compatibility with XPCOM and MainWin COM.
3205         
3206         Code is contributed under MIT/X11 license.
3207         
3208
3209 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
3210
3211         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
3212         correctly. Fixes #79217.
3213
3214         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
3215
3216 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
3217
3218         * mono-config.c: allow both an os and cpu attribute for dllmap
3219         and dllentry elemnets to enable a single config file to be used
3220         for multiple architectures.
3221
3222 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
3223
3224         * loader.c: MonoLoaderError was cleared too soon on load failure.
3225         Fixes bug #79424.
3226
3227 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
3228
3229         * icall.c: use the defining class vtable when accessing a
3230         static field, not a pobblibly derived class.
3231
3232 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
3233
3234         * icall.c string-icalls.c: Remove references to unicode.h.
3235
3236         * unicode.h unicode.c Makefile.am: Remove these unused source files.
3237
3238         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
3239
3240         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
3241         indicating the image where custom marshaller types should be looked up.
3242         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
3243         custom marshallers, instead of corlib. Fixes #79425.
3244
3245 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
3246
3247         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
3248
3249 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
3250
3251         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
3252         Implement Environment.ProcessorCount.
3253         
3254         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
3255         Implement Environment.ProcessorCount.
3256         
3257         * icall.c: 
3258         Add Environment.ProcessorCount icall.
3259         
3260         Patch by Jason McFall.
3261
3262 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3263
3264         * assembly.c: don't append .exe/.dll when the filename already contains
3265         one of those extensions.
3266
3267 2006-09-12  Martin Baulig  <martin@ximian.com>
3268
3269         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
3270         to array interfaces.
3271
3272 2006-09-11  Martin Baulig  <martin@ximian.com>
3273
3274         * reflection.c (mono_image_build_metadata): Create the
3275         MethodImpl's after emitting all types and methods, so we don't
3276         need another fixup pass for them.
3277
3278 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
3279
3280         * class.c (mono_class_from_name_case): Fix regression introduced by the last
3281         change.
3282
3283 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
3284
3285         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
3286         unload.
3287
3288 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
3289
3290         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
3291         args is not set. Fixes #78926.
3292
3293 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
3294
3295         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
3296
3297         * image.c (load_class_names): Move this to class.c, and rename it to 
3298         'mono_image_init_name_cache'.
3299         (load_modules): Fix a warning.
3300
3301         * class.c icall.c image.c: Initialize image->name_cache lazily.
3302
3303         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
3304         on its name using information in the AOT file.
3305
3306         * class.c (mono_class_from_name): Use the new hook function.
3307
3308 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
3309
3310         * reflection.c (mono_param_get_objects): Handle enum default parameter values
3311         correctly.
3312
3313         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
3314         Fixes #79289.
3315         
3316 2006-09-06  Martin Baulig  <martin@ximian.com>
3317
3318         * icall.c (mono_lookup_internal_call): Small fix.
3319
3320 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3321
3322         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3323         double g_free.
3324
3325 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3326
3327         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3328         when --debug is specified.
3329
3330 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3331
3332         * class.c (setup_generic_array_ifaces): Fix a warning.
3333
3334 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3335
3336         * Temporarily remove the patch to assemly.c that checks the
3337         assembly versions as it breaks our gacutil.
3338
3339 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3340
3341         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3342
3343         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3344         a net 1.0 runtime.
3345
3346         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3347         created using the default ctor. Fixes #79152.
3348         (mono_string_builder_to_utf16): Ditto.
3349
3350 2006-09-01  Martin Baulig  <martin@ximian.com>
3351
3352         Fix handling of the generic array interfaces.
3353
3354         * class-internals.h
3355         (MonoDefaults): Removed `generic_array_class' and added
3356         `generic_ilist' class.
3357
3358         * class.c
3359         (mono_bounded_array_class_get): Add the new generic array interfaces.
3360         (setup_generic_array_ifaces): New static method; create vtable
3361         entries for each method in the generic array interfaces.
3362
3363         * metadata.c
3364         (select_container): Allow "parent-less" generic methods.
3365
3366         * marshal.c
3367         (mono_marshal_get_generic_array_helper): New public method.
3368
3369         * icall.c
3370         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3371         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3372         moved the interncall into System.Array.
3373
3374 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3375
3376         A few more cases of avoiding work on types with ->byref set.
3377         Has the real fix for #79238
3378         * icall.c (is_generic_parameter): New helper.
3379         (ves_icall_Type_GetGenericParameterPosition): Use it.
3380         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3381         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3382         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3383         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3384         reference types.
3385         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3386         reference types.
3387         (ves_icall_Type_get_IsGenericInstance): Likewise.
3388         (ves_icall_Type_get_IsGenericType): Likewise.
3389
3390 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3391
3392         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3393         class if possible.
3394
3395         * mempool.h (mono_mempool_get_allocated): New helper function.
3396
3397         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3398         change.
3399
3400         * mempool.c: Fix warnings and the calculation of stats.
3401
3402         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3403
3404         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3405
3406         * loader.c (mono_get_method_from_token): Update method_count stat.
3407
3408         * class-internals.h (MonoStats): Add some stats.
3409
3410 2006-08-31 Robert Jordan  <robertj@gmx.net>
3411
3412         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3413         with managed variants.
3414         All code is contributed under the MIT/X11 license.
3415         
3416 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3417
3418         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3419         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3420
3421         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3422
3423         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3424         with cycles in classes.
3425
3426         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3427
3428         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3429         missing a [MarshalAs] directive. Fixes #79203.
3430
3431         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3432         klass->marshal_info. Fixes #79217.
3433
3434 2006-08-30  Martin Baulig  <martin@ximian.com>
3435
3436         Committing a patch from Joachim Ante <joe@otee.dk>:
3437         Add support for binary data symbol stores.
3438
3439         * debug-mono-symfile.c
3440         (mono_debug_open_mono_symbol_file): Renamed into
3441         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3442         arguments.
3443
3444         * mono-debug.c
3445         (mono_debug_open_image): Added `raw_contents' and `size' args.
3446         (mono_debug_init_2_memory): New public function.
3447
3448 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3449
3450         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3451
3452 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3453
3454         * appdomain.c: implement support for ShadowCopyFiles.
3455
3456 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3457
3458         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3459         when value is NULL (and should remove CID #51).
3460
3461 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3462
3463         * image.c: moved 2 functions to ../utils.
3464
3465 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3466
3467         * gc.c: cope with the target object of a GC handle being NULL
3468         (bug #78877).
3469
3470 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3471
3472         * class.c: recursively check parent's explicit implementations
3473         of interface methods (fixes bug #79125).
3474
3475 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3476
3477         * filewatcher.c: Avoid warnings when building, do not redefine
3478         constants that are defined.
3479
3480         Remove warnings.
3481
3482 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3483
3484         * image.c: don't fail when the link points to an absolute path.
3485
3486 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3487
3488         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3489         Fix CID #3.
3490
3491 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3492
3493         * image.c (full_path): A new method used to obtain the actual path
3494         of an assembly even in the presence of symbolic links.  
3495
3496         This is necessary for the case where we are running a binary that
3497         has been GACed, but we are using the "published" path name
3498         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3499         file in the GAC.
3500
3501         This was the source of the failure for the `xsp' command with the
3502         recent AppDomain changes, as far as the runtime was concerned,
3503         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3504         $prefix/mono/gac/blah/version/blah.exe.
3505
3506         (do_mono_image_open): use full path
3507
3508 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3509
3510         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3511
3512 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3513
3514         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3515         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3516
3517 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3518
3519         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3520         small structures. Fixes #78990.
3521
3522 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3523
3524         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3525
3526         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3527
3528 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3529
3530         * appdomain.c:
3531         * marshal.c: don't load all the assemblies from a domain into newly
3532         created ones. The new domains might have different rules and load
3533         assemblies from different locations. Fixes bug #76757.
3534
3535         Patch by Lluis. Conflicts resolved by Brian Crowell.
3536
3537 2006-08-16  Alp Toker  <alp@atoker.com>
3538
3539         * socket-io.c: First half of the fix for #79084.
3540         Set sa_size to the length of the content, not that of the struct.
3541         Don't add NULL suffix to the content, this should be done in
3542         managed code if needed.
3543
3544 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3545
3546         Fix part of #79012
3547         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3548         mono_metadata_parse_type returns NULL.
3549
3550 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3551
3552         * normalization-tables.h : new file for string normalization data.
3553         * locales.c, locales.h, icall.c :
3554           added load_normalization_resource() for string normalization,
3555           and icall as well.
3556         * Makefile.am : added normalization-tables.h to the sources.
3557
3558 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3559
3560         * marshal.c: Add more helper functions to reduce code duplication and use them
3561         everywhere.
3562
3563 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * marshal.c: Fix non-x86 stdcall warnings.
3566         
3567         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3568         them everywhere.
3569
3570 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3571
3572         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3573         type check on multi-dimensional arrays. Fixes #79000.
3574
3575 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3576
3577         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3578         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3579         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3580         * class-internals.h: add is_com_object to class structure.
3581         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3582         null checks to COM object marshalling. Fix .ctor call on RCW.
3583         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3584         
3585         All code is contributed under the MIT/X11 license.
3586
3587 2006-08-09  Dick Porter  <dick@ximian.com>
3588
3589         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3590         racing mono_monitor_allocator_lock() somewhere, so don't delete
3591         the critical section for now.  Found by running and exiting
3592         monodevelop.
3593
3594 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3595
3596         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3597         (ves_icall_System_ComObject_FindInterface): Ditto.
3598         (ves_icall_System_ComObject_CacheInterface): Ditto.
3599
3600         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3601         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3602
3603 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3604
3605         * threadpool.c: treat pipes from process asynchronous reads as sockets
3606         when reading from them, so we get select/poll or epoll to wait for
3607         data.
3608
3609 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3610
3611         * loader.c: Fix a typo (CID #233) in the null check.
3612
3613 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3614
3615         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3616         Hopefully fixes #78949.
3617         
3618         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3619         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3620         bytes. Fixes #78972.
3621
3622 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3623
3624         * filewatcher.c: we need to set errno here.
3625
3626 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3627
3628         * filewatcher.c: let Win32Exception get the error value.
3629
3630 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3631
3632         * filewatcher.c: translate errno into win32 errors for Win32Exception
3633         to know what happened.
3634
3635 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3636
3637         * threadpool.c: Fix more warnings.
3638
3639         * assembly.c (search_loaded): Fix warnings.
3640
3641         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3642         (mono_async_invoke): Ditto.
3643
3644 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3645
3646         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3647         entries for __ComObject type in addition to ComImport types.
3648         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3649         about hash table.
3650         
3651         All code is contributed under the MIT/X11 license.
3652
3653 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3654
3655         * image.c: avoid tentative loading of modulerefs that contain
3656         no metadata (P/Invoke library names).
3657
3658 2006-07-28  Dick Porter  <dick@ximian.com>
3659
3660         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3661         mono_loader_lock() somewhere, so don't delete the critical section
3662         for now.  Found by running and exiting monodevelop.
3663
3664 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3665
3666         * filewatcher.c: define the inotify syscalls when we're building on
3667         linux and have sys/syscall.h. The build system might not have support
3668         for inotify but the target system might have it.
3669
3670 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3671
3672         * domain.c: Documentation updates.
3673
3674         * loader.c (mono_free_method): Do not release the method
3675         information if we are being profiled, as profilers will use this
3676         information at shut down to present some data to the user.
3677
3678         This is needed so that the profiler does not crash, as the
3679         profiler tends to keep MonoMethods around, and they might become
3680         invalid if we free these.
3681
3682         (mono_get_method_constrained): Return the original CIL stream
3683         method as well, so verification can be performed against it.
3684
3685 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3686
3687         * filewatcher.[ch]: support for inotify file system watcher.
3688         * icall.c: add new internal calls for the inotify file system watcher.
3689
3690 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3691
3692         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3693         #78888.
3694
3695 2006-07-20  Dick Porter  <dick@ximian.com>
3696
3697         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3698         warning.
3699
3700 2006-07-20  Dick Porter  <dick@ximian.com>
3701
3702         * threads.c (start_wrapper): Do the thread cleanup while we still
3703         hold a reference to its object.  Fixes bug 78123.
3704
3705 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3706
3707         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3708         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3709           "managed-to-managed".
3710         * icall.c: Redirect string constructors that take sbyte* to
3711           ves_icall_System_String_ctor_RedirectToCreateString.
3712         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3713           to CreateString () methods with matching signature.
3714         * reflection.c: Use original security informations for
3715           MONO_WRAPPER_MANAGED_TO_MANAGED.
3716         * security-manager.c: Use original security informations for
3717           MONO_WRAPPER_MANAGED_TO_MANAGED.
3718         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3719           that is a placeholder and only its address should be used.
3720         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3721           that is a placeholder and only its address should be used.
3722
3723 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3724
3725         Begin implementing COM Interop.
3726         * appdomain.c: Increment corlib version.
3727         * class.c: Set ComImport classes' parent to __ComObject.
3728         * loader.c: Mark cominterop methods as such.
3729         * domain.c: Add __ComObject class to MonoDefaults structure.
3730         * image.c: Add 2 hashtables to the image for COM Interop related methods
3731         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3732         using the mempool allocator
3733         
3734         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3735         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3736         declaration for mono_metadata_type_dup_mp.
3737         
3738         * debug-helpers.c: Added strings for two additional wrapper types
3739         * object.c: Create proxy objects for ComImport classes
3740         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3741         and added __ComObject class to MonoDefaults structure.
3742         
3743         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3744         MonoComInteropProxy and MonoComObject.
3745         
3746         * marshal.c: Added support for COM Interop
3747         (signature_cominterop): Converts managed signature to corresponding
3748         unmanaged COM signature.
3749         (cominterop_get_function_pointer): gets unmanaged function pointer via
3750         COM object vtable
3751         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3752         (cominterop_get_method_interface): returns interface type that method is defined on
3753         (mono_mb_emit_cominterop_call): emits native call to function pointer
3754         gotten from vtable
3755         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3756         that matches signature of unmanaged function.
3757         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3758         (cominterop_get_invoke): forwards call from proxy to __ComObject
3759         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3760         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3761         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3762         
3763         * marshal.h: Added Marshal icall declarations.
3764         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3765         so we can access them in finalizer
3766         
3767 2006-07-14  Dick Porter  <dick@ximian.com>
3768
3769         * object.c (mono_type_initialization_cleanup): Fix a race
3770         condition by temporarily commenting out the critical section
3771         deletion.
3772
3773 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3774
3775         * reflection.c (create_custom_attr): Fix some warnings.
3776         (create_custom_attr_data): Ditto.
3777         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3778         types. Fixes #78855.
3779
3780 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3781
3782         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3783
3784         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3785
3786 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3787
3788         * reflection.c (resolve_object): Add support for DynamicMethod.
3789
3790         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3791         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3792
3793 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3794
3795         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3796         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3797
3798 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3799
3800         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3801         Fixes #77888.
3802
3803 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3804
3805         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3806         slightly: remove a shadow local variable.
3807
3808 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3809
3810         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3811         definition that introduces the virtual function slot.
3812         Also fix Coverity #105.
3813
3814 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3815
3816         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3817         for dynamic assemblies. Fixes #78724.
3818
3819 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3820
3821         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3822         Fixes #78722.
3823
3824 2006-06-21  Martin Baulig  <martin@ximian.com>
3825
3826         * reflection.c
3827         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3828         fixes #76484.
3829
3830 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3831
3832         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3833
3834 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3835
3836         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3837         nor TYPEREFs.
3838         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3839         Inflate result if necessary.
3840         (mono_class_get_full): Remove old version.  Rename from
3841         'mono_class_get' and add 'context' argument.  Pass it to
3842         ..._create_from_typespec.
3843         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3844         (mono_ldtoken): Revert change below.
3845
3846 2006-06-20  Martin Baulig  <martin@ximian.com>
3847
3848         * class.c (mono_ldtoken): Don't pass the generic context to
3849         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3850
3851 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3852
3853         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3854         and later freeing it. Fixes #78638.
3855
3856 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3857
3858         * icall.c (mono_class_get_throw): Revert over-zealous error
3859         throwing, the caller for mono_class_get_throw will cope with
3860         errors when classes are not properly initialized already.
3861
3862         The code still copes with loader exceptions though.
3863
3864         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3865         
3866 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3867
3868         Fixes the `make run1' version of RuntimeAbort (to be commited,
3869         source is in Bugzilla).
3870         
3871         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3872         FALSE on class loading failure instead of returning true.
3873
3874         * class.c (mono_class_create_from_typedef): It is possible for
3875         mono_metadata_interfaces_from_typedef_full to fail if a class is
3876         not found, cope with this.
3877         
3878
3879 2006-06-14  Dick Porter  <dick@ximian.com>
3880
3881         * socket-io.c: 
3882         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3883         4.1.1
3884
3885 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3886
3887         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3888
3889 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3890
3891         * icall.c: Another fix for building mono in Visual Studio.
3892
3893 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3894
3895         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3896         
3897 2006-06-09  Martin Baulig  <martin@ximian.com>
3898
3899         * debug-mono-symfile.c: Put this back and really fix it this
3900         time. Sorry for all the trouble.
3901
3902 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3903
3904         * icall.c (mono_class_get_throw): Fix a warning.
3905         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3906         ReflectionTypeLoadException if needed. Fixes #78606.
3907
3908         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3909         (mono_class_init): Ditto.
3910
3911         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3912         ref_only exceptions.
3913         (mono_loader_clear_error): Make this work even if there is no error.
3914
3915 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3916
3917         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3918         Marshal.GetComSlotForMethodInfo using internal call.
3919
3920 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3921
3922         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3923         a function for signalling it.
3924
3925         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3926         a referenced assembly is not found.
3927
3928         * loader.c (mono_loader_error_prepare_exception): Add support for 
3929         LOADER_ERROR_ASSEMBLY. Fix formatting.
3930
3931 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3932
3933         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3934         for VARIANT marshalling on windows and increment corlib version
3935         since Variant struct was added.
3936
3937 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3938
3939         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3940         stack trace line information:
3941
3942         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3943         (Martin) when looking up B which is between A and C, return A not C.
3944
3945         Bug is #78573.
3946
3947         Thanks to Alexander Olk for tracking this down.
3948
3949 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3950
3951         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3952         
3953         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3954         avoid clobbering its value.
3955         (mono_string_to_lpstr): Fix a warning on windows.
3956
3957 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3958
3959         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3960
3961         * reflection.c loader.c: Removed references to 'dummy' flag.
3962
3963         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3964
3965         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3966         it gets GC tracking.
3967
3968         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3969         GC tracking.
3970         
3971         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3972
3973         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3974
3975         * appdomain.c: Bump corlib version.
3976
3977 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3978
3979         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3980         CEE_STIND_REF when working with object references.
3981
3982 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3983
3984         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3985         Fixes #78539.
3986
3987 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3988
3989         * loader.c (method_from_memberref): Fix argument value for
3990         mono_loader_set_error_method_load (I was passing the MonoClass
3991         instead of the class name char *).
3992
3993 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3994
3995         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3996         CEE_STIND_REF when working with object references.
3997
3998 2006-05-30  Martin Baulig  <martin@ximian.com>
3999
4000         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
4001         mono_method_full_name() change and replace the ':' with a '.'
4002         here.
4003
4004 2006-05-30  Martin Baulig  <martin@ximian.com>
4005
4006         * debug-mono-symfile.c
4007         (mono_debug_symfile_lookup_location): Fix the algorithm:
4008         when looking up B which is between A and C, return A not C.
4009
4010 2006-05-29  Martin Baulig  <martin@ximian.com>
4011
4012         * mono-debug.h
4013         (MonoDebugMethodInfo): Make the typedef public.
4014         (MonoDebugSourceLocation): New public struct.
4015
4016         * mono-debug.c
4017         (mono_debug_source_location_from_address): Removed.
4018         (mono_debug_source_location_from_il_offset): Removed.
4019         (mono_debug_il_offset_from_address): Removed.
4020         (mono_debug_address_from_il_offset): Removed.
4021         (mono_debug_lookup_method): New public function.
4022         (mono_debug_lookup_source_location): New public function; replaces
4023         the old mono_debug_source_location_from_*() functions; see the
4024         inline documentation.
4025         (mono_debug_free_source_location): New public function.
4026         (mono_debug_print_stack_frame): New public function; see the
4027         inline documentation.
4028
4029         * debug-mono-symfile.c
4030         (mono_debug_find_source_location): Renamed into
4031         mono_debug_symfile_lookup_location(); only take a
4032         `MonoDebugMethodInfo *' and an `offset' argument; added inline
4033         documentation.
4034         (mono_debug_find_method): Renamed into
4035         mono_debug_symfile_lookup_method().
4036
4037 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
4038
4039         * assembly.c (mono_assembly_open_full): Dont overwrite the status
4040         returned by mono_image_open_full ().
4041
4042         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
4043         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
4044         #78517.
4045
4046         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
4047         #78518.
4048
4049 2006-05-27  Miguel de Icaza  <miguel@novell.com>
4050
4051         * class.c (mono_class_from_typeref): handle missing images
4052         earlier, deals with bug #78418.   Refactor code; 
4053
4054         Fix a warning introduced in my previous commit (some stale code
4055         from before I revisited my patch).
4056
4057         * class.c (mono_class_create_from_typedef): On failure, remove the
4058         class from the MonoImage->class_cache as the class is not
4059         initialized;   Fixes the leak pointed out by Paolo.
4060
4061 2006-05-25  Dick Porter  <dick@ximian.com>
4062
4063         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
4064         DeleteCriticalSections until I figure out which one may still be
4065         sometimes locked when mono_thread_cleanup is called.
4066
4067 2006-05-24  Dick Porter  <dick@ximian.com>
4068
4069         * threads.c (mono_thread_cleanup): Move the threading cleanup out
4070         of mono_thread_manage and back into its own function, so it can be
4071         called after the finalizer thread has finished.
4072
4073         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
4074
4075 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
4076
4077         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
4078         Fixes #78495.
4079
4080         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
4081         with non-blittable elements.
4082         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
4083
4084 2006-05-24  Martin Baulig  <martin@ximian.com>
4085
4086         * mono-debug-debugger.h (MonoDebuggerEvent): Added
4087         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
4088
4089         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
4090         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
4091         `mono_debugger_event_handler' to NULL.
4092
4093 2006-05-24  Martin Baulig  <martin@ximian.com>
4094
4095         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
4096
4097 2006-05-24  Martin Baulig  <martin@ximian.com>
4098
4099         * mono-debug-debugger.h
4100         (mono_debugger_create_notification_function): Added
4101         `MonoCodeManager *' argument.
4102
4103 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
4104
4105         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
4106
4107 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
4108
4109         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
4110         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
4111         implementation.
4112
4113 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
4114
4115         * icall.c: precise GC support: objects can't be stored in unmanaged
4116         memory anymore, even if they are kept alive by other references: since
4117         they can move the GC needs to be able to always find them.
4118
4119 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
4120
4121         * object.c: precise GC support for static fields. Support
4122         for moving GCs: write barriers and pinned allocation for interned
4123         strings.
4124
4125 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
4126
4127         * domain.c, domain-internals.h: precise GC support for the MonoDomain
4128         structure.
4129
4130 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
4131
4132         * class.c, gc.c: sgen and precise GC updates.
4133
4134 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
4135
4136         * marshal.h, marshal.c: added write barrier wrapper and precise type
4137         fixes.
4138
4139 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
4140
4141         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
4142         support.
4143
4144 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
4145
4146         * reflection.c: precise and sgen GC updates.
4147
4148 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
4149
4150         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
4151
4152 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
4153
4154         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
4155
4156 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
4157
4158         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
4159         MONO_TYPE_OBJECT. Fixes #78462.
4160
4161 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
4162
4163         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
4164         and blittable types.
4165
4166 2006-05-17  Miguel de Icaza  <miguel@novell.com>
4167
4168         * class.c (mono_class_get_exception_for_failure): Implement parts
4169         of a TODO: if the loader error is set (instead of the class
4170         error), we return a Loader exception that can be properly thrown
4171         elsewhere.
4172
4173         This was exposed by some Winforms 2.0 code that I tried to run
4174         (Atsushi pointed me to it).
4175
4176 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
4177
4178         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
4179         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
4180         
4181         * marshal.c (emit_marshal_vtype): Add limited support for 
4182         UnmanagedType.LPStruct. Fixes #78427.
4183
4184         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
4185         Applied a patch from kangaroo to fix #77523.
4186
4187 2006-05-17  Martin Baulig  <martin@ximian.com>
4188
4189         * threads.c
4190         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
4191         (debugger_thread_created): Removed.
4192         (debugger_thread_exited): Removed.
4193
4194 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
4195
4196         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4197
4198         * object-internals.h (MonoReflectionResource): Sync with managed version.
4199
4200 2006-05-12  Wade Berrier <wberrier@novell.com>
4201
4202         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
4203
4204 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
4205
4206         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
4207         functions try to allocate from the image mempool.
4208
4209 2006-05-12  Dick Porter  <dick@ximian.com>
4210
4211         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
4212
4213 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
4214
4215         * object.c: The FieldGetter and FieldSetter methods require the full
4216         name of the class, not only the name. Fixes bug #78277.
4217
4218 2006-05-11  Miguel de Icaza  <miguel@novell.com>
4219
4220         * loader.c (method_from_memberref): Do not pass the NULL klass to
4221         mono_loader_set_error_() methods.  Pass the non-NULL value
4222         (class). 
4223
4224 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
4227         (mono_assembly_close): Null out assembly->image->references after freeing it.
4228
4229         * image.c (mono_image_close): Free image->references.
4230         
4231         * reflection.c (mono_image_basic_init): Fix a small memory leak.
4232
4233 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4234
4235         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
4236         before checking if it's NULL (g_assert).
4237
4238 2006-05-10  Martin Baulig  <martin@ximian.com>
4239
4240         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
4241         I thought I already killed that two months ago, but now it somehow reappeared.
4242
4243 2006-05-10  Martin Baulig  <martin@ximian.com>
4244
4245         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
4246
4247 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
4248
4249         * reflection.c: Allocate memory for dynamically created methods in the image
4250         mempools.
4251
4252 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4253
4254         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
4255         don't use the ad pointer before checking if it's NULL (g_assert).
4256
4257 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
4258
4259         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
4260         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
4261
4262         * marshal.c: Allocate all signatures from mempools.
4263
4264         * marshal.c: Allocate some more signatures from mempools.
4265
4266 2006-05-09  Miguel de Icaza  <miguel@novell.com>
4267
4268         * object.c (mono_load_remote_field): The code used to provide a
4269         temporary variable for returning results if the user did not
4270         provide a result pointer.  But our temporary variable was allocted
4271         on the satck.
4272
4273         Fix calling code to always pass a result area.   Coverity ID 103.
4274
4275 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
4276
4277         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
4278         value, not the old. Fixes #78312.
4279         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
4280
4281         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
4282         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
4283         per-image cache.
4284
4285         * assembly.c (mono_assembly_close): Free image->references.
4286
4287         * assembly.c (mono_assembly_names_equal): Fix a warning.
4288         (mono_assemblies_cleanup): Cleanup more global data.
4289
4290         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
4291
4292         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
4293         ptr_cache and image->modules.
4294
4295         * image.c (mono_image_init): Allocate array_cache lazily.
4296         
4297 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4298
4299         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
4300         behavior was changed recently and has bad side effects.
4301
4302 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
4303
4304         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
4305         
4306         * assembly.c (mono_assembly_close): Remove a debug printf.
4307
4308         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
4309
4310         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
4311         to also allow for temporary references between mono_image_open ()/close ().
4312
4313         * domain.c (get_runtimes_from_exe): Add a FIXME.        
4314
4315 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4316
4317         * marshal.c: Fix support for dynamic methods.
4318
4319         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4320
4321         * marshal.c (mono_marshal_cleanup): New cleanup function.
4322
4323         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4324         image mempools.
4325
4326         * class.c (mono_class_init): Fix leaking class->nested_classes.
4327
4328         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4329
4330         * image.c (mono_image_init): Initialize the new cashes.
4331
4332         * image.c (mono_image_close): Destroy the new cashes.
4333
4334         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4335
4336         * mempool.c (mono_mempool_strdup): New helper function.
4337
4338         * class-internals.h: Add prototype for mono_loader_unlock ().
4339
4340         * domain.c (mono_jit_info_table_find): Fix a warning.
4341         (mono_debugger_check_runtime_version): Ditto.
4342
4343         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4344         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4345         functions to these modules.
4346
4347         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4348         metadata modules.
4349         
4350         * marshal.c (mono_free_bstr): Fix a warning.
4351
4352         * assembly.c (mono_assembly_open_full): Fix another small leak.
4353
4354         * object.c: Fix some unload leaks in the remoting code.
4355
4356         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4357         function.
4358
4359         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4360
4361         * reflection.c: Fix some unload leaks in dynamic assemblies.
4362
4363 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4364
4365         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4366         * marshal.h: Add BSTR support on Win32
4367         * icall.c: Add BSTR icalls
4368         * metadata.h: Add BSTR enums
4369
4370 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4371
4372         Work to catch the crash from #76795 and turn it into an
4373         exception.   As I stubbed out pieces of the VisualBasic support,
4374         I found a number of places where the code was failing and I added
4375         checks to those places. 
4376         
4377         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4378         function return a status code.  If we fail to parse the signature
4379         from mono_metadata_parse_generic_inst, return FALSE.
4380
4381         * loader.c (mono_get_method_from_token): If we fail to load the
4382         method (mono_class_get) return NULL.   
4383
4384         * (method_from_memberref): Return NULL if we are unable to parse
4385         the method signature
4386
4387         (mono_loader_error_prepare_exception): Since we now use the
4388         loader_error flag internally to stop processing, and obtaining
4389         exceptions that might be thrown will walk this code path the
4390         proper way of going from a MonoLoaderError into a
4391         MonoException was convoluted.   This new routine encapsulates the
4392         process of turning the error into an exception and *clearing* the
4393         error afterwards.
4394         
4395 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4396
4397         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4398         with missing assemblies), and to cope with:
4399
4400                 * Missing fieldref from a non-existing assembly.
4401                 * Missing methodref from a non-existing assembly.
4402
4403         The first batch of work to address *some* of the issues from 76661.
4404         
4405         * object.c (mono_class_create_runtime_vtable): If we fail to
4406         initialize the class raise the exception here. 
4407
4408         * metadata.c (mono_class_get_overrides_full): If any methods fail
4409         to load return the failure to the caller.
4410
4411         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4412         flagging assemblies that failed to load.   
4413
4414         Do not crash if we are unable to load the assembly.
4415
4416         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4417         assemblies. 
4418
4419         * loader.c (mono_loader_set_error_type_load): Change the
4420         convention to always pass unallocated strings, so we make our own
4421         copies (I know our own code had duplicated strings before, but
4422         this keeps the normal conventions).
4423         (method_from_memberref): Call mono_loader_set_error_method_load
4424         for all possible failures of loading the class. 
4425         Remove assert, turn into a loader error.
4426
4427         (mono_loader_error_to_exception): Move this routine from mini
4428         (mini_loader_error_to_exception) there was no need to have that in
4429         mini. 
4430
4431         * class.c (mono_class_from_typeref): If we were not able to load
4432         the assembly with mono_assembly_load_reference, call the
4433         mono_loader_set_error_type_load to register the problem.
4434
4435         (mono_class_setup_fields): If we fail to load the type from
4436         mono_metadata_parse_type_full, call mono_class_set_failure and
4437         break from the loop.
4438
4439         If class->exception_type is set, we do not layout the fields as
4440         that might crash the runtime, and instead return (from breaking
4441         from the previous loop).
4442
4443         (mono_class_setup_vtable): This now returns a boolean indicating
4444         whether the table was properly setup.   The decision is driven by
4445         mono_class_get_overrides_full which might run into non-existing
4446         methods. 
4447         
4448         (mono_class_init): Returns TRUE on success or FALSE if there was a
4449         problem in loading the type (incorrect assemblies, missing
4450         assemblies, methods, etc).
4451
4452         When we call mono_class_setup_fields we also check for a potential
4453         error inside this call (either a class exception or a general
4454         loader exception).
4455
4456         (mono_class_create_from_typedef): If the parent fails to load
4457         (calling mono_class_get_full) return NULL.
4458         
4459         ** Important **
4460
4461         calls to mono_metadata_parse_type_full should be checked
4462         everywhere and set the mono_class_set_failure
4463         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4464
4465         The current patch checks the places where my manually constructed
4466         tests show the errors are showing up, but we should do it
4467         everywhere. 
4468
4469         ** Important2 **
4470
4471         mono_class_init return values should be tested everywhere, like
4472         the previous case this is something that we should audit
4473         everywhere and not only on the cases exposed by the tests I
4474         created. 
4475
4476 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4477
4478         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4479         boolean parameter and instead pass the information on `options'
4480         parameter (FileOptions).
4481
4482         * icall.c: Register the new signature for MonoIO.Open.
4483
4484         * debug-helpers.c (dis_one): Trying to understand how coverity
4485         works.  Fix Run 5, item 78.
4486
4487 2006-04-26  Dick Porter  <dick@ximian.com>
4488
4489         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4490         dereference.
4491
4492 2006-04-25  Martin Baulig  <martin@ximian.com>
4493
4494         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4495
4496         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4497         debugger_thread_created().
4498         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4499         special way.
4500         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4501         (mono_debugger_finalize_threads): New function; undo the effects
4502         of mono_debugger_init_threads().
4503         (mono_debugger_create_all_threads): Removed.
4504
4505 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4506
4507         * image.c (mono_image_close): Tidy up trace messages.
4508
4509         * assembly.c (mono_assembly_close): Ditto.
4510
4511         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4512         no longer references an already freed assembly. Fixes #78168.
4513
4514 2006-04-21  Dick Porter  <dick@ximian.com>
4515
4516         * threads.c (mono_thread_detach): Fix reference counting when
4517         detaching threads.
4518
4519 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4520
4521         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4522         #78155.
4523
4524 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4525
4526         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4527         (mono_type_to_stind): Ditto.
4528
4529         * marshal.c: Use the new helper functions to simplify code.
4530
4531         * image.c (mono_image_close): Add some code for help debug assembly unloading
4532         problems.
4533
4534         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4535         image mempool.
4536
4537         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4538         assembly was already loaded in another appdomain. Fixes #78083.
4539
4540 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4541
4542         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4543         referenced assemblies.
4544         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4545
4546         * domain.c (mono_domain_free): Add a trace message.
4547
4548         * appdomain.c (add_assemblies_to_domain): Ditto.        
4549
4550         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4551         field.  
4552
4553 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4554
4555         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4556
4557 2006-04-12  Martin Baulig  <martin@ximian.com>
4558
4559         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4560         `USE_INCLUDED_LIBGC'.   
4561
4562 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4563
4564         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4565         the patch contains ../ and a small directory name later. Hopefully fixes
4566         #78035.
4567
4568 2006-04-10  Martin Baulig  <martin@ximian.com>
4569
4570         Clean up the debugger's thread-handling code.
4571
4572         The debugger's thread-handling code has been moved from
4573         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4574         over the `threads' hash, keep track of exiting threads and also
4575         use proper locking.
4576
4577         We can now debug XSP and XSP based applications with the debugger.
4578
4579         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4580
4581         * threads.h
4582         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4583         (mono_install_thread_callbacks): Likewise.      
4584
4585         * threads.c (mono_thread_callbacks): Removed.
4586         (debugger_thread_created, debugger_thread_exited): New static functions.
4587         (start_wrapper): Call debugger_thread_created().
4588         (thread_cleanup): Call debugger_thread_exited().
4589         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4590         (mono_debugger_init_threads): New public function.
4591         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4592         iterate directly over the `threads' hash and also use proper locking.
4593
4594         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4595
4596         * mono-debug-debugger.h
4597         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4598
4599 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4600
4601         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4602         argument type=array. Fixes #78057.
4603
4604 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4605
4606         * culture-info-table.h : regenerated. Fixed bug #69652.
4607
4608 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4609
4610         * loader.c metadata.c: Reapply a variant r59116.
4611         
4612         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4613
4614         * class.c (mono_class_setup_interface_offsets): New internal function.
4615
4616         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4617         interfaces too. Fixes #77398.
4618
4619         * reflection.c (encode_cattr_value): Add support for 
4620         parameter type=object, argument type=array.
4621         (load_cattr_value): Ditto. Fixes #77916.
4622
4623         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4624         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4625
4626         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4627         a byval char array and CharSet is Ansi.
4628
4629         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4630
4631 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4632
4633         * metadata.c: Add some locking comments.
4634         
4635         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4636         mempool.
4637         (mono_metadata_free_method_signature): Don't free the signature itself.
4638
4639         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4640
4641         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4642         reference the same MonoImage.
4643         (mono_assembly_load_from_full): Add an assert.
4644
4645 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4646
4647         * image.c (mono_image_close): Don't put the image we are about to free into the
4648         loaded_images_guid_hash.
4649
4650         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4651         to reduce code duplication.
4652
4653         * marshal.c: Register the native functions called by this module as icalls, to
4654         somewhat centralize the creation of MonoMethodSignature's.
4655
4656         * loader.c (mono_method_signature): Add a cache for method signatures.
4657
4658         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4659         the parameter attributes of a method.
4660         (mono_metadata_parse_method_signature_full): Refactored the computation of
4661         parameter attributes into a separate function. Also avoid one allocation in
4662         most cases.
4663
4664         * assembly.c (mono_assembly_close): Ditto.
4665
4666         * image.c (mono_image_close): Log trace messages with INFO level.
4667
4668         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4669
4670         * image.c reflection.c: Correct reference counting of image modules.
4671         
4672         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4673         of this function from the image mempool.
4674         
4675         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4676         to allow more cached types to be used.
4677
4678         * mono-debug.c (mono_debug_add_method): Appled patch from
4679         David S. Miller  <davem@sunset.davemloft.net>: Access 
4680         minfo->lexical_blocks[] entry elements using read32().
4681
4682 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4683
4684         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4685         methods as it is allocated from the mempool.
4686
4687         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4688         image mempool.
4689
4690         * metadata-internals.h: Add comments describing the reference counting scheme
4691         used for MonoImage and MonoAssembly.
4692
4693         * image.c assembly.c reflection.c: Rework reference counting of images and 
4694         assemblies so they are freed when the runtime is shut down. Free some 
4695         additional memory structures when an image is unloaded.
4696         
4697 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4698
4699         * class.c loader.c reflection.c: Allocate more data structures in
4700         the image mempool.
4701
4702 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4703
4704         * icall.c
4705         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4706         build on pre glib 2.4 systems.
4707
4708 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4709
4710         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4711
4712         * icall.c: Fix some warnings.
4713
4714 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4715
4716         * culture-info-table.h : regenerated.
4717
4718 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4719
4720         * threads.c, object-internals.h, verify.c: changed the culture caching
4721         code to use a normal MonoArray for storage so the GC can keep track of
4722         them easily. Fixed bits of the cache logic, too and simplified the
4723         code.
4724
4725 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4726
4727         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4728         thread for non-Boehm GCs.
4729
4730 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4731
4732         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4733         needed to keep track of the data for static fields.
4734
4735 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4736
4737         Fix #75172
4738         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4739         for interface classes.  Use 'num_methods' instead.
4740         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4741         before using '->vtable_size' field.
4742
4743 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4744
4745         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4746         doesn't contain managed pointers, so use a normal hashtable.
4747
4748 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4749
4750         * reflection.c, class-internals.h, domain.c: fixed handling of types
4751         used as values for objects in custom attributes (bug #77915):
4752
4753 2006-03-24  Martin Baulig  <martin@ximian.com>
4754
4755         * class.c (mono_class_setup_fields): Added support for generic
4756         instances; fixes #77580.
4757
4758 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4759
4760         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4761
4762 2006-03-24  Dick Porter  <dick@ximian.com>
4763
4764         * file-io.c (get_file_attributes): More stat macro breakage.
4765         Fixes bug 77759.
4766
4767 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4768
4769         * profiler.c: added the file=filename option in the default profiler
4770         to output the profile data to filename.
4771
4772 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4773
4774         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4775         bug #77877.
4776
4777 2006-03-22  Martin Baulig  <martin@ximian.com>
4778
4779         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4780         allocated `MonoClassField *' in `fb->handle'.
4781
4782 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4783
4784         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4785         allocate interface ID to save memory and allow better ID reuse on
4786         appdomain unload. setup_generic_vtable () removal from Martin.
4787
4788 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4789
4790         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4791         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4792         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4793         write barriers for reference stores with managed objects accessed with
4794         C structures in the runtime and in embedding programs.
4795
4796 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4797
4798         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4799         'interface_id' and 'max_interface_id' fields of MonoClasses
4800         representing open generic types.
4801
4802 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4803
4804         * object.h, object.c, icall.c: added functions to deal with
4805         storing valuetypes that contain references in managed objects.
4806         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4807         fixes and comments around uses of mono_array_addr ().
4808
4809 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4810
4811         * object.h, icall.c, monitor.c: object.GetHashCode ()
4812         implementation that supports the moving garbage collector.
4813
4814 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4815
4816         * icall.c, threads-types.h, threads.c: implemented finalizer for
4817         LocalDataStoreSlot.
4818
4819 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4820
4821         * metadata.c (mono_type_size): Add a fixme.
4822         (mono_type_stack_size): Ditto.
4823
4824         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4825         'type_forwarders' field.
4826
4827         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4828         attribute from net 2.0.
4829
4830         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4831         from class.c.
4832
4833         * class.c (mono_class_setup_fields): Fix a warning.
4834         
4835         * class.c (mono_class_from_name): Add support for assemblyref entries
4836         in the EXPORTEDTYPE table.
4837
4838         * reflection.c: Add support for handling type forwarders under net 2.0.
4839
4840         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4841         
4842 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4843
4844         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4845         overwriting entries in ModuleBuild->types, also clean up the code
4846         a little. Fixes #77774.
4847
4848 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4849
4850         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4851         load friend assembly info when present.
4852
4853 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4854
4855         Fix crasher on gtest-158.cs.
4856         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4857         the return value if the MonoClass we want is yet in an
4858         inconsistent state.
4859         * class.c (mono_class_create_from_typedef): Add an comment
4860         explaining an order dependency between mono_class_setup_parent and
4861         mono_class_setup_mono_type.
4862
4863 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4864
4865         * class.c: documentation updates and events bug fix.
4866
4867 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4868
4869         * class.c: some cleanup, locking fixes.
4870
4871 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4872
4873         * class.c: fix the generics code to setup nested
4874         type info to the instantiated type (bug #77770).
4875
4876 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4877
4878         * marshal.c: fixed a few type correctness issues.
4879
4880 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4881
4882         * loader.c: the Set/Get/Addrtess array methods should be public.
4883
4884 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4885
4886         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4887         
4888         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4889         info->wrapper.
4890
4891 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4892
4893         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4894
4895         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4896
4897         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4898         (mono_mempool_alloc0): Ditto.
4899
4900 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4901
4902         * socket-io.c:
4903         (create_object_from_sockaddr): it was allocating 4 extra bytes
4904         for the AF_UNIX data. Fixes bug #77747.
4905
4906 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4907
4908         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4909
4910 2006-03-09  Dick Porter  <dick@ximian.com>
4911
4912         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4913         Fixes bug 76966 again.
4914
4915 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4916
4917         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4918         names from r57532
4919         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4920
4921 2006-03-07  Martin Baulig  <martin@ximian.com>
4922
4923         * object.c
4924         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4925
4926 2006-03-07  Martin Baulig  <martin@ximian.com>
4927
4928         * class.c
4929         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4930         regression introduced in r56970; see gtest-252.cs.
4931
4932         * loader.c (mono_get_method_constrained): Correctly handle generic
4933         methods; see gtest-253.cs.
4934
4935 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4936
4937         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4938
4939 2006-03-04  Martin Baulig  <martin@ximian.com>
4940
4941         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4942         compute the parent type at runtime, just like we're already doing
4943         it for interfaces.
4944
4945         * reflection.c
4946         (mono_reflection_bind_generic_parameters): Don't compute the
4947         parent type anymore.
4948
4949         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4950
4951 2006-03-04  Martin Baulig  <martin@ximian.com>
4952
4953         * mono-debug-debugger.h
4954         (mono_debugger_create_notification_function): Allocate memory at
4955         runtime and return a pointer to it.
4956
4957 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4958
4959         * assembly.c: Fix windows build.
4960         
4961         * assembly.c: Fix build.
4962
4963         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4964
4965         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4966         
4967 2006-03-03  Dick Porter  <dick@ximian.com>
4968
4969         * process.c
4970         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4971         Check parameters before dereferencing them.  Fixes Aaron's part of
4972         bug 77393.
4973
4974 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4975
4976         Fix performance regression.
4977         * loader.c (find_method_in_class): Add 'from_class' argument.
4978         Rename 'klass' argument to 'in_class'.  The signature is compared
4979         against the method in 'in_class', and the corresponding method is
4980         returned from 'from_class'.
4981         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4982         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4983         type definition and generic instantiation in parallel.
4984         (mono_get_method_constrained): Update to changes.
4985
4986 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4987
4988         * threads.c: make sure the domain is correct, too when doing
4989         mono_thread_attach ().
4990
4991 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4992
4993         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4994         windows. Fixes #77683.
4995
4996 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4997
4998         * object.h, *: introduced specific way to set elements of an array
4999         of references to be used as write barrier. Still need to audit the
5000         uses of mono_array_addr.
5001
5002 2006-03-01  Miguel de Icaza  <miguel@novell.com>
5003
5004         * object-internals.h: New field to cache the assmebly name, patch
5005         from Tambet Ingo (tambet@ximian.com)
5006
5007 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
5008
5009         * decimal.h, class-internals.h, metadata-internals.h,
5010         file-io.h: mark a few function declarations as internal, to
5011         reduce the number of PLT entries.
5012
5013 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5014
5015         * file-io.c: fix typo in warning message.
5016
5017 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
5018
5019         * loader.c: on unix, lookup the "*A" version of a function
5020         if charset is auto as a second option before failing.
5021
5022 2006-02-28  Raja R Harinath  <rharinath@novell.com>
5023
5024         * class.h (mono_class_inflate_generic_method): Revert to two
5025         argument version.
5026         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
5027         (mono_class_inflate_generic_method_full): Add.
5028         * class.c (mono_class_inflate_generic_method_full): Rename from
5029         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
5030         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
5031         * loader.c, reflection.c: Update to changes.
5032
5033 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
5034
5035         * icall.c: const fixes and small improvements.
5036
5037 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5038
5039         * threadpool.c: for asynchronous connect(), enable the same workaround
5040         for BSD 6 as for the Mac. Fixes bug #77637.
5041
5042 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
5043
5044         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
5045         formatted classes. Fixes #77524.
5046
5047 2006-02-24  Raja R Harinath  <rharinath@novell.com>
5048
5049         * class.c (inflate_generic_type): Add a couple more
5050         micro-optimizations.
5051         (inflate_generic_context): Don't use the 'gmethod' from
5052         'inflate_with'.
5053         (mono_class_inflate_generic_method): If the method has generic
5054         parameters, but the passed-in context doesn't have a 'gmethod',
5055         create one.  Use the possibly simplified generic instantiation
5056         from the declaring class instead of the one passed in.
5057
5058 2006-02-24  Raja R Harinath  <harinath@gmail.com>
5059
5060         Make generic method signature and method header handling lazy.
5061         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
5062         (inflate_generic_header): Likewise.
5063         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
5064         parameter to avoid inflating types.
5065         (mono_get_inflated_method): Empty out.
5066         * class.h (mono_class_inflate_generic_method): Update to changes.
5067         * loader.c (mono_get_method_from_token): Don't parse signature for
5068         generic methods, nor methods of generic classes.
5069         (mono_method_signature): Rename from 'mono_method_signature'.
5070         Inflate signature on demand.
5071         (mono_method_get_header): Inflate method header on demand.
5072         * reflection.c: Update to changes.
5073
5074 2006-02-23  Raja R Harinath  <rharinath@novell.com>
5075
5076         * metadata.c (mono_metadata_inflate_generic_inst): If the
5077         instantiation is closed, don't bother expanding it in the new
5078         context.
5079         * class.c (inflate_generic_class): If the generic instantiation
5080         doesn't change after inflation, return the argument itself.
5081         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
5082         Add bounds checks.
5083         (inflate_generic_context): If neither the generic class nor the
5084         generic method instantiations change, return the original context.
5085         * reflection.c (mono_method_get_object): Do
5086         'mono_get_inflated_method' before accessing the ->klass field.
5087         (inflate_mono_method): Don't create a MonoGenericMethod unless
5088         necessary.
5089         (inflate_method): Don't pass a constructed type as the declaring
5090         type of a methodbuilder.
5091
5092 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
5093
5094         * object.c: fix memory overwrite.
5095
5096 2006-02-22  Dick Porter  <dick@ximian.com>
5097
5098         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
5099         it doesn't work any more.
5100         (mono_threads_request_thread_dump): Fix unused variable warnings.
5101
5102 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5103
5104         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
5105         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
5106         the public header file.
5107
5108 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
5109
5110         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
5111
5112 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
5113
5114         * class-internals.h, object.c: reduce the size of MonoVTable
5115         and store the interface_offsets array at negative offsets.
5116
5117 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
5118
5119         * metadata.c: tweak table descriptors data structures to reduce
5120         size and runtime relocations.
5121
5122 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5123
5124         * marshal.c: fix some types and opcodes to be type-safe
5125         in marshaling wrappers.
5126
5127 2006-02-21  Ankit Jain  <jankit@novell.com>
5128
5129         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
5130
5131 2006-02-21  Raja R Harinath  <rharinath@novell.com>
5132
5133         * metadata.c (get_constraints): Relax debugging checks for monodis.
5134
5135 2006-02-21  Ankit Jain  <jankit@novell.com>
5136
5137         * metadata.c (mono_metadata_load_generic_params): Move the code
5138         checking for ambiguous generic params from here to mono/dis/get.c
5139         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
5140
5141 2006-02-21  Raja R Harinath  <harinath@gmail.com>
5142
5143         Fix assertion triggered when compiling nemerle.
5144         * class.c (mono_get_shared_generic_inst): Rename from
5145         get_shared_inst and make non-static.
5146         * loader.c (mono_get_shared_generic_method): New.  Used to create
5147         the MonoGenericContext-equivalent of a MonoGenericContainer.
5148         (mono_get_method_from_token): Initialize the 'context' field of
5149         the created MonoGenericContainer.
5150         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
5151         * metadata.c (get_constraints): Add sanity check.
5152         * class-internals.h: Add new internal methods.
5153
5154         * reflection.c (verify_safe_for_managed_space): New sanity check.
5155         Currently checks that owner-less generic parameters aren't allowed
5156         in managed space.
5157         (mono_type_get_object): Use it.
5158         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
5159         that are now in mono_type_get_object.
5160         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
5161
5162 2006-02-19  Raja R Harinath  <harinath@gmail.com>
5163
5164         * metadata.c (mono_type_create_from_typespec): Rename from
5165         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
5166         argument and caching of types in the generic container.
5167         (unwrap_arrays, find_generic_param): Remove.
5168         * metadata-internals.h: Update.
5169         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
5170
5171 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
5172
5173         * class.c (mono_class_get_exception_for_failure): Fix a warning.
5174
5175         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
5176         return values. Fixes #77581.
5177
5178         * class.c (mono_fnptr_class_get): Switch name and name_space.
5179
5180         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
5181         classes and add support for [In, Out] attributes.
5182         (mono_marshal_free_asany): Ditto. Fixes #77524.
5183
5184 2006-02-18  Raja R Harinath  <harinath@gmail.com>
5185
5186         * class.c (mono_class_from_generic_parameter): Make more robust to
5187         incomplete MonoGenericContainers from monodis.
5188
5189 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5190
5191         * class-internals.h: added some more exception types.
5192         * class.c, metadata.c: added a few checks to handle missing
5193         types.
5194
5195 2006-02-17  Raja R Harinath  <rharinath@novell.com>
5196
5197         Use owner-less generic-params some more.
5198         * class.c (my_mono_class_from_generic_parameter): Remove.
5199         (mono_class_from_generic_parameter): Handle null image,
5200         param->name and param->owner.
5201         (mono_class_from_mono_type): Update.
5202         (mono_class_create_from_typespec): Remove 'container' parameter.
5203         If that parameter is non-null, the result is always inflated by
5204         'mono_class_get_full' anyway.
5205         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
5206         parameter.
5207         (mono_class_get_full): Update.
5208
5209         * class.c (inflate_generic_type) [GENERICINST]: If the generic
5210         instance is not open, don't bother inflating.
5211         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
5212         parse metadata for inflated classes.
5213         (_mono_class_get): Change GenericContext* parameter to
5214         GenericContainer*.
5215         (mono_class_create_from_typespec): Likewise.  Simplify, and
5216         implement trivially.  All the cases are handled in
5217         mono_class_from_mono_type.  Don't inflate returned class.
5218         (mono_class_get_full): Delegate GENERICINST optimization to
5219         inflate_generic_type.
5220         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
5221
5222 2006-02-16  Dick Porter  <dick@ximian.com>
5223
5224         * socket-io.c (create_object_from_sockaddr): Fix typo.
5225         (create_sockaddr_from_object): Check array lengths before
5226         potentially accessing items off the end.
5227         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
5228         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
5229         (ves_icall_System_Net_Sockets_Socket_Send_internal)
5230         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
5231         length checks to avoid wraparound overflows.
5232         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
5233         contents of the array of sockets
5234         (hostent_to_IPHostEntry2)
5235         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
5236         Check return value of inet_ntop ().
5237         (addrinfo_to_IPHostEntry): Fix typo
5238
5239 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5240
5241         Type metadata parsing doesn't use generic-instantiation information.
5242         * metadata.c (mono_metadata_parse_array_full): Change
5243         MonoGenericContext* parameter to MonoGenericContainer*.
5244         (mono_metadata_parse_type_full): Likewise.
5245         (mono_type_create_from_typespec_full): Likewise.
5246         (mono_metadata_parse_mh_full): Likewise.
5247         (mono_metadata_parse_generic_inst): Likewise.
5248         (do_mono_metadata_parse_generic_class): Likewise.
5249         (do_mono_metadata_parse_type): Likewise.
5250         * metadata-internals.h: Update to changes.
5251         * class.c (mono_class_find_enum_basetype): Likewise.
5252         (mono_class_setup_fields): Likewise.
5253         (mono_class_create_from_typespec): Likewise.
5254         * loader.c (method_from_methodspec): Likewise.
5255         (mono_get_method_from_token): Likewise.
5256         (mono_method_get_header): Likewise.
5257
5258 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5259
5260         * marshal.c: handle additional GENERICINST case (patch from
5261         Thong Nguyen <tum@veridicus.com>).
5262         Fix a few cases where LDIND_I/STIND_I was used for references.
5263
5264 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5265
5266         * reflection.c (mono_reflection_get_token): Remove unused variable.
5267
5268 2006-02-16  Martin Baulig  <martin@ximian.com>
5269
5270         * reflection.c (mono_reflection_get_token): Add support for fields
5271         in instantiated generic types.
5272
5273         * icall.c
5274         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
5275
5276 2006-02-15  Martin Baulig  <martin@ximian.com>
5277
5278         * icall.c
5279         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
5280         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
5281         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
5282         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
5283
5284 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5285
5286         * class.c, metadata.c, metadata.h, object.c, icall.c,
5287         marshal.c: changed mono_type_get_underlying_type () to do
5288         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
5289         Fixed handling of instantiated generic valuetypes (bug #75479).
5290
5291 2006-02-15  Raja R Harinath  <rharinath@novell.com>
5292
5293         * metadata.c (mono_metadata_decode_signed_value): Simplify.
5294         Delegate to mono_metadata_decode_value, and work on the returned value.
5295
5296         * icall.c (ves_icall_MonoType_GetGenericArguments):
5297         Add consistency check here too.
5298         
5299 2006-02-15  Ankit Jain  <jankit@novell.com>
5300
5301         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
5302         char/short etc.
5303
5304 2006-02-15  Ankit Jain  <jankit@novell.com>
5305
5306         * metadata.c (mono_metadata_decode_signed_value): New function to decode
5307         signed values, used only for representing lower bounds of arrays.
5308         (mono_metadata_parse_array_full): Use new
5309         mono_metadata_decode_signed_value to decode lower bounds.
5310
5311 2006-02-14  Martin Baulig  <martin@ximian.com>
5312
5313         * reflection.c
5314         (mono_reflection_get_token): Support "MonoGenericMethod" and
5315         "MonoGenericCMethod" and allow generic instances / methods.
5316
5317 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5318
5319         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5320         to obtain the terminal size using an ioctl.
5321
5322         * object.c (mono_nullable_init): Revert this as nullable reference
5323         types are not valid.
5324         (mono_nullable_box): Ditto.
5325
5326 2006-02-09  Dick Porter  <dick@ximian.com>
5327
5328         * threads.c (mono_thread_detach): Drop a reference to the thread
5329         we're detaching.
5330
5331 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5332
5333         * object.c (mono_nullable_init): Handle nullable reference types.
5334         (mono_nullable_box): Ditto. Fixes #77446.
5335
5336 2006-02-07  Martin Baulig  <martin@ximian.com>
5337
5338         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5339
5340 2006-02-07  Ankit Jain  <jankit@novell.com>
5341
5342         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5343         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5344         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5345         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5346         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5347         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5348
5349 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5350
5351         * class.c (mono_class_create_generic): Set type_token as well.
5352
5353         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5354         compatible with MS.
5355
5356 2006-02-02  Martin Baulig  <martin@ximian.com>
5357
5358         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5359         has never been used so far.
5360
5361 2006-02-02  Martin Baulig  <martin@ximian.com>
5362
5363         * mono-debug-debugger.h: Changed comment at the top of this file;
5364         the header is not installed, but it's safe to #include it from
5365         within the JIT.
5366
5367         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5368         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5369
5370 2006-02-02  Martin Baulig  <martin@ximian.com>
5371
5372         * mono-debug.h
5373         (MonoSymbolTable): Removed the `metadata_info' field.
5374
5375         * mono-debug.c
5376         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5377
5378         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5379         (mono_debugger_add_builtin_types): Removed.
5380         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5381         (mono_debugger_create_notification_function): We now operate on a
5382         pre-allocated area; take a `gpointer' and return `void'.
5383
5384         * mono-debug-debugger.c
5385         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5386         (mono_debugger_add_builtin_types): Removed.
5387
5388 2006-02-02  Martin Baulig  <martin@ximian.com>
5389
5390         * threads.c (mono_debugger_create_all_threads): New public method.
5391
5392 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5393
5394         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5395         breaks on several platforms.
5396
5397 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5398
5399         * assembly.c: the VS.NET build doesn't supply default values for
5400         MONO_ASSEMBLIES and MONO_CFG_DIR.
5401
5402 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5403
5404         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5405         helper function.
5406
5407         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5408
5409         * loader.c (method_from_memberref): Fix a warning.
5410
5411         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5412
5413         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5414         with explicit layout. Fixes #77433.
5415
5416 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5417
5418         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5419         max_interface_id is initialized before using it. Fixes #77398.
5420         (ves_icall_Type_GetInterfaces): Ditto.
5421
5422 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5423
5424         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5425         allocate memory for parameter attributes when parsing memberref
5426         signatures.
5427         * loader.c (mono_loader_set_error_method_load): Don't warn.
5428         (method_from_memberref): Ensure MissingMethodException gets thrown
5429         if method is not found.  Make warning more informative.
5430
5431 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5432
5433         Fix #77397
5434         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5435         return true if is byref.
5436         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5437         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5438         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5439
5440 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5441
5442         Fix tests/find-method.2.il
5443         * loader.c (find_method, find_method_in_class): Remove is_inflated
5444         argument.  Revert 2006-01-18 change.
5445         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5446         is generic, search for method in its generic definition.
5447         * class.c (mono_class_setup_vtable_general): Print generic
5448         arguments of generic types in debugging printf.
5449
5450 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5451
5452         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5453
5454         * threads.c (mono_threads_request_thread_dump): New helper function.
5455
5456 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5457
5458         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5459
5460 2006-01-25  Ankit Jain  <jankit@novell.com>
5461
5462         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5463         move definition to ..
5464         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5465         
5466 2006-01-25  Ankit Jain  <jankit@novell.com>
5467             Raja R Harinath  <rharinath@novell.com>
5468
5469         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5470         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5471         as necessary.
5472
5473 2006-01-25  Martin Baulig  <martin@ximian.com>
5474
5475         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5476         `MonoDebuggerThread' into debug-debugger.c.
5477
5478 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5479
5480         * profiler.c: fix printing of data.
5481
5482 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5483
5484         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5485           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5486
5487 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5488
5489         * object.c: fix deadlock related to string interning.
5490
5491 2006-01-23  Martin Baulig  <martin@ximian.com>
5492
5493         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5494
5495         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5496
5497 2006-01-23  Martin Baulig  <martin@ximian.com>
5498
5499         * mono-debug.h: Moved the prototypes of some functions which are
5500         used by the JIT here from mono-debug-debugger.h.
5501
5502 2006-01-21  Martin Baulig  <martin@ximian.com>
5503
5504         * Makefile.am: Don't install mono-debug-debugger.h.
5505
5506 2006-01-21  Martin Baulig  <martin@ximian.com>
5507
5508         * mono-debug-debugger.h: Enforce the private status of this header
5509         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5510         Moved some stuff from mono-debugger-jit-wrapper.h here.
5511
5512 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5513
5514         * class.c (mono_class_from_typeref): Add a sanity test to help
5515         catch lack of assembly load/search hooks.
5516
5517 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5518
5519         * marshal.c (emit_struct_conv): Relax the fields with same offset
5520         check even more. Fixes #77230.
5521
5522 2006-01-18  Martin Baulig  <martin@ximian.com>
5523
5524         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5525         argument; if false, we compare the uninstantiated signatures.
5526         (method_from_memberref): Compare the uninstantiated signatures;
5527         fixes #76417.
5528
5529 2006-01-18  Robert Jordan  <robertj@gmx.net>
5530
5531         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5532         Clear the weak link. Fixes bug #77170.
5533
5534         * gc.c (mono_gchandle_free):
5535         Reflect *-gc.c changes (tiny optimization).
5536
5537 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5538
5539         * metadata.c (mono_metadata_signature_dup): Applied patch from
5540         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5541         Fixes #77288.
5542
5543 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5544
5545         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5546         marshalling from native to managed code. Fixes #77230.
5547
5548 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5549
5550         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5551         connect. Fixes bug #77020.
5552
5553 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5554
5555         * class.c: fixed id assignement for nested interfaces (bug #77275).
5556         Added also better info for --print-vtable debugging.
5557
5558 2006-01-12  Martin Baulig  <martin@ximian.com>
5559
5560         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5561         interfaces on-the-fly; fixes #76625.
5562
5563         * class-internals.h
5564         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5565         don't need that anymore.
5566
5567 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5568
5569         * socket-io.c
5570         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5571         To avoid initing the nested_classes when not needed I turned the
5572         PeerCredData as a toplevel internal class, as it has to be shared
5573         anyways. 
5574
5575         Fixes the CASA issue.
5576
5577 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5578
5579         * domain.c: Accessors for MonoJitInfo
5580
5581         * profiler-private.h: Add jitinfo to the end jit hook
5582
5583         * profiler.[ch]: Define new hooks, called after jitting which give
5584         the MonoJitInfo that was compiled
5585
5586 2006-01-10  Martin Baulig  <martin@ximian.com>
5587
5588         * class.c (mono_class_setup_events): Add support for generic
5589         classes; fixes #76440.
5590
5591 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5592
5593         Fix #77160.
5594         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5595         on passed-in method.
5596
5597 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5598
5599         * object.c (mono_runtime_invoke_array): Add Nullable support.
5600
5601         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5602
5603 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5604
5605         * file-io.c: Don't consider sockets as directory and avoid an endless
5606         loop. Fix bug #76966.
5607
5608 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5609
5610         * object.c (mono_nullable_init): New helper function.
5611         (mono_nullable_box): Ditto.
5612
5613         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5614
5615         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5616
5617         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5618         
5619 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5620
5621         * class.c (mono_class_is_assignable_from): Make T assignable to 
5622         Nullable<T>.
5623
5624 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5625
5626         * appdomain.c: Bump corlib version to 46.
5627         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5628         serialization purpose) and changed ves_icall_System_Reflection_
5629         Assembly_get_code_base signature to accept a boolean (to escape, or 
5630         not, the assembly code base).
5631
5632 2005-12-23  Dick Porter  <dick@ximian.com>
5633
5634         * icall.c: 
5635         * threads-types.h: 
5636         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5637         CreateEvent icall now returns "created" boolean parameter.
5638
5639 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5640
5641         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5642         #76967.
5643
5644         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5645         when attr_klass is an interface. Fixes #77045.
5646
5647 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5648
5649         * marshal.c (emit_struct_conv): Fix previous patch.
5650         
5651         * marshal.c (emit_struct_conv): Add a check for fields with the same
5652         offset.
5653
5654 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5655
5656         Fix regression in Mono.C5.
5657         * class.c (mono_class_create_generic): If 'klass' is an interface
5658         set up the interface offsets.
5659         (mono_class_is_assignable_from): Don't throw away generic arguments.
5660
5661 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5662
5663         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5664         type parameters.
5665
5666 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5667
5668         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5669         dead store.
5670         (do_mono_metadata_parse_generic_class): Don't pass the current
5671         generic context when parsing the type being instantiated: it
5672         cannot use it, anyway.
5673
5674         * loader.c (method_from_memberref): Don't inflate a signature if
5675         it doesn't contain any type parameters.
5676
5677 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5678
5679         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5680
5681 2005-12-14  Martin Baulig  <martin@ximian.com>
5682
5683         * class.c
5684         (mono_type_get_name_recurse): Don't return null for type
5685         parameters and open generic classes.
5686         (mono_class_setup_methods): Don't exclude generic instances.
5687         (mono_get_unique_iid): Use different IDs for different
5688         instantiations of the same generic type.
5689         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5690         open generic instances; create a normal vtable for closed generic
5691         instances.
5692         (mono_class_setup_vtable_general): We're now also called for
5693         closed generic instances.
5694
5695         * reflection.c
5696         (mono_reflection_bind_generic_parameters): Correctly use
5697         mono_metadata_lookup_generic_inst() everywhere.
5698
5699 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5700
5701         * object.c (mono_class_create_runtime_vtable): Call 
5702         mono_class_setup_vtable ().
5703
5704         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5705         function.
5706         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5707         #76959.
5708
5709         * loader.c (mono_loader_set_error_type_load): Print the type load
5710         warnings to the console so they are more visible to the user.
5711         (mono_loader_set_error_method_load): Ditto.
5712
5713         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5714         is still broken.
5715         
5716         * reflection.c (ensure_runtime_vtable): Fix build.
5717
5718         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5719         doesn't work in all cases.
5720
5721 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5722
5723         * object.c (mono_array_new_full): Treat a single dimensional array
5724         with 0 lower bounds as an szarray. Fixes #76973.
5725
5726         * reflection.c (custom_attr_visible): Really fix this.
5727
5728 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5729
5730         * reflection.c (custom_attr_visible): Allow nested public attributes
5731         as well.
5732
5733         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5734         interface check.
5735
5736 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5737
5738         * class.c (set_generic_param_owner): Delete.
5739         (mono_class_create_from_typedef): Don't set ->owner field of
5740         generic parameters to "param containers" of enclosing classes.
5741         * reflection.c (mono_reflection_initialize_generic_parameter):
5742         Likewise.
5743
5744 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5745
5746         * reflection.c (custom_attr_visible): Fix build.
5747
5748 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5749
5750         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5751         private attributes.
5752         
5753         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5754         handling of null parameter defaults.
5755
5756 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5757
5758         * class.c (mono_class_from_generic_parameter): Don't set
5759         klass->generic_container.
5760         (my_mono_class_from_generic_parameter): Likewise.
5761
5762 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5763
5764         * reflection.c (load_public_key): Fix a warning.
5765         (method_encode_code): Fix unaligned accesses.
5766
5767 2005-12-07  Martin Baulig  <martin@ximian.com>
5768
5769         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5770
5771         * reflection.c
5772         (write_generic_param_entry): Encode our custom attrs.
5773
5774         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5775
5776 2005-12-07  Martin Baulig  <martin@ximian.com>
5777
5778         * reflection.c (encode_new_constraint): Removed; we don't use the
5779         `NewConstraintAttribute' anymore.
5780
5781 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5782
5783         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5784         not fire a TypeResolve event when Assembly.GetType () is called.
5785
5786 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5787
5788         Beginning of support for nullable types in the runtime. Parts of
5789         this patch are from Martin.
5790
5791         * appdomain.c (MONO_CORLIB_VERSION): Bump
5792
5793         * domain.c (mono_init_internal): get the nullable type
5794
5795         * class.c (mono_class_is_nullable): New method
5796         (mono_class_get_nullable_param): New mehod
5797         (mono_class_create_generic): In types T? set cast_class to T
5798
5799         * class-internals.h (MonoDefaults): new nullable default class
5800         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5801         new methods.
5802
5803 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5804
5805         * metadata.c (select_container): New.  Refactor code to select the
5806         appropriate GenericContainer given the type of generic parameter
5807         we are looking for.
5808         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5809         not a MonoGenericContext.  Use select_container.  Update parameters.
5810         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5811         and MONO_TYPE_MVAR.
5812         (unwrap_arrays): Remove duplicate tests.
5813         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5814         generic instantiated class to find any arguments that are generic
5815         parameters.
5816         (mono_type_create_from_typespec_full): Use find_generic_param to
5817         avoid evicting some generic instantiations from the typespec
5818         cache.
5819
5820 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5821
5822         * reflection.c: fixed writing of doubles on ARM FPA.
5823
5824 2005-12-02  Robert Jordan  <robertj@gmx.net>
5825
5826         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5827
5828 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5829
5830         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5831         least on SUSE 10 they are not the same (on debian, they are just the
5832         same thing).
5833
5834 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5835
5836         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5837         DeclaringType for VARs and MVARs.
5838         * class.c (set_generic_param_owner): Fix initialization of owner
5839         fields.
5840
5841 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5842
5843         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5844
5845 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5846
5847         * threadpool.c: workaround for a bug that shows up on the Mac:
5848         select()+connect() on a blocking socket is not like it should
5849         be, so we proceed to connect() in that case, wasting the I/O
5850         threadpool thread until connect succeedes. Fixes bug #75436.
5851
5852 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5853
5854         * threadpool.c: fix typo when setting file descriptor states.
5855
5856 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5857
5858         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5859         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5860         create a temporary signature container.
5861         (mono_metadata_parse_generic_param): Update to changes.
5862         (mono_type_create_from_typespec_full): Update to changes.
5863         * loader.c (method_from_memberref): Don't use a
5864         MonoGenericContainer while parsing a memberref signature.
5865         (method_from_methodspec): Remove dead-store of the 'container'
5866         variable.  It's overwritten before use.
5867
5868         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5869         checks tighter.
5870         (mono_metadata_parse_generic_param): Likewise.
5871         * loader.c (find_method_in_class): Does not need a
5872         MonoGenericContainer.  Use 'mono_method_signature' rather than
5873         'mono_method_signature_full'.
5874         (find_method, mono_get_method_constrained, method_from_memberref):
5875         Update to changes.
5876
5877         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5878         owner-less generic-parameters are never evicted from the typespec
5879         cache.
5880
5881         * loader.c (method_from_memberref): Don't use the current context
5882         when parsing signatures.
5883         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5884
5885         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5886         side-effects in g_assert.
5887         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5888         that we don't potentially lose information.
5889
5890 2005-11-26  Dick Porter  <dick@ximian.com>
5891
5892         * icall.c:
5893         * threads.c: icalls to implement basic (ie, not named)
5894         System.Threading.Semaphore.
5895
5896 2005-11-24  Dick Porter  <dick@ximian.com>
5897
5898         * process.c
5899         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5900         Use GetProcessId() if it's available.
5901
5902 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5903
5904         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5905
5906 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5907             Ankit Jain  <jankit@novell.com>
5908
5909         * loader.c (mono_get_method_from_token): Initialize 'method' field
5910         of all generic parameters before parsing the signature.  Remove
5911         code that "fixed"-up MVAR references.
5912
5913 2005-11-23  Ankit Jain  <jankit@novell.com>
5914
5915         * metadata.c (mono_metadata_has_generic_params):
5916         (mono_metadata_load_generic_param_constraints):
5917         (mono_metadata_load_generic_params): Move duplicate code ...
5918         (mono_metadata_get_generic_param_row): ... here. Returns the
5919         first row-id in GenericParam table for a given owner (token).
5920         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5921         prototype.
5922
5923 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5924             Ankit Jain  <jankit@novell.com>
5925
5926         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5927         comparing VARs too.
5928         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5929         type->data.generic_param only if the type is an MVAR.
5930         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5931         leak owner-less VARs and MVARs into managed space.
5932
5933 2005-11-21  Martin Baulig  <martin@ximian.com>
5934
5935         * class-internals.h
5936         (MonoMethod): Moved the `generic_container' here from
5937         `MonoMethodNormal' since we now also need it for
5938         `MonoMethodPInvoke';
5939         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5940         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5941         an union containing both `MonoMethodNormal' and
5942         `MonoMethodPInvoke'.
5943
5944         * loader.c
5945         (mono_get_method_from_token): Allow implementing generic methods
5946         as interncalls.
5947
5948         * threads.c
5949         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5950         icall.
5951
5952 2005-11-17  Dick Porter  <dick@ximian.com>
5953
5954         * icall.c: 
5955         * process.h: 
5956         * process.c: Split the Process Start_internal icall into
5957         ShellExecuteEx_internal and CreateProcess_internal, which are
5958         called depending on whether UseShellExecute is true.  Fixes bug
5959         76670.
5960
5961         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5962
5963 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5964
5965         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5966         'msize' parameters, use the information in 'mspec' instead.
5967         (emit_object_to_ptr_conv): Ditto.
5968
5969         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5970         fields out of order. Fixes #76733.
5971
5972 2005-11-17  Ankit Jain  <jankit@novell.com>
5973
5974         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5975
5976 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5977
5978         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5979           bug #76575.
5980
5981 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5982
5983         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5984         for types with non-auto layout. Fixes #76717.
5985
5986 2005-11-16  Ankit Jain  <jankit@novell.com>
5987
5988         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5989         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5990         if generic_context is null.
5991           (mono_metadata_generic_param_equal): param->owner can be null.
5992           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5993         null.
5994
5995 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5996
5997         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5998         the correct value.
5999
6000 2005-11-15  Martin Baulig  <martin@ximian.com>
6001
6002         * object.c (set_value): Use mono_class_from_mono_type() instead of
6003         the hack for generic instances; fixes #76136.
6004
6005 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
6006
6007         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
6008         fields.
6009
6010         * image.c (load_metadata_ptrs): Initialize the new fields.
6011
6012         * reflection.c (create_dynamic_mono_image): Ditto.
6013
6014         * reflection.c (build_compressed_metadata): Use the new fields.
6015
6016         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
6017         icall.
6018
6019         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
6020         icall.
6021         
6022 2005-11-15  Ankit Jain  <jankit@novell.com>
6023             Raja R Harinath  <harinath@gmail.com>
6024
6025         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
6026         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
6027         new per-generic_container cache if the cached MonoType's context matches
6028         the current context.
6029           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
6030         to the expected context.
6031           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
6032
6033 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6034
6035         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
6036         we changed the signature of an icall.
6037         * icall.c: Modify to mono_double_ParseImpl return true/false 
6038         depending on the success, instead of throwing the exception. This will
6039         help us in Double.TryParse methods.
6040         
6041 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
6042
6043         * marshal.c (emit_marshal_object): Throw an exception when
6044         marshalling 'object' instead of crashing. Fixes #76696.
6045
6046 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6047
6048         * class-internals.h: Add prototype for mono_type_get_full_name ().
6049
6050 2005-11-11  Dick Porter  <dick@ximian.com>
6051
6052         * threads.c (mono_thread_manage): Make sure the main thread has
6053         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
6054
6055 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6056
6057         * loader.c (mono_loader_set_error_type_load): Log a warning to the
6058         console about the missing type.
6059         (mono_loader_set_error_method_load): Ditto.
6060
6061 2005-11-09  Miguel de Icaza  <miguel@novell.com>
6062
6063         * mono-config.c (mono_get_config_dir): Set the system defaults if
6064         none is specified.
6065
6066         * assembly.c (mono_set_dirs): New API entry point to set the
6067         assembly and the config directory in one call
6068
6069 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
6070
6071         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
6072         the ftnptr was created from a delegate in a domain other than the
6073         current domain. Fixes #75377.
6074
6075         * exception.h exception.c: Add mono_get_exception_not_supported ().
6076
6077 2005-11-08  Martin Baulig  <martin@ximian.com>
6078
6079         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
6080
6081 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
6082
6083         * security-manager.h: Added definitions to deal with strongname key 
6084         pairs bigger (and smaller) than 1024 bits.
6085         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
6086         adjust wrt the public key length being used.
6087
6088 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6089
6090         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
6091           Windows build (r51396-51397).
6092
6093 2005-11-03  Martin Baulig  <martin@ximian.com>
6094
6095         * class.c (mono_class_setup_vtable_general): Also add generic
6096         methods to the vtable; fixes #76581.
6097
6098 2005-11-01  Miguel de Icaza  <miguel@novell.com>
6099
6100         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
6101         sure that we lookup GetString method from the System.Text.Encoding
6102         class, not the derived class or we get an empty method.
6103
6104         Fixed class #76612.
6105
6106 2005-10-25  Miguel de Icaza  <miguel@novell.com>
6107
6108         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
6109         if it has been previously set (embedders). 
6110
6111         Make mono_set_rootdir available also on Unix.
6112
6113 005-10-24  Robert Jordan  <robertj@gmx.net>
6114
6115         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
6116
6117 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
6118
6119         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
6120         only calls which are made to native code use this flag.
6121
6122         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
6123
6124 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
6125
6126         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
6127         Add support for FieldBuilders.
6128
6129 2005-10-29  Martin Baulig  <martin@ximian.com>
6130
6131         * mono-debug.c
6132         (mono_debug_using_mono_debugger): New public method; returns
6133         whether we're running inside the debugger.
6134
6135 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
6136
6137         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
6138         for Method/Constructor/FieldBuilders.
6139
6140 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
6141
6142         * reflection.c (module_add_cattrs): Save custom attributes for global methods
6143         and fields as well.
6144
6145 2005-10-26  Martin Baulig  <martin@ximian.com>
6146
6147         * mono-debug-debugger.c
6148         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
6149
6150 2005-10-24  Raja R Harinath  <harinath@gmail.com>
6151
6152         * icall.c (base64_to_byte_array): Don't pass an out-of-range
6153         integer to isspace.
6154
6155 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
6156
6157         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
6158         when passing valuetypes byref. Fixes #76502.
6159
6160 2005-10-19  Jackson Harper  <jackson@ximian.com>
6161
6162         * profiler.c: Don't put a . in front of types that are not in a
6163         namespace.
6164
6165 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
6166
6167         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
6168
6169 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
6170
6171         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
6172         #76436.
6173         (mono_marshal_get_ldflda_wrapper): Fix a warning.
6174
6175 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6176
6177         * assembly.c metadata-internals.h icall.c: Define an additional
6178         parameter for mono_assembly_name_parse_full, so we can avoid creating
6179         S.R.AssemblyName.Version when no version info wasn't passed.
6180         
6181 2005-10-09  Miguel de Icaza  <miguel@novell.com>
6182
6183         * class.c (mono_type_get_full_name): Reimplement method that was
6184         removed. 
6185
6186         * image.c: Some docs
6187
6188 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
6189
6190         * profiler.c (output_newobj_profile): Fix printing of Total memory
6191         on x86.
6192
6193 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6194
6195         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
6196
6197 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
6198
6199         * threads.c: remove debug output.
6200
6201 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6202
6203         * threads.c (mono_thread_manage): Fix crashes if more than 64
6204         threads need to be aborted. Hopefully fixes #75899.
6205
6206         * assembly.c (mono_stringify_assembly_name): New helper function.
6207
6208         * class.c: Use mono_stringify_assembly_name instead of the similar
6209         static function.
6210
6211         * assembly.h assembly.c: Add support for calling a postload search 
6212         hook if an assembly cannot be loaded.
6213
6214         * appdomain.c: Register new search hooks which call the AssemblyResolve
6215         events in AppDomain. Fixes #75231
6216
6217 2005-10-07  Martin Baulig  <martin@ximian.com>
6218
6219         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
6220         methods without debug info.
6221
6222 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
6223
6224         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
6225         wrappers.
6226
6227 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6228
6229         * file-io.c: now that we return symlinks, use lstat and, when the file
6230         is a symbolic link, stat, to get the file attributes. Also avoid the
6231         conversion to/from utf16/external.
6232
6233 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
6234
6235         * class.c (mono_class_layout_fields): Compute klass->has_references
6236         correctly if an embedded valuetype is not yet initialized. Fixes
6237         #76331.
6238
6239 2005-10-04  Martin Baulig  <martin@ximian.com>
6240
6241         * metadata.c
6242         (mono_metadata_load_generic_param_constraints): New public
6243         function; splitted the constraints loading out from
6244         mono_metadata_load_generic_params().
6245
6246         * class.c (mono_class_create_from_typedef): Call
6247         mono_metadata_load_generic_param_constraints() after setting up
6248         the type and creating our parent; fixes #75329.
6249
6250 2005-10-04  Martin Baulig  <martin@ximian.com>
6251
6252         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
6253         non-dynamic parent classes.
6254
6255 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6256
6257         * file-io.c : win32 build fix (ETXTBSY seems not found).
6258
6259 2005-10-04  Martin Baulig  <martin@ximian.com>
6260
6261         * reflection.c
6262         (mono_image_get_methodspec_token): Make the cache actually work;
6263         fixes #75974.
6264
6265 2005-10-04  Martin Baulig  <martin@ximian.com>
6266
6267         * class.c (mono_class_name_from_token): Removed the unneccessary
6268         `MonoGenericContext *' argument.
6269
6270 2005-10-04  Martin Baulig  <martin@ximian.com>
6271
6272         * loader.c
6273         (method_from_methodspec): Make the caching work again; fixes the
6274         performance regression from #76262.
6275
6276 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6277
6278         * file-io.c:
6279         * file-io.h:
6280         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
6281         GetFileSystemEntries that performs the same work but without going
6282         into io-layer, locking, etc.
6283
6284 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
6285
6286         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
6287         ThreadState_Stopped as well. Fixes #76047.
6288
6289 2005-09-29  Martin Baulig  <martin@ximian.com>
6290
6291         * class.c
6292         (inflate_generic_context): If the new context has a `gmethod', set
6293         its `container' that that gmethod's `container'.
6294
6295         * metadata.c
6296         (mono_metadata_parse_generic_param): Simplify things;
6297         `generic_container = generic_context->container;' is just fine.
6298
6299         * loader.c (method_from_methodspec): Code cleanups.
6300
6301 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
6302
6303         * decimal.c: fix warning (and let gcc generate correct
6304         code on ARM with optimizations).
6305
6306 2005-09-28  Martin Baulig  <martin@ximian.com>
6307
6308         * loader.c
6309         (method_from_memberref): Added `MonoGenericContext *class_context'
6310         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
6311         (method_from_methodspec): If we're a memberref, use the enclosing
6312         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
6313
6314 2005-09-28  Martin Baulig  <martin@ximian.com>
6315
6316         * object.c (mono_runtime_invoke_array): Added support for
6317         MONO_TYPE_GENERICINST; fixes #75917.
6318
6319 2005-09-27  Martin Baulig  <martin@ximian.com>
6320
6321         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6322         `k->byval_arg.type' to determine the actual type.
6323
6324         * loader.c (method_from_methodspec): Removed some hacks.
6325
6326 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6327
6328         * class-internals.h (mono_field_is_deleted): Do the test for
6329         rtspecialname before we check the actual name of the field. This
6330         prevents us from dereferencing a pointer into the string table,
6331         saving us from accessing a few pages
6332
6333         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6334         macros. This will allow a deadlock debugger to easily be plugged
6335         in.
6336
6337 2005-09-27  Martin Baulig  <martin@ximian.com>
6338
6339         * loader.c (method_from_methodspec): Create a "signature"
6340         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6341
6342 2005-09-27  Martin Baulig  <martin@ximian.com>
6343
6344         * class.c
6345         (inflate_generic_class): Correctly set the new context's
6346         container.
6347
6348         * loader.c
6349         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6350         instead of a `MonoGenericContext *'.
6351         (mono_method_signature_full): Take a `MonoGenericContainer *'
6352         instead of a `MonoGenericContext *'.
6353
6354         * metadata.c
6355         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6356         instead of a `MonoGenericContext *'.
6357         (mono_metadata_parse_method_signature_full): Likewise.
6358
6359 2005-09-26  Martin Baulig  <martin@ximian.com>
6360
6361         * class.c
6362         (mono_class_from_generic_parameter): Set `klass->generic_container'
6363         (mono_class_from_generic_parameter): Likewise.
6364         (mono_bounded_array_class_get): We inherit the generic container
6365         from the element class.
6366
6367         * loader.c
6368         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6369         argument rather than computing it here.
6370         (method_from_memberref): Correctly set the generic context before
6371         parsing the signature.  Fixes #75681.
6372
6373 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6374
6375         * object.c (mono_class_has_special_static_fields): Fix warnings.
6376
6377 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6378
6379         * assembly.c: Add parse_public_key function, to
6380         par the public keys. Also added mono_assembly_name_parse_full,
6381         to define it the parsed key should be freed or not.
6382         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6383         to parse a long format assembly name.
6384         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6385         private, since calling it to preserve the key requires
6386         freeing it manually.
6387         
6388 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6389
6390         * locales.c : removed HAVE_ICU part.
6391
6392 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6393
6394         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6395         field_is_special_static if the klass has no special static fields.
6396
6397         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6398         (MonoCachedClassInfo): Likewise.
6399
6400         * object.c (mono_class_has_special_static_fields): New helper function.
6401
6402 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6403
6404         * class.c (mono_class_create_from_typedef): Don't call 
6405         interfaces_from_typedef_full for enums.
6406         (mono_class_create_from_typedef): Compute the base types of enums directly
6407         without calling mono_class_setup_fields ().
6408         (mono_class_find_enum_basetype): New helper function.
6409
6410         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6411         one place inside the string heap.
6412         
6413 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6414
6415         * class.c: locking fixes, code cleanups, some docs added.
6416         Allocate some data structures in the image mempool.
6417
6418 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6419
6420         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6421         the example code.
6422         
6423 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6424
6425         * class-internals.h, class.c, reflection.c: reduce memory taken by
6426         MonoClass.
6427
6428 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6429
6430         * metadata.c, metadata.h, loader.h: documentation updates, code and
6431         API cleanups.
6432
6433 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6434
6435         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6436         the example code.
6437
6438         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6439         page faults caused by the runtime while reading metadata.
6440
6441 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6442
6443         * socket-io.c: the field names were changed 3 months ago and no one
6444         realized until bug #76077 got filed!
6445
6446 2005-09-20  Martin Baulig  <martin@ximian.com>
6447
6448         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6449
6450 2005-09-20  Martin Baulig  <martin@ximian.com>
6451
6452         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6453         write the rank into the class entry.
6454
6455 2005-09-20  Martin Baulig  <martin@ximian.com>
6456
6457         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6458
6459 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6460
6461         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6462
6463         * icall.c (custom_attrs_defined_internal): New icall.
6464
6465         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6466         function.
6467         (mono_custom_attrs_construct_by_type): New helper function.
6468
6469 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6470
6471         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6472         terminate the resulting string. Fixes #76123.
6473
6474 2005-09-16  Martin Baulig  <martin@ximian.com>
6475
6476         * mono-debug.c
6477         (mono_debug_add_method): Ignore inflated methods for the moment.
6478
6479 2005-09-14  Martin Baulig  <martin@ximian.com>
6480
6481         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6482
6483 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6484
6485         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6486         return a success/failure indication.
6487         (mono_metadata_interfaces_from_typedef_full): Ditto.
6488         (get_constraints): Ditto.
6489
6490 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6491
6492         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6493         
6494         * marshal.c (emit_marshal_array): Add support for returning string
6495         arrays from delegates. Fixes #76063.
6496
6497         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6498
6499 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6500
6501         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6502         icall.
6503
6504 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6505
6506         * reflection.c icall.c: Fix after mono_get_exception_type_load
6507         signature change.
6508
6509         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6510         (mono_assembly_load_reference): Use the new helper.
6511
6512         * class-internals.h (MonoLoaderError): New structure containing 
6513         information about type loading errors.
6514
6515         * class-internals.h loader.c: Add APIs to store per-thread loader
6516         error information.
6517
6518         * loader.c class.c: Set the loader error if needed.
6519
6520         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6521
6522 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6523
6524         * decimal.c: fixed to handle the broken ARM fp format.
6525
6526 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6527
6528         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6529         broken.
6530
6531 2005-09-06  Martin Baulig  <martin@ximian.com>
6532
6533         * domain.c (supported_runtimes): Added v2.0.50727.
6534
6535 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6536
6537         * culture-info.h: reduce the size of some structures.
6538
6539 2005-09-05  Martin Baulig  <martin@ximian.com>
6540
6541         Reflect latest API changes in the August CTP.
6542
6543         * icall.c
6544         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6545         ("MonoType.HasGenericArguments"): Removed.
6546         ("MonoMethod.BindGenericParameters"): Renamed to
6547         "MakeGenericMethod".
6548         ("MethodBuilder.BindGenericParameters"): Renamed to
6549         "MakeGenericMethod".    
6550
6551 2005-09-05  Martin Baulig  <martin@ximian.com>
6552
6553         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6554
6555 2005-09-05  Martin Baulig  <martin@ximian.com>
6556
6557         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6558
6559         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6560         generic_container is non-NULL.
6561
6562 2005-09-05  Martin Baulig  <martin@ximian.com>
6563
6564         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6565
6566         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6567
6568 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6569
6570         * reflection.c (encode_locals,
6571         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6572         for large generic types.
6573
6574 2005-09-05  Martin Baulig  <martin@ximian.com>
6575
6576         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6577
6578         * class.c (mono_dup_array_type): New public method.
6579         (mono_metadata_signature_deep_dup): New public method.
6580         (dup_type): Correctly duplicate array and function types.
6581
6582 2005-09-05  Martin Baulig  <martin@ximian.com>
6583
6584         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6585
6586         * reflection.c (get_default_param_value_blobs): Handle generic types
6587         and generic methods.
6588
6589 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6590
6591         * class.c: Fixed error reporting (method/class were inversed) for 
6592         inheritance demands.
6593         * security-manager.c|h: Added the AppDomain when calling the managed
6594         System.Security.SecurityManager.InheritanceDemand method.
6595
6596 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6597
6598         * reflection.c (encode_marshal_blob): 'marshaltype' and
6599         'marshaltyperef' are alternate sources for the custom marshaler
6600         name.
6601
6602 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6603
6604         * class.c: fix creation of array classes with rank == 1
6605         (patch by Ankit Jain <jankit@novell.com>).
6606
6607 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6608
6609         * object.c: fix check for creating the bound data for arrays vs
6610         szarrays.
6611
6612 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6613
6614         * object.c: configuration file name is now based on the executable name,
6615         not the image name. Fixes bug #75931.
6616
6617 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6618
6619         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6620         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6621
6622 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6623
6624         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6625
6626 2005-08-24  Ankit Jain  <jankit@novell.com>
6627             Raja R Harinath  <rharinath@novell.com>
6628
6629         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6630           called by it recursively.
6631           (mono_class_init): Remove special case in pending_init handling, since it's
6632           superseded by the fix to mono_class_from_typeref.
6633
6634 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6635
6636         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6637         BROKEN_THREAD_START stuff.
6638
6639 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6640
6641         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6642         trampoline.
6643
6644         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6645         
6646         * object.c (mono_delegate_ctor): Replace the original function address with
6647         a delegate trampoline.
6648
6649 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6650
6651         * icall.c: add boolean argument to base64_to_byte_array and 
6652         InternalFromBase64String to control whether a whitespace-only string
6653         is allowed (or should casue a FormatException to be thrown). We need
6654         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6655         to match the MS behaviour in both profiles.
6656         * appdomain.c: Bump corlib version.
6657
6658 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6659
6660         This patch implements a big portion of publisher policy
6661         support, used to bind assembly versions and redirect
6662         one assembly from version A to version B.
6663
6664         * assembly.c:
6665         New GSList loaded_assembly_bindings, for storing the cached
6666         assembly bindings.
6667         (assembly_binding_maps_name): New static function for checking if a 
6668         assembly binding information maps an assembly name.
6669         (mono_assembly_binding_info_free): New function for freeing
6670         assembly binding information resources.
6671         (get_publisher_policy_info): New static function for retrieving 
6672         assembly binding information from a MonoImage.
6673         (compare_versions): New static function for comparing an assembly
6674         binding information data and the version of an assembly name.
6675         (check_policy_versions): New static function for checking if an
6676         assembly binding info mapping an assembly name is valid for it.
6677         (mono_assembly_load_publisher_policy): New static function for
6678         loading the 'policy.major.minor.MyAssembly' image for an assembly
6679         with an assembly name 'aname'.
6680         (mono_assembly_bind_version): New static function for updating
6681         assembly redirection.
6682         (mono_assembly_apply_binding): New static function for applying
6683         assembly binding.
6684         (search_binding_loaded): New static function for searching 
6685         loaded assembly binding infos in the cache domain.
6686         (mono_assembly_load_full): Don't apply assembly binding for
6687         reflection only assemblies.
6688
6689         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6690         which contains information about assembly binding. Also
6691         declare signature for mono_config_parse_publisher_policy ()
6692         function, used to retrieve pub policy info.
6693         
6694         * mono-config.c:
6695         (publisher_policy_start): New static function used to parse publisher 
6696         policy config files.
6697         (publisher_policy_parser): New static MonoParseHandler containing 
6698         the functions used when parsing config files.
6699         (mono_config_parse_publisher_policy): New function for parsing
6700         publisher policy files.
6701         
6702 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6703
6704         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6705
6706         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6707
6708         * object.c (mono_get_addr_from_ftnptr): New helper function.
6709
6710         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6711
6712         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6713
6714 2005-08-19  Dick Porter  <dick@ximian.com>
6715
6716         * threads.c, threads.h, appdomain.c, appdomain.h,
6717         profiler-private.h, monitor.c, object.c, object-internals.h,
6718         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6719         store the thread ID, so it can hold a 64 bit value if needed.
6720
6721 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6722
6723         * reflection.c (mono_reflection_create_dynamic_method): Store the
6724         handle class into the method references as well so ldtoken works in
6725         dynamic methods.
6726
6727         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6728         types.
6729
6730 2005-08-19  Ankit Jain <jankit@novell.com>
6731
6732         Fix #75847.
6733         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6734           here rather than using the method signature of a arbitrary function
6735           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6736           two arguments.
6737           Hack done with Harinath.
6738
6739 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6740
6741         * threadpool.c: disable printing stack traces when we get a exception
6742         in a threadpool thread. I need to do more testing to figure out which
6743         cases actually print this. Fixes bug #75828.
6744
6745 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6746
6747         * icall.c: there might be ignored whitespace after the last '='. This
6748         fixes length computation and bug #75840.
6749
6750 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6751
6752         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6753         well. Fixes #75809.
6754
6755         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6756         #75784.
6757         
6758         * reflection.c (create_custom_attr_data): Ditto.
6759
6760 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6761
6762         * locales.c, culture-info.h : removed RegionLCIDMap.
6763         * culture-info-tables.h : regenerated.
6764
6765 2005-08-16  Martin Baulig  <martin@ximian.com>
6766
6767         * class.c (mono_type_get_name_recurse): Small fix.
6768
6769 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6770
6771         * locales.c : indentation fixie.
6772
6773 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6774
6775         * object-internals.h,
6776           locales.h,
6777           locales.c,
6778           culture-info.h,
6779           icall.c : added RegionInfo table support.
6780         * culture-info-table.h : regenerated for region support.
6781
6782 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6783
6784         * reflection.c (resolve_object): handle all kinds of MonoMethod
6785         including generic ones
6786
6787 2005-08-12  Ankit Jain <jankit@novell.com>
6788
6789         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6790           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6791
6792 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6793
6794         * process.c: Don't close a thread handle when it's NULL. This is a
6795         workaround for bug #75733.
6796
6797 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6798
6799         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6800
6801 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6802
6803         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6804
6805 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6806
6807         * threadpool.c: if a work item in the thread pool has a callback that
6808         catches a exception, don't propagate it after invoking the callback.
6809         Fixes bug #75336.
6810
6811 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6812
6813         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6814
6815         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6816
6817         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6818
6819         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6820
6821 2005-08-03  Ankit Jain  <jankit@novell.com>
6822
6823         Fix #75683.
6824         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6825           PInvoke calling convention is 0.
6826
6827 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6828
6829         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6830         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6831
6832 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6833
6834         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6835         to handle threads not started by the GC (patch by Michael Meeks
6836         <michael.meeks@novell.com>).
6837
6838 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6839
6840         * reflection.c: Make buffer used in emitting types larger for some
6841         big generic types (patch by Michal Moskal).
6842
6843 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6844
6845         * mono-debug.c: Fix some (not all) alignment problems.
6846
6847 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6848
6849         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6850         Invoke mono_image_load_from_data_full passing the refonly
6851         parameter.
6852
6853         * assembly.c
6854         (mono_assembly_open_from_bundle): Add the refonly argument, 
6855         in order to pass it to other methods it calls to.
6856         (do_mono_assembly_open): Add the refonly argument, in order 
6857         to pass it to other methods it calls to.
6858         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6859         the refonly parameter to it.
6860
6861         * image.c: Add loaded_images_refonly_hash and
6862         loaded_images_refonly_guid_hash to cache the reflection
6863         only loaded images.
6864         (mono_images_init): Initialize the hash tables used for
6865         caching the reflection only images.
6866         (load_modules): Invoke mono_image_open_full passing the refonly
6867         parameter to load the modules the correct way.
6868         (build_guid_table): Add the refonly argument, to re-build the 
6869         correct hash table.
6870         (do_mono_image_open): Added the refonly argument, in order to
6871         define it for the loaded image.
6872         (mono_image_loaded_full): New function, which receives an
6873         additional parameter to look for the image in the refonly or
6874         non-refonly section.
6875         (mono_image_loaded): Updated, using mono_image_loaded_full.
6876         (mono_image_loaded_by_guid_full): The same case that happens
6877         with mono_image_loaded_full.
6878         (mono_image_loaded_by_guid): Likewise.
6879         (register_image): Use the ref_only variable inside MonoImage
6880         to decide in which hash table store the current image.
6881         (mono_image_open_from_data_full): Rename
6882         mono_image_open_from_data to mono_image_open_from_data_full,
6883         adding the refonly argument, to define the ref_only variable 
6884         inside MonoImage.
6885         (mono_image_open_from_data): Return 
6886         mono_image_open_from_data_full.
6887         (mono_image_open_full): Rename mono_image_open to
6888         mono_image_open_full, receiving the new refonly argument,
6889         to pass it to inner methods.
6890         (mono_pe_file_open): Update this function, to open
6891         a MonoImage as a non-refonly image.
6892         (mono_image_close): Use the refonly variable inside
6893         MonoImage to remove the image from the correct caches.
6894
6895         * image.h: Add the signatures of mono_image_open_full,
6896         mono_image_open_from_data_full, mono_image_loaded_full,
6897         mono_image_loaded_by_guid_full.
6898
6899         * metadata-internals.h: Add the ref_only field to 
6900         MonoImage.
6901         
6902 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6903
6904         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6905         Fix the last behavior, which used to load the assemblies and
6906         extract MonoReflectionAssemblyName information, instead of
6907         extract it from the metadata tables. Needed for Reflection
6908         Only assemblies.
6909         
6910 2005-07-29  Martin Baulig  <martin@ximian.com>
6911
6912         * mono-debug-debugger.c
6913         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6914         not initialized.
6915
6916         * mono-debug.c
6917         (mono_debug_address_from_il_offset): Check whether we have
6918         debugging support before attempting to take the lock.
6919         (mono_debug_source_location_from_address): Likewise.
6920         (mono_debug_source_location_from_il_offset): Likewise.
6921         (mono_debug_il_offset_from_address): Likewise.
6922         (mono_debug_address_from_il_offset): Likewise.
6923
6924 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6925
6926         * class.c (mono_class_from_name_case): Add support for dynamic images.
6927         Fixes #75650.
6928
6929         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6930         for #75479.
6931
6932 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6933         
6934         * reflection.c (mono_method_get_object): Fix warning.
6935
6936 2005-07-28  Martin Baulig  <martin@ximian.com>
6937
6938         * mono-debug.c
6939         (mono_debug_add_wrapper): Also write the wrapper type.
6940
6941 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6942
6943         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6944         
6945         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6946         data indicates the class has none.
6947
6948 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6949
6950         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6951         loader lock with the debugger lock. Prevents deadlocks for beagle.
6952
6953         Beagle can now run on an smp box for a weekend without any
6954         issues. Woohoo!
6955
6956 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6957
6958         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6959         in a module. Fixes #75629.
6960
6961 2005-07-26  Martin Baulig  <martin@ximian.com>
6962
6963         * mono-debug.c (mono_debug_add_wrapper): New static method.
6964         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6965         interncall or a wrapper.
6966
6967         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6968         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6969         (MONO_DEBUGGER_VERSION): Bump to 51.
6970
6971         * mono-debug-debugger.c
6972         (mono_debugger_add_type): Removed this empty function.
6973         (mono_debugger_add_method): Likewise.
6974
6975 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6976
6977         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6978         before accessing method->slot.
6979
6980 2005-07-21  Jb Evain  <jbevain@gmail.com>
6981
6982         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6983         Fixes #75010.
6984
6985 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6986
6987         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6988         #75587.
6989
6990 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6991
6992         * image.h image.c: Add mono_image_get_guid () API function.
6993
6994 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6995
6996         There were issues when multiple threads tried to load
6997         assemblies. A deadlock was created between assemblies_mutex and
6998         mono_domain_assemblies_lock. This fixes the issue by making the
6999         assembly ref counting be lock free. See bug 75586.
7000         
7001         * image.c (mono_image_close): The add ref function here was using
7002         Interlocked operations while the unref was using a mutex and a
7003         --. I don't think this was ever a bug that would be exposed in a
7004         non-pendantic way (ie, by an embedder doing a ref on one thread
7005         and an unref on another), but for the sake of correctness, this is
7006         now Interlocked.
7007
7008         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
7009         (mono_assembly_load_reference): Call mono_assembly_addref rather
7010         than touching the refcount ourselves.
7011         (mono_assembly_close): Use InterlockedDecrement to unref the
7012         assembly. Don't acquire the lock unless it is actually needed.
7013
7014 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7015
7016         * class.c (mono_class_layout_fields): Fix calculation of has_references
7017         for generic types.
7018
7019 2005-07-12  Martin Baulig  <martin@ximian.com>
7020
7021         Applying a patch from Michal Moskal <malekith@nemerle.org>.
7022
7023         * metadata.c
7024         (mono_type_hash): Provide better hashing for generic instances.
7025         (mono_generic_inst_hash): Improve hashing.
7026         (mono_generic_class_hash): Likewise.
7027
7028         * reflection.c (mymono_metadata_type_hash): Improve hashing for
7029         generic instances.
7030
7031 2005-07-12  Martin Baulig  <martin@ximian.com>
7032
7033         * reflection.c (mono_reflection_create_runtime_class): Remove the
7034         hack for generic type definitions and non-`Run' assemblies.
7035         (mono_reflection_bind_generic_parameters): Also use
7036         `klass->wastypebuilder' to check for TypeBuilders.
7037
7038 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
7039
7040         * class.c (mono_class_layout_fields): Fix calculation of has_references
7041         for generic types.
7042
7043         * class.c (inflate_generic_class): Fix a leak.
7044         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
7045         for generic types.
7046
7047 2005-07-11  Martin Baulig  <martin@ximian.com>
7048
7049         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
7050         on error.
7051
7052 2005-07-11  Martin Baulig  <martin@ximian.com>
7053
7054         * loader.c (find_method): Also lookup in
7055         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
7056
7057 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7058
7059         * appdomain.c (mono_domain_unload): Don't free the error message
7060         before passing it to mono_get_exception_...
7061
7062         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
7063         
7064 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
7065
7066         * threads.c: try to better guess an available RT signal (bug #75387).
7067
7068 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7069
7070         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
7071         and CACHE_OBJECT.
7072
7073 2005-07-07  Martin Baulig  <martin@ximian.com>
7074
7075         * class.c (mono_type_get_name_full): Return NULL for
7076         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
7077         fixes #75408.
7078
7079 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7080
7081         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
7082         exit the appdomain as well being aborted.
7083
7084         * threadpool.c: Create all threadpool threads inside the root appdomain, and
7085         change back to the root domain after calling managed code. This enables
7086         appdomains using threadpools to be unloaded.
7087
7088 2005-07-07  Martin Baulig  <martin@ximian.com>
7089
7090         * class-internals.h
7091         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
7092         into `MonoDynamicGenericClass' since we only need it for dynamic
7093         types.
7094
7095         * reflection.c (mono_class_bind_generic_parameters): We don't need
7096         to compute the `parent' here.
7097
7098 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
7099
7100         * culture-info-table.h : regenerated.
7101
7102 2005-07-06  Martin Baulig  <martin@ximian.com>
7103
7104         * icall.c
7105         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
7106
7107         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
7108
7109 2005-07-06  Martin Baulig  <martin@ximian.com>
7110
7111         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
7112         we're doing a signature-only comparision; fixes #74945.
7113
7114 2005-07-06  Martin Baulig  <martin@ximian.com>
7115
7116         * class-internals.h (MonoGenericClass): Moved some things out into
7117         a new `MonoInflatedGenericClass' type.  
7118         (MonoInflatedGenericClass): New type; the `klass' of a
7119         `MonoGenericClass' is now computed lazyly in
7120         mono_get_inflated_generic_class().      
7121
7122         * class.c (mono_get_inflated_generic_class): New public function.
7123         (mono_class_inflate_generic_method): Removed the unused
7124         `MonoClass *' argument.
7125         (setup_generic_vtable): Don't call mono_get_inflated_method() on
7126         all the methods.
7127         (mono_class_create_generic): Make this static and merge it with
7128         mono_class_create_generic_2(); we're now called automatically from
7129         mono_get_inflated_generic_class().
7130
7131         * loader.c (mono_method_signature): Call
7132         mono_get_inflated_method() here.
7133
7134 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
7135
7136         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
7137         type of fields with RVA.
7138
7139         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
7140         for this pseudo class.
7141         (my_mono_class_from_generic_parameter): Likewise.
7142         (mono_class_init): Allow interfaces to have cctors.
7143
7144 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7145
7146         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
7147         lazily for AOT methods.
7148
7149 2005-07-05  Martin Baulig  <martin@ximian.com>
7150
7151         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
7152         returns FALSE for a successful match, not TRUE.
7153
7154 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7155
7156         * loader.c (mono_method_get_index): Optimize this a bit.
7157
7158 2005-07-04  Martin Baulig  <martin@ximian.com>
7159
7160         * class.c
7161         (class_compute_field_layout): Move the check for generic type
7162         definitions into mono_class_layout_fields().  Fixes #74684.
7163         (mono_class_from_generic_parameter): Correctly compute
7164         `klass->parent'; fixes #75457.
7165
7166         * reflection.c (register_assembly, register_module): Make sure
7167         `domain->rejobject_hash' is already created.
7168
7169 2005-07-02  Martin Baulig  <martin@ximian.com>
7170
7171         * class-internals.h
7172         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
7173         `MonoDynamicGenericClass'.      
7174
7175 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
7176
7177         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
7178         returned by a field getter is null, since null is a valid value.
7179
7180 2005-07-01  Martin Baulig  <martin@ximian.com>
7181
7182         * reflection.c (mono_reflection_generic_class_initialize): Update
7183         the `dgclass->fields [i].parent' to the correct class.
7184         (mono_image_get_fieldref_token): Use the declaring type, not the
7185         reflected type.
7186
7187 2005-07-01  Martin Baulig  <martin@ximian.com>
7188
7189         * loader.c (find_method): Also look in the interfaces; fixes #75429.
7190
7191 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
7192
7193         * threads.c (thread_cleanup): assert that thread != NULL
7194         (wait_for_tids_or_state_change): We were using the wrong variable
7195         when accessing wait->threads. `i' was always out of the bounds of
7196         the array.
7197
7198 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7199
7200         * loader.c: map user32 and kernel32 to libMonoSupportW
7201
7202 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
7203
7204         * appdomain.c (unload_thread_main): Mark this as WINAPI.
7205
7206 2005-06-28  Martin Baulig  <martin@ximian.com>
7207
7208         * loader.c (method_from_methodspec): Fix #75334.
7209
7210 2005-06-28  Martin Baulig  <martin@ximian.com>
7211
7212         Fix #74953 - Arrays now implement the generic IList<T> interface
7213         on the 2.0 platform.
7214
7215         * class-internals.h (MonoDefaults): Added `generic_array_class'.
7216
7217         * reflection.c (mono_class_bind_generic_parameters): New public
7218         function; similar to mono_reflection_bind_generic_parameters(),
7219         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
7220
7221         * domain.c (mono_init_internal): Try to initialize.
7222         `mono_defaults.generic_array_class' here; this'll only succeed if
7223         we're using the 2.0 corlib.
7224
7225         * icall.c
7226         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
7227         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
7228         (mono_lookup_internal_call): Added support for nested classes.
7229
7230         * loader.c
7231         (mono_get_method_from_token): Set `result->signature->pinvoke' if
7232         we're an interncall and have generic arguments.
7233
7234         * class.c
7235         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
7236         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
7237         instance of System.Array.InternalArray<T> for arrays, so they
7238         implement the generic IList<T> interface.
7239
7240 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
7241
7242         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
7243         (chastamar@yahoo.com). Fixes #75374.    
7244
7245 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
7246
7247         * culture-info-table.h: regenerated.
7248
7249 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7250
7251         * icall.c: handle spaces correctly for base64 strings.
7252
7253 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
7254
7255         * *.c: Kill some warnings.
7256
7257 2005-06-23  Duncan Mak  <duncan@novell.com>
7258
7259         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
7260         that this builds on Solaris 10 (x86).
7261
7262 2005-06-23  Martin Baulig  <martin@ximian.com>
7263
7264         * class.c
7265         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
7266         generic type definitions.
7267
7268 2005-06-23  Martin Baulig  <martin@ximian.com>
7269
7270         Fix #75331.
7271
7272         * metadata.c (mono_class_get_overrides): Renamed to
7273         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
7274         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
7275         pass it to mono_get_method_full().
7276
7277 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
7278
7279         * reflection.c (mono_reflection_create_runtime_class): take the
7280         mono_domain_lock in this method. Prevents deadlocks
7281
7282 2005-06-22  Martin Baulig  <martin@ximian.com>
7283
7284         * loader.c (method_from_methodspec): Fix #75330.
7285
7286 2005-06-22  Martin Baulig  <martin@ximian.com>
7287
7288         * reflection.c (type_get_qualified_name): Use
7289         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
7290         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
7291         argument; use it if we don't have an assembly name.
7292
7293 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
7294
7295         * object.c: In mono_message_init, set "copy out" flag for in
7296         parameters with the [Out] flag.
7297
7298 2005-06-21  Martin Baulig  <martin@ximian.com>
7299
7300         * class.c
7301         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
7302         and MONO_TYPE_PTR.
7303
7304 2005-06-21  Martin Baulig  <martin@ximian.com>
7305
7306         * class.c (mono_class_init): Don't initialize `class->fields' for
7307         generic instances since they're initialized again in
7308         compute_field_layout(). 
7309         (compute_field_layout): Set the field's `generic_info' here; fix
7310         #75320. 
7311
7312 2005-06-21  Martin Baulig  <martin@ximian.com>
7313
7314         * class-internals.h
7315         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7316
7317         * metadata.c (mono_metadata_generic_method_equal): Also
7318         distinguish the `generic_class'; fixes #75334.
7319
7320 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7321
7322         * domain.c:
7323         * appdomain.c:
7324         * domain-internals.h:
7325         * reflection.c: 'domain_assemblies' field is now protected by its own
7326         lock. Don't call into managed code to run the AssemblyLoad event if we
7327         now there are no registered delegates for it.
7328
7329 2005-06-20  Martin Baulig  <martin@ximian.com>
7330
7331         * class.c (mono_class_is_assignable_from): Use a custom version of
7332         mono_class_has_parent() to make things work for generic instances;
7333         fix #75300.
7334
7335 2005-06-20  Martin Baulig  <martin@ximian.com>
7336
7337         * loader.c (method_from_methodspec): Apply a patch from
7338         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7339
7340 2005-06-20  Martin Baulig  <martin@ximian.com>
7341
7342         * class.c (mono_class_init): Reverted Zoltan's last change; it
7343         breaks generics.
7344
7345 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7346
7347         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7348
7349 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7350
7351         * socket-io.c: fix the index in the socket array for writable/error
7352         sockets. Fixes bug #75306.
7353
7354 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7355
7356         * class.c (mono_class_init): Allow interfaces to have static ctors.
7357
7358 2005-06-17  Martin Baulig  <martin@ximian.com>
7359
7360         * loader.c (method_from_methodspec): Use `context->container' when
7361         parsing the `gmethod->inst'.
7362
7363 2005-06-17  Martin Baulig  <martin@ximian.com>
7364
7365         * class.c (mono_type_get_name_recurse): Don't add the assembly
7366         name for type arguments.
7367
7368 2005-06-15  Martin Baulig  <martin@ximian.com>
7369
7370         * reflection.c (mono_image_get_inflated_method_token): Encode
7371         correct klass; fixes #75260.
7372
7373 2005-06-13 Michal Moskal <malekith@nemerle.org>
7374
7375         * icall.c: Make GetCorrespondingMethod/Constructor take
7376         MonoReflectionMethod method not MonoMethod. Removed
7377         MonoType.GetCorrespondingField, and make
7378         MonoGenericType.GetCorrespondingField take name not
7379         MonoClassField.
7380
7381 2005-06-13  Michal Moskal <malekith@nemerle.org>
7382
7383         * reflection.c (field_encode_signature, encode_locals):
7384          Make sizes of buffers for types larger (for big generic types).
7385          (create_generic_typespec,
7386          mono_reflection_sighelper_get_signature_local,
7387          mono_reflection_sighelper_get_signature_field):
7388          Add asserts for too small buffers.
7389
7390 2005-06-15  Martin Baulig  <martin@ximian.com>
7391
7392         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7393         if our parent is not a dynamic type.
7394
7395 2005-06-15  Martin Baulig  <martin@ximian.com>
7396
7397         * class-internals.h (MonoTypeNameFormat): New enum.
7398
7399         * class.c
7400         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7401         (mono_type_get_full_name): Removed.
7402         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7403         argument instead of the boolean's.
7404
7405         * icall.c (ves_icall_System_MonoType_getFullName):
7406         Added `gboolean assembly_qualified'.    
7407
7408         * reflection.h
7409         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7410
7411         * reflection.c (mono_reflection_parse_type): Parse the new type
7412         name format.
7413
7414 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7415
7416         * icall.c: no need to convert from utf16 to utf8 and then back again
7417         after the call to GetLogicalDrives.
7418
7419 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7420
7421         * icall.c: frombase64. Fix problems exposed by new tests.
7422
7423 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7424
7425         * icall.c: added internal calls for converting char [] and strings in
7426         base64 into byte [].
7427
7428 2005-06-10  Martin Baulig  <martin@ximian.com>
7429
7430         * class.c (mono_class_create_generic_2): Read the nested classes
7431         from the metadata rather than from `gklass->nested_classes' since
7432         `gklass' might not be initialized yet.
7433
7434 2005-06-09  Duncan Mak  <duncan@novell.com>
7435
7436         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7437         all public headers. Fixes #74919.
7438
7439 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7440
7441         * domain.c: The key for proxy_vtable_hash is now a pointer
7442         array. Added new GHashFunc and GCompareFunc functions for this.
7443
7444         * class.h: The list of interfaces in MonoRemoteClass is known in
7445         advance and can't grow (we create a new MonoRemoteClass if needed),
7446         so now the interface array can be allocated together with
7447         MonoRemoteClass.
7448         
7449         * object.c: Added a new method create_remote_class_key.
7450         Fixed mono_remote_class so it does not depend on
7451         mono_upgrade_remote_class.
7452         Removed extend_interface_array.
7453         Added new method clone_remote_class(), which makes a copy of a remote
7454         class and adds a new interface or class to it.
7455         mono_upgrade_remote_class() now creates a new remote class (or gets
7456         it from the cache) if an vtable upgrade is needed. In this way
7457         we make sure that other objects sharing the same remote class
7458         don't get the new vtable with unwanted interfaces.
7459         
7460         * object-internals.h:
7461         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7462         
7463         * marshal.c: Track changes in mono_upgrade_remote_class().
7464
7465 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7466         * icall.c: Add runtime methods for obtaining members of inflated
7467         class, which were created from supplied non-inflated members. It
7468         is used in internal Get{Method,Constructor,Field} methods in
7469         System.Type
7470
7471 2005-06-09  Martin Baulig  <martin@ximian.com>
7472
7473         * reflection.c
7474         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7475
7476 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7477         * reflection.c (mono_image_basic_init): Define
7478         Version in MonoDynamicAssembly. 
7479         
7480 2005-06-08  Martin Baulig  <martin@ximian.com>
7481
7482         Fix #75136.
7483
7484         * loader.c
7485         (mono_method_signature_full): New public method; takes a
7486         `MonoGenericContext *'.
7487         (find_method): Use mono_method_signature_full() and pass the
7488         klass'es context to it.
7489
7490         * class.c (mono_class_is_inflated_method): Use
7491         mono_method_signature_full() and pass the context to it.
7492
7493 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7494
7495         * object.c: add proper locking in mono_remote_class_vtable(),
7496         fixes possible memory corruption.
7497
7498 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7499
7500         * marshal.c (mono_remoting_marshal_init): set
7501         initialized after initialization.
7502
7503 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7504
7505         * locales.c : hush.
7506
7507 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7508
7509         * object.c (extend_interface_array): fix really silly
7510         memory corrupting / comparison bug.
7511
7512 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7513
7514         * reflection.c: Functions added to support the creation
7515         of CustomAttributeData, which includes Attribute data
7516         used by ReflectionOnly methods.
7517
7518         * reflection.h:  mono_reflection_get_custom_attrs_data and
7519          mono_custom_attrs_data_construct added (functions exposed).
7520
7521          * icall.c: Added mono_reflection_get_custom_attrs_data
7522          as icall.
7523         
7524 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7525
7526         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7527         lupus's request.
7528
7529 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7530
7531         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7532
7533         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7534         dynamic DllImportAttribute.
7535
7536         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7537         dynamic DllImportAttribute.
7538
7539         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7540         Fixes #75162.
7541
7542 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7543
7544         * threads.c: avoid segfault when an unstarted thread is aborted.
7545
7546 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7547
7548         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7549         Returns the name and version of the runtime for reporting.
7550
7551 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7552
7553         * appdomain.c: bump corlib version.
7554         * object-internals.h: new field in MonoReflectionAssembly.
7555
7556 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7557
7558         * object-internals.h: Carlos forgot to add this field.
7559
7560 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7561
7562         * icall.c: Added create_version to create instances
7563         of Version of MonoReflectionAssemblyName. This change helps
7564         the AssemblyName tests to keep running fine.
7565         
7566 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7567   
7568         * object.c (mono_method_return_message_restore): A somehow less
7569         intrusive fix for #75138.
7570
7571 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7572
7573         * object.c (mono_method_return_message_restore): Fix computation
7574         of expected number of out args.
7575
7576 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7577
7578         * reflection.c (mono_image_get_method_info): Fix the case when the
7579         charset is empty.
7580
7581 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7582
7583         * object.c: Added missing null check in
7584           mono_method_return_message_restore.
7585
7586 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7587
7588         * reflection.c (mono_image_get_method_info): Handle the case when
7589         dllentry is empty.
7590
7591 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7592
7593         * object.c: When creating the vtable for a proxy, take into account
7594         all inherited interfaces, not only the ones registered in
7595         iclass->interfaces. This fixs bug #74996.
7596         Also, in mono_method_return_message_restore, verify that the array
7597         of out args has the expected lengh.
7598
7599 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7600
7601         * socket-io.c: update the timeout in Poll when the call is interrupte.
7602
7603 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7604
7605         * socket-io.c: support abort/suspend in Select_internal after last
7606         change.
7607
7608 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7609
7610         * threadpool.c: remove warning.
7611
7612 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7613
7614         * icall.c:
7615         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7616         removing the 1024 limit from select(). Runtime part of the fix for
7617         bug #71203.
7618
7619 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7620
7621         * socket-io.c: when resolving the addresses for the same
7622         host returned by gethostname(), get the local IPs from the interface
7623         list. Loopback addresses are discarded if the are interfaces up with
7624         non-loopback ones. Fixes bug #63265.
7625
7626 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7627
7628         * appdomain.c, verify.c, object-internals.h, reflection.c:
7629         bumped corlib number to 36, and added new extra_flags field
7630         to ReflectionMethodBuilder and friends.  Fixes #75060.
7631
7632 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7633
7634         * gc.c: register a new weak link only if the object is non-null
7635         (fixes bug#75047).
7636
7637 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7638
7639         * culture-info.h : short time pattern too.
7640
7641 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7642
7643         * culture-info.h : expand long time pattern string length.
7644
7645 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7646
7647         * culture-info-table.h : update (more French date format; #72788).
7648
7649 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7650
7651         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7652         the method is static. Fixes #75029.
7653
7654 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7655
7656         * reflection.c: Update the table_idx field of method builders after
7657         saving the module, since it can change. This is a workaround for
7658         bug #74914. 
7659
7660 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7661
7662         * culture-info-table.h : update (additional French date format).
7663
7664 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7665
7666         * icall.c (ves_icall_type_Equals): Revert last change.
7667         
7668         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7669
7670         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7671
7672 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7673
7674         * class-internals.h: Added executioncontext_class field to 
7675         MonoDefaults structure.
7676         * domain.c: Cache System.Threading.ExecutionContext class in 
7677         mono_defaults.
7678         * object.c: Capture the ExecutionContext for asynchroneous calls in
7679          mono_async_result_new.
7680         * object-internals.h: Added execution_context and original_context 
7681         fields to MonoAsyncResult. Added execution_context to MonoThread.
7682         * security-manager.c|.h: Added mono_get_context_capture_method to 
7683         return the capture method (if required by the security manager or by
7684         the framework version used).
7685         * threadpool.c: Apply capture (if present) ExecutionContext in 
7686         mono_async_invoke and revert to original context after it completes.
7687
7688 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7689
7690         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7691
7692 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7693
7694         * culture-info-table.h : zh-CHT related workaround.
7695
7696 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7697
7698         * marshal.c (emit_marshal_custom): Add some error checking and call the
7699         methods in the ICustomMarshaler interface. Fixes #74875.
7700         
7701         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7702         native->managed wrappers.
7703
7704 2005-05-12  Martin Baulig  <martin@ximian.com>
7705
7706         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7707         here and use the loader lock.
7708
7709         * mono-debug.c: Properly lock when the debugger is not attached.
7710         (mono_debug_init): Release the initial lock if we're not running
7711         in the debugger.
7712
7713 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7714
7715         * marshal.c (emit_marshal_custom): Pass through NULL values without
7716         calling the custom marshalling routines.
7717
7718         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7719         conversion in structures. Fixes #74882.
7720
7721 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7722
7723         * culture-info-table.h : zh-* cultures were missing.
7724
7725 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7726
7727         * threads.c: Added a new event background_change_event which is signaled
7728         when a thread changes its background mode.
7729         Moved here several checks previously done in managed code. The checks
7730         require the thread lock, and using the thread lock in managed code
7731         can result in deadlocks.
7732         Merged Start_internal and Thread_internal into a single method. Now 
7733         Thread_internal does all work of creating and starting a thread.
7734         Added icalls for setting and getting the state of the object. Moved from
7735         managed code to avoid locking there.
7736         Added wait_for_tids_or_state_change() which is called instad of
7737         wait_for_tids when waiting for non-backround threads to end. This method
7738         will return if one of the threads ends or the background_change_event
7739         is signaled.
7740         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7741         the background mode. This method signals the background_change_event
7742         event.
7743         * icall.c:
7744         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7745         removed Start_internal.
7746         
7747 2005-05-11  Martin Baulig  <martin@ximian.com>
7748
7749         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7750         to order of some fields to get proper alignment on 64-bit machines.
7751
7752 2005-05-11  Martin Baulig  <martin@ximian.com>
7753
7754         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7755         changes as they're broken and completely fuck up the debugger.
7756
7757         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7758
7759 2005-05-10  Martin Baulig  <martin@ximian.com>
7760
7761         * reflection.c (mono_reflection_generic_class_initialize): Don't
7762         call mono_class_setup_parent() here.
7763
7764 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7765
7766         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7767         send/receive timeout use an integer in milliseconds. We were using a
7768         struct timeval.
7769
7770 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7771
7772         * locales.c:
7773         (internal_get_cultures): reserve the first slot of the array for the
7774         InvariantCulture, which will be filled in managed code.
7775
7776 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7777
7778         * reflection.c (mono_image_fill_module_table): Initialize the
7779         GENERATION field as well.
7780
7781 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7782
7783         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7784         Monitor.Enter on the object.
7785
7786 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7787
7788         * threads.c: Enable the wait for running threads when exiting.
7789         * icall.c: Suspend all threads before exiting.
7790
7791 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7792
7793         * assembly.c (mono_assembly_load_reference): Fix warning.
7794
7795 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7796
7797         * threadpool.c: changed the default number of threads per cpu. From now
7798         on, the default will be 20 + (5 * number of cpus) instead of 50.
7799
7800 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7801
7802         * loader.c (mono_method_get_signature_full): Add locking here.
7803
7804 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7805
7806         * appdomain.c: Moved methods for parsing and freeing assembly
7807         names to assembly.c.
7808         * assembly.c, domain-internals.h: Created public methods for parsing
7809         assembly names. Fixed mono_assembly_load_with_partial_name:
7810         it now finds the best match, taking into account the version,
7811         token and culture specified in the partial name. Also return
7812         the latest version if no version information is specified.
7813
7814 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7815
7816         * threadpool.c: replace check for SocketAsyncCall class.
7817
7818 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7819
7820         * threadpool-internals.h:
7821         * Makefile.am: added threadpool-internals.h
7822
7823         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7824         that happen in threadpool threads (tested on MS).
7825         (mono_thread_pool_remove_socket): new function that dispatch any pending
7826         AIO call on a socket that is closing. By now only epoll really needs it,
7827         as select/poll wake up when the socket closes.
7828
7829
7830         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7831
7832 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7833
7834         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7835
7836 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7837
7838         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7839
7840 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7841
7842         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7843         has an abort request, convert it into a suspend request.
7844
7845 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7846
7847         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7848         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7849         is not supported yet.
7850
7851 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7852
7853         * image.c: register assemblies loaded from data (bundles) in the loaded
7854         assemblies hash. Fixes bug #74772.
7855
7856 2005-04-29  Martin Baulig  <martin@ximian.com>
7857
7858         * class.c (mono_type_get_name_recurse): Update to the new naming
7859         schema from the latest .NET 2.x beta2.
7860         (mono_class_setup_vtable_general): If we're a generic instance,
7861         copy the vtable from our generic type definition and inflate all
7862         the methods in it.
7863
7864         * loader.c (find_method): Update to the new naming schema from the
7865         latest .NET 2.x beta2.
7866
7867 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7868
7869         * class.c (mono_class_init): Add a mono_loader_unlock to the
7870         #74734 fix.
7871
7872 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7873
7874         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7875         suspend_all_other_threads () call for the time being, since it can hang.
7876
7877         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7878         the background threads to exit, since it can also hang.
7879
7880         * class.c (mono_class_init): Applied patch from Ankit Jain 
7881         (radical@gmail.com). Avoid pending init errors when a field refers
7882         to a nested class using a typeref. Fixes #74734.
7883
7884         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7885         this for dynamic modules.
7886
7887 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7888
7889         * threads.c: don't wait for threads that are in the process of aborting
7890         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7891         and waiting for background threads to finish. This makes xsp and
7892         mod-mono-server exit without random length delays and/or hangs.
7893
7894 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7895
7896         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7897
7898 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7899
7900         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7901         dynamic types to prevent infinite loops. Fixes #74727.
7902
7903         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7904         ..._is_assignable_to.
7905
7906 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7907
7908         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7909
7910 2005-04-25  Martin Baulig  <martin@ximian.com>
7911
7912         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7913
7914         * domain.c
7915         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7916
7917         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7918
7919         * reflection.c (build_compressed_metadata): Set metadata header
7920         version to 2.0.
7921
7922 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7923
7924         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7925         number into an integral and a decimal part. Fixes #70473.
7926
7927         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7928
7929 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7930
7931         * culture-info-table.h : reflected the latest locale-builder output.
7932
7933 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7934
7935         * threadpool.c: check for SuspendRequested too when deciding if
7936         mono_thread_interruption_checkpoint should be called.
7937
7938 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7939
7940         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7941         * threads.c: remove interruption_mutex and use Interlocked instead. When
7942         suspending all the threads, wait for all the suspended events at once.
7943         If we're shutting down and get an APC that is going to be queued,
7944         call mono_thread_execute_interruption immediately, as the thread might
7945         be sleeping on a pthread condition or mutex.
7946
7947         * icall.c: call mono_runtime_set_shutting_down before suspending the
7948         threads.
7949
7950         Fixes bug #74693. And now xsp is happier when exiting.
7951
7952 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7953
7954         * loader.c (mono_stack_walk): Fix #74690.
7955
7956 2005-04-22  Martin Baulig  <martin@ximian.com>
7957
7958         * mono-debug.h (MonoDebugMethodJitInfo): Added
7959         `MonoDebugMethodJitInfo *jit'.
7960
7961         * mono-debug.c (mono_debug_read_method): Cache the
7962         MonoDebugMethodJitInfo in `address->jit'.
7963         (mono_debug_free_method_jit_info): New public method.
7964
7965 2005-04-22  Martin Baulig  <martin@ximian.com>
7966
7967         * class.c (mono_class_is_assignable_from): Disallow
7968         type parameter -> interface.
7969
7970 2005-04-21  Dick Porter  <dick@ximian.com>
7971
7972         * threads.c (mono_thread_create): Turn an assertion into an error.
7973
7974 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7975
7976         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7977         
7978         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7979         Fix some gcc 4.0 warnings.
7980
7981 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7982
7983         * file-io.c: fix alt dir separator char on unix systems
7984         and cleanup (fixes bug #71214).
7985
7986 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7987
7988         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7989         a call to a remote domain, since the method may be an
7990         interface method in the client domain. This fixes bug #74192.
7991
7992 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7993
7994         * threadpool.c: recv/send are now performed before going back to managed
7995         code to save one transition.
7996
7997 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7998
7999         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
8000
8001         * metadata/threadpool.c: removed hack to workaround the bug above.
8002
8003         Fixes bug #74618.
8004
8005 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
8006
8007         * reflection.c reflection.h: Fix handling of parameter defaults in
8008         dynamic methods. Also fixes handling of parameter attributes.
8009         Fixes #74609.
8010
8011         * mono-debug.c (mono_debug_close_image): Fix warning.
8012
8013 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8014
8015         * socket-io.h: replaced old unused field with new 'blocking'.
8016         * threadpool.c: restore socket blocking state on windows(tm).
8017
8018 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
8019
8020         * icall.c: don't return the codebase in the AssemblyName[] returned by
8021         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
8022         * object-internals.h: Removed FIXME (fields were presents) and fixed
8023         versioncompat declaration.
8024
8025 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8026
8027         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
8028         not closed, so don't cleanup when it happens.
8029
8030 2005-04-13  Chris Toshok  <toshok@ximian.com>
8031
8032         * mono-debug-debugger.h: change prototype for
8033         mono_debugger_lookup_type.
8034
8035         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
8036         this function, although it should probably be named
8037         mono_debugger_init_type.
8038
8039 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8040
8041         * threadpool.c: fix non-AIO case.
8042
8043 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
8044
8045         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
8046         the built-in profiler to measure just JIT compilation times.
8047
8048 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8049
8050         * threadpool.c: the epollfd might be closed by another thread at
8051         any time, so ignore EBADF at treat it as a "we're closing" sign.
8052
8053 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8054
8055         * threadpool.c: release the semaphores with a count equals to the number
8056         of working threads in both IO and regular pools. Fixed typo that messed
8057         up the count of IO pool threads. Don't initialize the pipe handles if
8058         we're using epoll.
8059
8060 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8061
8062         * threadpool.c: some systems don't like a NULL when deleting the socket
8063         from epoll.
8064
8065 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8066
8067         * threadpool.c: fix semaphore allocation.
8068
8069 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8070
8071         * threadpool.c: added epoll() based implementation for asynchronous IO
8072         that is used instead of the default poll() when available.
8073         It can be disabled by setting MONO_DISABLE_AIO.
8074
8075 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8076
8077         * threadpool.c: windows needs 'closesocket' and instead of returning
8078         0 when the stream is closed while in select, it returns -1. Fixes bug
8079         #74573.
8080
8081 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
8082
8083         * class.c (class_compute_field_layout): Fix the regression caused by
8084         the previous try.
8085
8086 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8087
8088         * threadpool.c: separate pool for socket async. IO.
8089         * threadpool.h: mono_max_worker_threads is not a global any more.
8090
8091 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
8092
8093         * class.c (class_compute_field_layout): Fix #74549.
8094
8095 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8096
8097         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
8098         use 2 connected sockets instead.
8099
8100 2005-04-08  Miguel de Icaza  <miguel@novell.com>
8101
8102         * mono-config.c: Add new entry point for mkbundle
8103         mono_config_parse_memory. 
8104
8105 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8106
8107         * threadpool.c: removed another unused function.
8108
8109 2005-04-08  Ankit Jain  <radical@corewars.org>
8110
8111         * reflection.c (get_default_param_value_blobs): Add 'types'
8112         parameter to get the types encoded in the constant table.
8113         (mono_param_get_objects): Use the type from the constant table,
8114         not the type of the parameter, when creating default values.
8115         Handle null default values correctly.
8116
8117 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8118
8119         * file-io.c:
8120         * file-io.h:
8121         * threadpool.c:
8122         * threadpool.h:
8123         * icall.c:
8124         * socket-io.c: removed dead code for async IO.
8125
8126 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8127
8128         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
8129
8130         * threadpool.c: intercept socket async. calls and pass them to a thread
8131         that is polling and dispatching the job items to the threadpool as
8132         socket become ready. Fixes bugs #71217, #71933.
8133
8134         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
8135         between char and short/ushort arrays.
8136
8137         * socket-io.c: remove dead code.
8138
8139 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8140
8141         * locales.c,
8142           icall.c : removed InternalToUpper_Comp() and
8143           InternalToLower_Comp().
8144
8145 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8146
8147         * char-conversions.h : The tables were incorrectly generated. Should
8148           be generated against invariant culture.
8149
8150 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
8151
8152         * object.c (mono_runtime_invoke_array): Fix return value when 
8153         passing pre-created valuetype objects to ctors.
8154
8155         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
8156         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
8157         Fixes #74338.
8158
8159 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
8160
8161         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
8162         only used with --security and hides the wrong corlib version error.
8163
8164 2005-03-30  Joshua Tauberer  <tauberer@for.net>
8165
8166         * class.c: Changed mono_class_name_from_token so that types
8167         outside of a namespace don't have an initial period.  Improved
8168         the g_warning message used in _mono_class_get when loading
8169         fails.
8170         * assembly.c: In mono_assembly_load_reference, when an assembly
8171         can't be found, "No such file or directory" is misleading and
8172         unhelpful because a few paths were checked for the presence of
8173         the assembly.  When that happens (ENOENT), display a nicer
8174         message indicating the directories that were searched.  In all
8175         cases, the warning is made easier to read for non-hackers.
8176
8177 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
8178
8179         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
8180         project/solution.
8181         * appdomain.h|domain.c: Removed inline from functions.
8182         * appdomain.c: Reduced warnings when compiling on windows.
8183         * icall.c: Fixed output_debug declaration to gunichar2*.
8184         * mono-config.c: Reduced warnings when compiling on windows.
8185         * rand.c: Added missing "windows.h". Added missing return value.
8186         * rawbuffer.c: Added missing winsock2.h for windows.
8187         * sysmath.h: Added mono-compiler.h header to allow/ease 
8188         compilation with non-GCC compilers.
8189         * threads.c: Fixed declarations to compile with VS.NET C compiler.
8190         Removed cast warnings.
8191
8192         Adapted from the work of J Lothian (for VC6).
8193
8194 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
8195
8196         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
8197         from default_path.
8198
8199 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
8200
8201         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
8202         the 2.0 profile.
8203
8204 2005-03-27  Raja R Harinath  <harinath@gmail.com>
8205
8206         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
8207         has to be in $(exec_prefix).  $(prefix) is for arch-independent
8208         stuff, and it would probably use $(prefix)/share rather than
8209         $(prefix)/lib.
8210
8211 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8212
8213         * console-io.c: added 2 includes that might be missing.
8214
8215 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
8216
8217         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
8218         profile.
8219
8220         * reflection.c (create_custom_attr): Allocate the params array using
8221         alloca so it gets GC tracking.
8222
8223 2005-03-23  Chris Toshok  <toshok@ximian.com>
8224
8225         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
8226         out some spew.
8227
8228 2005-03-24  Raja R Harinath  <rharinath@novell.com>
8229
8230         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
8231         changes to pick up any changes in prefix, etc.
8232
8233 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8234
8235         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
8236         
8237         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
8238         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
8239
8240 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8241
8242         * class-internals.h object-internals.h class.c reflection.c: Extend the
8243         mono_lookup_dynamic_token () function to return the class of the
8244         token as well. 
8245
8246         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
8247         well. Fixes #73848.
8248
8249 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
8250
8251         * security-manager.c: Skip inheritance checks for intra-corlib
8252         class inheritance and method overrides. This skips a lot of checks
8253         and (anyway) permissions cannot work until corlib is loaded.
8254
8255 2005-03-23  Martin Baulig  <martin@ximian.com>
8256
8257         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
8258         MONO_TYPE_GENERICINST.  
8259
8260 2005-03-23  Martin Baulig  <martin@ximian.com>
8261
8262         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
8263
8264 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8265
8266         * class.c: added locking comments to some functions.
8267         Cache the interface offsets arrays (saves about 20 KB
8268         of runtime memory in a typical app).
8269         Reduce the time overhead in mono_class_setup_supertypes ().
8270
8271 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
8272
8273         * icall.c: speedup and fix leaks in GetMethodsByName and
8274         GetPropertiesByName.
8275
8276 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8277
8278         * reflection.c: some locking fixes.
8279
8280 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8281
8282         * metadata.c: added missing break in case statement.
8283
8284 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
8285
8286         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8287         typedbyref return values. Fixes #73941.
8288
8289 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
8290
8291         * security-manager.c|h: Added demandunmanaged method and 
8292         suppressunmanagedcodesecurity class to MonoSecurityManager.
8293         Renamed aptc class to allowpartiallytrustedcallers.
8294
8295 2005-03-17  Martin Baulig  <martin@ximian.com>
8296
8297         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
8298
8299 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8300
8301         * file-io.c: disabled file async. IO using aio_*. It uses the
8302         threadpool now. Workaround for bug #73718.
8303
8304 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8305
8306         * assembly.h, mono-config.c: added code to deal with bundled configs
8307         for bundled assemblies.
8308
8309 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
8310
8311         * *.c, private.h: cleanup, removing old private.h header file.
8312
8313 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
8314
8315         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8316         and throw_on_unmappable_char attributes.
8317
8318 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8319
8320         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8321         _ProcessName_internal.
8322
8323 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8324
8325         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8326         #73631.
8327
8328         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8329         are no longer used.
8330
8331 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8332
8333         * object.c (compute_class_bitmap): Add support for generics. Fixes
8334         #73527.
8335
8336 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8337
8338         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8339
8340 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8341
8342         * filewatcher.c: commented out the code for windows watcher, as we don't
8343         use it (we use the managed implementation instead).
8344
8345 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8346
8347         * object-internals.h (MonoThread): Remove 'unused1' field.
8348
8349         * appdomain.c: Bump corlib version.
8350
8351         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8352
8353         * reflection.c (mono_reflection_create_runtime_class): Remove the
8354         AssemblyBuilder.Save optimization since it causes too many problems.
8355
8356 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8357
8358         * exception.c|h: Added mono_get_exception_reflection_type_load to
8359         create a ReflectionTypeLoadException object.
8360         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8361         to return NULL is a InheritanceDemand fails during reflection. Updated
8362         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8363         ReflectionTypeLoadException if an InheritanceDemand fails during 
8364         reflection. Added icall mapping for GetLinkDemandSecurity.
8365         * security-manager.c|h: Added ves_icall_System_Security_
8366         SecurityManager_GetLinkDemandSecurity internal call to return the
8367         class and methods permissions set for a LinkDemand. Removed unused
8368         fields in MonoSecurityManager.
8369
8370 2005-03-10  Martin Baulig  <martin@ximian.com>
8371
8372         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8373         it's a generic instance.
8374
8375 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8376
8377         * reflection.c (mono_get_object_from_blob): Applied patch from
8378         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8379
8380         * class.c (mono_class_is_assignable_from): Another try at fixing 
8381         #73469 without breaking anything.
8382
8383 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8384
8385         * class.c: (mono_class_is_assignable_from): Revert the last changes
8386         since they don't work with generics.
8387         
8388         * class.c (mono_class_is_assignable_from): Fix build bustage.
8389
8390         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8391         the managed IsAssignableFrom method. Fixes #73469.
8392
8393         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8394         function.
8395
8396 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8397
8398         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8399         memory when the remoting callback does not sets the out arguments.
8400         Fixes #73007.
8401
8402         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8403         by mistake.
8404
8405         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8406
8407         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8408
8409         * appdomain.c: Bump corlib version.
8410
8411 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8412
8413         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8414         function.
8415
8416         * threads.c (mono_thread_attach): Detect threads which are not started
8417         by the GC pthread wrappers.
8418
8419 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8420
8421         * icall.c: Added new icall for RNG.
8422         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8423         single handle on Linux to access /dev/urandom and fix #73183.
8424
8425 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8426
8427         * object.c: setting the new vtable in a transparent proxy object must
8428         not change the GC descriptor.
8429
8430 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8431
8432         * object.c: fixed compilation without GCJ support.
8433         * reflection.c: for runtime-created types ensure klass->has_references
8434         is correct (bug #73215).
8435
8436 2005-03-02  Martin Baulig  <martin@ximian.com>
8437
8438         * class.c (mono_class_is_assignable_from): Make this work if
8439         `oklass' is a generic instance; fixes #72831.
8440
8441 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8442
8443         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8444         with hasthis set.
8445         
8446         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8447
8448         * marshal.c: Reorganize native->managed marshalling code to also use
8449         the emit_marshal_... functions.
8450
8451 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8452
8453         * object.c: typed allocs have issues with bitmap sizes > 30,
8454         so check for max_set >= 30.
8455
8456 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8457
8458         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8459         managed code. Fixes #73012.
8460
8461         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8462
8463         * metadata.c reflection.c: Load/Emit elem_mult as well.
8464         
8465         * metadata.h (MonoMarshalSpec): Add comment.
8466
8467         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8468
8469         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8470         num_elem to -1 if not given.
8471
8472         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8473
8474         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8475         given values.
8476
8477 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8478
8479         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8480
8481 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8482
8483         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8484
8485         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8486
8487 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8488
8489         * object.c: generalized the reference bitmap creation
8490         and added hooks for the new GC.
8491         * class-internals.c: removed the gc_bitmap field from MonoClass.
8492
8493 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8494
8495         * domain.c: help the compiler to produce better code
8496         in mono_jit_info_table_find ().
8497
8498 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8499
8500         * object.c: make all allocations look typed.
8501
8502 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8503
8504         * socket-io.c: load Mono.Posix if it's not loaded already
8505         (fixes bug#73033).
8506
8507 2005-02-24  Martin Baulig  <martin@ximian.com>
8508
8509         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8510         * reflection.c (dup_type): Likewise.
8511
8512 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8513
8514         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8515         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8516
8517 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8518
8519         * domain.c, threads.c, object-internals.h: make the critical thread
8520         local vars use the fast access mode (even when we're compiled in
8521         a lib). Provide accessors to be used by the jit during codegen.
8522
8523 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8524
8525         * appdomain.c: Changed hook functios behavior to include
8526         support for the reflection only assemblies. Some icalls were changed
8527         to support the mentioned assemblies too. Signatures of static methods
8528         try_assembly_resolve and real_load now have an additional parameter:
8529         refonly.
8530
8531         * assembly.c: General changes to mono_assembly_ methods to support
8532         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8533         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8534         suffix, to support an additional gbool parameter to specify whether
8535         the assembli is reflection only or not. Created some new hook functions 
8536         to add support for reflection only assemblies. Signatures of static 
8537         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8538         have now an additional parameter: refonly.
8539
8540         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8541         indicating whether the assembly is reflection only or not.
8542
8543         * exception.c: Add mono_get_exception_invalid_operation.
8544
8545         * icall.c: Throw an InvalidOperationException when trying to invoke
8546         a property/method/event, or trying to set/get the value of a field.
8547         Also add an icall to retrieve the ref_only flag to the
8548         MonoReflectionAssembly.
8549
8550 2005-02-23  Chris Toshok  <toshok@ximian.com>
8551
8552         Part of fix for #72827.
8553         * mono-debug.c (mono_debug_add_method): add lexical block data to
8554         the info we write.  Kind of a hack at the moment - we copy the
8555         lexical block info from the MonoDebugMethodInfo to the
8556         MonoDebugMethodJitInfo here, before writing it.
8557         (mono_debug_read_method): read the lexical block info.
8558
8559         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8560
8561         * debug-mono-symfile.h: add lexical block support.
8562
8563         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8564         support.
8565
8566 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8567
8568         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8569
8570         * object.c (mono_runtime_free_method): Call mono_free_method () and
8571         put the TODOs there.
8572
8573         * loader.c (mono_free_method): Free up most memory allocated for 
8574         dynamic methods.
8575
8576 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8577
8578         * reflection.c: properly flag a Type argument to a
8579         named custom attr value (bug #72248).
8580
8581 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8582
8583         * reflection.c: reduce code duplication in named custom
8584         attribute encoding.
8585
8586 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8587
8588         * reflection.c: properly encode custom attrs of type object
8589         (bug #72649).
8590
8591 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8592
8593         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8594
8595 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8596
8597         * socket-io.c: load System.dll if it's not loaded already
8598         (bug #72850 and #70477).
8599
8600 2005-02-21  Martin Baulig  <martin@ximian.com>
8601
8602         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8603         generic instances.
8604
8605 2005-02-21  Martin Baulig  <martin@ximian.com>
8606
8607         * reflection.c (mono_image_build_metadata): We also need to
8608         "fixup" the MethodImpl table after we computed the final method
8609         indices.  Call fixup_methodimpl() to do that.
8610         (fixup_methodimpl): New private method.
8611
8612 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8613
8614         * assembly.c: special case mscorlib.dll (bug#72536),
8615         patch from Carlos Alberto Cortez.
8616
8617 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8618
8619         * threads-types.h threads.c: Fix build bustage.
8620
8621         * threads.c: Use a union for long<->double conversions.
8622
8623         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8624         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8625
8626         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8627         containing the checkpoint call with NOT_TAKEN.
8628         
8629         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8630         checkpoint before pushing the arguments, so they won't have to be
8631         spilled to stack.
8632
8633 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8634
8635         * domain.c, assembly.c, domain-internals.h: make some data
8636         const and relocation-free.
8637
8638 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8639
8640         * object.c, appdomain.c, class-internals.h: introduce the
8641         MonoClassRuntimeInfo structure to hold the info needed to
8642         use a class at runtime. Made mono_class_vtable() lock-free
8643         for all the appdomains.
8644
8645 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8646
8647         * metadata-internals.h, image.c: introduce a per-image mempool to
8648         be used for memory that has the same lifetime as the image.
8649
8650 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8651
8652         * domain.c: In mono_init_internal(), instead of selecting the first
8653         runtime version supported by an executable, get a list of all
8654         supported versions and select the one for which an mscorlib exists
8655         (since even if the runtime supports a given version, it doesn't mean
8656         that the framework for that version is installed).
8657         Modified get_runtimes_from_exe to support this behavior.
8658         In supported_runtimes, added information about additional system
8659         assembly versions.
8660         
8661         * assembly.c: Added support for more than one system assembly version
8662         per runtime version. Updated the assembly list.
8663         In mono_assembly_remap_version, removed the initial version check,
8664         since we don't know to which version we need to compare until we
8665         get the version set on which the assembly is based.
8666         Moved the code for loading corlib into the new method
8667         mono_assembly_load_corlib(), so it can be used by the initialization
8668         code.
8669         
8670         * domain-internals.h: Updated data structures and added declaration
8671         for mono_assembly_load_corlib.
8672
8673 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8674
8675         * reflection.c (resolve_object): Fix the creation of the signature in 
8676         the SignatureHelper case.
8677
8678         * assembly.c (mono_assembly_remap_version): Fix binary search.
8679         
8680 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8681  
8682         * class.c: Added inheritance check when a method is overloaded (from a
8683         virtual method or when implementing an interface) and when a class is
8684         inherited. Added functions to set a failure for a class and to 
8685         retreive the exception from a failure.
8686         * class-internals.h: Added fields to MonoClass to keep the exception
8687         information status for inheritance (or other exceptions) to be thrown
8688         later (i.e. not at load time).
8689         * object.c: Throw the inheritance SecurityException when a type is to 
8690         be created with either class or method inheritance violations.
8691         * reflection.c|h: Fix when getting declsec from a class. Removed 
8692         unrequired code for class. Improved sanity in parameter naming.
8693         * security-manager.c|h: Added functions to check for class and method
8694         inheritance.
8695
8696 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8697
8698         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8699         and has_finalize in dynamic types as well.
8700
8701 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8702
8703         * culture-info-table.h : fixed currency format for en-GB (and so on).
8704
8705 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8706
8707         * gc.c: ensure the GC handles never have 0 as a value.
8708
8709 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8710
8711         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8712         a pointer to a struct to unmanaged code. Fixes #72625.
8713
8714 2005-02-16  Martin Baulig  <martin@ximian.com>
8715
8716         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8717
8718 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8719
8720         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8721
8722 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8723
8724         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8725
8726         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8727         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8728         etc. Fixes #71471.
8729
8730         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8731
8732         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8733
8734 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8735
8736         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8737         changes to make the current context a field in MonoThread.
8738
8739 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8740
8741         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8742         the last change.
8743         
8744         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8745         extracted from mono_marshal_get_native_wrapper.
8746
8747         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8748         to create wrappers around native functions.
8749
8750         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8751         delegates for arbitrary function pointers. Fixes #71472.
8752
8753 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8754
8755         * threads.c: cleaned up the code a little.
8756
8757 2005-02-15  Martin Baulig  <martin@ximian.com>
8758
8759         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8760         the data table.
8761
8762         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8763         allocate larger chunks if needed.
8764
8765 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8766
8767         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8768         in by mistake.
8769
8770 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8771
8772         * domain.c: keep the domains in an array and ensure the domain ids
8773         are kept small, so they can be used as indexes to domain-specific data
8774         with a small memory overhead.
8775
8776 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8777
8778         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8779
8780 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8781
8782         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8783
8784 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8785
8786         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8787
8788         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8789         values.
8790
8791         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8792         
8793 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8794
8795         * domain-internals.h: add the hashtable here.
8796
8797         * class-internals.h: Remove `info' from MonoMethod
8798
8799         * domain.c: Add a new hashtable, jit_trampoline_hash
8800
8801 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8802
8803         * object.c: don't set the value of static fields
8804         (fixes bug#72494).
8805
8806 2005-02-11  Martin Baulig  <martin@ximian.com>
8807
8808         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8809         (mono_debug_add_method): Silently ignore the method if it's too big.
8810         (mono_debug_add_type): Likewise.
8811
8812 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8813
8814         * threads.c, appdomain.c: remove #ifdefs from the code.
8815
8816 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8817
8818         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8819         common security informations. This allows us to stay in unmanaged code
8820         when doing LinkDemand and it's special cases (except for the first 
8821         time for initialization). The flags a very much used with --security.
8822         * reflection.c|h: Added code to get declarative security attributes 
8823         for LinkDemand and InheritanceDemand. This required to refactor the
8824         existing code for Demand.
8825         * security-manager.c|h: Added new method fields for the special cases
8826         of LinkDemand.
8827
8828 2005-02-10  Martin Baulig  <martin@ximian.com>
8829
8830         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8831         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8832
8833 2005-02-10  Martin Baulig  <martin@ximian.com>
8834
8835         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8836         debugging code; this is almost a complete rewrite.
8837
8838         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8839
8840 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8841
8842         * domain.c, object.h: expose mono_string_equal () and 
8843         mono_string_hash ().
8844         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8845         it's implemented in managed code.
8846
8847 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8848
8849         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8850         lo leak objects between appdomains.
8851
8852 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8853
8854         * assembly.c: old compilers compilation fix from 
8855         robertj@gmx.net (Robert Jordan).
8856
8857 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8858
8859         * class-internals.h: Little reminder for the future.
8860
8861         * debug-helpers.c: Fix up wrapper_type_names
8862
8863 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8864
8865         * image.c, metadata-internals.h: when loading an image from a file,
8866         mmap all of it and use the same codepaths as when using a
8867         in-memory image: the code is simpler and we use less memory
8868         (both writable and readonly).
8869
8870 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8871
8872         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8873         API to alloc runtime data structures that need to be tracked by the
8874         GC and contain pointers.
8875         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8876         make the code more readable and eventually use a different GC.
8877
8878 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8879
8880         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8881         for out arguments.
8882         
8883 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8884
8885         * object.c: In release_type_locks(), don't release the cctor lock
8886         if it has already been released. This fixes a crash in the
8887         thread5 test.
8888
8889 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8890
8891         * gc.c, marshal.c, icall.c: register a delegate for finalization
8892         only when the native function pointer has been allocated for it.
8893
8894 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8895
8896         * object.c: cleaned up some code, allocate objects that are
8897         pointer free with the atomic malloc variant. Allocate memory
8898         for static data from the mempool if it's pointer-free.
8899         Allocate the bounds array at the end of the array data, when needed.
8900         * object-internals.h, object.h: move a private function in a private
8901         header.
8902         * class.c: handle missing case in tracking references in fields.
8903
8904 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8905
8906         * class.c, class-internals.h: keep track if a type has
8907         reference fields in either the instance or static fields.
8908
8909 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8910
8911         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8912         and renamed to MonoRuntimeInfo. Added fields to store the expected
8913         framework assembly version. Changed mono_get_framework_version and
8914         mono_get_runtime_version for a single mono_get_runtime_info method.
8915         
8916         * assembly.c: Added method to remap system assembly versions to the
8917         current executing runtime version. Removed old mapping code.
8918         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8919         
8920         * icall.c, reflection.c: Track api changes.
8921
8922 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8923
8924         * loader.c (method_from_memberref): Improve error reporting,
8925         produce the class name instead of the typeref/typedef index. 
8926
8927 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8928
8929         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8930
8931 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8932
8933         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8934         stdcall and charset name mangling.  Reorganize the code and add
8935         some tracing stuff.
8936
8937 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8938
8939         * monodiet.c: More iters!
8940
8941         * marshal.c: Iter usage.
8942
8943         * icall.c: Iter usage.
8944
8945         * object.c: Use iters.
8946
8947         * debug-helpers.c: More iters
8948
8949 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8950
8951         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8952         under win32.
8953
8954 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8955
8956         * mono-debug-debugger.c: use iters
8957
8958         * class.c, class-internals.h: mono_class_setup_events is static
8959         now
8960
8961         * All callers: use iters
8962
8963 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8964
8965         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8966         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8967
8968 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8969
8970         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8971
8972         * marshal.h: Add prototypes for ldfld/stfld_remote.
8973
8974         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8975         this is called during startup.
8976         
8977 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8978
8979         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8980         MonoThreadsSync struct private in monitor.c. Changed the way
8981         MonoThreadsSync is allocated so it's faster and there is no
8982         need to keep track of it with a finalizer and it uses less memory.
8983         This also finally allows us to allocate mono objects as ptrfree when
8984         there are no reference fields.
8985
8986 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8987
8988         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8989         disappearing link to the GC interface and use them to simplify
8990         the gchandles code.
8991
8992 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8993
8994         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8995         stfld_remote which call mono_load/store_field_new. This allows methods
8996         calling ldfld/stfld wrappers to be AOTed.
8997
8998         * console-io.c: Include sys/filio.h under solaris.
8999         
9000         * console-io.c: Include curses.h if needed correctly.
9001
9002 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9003         
9004         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
9005         method->klass as well.
9006
9007         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
9008
9009         * class.c (mono_class_init): Switch on lazy initialization of 
9010         methods.
9011
9012         * class.c (mono_class_get_finalizer): Handle the case when the 
9013         finalizer is inherited.
9014
9015 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9016
9017         * console-io.c: <curses.h> is needed by term.h on solaris.
9018
9019 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
9020
9021         * icall.c, class-internals.h, monodiet.c, class.c: Remove
9022         mono_class_setup_properties where possible. Remove this ftn from
9023         the header file, and make it static.
9024
9025 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
9026
9027         * loader.c: Add missing setup_... call.
9028
9029         * class.c: Add missing setup_... calls.
9030
9031         * class.c (mono_class_init): Switch on lazy initialization of 
9032         the generic vtable.
9033         
9034         * class.c (mono_class_init): Fix generics broken by the recent changes.
9035
9036         * monodiet.c (handle_type): Add missing setup_... calls.
9037
9038         * class.c: Back out garbage in previous patch.
9039         
9040         * class.c: Add missing setup_... calls.
9041
9042         * class.c (mono_class_get_method_from_name_flags): Avoid calling
9043         mono_class_setup_methods () if possible.
9044
9045         * class-internals.h (MonoClass): Add 'has_cctor' flag.
9046
9047         * class-internals.h (MonoCachedClassInfo): New structure.
9048
9049         * class.c: Initialize properties and events fields of MonoClass lazily.
9050
9051         * class.c: Add infrastructure for lazily initializing the methods and
9052         vtable fields of MonoClass. Not yet used.
9053
9054         * class.c (mono_class_get_finalizer): New helper function.
9055
9056         * class.c: Add infrastructure for loading some class related data from
9057         an AOT file.
9058
9059         * object.c: Add infrastructure for initializing the vtable from data
9060         in the AOT file.
9061
9062         * gc.c (run_finalize): Use mono_class_get_finalizer ().
9063
9064         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
9065         appropriate initialization function before accessing parts of the
9066         MonoClass structure.
9067
9068         * marshal.c: Fix warnings.
9069         
9070         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
9071
9072         * mono-debug-debugger.c (get_exception_message): Use 
9073         mono_class_get_method_from_name_flags ().
9074
9075 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
9076
9077         * reflection.c, appdomain.c: Replace a few manual searches that
9078         Zoltan missed. (Paolo approved this part of my initial patch).
9079
9080 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
9081
9082         * profiler.c: disable recording statistical events at report time.
9083
9084 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9085
9086         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
9087         to byteswap arrays of enum values, too (bug #72080).
9088
9089 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
9090
9091         * appdomain.c (set_domain_search_path): Allow this to be called if
9092         domain->setup is not yet set.
9093
9094         * loader.c (mono_method_get_index): New helper function.
9095
9096         * loader.c reflection.c: Use mono_method_get_index ().
9097
9098         * class.c (mono_class_get_method_from_name_flags): New helper method.
9099
9100         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
9101         this.
9102
9103         * class.c (mono_class_get_cctor): New helper method.
9104
9105         * string-icalls.c object.c class.c marshal.c reflection.c: Use
9106         mono_class_get_method () to look up methods.
9107
9108 2005-02-01  Miguel de Icaza  <miguel@novell.com>
9109
9110         * console-io.c: Fix the build, this should work on Windows.
9111
9112 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
9113
9114         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
9115         be set to null to keep things valid
9116
9117 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9118
9119         * icall.c: added Console 2.0 icalls.
9120         * Makefile.am: added console-io.[ch]
9121         * console-io.[ch]: internal calls for Console 2.0 API.
9122
9123 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9124
9125         * class.c: make sure we consider all the interfaces
9126         when calculating max_interface_id (bug found by
9127         Jeroen Frijters running ikvm).
9128
9129 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
9130
9131         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
9132         valuetype fields to null.
9133
9134         * object.c (set_value): Ditto. Fixes #71669.    
9135
9136 2005-01-31  Martin Baulig  <martin@ximian.com>
9137
9138         * metadata.c (mono_metadata_has_generic_params): New public
9139         function; checks whether something is a generic method.
9140
9141 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
9142
9143         * appdomain.c: fix infinite recursion when adding assemblies.
9144
9145 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
9146
9147         * object.c: Fix small typo to return all items for Environment.
9148         GetCommandLineArgs.
9149
9150 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
9151
9152         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
9153         reflection.c: more domain and assembly-unload related fixes
9154         and memory leaks plugs.
9155
9156 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
9157
9158         * 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.
9159
9160 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
9161
9162         * loader.c (mono_method_signature): Make this method lazy
9163         (mono_get_method_from_token): Don't computate the signature here.
9164
9165         Doing this saves quite a bit of memory. I got 90 kb on starting up
9166         monodoc. It should also save some disk reads on startup.
9167
9168         * *: MonoMethod->signature might be NULL now. You *MUST* use
9169         mono_method_signature.
9170
9171 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
9172
9173         * object.c (mono_runtime_get_main_args): Return an array from the
9174         current domain here. Fixes #71938.
9175
9176 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
9177
9178         * monitor.c: formatting changes to comply with the
9179         mono coding style and remove #ifdefs from the code.
9180
9181 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9182
9183         * metadata.c, private.h: remove some unneeded data
9184         and use a more compact representation for table schemas.
9185
9186 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
9187
9188         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
9189         to get a better distribution in hash tables.
9190         * *.c: use mono_aligned_addr_hash() where appropriate.
9191         * assembly.c: make var static.
9192
9193 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
9194
9195         * domain-internals.h: Put MonoJitInfo on a diet.
9196
9197         * domain.c: Fix a warning.
9198
9199 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9200
9201         * gc.c: rework the gc handles code to reuse handles
9202         when freed.
9203
9204 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
9205
9206         * domain.c: fixed long standing bug in mono_string_equal() which
9207         was brought to light with the ldstr changes.
9208
9209 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
9210
9211         * reflection.c: Remove warning by adding missing include for marshal.h
9212
9213 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9214
9215         * domain.c, object.c: change the ldstr_table to hold
9216         MonoString* as keys: makes the runtime isinterned lookup
9217         faster and simplifies memory management.
9218
9219 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9220  
9221         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
9222         possible to add imperative security checks before calling the icall.
9223         * reflection.c: Return security attributes on the original MonoMethod
9224         (and not the wrapped one). This fix permissions on icalls.
9225
9226 2005-01-25  Dick Porter  <dick@ximian.com>
9227
9228         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
9229         the check for mktime() support actually test the mktime() return
9230         value.  "Fixes" bug 71682, though the output is still different to
9231         MS.
9232
9233 2005-01-25  Martin Baulig  <martin@ximian.com>
9234
9235         * class.c (mono_class_is_assignable_from): Make this work for
9236         generic instances.
9237
9238 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
9239
9240         * marshal.c (mono_string_utf8_to_builder)
9241         (mono_string_builder_to_utf16): We might not have ownership of the
9242         string. In thise case, we need to create a new buffer.
9243
9244         * object-internals.h (mono_stringbuilder_capacity): sb->str might
9245         be null, in which case, use the default capacity.
9246
9247 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9248
9249         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
9250         GC events to the profiler.
9251
9252 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9253
9254         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
9255         if you don't want the GC to run.
9256
9257 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
9258
9259         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
9260         start providing a GC API and keeping different implementations in
9261         their own file.
9262         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
9263
9264 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
9265
9266         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
9267         mmap rather than allocating a huge buffer.
9268         (mono_debug_close_mono_symbol_file): Free the buffer allocated
9269         above.
9270
9271 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9272
9273         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
9274         and CheckExecutionRights.
9275         * reflection.c|h: Keep the index of the declarative security to be 
9276         used, instead of the pointer, when AOT compiler is used. Also add 
9277         class initialization when requesting demands.
9278         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
9279         CheckExecutionRights. Both properties are now FALSE by default, and
9280         unmodifiable, unless the --security option is used.
9281
9282 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9283
9284         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
9285         reflection.c: properly refcount images and assemblies, many leaks fixed.
9286
9287 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9288
9289         * threadpool.c: increase the timeout for threads in the thread pool to
9290         10s.  Fixes bug #67159.
9291
9292 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
9293
9294         * class-internals.h: Sun's compiler insists on explicit
9295         signed on bit fields to handle then correctly.
9296
9297 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
9298
9299         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
9300         Make the size of the array fit only the number of invalid path
9301         chars that we have.
9302
9303         * class.c (_mono_class_get): Improve the error reporting when a
9304         class referenced is not found, to assist debugging. 
9305
9306 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
9307
9308         * threads.c: fix off-by-one error.
9309         * domain.c: free data allocated in the domain.
9310
9311 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9312
9313         * reflection.c (mono_method_body_get_object): Fill out exception info
9314         as well.
9315
9316         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9317         structure.
9318         
9319 2005-01-19  Martin Baulig  <martin@ximian.com>
9320
9321         * loader.c (mono_get_method_constrained): Make this work again.
9322
9323 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9324
9325         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9326         guint16 to match the managed side.
9327
9328         * reflection.c (mono_reflection_body_get_object): Fill out local
9329         variables array.
9330
9331         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9332         as well.
9333
9334         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9335         'local_var_sig_token'.
9336
9337 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9338
9339         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9340         System.Drawing.
9341
9342         * reflection.c (mono_method_body_get_object): Handle abstract and
9343         runtime methods.
9344
9345 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9346
9347         * marshal.c, loader.c, class-internals.h, reflection.c:
9348         store the emthod data for a wrapper in an array instead of a list.
9349
9350 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9351
9352         * marshal.c: change the code to allocate memory more
9353         conservatively for method wrappers.
9354
9355 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9356
9357         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9358         fields from MonoClass to the marshal info structure where they belong.
9359
9360 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9361
9362         * class.c, object.c, class-internals.h, marshal.c: rearrange
9363         some fields and tweak some types to lower memory usage.
9364
9365 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9366
9367         * threads.c (signal_thread_state_change): Handle the case when the
9368         target thread is the current thread.
9369
9370         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9371
9372         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9373         emit_ptr_to_object_conv. 
9374
9375         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9376         marshalling. Fixes #71352.
9377
9378 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9379
9380         * metadata.h, blob.h: move table enum to blob.h so it can be included
9381         in any header.
9382         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9383         cut the size of MonoImage/MonoDynamicImage.
9384
9385 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9386
9387         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9388
9389 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9390
9391         * reflection.c, reflection.h, icall.c: add a function to check
9392         if an attribute type is defined for a metadata object.
9393
9394 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9395
9396         * object-internals.h: Added some needed fields from StringBuilder class.
9397         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9398
9399 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9400
9401         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9402         threads before shutting down the runtime.
9403
9404         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9405
9406 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9407
9408         * object-internal.h, threads.c: implement stacksize and 
9409         parameterized thread start functionality (requires
9410         matching corlib). Marked broken code for later removal.
9411
9412 2005-01-12  Martin Baulig  <martin@ximian.com>
9413
9414         * class-internals.h (MonoGenericClass): Moved the `initialized'
9415         flag to MonoDynamicGenericClass, removed `init_pending'.
9416         (MonoGenericInst): Added `is_reference' flag.
9417
9418 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9419
9420         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9421         inside the MSDOS header. Fixes #71201.
9422
9423         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9424         gc thread.
9425         (mono_domain_finalize): Ditto.
9426
9427 2005-01-12  Martin Baulig  <martin@ximian.com>
9428
9429         * class.c (mono_get_shared_generic_class): Use the cache for
9430         non-dynamic generic classes.
9431
9432         * class-internals.h (mono_class_create_generic_2): Removed
9433         function prototype, this function is now static inside class.c.
9434
9435         * class.c (mono_class_create_generic_2): Made this static, only
9436         call it from mono_class_init() and mono_class_setup_parent().
9437         (collect_implemented_interfaces_aux): Call mono_class_init() on
9438         the interfaces we collect.
9439         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9440
9441 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9442
9443         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9444         it a real thread handle.
9445
9446         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9447         MonoJitExceptionInfo, since each catch clause needs its own variable.
9448         
9449 2005-01-11  Dick Porter  <dick@ximian.com>
9450
9451         * image.c (mono_pe_file_open): New variant on mono_image_open()
9452         that does not set up the CLI metadata; used for FileVersionInfo so
9453         it can get the data for windows binaries too.
9454         
9455         * process.c (process_read_string_block): Don't read off the end of
9456         the StringTable block.
9457
9458         These both fix bug 70766.
9459
9460 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9461
9462         * gc.c: set some fields to NULL at GC cleanup time.
9463         * threads.c: if we quit the main thread, call exit ().
9464
9465 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9466
9467         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9468
9469 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9470
9471         * threads.h, threads.c, object.c: added accessor and settor for
9472         main_thread. Handle it specially when exiting from it: wait
9473         for other foreground threads to exit.
9474
9475 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9476
9477         * process.c, verify.c: remove some bloat.
9478
9479 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9480
9481         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9482         the calling convention to cdecl under win32.
9483
9484 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9485
9486         * object.c (mono_object_get_size): New function to get the size of
9487         an object instance.
9488
9489         * profiler.c (simple_allocation): Use above.
9490
9491 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9492
9493         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9494         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9495         get an appdomain by it's id and we can't assume the root's id is 0).
9496         * domain-internals.h: Change the function prototype to match.
9497         * icall.c: Change the icall table for AppDomain.
9498
9499 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9500
9501         * locales.c (string_invariant_compare_char): Only compute
9502         GUnicodeTypes in the case where we need them.  Test for ordinality
9503         first and return if so.
9504
9505         From the commit:
9506
9507                 /*
9508                  * FIXME: here we must use the information from c1type and c2type
9509                  * to find out the proper collation, even on the InvariantCulture, the
9510                  * sorting is not done by computing the unicode values, but their
9511                  * actual sort order.
9512                  */
9513
9514 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9515
9516         * loader.c: for P/Invoke methods, allow the "Internal" shared
9517         library name to refer to the calling process symbol namespace.
9518
9519 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9520
9521         * Makefile.am: Add the security manager to the build.
9522         * security-manager.c|h: New. Initialization of the security manager.
9523
9524 2005-01-07  Dick Porter  <dick@ximian.com>
9525
9526         * threads.c: 
9527         * monitor.c: Update thread state during Monitor and WaitHandle
9528         waits.  Fixes bug 71031.
9529
9530 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9531
9532         * reflection.c (property_encode_signature): Correctly handle when the
9533         property has no methods.
9534
9535 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9536
9537         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9538         
9539         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9540         fields from mb, not rmb. Fixes #71017.
9541
9542         * marshal.c (emit_ptr_to_str_conv): Add support for 
9543         ByValTStr -> string conversion. Fixes #71015.
9544
9545         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9546
9547         * mempool.c (mono_mempool_contains_addr): New helper function.
9548
9549 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9550
9551         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9552         HasSematics encoded fields.
9553         
9554         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9555         invalid string marshalling.
9556
9557         * metadata.c: Fix warnings.
9558         
9559 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9560
9561         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9562         profiler support.
9563
9564 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9565
9566         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9567         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9568         tests.
9569
9570 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9571
9572         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9573         so methods containing these can be AOTed.
9574
9575 2005-01-03  Martin Baulig  <martin@ximian.com>
9576
9577         * loader.c (find_method): Removed the hack for generic instances.
9578         (method_from_memberref): If our parent is a generic instance, pass
9579         its generic type definition to find_method() and then inflate the
9580         method.
9581         (mono_get_method_constrained): Pass the generic type definition to
9582         find_method() and inflate the method later.
9583
9584         * class-internals.h (MonoStats): Added `generic_class_count'.
9585
9586         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9587         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9588
9589         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9590         generic type definitions.
9591
9592 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9593
9594         * loader.c icall.c: Fix warnings.
9595
9596 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9597
9598         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9599         blittable types. Fixes #70864.
9600
9601 2004-12-29  Martin Baulig  <martin@ximian.com>
9602
9603         * icall.c
9604         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9605
9606         * reflection.c (mono_method_get_object): Create a
9607         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9608         call mono_get_inflated_method().
9609
9610         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9611
9612 2004-12-27  Martin Baulig  <martin@ximian.com>
9613
9614         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9615         (MonoMethodInflated): Added `inflated' field.
9616
9617         * class.c (mono_class_inflate_generic_method): Don't really
9618         inflate the method here; just set the `is_inflated' flag in the
9619         MonoMethod.
9620         (mono_class_get_inflated_method): Actually inflate the method here
9621         if it's not already inflated; we use the MonoMethodInflated's new
9622         `inflated' field as a cache.
9623
9624 2004-12-26  Martin Baulig  <martin@ximian.com>
9625
9626         * class.c
9627         (inflate_generic_class): Moved some code out of inflate_generic_type().
9628         (mono_class_inflate_generic_method): If we're already inflated,
9629         inflate the context and use the declaring method; ie. make sure
9630         the declaring method of an inflated method is always the generic
9631         method definition.
9632         (mono_class_create_from_typedef): Create
9633         `class->generic_container->context->gclass'.
9634
9635 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9636
9637         * metadata-internals.h, marshal.c, reflection.c: More
9638         MonoGHashTable->GHashTable.
9639
9640         * domain-internals.h, class.c: Change MonoGHashTable's into
9641         GHashTables for some cases where no gc stuff is used
9642
9643         All users: update apis
9644
9645 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9646
9647         * metadata.c (builtin_types): Make this `const'. Makes this get
9648         put into the shareable section.
9649         (mono_metadata_init): Casts to make gcc happy.
9650
9651 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9652
9653         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9654
9655 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9656
9657         * icall.c: Added an internal call to retrieve the position and length
9658         of assembly-level declarative security attributes (RequestMinimum, 
9659         RequestOptional and RequestRefuse). This is used by the Assembly class
9660         to re-create the corresponding permission sets.
9661
9662 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9663
9664         * marshal.c: fix the stelemref wrapper to be type correct
9665         (and faster).
9666
9667 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9668
9669         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9670         to do key & 0x7fffffff. Hashtable already does this. It just
9671         results in longer code.
9672
9673 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9674
9675         * appdomain.c: Bump corlib version.
9676         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9677         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9678         * reflection.c|h: Add functions to get declarative security infos
9679         (blob position and length) for assemblies, classes and methods.
9680
9681 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9682
9683         * reflection.c: sort the constant table (bug #70693).
9684
9685 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9686
9687         * object-internals.h, threads.c, domain.c: add accessors for
9688         the MonoThread and MonoDomain tls keys.
9689
9690 2004-12-18  Martin Baulig  <martin@ximian.com>
9691
9692         * class.c (inflate_generic_type): If we're inflating a generic
9693         instance, set `ngclass->context->container = context->container';
9694         ie. the container we inflated into.
9695
9696         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9697         inflate_generic_type() changes.
9698
9699 2004-12-17  Martin Baulig  <martin@ximian.com>
9700
9701         * class-internals.h
9702         (MonoGenericClass): Replaced `MonoType *generic_type' with
9703         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9704         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9705         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9706
9707 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9708
9709         * exception.c (mono_exception_from_token): New helper function.
9710
9711 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9712
9713         * assembly.c (mono_assembly_load_with_partial_name): Call 
9714         mono_assembly_loaded before invoking the preload hooks. Fixes
9715         #70564.
9716
9717         * object-internals.h (MonoThread): Change culture_info and 
9718         ui_culture_info into an array.
9719
9720         * threads.c: Cache culture info objects from more than one appdomain.
9721
9722         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9723         current UI culture.
9724
9725 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9726
9727         * threads.h threads.c appdomain.c: Clear the culture_info field of
9728         all threads during unloading if they point to an object in the dying
9729         appdomain.
9730
9731 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9732
9733         * culture-info.h (TextInfoEntry): New struct
9734         * object-internals.h: sync with managed
9735         * locales.c: fill the `text_info_data' field
9736         * culture-info-tables.h: update
9737
9738 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9739
9740         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9741         collector.
9742
9743 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9744
9745         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9746         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9747
9748 2004-12-12  Martin Baulig  <martin@ximian.com>
9749
9750         * mono-debug-debugger.c (write_type): If we're an enum and the
9751         builtin types have already been initialized, call mono_class_init().
9752
9753 2004-12-11  Martin Baulig  <martin@ximian.com>
9754
9755         * metadata.c (mono_metadata_load_generic_params): Added
9756         `MonoGenericContainer *parent_container' argument; automatically
9757         compute `container->is_method'; pass the correct owner to
9758         get_constraints().      
9759
9760         * reflection.c (compare_genericparam): Sort the GenericParam table
9761         according to increasing owners. 
9762
9763 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9764
9765         * profiler.c: allow disabling the default profiler.
9766
9767 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9768
9769         * decimal.c, icall.c: allow disabling System.Decimal support.
9770
9771 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9772
9773         * reflection.c: Add support for null attribute arguments.
9774
9775 2004-12-09  Martin Baulig  <martin@ximian.com>
9776
9777         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9778         names to get rid of compiler warnings.
9779
9780 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9781
9782         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9783         mono_marshal_load_type_info (). Fixes #69625.
9784         (mono_marshal_get_ptr_to_struct): Likewise.
9785
9786 2004-12-08  Martin Baulig  <martin@ximian.com>
9787
9788         * mono-debug.h: Bumped version number to 47.
9789
9790         * mono-debug-debugger.c
9791         (mono_debugger_event_handler, mono_debugger_event): Take two
9792         guint64 arguments insteed of a gpointer and a guint32.  
9793
9794 2004-12-08  Martin Baulig  <martin@ximian.com>
9795
9796         * debug-mono-symfile.h
9797         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9798         `address' to `native_offset'.
9799
9800 2004-12-08  Martin Baulig  <martin@ximian.com>
9801
9802         * class.c (mono_class_create_from_typespec): Only inflate if we
9803         either have `context->gclass' or `context->gmethod'.
9804
9805 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9806
9807         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9808
9809         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9810
9811         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9812
9813         * reflection.c (mono_assembly_get_object): Remove the workaround put
9814         in for the release.
9815         
9816         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9817
9818         * appdomain.c: Bump corlib version.
9819
9820         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9821         be visible in other appdomains.
9822
9823 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9824
9825         * threads.c: Interlocked inc and dec for longs were messed up,
9826         use a KISS based impl for this. Fixes 70234
9827
9828 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9829
9830         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9831
9832 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9833
9834         * icall.c: fix to follow policy not to allow struct
9835         arguments in icalls.
9836
9837 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9838
9839         * process.c: make the patch that handles spaces in file paths work
9840         on mono/windows too.
9841
9842 2004-12-06  Martin Baulig  <martin@ximian.com>
9843
9844         * class.c (mono_class_create_generic): Call
9845         mono_class_setup_supertypes() if we're dynamic.
9846         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9847
9848 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9849
9850         * object-internals.h: Add new fields to MonoThread.
9851
9852         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9853
9854         * icall.c threads-types.h threads.c: Add new icalls.
9855
9856         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9857
9858         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9859         managed side.
9860
9861         * appdomain.c: Bump corlib version.
9862
9863         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9864         internal assemblies. Fixes #69181.
9865
9866 2004-12-05  Martin Baulig  <martin@ximian.com>
9867
9868         * class.c (mono_class_inflate_generic_signature): Make this a
9869         no-op if `context' is NULL or we don't have any type parameters;
9870         also copy `sentinelpos'.        
9871
9872 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9873
9874         * image.c: Add unbox_wrapper_cache.
9875
9876         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9877
9878         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9879         function generator.
9880         
9881         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9882         Fixes #70173.
9883
9884         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9885         
9886 2004-12-04  Martin Baulig  <martin@ximian.com>
9887
9888         * loader.c (mono_method_get_signature_full): New public function;
9889         like mono_method_get_signature(), but with an additional
9890         `MonoGenericContext *' argument.
9891
9892         * class.c (mono_class_inflate_generic_signature): Formerly known
9893         as inflate_generic_signature(); make this public.
9894
9895 2004-12-04  Martin Baulig  <martin@ximian.com>
9896
9897         * metadata.c
9898         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9899         instead of a `MonoGenericContainer *'.  
9900         (mono_metadata_parse_array_full): Likewise.
9901         (mono_metadata_parse_signature_full): Likewise.
9902         (mono_metadata_parse_method_signature_full): Likewise.
9903         (mono_metadata_parse_generic_inst): Likewise.
9904         (mono_metadata_parse_generic_param): Likewise.
9905         (mono_metadata_parse_mh_full): Likewise.
9906         (mono_type_create_from_typespec_full): Likewise.
9907
9908 2004-12-03  Martin Baulig  <martin@ximian.com>
9909
9910         * class-internals.h (MonoGenericContainer): Replaced the
9911         `MonoGenericContext * pointer with a `MonoGenericContext'
9912         structure and made it the first element.
9913
9914 2004-12-03  Martin Baulig  <martin@ximian.com>
9915
9916         * class.c
9917         (inflate_generic_type): Set the `context->container' when creating
9918         a new MonoGenericContext.
9919         (mono_class_inflate_generic_method): Likewise.
9920         (mono_class_create_from_typespec): Just use `context->container'
9921         to get the container.
9922
9923         * loader.c (method_from_methodspec): Set `context->parent' from
9924         `context->container' - and if that's a method container, use its
9925         parent.  Also set the `context->container' when creating a new
9926         MonoGenericContext.
9927         (mono_get_method_from_token): Use just `context->container' to get
9928         the container.
9929
9930         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9931         `gclass->context->container'.
9932
9933         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9934         the `context->container' when creating a new MonoGenericContext.
9935
9936 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9937
9938         * reflection.c (compare_genericparam): Sort params with identical
9939         owner by their number. Fixes gen-111 on sparc.
9940
9941 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9942
9943         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9944         around the domain changes.
9945
9946         * appdomain.c (mono_domain_unload): Handle the case when the thread
9947         calling Unload is itself being aborted during unloading. Fixes #70022.
9948
9949         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9950
9951         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9952         checkpoint_func as an icall so it gets a wrapper.
9953         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9954         in the cross-appdomain wrappers too.
9955
9956         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9957
9958         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9959
9960         * reflection.c: Fix some memory leaks.
9961         
9962 2004-12-02  Martin Baulig  <martin@ximian.com>
9963
9964         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9965
9966         * metadata.c (generic_class_cache): New static hashtable.
9967         (mono_metadata_lookup_generic_class): New public method.
9968
9969 2004-12-02  Martin Baulig  <martin@ximian.com>
9970
9971         * class.c (mono_class_create_from_typedef): Call
9972         mono_class_setup_parent() and mono_class_create_mono_type() before
9973         parsing the interfaces.
9974
9975 2004-12-02  Martin Baulig  <martin@ximian.com>
9976
9977         * metadata.c (generic_inst_cache): New static hashtable.
9978         (mono_metadata_lookup_generic_inst): New public function.
9979         (mono_metadata_inflate_generic_inst): New public function.
9980         (mono_metadata_parse_generic_inst): New public function.
9981         (do_mono_metadata_parse_generic_class): Use the new
9982         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9983         since this'll also use the cache.
9984
9985         * reflection.c (mono_reflection_bind_generic_method_parameters):
9986         Use mono_metadata_lookup_generic_inst() to use the new cache.
9987
9988         * class.c (inflate_mono_type): Use
9989         mono_metadata_inflate_generic_inst() to inflate a generic
9990         instance; this'll also use the new cache.
9991
9992         * loader.c (method_from_methodspec): Use
9993         mono_metadata_parse_generic_inst() and
9994         mono_metadata_inflate_generic_inst() rather than parsing it
9995         manually, so we can use the new cache.
9996
9997 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9998
9999         * threads.c (wait_for_tids): Do not incorrectly free threads when 
10000         the wait times out.
10001
10002 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
10003
10004         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
10005         iter->args based on whether parameters are passed in registers (i.e.
10006         MONO_ARCH_REGPARMS is defined)
10007
10008 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
10009
10010         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
10011         the exception message. Fixes #70070.
10012         (method_from_methodspec): Fix warnings.
10013
10014 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10015
10016         * process.c: (complete_path) return the path quoted
10017
10018 2004-12-01  Martin Baulig  <martin@ximian.com>
10019
10020         * class-internals.h (MonoGenericInst): New structure.
10021         (MonoGenericClass): Replaced `type_argc', `type_argv' and
10022         `is_open' with `MonoGenericInst *inst'.
10023         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
10024         `is_open' with `MonoGenericInst *inst'.
10025
10026 2004-11-30  Martin Baulig  <martin@ximian.com>
10027
10028         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
10029
10030         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
10031         to `generic_class_cache'.
10032
10033         * metadata.c
10034         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
10035         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
10036         (mono_generic_inst_is_valuetype): Renamed to
10037         mono_generic_class_is_valuetype().
10038
10039         * class-internals.h
10040         (MonoGenericInst): Renamed to MonoGenericClass.
10041         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
10042         (MonoClass): Renamed `generic_inst' to `generic_class'.
10043         (MonoGenericContext): Renamed `ginst' to `gclass'.
10044
10045         * object-internals.h
10046         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
10047
10048         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
10049         mono_reflection_generic_class_initialize().
10050
10051         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
10052         now known as "System.Reflection.MonoGenericClass".
10053         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
10054
10055 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
10056
10057         * class-internals.h: Added a flag field to MonoClass to cache the
10058         declarative security attributes actions associated with the class.
10059         * domain-internals.h: Added booleans to MonoJitInfo to cache the
10060         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
10061         applicable to the JITted method.
10062         * reflection.c|h: Added functions to extract (as flags) which security
10063         actions are available (declaratively) for a method, class or assembly.
10064         * metadata.c|h: Added functions to search the declarative security
10065         table in the metadata.
10066         
10067 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
10068
10069         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
10070         EXPORTEDTYPES are already in the class name cache, so there is no
10071         need to add extra code here to look at them. Just removes a bit of
10072         cruft.
10073
10074         (ves_icall_System_Environment_get_TickCount): No need for #if
10075         WINDOWS. We already have the code in io-layer.
10076
10077 2004-11-28  Martin Baulig  <martin@ximian.com>
10078
10079         * loader.c
10080         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
10081         Fixes gen-112.cs.
10082
10083 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
10084
10085         * assembly.c (do_mono_assembly_open): Instead of having a
10086         conditional WITH_BUNDLE, incorporate support for bundles here, by
10087         having a global `bundles' variable holding a pointer to the actual
10088         bundles. 
10089
10090         (mono_register_bundled_assemblies): New API call used by the
10091         bundle code. 
10092
10093         See mkbundle.1 for details.
10094         
10095 2004-11-27  Martin Baulig  <martin@ximian.com>
10096
10097         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
10098         the vtable for generic methods.
10099
10100 2004-11-26  Martin Baulig  <martin@ximian.com>
10101
10102         * metadata.c
10103         (mono_metadata_generic_method_hash): New public function.
10104         (mono_metadata_generic_method_equal): Likewise.
10105
10106         * class-internals.h
10107         (MonoGenericContainer): Added `GHashTable *method_hash'.
10108
10109         * reflection.c (ReflectionMethodBuilder): Added
10110         `MonoGenericContainer *generic_container'.
10111         (reflection_methodbuilder_to_mono_method): Don't create a new
10112         MonoGenericContainer each time we're called.
10113         (mono_reflection_bind_generic_method_parameters): Use
10114         `container->method_hash' to cache the results so we don't create a
10115         different method if we're called several times with the same
10116         arguments.
10117
10118         * loader.c (method_from_methodspec): Use the new
10119         `container->method_hash' here, too.
10120
10121 2004-11-26  Martin Baulig  <martin@ximian.com>
10122
10123         * class.c (inflate_generic_signature): Correctly compute
10124         `res->has_type_parameters'.
10125         (mono_class_vtable): Use the `has_type_parameters' flag to
10126         determine whether we're a generic method.
10127
10128         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
10129
10130 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
10131
10132         * object.c (mono_runtime_run_main): Fix a small memory leak.
10133
10134 2004-11-25  Martin Baulig  <martin@ximian.com>
10135
10136         * class.c (set_generic_param_owner): Fixed the loop.
10137
10138 2004-11-25  Martin Baulig  <martin@ximian.com>
10139
10140         * object.c (mono_class_vtable): Don't create any JIT wrappers for
10141         generic methods.
10142
10143 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
10144
10145         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
10146         names. Fixes #69787.
10147
10148 2004-11-24  Martin Baulig  <martin@ximian.com>
10149
10150         * class.c (mono_class_create_generic_2): If we don't have a
10151         `ginst->parent', inflate `gklass->parent' to get our parent.
10152
10153 2004-11-24  Martin Baulig  <martin@ximian.com>
10154
10155         * reflection.c (compare_genericparam): Correctly sort the
10156         GenericParam table; fixes #69779.
10157
10158 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
10159
10160         * reflection.c: When writing a PE file, don't create a huge
10161         buffer in memory. Just write the arrays we have to the file.
10162         This reduces memory usage.
10163
10164         * metadata-internals.h: MonoDynamicStream pefile is no longer used
10165         globally.
10166
10167 2004-11-17  Martin Baulig  <martin@ximian.com>
10168
10169         * class.c (mono_class_init): Don't setup `class->parent' for
10170         dynamic instances; moved this to mono_class_generic_2().
10171         (mono_class_create_generic): Also set `klass->inited' for dynamic
10172         generic instances.
10173         (mono_class_create_generic_2): Don't do anything for dynamic
10174         generic instances.  Set `klass->parent' here and also call
10175         mono_class_setup_parent() here. 
10176
10177         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
10178         `MonoType *parent' argument; set `ginst->parent' before calling
10179         mono_class_create_generic_2(), so we set the correct parent.
10180
10181 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
10182
10183         * reflection.c: allow getting attributes from ModuleBuilder
10184         (used by ikvm).
10185
10186 2004-11-17  Martin Baulig  <martin@ximian.com>
10187
10188         * class.c (mono_class_create_from_typedef): If a type parameter is
10189         inherited from an outer class, set its owner to that class.
10190
10191 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
10192
10193         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
10194           for (int*) written size. This fixes bug #69592.
10195
10196 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
10197
10198         * icall.c: Added IsAuthenticodePresnet internal call.
10199         * image.c|h: New function that check a MonoImage for an Authenticode
10200         signature in the certificate PE data directory.
10201         * security.c|h: New internal call to ask the runtime if an 
10202         Authenticode signature seems referenced in the PE header.
10203
10204 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
10205
10206         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
10207
10208         * reflection.c (mono_image_create_pefile): Free the assembly streams
10209         after writing out the assembly file.
10210
10211         * object.c (mono_runtime_run_main): Fix small memory leak.
10212
10213         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
10214         property access modifiers. Fixes #69389.
10215
10216 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
10217
10218         * domain.c, object.c, object-internals.h, domain-internals.h,
10219         object.h, marshal.c: keep dynamic code info per domain.
10220
10221 2004-11-15  Martin Baulig  <martin@ximian.com>
10222
10223         * class.c (mono_type_get_name_recurse): Put type arguments in
10224         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
10225         see bug #68387.
10226
10227 2004-11-15  Martin Baulig  <martin@ximian.com>
10228
10229         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
10230         (mono_class_setup_vtable): When computing `the_cname' for a
10231         generic instance, don't include the namespace since we'd otherwise
10232         add it twice.
10233
10234 2004-11-15  Martin Baulig  <martin@ximian.com>
10235
10236         * class.c (mono_class_create_generic): Changed return type to void.
10237         (mono_class_create_generic_2): New public function; setup
10238         `class->method', `class->field' and `class->interfaces' here
10239         instead of in mono_class_init().
10240
10241         * class.h (mono_class_create_generic): Moved to class-internals.h.
10242
10243 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
10244
10245         * reflection.c (mono_image_create_pefile): take a file HANDLE.
10246         rather than writing to memory, write to this file. Right now,
10247         we are just writting into a buffer, and copying that. However
10248         we can avoid the buffer later.
10249
10250         (mono_dynamic_stream_reset): new function
10251
10252         * icall.c, object-internals.h: update for the above.
10253
10254 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
10255
10256         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
10257         have been using gc'd memory. First it is slower, unlikely
10258         the comment in the source code said, secondly, it increases
10259         our footprint to do it in the gc.
10260
10261         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
10262         the method so that it does not have to copy to managed code.
10263
10264 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
10265
10266         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
10267
10268 2004-11-12  Martin Baulig  <martin@localhost>
10269
10270         * reflection.c (mono_image_create_token): Allow generic method
10271         definitions here, since they may appear in an `.override'; see
10272         gen-98/gen-99 for an example.
10273
10274 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
10275
10276         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
10277         #69365.
10278
10279         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
10280         descriptive.
10281
10282 2004-11-11  Martin Baulig  <martin@ximian.com>
10283
10284         * class.c (mono_class_setup_vtable): In an explicit interface
10285         implementation, the method name now includes the arity.
10286
10287 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
10288
10289         * object.c (mono_array_full_copy): Fix warning.
10290
10291 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
10292
10293         * appdomain.c: Removed look_for_method_by_name(). Use the new method
10294         mono_class_get_method_from_name() instead.
10295         
10296         * class-internals.h: Added two new types of wrappers. 
10297         Added MonoRemotingTarget enum. Added new trampoline function type, which
10298         takes an additional MonoRemotingTarget value as parameter, so it is
10299         possible to request a trampoline for a specific target.
10300         
10301         * class.c: Added new mono_class_get_method_from_name() method.
10302         
10303         * class.h: In MonoRemoteClass, we can have now to vtables, one for
10304         general remoting sinks and one specific for cross domain calls.
10305         
10306         * debug-helpers.c: Added new wrapper names.
10307         
10308         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
10309         of a remote class.
10310         
10311         * image.c: Porperly delete value objects form the remoting invoke hashtable.
10312         
10313         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
10314         with several other methods (mono_marshal_get_xappdomain_dispatch,
10315         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10316         and others) can generate a fast remoting wrapper for cross domain calls.
10317         More information can be found in docs/remoting.
10318         Other changes: Removed mono_find_method_by_name, and used
10319         mono_class_get_method_from_name instead.
10320         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10321         is stored in the remoting invoke hashtable.
10322         
10323         * marshal.h: published the new method for getting the xdomain wrapper,
10324         and also added a method for getting the adequate wrapper for a given
10325         method and target.
10326         
10327         * object-internals.h, object.c: Added a couple of methods for capying and
10328         cloning arrays.
10329         Modified mono_install_remoting_trampoline, which takes the new remoting
10330         trampoline that has a remoting target as parameter.
10331         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10332         will return the most suitable vtable for the target.
10333         Added mono_remote_class_vtable, which returns the vtable of a remote class
10334         (which can be the normal remoting vtable or the xdomain vtable).
10335         
10336         * threads.c: the xdomain invoke and dispatch wrappers must also be
10337         protected against interruptions.
10338
10339 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10340
10341         * icall.c: use memmove in BlockCopyInternal when the source and
10342         destination arrays are the same.
10343
10344 2004-11-09  Martin Baulig  <martin@ximian.com>
10345
10346         * class-internals.h (MonoGenericContainer): Removed `method' and
10347         `signature', replaced them with `is_method' and `is_signature'
10348         flags.  Added `context'.
10349
10350         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10351         instead of a `MonoGenericContainer *'.
10352
10353         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10354         for dynamic type parameters.
10355         (mono_metadata_load_generic_params): Setup `container->context'.
10356
10357         * reflection.c (mono_reflection_setup_generic_class): Setup
10358         `tb->generic_container->context'.
10359         (do_mono_reflection_bind_generic_parameters): Use
10360         mono_class_inflate_generic_type() to correctly inflate types,
10361         rather than using our own hack just for MONO_TYPE_VAR.
10362
10363 2004-11-09  Martin Baulig  <martin@ximian.com>
10364
10365         * class.c (mono_class_inflate_generic_method): Small fix; don't
10366         crash here.
10367
10368         * icall.c
10369         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10370         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10371         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10372         (ves_icall_Type_BindGenericParameters): Likewise.
10373         (ves_icall_Type_get_IsGenericInstance): Likewise.
10374         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10375         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10376         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10377         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10378
10379 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10380
10381         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10382         assembly versions and public key tokens. Fixes #69113.
10383
10384 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10385
10386         * metadata.c: fix bug introduced with the type cache changes
10387         on 2004-11-06.
10388
10389 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10390
10391         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10392         the MonoClass pointer instead of the token in exception clauses.
10393         * reflection.c: updates for the above and make the code not depend
10394         on the structure of MonoExceptionClause.
10395
10396 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10397
10398         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10399         Add support for dynamic assemblies. Fixes #69114.
10400
10401         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10402
10403 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10404
10405         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10406         since most only those methods use it. the code member of
10407         MonoMethodPInvoke was dead, so that can be removed too. Also,
10408         remove inline_count (again, not used), and move slot so that it
10409         can share bits with some other flags. This saves 8 bytes in the
10410         structure and gives us about 50 kb back for mcs helloworld.cs
10411
10412         * *.[ch]: Do naming changes for the above.
10413
10414         * loader.c (mono_method_get_header): Lazily init the header
10415         on first access.
10416         (mono_get_method_from_token): don't init the header here
10417         (mono_free_method): the header may never be allocated
10418
10419         Overall, this saves 150 kb of unmanaged allocations
10420         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10421         memory at runtime.
10422         
10423         * loader.c, loader.h (mono_method_get_header): new accessor.
10424
10425         * *.[ch]: use the above method. Prepares us to lazily load
10426         the header.
10427
10428         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10429         three warnings, which are actual bugs (see 69206).
10430
10431         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10432         unused. Saves a cool 4 bytes / method.
10433
10434 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10435
10436         * metadata.c (builtin_types): Add types for System.Object here.
10437         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10438         for a class or valuetype from klass->this_arg or klass->byval_arg.
10439
10440         On mcs for a hello world, this gets us down from 21836 MonoType's
10441         to 14560.
10442
10443         (mono_metadata_free_type): Account for the above change.
10444
10445 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10446
10447         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10448         exception instead of asserting if name is null.
10449         (ves_icall_System_AppDomain_GetData): Ditto.
10450
10451 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10452
10453         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10454         EnumBuilder.
10455
10456         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10457         Return NULL when the domain does not have entry_assembly set.
10458
10459         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10460         Add a 'resource_modules' argument.
10461         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10462
10463         * reflection.c (mono_reflection_create_runtime_class): Move setting
10464         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10465         for enums too.
10466
10467         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10468         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10469         Throw an ArgumentNullException if 'ptr' is null.
10470
10471         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10472         assemblies here. Fixes #69020.
10473
10474 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10475
10476         * reflection.c (build_compressed_metadata): Fix the previous patch for
10477         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10478         the stack.
10479
10480 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10481
10482         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10483         the cultures is false. Fixes #69090.
10484
10485         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10486         detected by valgrind.
10487         
10488         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10489         TypeResolve multiple times for the same type. Fixes #65577.
10490
10491 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10492
10493         * marshal.c: Avoid using ldftn to call managed functions. It is
10494         much slower than just a call.
10495
10496         * reflection.c (mono_module_get_object): free the basename we
10497         allocate here from glib.
10498         
10499         * reflection.c (ensure_runtime_vtable): make sure to free
10500         overrides.  Also, we were allocating an array of MonoMethod not an
10501         array of MonoMethod*.
10502
10503         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10504
10505         * image.c (mono_image_close): free image->guid here.
10506
10507 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10508
10509         * reflection.c: Fix some spec conformance issues with the PE file
10510         structures so mcs compiled apps run on the Net 2.0 beta.
10511
10512 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10513
10514         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10515         Implement this. Fixes #67264.
10516
10517         * debug-helpers.h debug-helpers.c marshal.c: Move 
10518         mono_find_method_by_name to debug-helpers.c.
10519
10520 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10521
10522         * object.c (mono_release_type_locks): type_initialization_hash is
10523         a GHashTable.
10524
10525         * reflection.c object.c object-internals.h: Fix warnings.
10526
10527         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10528         without accessors. Fixes #61561.
10529
10530         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10531         application base from the root domain if not set. Fixes #65641.
10532         (mono_runtime_init): Fix warning.
10533
10534 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10535
10536         * appdomain.c: call mono_thread_pool_init.
10537         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10538         of worker threads based on the number of CPUs and the environment
10539         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10540         for non-windows (windows) systems.
10541
10542 2004-10-27  Chris Toshok  <toshok@ximian.com>
10543
10544         * mono-debug-debugger.c (write_class): don't call mono_class_init
10545         here, as even with the check for (!klass->init_pending), we get
10546         into a situation where we're hitting cycles in class
10547         initialization.  Fixes #68816.
10548
10549 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10550
10551         * image.c: Avoid overwriting values in the loaded_images_hash when an
10552         assembly is loaded multiple times. Fixes #61152.
10553
10554         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10555         so multiple satellite assemblies for the same name can be loaded.
10556         Fixes #68259.
10557
10558         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10559         not NULL.
10560
10561         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10562         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10563
10564         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10565         pending finalizers are not invoked after the appdomain has been 
10566         unloaded. Fixes #67862.
10567
10568 2004-10-22  Martin Baulig  <martin@ximian.com>
10569
10570         * mono-debug-debugger.c
10571         (mono_debugger_runtime_invoke): Don't box valuetypes.
10572
10573 2004-10-22  Chris Toshok  <toshok@ximian.com>
10574
10575         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10576         don't hide private methods.
10577
10578 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10579
10580         * icall.c: Allows the runtime to "share" (when known) the public key
10581         token of an assembly. This avoid the need to recalculate the token 
10582         (from the public key) in managed code.
10583
10584 2004-10-21  Chris Toshok  <toshok@ximian.com>
10585
10586         * debug-helpers.c (append_class_name): argh, revert last patch.
10587         
10588 2004-10-21  Chris Toshok  <toshok@ximian.com>
10589
10590         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10591         not '/', so that it matches what the debugger uses to look up
10592         methods.
10593
10594 2004-10-21  Martin Baulig  <martin@ximian.com>
10595
10596         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10597         public method; this is called each time an exception is thrown and
10598         allows the debugger to use exception catch points.
10599
10600 2004-10-21  Martin Baulig  <martin@ximian.com>
10601
10602         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10603         the stack pointer and the exception object in some struct and pass
10604         that to the debugger.
10605
10606 2004-10-21  Chris Toshok  <toshok@ximian.com>
10607
10608         * mono-debug-debugger.c (do_write_class): add instance/static
10609         event support.  We don't expose "raise" or "other" yet.
10610         (event_is_static): new method.
10611
10612 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10613
10614         * mono-debug-debugger.c
10615         (mono_debugger_handle_exception): Remove
10616         bogus return value for fussy compilers.
10617
10618 2004-10-20  Martin Baulig  <martin@ximian.com>
10619
10620         * mono-debug-debugger.c
10621         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10622         (mono_debugger_handled_exception): Likewise.
10623
10624 2004-10-20  Martin Baulig  <martin@ximian.com>
10625
10626         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10627         MONO_DEBUGGER_EVENT_EXCEPTION.
10628
10629         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10630         public function to send the debugger a notification for an
10631         exception and inform it about a catch/finally clause.
10632
10633 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10634
10635         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10636         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10637         fix 2.95 build. 
10638
10639         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10640
10641 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10642
10643         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10644         marshalled as [In,Out]. Fixes #58325.
10645
10646 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10647
10648         * reflection.c (mono_method_body_get_object): Implement some fields.
10649
10650 2004-10-12  Martin Baulig  <martin@ximian.com>
10651
10652         * reflection.c (mono_reflection_bind_generic_parameters): Small
10653         fix, correctly retrieve our parent from a generic instance.
10654
10655 2004-10-12  Martin Baulig  <martin@ximian.com>
10656
10657         * metadata.c (mono_metadata_generic_param_equal): We always have
10658         an owner.
10659
10660         * class.c
10661         (mono_class_from_generic_parameter): We need to have an owner.
10662         (my_mono_class_from_generic_parameter): Likewise.
10663
10664         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10665         mono_reflection_create_generic_class() and added a new
10666         mono_reflection_setup_generic_class().  
10667         (mono_reflection_initialize_generic_param): If we're a nested
10668         generic type and inherited from the containing class, set our
10669         owner to the outer class.
10670
10671 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10672
10673         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10674
10675         * reflection.c (mono_method_body_get_object): New function to create
10676         a MethodBody object.
10677
10678         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10679
10680 2004-10-11  Martin Baulig  <martin@ximian.com>
10681
10682         * metadata.c (_mono_metadata_type_equal): Renamed to
10683         do_mono_metadata_type_equal() and made static.
10684
10685 2004-10-11  Martin Baulig  <martin@ximian.com>
10686
10687         * appdomain.c: Bump corlib version number to 28.
10688
10689 2004-10-10  Martin Baulig  <martin@ximian.com>
10690
10691         * class-internals.h
10692         (MonoGenericInst): Added `MonoGenericContainer *container'.
10693         (MonoGenericMethod): Likewise.
10694         (MonoGenericContext): Likewise.
10695         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10696
10697         * metadata.c
10698         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10699         (do_mono_metadata_parse_generic_inst): Likewise.
10700         (mono_metadata_parse_type_full): New public method.  This is the actual
10701         mono_metadata_parse_type() implementation - with an additional
10702         `MonoGenericContainer *' argument.
10703         (mono_metadata_parse_array_full): Likewise.
10704         (mono_metadata_parse_signature_full): Likewise.
10705         (mono_metadata_parse_method_signature_full): Likewise.
10706         (mono_metadata_parse_mh_full): Likewise.
10707         (mono_type_create_from_typespec): Likewise.
10708         (mono_metadata_interfaces_from_typedef_full): New public method;
10709         this is similar to the other _full() methods, but we take a
10710         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10711         (mono_metadata_parse_generic_param): Take an additional
10712         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10713         from that container.
10714         (mono_metadata_generic_param_equal): New static method to compare
10715         two type parameters.
10716         (_mono_metadata_type_equal): New static method; takes an
10717         additional `gboolean signature_only' argument - if true, we don't
10718         compare the owners of generic parameters.
10719         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10720         with a TRUE argument - do a signature-only comparision.
10721
10722         * loader.c: Use the new _full() methods and pass the
10723         MonoGenericContainer to them.
10724
10725         * object-internals.h (MonoReflectionTypeBuilder): Added
10726         `MonoGenericContainer *generic_container' field.
10727         (MonoReflectionMethodBuilder): Likewise.
10728
10729 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10730
10731         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10732         case initial images of dynamic assemblies.
10733
10734         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10735
10736         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10737
10738         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10739         length of event->other array.
10740         (typebuilder_setup_events): Ditto.
10741
10742         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10743         'assembly_by_name' and add an 'assemblies' list.
10744
10745         * assembly.h assembly.c: Add a new search hook for determining whenever
10746         an assembly is already loaded. Use this instead of searching in the
10747         loaded_assemblies list.
10748
10749         * domain.c appdomain.c: Implement the new search hook so loaded 
10750         assemblies are now scoped by appdomain. Fixes #67727.
10751
10752 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10753
10754         * threads.c (mono_thread_attach): Initialize synch_lock field so
10755         mono_thread_detach works again.
10756
10757         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10758         'lib' too. Fixes #63130.
10759
10760 2004-10-06  Jackson Harper  <jackson@ximian.com>
10761
10762         * culture-info-tables.h: regenerated.
10763
10764 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10765
10766         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10767         implemented by other interfaces in the result. Fixes #65764.
10768         
10769         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10770         Handle unloadable modules without crashing.
10771
10772         * image.c (load_modules): Revert the previous patch since modules must
10773         have a fixed index inside the array.
10774         
10775         * image.c (load_modules): Don't include native modules in the modules
10776         array.
10777
10778 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10779
10780         * reflection.h: Add param_defaults field.
10781
10782         * reflection.c: Add support for parameter defaults in dynamic methods.
10783         Fixes #64595.
10784
10785         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10786         an empty string when a type has no namespace. Fixes #64230.
10787
10788 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10789
10790         * tabledefs.h: Added "internal" security actions to support non-CAS
10791         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10792         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10793
10794 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10795
10796         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10797         constructor of abstract class. Fixes #61689.
10798
10799 2004-10-04  Martin Baulig  <martin@ximian.com>
10800
10801         * class-internals.h (MonoGenericContainer): New type.
10802         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10803         `MonoGenericContainer *generic_container'.
10804         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10805         `MonoGenericContainer *generic_container'.
10806
10807         * metadata.c (mono_metadata_load_generic_params): Return a
10808         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10809         removed the `num' argument.
10810
10811 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10812
10813         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10814         for dynamic images.
10815
10816         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10817         machine fields.
10818
10819         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10820
10821         * reflection.c: Save pe_kind and machine values into the generated
10822         image file.
10823
10824         * appdomain.c: Bump corlib version number.
10825
10826         * object-internals.h: Reorganize layout of LocalBuilder.
10827
10828         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10829         New helper function.
10830
10831         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10832         created MonoType for dynamic types. Fixes #66180.
10833
10834 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10835
10836         * threadpool.c: the ares hashtable needs a critical section around it.
10837         this prevents some nasty segfaults
10838
10839 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10840
10841         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10842         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10843         bug 67324).
10844         
10845 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10846
10847         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10848         
10849 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10850
10851         * image.c: Always canonicalize image file names, to avoid loading
10852         the same assembly twice when referenced using a relative path.
10853
10854 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10855
10856         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10857
10858         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10859
10860         * marshal.c: Fix warnings.
10861
10862 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10863
10864         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10865         attempting to marshal the delegate_trampoline as the method_addr.
10866         This patch has a static hashtable of marshalled delegates so that 
10867         we can map delegate_trampoline addresses back to delegates.  This
10868         allows a delegate passed to managed code to be passed back into native
10869         code.  Fixes #67039
10870
10871 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10872
10873         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10874
10875         * reflection.c (method_encode_code): Align method headers properly.
10876         Fixes #66025.
10877
10878 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10879
10880         * marshal.c: In the runtime invoke wrapper, reset the abort
10881         exception if it is cached. This avoids the automatic rethrowal of 
10882         the exception after the catch of the wrapper. Also check for pending
10883         interruptions before calling the managed method. This is done using
10884         the new method emit_thread_force_interrupt_checkpoint, since the
10885         normal checkpoint method is ignored when running the invoke wrapper.
10886         * object.c: If the abort exception is rethrown, set the abort_exc
10887         field of the thread, so it will be rethrown aftere every catch.
10888         * threadpool.c: Only run an interruption checkpoint if what has been
10889         requested is a stop of the thread (aborts will be ignored).
10890         * threads.c: By default, a thread will now never be interrumped while
10891         running the runtime invoke wrapper (this ensures that runtime_invoke
10892         will always return to the caller if an exception pointer is provided).
10893         There is a new special method mono_thread_force_interruption_checkpoint()
10894         to force an interruption checkpoint even if running a protected
10895         wrapper, which is used by the same runtime invoke wrapper to do a check
10896         at a safe point.
10897
10898 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10899
10900         * object.c, object-internals.h: Implemented mono_release_type_locks,
10901         which releases the cctor locks held by a thread.
10902         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10903         by a thread. Added mono_thread_exit() method to be used to safely stop
10904         a thread.
10905
10906 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10907
10908         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10909         Move null check before dereference.  Avoid indexing beyond the end
10910         of the 'modules' array.
10911
10912 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10913
10914         * metadata-internals.h (MonoImage): Add module_count field.
10915         * image.c (load_modules): Set image->module_count.
10916         (mono_image_load_file_for_image): Use image->module_count.
10917         * reflection.c (mono_image_load_module): Append to image->modules array 
10918         of dynamic assembly.
10919         (mono_module_get_object): Fix loop to actually increment index.
10920         Use image->module_count.
10921         * assembly.c (mono_assembly_load_references): Use image->module_count.
10922         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10923         Likewise.
10924
10925 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10926
10927         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10928         Avoid assert on generic types.
10929
10930 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10931
10932         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10933
10934         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10935
10936         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10937         function to convert a MarshalSpec structure to its managed counterpart.
10938
10939         * reflection.c: Fix warnings.
10940         
10941         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10942         field.
10943
10944         * icall.c (mono_create_icall_signature): Fix build.
10945
10946 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10947
10948         * icall.c: Add MakePointType icall.
10949
10950         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10951         warnings.
10952
10953 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10954
10955         * threadpool.c: reuse allocated slots in the queue.
10956
10957 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10958
10959         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10960
10961         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10962
10963         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10964         previous change.
10965
10966         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10967         ThrowOnUnmappableChar.
10968
10969         * icall.c (ves_icall_Type_GetPacking): New icall.
10970
10971 2004-09-24  Martin Baulig  <martin@ximian.com>
10972
10973         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10974
10975 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10976
10977         * appdomain.c:
10978         (mono_domain_set): allow setting a domain that is being unloaded.
10979         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10980         being unloaded.
10981
10982 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10983
10984         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10985         the GetCustomAttributes icall.
10986
10987 2004-09-23  Martin Baulig  <martin@ximian.com>
10988
10989         * object-internals.h (MonoReflectionGenericParam): Replaced
10990         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10991         with `guint32 attrs'.
10992
10993 2004-09-23  Martin Baulig  <martin@ximian.com>
10994
10995         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10996
10997 2004-09-23  Martin Baulig  <martin@ximian.com>
10998
10999         * object-internals.h (GenericParameterAttributes): New enum.
11000
11001 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
11002
11003         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
11004         
11005         * class.c (init_events): Fill out event->other field.
11006
11007         * class.c: Fix warnings.
11008
11009         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
11010
11011 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
11012
11013         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
11014         walk which doesn't supply the IL offset.
11015
11016 2004-09-22  Martin Baulig  <martin@ximian.com>
11017
11018         * reflection.c (mono_reflection_setup_internal_class): If we're
11019         System.ValueType, System.Object or System.Enum, set
11020         `klass->instance_size' and create the vtable.
11021         (mono_reflection_create_internal_class): If we're an enum type,
11022         get the base class from our current corlib.
11023
11024 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
11025
11026         * reflection.h (MonoResolveTokenError): New type.
11027
11028         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
11029         icall.
11030
11031         * icall.c: Add an 'error' argument to the ResolveToken icalls.
11032
11033 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
11034
11035         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
11036         Support also calling constructors, but only for already allocated objects.
11037
11038 2004-09-17  Geoff Norton <gnorton@customerdna.com>
11039
11040         * reflection.c (type_get_qualified_name): If the klass is null
11041         return the typename to avoid a NullRefEx.
11042         (encode_cattr_value): Get the qualified name of the boxed type,
11043         not the underlying enumtype.  Fixes #62984.
11044
11045 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
11046
11047         * marshal.c: Fix problems with previous checkin.
11048
11049 2004-09-21    <vargaz@freemail.hu>
11050
11051         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
11052         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
11053
11054         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
11055
11056 2004-09-21  Geoff Norton <gnorton@customerdna.com>
11057
11058         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
11059         should only return a type for pointers, arrays, and passbyref types.
11060         Fixes bug #63841.
11061
11062 2004-09-21  Martin Baulig  <martin@ximian.com>
11063
11064         * domain.c (mono_debugger_check_runtime_version): New public
11065         function.
11066
11067         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
11068
11069 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
11070
11071         * reflection.c: Added missing sort to the declarative security 
11072         attributes table. MS implementation stops seeing the attributes if the
11073         token number regress in the table (as shown by ildasm and permview).
11074
11075 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
11076
11077         * object-internals.h (MonoReflectionModule): Add 'token' field.
11078         
11079         * reflection.c (mono_reflection_get_token): Add support for Module
11080         and Assembly.
11081         (mono_module_get_object): Set 'token' field.
11082         (mono_module_file_get_object): Set 'token' field.
11083
11084         * icall.c: Add new Assembly and Module icalls.
11085
11086         * appdomain.c: Bump corlib version.
11087
11088 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
11089
11090         * loader.h loader.c class.h class.c: Add helper functions for obtaining
11091         tokens of metadata objects.
11092
11093         * reflection.h reflection.c (mono_reflection_get_token): New function
11094         to obtain the token of a metadata object.
11095
11096         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
11097
11098 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
11099
11100         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
11101         
11102         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
11103
11104 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
11105
11106         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
11107         * object-internals.h: Added 3 MonoArray* members to MonoReflection
11108         AssemblyBuilder to access the permissions set in the class lib.
11109         * reflection.c: Added security attributes encoding step in 
11110         mono_image_build_metadata.
11111         * tabledefs.h: Added new security actions defined in 2.0:
11112         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
11113
11114 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11115
11116         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
11117         macro parameter.
11118
11119 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11120  
11121         * locales.c: nullify the ICU_collator member of CompareInfo when it is
11122           finalized. There where random SIGSEVs at program termination, when
11123           an object being finalized was trying to do a string comparison and
11124           the current culture was already finalized.
11125  
11126 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11127
11128         * threads.c: call thread_cleanup before finishing the thread if we get
11129         there.
11130
11131 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
11132
11133         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
11134         assemblies from the parent. Fixes #65665.
11135
11136 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
11137
11138         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
11139         modifiers.
11140
11141 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
11142
11143         * reflection.h: add prototype for mono_get_dbnull_object
11144         * reflection.c: add prototypes for get_default_param_value_blobs 
11145         and mono_get_object_from_blob for fussier compilers
11146
11147 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
11148  
11149         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
11150         false deadlock checks in class initialization.
11151  
11152 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
11153
11154         * image.c (mono_image_addref): Fix comment.
11155
11156         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
11157         possible.
11158
11159 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
11160
11161         * reflection.c (mono_param_get_objects): Modified to return
11162         ParameterInfo.DefaultValue object.
11163
11164         (get_default_param_value_blobs):
11165         (mono_get_object_from_blob):
11166         (mono_get_dbnull_object): New helper routines. 
11167
11168         * object.c (mono_get_constant_value_from_blob): New helper routine
11169         carved out from get_default_field_value ()
11170
11171         * object-internals.h (mono_get_constant_value_from_blob): Added
11172         function declaration.
11173
11174 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
11175
11176         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
11177         referenced assemblies. Fixes #62135.
11178
11179         * exception.h exception.c (mono_get_exception_file_not_found2): New
11180         helper function.
11181
11182 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
11183
11184         * class.h class.c: Add mono_type_get_underlying_type ().
11185
11186 2004-09-09  Geoff Norton <gnorton@customerndna.com>
11187
11188         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
11189         Fix GetTypes() to support dynamically created assemblies.
11190
11191 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
11192
11193         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
11194         
11195         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
11196         previous patch.
11197
11198         * reflection.h reflection.c loader.c: Allow dynamic construction of
11199         pinvoke methods. Fixes #65571.
11200         
11201         * reflection.c (mono_reflection_get_type): Revert previous change since
11202         it causes regressions.
11203
11204 2004-09-08  Martin Baulig  <martin@ximian.com>
11205
11206         * class.c (class_compute_field_layout): Don't call
11207         mono_class_layout_fields() for open generic instances.
11208
11209 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
11210         * threads.c appdomain.c: fix typo in GC macro
11211
11212 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11213
11214         * threads.c: don't call mono_thread_detach() in start_wrapper(),
11215         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
11216
11217 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
11218
11219         * image.c (mono_image_close): Applied patch from 
11220         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
11221         assembly is loaded multiple times from data.
11222         
11223         * image.c (mono_image_open): Fix warning.
11224
11225 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11226
11227         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
11228         once. Fixes #58334.
11229         
11230         * reflection.c (mono_reflection_create_runtime_class): Initialize
11231         klass->nested_classes. Fixes #61224.
11232
11233 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11234
11235         * threads.c: sched_yield() on exit, to allow threads to quit.
11236
11237 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11238
11239         * object.c (mono_unhandled_exception): Remove leftover debug code.
11240
11241 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
11242
11243         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
11244
11245 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11246
11247         * marshal.c (emit_marshal_array): Really null terminate string arrays.
11248         
11249         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
11250
11251 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11252
11253         * marshal.c (emit_marshal_array): Null terminate string arrays.
11254         
11255         * marshal.c (raise_auto_layout_exception): Fix warning.
11256
11257         * reflection.c (mono_param_get_objects): Initialize the default value
11258         with DBNull.Value, not null. Fixes #62123.
11259
11260 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
11261
11262         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
11263         throw an exception with a cute explanation.
11264
11265 2004-09-06  Dick Porter  <dick@ximian.com>
11266
11267         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
11268         Close the new process's thread handle, as we don't use it.  The
11269         handle stays around forever otherwise.
11270
11271 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11272
11273         * object.c (arith_overflow): Fix warning.
11274
11275         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
11276         calling conventions in method refs. Fixes #65352.
11277
11278         * reflection.c: Fix warnings.
11279
11280 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11281
11282         * icall.c: Add a new icall for Array.Clear
11283
11284 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11285
11286         * object.c: When allocating an array, we have to throw
11287         an overflow exception if any of the lengths are < 0.
11288
11289 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11290
11291         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
11292         properly. Also move implementation of string array marshalling to 
11293         managed code. Fixes #42316.
11294
11295 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11296
11297         * assembly.c: provide more information when loading an assembly fails.
11298
11299 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11300
11301         * filewatcher.c: don't expect the development fam package to be
11302         installed.
11303
11304 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
11305
11306         * marshal.c: Make a copy of the signature cookie since it will be
11307         freed by the caller.
11308         
11309         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
11310
11311         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
11312
11313         * metadata.c (mono_metadata_free_marshal_spec): New function to free
11314         marshal specs.
11315
11316         * marshal.c: More refactoring.
11317         
11318         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11319         smaller functions.
11320
11321 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11322
11323         * object.c: In mono_message_invoke, fill the output parameter array after
11324           calling the managed method (it was done before the call). This fixes
11325           bug #59299.
11326
11327 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11328
11329         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11330         as well.
11331
11332 2004-09-02  Martin Baulig  <martin@ximian.com>
11333
11334         * class.c (mono_class_instance_size): Don't allow generic type
11335         definitions or open generic instances.
11336         (mono_class_array_element_size): If we're a value type, call
11337         mono_class_instance_size() on the original class.
11338
11339         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11340         handle generic instances.
11341
11342         * mono-debug-debugger.c (write_type): Handle generic instances
11343         like classes.
11344
11345 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11346
11347         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11348         the allocation request fails. Fixes #65089.
11349
11350         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11351         
11352         * object.c (mono_runtime_free_method): New function to free a dynamic
11353         method.
11354
11355         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11356         delegate trampoline.
11357
11358         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11359         with hasthis as dynamic,
11360
11361         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11362
11363         * domain.c (mono_jit_info_table_remove): New function to remove an
11364         entry from the jit info table.
11365
11366         * class-internals.h (MonoMethod): Add 'dynamic' field.
11367
11368         * loader.c: Fix warnings.
11369
11370 2004-09-01  Martin Baulig  <martin@ximian.com>
11371
11372         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11373         instead of mono_debugger_lock() because the latter one is a no-op
11374         unless running in the debugger.
11375
11376 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11377
11378         * class.c (class_compute_field_layout): Classes with auto-layout or
11379         reference fields are not blittable.
11380         
11381 2004-09-01  Dick Porter  <dick@ximian.com>
11382
11383         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11384         mono_image_get_filename() to get the assembly location.
11385
11386         * icall.c:
11387         * metadata.h: Fix compile warnings
11388
11389 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11390
11391         * class.c (class_compute_field_layout): System.Object is blittable.
11392
11393         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11394         as in/out. Fixes #59909.
11395
11396 2004-09-01  Martin Baulig  <martin@ximian.com>
11397
11398         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11399         mono_metadata_generic_inst_is_valuetype() if we're a generic
11400         instance to check whether our underlying type is a reference type.
11401
11402 2004-09-01  Martin Baulig  <martin@ximian.com>
11403
11404         * metadata.c (mono_type_size): If we're a generic instance, call
11405         mono_class_value_size() for value types.
11406
11407 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11408
11409         * marshal.c: Implement more custom marshalling functionality. Fixes
11410         #64915.
11411
11412 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11413
11414         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11415
11416 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11417
11418         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11419
11420         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11421
11422         * icall.c: Fix some warnings.
11423
11424         * threads.c (abort_appdomain_thread): Fix unref errors.
11425         (mono_thread_current): Fix THREAD_DEBUG define.
11426
11427 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11428
11429         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11430
11431         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11432
11433 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11434
11435         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11436         string arrays.
11437
11438 2004-08-28  Martin Baulig  <martin@ximian.com>
11439
11440         * metadata.c
11441         (mono_metadata_generic_inst_is_valuetype): New public function.
11442
11443         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11444         mono_metadata_generic_inst_is_valuetype() if we're a generic
11445         instance to check whether our underlying type is a valuetype.
11446
11447 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11448
11449         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11450         #63768.
11451
11452 2004-08-25  Martin Baulig  <martin@ximian.com>
11453
11454         * loader.c (mono_get_method_from_token): Abstract methods can also
11455         be generic and thus have type parameters.
11456
11457         * metadata-internals.h
11458         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11459
11460         * reflection.c (mono_image_get_generic_param_info): Don't create a
11461         metadata row, just add an entry to the `gen_params' array.
11462         (build_compressed_metadata): Sort the `gen_params' array and then
11463         actually create the metadata.
11464
11465 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11466
11467         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11468
11469 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11470
11471         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11472
11473 2004-08-24  Martin Baulig  <martin@ximian.com>
11474
11475         * class.cs (mono_class_is_subclass_of): Like an interface, a
11476         generic instance also derives from System.Object.
11477
11478 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11479
11480         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11481         custom modifiers to be in any order. Fixes #61990.
11482
11483 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11484
11485         * object.c: Register mono_object_new_fast icall.
11486         
11487         * object.c (mono_class_get_allocation_ftn): Return to calling
11488         mono_object_new_fast, since it seems faster to compute the object 
11489         size in unmanaged code than passing it as a parameter.
11490
11491         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11492
11493         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11494         this function with Boehm as the oom handler, so we don't have to check
11495         the result of GC_malloc.
11496
11497         * object.c: Remove checks for oom.
11498
11499         * object.h object.c (mono_class_get_allocation_ftn): New function to
11500         return the icall which can be used to allocate an instance of a given
11501         class. 
11502
11503         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11504
11505         * class-internals.h: Add 'enabled' field.
11506
11507 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11508
11509         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11510
11511 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11512         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11513         value 0x0010.
11514
11515 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11516
11517         * appdomain.c: use the Tls function for appdomain too,
11518         at Zoltan's request. Actually return in mono_context_get
11519
11520         * appdomain.c, profiler.c, threads.c: use __thread
11521
11522 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11523
11524         * appdomain.c threads.c: Call GC_CreateThread on windows.
11525
11526         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11527         multiple libraries since this don't work on windows.
11528
11529 2004-08-18  Martin Baulig  <martin@ximian.com>
11530
11531         * class-internals.h
11532         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11533         MonoMethodHeader.
11534
11535         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11536         MonoMethodNormal since we also need it for abstract and interface
11537         methods.
11538
11539         * reflection.c
11540         (build_compressed_metadata): Sort the GenericParam table.
11541         (mono_image_create_token): Added `gboolean create_methodspec'
11542         argument; this is false when generating a MethodImpl token.
11543         (reflection_methodbuilder_to_mono_method): Abstract and interface
11544         methods may also have generic parameters.
11545
11546 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11547
11548         * appdomain.c: thread local alloc
11549
11550 2004-08-17  Martin Baulig  <martin@ximian.com>
11551
11552         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11553
11554         * icall.c
11555         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11556         argument.
11557
11558         * class.c (mono_type_get_full_name): New public function.
11559         (mono_type_get_name): Don't include the type arguments.
11560
11561 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11562
11563         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11564         for inclusion into the mono executable.
11565
11566 2004-08-16  Martin Baulig  <martin@ximian.com>
11567
11568         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11569         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11570
11571 2004-08-14  Martin Baulig  <martin@ximian.com>
11572
11573         * class.c (dup_type): Also copy the `byref' field.
11574
11575 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11576
11577         * reflection.c (create_dynamic_mono_image): Revert the last change 
11578         since it breaks bootstrap.
11579
11580 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11581
11582         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11583
11584         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11585         not free them with g_free.
11586
11587 2004-08-11  Martin Baulig  <martin@ximian.com>
11588
11589         * reflection.c (mono_reflection_setup_internal_class): Also call
11590         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11591
11592 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11593
11594         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11595         called during default (first) AppDomain creation. Keep track of
11596         Evidence when loading assemblies.
11597
11598 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11599
11600         * opcodes.c, opcodes.h: reduce runtime relocations.
11601
11602 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11603
11604         * culture-info.h, locales.c: fixes and chages to sue the new
11605         optimized format of the locale data.
11606         * culture-info-tables.h: regenerated.
11607
11608 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11609         
11610         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11611
11612 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11613
11614         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11615         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11616         * domain-internals.h: icall declaration.
11617         * icall.c: icall registration.
11618         * object-internals.h: New fields in MonoAssembly for CAS.
11619
11620 2004-08-05  Duncan Mak  <duncan@ximian.com>
11621
11622         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11623         CEE_LDELEM_ANY.
11624
11625 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11626
11627         * reflection.c: fix to deal with object[] arrays in custom ctors
11628         (bug #62550).
11629
11630 2004-08-05  Martin Baulig  <martin@ximian.com>
11631
11632         * class.c (mono_class_array_element_size): Added support for
11633         generic instances and correctly handle "recursive" types.
11634
11635 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11636
11637         * assembly.c: Fix warnings.
11638
11639 2004-08-04  Martin Baulig  <martin@ximian.com>
11640
11641         * class.c
11642         (mono_type_get_name_recurse): Added `gboolean include_arity'
11643         argument specifying whether or not we should include the generic
11644         arity in the type name.
11645         (_mono_type_get_name): New static function.
11646         (mono_class_setup_vtable): If we're a generic instance, don't
11647         include the generic arity in the names of explicit method
11648         implementations.        
11649
11650 2004-08-03  Martin Baulig  <martin@ximian.com>
11651
11652         * class.c (mono_type_get_name_recurse): Enclose the generic type
11653         arguments in `<', '>'.
11654
11655 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11656
11657         * gc.c: make GC warning messages use the trace API, they are just
11658         noise to most of the users.
11659
11660 2004-08-03  Martin Baulig  <martin@ximian.com>
11661
11662         * debug-mono-symfile.c (read_string): Correctly read the string.
11663
11664 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11665
11666         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11667         
11668         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11669         icalls.
11670         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11671
11672 2004-07-30  Martin Baulig  <martin@ximian.com>
11673
11674         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11675         Reflect latest symbol writer changes.   
11676
11677 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11678
11679         * object.c: always create an object if null is passed
11680         to Invoke() where a valuetype is expected.
11681
11682 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11683
11684         * marshal.c (mono_marshal_init): make managed
11685         signatures match native ones better for 64bits.
11686
11687 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11688
11689         * appdomain.c: hack to build correctly the private bin path on windows.
11690         Fixes bug #61991.
11691
11692 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11693
11694         * assembly.c: Load mscorlib from the correct framework directory
11695           (mono/<version>/mscorlib.dll).
11696         * appdomain.h: Added prototypes for new functions.
11697         * internals.h: Added some prototypes.
11698         * domain.c: When initializing the runtime, get from the executable and
11699           the configuration files the runtime version that the app supports.
11700           Added support methods for reading app.exe.config. Added list of versions
11701           supported by the JIT. Added two new methods: mono_init_from_assembly,
11702           which initializes the runtime and determines the required version from
11703           the provided exe file, and mono_init_version, which initializes
11704           the runtime using the provided version.
11705         * icall.c: Get machine.config from version-specific directory.
11706         * reflection.c: When generating an image, embed the version number
11707           of the current runtime.
11708
11709 2004-07-28  Dick Porter  <dick@ximian.com>
11710
11711         * socket-io.c
11712         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11713         returned sockaddr size before creating the remote address object.
11714         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11715         61608.
11716
11717 2004-07-28  Dick Porter  <dick@ximian.com>
11718
11719         * locales.c (string_invariant_compare_char): Fix invariant char
11720         compares between upper and lower cases.  Fixes bug 61458.
11721
11722 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11723         
11724         * marshal.c: actually cache stelem.ref wrappers.
11725         
11726 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11727
11728         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11729         sections and remove the mono_cli_rva_map () function.
11730
11731 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11732
11733         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11734         by Geoff Norton (<gnorton@customerdna.com>).
11735
11736 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11737
11738         * class.c: fix class loads for pointer types (typeof(int) !=
11739         typeof(int*)).
11740
11741 2004-07-27  Martin Baulig  <martin@ximian.com>
11742
11743         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11744         reading the debugging information from an external ".mdb" file.
11745
11746 2004-07-24  Martin Baulig  <martin@ximian.com>
11747
11748         * reflection.c (mono_image_get_type_info): Only write a class
11749         layout entry if we actually have a size or a packing size.
11750
11751 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11752
11753         * reflection.c (type_get_fully_qualified_name): 
11754         insert cast to get type checking of ?: with non-gcc compilers
11755
11756 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11757
11758         * rand.c: use g_getenv for both lookups of
11759         MONO_EGD_SOCKET
11760
11761 2004-07-17  Martin Baulig  <martin@ximian.com>
11762
11763         * reflection.c (mono_reflection_bind_generic_method_parameters):
11764         Set `gmethod->reflection_info'.
11765
11766 2004-07-17  Martin Baulig  <martin@ximian.com>
11767
11768         * class.c (mono_class_create_from_typedef): Insert the newly
11769         created class into the hash table before computing the interfaces
11770         since we could be called recursively.
11771
11772 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11773
11774         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11775         function to implement stelem.ref in managed code
11776         * class-internals.h, debug-helpers.c: a new wrapper type
11777         for the above.
11778
11779 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11780
11781         * gc.c: allow GC handles to work even when no GC is compiled in.
11782         Fix part of bug #61134 (GetAddrOfPinnedObject).
11783
11784 2004-07-13  Peter Williams  <peter@newton.cx>
11785  
11786         * process.c (complete_path): Make sure we don't attempt to execute
11787         directories.
11788  
11789 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11790
11791         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11792           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11793           and will add/subtract the hour if needed
11794
11795 2004-07-12  Martin Baulig  <martin@ximian.com>
11796
11797         * reflection.c (mono_field_get_object): If we have
11798         `field->generic_info', take the attributes from
11799         `field->generic_info->generic_type'.    
11800
11801 2004-07-12  Martin Baulig  <martin@ximian.com>
11802
11803         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11804         This function must be called before initializing the runtime.
11805         (mono_debug_init_1): New function; call this after initializing
11806         the runtime, but before loading the assembly.  It tells the
11807         debugger to load corlib and the builtin types.
11808
11809         * mono-debug-debugger.c: Did some larger changes in the debugging
11810         code; support recursive class declarations, make sure we actually
11811         add all classes.
11812
11813 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11814
11815         * debug-helpers.c: undo my previous patch and fixed the real issue in
11816         ../mini/exceptions-x86.c
11817
11818 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11819
11820         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11821         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11822         called from other .cctors.
11823
11824 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11825
11826         * loader.c: Removed the mono_loader_wine_init hack now that we are
11827         doing a managed version of Windows.Forms.
11828
11829 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11830
11831         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11832         threadpool.c, threads.c: remove static data from rootset.
11833
11834 2004-07-09  Dick Porter  <dick@ximian.com>
11835
11836         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11837         Don't do any more processing if the matched length was 0.  It was
11838         increasing the size of the string before.  Fixes bug 61167.
11839
11840 2004-07-09  Dick Porter  <dick@ximian.com>
11841
11842         * socket-io.h:
11843         * socket-io.c
11844         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11845         Add support for SO_PEERCRED if its available.
11846
11847 2004-07-09  Peter Bartok <pbartok@novell.com>
11848         * loader.c: winelib.exe.so error message is now only displayed if
11849         MONO_DEBUG is set. To help us avoid questions when people are trying
11850         out the new Managed.Windows.Forms.
11851
11852 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11853
11854         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11855         for isinst and castclass wrappers.
11856
11857         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11858         to libmetadata from the JIT, so they could be used by the marshalling
11859         code and the interpreter.
11860
11861         * marshal.c: Register marshalling related JIT icalls here instead of
11862         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11863         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11864
11865         * metadata.h: Remove unneeded marshalling conversions.
11866
11867         * opcodes.c: Update for new opcodes.
11868         
11869 2004-07-08  Martin Baulig  <martin@ximian.com>
11870
11871         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11872         (mono_debug_get_domain_data): Make this function static.
11873
11874 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11875
11876         * gc.c, object.h: add nice GC handle API for embedders.
11877
11878 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11879
11880         * reflection.c: more changes for the new api
11881
11882         * object.c: When we reflect on a field w/ a constant value, it
11883         will not have a memory location, so we must access metadata. Also,
11884         allow easier reading of strings so that we can read them from
11885         the constant data.
11886
11887         * class.c (mono_class_layout_fields): no need for literal fields here.
11888
11889         * class-internals.h: api changes for const fields
11890
11891         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11892
11893 2004-07-06  Martin Baulig  <martin@ximian.com>
11894
11895         * mono-debug.h: Increment version number to 44.
11896
11897         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11898         now a gpointer, rewrote this whole method.
11899
11900         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11901         function.  Add information about the wrapper in a new "misc table".
11902
11903         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11904         for the new misc table.
11905
11906 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11907
11908         * metadata-internals.h image.c: Add a cache for helper signatures.
11909
11910         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11911
11912 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11913
11914         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11915         delegates from a delegate. Fixes #61033.
11916         
11917         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11918         marshalling of stringbuilder arrays. Fixes #59900.
11919
11920 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11921
11922         * icall.c: Add EnumBuilder:setup_enum_type icall.
11923
11924 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11925
11926         * icall.c: Added a new icall for the property version of
11927         OffsetOfStringData.
11928
11929 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11930
11931         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11932         it has a constant size across platforms.
11933
11934         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11935         stack trace.
11936
11937 2004-06-29  Martin Baulig  <martin@ximian.com>
11938
11939         * mono-debug.c (mono_debug_add_method): Protect the whole function
11940         in mono_debugger_lock(), not just parts of it.
11941
11942 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11943
11944         * reflection.c: make sure padding bytes in heaps are zeroed.
11945
11946 2004-06-24  David Waite  <mass@akuma.org>
11947
11948         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11949         image.c, loader.c, locales.c, marshal.c, metadata.c,
11950         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11951         string-icalls.c, threads.c: change to C90-style comments from C99 /
11952         C++ -style
11953
11954 2004-06-24  Dick Porter  <dick@ximian.com>
11955
11956         * threads.c
11957         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11958         return createdNew.  Fixes bug 60412.
11959
11960         * threads-types.h: 
11961         * icall.c: Add createdNew parameter to CreateMutex icall
11962
11963 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11964
11965         * reflection.c, object-internals.h: save default value in params.
11966
11967 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11968
11969         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11970         no need to build a new path combining that with the application base.
11971         Fixes bug #60442.
11972
11973 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11974
11975         * reflection.c: fixed minor standard compliance issues.
11976
11977 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11978
11979         * reflection.c: fixed issue with encoding some custom attributes
11980         (arrays in properties and fields, bug #60411).
11981
11982 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11983
11984         * reflection.c: fix start address when copying the public key token.
11985
11986 2004-06-23  Martin Baulig  <martin@ximian.com>
11987
11988         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11989         the `exc' object in a static object to put it into the GC's root set.
11990
11991 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11992
11993         * reflection.c: make mono_reflection_setup_internal_class ()
11994         callable a second time to setup a new parent class.
11995
11996 2004-06-23  Dick Porter  <dick@ximian.com>
11997
11998         * threads.c: Check for WAIT_IO_COMPLETION return values.
11999
12000 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
12001
12002         * appdomain.c: Removed the g_free on the public key token. Now copy 
12003         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
12004         * assembly.c: Added public key token string value when loading 
12005         assemblies. Fix bug #60439.
12006         * icall.c: Added missing informations (like public key) in 
12007         GetReferencedAssemblies. Fix #60519.
12008         * image.h: Changed definition for public key token from const char*
12009         public_tok_value to guchar public_key_token [17];
12010         * reflection.c: Updated for changes to public key token.
12011
12012 2004-06-22  Lluis Sanchez Gual
12013
12014         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
12015         for the field in base classes.
12016
12017 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12018
12019         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
12020         mark headers as not supported, they are installed only for use by the
12021         debugger.
12022
12023 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
12024
12025         * *.c, *.h: avoid namespace pollution in public headers.
12026
12027 2004-06-21  Martin Baulig  <martin@ximian.com>
12028
12029         * exception.c (mono_get_exception_security): It's in
12030         "System.Security", not in "System".
12031
12032         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
12033         the exception classes.
12034
12035 2004-06-21  Martin Baulig  <martin@ximian.com>
12036
12037         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
12038         Protect the exception object from being finalized.
12039
12040 2004-06-21  Martin Baulig  <martin@ximian.com>
12041
12042         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
12043         public function.
12044
12045 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
12046
12047         * reflection.c: Load the assembly in mono_reflection_type_from_name,
12048         if it was not loaded before. Fix parts of #60439.
12049
12050 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
12051
12052         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
12053         code that was broken since Ben's change: wrappers are now
12054         dependent on the method signature only again.
12055
12056 2004-06-21  Martin Baulig  <martin@ximian.com>
12057
12058         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
12059         added interface support.
12060
12061 2004-06-21  Martin Baulig  <martin@ximian.com>
12062
12063         * class.c (mono_vtable_get_static_field_data): New public method.
12064
12065 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
12066
12067         * filewatcher.c : Windows build fix to be compliant with API changes.
12068
12069 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12070
12071         * class.h, class.c: more accessors.
12072         * metadata.h, metadata.c: prepare for hiding MonoType and
12073         MonoMethodSignature: people should use the accessors from now on
12074         outside of the tree.
12075
12076 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12077
12078         * *.c, *.h: more API cleanups.
12079
12080 2004-06-18  Jackson Harper  <jackson@ximian.com>
12081
12082         * assembly.c: Trace loading assemblies.
12083         * loader.c: Trace loading native libraries.
12084         * mono-config.c: Trace loading config files.
12085         
12086 2004-06-18  Dick Porter  <dick@ximian.com>
12087
12088         * locales.c: Tell ICU the lengths of strings, it can cope with
12089         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
12090
12091 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
12092
12093         * image.c: swapped name/filename;
12094
12095 2004-06-18  Martin Baulig  <martin@ximian.com>
12096
12097         * mono-debug-debugger.c (write_class): Write the parent class at
12098         the end of the header.
12099
12100 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
12101
12102         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
12103
12104 2004-06-17  Raja R Harinath  <rharinath@novell.com>
12105
12106         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
12107         (bundle_obj): New conditional define.
12108         (BUILT_SOURCES): Remove.
12109         ($(bundle_srcs)): Make parallel-make safe.
12110         (libmonoruntime_la_LIBADD): Make unconditional.
12111         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
12112         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
12113
12114 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
12115
12116         * culture-info-tables.h: It was inconsistent with the latest
12117           supp info files.
12118
12119 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
12120
12121         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
12122         be loaded.
12123
12124         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
12125         with gcc 2.95.
12126
12127 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
12128
12129         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
12130         cleaned up public header threads.h.
12131
12132 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
12133
12134         * Makefile.am, *.c, *.h: more API cleanups.
12135
12136 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
12137
12138         * Makefile.am: removed monosn from compilation.
12139         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
12140         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
12141         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
12142         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
12143         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
12144         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
12145
12146 2004-06-15  Jackson Harper  <jackson@ximian.com>
12147
12148         * assembly.c: Make locales lower case when searching the GAC for
12149         assemblies. gacutil will always make locales lowercase when
12150         installing so this effectively makes them case insensitive.
12151         
12152 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
12153
12154         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
12155         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
12156           parameter which allows to choose whether the wait can be interrupted or 
12157           not. Also added the method mono_monitor_enter(), which locks the monitor
12158           using an infinite wait and without allowing interruption.
12159           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
12160           interrupted.
12161         * object.h: Added new fields in MonoThread. suspend_event holds the event
12162           used to susped/resume the thread. synch_lock is the lock object to use for
12163           modifying the thread state.
12164         * threads.c: Use the new synch_lock object for locking, instead of "this",
12165           which can generate deadlocks.
12166           Moved thread state change in Thread.Sleep and Thread.Join from managed
12167           to unmanaged code. This avoids a deadlock when the thread was suspended
12168           just after acquiring the thread lock.
12169           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
12170           Implemented Thread.Suspend using an event instead of ThreadSuspend,
12171           which is not fully implemented in the io-layer.
12172         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
12173
12174 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
12175
12176         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
12177         threads-types.h: more API cleanups.
12178
12179 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
12180
12181         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
12182         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
12183         threadpool.c, threads.c: first pass at the exported API cleanup.
12184
12185 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
12186
12187         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
12188
12189 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12190
12191         * icall.c: added internalGetHome.
12192
12193 2004-06-14  Dick Porter  <dick@ximian.com>
12194
12195         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
12196         possible to return successfully when '.' or '..' were the only
12197         entries in a directory, but were skipped.  The MonoIOStat was not
12198         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
12199         Fixes bug 59574.
12200
12201 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
12202
12203         * reflection.c: make binaries run on .Net 1.1 by default.
12204
12205 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12206
12207         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
12208
12209 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
12210
12211         * marshal.c: keep track of struct size with explicit layout
12212         (bug #59979).
12213
12214 2004-06-12  Martin Baulig  <martin@ximian.com>
12215
12216         * mono-debug-debugger.c: Comment out a debugging g_message().
12217
12218 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12219
12220         * reflection.c, reflection.h: do not free custom attrs that are cached.
12221         * icall.c: use braces to make code clearer.
12222
12223 2004-06-11  Martin Baulig  <martin@ximian.com>
12224
12225         * class.h (MonoInflatedField): New type.
12226         (MonoClassField): Replaced `MonoType *generic_type' with
12227         `MonoInflatedField *generic_info'.
12228
12229         * icall.c
12230         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
12231
12232 2004-06-11  Martin Baulig  <martin@ximian.com>
12233
12234         * reflection.c (mono_image_create_method_token): Correctly encode
12235         varargs methods.
12236
12237 2004-06-11  Martin Baulig  <martin@ximian.com>
12238
12239         * metadata.c (mono_metadata_parse_method_signature): When parsing
12240         a MethodDef which has VarArgs, also set sentinelpos if we don't
12241         have any parameters.
12242
12243 2004-06-11  Martin Baulig  <martin@ximian.com>
12244
12245         * verify.c (mono_method_verify): In CEE_CALL, use
12246         mono_method_get_signature() to get the method's signature, unless
12247         we're a PInvoke method.
12248
12249 2004-06-10  Jackson Harper  <jackson@ximian.com>
12250
12251         * assembly.c: Use <path>/lib/mono/gac for the extra paths
12252         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
12253         logical name as the supplied path is just a prefix to the gac not
12254         the direct path to it.
12255         
12256 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
12257
12258         * reflection.c: make the token for a created method match
12259         the token of the MethodBuilder it was created from
12260         (IKVM requires this behaviour now).
12261
12262 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
12263
12264         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
12265         reflection.c, socket-io.c: leak fixes.
12266
12267 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
12268
12269         * icall.c: handle sentinel pos in vararg methods in position different
12270         from 0.
12271
12272 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12273
12274         * culture-info-tables.h: freshly generated.
12275
12276 2004-06-09  Martin Baulig  <martin@ximian.com>
12277
12278         * loader.c (mono_get_method_constrained): Call `mono_class_init
12279         (constrained_class)'.   
12280
12281 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
12282
12283         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
12284         any methods. Fixes #59629.
12285
12286 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12287
12288         * culture-info-tables.h: reflecting locale-builder updates.
12289
12290 2004-06-08  Dick Porter  <dick@ximian.com>
12291
12292         * object.h:
12293         * locales.c: Fixed compile warnings, including a real bug in
12294         CompareInfo_internal_compare.
12295         
12296 2004-06-08  Dick Porter  <dick@ximian.com>
12297
12298         * locales.c
12299         (ves_icall_System_Globalization_CompareInfo_internal_index):
12300         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12301         Double-check the resuls of usearches, because ICU currently
12302         ignores most of the collator settings here.  Fixes bug 59720.
12303         
12304 2004-06-08  Dick Porter  <dick@ximian.com>
12305
12306         * locales.c
12307         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12308         Fix memory leak and segfault-causing typo.  No idea how this one
12309         lasted so long without being noticed.
12310
12311 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
12312
12313         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
12314         any methods. Fixes #59629.
12315
12316 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12317
12318         * assembly.c:
12319         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12320         own the critical section before). Removed dead code (that's done
12321         in the preload hook).
12322
12323         (mono_assembly_load_with_partial_name): call the preload hook.
12324
12325 2004-06-08  Martin Baulig  <martin@ximian.com>
12326
12327         * metadata.c (mono_metadata_signature_alloc): Default
12328         `sentinelpos' to -1.
12329
12330         * reflection.c (mono_image_get_array_token): Likewise.
12331
12332 2004-06-08  Martin Baulig  <martin@ximian.com>
12333
12334         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12335
12336         * metadata.c (mono_metadata_parse_method_signature): When parsing
12337         a MethodDef which has VarArgs, set sentinelpos.
12338
12339         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12340         `gint16' since we're using -1 for non-varargs methods.
12341
12342         * reflection.c
12343         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12344         (method_encode_signature): Added varargs support.
12345         (method_builder_encode_signature): Likewise.
12346         (mono_image_get_varargs_method_token): New static method.
12347         (mono_image_create_method_token): New public method; this is
12348         called via an icall instead of mono_image_create_token() when
12349         calling a varargs method.       
12350
12351 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12352
12353         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12354
12355 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12356
12357         * culture-info-tables.h : Reflecting the latest locale-builder that
12358           fixed empty array representation ({} to {0}).
12359
12360 2004-06-07  Jackson Harper  <jackson@ximian.com>
12361
12362         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12363         looking up extra gac paths. This allows MONO_GAC_PATH to act
12364         exactly like a prefix.
12365         
12366 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12367
12368         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12369         type name before modifying it. Fixes #59405.
12370
12371 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12372
12373         * culture-info.h: added fields for "all datetime patterns".
12374         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12375           _construct_datetime_format ()): fill xxx_patterns fields.
12376         * object.h: added fields for "all datetime patterns" to
12377           MonoDateTimeFormatInfo.
12378         * culture-info-tables.h: reflecting locale-builder updates.
12379
12380 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12381
12382         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12383         the event has no add and remove methods. Fixes #59629.
12384
12385 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12386
12387         * object.c: Fixed possible integer overflow when allocating large
12388         strings.
12389
12390 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12391
12392         * culture-info-tables.h: reflecting locale-builder updates.
12393
12394 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12395
12396         * culture-info-tables.h: reflecting locale-builder updates.
12397
12398 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12399
12400         * culture-info-tables.h: reflecting locale-builder updates.
12401
12402 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12403
12404         * threads.c: Made Thread.Sleep abortable.
12405
12406 2004-06-02  Martin Baulig  <martin@ximian.com>
12407
12408         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12409
12410         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12411
12412 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12413
12414         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12415
12416 2004-05-30  Jackson Harper  <jackson@ximian.com>
12417
12418         * reflection.c: Do not hardcode assembly versions or public key
12419         tokens anymore. All of this except the corlib section was dead
12420         code anyways.
12421         
12422 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12423
12424         * object.c (mono_runtime_invoke_array): Automatically create boxed
12425         objects for byref valuetypes if needed. Fixes #59300.
12426         
12427         * object.c (mono_method_return_message_restore): Handle 
12428         MONO_TYPE_OBJECT as well.
12429
12430 2004-05-28  Jackson Harper  <jackson@ximian.com>
12431
12432         * reflection.c: The modified type encoding was causing build
12433         problems. Reverted for now.
12434         
12435 2004-05-28  Jackson Harper  <jackson@ximian.com>
12436
12437         * reflection.c/h: Take an assembly ref so that we dont create
12438         fully qualified names when encoding types in the same assembly as
12439         the custom attribute being emitted.
12440         * appdomain.c: Increment version number.
12441         
12442 2004-05-26  Duncan Mak  <duncan@ximian.com>
12443
12444         * icall.c
12445         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12446         Set the full version number (major, minor, build, revision).
12447
12448 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12449
12450         * marshal.c (emit_struct_conv): increment src/dst after blit
12451         (mono_marshal_get_managed_wrapper,
12452         mono_marshal_get_native_wrapper): make sure we have marshalling
12453         info before marshalling params (info computation affects
12454         blittable)
12455
12456         * class.c (class_compute_field_layout): correctly deal with
12457         blittable
12458         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12459         value types (as per what windows dows by default)
12460         (mono_class_setup_mono_type): System.ValueType is blittable
12461         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12462         blittable
12463
12464         * marshal.c (mono_marshal_load_type_info): flag types  as
12465         non-blittable if the native layout doesn't match the managed
12466         layout
12467
12468 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12469
12470         * appdomain.c: don't add stuff in the private search path that is
12471         above the application base. If application base is not set, there's
12472         no private search path.
12473
12474 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12475
12476         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12477         byref struct arguments in native->managed marshalling.
12478
12479 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12480
12481         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12482         cache methods using signature (special case for methods
12483         that are value type or string class)
12484         
12485         * image.c (mono_image_close): clean up allocated GSList's
12486         in runtime_invoke_cache.
12487
12488 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12489
12490         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12491         there's no MONO_CFG_DIR environment variable defined.
12492
12493 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12494
12495         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12496
12497 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12498
12499         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12500           is interrumped.
12501         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12502           before waiting for it, and call CloseHandle after the wait to unref it.
12503           This will make sure that handles are not disposed too early.
12504
12505 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12506
12507         * appdomain.c:
12508         * appdomain.h:
12509         * icall.c: removed
12510         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12511         needed now.
12512
12513         * object.c: se the application_base only for the domain that runs
12514         Main. Fixes bug #59216,
12515
12516 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12517
12518         * appdomain.c:
12519         * object.c: only the domain in which Main is run have
12520         SetupInformation.ConfigurationFile set, so moved a few lines from
12521         appdomain.c to object.c.
12522
12523 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12524
12525         * appdomain.c: we tried to load [name].(dll|exe), but according
12526         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12527         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12528         There's a test case attached to bug #58922.
12529
12530 2004-05-27  Dick Porter  <dick@ximian.com>
12531
12532         * icall.c:
12533         * file-io.c: Implemented icalls for locking and unlocking regions
12534         in a file.
12535         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12536         FALSE on error (fixes both compiler warning and real bug.)
12537
12538 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12539
12540         * culture-info-tables.h: reflecting locale-builder updates.
12541
12542           (Added missing ChangeLog entry for 05/26)
12543
12544 2004-05-27  Jackson Harper  <jackson@ximian.com>
12545
12546         * locales.c: Fix some cut and paste errors.
12547         
12548 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12549
12550         * mono-config.c: set the correct path for config. directory on windows.
12551
12552 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12553
12554         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12555           on win32.
12556
12557 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12558
12559         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12560         from pinvoke functions.
12561         
12562         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12563
12564 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12565
12566         * culture-info-tables.h: reflecting locale-builder updates.
12567
12568 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12569
12570         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12571         #59086.
12572
12573 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12574
12575         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12576         * icall.c: Modified icalls for RNG.
12577         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12578         Windows (CryptoAPI).
12579
12580 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12581
12582         * locales.c: Fix build.
12583
12584 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12585
12586         * culture-info-tables.h: reflecting locale-builder updates.
12587
12588 2004-05-25  Jackson Harper  <jackson@ximian.com>
12589
12590         * locales.c: When creating the current culture use the $LANGs
12591         specific culture. So DateTimeFormat and NumberFormat entries are created.
12592         
12593 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12594
12595         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12596         a char array as parameter.
12597
12598 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12599
12600         * image.c: In mono_image_open(), always use an absolute path name to
12601           look for already loaded images.
12602
12603 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12604
12605         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12606         missing in the windows build (like older cygwin include files).
12607
12608 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12609
12610         * icall.c: Fixed check for possible integer overflow in Buffer_
12611         BlockCopy icall. Replaced comments style // by /* */.
12612
12613 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12614
12615         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12616         
12617         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12618         check after MONO_VTADDR. Fixes pinvoke2.exe.
12619
12620         * marshal.h marshal.c metadata.h: Add beginnings of support for
12621         ftnptr -> delegate marshalling.
12622
12623 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12624
12625         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12626         * threads.c: Fix warnings.
12627
12628 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12629
12630         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12631         * icall.c: Registered icalls for Suspend and Resume.
12632         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12633           Thread.Abort.
12634         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12635         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12636         * process.c: Use WaitForSingleObjectEx.
12637         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12638           checkpoints.
12639         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12640           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12641           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12642           background threads. Added basic support for Abort in Windows.
12643           Start new threads using a managed delegate invoke wrapper. This wrapper
12644           has an interruption checkpoint that is needed since an interruption
12645           can be requested before the thread leaves the unmanaged code that starts 
12646           the thread.
12647         * marshal.c: Added interruption checkpoint after every native call, and
12648           also before managed calls for wrappers called from unmanaged code to
12649           go into managed code.
12650         * object.h: Added new field in MonoThread to keep track of interruption
12651           requests.
12652
12653 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12654
12655         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12656         calls.
12657
12658 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12659
12660         * appdomain.c:
12661         * assembly.c:
12662         * gc.c:
12663         * locales.c:
12664         * mono-config.c:
12665         * rand.c: getenv -> g_getenv (windows!)
12666
12667         * process.c: complete_path is also used on non-windows platforms.
12668
12669 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12670
12671         * icall.c: new signature for Process_Start.
12672
12673         * process.[ch]: new signature for Process_Start. If we're on windows
12674         and UseShellExecute is false, we have to search for the program by
12675         ourselves if we don't get a full path.
12676
12677 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12678
12679         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12680         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12681
12682 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12683
12684         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12685         Fixes bug #58373.
12686
12687 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12688
12689         * process.c: use double quotes to quote program name and arguments on
12690         windows. Fixes bug #58575.
12691
12692 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12693
12694         * file-io.c: don't return "." and ".." when using windows Find*File.
12695
12696 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12697
12698         * marshal.c: Don't pass wrappers to message init because method 
12699         addressed used to lookup metadata. part of remoting[2|3] fix.
12700
12701 2004-05-15  Jackson Harper  <jackson@ximian.com>
12702
12703         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12704         path is essentially the same as MONO_PATH except that it points to
12705         GACs instead of lib directories.
12706         * loader.h: The user gac is gone so we dont need function to
12707         enable/disable it.
12708         * mono-config.c: user gac option is now gone.
12709         
12710 2004-05-15  Jackson Harper  <jackson@ximian.com>
12711
12712         * culture-info.h: Make defines more consistent, add calendar data
12713         to the culture info table.
12714         * culture-info-tables.h: Add basic calendar data. Basically
12715         everyone gets default gregorian until all the data is
12716         updated.
12717         * locales.c: Use the new consistent defines. Set calendar data for
12718         culture info objects.
12719         * object.h: add a field for calendar data to CultureInfo
12720         
12721 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12722
12723         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12724         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12725         a signature.
12726         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12727         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12728         an extra param that is the pointer of the method to invoke. The IL for
12729         the invoke method is no longer specific to the method, but to the
12730         signature of the method. Thus, we can share the same code for multiple
12731         methods. This reduces the number of methods that have to be compiled.
12732
12733 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12734
12735         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12736
12737         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12738
12739         * icall.c: Optimize Buffer.BlockCopy.
12740
12741 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12742
12743         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12744         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12745         quote). Changed them to "MMMM yyyy".
12746
12747 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12748
12749         * rand.c
12750         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12751
12752 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12753
12754         * reflection.h: Updated after changes to managed structures.
12755
12756         * appdomain.c: Bump corlib version.
12757
12758 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12759
12760         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12761         windows.
12762
12763 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12764
12765         * Makefile.am: link to ../os/libmonoos.la on windows.
12766
12767         * assembly.c:
12768                 -If MONO_DEBUG, warn about non-existing directories in
12769                 MONO_PATH.
12770                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12771                 compile time variable.
12772                 -Removed init_default_path and call mono_set_rootdir from
12773                 libmonoos.a instead (windows only).
12774
12775         * assembly.h: declare mono_assembly_getrootdir().
12776
12777         * domain.c:
12778         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12779
12780         * loader.c: s/getenv/g_getenv/
12781
12782 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12783
12784         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12785
12786         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12787
12788         * metadata.h: Add new marshalling conversions.
12789
12790         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12791         function.
12792
12793         * reflection.c (mono_reflection_get_type): Lookup the type in all
12794         modules of a multi-module assembly. Fixes #58291.
12795
12796 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12797
12798         * threads.c: Before aborting a background, set the StopRequested
12799         state.  This avoids throwing the Abort exception.
12800         In mono_thread_manage, don't continue with the shutdown until all
12801         aborted threads have actually stopped.
12802
12803 2004-05-10  Jackson Harper  <jackson@ximian.com>
12804
12805         * locales.c: Remove the modifier from culture names.
12806         
12807 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12808
12809         * Makefile.am: monosn is not installed any more. It has been deprecated
12810         in favor of sn.
12811
12812 2004-05-07  Jackson Harper  <jackson@ximian.com>
12813
12814         * locales.c
12815         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12816         Fix array construction, add bailout if the length is 0.
12817
12818 2004-05-07  Dick Porter  <dick@ximian.com>
12819
12820         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12821         machine doesn't have a DNS entry.  Patch by Urs Muff
12822         (umuff@quark.com), fixes bug 57928.
12823
12824 2004-05-06  Jackson Harper  <jackson@ximian.com>
12825
12826         * reflection.c: Handle null PublicTokens properly. alloc mem for
12827         assembly names culture so we dont crash when freeing it.
12828         
12829 2004-05-06  Jackson Harper  <jackson@ximian.com>
12830
12831         * assembly.c: Check the usergac when loading with partial names.
12832         
12833 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12834
12835         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12836         does nothing for now (not required for Linux/Windows) but the class
12837         library can call it (and a newer or modified runtime could need it).
12838         * icall.c: Registred icall.
12839
12840 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12841
12842         * loader.c: prints a message on module loading error we set MONO_DEBUG
12843         environment variable.
12844
12845 2004-05-05  Jackson Harper  <jackson@ximian.com>
12846
12847         * appdomain.c: Handle PublicKeyToken=null properly.
12848         
12849 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12850
12851         * environment.c|h: Added icall ves_icall_System_Environment_
12852         GetOSVersionString to get the current OS version as a string.
12853         * icall.c: Registred icall.
12854
12855 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12856
12857         * object.c: in mono_object_get_virtual_method(), take into account that
12858         non-virtual methods don't have a slot in the vtable. Check needed when
12859         the object is a proxy.
12860
12861 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12862
12863         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12864         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12865
12866         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12867
12868         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12869         passed when a valuetype is expected.
12870
12871         * object.c (mono_unhandled_exception): Only set the exit code if the
12872         exception happens in the main thread. Fixes thread5.exe.
12873
12874         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12875         invalid names. Fixes #58047.
12876
12877 2004-05-03  Jackson Harper  <jackson@ximian.com>
12878
12879         * assembly.c: This line was committed accidently and is unneeded.
12880         
12881 2004-05-03  Jackson Harper  <jackson@ximian.com>
12882
12883         * icall.c: Add new icall for Assembly::LoadWithPartialName
12884         * assembly.c/.h: new function that probes the GAC to load partial
12885         assembly names by Paolo Molaro.
12886         
12887 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12888
12889         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12890         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12891         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12892         full type name.
12893
12894 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12895
12896         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12897         * reflection.c: fix bug when parsing a full type name and Version is not
12898         the last thing in the string.
12899
12900 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12901
12902         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12903         crashes when it is freed.
12904
12905 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12906
12907         * assembly.c: print the compat warning to stderr.
12908
12909 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12910
12911         * assembly.c (mono_assembly_load_references): Add a compatibility
12912         hack to run old applications that might be still referencing the
12913         3300-based assemblies, only do this for System.xxx.
12914
12915 2004-05-01  Jackson Harper  <jackson@ximian.com>
12916
12917         * appdomain.c: If the culture is neutral we set it to "".
12918         
12919 2004-04-29  Jackson Harper  <jackson@ximian.com>
12920
12921         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12922
12923 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12924  
12925         * string-icalls.c: added low overhead function for copying chars
12926         * icall.c: added needed icall for the above function
12927  
12928 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12929
12930         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12931         Environment.GetLogicalDrives.
12932
12933 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12934
12935         * rand.c: try and talk to egd or prngd
12936         for random bytes if opening devices fail.
12937
12938 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12939
12940         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12941         alignment for the type using the native alignment of its members 
12942         instead of using klass->min_align.
12943
12944         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12945
12946 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12947
12948         * file-io.c:
12949         * socket-io.c: added check for sys/aio.h.
12950
12951 2004-04-28  Dick Porter  <dick@ximian.com>
12952
12953         * threads.c: Don't abort a thread thats already aborting, when
12954         terminating everything.
12955
12956 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12957
12958         * icall.c: added 2 new async calls for Socket.
12959
12960         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12961         IO on *nix systems.
12962
12963         * threadpool.c: removed unused variable.
12964
12965 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12966
12967         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12968
12969 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12970
12971         * locales.c: put back string_invariant_tolower () and
12972         string_invariant_toupper ().
12973
12974 2004-04-26 David Waite <mass@akuma.org>
12975
12976         * file-io.h:
12977         * socket-io.h:
12978         * threads.h:
12979         * unicode.h: remove comma from end of enumeration declarations
12980
12981 2004-04-26 David Waite <mass@akuma.org>
12982
12983         * debug-mono-symfile.h:
12984         * decimal.c:
12985         * mono_debug.h:
12986         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12987
12988
12989 2004-04-26  Jackson Harper  <jackson@ximian.com>
12990
12991         * appdomain.c: Increment version number.
12992         
12993 2004-04-26  Jackson Harper  <jackson@ximian.com>
12994
12995         * appdomain.c: Set assembly references public token value when
12996         PublicKeyToken is specified, not the hash_value. Free public token
12997         values when free assembly name data. Previously the public key
12998         token was hex decoded, however we are using hex encoded public key
12999         tokens, so this is not neccasary.
13000         * assembly.c: Lookup assemblies in the gac if their public token
13001         value is set. Add function to allow enabling user gac
13002         lookups. Specify whether or not the assembly was loaded from the
13003         GAC. Compare full assembly names when checking the cache for
13004         assemblies (Temporarily disabled see comment in code). Remove
13005         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
13006         specifies trace-loader they get extra info to stdout on the
13007         loading of assemblies.
13008         * image.h: Add a field for an assembly references public token
13009         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
13010         whether an assembly has been loaded from the GAC.
13011         * image.c: Remove a corlib -> mscorlib name mapping.
13012         * loader.h: Add function to enable/disable the user gac.
13013         * mono-config.c: Check if the usergac is enabled in the config
13014         file.
13015         * icall.c: New icall to determine whether or not an assembly has
13016         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
13017         * tabldefs.h: Add constant for assemblyref flag that specifies a
13018         full public key is used instead of a public token.
13019         * reflection.c: Remove mscorlib -> corlib mappings. Set
13020         PublicTokenValue instead of hash value. This value is a hex
13021         string so it does not need to be expanded.
13022
13023 2004-04-26  Martin Baulig  <martin@ximian.com>
13024
13025         * mono-debug-debugger.c (mono_debugger_initialize): Set
13026         `mono_debugger_initialized' before calling mono_debug_lock().
13027
13028 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
13029
13030         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
13031           InternalToUpper/InternalToLower.
13032         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
13033           removed invariant culture shortcut.  This is now done in managed code.
13034         * locales.c: (string_invariant_toupper/tolower) removed.
13035
13036 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13037
13038         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
13039         Added Poll internal call.
13040
13041         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
13042         call for Poll. Select was too heavy for polling a single socket.
13043
13044         * threadpool.[ch]: added mono_threadpool_cleanup.
13045         * threads.c: use it. Don't use Thread_Abort on windows.
13046
13047 2004-04-23  Martin Baulig  <martin@ximian.com>
13048
13049         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
13050
13051 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
13052
13053         * icall.c: Registred new icalls for key pair protection and added an
13054         icall for Environment.GetFolderPath on Windows.
13055         * security.c|h: Added new icalls for key pair protection.
13056
13057 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13058
13059         * socket-io.c: don't display the non-supported family warning for known
13060         families. Now this is not displayed on windows when checking support
13061         for IPv4/IPv6.
13062
13063 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13064
13065         * class.c: don't display the layout warning for static fields.
13066
13067 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
13068
13069         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
13070         * locales.c, locales.h: Added new icalls for culture-specific
13071         Char.ToLower and Char.ToUpper.
13072
13073 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13074
13075         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
13076         by David Waite.
13077
13078 2004-04-20  Martin Baulig  <martin@ximian.com>
13079
13080         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
13081         of the type name before passing it to mono_reflection_type_from_name().
13082
13083 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
13084
13085         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
13086         encodings here. Fixes #56965.
13087
13088 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
13089
13090         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13091         fix test on strstr result not that I can see anything that
13092         relies on the result.
13093
13094 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
13095
13096         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
13097         Fixes #57081.
13098
13099         * marshal.c (mono_marshal_get_string_encoding): New helper function.
13100
13101         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
13102         function to determine which marshalling to use for strings. Fixes
13103         #56965.
13104
13105         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
13106
13107         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
13108
13109 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
13110
13111         * icall.c: #include mono-config.h
13112
13113 2004-04-15  Jackson Harper  <jackson@ximian.com>
13114
13115         * culture-info-tables.h: Fix date formats for en-US culture.
13116         
13117 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
13118
13119         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
13120         ThreadPool.SetMinThreads.
13121         * threadpool.c: Implemented ThreadPool.GetMinThreads and
13122         ThreadPool.SetMinThreads.
13123
13124 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
13125
13126         * mono-config.c: also load the .config file in the directory
13127         where the assembly was found.
13128
13129 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
13130
13131         * assembly.c: load per-assembly config files.
13132         * icall.c: decrapified code to get the config dir and moved to
13133         mono-config.c.
13134         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
13135         per-assembly config files. When doing a dll map lookup give precedence
13136         to the per-assembly data.
13137
13138 2004-04-14  Martin Baulig  <martin@ximian.com>
13139
13140         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
13141         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
13142         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
13143
13144         * mono-debugger-debugger.c: While the debugger is locked, remember
13145         whether the symbol tables have changes and send one single
13146         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
13147
13148 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
13149
13150         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
13151
13152         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
13153         function.
13154
13155         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
13156         account when marshalling string arrays. Fixes #56965.
13157
13158 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
13159
13160         * icall.c: Add new icalls mapping for security.
13161         * security.c|h: Add internal calls for WindowsIdentity,
13162         WindowsImpersonationContext and WindowsPrincipal.
13163
13164 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
13165
13166         * class.c: Added comment to ensure the System.MonoDummy class
13167         is removed when no longer necessary
13168
13169 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
13170
13171         * appdomain.c: Pass arguments to the bootstraping exceptions to
13172         minimize JITed methods at boot
13173
13174         * metadata.c (mono_exception_from_name_two_strings): Allow for the
13175         second string to be null.
13176
13177         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13178         Change the protocol to minimize the JIT methods at startup.  Now
13179         it Returns the internal codepage, if the value of "int_code_page"
13180         is 1 at entry, and we can not compute a suitable code page
13181         number, returns the code page as a string.
13182
13183 2004-04-13  Jackson Harper  <jackson@ximian.com>
13184
13185         * culture-info-tables.h: Fix number of decimal digits for all
13186         english locales.
13187
13188 2004-04-13  Jackson Harper  <jackson@ximian.com>
13189
13190         * icall.c: Clairfy out of sync error message. It is not always
13191         your corlib that is out of sync.
13192
13193 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
13194
13195         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
13196         properties when only the set accessor is overriden. Fixes #55874.
13197
13198 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
13199
13200         * assembly.c (mono_assembly_load_references): Make this thread safe.
13201         Fixes #56327.
13202
13203 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
13204
13205         * monosn.c: Add missing initialization calls.
13206
13207 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
13208
13209         * locales.c:
13210         ves_icall_System_Globalization_CultureInfo_construct_number_format
13211         Fix g_assert so it compiles on fussier compilers re int/ptr
13212         mismatch
13213
13214 2004-04-08  Dick Porter  <dick@ximian.com>
13215
13216         * socket-io.h:
13217         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
13218         53992.  Also rearrange the code so that the internal calls return
13219         an error value and exceptions are thrown from managed code.
13220
13221         * icall.c: Add type info to the socket icalls.
13222
13223 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13224
13225         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
13226         owes me a beer.
13227
13228 2004-04-07  Martin Baulig  <martin@ximian.com>
13229
13230         * class.c (mono_class_from_generic_parameter): Don't default
13231         `klass->parent' to `mono_defaults.object_type'.
13232
13233 2004-04-07  Martin Baulig  <martin@ximian.com>
13234
13235         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13236         `param->pklass->reflection_info'.       
13237
13238 2004-04-07  Jackson Harper  <jackson@ximian.com>
13239
13240         * culture-info-tables.h: Fix date separator symbol.
13241         
13242 2004-04-07  Martin Baulig  <martin@ximian.com>
13243
13244         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
13245         from System.Type to System.MonoType.
13246
13247 2004-04-07  Martin Baulig  <martin@ximian.com>
13248
13249         * reflection.h
13250         (MonoReflectionGenericParam): Added `has_reference_type' and
13251         `has_value_type' fields.
13252
13253         * reflection.c (mono_image_get_generic_param_info): Encode the
13254         correct flags if we have the `class' or `struct' constraint.
13255
13256 2004-04-07  Martin Baulig  <martin@ximian.com>
13257
13258         * reflection.h
13259         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
13260
13261 2004-04-07  Jackson Harper  <jackson@ximian.com>
13262
13263         * appdomain.c: Revert extra patches, just wanted to bump the
13264         version number.
13265         
13266 2004-04-07  Jackson Harper  <jackson@ximian.com>
13267
13268         * Makefile.am: Add culture-info private headers.
13269         * icall.c: Add new icalls for contructing locales.
13270         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
13271         * locales.h: Declare new culture info construction methods.
13272         * object.h: Add new fields used to avoid the CultureMap to
13273         MonoCultureInfo.
13274         * culture-info.h: Definition of structs used in the culture info
13275         tables.
13276         * culture-info-tables.h: Autogenerated tables that contain culture
13277         info data. This file was generated with the locale-builder tool.
13278         * appdomain.c: Incement corlib version number.
13279         
13280 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
13281
13282         * appdomain.c: (mono_runtime_init) move mono_thread_init
13283         to before mono_object_new calls so critical sections
13284         are initialized before use.
13285
13286 2004-04-07  Martin Baulig  <martin@ximian.com>
13287
13288         * icall.c
13289         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
13290         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
13291         (ves_icall_MonoGenericParam_initialize): Removed.
13292         (monogenericparam_icalls): Removed.
13293         (generictypeparambuilder_icalls): Added new table for
13294         System.Reflection.Emit.GenericTypeParameterBuilder.
13295
13296         * reflection.c
13297         (mono_reflection_define_generic_parameter): Removed.
13298         (mono_reflection_initialize_generic_parameter): This is now called
13299         from GenericTypeParameterBuilder's .ctor.
13300
13301 2004-04-06  Martin Baulig  <martin@ximian.com>
13302
13303         * class.c (mono_class_init): Don't inflate nested classes in a
13304         generic instance.
13305         (mono_type_get_name_recurse): Include the generic arguments for
13306         generic instances and generic type declarations.
13307         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
13308         (_mono_class_get_instantiation_name): Removed.
13309         (mono_class_create_generic): Always use `gklass->name' as our name.
13310
13311         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
13312
13313         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
13314         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
13315         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13316         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13317         closed generic methods here.
13318
13319         * reflection.c
13320         (mono_reflection_generic_inst_get_nested_types): Removed.
13321         (inflate_mono_method): Copy the generic parameters from the
13322         MonoMethodHeader into out MonoGenericMethod.
13323
13324 2004-04-06  Martin Baulig  <martin@ximian.com>
13325
13326         * row-indexes.h
13327         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13328
13329         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13330
13331         * reflection.c (build_compressed_metadata): If we have any entries
13332         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13333         set the header version to 1.1.
13334
13335 2004-04-06  Martin Baulig  <martin@ximian.com>
13336
13337         * class.c (mono_class_init): If we're a generic instance,
13338         initialize our nested classes, too.
13339         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13340         suffix. 
13341
13342 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13343
13344         * process.c: quote the argument passed to the shell on windows.
13345
13346 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13347
13348         * threads.c (mono_alloc_special_static_data): Allow this to be
13349         called during startup.
13350
13351 2004-04-02  Martin Baulig  <martin@ximian.com>
13352
13353         * icall.c
13354         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13355
13356 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13357
13358         * icall.c: Fix build.
13359
13360 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13361
13362         * Makefile.am: Added security.c|h.
13363         * icall.c: Added icall for get_UserName;
13364         * security.c: New file for security related icalls. Added function
13365         get_UserName for System.Environment (fix #56144).
13366         * security.h: New. Header file for security.c
13367
13368 2004-04-02  Dick Porter  <dick@ximian.com>
13369
13370         * icall.c: Deleted the icalls that were obsoleted some time ago
13371         by the ICU string code, and which were mixed into the icall
13372         rearranging.  Fixes bug 55969.
13373
13374         * string-icalls.h: 
13375         * string-icalls.c: Deleted the code that those icalls reference.
13376
13377 2004-04-01  Martin Baulig  <martin@ximian.com>
13378
13379         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13380
13381         * class.c (mono_class_from_generic_parameter): Don't set 
13382         TYPE_ATTRIBUTE_INTERFACE.
13383         (my_mono_class_from_generic_parameter): Likewise.
13384
13385 2004-04-01  Martin Baulig  <martin@ximian.com>
13386
13387         * loader.c (find_method): Added an optional `MonoClass *ic'
13388         argument to search in a specific interface.
13389         (mono_get_method_constrained): New public function.
13390
13391 2004-04-01  Martin Baulig  <martin@ximian.com>
13392
13393         * reflection.c (mono_image_get_generic_field_token): Use the
13394         `handleref' cache here.
13395
13396 2004-04-01  Martin Baulig  <martin@ximian.com>
13397
13398         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13399
13400         * reflection.c (create_generic_typespec): Use the `typespec' hash
13401         here, not the `typeref' one.    
13402
13403 2004-04-01  Martin Baulig  <martin@ximian.com>
13404
13405         * class.c (mono_class_inflate_generic_type): Moved the
13406         functionality into a new static inflate_generic_type() which
13407         returns NULL if it didn't do anything.  Only increment the
13408         `mono_stats.inflated_type_count' if we actually inflated
13409         something.
13410         (mono_class_get_full): Check the classes type to see whether we
13411         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13412
13413 2004-04-01  Jackson Harper  <jackson@ximian.com>
13414
13415         * reflection.c: Set culture for assembly references.
13416         
13417 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13418
13419         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13420
13421 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13422
13423         * assembly.c:
13424         (do_mono_assembly_open): the critical section also covers
13425         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13426
13427 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13428
13429         * threads.c:
13430         (mono_manage_threads): abort the background threads when finishing.
13431         Fixes bug #47232.
13432
13433 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13434
13435         * gc.c: only close the done_event handle if there was no timeout.
13436         C-ified comments.
13437
13438 2004-03-30  Martin Baulig  <martin@ximian.com>
13439
13440         * icall.c (icall_entries): It's called "System.Activator", not
13441         "System.Activation".    
13442
13443 2004-03-30  Martin Baulig  <martin@ximian.com>
13444
13445         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13446         (mono_class_create_from_typespec): Likewise.
13447
13448 2004-03-30  Martin Baulig  <martin@ximian.com>
13449
13450         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13451         `has_ctor_constraint' and `initialized'.
13452
13453 2004-03-30  Martin Baulig  <martin@ximian.com>
13454
13455         * reflection.c (encode_new_constraint): New static function to add
13456         the constructor constraint attribute to a type parameter.
13457         (encode_constraints): Call encode_new_constraint() if necessary.
13458
13459         * reflection.h
13460         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13461
13462         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13463         
13464 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13465
13466         * reflection.c, icall.c: add support for pinning variables. 
13467
13468 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13469
13470         * marshal.c (mono_marshal_get_managed_wrapper):
13471         init bool local with zero rather than null.
13472
13473 2004-03-29  Martin Baulig  <martin@ximian.com>
13474
13475         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13476         the "official" behavior here.
13477         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13478
13479 2004-03-29  Martin Baulig  <martin@ximian.com>
13480
13481         * icall.c: Reflect latest API changes.
13482
13483 2004-03-29  Martin Baulig  <martin@ximian.com>
13484
13485         * loader.c (mono_get_method_from_token): Also call
13486         mono_metadata_load_generic_params () for abstract and interface
13487         methods; replace the type arguments in the method signature with
13488         the ones which are loaded from the metadata.
13489
13490 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13491
13492         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13493         of the lock is not the current thread. MS.NET don't do it, in spite of
13494         what the documentation says. See bug #56157.
13495
13496 2004-03-28  Martin Baulig  <martin@ximian.com>
13497
13498         * class.c (mono_class_init): Don't call init_properties() and
13499         init_events() for generic instances; set `prop->parent' when
13500         inflating properties.
13501
13502         * reflection.c (mono_generic_inst_get_object): Call
13503         `mono_class_init (ginst->klass)'.
13504         (mono_type_get_object): Only create a MonoGenericInst if your
13505         generic type is a TypeBuilder.
13506         (do_mono_reflection_bind_generic_parameters): Only set
13507         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13508
13509 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13510
13511         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13512         Fixes #56091.
13513
13514 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13515
13516         * icall.c: added Kill_internal icall.
13517         * process.[ch]: added Kill_internal icall.
13518
13519 2004-03-25  Martin Baulig  <martin@ximian.com>
13520
13521         * class.h (MonoStats): Added `generic_instance_count',
13522         `inflated_method_count', `inflated_type_count' and
13523         `generics_metadata_size'.       
13524
13525 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13526
13527         * reflection.c: no warnings now.
13528
13529 2004-03-25  Martin Baulig  <martin@ximian.com>
13530
13531         * class.c (mono_class_get_full): New public function; does a
13532         mono_class_get(), but also takes a `MonoGenericContext *'.
13533
13534         * loader.c (mono_field_from_memberref): Renamed to
13535         `field_from_memberref', made static and added `MonoGenericContext *'
13536         argument.
13537         (mono_field_from_token): Added `MonoGenericInst *' argument.
13538         (method_from_memberef): Likewise.
13539         (mono_get_method_from_token): Likewise.
13540         (mono_get_method_full): New public function; does a
13541         mono_get_method(), but also takes a `MonoGenericContext *'.
13542
13543         * verify.c (mono_method_verify): Get the method's generic context
13544         and pass it to mono_field_from_token(), mono_get_method_full() and
13545         mono_class_get_full().
13546
13547 2004-03-25  Martin Baulig  <martin@ximian.com>
13548
13549         * class.c (mono_class_inflate_generic_type): Take a
13550         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13551         `MonoGenericMethod *'.
13552
13553 2004-03-25  Martin Baulig  <martin@ximian.com>
13554
13555         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13556         instead of the MonoGenericMethod here.
13557
13558 2004-03-25  Martin Baulig  <martin@ximian.com>
13559
13560         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13561         each time we create a new MonoGenericInst, we also create a new
13562         context which points back to us.
13563
13564         * class.c (inflate_method): Use `ginst->context' instead of
13565         creating a new context.
13566
13567         * loader.c (method_from_memberref): Use
13568         `klass->generic_inst->context' instead of creating a new context.
13569
13570 2004-03-25  Martin Baulig  <martin@ximian.com>
13571
13572         * class.h (MonoGenericContext): New struct.
13573         (MonoGenericMethod): Removed `generic_inst'.
13574
13575         * class.c (mono_class_inflate_generic_method): Take a
13576         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13577
13578 2004-03-25  Martin Baulig  <martin@ximian.com>
13579
13580         * loader.h (MonoMethodInflated): New typedef.
13581
13582         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13583         `generic_param_count' consume just 30 bits, added `is_inflated'
13584         and `has_type_parameters' flags (one bit each).
13585
13586         * class.c (mono_class_inflate_generic_method): Create a
13587         MonoMethodInflated instead of a MonoMethodNormal and set
13588         `is_inflated' in the method signature.
13589
13590         * class.h (MonoGenericMethod): Removed `generic_method'.
13591
13592 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13593
13594         * image.c: Make sure the name of a MonoImage is always an absolute path.
13595           This fixes bug #54415.
13596
13597 2004-03-24  Martin Baulig  <martin@ximian.com>
13598
13599         * class.c (mono_class_setup_vtable): If we're a generic instance,
13600         use our generic type's vtable size.
13601
13602 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13603
13604         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13605         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13606         problems.
13607
13608 2004-03-23  Martin Baulig  <martin@ximian.com>
13609
13610         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13611         `MonoEvent *events'.
13612
13613         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13614         (typebuilder_icalls): Added "get_event_info"; calls
13615         mono_reflection_event_builder_get_event_info(). 
13616
13617         * reflection.c (mono_reflection_generic_inst_initialize): Added
13618         `MonoArray *events'.
13619         (mono_reflection_event_builder_get_event_info): New function.
13620
13621 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13622
13623         * object.h: add mono_type_initialization_init
13624
13625         * object.c (mono_runtime_class_init): 
13626         implement class constructor synchronization rules
13627         to cope with threading issues.  
13628         add mono_type_initialization_init
13629
13630         * appdomain.c (mono_runtime_init): call 
13631         mono_type_initialization_init
13632
13633         * class.h: removing initializing field from MonoVTable
13634
13635 2004-03-23  Martin Baulig  <martin@ximian.com>
13636
13637         * class.c (my_mono_class_from_generic_parameter): Use
13638         `param->name' if it's not NULL. 
13639
13640 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13641
13642         * class.c: do not insert non-virtual methods in the vtable.
13643         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13644         that means the method is non-virtual. This never would have
13645         happened before.
13646
13647 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13648
13649         * profiler.c: Added lock for accessing coverage_hash.
13650
13651 2004-03-22  Martin Baulig  <martin@ximian.com>
13652
13653         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13654         `method->method->signature->generic_param_count != 0' to make it
13655         work for interface methods.
13656
13657 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13658
13659         * process.c: quote the string passed to the shell using g_shell_quote.
13660
13661 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13662
13663         * threads.c:
13664         (mono_threads_manage): don't remove the finalizer thread and self
13665         from the threads hash table so that mono_thread_manage can be called
13666         more than once.
13667
13668 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13669
13670         * process.c: quote the arguments when UseShellExecute is true. Fixes
13671         bug #55790.
13672
13673 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13674
13675         * threads.c: set mono_thread_detach as a cleanup routine for every
13676         thread. This way it's always executed upon thread termination, either
13677         aborted or finished normally. No more xsp hangs!
13678
13679 2004-03-17  Martin Baulig  <martin@ximian.com>
13680
13681         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13682         `int count_nested' and a `MonoType **nested'.
13683
13684         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13685         most of the functionality into a new static
13686         do_mono_reflection_bind_generic_parameters() and don't take a
13687         `MonoType *nested_in' argument any more.  Don't compute nested
13688         types here.
13689         (mono_reflection_generic_inst_get_nested_types): New public method
13690         to get nested types.
13691
13692         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13693         we're a nested class.
13694
13695         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13696         mono_reflection_generic_inst_get_nested_types() to compute the
13697         nested types.
13698
13699 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13700
13701         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13702         descriptive error message under windows.
13703         
13704 2004-03-17  Martin Baulig  <martin@ximian.com>
13705
13706         * class.c (dup_type): Added `const MonoType *original' argument;
13707         copy the attrs from the original type.
13708
13709 2004-03-17  Martin Baulig  <martin@ximian.com>
13710
13711         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13712         `m->generic_inst_cache' here.
13713
13714 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13715
13716         * exception.h exception.c: Add stack_overflow_exception.
13717
13718 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13719
13720         * threadpool.c:
13721         (overlapped_callback): call SetEvent *after* invoking the callback.
13722         No need to call CloseHandle.
13723
13724 2004-03-16  Martin Baulig  <martin@ximian.com>
13725
13726         * reflection.c (mono_image_get_fieldref_token): Take a
13727         `MonoReflectionField *' instead of a `MonoClassField *' and a
13728         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13729
13730 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13731
13732         * appdomain.c: don't add the culture to the filename we're looking for
13733         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13734
13735 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13736
13737         * locales.c: don't ignore symbols when doing case insensitive compares.
13738         Thanks Dick! Fixes bug #54046.
13739
13740         * threads.c: surround 'threads' usage with enter/leave in
13741         mono_thread_manage.
13742
13743 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13744
13745         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13746         implicitly marshalled as [Out]. Fixes #55450.
13747
13748         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13749         an exception.
13750
13751 2004-03-16  Martin Baulig  <martin@ximian.com>
13752
13753         * class.c (mono_class_from_generic_parameter): Use the actual
13754         parameter name. 
13755
13756 2004-03-16  Martin Baulig  <martin@ximian.com>
13757
13758         * reflection.c (type_get_signature_size): New static function.
13759         Compues the size of the type in a method signature.
13760         (method_get_signature_size): New static function; calls
13761         type_get_signature_size() to compute the actual size of the
13762         method's signature.
13763         (method_encode_signature): Use method_get_signature_size() to get
13764         the signature's size rather than using `nparams * 10'.
13765
13766 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13767
13768         * file-io.h: define here WapiOverlapped on windows. I don't want the
13769         regular OVERLAPPED one.
13770
13771         * file-io.c:
13772         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13773         Disabling AIO on windows.
13774
13775 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13776
13777         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13778         bug #55385.
13779
13780 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13781
13782         * appdomain.c: upgraded corlib version.
13783
13784         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13785         and BeginWrite. Allow opening files for asynchrnous operations.
13786
13787         * file-io.h: new struct that maps FileStreamAsyncResult.
13788         * icall.c: added new icalls.
13789         * process.[ch]: support setting child process environment variables
13790         and use the SHELL or COMSPEC when UseShellExecute is true.
13791
13792         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13793         callback for async. IO is here and also BindHandle.
13794
13795         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13796         from here.
13797
13798 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13799
13800         * reflection.c (create_custom_attr): Allow len == 0.
13801
13802         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13803         computation on big-endian machines.
13804
13805 2004-03-13  Martin Baulig  <martin@ximian.com>
13806
13807         * class.h (MonoGenericInst): Added `int count_ifaces'.
13808
13809         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13810         `ginst->count_ifaces' instead `klass->interface_count' since we
13811         may get called before the vtable is created.
13812
13813         * loader.c (mono_method_get_param_names): If we're a generic
13814         instance, return and don't initialize the class.
13815
13816         * reflection.c (mono_reflection_setup_generic_class): Don't call
13817         ensure_runtime_vtable().
13818         (mono_reflection_bind_generic_parameters): Set
13819         `ginst->count_ifaces'.
13820
13821 2004-03-11  Jackson Harper <jackson@ximian.com>
13822
13823         * icall.c:
13824         * unicode.c:
13825         * unicode.h: Remove unused System.Char icalls.
13826         
13827 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13828
13829         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13830         code when we P/Invoke the first library in Windows.Forms, instead
13831         of when we first open the assembly.
13832
13833         * assembly.c: Drop the lookup from here.
13834
13835 2004-03-10  Martin Baulig  <martin@ximian.com>
13836
13837         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13838         class for properties, fields and events.  Finally fixes #54945.
13839
13840 2004-03-10  Martin Baulig  <martin@ximian.com>
13841
13842         * metadata.c (mono_metadata_class_equal): New static function;
13843         checks whether two generic instances or two generic parameters are
13844         equal.
13845         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13846         compare classes.        
13847
13848 2004-03-10  Martin Baulig  <martin@ximian.com>
13849
13850         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13851
13852         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13853         argument and write it into the `reflection_info' field.
13854
13855         * icall.c
13856         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13857         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13858
13859 2004-03-09  Jackson Harper  <jackson@ximian.com>
13860
13861         * char-conversions.h: use 8 bits for numeric data its all we need
13862         * icall.c: numeric data is only 8 bits now.
13863
13864 2004-03-09  Martin Baulig  <martin@ximian.com>
13865
13866         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13867
13868         * class.c (init_properties, init_events): Initialize the new
13869         `parent' field.
13870
13871         * reflection.c (typebuilder_setup_properties): Likewise.
13872         (typebuilder_setup_events): Likewise.
13873
13874         * reflection.h (MonoEventInfo): Replaced `parent with
13875         `declaring_type' and `reflected_type'.
13876
13877         * icall.c (ves_icall_get_property_info): Distinguish between
13878         declaring and reflected type.
13879         (ves_icall_get_event_info): Likewise.
13880
13881 2004-03-09  Martin Baulig  <martin@ximian.com>
13882
13883         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13884         (ves_icall_Type_GetField): Correctly set field->klass.
13885
13886 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13887
13888         * loader.h: Fix warning.
13889
13890 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13891
13892         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13893         library routine if present.  Notice that it will still continue
13894         executing even if its missing, for those working on the Gtk#
13895         edition of Windows.Forms.
13896
13897         * assembly.c (do_mono_assembly_open): If loading the
13898         System.Windows.Forms call mono_loader_wini_init.
13899
13900 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13901
13902         * class.h: Added MonoRemoteClass struct.
13903         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13904         function for MonoStrings.
13905         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13906         Added internal call for getting the proxy type.
13907         * marshal.c: Get the type of transparent proxies from its remote_class.
13908         Added methods that generate the IL for type checks and casts:
13909         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13910         mono_marshal_get_proxy_cancast.
13911         * marshal.h: Declaration of the previous new methods.
13912         * object.c: Added new moethods for creating and updating MonoRemoteClass
13913         instances: mono_remote_class, mono_upgrade_remote_class, 
13914         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13915         * verify.c: FIx transparent_proxy_fields layout.
13916         * appdomain.c: Bump corlib version.
13917
13918 2004-03-04  Jackson Harper  <jackson@ximian.com>
13919
13920         * icall.c: Add icall to access char conversion tables.
13921         * char-conversions.h: Character conversion tables.
13922         * Makefile.am: Add char-conversions.h private header file.
13923         
13924 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13925
13926         * appdomain.c (unload_thread_main): Increase unloading timeout to
13927         10 sec as a temporary workaround for Nant problems.
13928
13929 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13930
13931         * gc.c: Add checks for GC_enable and GC_disable.
13932
13933         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13934         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13935         (bug #54988).
13936         
13937 2004-02-27  Martin Baulig  <martin@ximian.com>
13938
13939         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13940         `MonoReflectionType *' instead of a `MonoType *'.
13941
13942 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13943
13944         * gc.c (run_finalize): Avoid finalizing the object representing the
13945         finalizer thread.
13946         (finalizer_thread): Fix warning.
13947
13948 2004-02-25  Martin Baulig  <martin@ximian.com>
13949
13950         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13951         argument for nested types.
13952         (mono_class_create_generic): Added support for nested generictypes.
13953
13954         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13955         `GList *nested'.
13956
13957         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13958
13959         * reflection.c (method_encode_signature): Increase the minimum
13960         value of `size' from 10 to 11.
13961         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13962         and `MonoType **types' arguments instead of the `MonoArray
13963         *types'; added `MonoType *nested_in'.  Recursively instantiate
13964         nested classes. 
13965
13966 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13967
13968         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13969         stack_overflow_ex members which are used by exception handling.
13970
13971         * appdomain.c (mono_runtime_init): Initialize the new members.
13972
13973         * gc.c (mono_gc_enable): New helper function.
13974         * gc.c (mono_gc_disable): New helper function.
13975
13976 2004-02-23  Martin Baulig  <martin@ximian.com>
13977
13978         * icall.c: I must have been really stupid - make it actually work
13979         this time ;-)
13980
13981 2004-02-23  Martin Baulig  <martin@ximian.com>
13982
13983         * loader.c (method_from_memberref): Only inflate the method if
13984         it's in another klass.
13985
13986 2004-02-23  Martin Baulig  <martin@ximian.com>
13987
13988         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13989         (mono_class_init): If we're a generic instance and an interface,
13990         compute `class->interface_id'; also create `class->interfaces'
13991         here and inflate them.
13992
13993         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13994         `ginst->is_open'.
13995         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13996
13997         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13998
13999 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
14000
14001         * reflection.c (method_encode_code): Improved the error message
14002         generated by the exception.
14003
14004 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14005
14006         * icall.c: Martin did not do what he said in the ChangeLog for
14007         2004-02-18, but put back the changes for properties and events.
14008         Commenting those changes out again and adding comment to bug #54518.
14009         
14010         * process.c: removed warning.
14011
14012 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
14013
14014         * marshal.c (emit_struct_conv): Print an error message instead of
14015         asserting when a type does not have the StructLayout attribute.
14016
14017 2004-02-20  Martin Baulig  <martin@ximian.com>
14018
14019         * reflection.c (mono_type_get_object): Also use the cache for
14020         generic instances.
14021         (mono_reflection_bind_generic_parameters): Always compute
14022         `ginst->ifaces'.        
14023
14024 2004-02-20  Martin Baulig  <martin@ximian.com>
14025
14026         * class.h (MonoGenericMethod): Removed `klass'.
14027
14028         * class.c (mono_class_inflate_generic_method): Added `MonoClass
14029         *klass' argument.
14030
14031 2004-02-20  Martin Baulig  <martin@ximian.com>
14032
14033         * reflection.c (method_encode_methodspec): Actually use the
14034         uninflated signature for the memberref.
14035
14036 2004-02-20  Martin Baulig  <martin@ximian.com>
14037
14038         * class.h (MonoGenericMethod): Removed `declaring'.
14039
14040         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
14041         is NULL, compute it here.
14042
14043 2004-02-20  Martin Baulig  <martin@ximian.com>
14044
14045         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
14046
14047         * metadata.c (mono_metadata_generic_inst_hash): New method.
14048         (mono_metadata_generic_inst_equal): New method.
14049
14050         * reflection.c (mono_reflection_bind_generic_parameters): Use the
14051         `klass->image->generic_inst_cache' cache to avoid creating
14052         duplicate MonoGenericInst's.
14053
14054         * class.c (mono_class_inflate_generic_type): Use the cache.
14055
14056 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
14057
14058         * object.c: fixed gc descriptor calculation for embedded valuetypes.
14059
14060 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14061
14062         * icall.c: added Socket.WSAIoctl icall.
14063
14064         * socket-io.[ch]: implemented
14065         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
14066
14067 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
14068
14069         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
14070
14071 2004-02-18  Urs C Muff  <umuff@quark.com>
14072
14073         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
14074         this work on PPC and other big-endian architectures.
14075
14076         * debug-mono-symfile.h: Prepended the names of all the `guint32'
14077         fields with an underscore to make sure they're only accessed by
14078         the read32() macro.
14079
14080 2004-02-18  Martin Baulig  <martin@ximian.com>
14081
14082         * icall.c: Put the klass->refclass changes back for methods and
14083         fields, but not for properties and events.  We're currently not
14084         distinguishing between DeclaringType and ReflectedType for
14085         properties and events, that's what caused the regressions.
14086
14087 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14088
14089         * object.c:
14090         (mono_async_result_new): the handle can be NULL.
14091
14092         * threadpool.c: Use an event instead of a semaphore, don't initialize
14093         it until needed. This saves quite a few semaphores from being created
14094         when using the threadpool.
14095
14096 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
14097
14098         * object.c (mono_string_is_interned_lookup): Fix interning of long
14099         strings. Fixes #54473.
14100
14101         * domain.c (ldstr_equal): Optimize if the two strings are equal.
14102
14103         * icall.c: Revert the klass->refclass changes since they introduce
14104         regressions (bug #54518).
14105
14106 2004-02-18  Martin Baulig  <martin@ximian.com>
14107
14108         * class.c (mono_class_init): If we're a generic instance and don't
14109         come from a TypeBuilder, inflate our members here.
14110         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
14111         (mono_class_create_generic): New public method.
14112         (mono_class_initialize_generic): Removed.
14113         (get_instantiation_name): Renamed to
14114         _mono_class_get_instantiation_name() and made it public.
14115
14116 2004-02-18  Martin Baulig  <martin@ximian.com>
14117
14118         * class.c (mono_class_inflate_generic_type): Clear the new
14119         instance's `nginst->klass' when inflating a generic instance.
14120         (mono_class_is_subclass_of): Added (basic) support for generic
14121         instances.
14122
14123 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
14124
14125         * appdomain.h, domain.c: use a MonoCodeManager instead of a
14126         MonoMempool to hold compiled native code.
14127
14128 2004-02-17  Martin Baulig  <martin@ximian.com>
14129
14130         * class.h (MonoDynamicGenericInst): Added `count_properties' and
14131         `properties'.
14132
14133         * reflection.c (mono_reflection_generic_inst_initialize): Added
14134         `MonoArray *properties' argument.
14135
14136         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
14137
14138 2004-02-17  Martin Baulig  <martin@ximian.com>
14139
14140         * icall.c (ves_icall_Type_GetFields): Renamed to
14141         ves_icall_Type_GetFields_internal() and added a
14142         `MonoReflectionType *rtype' argument; pass it to
14143         mono_field_get_object() to set the field's "reflected" type.
14144         (ves_icall_Type_GetConstructors): Likewise.
14145         (ves_icall_Type_GetEvents): Likewise.
14146         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
14147         argument; pass it to mono_method_get_object() to set the method's
14148         "reflected" type.       
14149
14150 2004-02-17  Martin Baulig  <martin@ximian.com>
14151
14152         * class.h (MonoDynamicGenericInst): New type.
14153         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
14154
14155         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
14156         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
14157         (ves_icall_MonoGenericInst_GetFields): New interncall.
14158
14159         * class.c (mono_class_from_generic): Don't call
14160         mono_class_initialize_generic() if this is a dynamic instance;
14161         ie. it's being created from a TypeBuilder.
14162         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
14163         `class->byval_arg.type'.
14164
14165         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
14166         to `inflate_method' and made static.
14167         (mono_reflection_inflate_field): Removed.
14168         (mono_reflection_generic_inst_initialize): New public method.
14169
14170         * reflection.h (MonoReflectionGenericInst): Removed `methods',
14171         `ctors' and `fields'; added `initialized'.
14172
14173 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
14174
14175         * debug-helpers.c (mono_method_full_name): Fix output for empty
14176         namespaces.
14177
14178 2004-02-12  Martin Baulig  <martin@ximian.com>
14179
14180         * class.h (MonoClassField): Added `MonoType *generic_type'.
14181
14182         * reflection.c (mono_image_get_fieldref_token): Added support for
14183         instantiated generic types.
14184         (field_encode_inflated_field): Removed.
14185         (mono_image_get_inflated_field_token): Removed.
14186         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
14187
14188         * reflection.h (MonoReflectionInflatedField): Removed.
14189
14190 2004-02-12  Martin Baulig  <martin@ximian.com>
14191
14192         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
14193         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
14194
14195         * reflection.c (mono_image_get_methodspec_token): Take a
14196         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
14197         (mono_image_create_token): Check whether we have a
14198         `method->signature->gen_method' and call
14199         mono_image_get_methodspec_token() if appropriate.
14200         (inflated_method_get_object): Removed.
14201         (mono_reflection_bind_generic_method_parameters): Return a
14202         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
14203         (mono_reflection_inflate_method_or_ctor): Likewise.
14204
14205         * reflection.h (MonoReflectionInflatedMethod): Removed.
14206
14207 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
14208
14209         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
14210         for custom valuetype marshalling.
14211
14212         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
14213
14214 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14215
14216         * icall.c: fixed WSAGetLastError_internal name.
14217
14218 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
14219
14220         * threads.c (mono_thread_attach): Allow this to be called multiple
14221         times for a thread.
14222         
14223         * threads.c (build_wait_tids): Do not wait for ourselves.
14224
14225         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
14226         appdomain list is empty.
14227
14228         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
14229         memory returned by mono_string_builder_to_utf16, since it points into
14230         managed memory. Thanks to Bernie Solomon for noticing this.
14231
14232         * icall.c: Add AppDomainSetup icalls.
14233
14234         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
14235
14236         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
14237         types.
14238
14239         * reflection.c (reflection_methodbuilder_to_mono_method): Save
14240         custom attributes to the method_aux struct. Also fix array indexes etc.
14241
14242         * loader.c (mono_method_get_param_names): Make dynamic case work again.
14243         
14244 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
14245
14246         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
14247         (both static and runtime) and reduce startup time.
14248
14249 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
14250
14251         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
14252         AsAny marshalling conversion instead of crashing.
14253
14254         * marshal.c: Fix warnings.
14255
14256 2004-02-09  Martin Baulig  <martin@ximian.com>
14257
14258         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
14259
14260         * reflection.h (MonoReflectionInflatedMethod): Removed the
14261         `declaring' field, it's now in the unmanaged MonoGenericMethod.
14262
14263         * reflection.c (method_encode_methodspec): Removed the `method'
14264         argument; we get it from `gmethod->declaring'.
14265         (inflated_method_get_object): Removed the `declaring' argument.
14266
14267 2004-02-09  Martin Baulig  <martin@ximian.com>
14268
14269         * class.h (MonoGenericMethod): New type.
14270         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
14271         `generic_method'.
14272
14273         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
14274         a `MonoGenericMethod *gen_method' one.
14275
14276         * class.c (mono_class_inflate_generic_type): Take an additional
14277         `MonoGenericMethod * argument.  This is only non-NULL if we're
14278         inflating types for a generic method.   
14279         (mono_class_inflate_generic_signature): Renamed to
14280         inflate_generic_signature() and made static; take a
14281         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14282         (inflate_generic_header): Take a `MonoGenericMethod *' argument
14283         instead of a `MonoGenericInst *' one.
14284         (mono_class_inflate_generic_method): Likewise.
14285
14286         * reflection.c (encode_generic_method_sig): Take a
14287         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14288         (method_encode_methodspec): Likewise.
14289         (inflated_method_get_object): Likewise. 
14290
14291         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
14292         field with a `MonoGenericMethod *gmethod' one.  
14293
14294 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
14295
14296         * class.h (mono_class_has_parent): add parens to expansion
14297         so you can ! this.
14298
14299 2004-02-08  Martin Baulig  <martin@ximian.com>
14300
14301         * image.h (MonoImage): Removed `generics_cache'.
14302
14303         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
14304         instead of a `MonoType *' argument; removed the `inflate_methods'
14305         argument.  Don't inflate methods here.
14306
14307         * loader.c (find_method): If it's a generic instance, call
14308         mono_class_init() on the `sclass->generic_inst->generic_type'.
14309
14310         * metadata.c (mono_type_size): Make this work on uninitialized
14311         generic instances; call it on the `ginst->generic_type's class.
14312
14313         * reflection.c (mono_reflection_bind_generic_parameters): Call
14314         mono_class_from_generic() to create the `ginst->klass'.
14315
14316 2004-02-08  Martin Baulig  <martin@ximian.com>
14317
14318         * class.h (MonoClass): Changed type of `generic_inst' from
14319         `MonoType *' to `MonoGenericInst *'.
14320
14321 2004-02-08  Martin Baulig  <martin@ximian.com>
14322
14323         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14324         mono_type_get_object(), this is now creating a `MonoGenericInst'
14325         for MONO_TYPE_GENERICINST.
14326         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14327         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14328
14329         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14330         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14331         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14332         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14333         and reflected type.
14334
14335         * reflection.h (MonoReflectionInflatedMethod): Removed
14336         `declaring_type' and `reflected_type'.
14337
14338 2004-02-08  Martin Baulig  <martin@ximian.com>
14339
14340         * class.h (MonoGenericInst): Added `MonoType *parent' and
14341         `MonoType **ifaces'.
14342
14343         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14344         `parent' and `interfaces'.
14345
14346         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14347         `MonoType *' argument and return a `MonoType *'.
14348
14349         * icall.c
14350         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14351         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14352
14353 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14354
14355         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14356         valuetype marshalling.
14357
14358 2004-02-06  Martin Baulig  <martin@ximian.com>
14359
14360         * class.c
14361         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14362         (my_mono_class_from_generic_parameter): Likewise.
14363
14364 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14365
14366         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14367         contents of the symbol files lazily.
14368
14369         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14370
14371         * threads.h threads.c icall.c: New icalls for getting and setting the
14372         threads name.
14373
14374 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14375
14376         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14377         Raise an exception when the domain is not found.
14378
14379 2004-02-03  Martin Baulig  <martin@ximian.com>
14380
14381         * reflection.c (mono_image_get_methodspec_token): Use the
14382         uninflated signature; fixes gen-33.
14383
14384 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14385
14386         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14387         the finalizer code can use thread functionality.
14388
14389         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14390         the finalizer thread.
14391
14392         * threads.c: Make some functions more robust.
14393
14394         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14395
14396         * metadata.h: Add new marshalling conventions.
14397
14398         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14399         stringbuilder marshalling. Fixes #53700.
14400
14401         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14402
14403         * reflection.c (mono_image_get_type_info): Save declarative security
14404         info.
14405
14406         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14407         unmanaged fields as well.
14408
14409         * appdomain.c: Bump corlib version.
14410
14411 2004-02-01  Martin Baulig  <martin@ximian.com>
14412
14413         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14414         method type arguments.  
14415
14416 2004-01-30  Duncan Mak  <duncan@ximian.com>
14417
14418         * marshal.h: Add prototype for
14419         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14420         and
14421         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14422         fix the build.
14423
14424 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14425
14426         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14427         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14428
14429 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14430
14431         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14432         custom marshalling of valuetypes.
14433
14434         * marshal.c: Fix some warnings.
14435
14436 2004-01-29  Martin Baulig  <martin@ximian.com>
14437
14438         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14439         for generic method parameters.
14440
14441         * reflection.c (method_encode_methodspec): Write the uninflated
14442         signature into the methodspec table.
14443         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14444         is always the uninflated method.
14445         (reflection_methodbuilder_to_mono_method): Copy the generic
14446         parameters from the MethodBuilder into `header->gen_params'.
14447
14448 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14449
14450         * class.c (mono_class_from_generic_parameter): Fix warning.
14451
14452 2004-01-27  Martin Baulig  <martin@ximian.com>
14453
14454         * class.c (mono_class_from_generic_parameter): Don't create
14455         `klass->methods' here.  
14456
14457 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14458
14459         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14460         extension since it does not work with libraries named lib<FOO>.dll.so.
14461
14462 2004-01-25  Martin Baulig  <martin@ximian.com>
14463
14464         * class.c (mono_class_inflate_generic_type): Added support for
14465         MONO_TYPE_GENERICINST.
14466
14467         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14468         inflate methods on open constructed types.      
14469
14470 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14471
14472         * object.c: fire ProcessExit event in the root AppDomain after running
14473         Main. Fixes bug #53299.
14474
14475 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14476
14477         * socket-io.c: include the new socket-wrappers.h header.
14478         Use the wrappers instead of the unix socket functions to make the code
14479         more clear.
14480
14481 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14482
14483         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14484
14485         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14486         Fixes #22532.
14487
14488 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14489
14490         * reflection.c (mono_image_create_pefile): Handle the case when the
14491         entry point is not a MethodBuilder.
14492
14493         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14494         field to ReflectionMethod since it is not allways a builder.
14495
14496         * reflection.c (type_get_fully_qualified_name): New helper function to
14497         return the fully qualified name of a type.
14498
14499         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14500         type name for custom marshallers.
14501
14502         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14503
14504         * class.c (mono_class_setup_vtable): If a parent class already 
14505         implements an interface, use the implementing methods from that class.
14506         Fixes #53148.
14507
14508 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14509
14510         * threadpool.c: just return instead of ExitThread to allow for thread
14511         clean up earlier.
14512
14513 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14514
14515         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14516         when closing resource modules.
14517
14518         * reflection.c (mono_image_create_pefile): Handle the case when the
14519         entry point is not a MethodBuilder.
14520
14521         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14522         field to ReflectionMethod since it is not allways a builder.
14523
14524 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14525
14526         * marshal.c (mono_marshal_get_managed_wrapper): 
14527         mono_marshal_alloc takes native int so CONV_I
14528         the arg for 64bits.
14529
14530 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14531
14532         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14533         tokens in the cattr table. Fixes #53108.
14534
14535 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14536
14537         * loader.c: don't trim ".dll" before looking up in the config file.
14538         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14539
14540 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14541
14542         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14543         Return the module which contains the resource as well.
14544         (ves_icall_System_Reflection_Module_Close): New icall.
14545
14546         * appdomain.c: Bump corlib version number.
14547
14548         * image.c (mono_image_addref): New public function.
14549
14550         * assembly.c: Call mono_image_addref.
14551
14552         * reflection.c (mono_module_get_object): Increase reference count of 
14553         the image.
14554
14555         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14556         Fixes #22532.
14557
14558         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14559         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14560         proper exceptions on DllImport problems.
14561
14562 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14563
14564         * class.c, metadata.c: eliminate CSIZE macro.
14565
14566 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14567
14568         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14569         * object.h: Added async_callback field in MonoAsyncResult.
14570         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14571         * verify.c: Added async_callback in MonoAsyncResult layout.
14572
14573 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14574
14575         * reflection.c (mono_reflection_get_custom_attrs): Add support
14576         for Modules.
14577
14578 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14579
14580         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14581         marshalling.
14582         (mono_marshal_method_from_wrapper): Add null pointer check.
14583
14584 2004-01-16  Martin Baulig  <martin@ximian.com>
14585
14586         * debug-mono-symfile.h: Set version number to 36 and reflect
14587         latest symbol writer changes.
14588
14589 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14590
14591         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14592         multi-dimensional arrays.
14593         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14594         (mono_class_from_mono_type): Use bounded_array_class_get.
14595         
14596         * class.c (mono_bounded_array_class_get): New function which takes
14597         a 'bounded' bool argument to distinguish vectors from one dimensional
14598         arrays.
14599
14600         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14601         bounded_array_class_get if the array has bounds.
14602
14603         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14604         Search modules loaded using AssemblyBuilder:AddModule as well.
14605
14606 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14607
14608         * appdomain.c: increased corlib version.
14609         * filewatcher.c: removed g_print.
14610         * icall.c:
14611         (get_property_info): only allocate what is actually requested.
14612         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14613
14614 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14615
14616         * Makefile.am: added filewatcher.[ch]
14617         * filewatcher.[ch]: FileSystemWatcher runtime support.
14618         * icall.c: added new FSW icalls.
14619
14620 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14621
14622         * string-icalls.c: fix stringbuilder regression as suggested by
14623         Iain McCoy <iain@mccoy.id.au>.
14624
14625 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14626
14627         * process.c (process_read_stringtable_block): Recognize '007f' as
14628         a language neutral stringtable block.
14629
14630 2004-01-12  Patrik Torstensson
14631
14632         * object.h (MonoStringBuilder) : Changed layout to support our
14633         new stringbuilder class.
14634         * marshal.c: Change marshalling to support the new layout of 
14635         string builder.
14636         * appdomain.c: increased version number because new layout of
14637         string builder.
14638
14639 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14640
14641         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14642         assembly name as an string instead of an AssemblyName, since it is
14643         easier to extract info from it.
14644
14645         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14646         the culture subdirectories too. Fixes #52231.
14647
14648 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14649
14650         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14651         It takes 2 new parameters with an optional name for the method to look
14652         for and case ignoring info.
14653
14654         * threadpool.c: removed unused variable.
14655
14656 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14657
14658         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14659         It takes 2 new parameters with an optional name for the property to look
14660         for and case ignoring info.
14661         Fixes bug #52753.
14662
14663 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14666         Fix #52451.
14667
14668 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14669
14670         * appdomain.c:
14671         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14672         Fixes bug #52630.
14673
14674 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14675
14676         * reflection.c: Add support for more than one unmanaged resource.
14677
14678         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14679         in field->def_value, as done in all other cases.
14680
14681         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14682         TypeBuilders.
14683
14684         * reflection.c (mono_reflection_create_runtime_class): Remove 
14685         errorneous assignment to klass->element_class, since it is already
14686         done in mono_reflection_setup_internal_class.
14687
14688 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14689
14690         * gc.c: added missing LeaveCriticalSection.
14691         * icall.c: indented a couple of lines.
14692         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14693         if we call EndInvoke inside a callback. Fixes bug #52601.
14694
14695 2004-01-07  Martin Baulig  <martin@ximian.com>
14696
14697         * mono-debug-debugger.h
14698         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14699
14700 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14701
14702         * appdomain.c: Use messages in NotImplementedException.
14703
14704         * exception.c (mono_get_exception_not_implemented): Now this takes
14705         a message argument.
14706
14707         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14708         exception instead of g_asserting an aborting when something is not
14709         implemented.
14710
14711         Add some inline docs.
14712
14713 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14714
14715         * reflection.h: Update after changes to object layout.
14716
14717         * reflection.c: Implement saving of unmanaged aka win32 resources.
14718
14719         * appdomain.c: Bump version number.
14720
14721         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14722         Handle missing domains gracefully.
14723
14724 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14725
14726         * file-io.c : On Windows, there are much more invalid_path_chars.
14727
14728 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14729
14730         * class.h, object.c: prepare for GetType () speedup.
14731
14732 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14733
14734         * profiler.c: workaround for --profile null reference exception on
14735           cygwin. Patch by Patrik Torstensson.
14736
14737 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14738
14739         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14740         make work for unaligned access.
14741
14742 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14743
14744         * class.c: small cleanup (class->fields [i] -> field).
14745         * image.c: check address of metadata is valid.
14746
14747 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14748
14749         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14750         search the list of loaded assemblies.
14751
14752         * reflection.c (mono_reflection_type_from_name): Use 
14753         mono_assembly_loaded instead of mono_image_loaded.
14754
14755         * reflection.c: Fix warnings.
14756
14757 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14758
14759         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14760         is dynamic. This is needed since an assembly can contain both dynamic and
14761         non-dynamic images.
14762
14763         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14764         assembly->dynamic.
14765
14766         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14767
14768         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14769         to store modules loaded using AddModule.
14770
14771         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14772         on Modules.
14773
14774         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14775
14776         * reflection.c (mono_image_fill_export_table_from_module): New function to
14777         fill out the EXPORTEDTYPES table from a module.
14778
14779         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14780         into a separate function. Also handle loaded non-dynamic modules.
14781
14782         * reflection.c (mono_image_basic_init): Fix memory allocation.
14783
14784         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14785
14786         * assembly.c (mono_assembly_load_references): Make this public.
14787
14788 2003-12-19  Martin Baulig  <martin@ximian.com>
14789
14790         * class.c (mono_class_initialize_generic): Made this static, take
14791         a `MonoGenericInst *' instead of a `MonoClass *'.
14792         (mono_class_from_generic): Call mono_class_initialize_generic()
14793         unless we're already initialized or being called from
14794         do_mono_metadata_parse_generic_inst().
14795
14796         * class.h (MonoGenericInst): Added `initialized' and
14797         `init_pending' flags.
14798
14799         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14800         `mono_class_init (gklass)' or mono_class_initialize_generic()
14801         here; set `generic_inst->init_pending' while parsing the
14802         `type_argv'.
14803
14804 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14805
14806         * locales.c: include string.h for memxxx prototypes
14807
14808 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14809
14810         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14811         constructor when accessing literal fields.
14812
14813 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14814
14815         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14816
14817         * reflection.c (assembly_add_resource_manifest): New function to fill
14818         the MANIFESTRESOURCE table.
14819
14820         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14821
14822         * reflection.h: Update to changes in class layout.
14823
14824         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14825         Reenable call to mono_runtime_is_shutting_down ().
14826
14827         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14828         determine if the runtime is shutting down.
14829
14830 2003-12-16  Jackson Harper <jackson@ximian.com>
14831
14832         * icall.c: comment out call to mono_runtime_is_shutting_down to
14833         fix build.
14834         
14835 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14836
14837         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14838         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14839
14840 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14841
14842         * reflection.c: move definition of swap_with_size
14843         to before its first call
14844
14845 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14846
14847         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14848
14849         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14850         icall.
14851
14852         * object.c: Fix warnings.
14853
14854         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14855         members if FlattenHierarchy is set.
14856
14857         * reflection.c (mono_image_add_decl_security): New function to emit
14858         declarative security.
14859
14860         * reflection.h reflection.c: Add support for declarative security.
14861
14862         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14863         
14864 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14865
14866         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14867         
14868         * appdomain.c verify.c: Moved corlib version checking into its own
14869         function in appdomain.c since it needs to create vtables etc.
14870
14871 2003-12-13  Patrik Torstensson <p@rxc.se>
14872
14873         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14874         instead of unwrapped server.
14875
14876 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         * verify.c (check_corlib): Fix field index.
14879
14880 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14881
14882         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14883         GetGacPath icall.
14884
14885 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14886
14887         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14888         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14889         cope with sizeof(size_t) != sizeof(guint32).
14890
14891 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14892
14893         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14894         in case of failure.
14895
14896 2003-12-10  Mark Crichton <crichton@gimp.org>
14897
14898         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14899         in managed code.
14900
14901         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14902
14903 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14904
14905         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14906         marked as deleted.
14907
14908 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14909
14910         * verify.c (check_corlib): Handle the case when the version field is 
14911         initialized by a static constructor.
14912
14913 2003-12-08  Patrik Torstensson  <p@rxc.se>
14914
14915     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14916
14917 2003-12-08  Martin Baulig  <martin@ximian.com>
14918
14919         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14920         a MonoReflectionGenericParameter, also take the parameter index
14921         and name as arguments.
14922         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14923         (ves_icall_MonoGenericParam_initialize): New interncall.
14924         (ves_icall_Type_make_byref_type): New interncall.
14925
14926         * reflection.h (MonoReflectionGenericParam): Derive from
14927         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14928         `index' fields.
14929
14930         * reflection.c (mono_reflection_define_generic_parameter): Create
14931         and return a new MonoReflectionGenericParam; don't initialize the
14932         constraints here.
14933         (mono_reflection_initialize_generic_parameter): New public method;
14934         initializes the constraints and creates the `param->pklass'.
14935
14936 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14937
14938         * reflection.h reflection.c: Use the new fields 'num_types', 
14939         'num_fields' and 'num_methods' to track the number of types etc.
14940
14941         * verify.c (check_corlib): Check corlib version number.
14942
14943 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14944
14945         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14946         function works on all methods.
14947
14948 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14949
14950         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14951         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14952         the custom_type_info flag of the transparent proxy.
14953         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14954         objects that supports IRemotingTypeInfo.
14955         * object.h: Added custom_type_info field in transparent proxy.
14956
14957 2003-12-06  Martin Baulig  <martin@ximian.com>
14958
14959         * class.c (mono_class_create_from_generic): Removed.
14960         (mono_class_from_generic): Check `ginst->klass' before doing
14961         anything else.  This is important to fully support "recursive"
14962         generic types.
14963
14964         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14965         empty `generic_inst->klass' before doing anything else.
14966
14967 2003-12-06  Dick Porter  <dick@ximian.com>
14968
14969         * verify.c: 
14970         * object.h:
14971         * icall.c:
14972         * locales.c: Use C structs to access class fields.  Don't do a
14973         conversion between MonoString and UChar because both are
14974         platform-endian UTF-16.  Compare now takes startindex and count
14975         parameters.  Add a char overload for IndexOf.  Speed up the
14976         invariant string IndexOf.
14977
14978 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14979
14980         * Makefile.am (monosn_LDADD): Fix parallel build.
14981
14982 2003-12-04  Martin Baulig  <martin@ximian.com>
14983
14984         * icall.c
14985         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14986         (ves_icall_Type_make_array_type): New interncall.       
14987
14988 2003-12-04  Martin Baulig  <martin@ximian.com>
14989
14990         * locales.c: also change it in the !HAVE_ICU case.
14991
14992 2003-12-04  Dick Porter  <dick@ximian.com>
14993
14994         * icall.c:
14995         * locales.c: construct_compareinfo is now in CompareInfo, not
14996         CultureInfo.
14997
14998 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14999
15000         * image.c (mono_image_load_file_for_image): Cache loaded images in the
15001         image->files array.
15002
15003         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
15004         table as well.
15005
15006         * assembly.c (mono_assembly_load_references): Only load references
15007         once.
15008
15009         * class.c (mono_class_from_name): Avoid linear search of the 
15010         EXPORTEDTYPE table.
15011
15012         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
15013
15014 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
15015
15016         * image.h (MonoImage): Add 'field_cache' field.
15017
15018         * loader.c (mono_field_from_token): Cache field lookups.
15019         
15020         * reflection.c (mono_module_get_object): Fix name property.
15021
15022         * icall.c (ves_icall_get_enum_info): Update after changes to 
15023         mono_metadata_get_constant_index ().
15024
15025         * icall.c: Get rid of get_type_info icall, use a separate icall for
15026         each type property to avoid needless memory allocations. Fixes #51514.
15027
15028         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
15029         to avoid needless binary searches.
15030
15031         * class.c (class_compute_field_layout): Move the initialization of
15032         field->def_value to mono_class_vtable ().
15033
15034         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
15035         non-corlib types.
15036
15037         * object.c (mono_object_allocate): Make it inline.
15038
15039         * object.c (mono_object_allocate_spec): Make it inline.
15040         
15041 2003-12-02  Dick Porter  <dick@ximian.com>
15042
15043         * locales.c (create_NumberFormat): NumberFormatInfo construction.
15044         Patch by Mohammad DAMT (mdamt@cdl2000.com).
15045
15046 2003-12-01  Dick Porter  <dick@ximian.com>
15047
15048         * threads.c: Fix signature and call in CreateMutex and
15049         CreateEvent.
15050
15051 2003-12-01  Dick Porter  <dick@ximian.com>
15052
15053         * icall.c: 
15054         * locales.c: Implement string compares and searching
15055
15056         * object.h: Add extra Thread field
15057
15058 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
15059
15060         * reflection.c (fixup_method): Add support for MonoCMethod.
15061
15062 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
15063
15064         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
15065
15066         * reflection.c (assembly_name_to_aname): Allow extra characters in
15067         assembly names. Fixes #51468.
15068
15069 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
15070
15071         * exception.c (mono_exception_from_name_domain): New helper function.
15072
15073         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
15074         exception object in the correct domain.
15075
15076         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
15077         formatting + make a copy a the input data.
15078
15079         * loader.c (mono_get_method_from_token): Methods which contain
15080         native code do not have entries in the ImplMap.
15081
15082         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
15083         Thanks to Gonzalo for spotting this.
15084         
15085         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
15086         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
15087
15088         * assembly.h (mono_assembly_load_from): Split the second part of 
15089         assembly loading into a new public function.
15090
15091         * exception.h (mono_get_exception_bad_image_format): New function.
15092
15093 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
15094
15095         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15096         Enumerate all modules inside a dynamic assembly. Fixes #51293.
15097         
15098         * icall.c: Add new icall for creating dynamic methods.
15099
15100         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
15101
15102         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
15103
15104         * reflection.c (mono_reflection_create_dynamic_method): New icall to
15105         create a dynamic method.
15106
15107         * reflection.c (resolve_object): New helper function.
15108
15109         * reflection.c: Generalize ReflectionMethodBuilder and the functions
15110         which manipulate it so they can also work on dynamic methods.
15111
15112         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
15113         creating the MonoReflectionMethodAux structure if it is not needed.
15114         
15115         * reflection.h verify.c: Update after changes to object layout.
15116
15117         * reflection.c (method_builder_encode_signature): Fix compilation on
15118         gcc 2.95.x.
15119
15120 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
15121
15122         * appdomain.h: Added support for context static fields. Added static_data
15123           field to MonoAppContext and renamed thread_static_fields to a more
15124           generic special_static_fields in MonoAppDomain, since it can now contain
15125           context static fields.
15126         * domain.c: Updated hashtable name.
15127         * object.c: Replaced field_is_thread_static() for a more generic
15128           field_is_special_static() which also checks for context static attribute.
15129           In mono_class_vtable(), added support for static context fields.
15130         * threads.c: Changed methods that manage thread static fields to more
15131           generic methods so they can be reused both for thread and context static
15132           data.
15133         * threads.h: Declared some new methods.
15134
15135 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
15136
15137         * reflection.h: Update after changes to the managed types.
15138
15139         * reflection.c (encode_custom_modifiers): New helper function.
15140
15141         * reflection.c (method_encode_signature): Emit custom modifiers.
15142
15143         * reflection.c (field_encode_signature): Emit custom modifiers.
15144
15145 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
15146
15147         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
15148
15149         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
15150         implementation.
15151
15152         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
15153         icall.
15154
15155         * object.c (mono_field_get_value_object): New function.
15156
15157         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
15158         specific.
15159
15160 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
15161
15162         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
15163         return a preallocated out-of-memory exception instance.
15164
15165         * object.c (out_of_memory): Use the new function.
15166
15167         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
15168         flag is before the custom modifiers. Fixes #49802.
15169
15170 2003-11-16  Martin Baulig  <martin@ximian.com>
15171
15172         * class.c (mono_class_is_open_constructed_type): Implemented the
15173         MONO_TYPE_GENERICINST case.
15174
15175 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
15176
15177         * assembly.c (mono_assembly_fill_assembly_name): New function to
15178         fill out the MonoAssemblyName structure.
15179         (mono_assembly_open): Use the new function.
15180
15181         * icall.c (fill_reflection_assembly_name): New helper function.
15182
15183         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
15184         new function.
15185
15186         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
15187
15188 2003-11-15  Martin Baulig  <martin@ximian.com>
15189
15190         * class.c (mono_class_is_open_constructed_type): New public
15191         function; checks whether a type is an open constructed type,
15192         ie. whether it still contains type parameters.
15193         (mono_class_inflate_generic_type): If we're a type parameter and
15194         the inflated type is also a MONO_TYPE_(M)VAR, return the original
15195         type.
15196
15197         * class.h (MonoGenericInst): Added `guint32 is_open'.
15198
15199         * loader.c (method_from_methodspec): Check whether we're an open
15200         or closed constructed type and set `ginst->is_open'.
15201
15202         * reflection.c (mono_reflection_bind_generic_parameters): Check
15203         whether we're an open or closed constructed type and set
15204         `ginst->is_open'.
15205         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
15206         from open constructed types.
15207
15208 2003-11-15  Martin Baulig  <martin@ximian.com>
15209
15210         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15211         a generic instance (instead of a generic type declaration) with
15212         unbound generic parameters, bind them to our actual types.
15213
15214 2003-11-14  Martin Baulig  <martin@ximian.com>
15215
15216         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
15217
15218         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15219         an interface type, populate `res->interfaces' with instantiated
15220         versions of all the interfaces we inherit.
15221
15222 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
15223
15224         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
15225         when MONO_PATH is set but doesn't contain the install dir.
15226
15227 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15228
15229         * icall.c:
15230         (ves_icall_Type_GetInterfaces): don't return an interface twice when
15231         it's also implemented in base classes. Fixes bug #50927.
15232
15233 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
15234
15235         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
15236         if this method is called from a finalizer. Fixes #50913.
15237
15238 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
15239
15240         * threads.c: Implement VolatileRead/VolatileWrite
15241
15242         * icall.c: Add new icalls for VolatileRead/VolatileWrite
15243
15244 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15245
15246         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
15247         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
15248         2.95.3.
15249
15250         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
15251         from Peter Ross (pro@missioncriticalit.com).
15252         
15253 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
15254
15255         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
15256
15257 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15258
15259         * assembly.c (mono_assembly_load_references): Disable check because it
15260         triggers on older corlibs which lots of people have.
15261
15262 2003-11-12  Jackson Harper  <jackson@ximian.com>
15263
15264         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
15265         load corlib.dll if mscorlib.dll is not found.
15266         * assembly.h: Remove corlib name define.
15267         * class.c:
15268         * domain.c:
15269         * image.c: Change corlib name to mscorlib.
15270         
15271 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15272
15273         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
15274
15275 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
15276
15277         * appdomain.h: Added loader_optimization here to sync with the C#
15278         code, and add disallow_binding_redirects field.
15279
15280 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15281
15282         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
15283
15284         * reflection.c (mono_image_build_metadata): Fix crash on modules
15285         with no types.
15286
15287         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
15288
15289         * icall.c (ves_icall_get_method_info): Return callingConvention as
15290         well.
15291
15292         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
15293         namespaces from the EXPORTEDTYPE table as well.
15294
15295         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
15296         from all modules inside the assembly.
15297         
15298 2003-11-11  Martin Baulig  <martin@ximian.com>
15299
15300         * reflection.c (mono_reflection_bind_generic_parameters): Make
15301         this work for interfaces.
15302
15303 2003-11-11  Martin Baulig  <martin@ximian.com>
15304
15305         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
15306
15307 2003-11-11  Martin Baulig  <martin@ximian.com>
15308
15309         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
15310         "MonoInflatedMethod" and "MonoInflatedCtor".
15311
15312 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15313
15314         * reflection.c (resolution_scope_from_image): Use the assembly table
15315         from the manifest module, since other modules don't have it.
15316
15317         * debug-helpers.c (mono_type_full_name): New helper function.
15318
15319         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15320
15321         * image.c (mono_image_load_file_for_image): New public function which
15322         is a replacement for the load_file_for_image in class.c.
15323
15324         * assembly.c (mono_assembly_load_module): A wrapper for the function
15325         above which does assembly association and reference loading too.
15326
15327         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15328
15329 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15330
15331         * appdomain.c: not all of the attributes for the full assembly name
15332         are required and the order doesn't matter. Fixes bug #50787.
15333
15334 2003-11-10  Dick Porter  <dick@ximian.com>
15335
15336         * locales.c: Use platform-endian UTF16
15337
15338 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15339
15340         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15341         
15342 2003-11-10  Martin Baulig  <martin@ximian.com>
15343
15344         * metadata.c
15345         (mono_metadata_load_generic_params): Make this actually work.
15346
15347         * reflection.c (mono_reflection_bind_generic_parameters): If our
15348         parent is a generic instance, pass all the `types' to it, no
15349         matter whether it has the same number of type parameters or not.
15350
15351 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15352
15353         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15354
15355         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15356         assignment code to this function so it gets called recursively for all
15357         modules.
15358
15359         * image.c (load_modules): Remove the assembly assignment since it is
15360         now done by mono_assembly_load_references.
15361         
15362         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15363         Add 'module' argument.
15364         (mono_module_get_types): New helper function.
15365         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15366
15367 2003-11-08  Martin Baulig  <martin@ximian.com>
15368
15369         * class.c (mono_class_inflate_generic_method): Interface method
15370         don't have a header.
15371
15372         * reflection.c (mono_image_get_methodspec_token): Take an
15373         additional `MonoGenericInst *' argument instead of reading it from
15374         the header; this is necessary to support interfaces.
15375         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15376         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15377         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15378         argument.
15379
15380         * reflection.h (MonoReflectionInflatedMethod): Added
15381         `MonoGenericInst *ginst'.
15382
15383 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15384
15385         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15386
15387 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15388
15389         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15390
15391 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15392
15393         * reflection.c 
15394         (reflection_methodbuilder_from_method_builder):
15395         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15396         initialize a ReflectionMethodBuilder structure.
15397         (mono_image_get_methodbuilder_token):
15398         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15399         tokens which point to types in another module inside the same assembly.
15400
15401         * reflection.c: Use the new helper functions.
15402         
15403         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15404
15405         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15406         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15407
15408         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15409         neccesary.
15410
15411         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15412         current module. Emit the manifest only for the main module.
15413
15414         * reflection.c (mono_image_create_token): Add assertion when a 
15415         memberref needs to be created.
15416
15417         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15418
15419         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15420         larger buffer for the custom attribute blob. Fixes #50637.
15421         
15422 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15423
15424         * threadpool.c: notify listener on async processing handles after
15425         invoking the async callback. Thanks to Zoltan.
15426
15427 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15428
15429         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15430         avoid code duplication.
15431
15432         * reflection.h (MonoDynamicImage): New type which is currently unused,
15433         but will be used through the ref.emit code in place of 
15434         MonoDynamicAssembly.
15435
15436         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15437         object layout.
15438
15439         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15440         a MonoDynamicImage instead of just a MonoImage.
15441         
15442         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15443         icalls to ModuleBuilder but keep their semantics, so they will work
15444         with moduleb->assemblyb. This will change later.
15445         
15446 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15447
15448         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15449         object layout.
15450
15451         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15452         main module, since it is now done by the managed code.
15453
15454 2003-11-03  Martin Baulig  <martin@ximian.com>
15455
15456         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15457         `ginst->klass' here.
15458         (method_encode_methodspec): Don't use the `ginst->generic_method's
15459         klass if it's a generic instance, use `ginst->klass' in this case.
15460
15461 2003-11-03  Martin Baulig  <martin@ximian.com>
15462
15463         * reflection.c (mono_image_get_generic_method_param_info):
15464         Removed, use mono_image_get_generic_param_info() instead.
15465         (mono_image_get_type_info): Write the GenericParam table before
15466         the Method table.  This is neccessary because in the GenericParam
15467         table, type parameters of the class (ie. '!0' etc.) must come
15468         before the ones from its generic methods (ie. '!!0' etc).
15469
15470 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15471
15472         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15473
15474 2003-11-02  Martin Baulig  <martin@ximian.com>
15475
15476         * reflection.c (create_generic_typespec): Take a
15477         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15478         the generic parameters from it.
15479
15480 2003-11-02  Martin Baulig  <martin@ximian.com>
15481
15482         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15483         instead of a `MonoClassField *' since we just need the type.
15484         (create_generic_typespec): New static function.  Creates a
15485         TypeSpec token for a generic type declaration.
15486         (mono_image_get_generic_field_token): New static function.
15487         (mono_image_create_token): If we're a FieldBuilder in a generic
15488         type declaration, call mono_image_get_generic_field_token() to get
15489         the token.
15490
15491 2003-11-02  Martin Baulig  <martin@ximian.com>
15492
15493         * reflection.h
15494         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15495         `MonoReflectionGenericInst *declaring_type' and
15496         `MonoReflectionGenericInst *reflected_type' fields.
15497
15498         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15499         `MonoReflectionGenericInst *declaring_type' and a
15500         `MonoReflectionGenericInst *reflected_type' argument instead of a
15501         single `MonoReflectionGenericInst *type' one.  Set
15502         `res->declaring_type' and `res->reflected_type' from them.
15503         (mono_reflection_inflate_field): Likewise.      
15504
15505 2003-11-02  Martin Baulig  <martin@ximian.com>
15506
15507         * class.c (mono_class_setup_vtable): Don't store generic methods
15508         in the vtable.  
15509
15510 2003-11-02  Martin Baulig  <martin@ximian.com>
15511
15512         * reflection.h (MonoReflectionGenericInst): Added
15513         `MonoReflectionType *declaring_type'.
15514
15515         * reflection.c (mono_reflection_bind_generic_parameters): Use
15516         `if (tb->parent)' instead of `klass->parent'.
15517
15518 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15519
15520         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15521         with an empty ASSEMBLY table.
15522
15523         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15524         variable in the inner and outer loops.
15525
15526 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15527
15528         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15529         argument.
15530
15531         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15532         
15533         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15534         icalls. Instead, do everything in managed code. This is needed since
15535         it is hard to restore the original domain etc. in unmanaged code in the
15536         presence of undeniable exceptions.
15537
15538         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15539         New icalls to push and pop appdomain refs.
15540
15541 2003-10-31  Martin Baulig  <martin@ximian.com>
15542
15543         * class.c (inflate_generic_type): Renamed to
15544         mono_class_inflate_generic_type() and made it public.
15545
15546         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15547         New interncall.
15548
15549         * loader.c (mono_field_from_memberref): Also set the retklass for
15550         typespecs.
15551
15552         * fielder.c (mono_image_get_inflated_field_token): New static
15553         method; creates a metadata token for an inflated field.
15554         (mono_image_create_token, fixup_method): Added support for
15555         "MonoInflatedField".
15556         (fieldbuilder_to_mono_class_field): New static function.
15557         (mono_reflection_inflate_field): New public function.
15558
15559         * reflection.h
15560         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15561         (MonoReflectionInflatedField): New typedef.     
15562
15563 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15564
15565         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15566         for Solaris and other platforms without s6_addr16
15567
15568 2003-10-30  Martin Baulig  <martin@ximian.com>
15569
15570         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15571         argument instead of two.
15572         (mono_class_inflate_generic_signature): Likewise.
15573         (inflate_generic_header): Likewise.
15574         (mono_class_inflate_generic_method): Likewise.  In addition, if
15575         `ginst->klass' is set, it becomes the new `method->klass'.
15576
15577         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15578         field.
15579
15580         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15581         first byte. [FIXME]
15582         (method_encode_methodspec): If we have generic parameters, create
15583         a MethodSpec instead of a MethodRef.
15584         (fixup_method): Added support for "MonoInflatedMethod" and
15585         "MonoInflatedCtor".
15586         (mono_image_create_token): Added support for "MonoInflatedMethod"
15587         and "MonoInflatedCtor".
15588         (inflated_method_get_object): New static function; returns a
15589         managed "System.Reflection.MonoInflatedMethod" object.
15590         (mono_reflection_bind_generic_method_parameters): Return a
15591         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15592         (mono_reflection_inflate_method_or_ctor): Likewise.
15593         (mono_image_get_generic_method_param_info): Initialize unused
15594         fields to zero.
15595         (mono_image_get_generic_param_info): Likewise.
15596
15597         * reflection.h (MonoReflectionInflatedMethod): New public
15598         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15599         "S.R.MonoInflatedCtor" classes.
15600
15601         * loader.c (method_from_memberref): If we're a TypeSpec and it
15602         resolves to a generic instance, inflate the method.
15603
15604 2003-10-28  Dick Porter  <dick@ximian.com>
15605
15606         * object.c (mono_runtime_run_main): Convert command-line arguments
15607         into utf8, falling back to the user's locale encoding to do so.
15608
15609 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15610
15611         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15612         at this time.
15613
15614         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15615
15616         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15617         up icalls at method definition time. Partially fixes #33569.
15618
15619 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15620
15621         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15622         marshalling of arrays. Fixes #50116.
15623
15624         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15625
15626         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15627         points to a vtable in the dying appdomain.
15628
15629         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15630         listeners into unmanaged code inside the lock.
15631
15632         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15633         domains and add some comments.
15634
15635 2003-10-25  Martin Baulig  <martin@ximian.com>
15636
15637         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15638
15639         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15640
15641         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15642         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15643         currently parsing.  Create the generic class and store it in
15644         `generic_inst->klass' before parsing the type arguments.  This is
15645         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15646         for an example.
15647         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15648         to support recursive typespec entries.
15649
15650         * class.c (mono_class_setup_parent): If our parent is a generic
15651         instance, we may get called before it has its name set.
15652         (mono_class_from_generic): Splitted into
15653         mono_class_create_from_generic() and mono_class_initialize_generic().
15654
15655 2003-10-25  Martin Baulig  <martin@ximian.com>
15656
15657         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15658         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15659         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15660         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15661
15662         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15663         (create_typespec): Likewise.
15664         (mono_reflection_bind_generic_parameters): Return a
15665         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15666         (mono_reflection_inflate_method_or_ctor): New public function.
15667
15668         * reflection.h (MonoReflectionGenericInst): New typedef.        
15669
15670 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15671
15672         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15673         inside the domain lock. Fixes #49993.
15674         
15675         * object.c (mono_class_vtable): When typed allocation is used, 
15676         allocate vtables in the GC heap instead of in the mempool, since the
15677         vtables contain GC descriptors which are used by the collector even
15678         after the domain owning the mempool is unloaded.
15679
15680         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15681
15682         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15683         reflect what it does. Also invalidate mempools instead of freeing
15684         them if a define is set.
15685
15686         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15687         of the appdomain.
15688         
15689         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15690         hold the finalizable objects in this domain.
15691
15692         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15693         appdomain.
15694
15695         * appdomain.c (mono_domain_set): New function to set the current
15696         appdomain, but only if it is not being unloaded.
15697
15698         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15699         appdomain which is being unloaded.
15700         
15701         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15702         unloading of the root appdomain.
15703
15704         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15705         icall to execute a method in another appdomain. Intended as a 
15706         replacement for InternalSetDomain, which can confuse the code 
15707         generation in the JIT.
15708
15709         * appdomain.c (mono_domain_is_unloading): New function to determine
15710         whenever an appdomain is unloading.
15711
15712         * appdomain.c (mono_domain_unload): New function to correctly unload
15713         an appdomain.
15714
15715         * assembly.c (mono_assembly_load_references): Check that an assembly
15716         does not references itself.
15717
15718         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15719         domain manually, it asks the finalizer thread to do it, then waits for
15720         the result. Also added a timeout.
15721
15722         * icall.c: Register the new icalls.
15723
15724         * threads.h threads.c: Export the mono_gc_stop_world and 
15725         mono_gc_start_world functions.
15726         
15727         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15728         function to fill out the mempool with 0x2a.
15729
15730 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15731
15732         * reflection.h (MonoReflectionMethodAux): New structure to store
15733         information which is rarely used, thus is not in the MonoMethod
15734         structure.
15735
15736         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15737         store the aux info.
15738
15739         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15740         and marshalling info into the aux structure.
15741
15742         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15743         from the aux structure.
15744
15745         * loader.c (mono_method_get_param_names): Retrieve the param names from
15746         the aux structure.
15747         
15748 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15749
15750         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15751         warning.
15752
15753 2003-10-21  Dick Porter  <dick@ximian.com>
15754
15755         * socket-io.c
15756         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15757         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15758
15759 2003-10-21  Martin Baulig  <martin@ximian.com>
15760
15761         * reflection.c (mono_reflection_bind_generic_parameters):
15762         `klass->parent' is NULL for interfaces.
15763
15764 2003-10-21  Martin Baulig  <martin@ximian.com>
15765
15766         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15767
15768 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15769
15770         * exception.c (mono_exception_from_name_msg): New helper function for
15771         creating exceptions and initializing their message field.
15772
15773         * exception.c: Simplify functions using the new helper.
15774
15775         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15776         New function.
15777
15778         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15779         mono_raise_exception, since otherwise gcc doesn't generate the function
15780         epilog for raise_exception, confusing the stack unwinding in the JIT.
15781         Fixes #45043.
15782
15783         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15784         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15785         Fixes #49499.
15786
15787 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15788
15789         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15790         utf8.
15791
15792 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15793
15794         * icall.c: Removed GetUninitializedObject method because
15795           AllocateUninitializedClassInstance does the same.
15796
15797 2003-10-18  Martin Baulig  <martin@ximian.com>
15798
15799         * class.c (inflate_generic_signature): Renamed to
15800         mono_class_inflate_generic_signature() and made it public.
15801         (my_mono_class_from_generic_parameter): New static function; if we
15802         don't already have the generic parameter's MonoClass, create a
15803         very simple one which is just used internally in the runtime and
15804         not passed back to managed code.
15805
15806         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15807
15808         * metadata.h (MonoMethodSignature): Moved the
15809         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15810         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15811
15812         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15813         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15814         interncall on the MonoMethod class, not on MethodInfo.
15815         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15816         calling mono_reflection_bind_generic_method_parameters() directly.
15817
15818         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15819         return the already computed `method->signature'.
15820         (method_from_methodspec): New static function to load a method
15821         from a MethodSpec entry.
15822         (mono_get_method_from_token): Call the new method_from_methodspec()
15823         for MethodSpec tokens.  
15824         (mono_get_method_from_token): If we're a generic method, load the
15825         type parameters.
15826
15827         * reflection.c (mono_image_get_memberref_token): Allow
15828         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15829         table.
15830         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15831         (mono_image_create_token): First check whether it's a generic
15832         method (so we'd need to create a MethodSpec), then do the other
15833         two alternatives.
15834         (mono_reflection_bind_generic_method_parameters): Return a
15835         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15836         called directly from the interncall.
15837
15838 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15839
15840         * reflection.c (load_public_key): Move loading of the public key
15841         into managed code.
15842
15843         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15844
15845         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15846         fields.
15847
15848         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15849         culture, hash_alg and public_key. Fixes #49555.
15850
15851 2003-10-17  Martin Baulig  <martin@ximian.com>
15852
15853         * class.h (MonoGenericInst): Moved this declaration here and added
15854         `MonoMethod *generic_method'.
15855
15856         * icall.c
15857         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15858         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15859
15860         * metadata.c (mono_metadata_type_equal): Two types of
15861         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15862         index; ie. don't compare the address of the `MonoGenericParam'
15863         structure.
15864         (mono_metadata_load_generic_params): Removed the `MonoMethod
15865         *method' argument.
15866
15867         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15868         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15869
15870         * reflection.c (method_encode_signature): Encode the number of
15871         generic parameters.
15872         (encode_generic_method_sig): New static function.
15873         (method_encode_methodspec): New static function; creates an entry
15874         in the MethodSpec table for a generic method.
15875         (mono_image_get_methodspec_token): New static function.
15876         (mono_image_create_token): Call mono_image_get_methodspec_token()
15877         for generic methods.
15878         (mono_reflection_bind_generic_method_parameters): New public
15879         function.  Instantiates a generic method.
15880
15881 2003-10-16  Martin Baulig  <martin@ximian.com>
15882
15883         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15884         *gen_params' here from MonoMethodHeader.
15885
15886         * metadata.c (mono_metadata_parse_method_signature): If we have
15887         generic parameters, initialize `method->gen_params' and then set
15888         the correct `type->data.generic_param' in all the parameters.
15889
15890 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15891
15892         * threads.c (mono_threads_get_default_stacksize): New function to 
15893         return the default stacksize.
15894
15895         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15896         termination of the finalizer thread, since the previous method had
15897         race conditions. Fixes #49628.
15898
15899         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15900         as for the other managed threads.
15901
15902 2003-10-16  Martin Baulig  <martin@ximian.com>
15903
15904         * class.c (inflate_generic_signature): Copy `generic_param_count'
15905         and `gen_params'.
15906
15907         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15908         New interncall.
15909
15910         * metadata.c (mono_metadata_parse_method_signature): Actually set
15911         the `method->generic_param_count' here.
15912         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15913
15914 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15915
15916         * object.h: Add a new field to TypedRef to simplify the implementation
15917         of the REFANY opcodes in the JIT.
15918
15919         * icall.c: Make use of the new field.
15920
15921         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15922         dynamically.
15923
15924 2003-10-15  Martin Baulig  <martin@ximian.com>
15925
15926         * class.c (mono_class_from_gen_param): Renamed to
15927         mono_class_from_generic_parameter() and moved most of the
15928         functionality from mono_reflection_define_generic_parameter()
15929         here; ie. we create a "real" class here.
15930         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15931         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15932         previously been called.
15933
15934         * class.h (MonoGenericParam): Moved the declaration of this struct
15935         here from metadata.h and added `MonoMethod *method'.
15936
15937         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15938         interncall.
15939
15940         * loader.c (mono_get_method_from_token): If we have any generic
15941         parameters, call mono_metadata_load_generic_params() to read them
15942         from the MONO_TABLE_GENERICPAR.
15943
15944         * metadata.c (mono_metadata_load_generic_params): Added
15945         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15946
15947         * metadata.h (MonoMethodSignature): Replaced
15948         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15949         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15950
15951         * reflection.c (mono_reflection_define_generic_parameter): Moved
15952         most of the functionality into the new
15953         mono_class_from_generic_parameter(); set the `method' field if
15954         we're a method parameter.       
15955
15956 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15957
15958         * marshal.c (emit_struct_conv): if native size is 0
15959         emit no code.
15960
15961 2003-10-14  Martin Baulig  <martin@ximian.com>
15962
15963         * icall.c: The generics API has changed in the spec since it was
15964         added to System.Type; these modifications make it match the spec
15965         again.
15966         (ves_icall_Type_GetGenericParameters): Renamed to
15967         `ves_icall_Type_GetGenericArguments'.
15968         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15969         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15970         `ves_icall_MonoType_get_HasGenericArguments'.
15971         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15972         `ves_icall_MonoType_get_IsGenericParameter'.
15973         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15974         this is no interncall anymore.
15975         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15976         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15977
15978 2003-10-14  Martin Baulig  <martin@ximian.com>
15979
15980         * reflection.c (mono_reflection_bind_generic_parameters): Also
15981         inflate generic methods if we're reading the class from IL.
15982
15983 2003-10-13  Martin Baulig  <martin@ximian.com>
15984
15985         * reflection.c (mono_reflection_define_generic_parameter): This
15986         method isn't called directly from the icall anymore; take a
15987         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15988         method generic parameters.
15989         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15990         (method_builder_encode_signature): Encode generic parameters.
15991         (mono_image_get_method_info): Write generic params to the
15992         MONO_TABLE_GENERICPARAM table.
15993
15994         * reflection.h (MonoReflectionMethodBuilder): Added
15995         `MonoArray *generic_params'.
15996
15997         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15998
15999         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
16000         wrapper for mono_reflection_define_generic_parameter().
16001         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
16002
16003 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
16004
16005         * marshal.h: Add missing function to fix build.
16006
16007         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
16008         the SetLastError pinvoke attribute.
16009
16010         * marshal.c (mono_marshal_set_last_error): New helper function called
16011         by the generated code.
16012         
16013         * marshal.c (mono_mb_emit_branch): New helper function.
16014
16015         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
16016
16017         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16018         classes as parameters and return values of delegates. Fixes #29256. 
16019
16020 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
16021
16022         * locales.c: use gint32 in non HAVE_ICU case
16023
16024 2003-10-11  Martin Baulig  <martin@ximian.com>
16025
16026         * mono-debug.c (mono_debug_add_method): Added a workaround for
16027         bug #48591.
16028
16029 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
16030
16031         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
16032         delegates passed to native code must use the STDCALL calling 
16033         convention. Fixes #35987.
16034
16035 2003-10-10  Martin Baulig  <martin@ximian.com>
16036
16037         * class.c (inflate_generic_type): If we're inflating for a generic
16038         type instance (and not for a generic method), return
16039         MONO_TYPE_MVAR unchanged.
16040
16041 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16042
16043         * string-icalls.c: Join ignores null strings in the source array.
16044         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
16045         * threads.c: GetAvailableTheads is slightly more accurate.
16046
16047 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
16048
16049         * threads.h threads.c : add mono_threads_set_default_stacksize
16050         and pass default to CreateThread calls.
16051
16052 2003-10-09  Dick Porter  <dick@ximian.com>
16053
16054         * icall.c:
16055         * locales.h:
16056         * locales.c: Internal calls for constructing CultureInfo and
16057         related objects from libicu (if its available.)
16058
16059 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
16060
16061         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
16062
16063 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16064
16065         * threadpool.c: added an argument to async_invoke_thread that is the
16066         item to process, pass the MonoAsyncResult to the thread start function
16067         when creating a new thread. This way we don't need to acquire any lock
16068         when we're creating a new thread. Readded a semaphore for faster
16069         response times (instead of that Sleep i added).
16070
16071 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
16072
16073         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
16074         get daylight change dates better on Windows, fix handling
16075         of platforms without tm_gmtoff.
16076
16077 2003-10-06  Martin Baulig  <martin@ximian.com>
16078
16079         * class.c (inflate_generic_method): Renamed to
16080         mono_class_inflate_generic_method() and made public.
16081         (mono_class_init): Don't inflate the generic methods here.
16082         (mono_class_from_generic): Added `gboolean inflate_methods'
16083         argument.  Inflate the methods here.
16084
16085         * loader.c (mono_method_get_param_names): Ignore instances of
16086         generic types for the moment.
16087
16088         * reflection.c (fixup_method): Added support for inflated methods.
16089         (mono_image_create_token): Use mono_image_get_methodref_token()
16090         for inflated methods.
16091         (mono_custom_attrs_from_param): Ignore instances of generic types
16092         for the moment.
16093         (mono_reflection_bind_generic_parameters): New public function.
16094         Moved all the functionality from
16095         ves_icall_Type_BindGenericParameters() here and added support for
16096         dynamic types.
16097         (mono_reflection_define_generic_parameter): Initialize
16098         `klass->methods' here.
16099
16100         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
16101         functionality into mono_reflection_define_generic_parameter().
16102         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
16103         TypeBuilder, return that TypeBuilder.
16104
16105 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16106
16107         * appdomain.c: removed mono_delegate_semaphore.
16108
16109         * threadpool.c:
16110         (mono_thread_pool_add): moved hash table creation inside and the thread 
16111         creation outside of the critical region.
16112         (mono_thread_pool_finish): removed obsolete code.
16113         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
16114         continue or exit the thread depending on the queue.
16115
16116 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
16117
16118         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
16119         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
16120         handle more bool marshalling options
16121
16122 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
16123
16124         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
16125         arrays of structs. Also add a more descriptive error message when
16126         a structure member is marshalled as LPArray.
16127
16128 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
16129
16130         * marshal.c (mono_marshal_get_native_wrapper): Add support for
16131         marshalling arrays of complex types. Fixes #29098. Also remove an
16132         usused and incomplete function.
16133
16134 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16135
16136         * gc.c: report heap_size - free_bytes as total memory allocated
16137         (bug#49362).
16138
16139 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
16140
16141         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
16142         fix timezone handling problems on Windows.
16143         
16144         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
16145         asserts when the year is outside the range handled by ms the functions.
16146
16147         * class.c (setup_interface_offsets): If the class is an interface,
16148         fill out its interface_offsets slot.
16149
16150 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16151
16152         * threadpool.c: mark threadpool threads as background.
16153
16154 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
16155
16156         * decimal.c - define DECINLINE to nothing if not using GCC
16157
16158 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
16159
16160         * assembly.c: More refcount fixes.
16161
16162 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16163
16164         * string-icalls.c: if we're not trimming, return the same string.
16165         When not splitting, don't create a new string.
16166
16167 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16168
16169         * image.c:
16170         (mono_image_open): increment the ref_count inside the critical section.
16171
16172 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
16173
16174         * image.c (mono_image_open): Fix reference counting bug.
16175
16176 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
16177
16178         * marshal.c (mono_marshal_type_size) struct alignment changed for 
16179         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
16180         64bits. Avoid leak in mono_marshal_get_native_wrapper when
16181         mono_lookup_pinvoke_call throws.        
16182
16183 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
16184
16185         * reflection.c (mono_reflection_parse_type): Fix #49114.
16186
16187         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
16188         temporary workaround for cygwin header problem.
16189
16190         * object.c (mono_object_isinst): Synchronize this with the code
16191         generated by the JIT for casts.
16192
16193 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
16194
16195         * reflection.c (encode_type): Fix #38332.
16196
16197 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
16198
16199         * marshal.c (mono_marshal_method_from_wrapper): New function to return
16200         the original method from the wrapper method.
16201
16202 2003-09-25  Martin Baulig  <martin@ximian.com>
16203
16204         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
16205         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
16206         (ves_icall_Type_get_IsGenericInstance): New interncall.
16207
16208 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
16209
16210         * object.c: fix cast warning in big endian code.
16211
16212 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
16213
16214         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
16215         
16216 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16217
16218         * assembly.c: don't call check_env from mono_assembly_load. It's
16219         already done once in mono_assemblies_init and may cause headaches when
16220         multiple threads are loading assemblies.
16221
16222 2003-09-19  Martin Baulig  <martin@ximian.com>
16223
16224         * reflection.c (mono_reflection_define_generic_parameter): Don't
16225         allocate `klass->methods', set `klass->flags' to
16226         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
16227
16228 2003-09-18  Martin Baulig  <martin@ximian.com>
16229
16230         * class.c (mono_class_init): Don't create `class->methods' if it's
16231         already initialized.
16232
16233         * metadata.c (mono_metadata_load_generic_params): Make this
16234         actually work.
16235
16236         * reflection.c (mono_reflection_define_generic_parameter): Set
16237         parent class and interfaces from the constraints.
16238
16239         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
16240         to keep this struct in sync with the declaration in TypeBuilder.cs.
16241
16242 2003-09-17  Martin Baulig  <martin@ximian.com>
16243
16244         * metadata.h (MonoType): Replaced the data's `int type_param'
16245         field with `MonoGenericParam *generic_param'.
16246         (MonoGenericParam): Added `MonoClass *klass'.
16247
16248         * class.c (mono_class_from_gen_param): Removed the
16249         `MonoImage *image' and `int type_num' arguments.
16250
16251         * metadata.c (mono_metadata_parse_generic_param): New static
16252         method; creates a MonoGenericParam which just contains the index.
16253         (do_mono_metadata_parse_type): Call
16254         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
16255         MONO_TYPE_MVAR.
16256
16257         * reflection.c (mono_image_typedef_or_ref): Generic type
16258         parameters may be in the same assembly, but never use a typedef
16259         for them.
16260         (mono_reflection_define_generic_parameter): We're now creating a
16261         "real" class for the type parameter; it's now safe to call
16262         mono_class_from_mono_type() on the class'es type, it'll do the
16263         right thing.
16264
16265 2003-09-16  Martin Baulig  <martin@ximian.com>
16266
16267         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
16268         `symfile->range_entry_size' and `symfile->class_entry_size' here;
16269         the `symfile' data structure must be fully initialized before it
16270         gets added to the table.
16271
16272 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
16273
16274         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
16275
16276         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
16277         class init trampolines.
16278
16279 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
16280
16281         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
16282         to the built-in profiler to turn off time and allocation profiling
16283         respectively.
16284
16285 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
16286
16287         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
16288         g_direct_equal.
16289
16290         * debug-helpers.c (mono_method_full_name): Print the wrapper type
16291         in human readable form.
16292
16293 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
16294
16295         * reflection.c icall.c: Fixed warnings.
16296
16297         * image.c (load_class_names): Use a temporary hash table to hold the
16298         namespaces in order to avoid doing many string comparisons.
16299
16300         * image.h: Fix typo.
16301
16302         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
16303         Pass NULL instead of g_direct_equal to the GHashTable constructor 
16304         since the NULL case is short-circuited inside g_hash_table_lookup, 
16305         leading to better performance.  
16306
16307         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
16308         obtain the first custom attribute for a given index. Depends on the
16309         CustomAttribute table being sorted by the parent field.
16310
16311         * reflection.c (mono_custom_attrs_from_index): Use the new function 
16312         for better performance.
16313
16314 2003-09-07  Martin Baulig  <martin@ximian.com>
16315
16316         * class.c (mono_class_init): If we're a generic instance, inflate
16317         all our methods instead of loading them from the image.
16318         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16319
16320 2003-09-07  Martin Baulig  <martin@ximian.com>
16321
16322         * mono-debug-debugger.c: Added support for constructors.
16323
16324 2003-09-06  Martin Baulig  <martin@ximian.com>
16325
16326         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16327         New interncall.
16328
16329         * reflection.c (mono_reflection_setup_generic_class): Call
16330         ensure_runtime_vtable() to create the vtable.
16331
16332 2003-09-05  Martin Baulig  <martin@ximian.com>
16333
16334         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16335         MONO_TYPE_MVAR.
16336
16337 2003-09-04  Martin Baulig  <martin@ximian.com>
16338
16339         * reflection.c (mono_reflection_define_generic_parameter): Generic
16340         parameters start with zero.
16341
16342 2003-09-04  Martin Baulig  <martin@ximian.com>
16343
16344         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16345
16346         * reflection.h (MonoReflectionGenericParam): New typedef.
16347         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16348         the generic parameters from the managed TypeBuilder.
16349
16350         * reflection.c (mono_reflection_define_generic_parameter): New function.
16351         (mono_reflection_create_runtime_class): Encode generic parameters.
16352         (mono_reflection_setup_generic_class): New function; this is
16353         called after adding adding all generic params to the TypeBuilder.
16354         (encode_type): Added MONO_TYPE_VAR.
16355
16356 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16357
16358         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16359         here from the JIT.
16360
16361         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16362         load hook.
16363
16364 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16365
16366         * reflection.h reflection.c class.h class.c: Delete duplicate 
16367         definition of mono_type_get_name () from reflection.c and export the
16368         one in class.c.
16369
16370         * class.c: Class loading fixes from Bernie Solomon 
16371         (bernard@ugsolutions.com).
16372
16373         * reflection.c: Endianness fixes from Bernie Solomon 
16374         (bernard@ugsolutions.com).
16375         
16376 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16377
16378         * assembly.h assembly.c: Define a file format version for AOT
16379         libraries.
16380         
16381         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16382
16383         * appdomain.h (MonoJitInfo): New field to determine whenever the
16384         code is domain neutral.
16385         
16386 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16387
16388         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16389
16390 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16391
16392         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16393         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16394         Avoid caching the result since strings must be domain specific. Fixes
16395         #48050.
16396
16397 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16398
16399         * marshal.c (mono_marshal_init): Make this callable multiple times
16400         since it is hard to find a correct place to call it.
16401
16402         * object.c (mono_runtime_class_init): Execute static constructors in
16403         the correct appdomain.
16404
16405         * image.c (build_guid_table): Handle the case when multiple images have
16406         the same GUID.
16407
16408 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16409
16410         * icall.c: added a couple of icalls for System.Web.
16411
16412 2003-08-28  Martin Baulig  <martin@ximian.com>
16413
16414         * icall.c (ves_icall_Type_BindGenericParameters): Use
16415         `klass->generic_inst' instead of `&klass->byval_arg' in the
16416         mono_type_get_object() call.  The returned type must be
16417         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16418
16419 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16420
16421         * NOTES: New file.
16422
16423         * object.c (mono_class_proxy_vtable): Make it thread safe.
16424
16425         * pedump.c: Fix warning.
16426
16427         * object.c appdomain.h: Get rid of metadata_section. 
16428         It is no longer needed and it was causing deadlocks with domain->lock.
16429
16430         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16431
16432 2003-08-26  Martin Baulig  <martin@ximian.com>
16433
16434         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16435
16436 2003-08-26  Martin Baulig  <martin@ximian.com>
16437
16438         * pedump.c (main): Call mono_metadata_init(),
16439         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16440         and mono_loader_init().
16441
16442 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16443
16444         * loader.h: Add missing include to fix build.
16445
16446         * image.h: mono_image_load_references is no more.
16447
16448         * assembly.c: Reworked assembly loading to make it really thread safe.
16449         After these changes, the assembly returned by mono_assembly_open is
16450         fully initialized, i.e. all its references assemblies are loaded.
16451
16452         * assembly.c (mono_image_load_references): Renamed to 
16453         mono_assembly_load_references, and made private, since clients no
16454         longer need to call it.
16455
16456         * class.c: Removed calls to mono_assembly_load_references, since it was
16457         a source of deadlocks.
16458
16459         * loader.h loader.c class.h class.c: Protect data structures using a 
16460         new lock, the loader lock.
16461
16462         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16463         GPtrArrays only when needed.
16464
16465         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16466         into empty structures by mcs. Fixes pinvoke7.cs.
16467         
16468         * domain.c (mono_init): Call a new initialization function.
16469
16470         * appdomain.c (mono_runtime_init): Call the new initializer function
16471         of the marshal module.
16472
16473         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16474         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16475
16476         * marshal.h marshal.c: Added locks around the wrapper caches to make
16477         this module thread safe.
16478
16479         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16480         this argument. Fixes pinvoke1.exe.
16481
16482 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16483
16484         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16485         enumeration of values. Removed fields to store remote call output values in
16486         MonoAsyncResult. Not needed any more.
16487         * object.c: Initialize call_type and async_result fields in mono_message_init.
16488         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16489         dispatching the message.
16490         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16491         async call to finish. To do it use a message with EndInvoke call type.
16492
16493 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16494
16495         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16496         determines whenever a method has marshalling info.
16497
16498 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16499
16500         * assembly.c: fix the build on windows.
16501
16502 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16503
16504         * object.cs: Fixed bug #47785.
16505
16506 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16507
16508         * string-icalls.c (StringReplace): If their are no occurances of
16509         the old string found return a reference to the supplied
16510         string. This saves some memory and matches MS behavoir.
16511         
16512 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16513
16514         * socket-io.c: fixed compilation for systems that define AF_INET6
16515         and don't define SOL_IP/SOL_IPV6.
16516
16517 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16518
16519         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16520         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16521
16522         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16523
16524         * domain.c: Make this module thread safe.
16525
16526         * domain.c (mono_init): Call new initialization function.
16527
16528         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16529         reference types too. Fixes #38812.
16530
16531         * image.c (mono_image_init): Fixed warnings.
16532
16533         * class.c (mono_class_from_typeref): Handle assembly load failure
16534         correctly.
16535
16536         * appdomain.c (add_assemblies_to_domain): Handle the case when
16537         the references of an assembly are not yet loaded.
16538
16539         * metadata.c image.c assembly.c: Moved initialization of global
16540         variables to a separate function called at startup since lazy 
16541         initialization of these variables is not thread safe.
16542         
16543         * image.c assembly.c: Made this module thread safe by adding locks in 
16544         the appropriate places.
16545
16546         * domain.c (mono_init): Call the new initialization functions of the
16547         three modules.
16548
16549 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16550
16551         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16552           make a direct call. It is proxy's work to make the call asynchronous.
16553           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16554           the return values.
16555         * object.cs: mono_method_call_message_new(): read AsyncResult and
16556           state object from parameters list, if this info is requested.
16557         * object.h: Added fields to store remote call output values in
16558           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16559
16560 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16561
16562         * object.h: add needed fields to MonoThread.
16563         * threads.c, threads.h: allow registering a function to cleanup data
16564         allocated per thread by the JIT.
16565
16566 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16567
16568         * loader.h: portability fix by Bernie Solomon
16569         * <bernard@ugsolutions.com>.
16570
16571 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16572
16573         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16574         return a MonoArray. This simplifies the code and also ensures that
16575         the cache allways contains an object reference as a value.
16576
16577         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16578         function.
16579
16580 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16581
16582         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16583         fixes a problem with byte ordering when getting the address family for
16584         a socket.
16585
16586 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16587
16588         * .cvsignore: Added monosn.
16589
16590         * reflection.h reflection.c loader.c: Added support for parameter
16591         marshalling to dynamically created types. Fixes #47295.
16592
16593 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16594
16595         * rand.c: remove useless warnings.
16596
16597 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16598
16599         * class.c: implemented ldtoken for methods and fieldrefs.
16600
16601 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16602
16603         * threadpool.c: when mono_async_invoke was called, no one took care of
16604         monitoring the queue. So if the method invoked took some time and we
16605         got new async invoke requests after 500 ms (the thread created waited
16606         that long in WaitForSingleObject), the new async invoke was not called
16607         until the previous one finished.
16608
16609         This is fixed now. Thanks to Totte for helping with it.
16610
16611 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16612
16613         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16614
16615 2003-08-11  Martin Baulig  <martin@ximian.com>
16616
16617         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16618
16619 2003-08-06  Martin Baulig  <martin@ximian.com>
16620
16621         * mono-debug-debugger.c: Added support for static fields,
16622         properties and methods.
16623
16624 2003-08-06  Martin Baulig  <martin@ximian.com>
16625
16626         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16627         make this work for applications with multiple application domains.
16628
16629 2003-08-04  Martin Baulig  <martin@ximian.com>
16630
16631         * mono-debug-debugger.c: Completely reworked the type support; the
16632         most important thing is that we're now just using one single
16633         `MonoType' instance per type.
16634
16635 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16636
16637         * mono-endian.h, mono-endian.c, icall.c: Added icall
16638         ves_icall_System_Double_AssertEndianity to assert double word endianity
16639         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16640
16641 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16642
16643         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16644         support, icalls and fixes.
16645
16646 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16647
16648         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16649         classes that are a punctuation character in .NET is not the same a
16650         g_unichar_ispunct.
16651
16652 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16653
16654         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16655
16656 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16657
16658         * icall.c: Add new MemCopy internalcall.
16659         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16660         Simplified code; It is not necessary to handle all the cases here,
16661         as the C# code takes care of it.  Only handle the case of the name
16662         resource embedded into the assembly.
16663
16664         Changed signature to return the data pointer and the size of the
16665         data. 
16666
16667 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16668
16669         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16670         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16671
16672 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16673
16674         * socket-io.c: ignore EINTR error in select.
16675
16676 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16677
16678         * class.h, class.c: removed unused subclasses field in MonoClass.
16679
16680 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16681
16682         * icall.c: improve fix of get_base_definition(). If the parent class
16683           doesn't have the mehod, look at the parent of the parent.
16684         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16685           to check if a parameter is an in or out parameter
16686           (PARAM_ATTRIBUTE_IN is not set by default).
16687           mono_method_return_message_restore(): Use mono_class_value_size to
16688           get the size of a value type. mono_type_stack_size (parameterType)
16689           does not return the correct value if parameterType is byRef.
16690           mono_load_remote_field(), mono_load_remote_field_new(),
16691           mono_store_remote_field(), mono_store_remote_field_new():
16692           raise exception if the remote call returns an exception.
16693
16694 2003-07-28  Martin Baulig  <martin@ximian.com>
16695
16696         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16697         method.  This is a wrapper around mono_runtime_invoke() which
16698         boxes the instance object if neccessary.
16699
16700 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16701
16702         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16703         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16704
16705 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16706
16707         * icall.c: disable mcs bug workaround.
16708
16709 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16710
16711         * object.c (mono_runtime_class_init): Take the metadata_section
16712         mutex before obtaining the domain mutex.
16713
16714         * appdomain.h: Added definition of metadata_section mutex here. 
16715
16716         * object.c: define metadata_mutex here.
16717
16718 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16719
16720         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16721         fixed.
16722
16723 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16724
16725         * reflection.c: Fix bug #46669
16726
16727 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16728
16729         * exception.c:
16730         * exception.h:
16731         * icall.c:
16732         * object.h: fill in the type name for TypeLoadException.
16733
16734 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16735
16736         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16737         relationship between TypeBuilders while compiling corlib) and bug
16738         45993 (Array types returned from the runtime while compiling
16739         corlib were from the loaded corlib).
16740
16741 2003-07-22  Martin Baulig  <martin@ximian.com>
16742
16743         * mono-debug-debugger.c: Reworked the type support a bit more;
16744         distinguish between types and classes.
16745
16746 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16747
16748         * icall.c: add IsArrayImpl icall.
16749
16750 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16751
16752         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16753         initializing real_size only once. Also fix bug #46602.
16754
16755 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16756
16757         * object.c: Renamed mono_metadata_section to metadata_section.
16758
16759 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16760
16761         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16762           empty array if the type is an array. Fixed.
16763           ves_icall_MonoMethod_get_base_definition: if the base method
16764           is abstract, get the MethodInfo from the list of methods of
16765           the class.
16766         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16767           and it was 1-based. Fixed in mono_param_get_objects.
16768
16769 2003-07-20  Martin Baulig  <martin@ximian.com>
16770
16771         * mono-debug.h: Set version number to 31.
16772         (mono_debug_init): Added `MonoDomain *' argument.
16773
16774         * mono-debug-debugger.c: Reworked the type support; explicitly
16775         tell the debugger about builtin types; pass the `klass' address to
16776         the debugger.
16777
16778 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16779
16780         * image.c: Allow new metadata tables to be loaded without a
16781         warning. Also update the warning message to give the new constant value.
16782                 
16783 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16784
16785         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16786         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16787         array type representation changes.
16788
16789 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16790
16791         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16792         on Environment.Exit () call.
16793
16794 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16795
16796         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16797         requires a matching corlib.
16798
16799 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16800
16801         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16802           Committed again without the CRs.
16803         
16804 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16805
16806         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16807           getting it from the "this" socket instance. Did not work
16808           if the socket is a subclass of Socket.
16809           Also fixed bug #35371.
16810
16811 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16812
16813         * metadata.c: fixed size for TypedByRef.
16814         * loader.c: when searching for a method, consider the vararg amrker.
16815         * unicode.c, decimal.c: constify some arrays.
16816
16817 2003-07-15  Dick Porter  <dick@ximian.com>
16818
16819         * socket-io.c: Fixed compilation for gcc < 3.2.
16820
16821         Fixed compilation for machines that don't have AF_INET6 (thanks to
16822         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16823
16824         Fixed compile warnings.
16825         
16826         Fixed formatting and line endings.
16827
16828 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16829
16830         * socket-io.h:
16831         * socket-io.c: Added IPv6 support.
16832
16833 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16834
16835         * class.c (mono_class_is_assignable_from): New function to implement
16836         the is_assignable_from logic. Used by mono_object_isinst, 
16837         Type::IsAssignableFrom () and the interpreter.
16838
16839         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16840         Object, even interfaces.
16841         
16842         * object.c (mono_object_isinst): Implement in terms of 
16843         is_assignable_from.
16844
16845         * icall.c (ves_icall_type_is_assignable_from): New icall.
16846
16847 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16848
16849         * domain.c (foreach_domain): fix compiler warning.
16850
16851 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16852
16853         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16854         not available on all plattforms
16855
16856 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16857
16858         * image.h image.c: Store the metadata version string in MonoImage.
16859         * icall.c: New icall to retrieve the image version.
16860         * reflection.c (create_dynamic_image): Fill in the image version field
16861         * reflection.c (build_compressed_metadata): Use the image version
16862         from the image structure.
16863
16864 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16865
16866         * appdomain.c: modified comment.
16867         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16868         That will be its last iteration when mono_gc_cleanup is called from
16869         mono_runtime_cleanup and before the domain is unloaded.
16870
16871         Fixes bug #45962.
16872
16873 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16874
16875         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16876         attributes.
16877
16878 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16879
16880         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16881         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16882         Bernie Solomon <bernard@ugsolutions.com>.
16883
16884 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16885
16886         * object.c, object.h: provide mono_object_new_fast() for faster
16887         allocation in some special cases.
16888
16889 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16890
16891         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16892         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16893
16894 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16895
16896         * threadpool.c: fix leaks.
16897
16898 2003-07-01  Dick Porter  <dick@ximian.com>
16899
16900         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16901         using MonoGHashTables.  Fixes threadpool bug posted to list.
16902
16903 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16904
16905         * image.h, image.c: added support to load an assembly from a byte array.
16906         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16907         assembly bundle support.
16908
16909 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16910
16911         * threadpool.c (mono_thread_pool_add): keep a reference to the
16912         AsyncResult to prevent GC
16913
16914 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16915
16916         * class.c: leak fix.
16917
16918 2003-06-25  Dick Porter  <dick@ximian.com>
16919
16920         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16921         for the async object, the WaitHandle object will close the handle.
16922         Fixes bug 45321.
16923
16924 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16925
16926         * class.c: in mono_array_class_get (), lookup from the hash with the
16927         same type we insert: this works around a bug in
16928         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16929         lluis. The real fix will have to wait for after the release.
16930
16931 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16932
16933         * icall.c: fix memory leak when getting type members.
16934
16935 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16936
16937         * reflection.c: added more pubtoken special cases.
16938
16939 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16940
16941         * class.c: handle field offset correctly when class size
16942         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16943
16944 2003-06-20  Martin Baulig  <martin@ximian.com>
16945
16946         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16947         *image' field.
16948
16949 2003-06-20  Martin Baulig  <martin@ximian.com>
16950
16951         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16952
16953 2003-06-20  Martin Baulig  <martin@ximian.com>
16954
16955         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16956         just distinguish between variables in registers and variables at
16957         an offset relative to a register.
16958
16959 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16960
16961         * icall.c: #ifdef out latest changes until mcs is fixed.
16962
16963 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16964
16965         * icall.c: return members in metadata order.
16966
16967 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16968
16969         * icall.c: avoid infinite loop in GetTimeZoneData.
16970
16971 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16972
16973         * icall.c: added Marshal.Prelink/All icalls.
16974
16975 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16976
16977         * object.c, object.h: fix warnings and do some overflow checking
16978         when creating arrays.
16979
16980 2003-06-17  Dick Porter  <dick@ximian.com>
16981
16982         * file-io.h:
16983         * file-io.c: File attributes need to be tweaked slightly when
16984         passed from the managed to the w32 world.
16985
16986 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16987         * profiler.h profiler-private.h profiler.c: Rework last patch
16988         based on suggestion by Paolo.
16989         
16990 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16991
16992         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16993         instruction level coverage data collection.
16994         * profiler.h profiler.c (: Added new callback function which can be
16995         used by the profiler to limit which functions should have coverage
16996         instrumentation.
16997         * profiler.c (mono_profiler_load): Call g_module_build_path to
16998         generate the file name of the profiler library.
16999
17000 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
17001
17002         * profiler.c, profiler.h, profiler-private.h: added basic block 
17003         coverage profiling API.
17004
17005 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
17006
17007         * reflection.c (mono_reflection_create_runtime_class): Add support
17008         for events in dynamically generated code.
17009
17010         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
17011         not allocated.
17012
17013 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
17014
17015         * icall.c: when getting timezone info, return reasonable values if we
17016         can't get the actual data.
17017
17018 2003-06-14  Dick Porter  <dick@ximian.com>
17019
17020         * threads.c (start_wrapper): Remove the reference to the thread
17021         object in the TLS data, so the thread object can be finalized.
17022         This won't be reached if the thread threw an uncaught exception,
17023         so those thread handles will stay referenced :-( (This is due to
17024         missing support for scanning thread-specific data in the Boehm GC
17025         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
17026
17027 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
17028
17029         * reflection.c: ensure streams and tables are first allocated with
17030         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
17031
17032 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
17033
17034         * icall.c: fixed GetElementType for byrefs (bug# 44792).
17035
17036 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
17037
17038         * reflection.c (mono_reflection_create_runtime_class): Add support for
17039         properties to dynamically created classes.
17040         * reflection.c: Fix a few places where non-MonoObjects were inserted
17041         into the tokens hashtable.
17042
17043 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17044
17045         * object.c: some support to handle out of memory exceptions.
17046
17047 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
17048
17049         * marshal.c (mono_marshal_get_native_wrapper): support reference
17050         return types
17051
17052 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17053
17054         * object.h, object.c: more portability stuff from Bernie Solomon.
17055         Unexport mono_object_allocate(). Added mono_object_unbox ().
17056         Set exitcode when an unhandled exception is thrown.
17057
17058 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
17059
17060         * marshal.c (mono_marshal_get_native_wrapper): use custom
17061         marshaler for return types.
17062
17063 2003-06-10  Dick Porter  <dick@ximian.com>
17064
17065         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
17066         ip_mreq is available
17067
17068 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
17069
17070         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
17071         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
17072         by Bernie Solomon <bernard@ugsolutions.com>.
17073
17074 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
17075
17076         * gc.c (mono_gc_init): Avoid error message on shutdown when
17077         GC_DONT_GC=1 is used.
17078
17079         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
17080         New icall to return the GUID of a module.
17081
17082 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17083
17084         * class.c: ensure instance size always includes the parent's size
17085         even whem class size is set explicitly (fixes bug#44294).
17086
17087 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17088
17089         * profiler.h, profiler.c: made the simple profiler thread-safe,
17090         get more accurate timing info. Allow the loading of an
17091         externally-developed profiler module.
17092
17093 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
17094
17095         * marshal.c (mono_marshal_get_native_wrapper): improved
17096         class/byref arguments.
17097         (mono_marshal_get_native_wrapper): better string marshaling support.
17098
17099 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
17100
17101         * class.c: ensure .pack and .size are handled correctly and
17102         simplified layout of static fields.
17103
17104 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
17105
17106         * appdomain.c
17107         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
17108
17109         * loader.c (mono_lookup_pinvoke_call): look for modules in the
17110         current directory (fix bug 44008)
17111
17112 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
17113
17114         * marshal.c (mono_marshal_get_native_wrapper): started support for
17115         custom marshalers.
17116         (mono_delegate_to_ftnptr): consider marshalling specifications
17117
17118 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
17119
17120         * reflection.c, reflection.h: emit custom marshal info.
17121
17122 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17123
17124         * object.c: free the GError.
17125         * icall.c: added CloseEvent_internal.
17126         * threads.[ch]:
17127         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
17128         call.
17129
17130 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
17131
17132         * loader.c (mono_method_get_signature): Add support for dynamic
17133         assemblies.
17134
17135 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
17136
17137         * reflection.c: fixed bug #43905.
17138
17139 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
17140
17141         * class.c, domain.c, icall.c, metadata.h, object.h: support for
17142         handling TypedReference and ArgIterator.
17143         * loader.c, loader.h: added function to get signature at call site.
17144
17145 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17146
17147         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
17148         data readonly. Buglets and warning fixes. Some MethodSpec support.
17149
17150 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
17151
17152         * class.h, class.c, object.c: remove relative numbering support.
17153
17154 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
17155
17156         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
17157         free the string, until we get a chance to fix Gtk#
17158
17159 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17160
17161         * marshal.c: revert last patch.
17162
17163 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
17164
17165         * icall.c: updates for new mono_class_vtable() not calling
17166         the type constructor anymore.
17167
17168 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17169
17170         * object.h, object.c: separate vtable creation from type
17171         initialization. Make running the .cctor thread safe.
17172
17173 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
17174
17175         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
17176
17177 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
17178
17179         * loader.c (mono_get_method): consider calling convention
17180
17181 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
17182
17183         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
17184         to return the invisible global type for a module.
17185
17186         * reflection.c (mono_image_build_metadata): Emit global fields too.
17187
17188 2003-05-20  Peter Williams  <peterw@ximian.com>
17189
17190         * loader.c (mono_lookup_internal_call): Add a few newlines.
17191
17192 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
17193
17194         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
17195         literal strings.
17196
17197         * appdomain.c (set_domain_search_path): Recalculate search path when
17198         AppDomainSetup.PrivateBinPath changes.
17199
17200         * object.c (mono_class_compute_gc_descriptor): It turns out some
17201         parts of the class libs (like System.Thread) holds pointers to
17202         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
17203         to treat native int a pointer type here.
17204         
17205 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
17206
17207         * appdomain.h, domain.c: add hashtable for jump target resolution.
17208
17209 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
17210
17211         * reflection.h reflection.c icall.c: Added new icalls 
17212         GetManifestResourceInfoInternal, GetModulesInternal and support
17213         infrastructure.
17214
17215 2003-05-16  Dick Porter  <dick@ximian.com>
17216
17217         * icall.c:
17218         * file-io.h:
17219         * file-io.c: Implement System.IO.MonoIO::GetTempPath
17220
17221 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
17222
17223         * object.c: mono_store_remote_field: little fix to previous patch.
17224
17225 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17226
17227         * class.c: add constructors to array classes.
17228         * icall.c: special case array construction for InternalInvoke (),
17229
17230 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
17231
17232         * class.h class.c reflection.c object.c: Added support for field
17233         defaults in dynamically generated classes.
17234
17235 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
17236
17237         * reflection.c: properly encode charset for ddlimport.
17238
17239 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
17240
17241         * threads.c: allow compiling without GC.
17242
17243 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17244
17245         * appdomain.h, object.c, object.h, threads.c, threads.h: added
17246         handling of thread static data.
17247
17248 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17249
17250         * reflection.h, reflection.c: added mono_custom_attrs_free ().
17251
17252 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
17253
17254         * class.c (mono_array_class_get): always set the serializable flags
17255         (mono_array_class_get): always set the SEALED attribute for array types
17256
17257 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
17258
17259         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
17260         attributes (fix for bug 42021).
17261
17262 2003-05-12  Dick Porter  <dick@ximian.com>
17263
17264         * gc.c: Don't run finalizers when the finalizer thread is
17265         finishing up, because the default domain has already been
17266         destroyed.
17267
17268 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
17269
17270         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
17271         value is null, we should throw an exception.   This is slightly
17272         different than the other conventions used for the constructor.
17273
17274 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17275
17276         * socket-io.c: fixed windows build.
17277
17278 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17279
17280         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
17281
17282 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
17283
17284         * object.c (mono_string_new_wrapper): Compatibility fix for MS
17285         compilers.
17286
17287 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
17288
17289         * class.c (mono_class_layout_fields): Add experimental GC aware
17290         auto layout facility. Requires class library changes to work correctly.
17291
17292         (mono_class_setup_vtable): Avoid overriding explicit interface
17293         method implementations. Fixes iface3.exe test.
17294
17295         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
17296         object reference.
17297         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
17298         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
17299
17300         * metadata.h: Add new type classification macro which determines
17301         whenever the type holds an object reference.
17302
17303 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
17304
17305         * marshal.c (mono_marshal_get_native_wrapper): cleanups
17306
17307 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
17308
17309         * gc.c (finalizer_thread): Work around a GC bug.
17310
17311 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
17312
17313         * marshal.c (emit_struct_conv): allow unions
17314
17315         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17316
17317 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17318
17319         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17320
17321 2003-05-06  Martin Baulig  <martin@ximian.com>
17322
17323         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17324
17325 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17326
17327         * socket-io.c:
17328         (Select_internal): allow NULLs, don't create arrays if not needed.
17329         Coupled with Socket.cs changes.
17330
17331         * threadpool.c:
17332         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17333         register a finalizer for it that will close the semaphore handle. This
17334         fixes the leak and make Lupus' test run with > 4080 loops.
17335
17336 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17337
17338         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17339         Jerome Laban (bug #42287)
17340
17341 2003-05-02  Martin Baulig  <martin@ximian.com>
17342
17343         * debug-mono-symfile.h
17344         (MonoSymbolFile): Moved declaration into mono-debug.h.
17345         (MonoDebugMethodJitInfo): Likewise.
17346         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17347         argument.
17348         (_mono_debug_address_from_il_offset): Take a
17349         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17350
17351         * mono-debug.h
17352         (MonoDebugDomainData): New struct.
17353         (mono_debug_get_domain_data): New function.
17354         (mono_debug_add_method): Take an additional `MonoDomain *'
17355         argument.
17356         (mono_debug_source_location_from_address): Likewise.
17357         (mono_debug_il_offset_from_address): Likewise.
17358         (mono_debug_address_from_il_offset): Likewise.
17359
17360 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17361
17362         * reflection.c: one more check for null type in custom attrs.
17363
17364 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17365
17366         * reflection.c: avoid warning (comparison is always false due to limited
17367         range of data type).
17368
17369 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17370
17371         * icall.c: throw an exception in Type.GetField if the argument 'name'
17372         is NULL.
17373
17374 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17375
17376         * reflection.c: fixed handling of enums in named arguments to custom
17377         attributes (bug #42123).
17378
17379 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17380
17381         * reflection.c: use the right array element type and handle
17382         a null for a Type argument, too.
17383
17384 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17385
17386         * reflection.c: handle arrays as arguments to custom attributes.
17387
17388 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17389
17390         * reflection.c: handle a string value in a custom attr
17391         ctor that takes an object.
17392
17393 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17394
17395         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17396         (fix bug #42063)
17397
17398 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17399
17400         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17401
17402 2003-04-27  Martin Baulig  <martin@ximian.com>
17403
17404         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17405         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17406         MONO_DEBUGGER_EVENT_BREAKPOINT.
17407         (mono_breakpoint_trampoline_code): Removed.
17408         (mono_debugger_event_handler): The last argument is now a
17409         `guint32'.
17410         (mono_debugger_insert_breakpoint_full): Removed the
17411         `use_trampoline' argument.
17412         (mono_debugger_method_has_breakpoint): Likewise.
17413         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17414         mono_debugger_breakpoint_callback(); take the method and
17415         breakpoint number as arguments.
17416
17417 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17418
17419         * metadata.c: fix off by one when loading parameters attributes.
17420
17421 2003-04-24  Martin Baulig  <martin@ximian.com>
17422
17423         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17424
17425 2003-04-24  Martin Baulig  <martin@ximian.com>
17426
17427         * mono-debug-debugger.c: Moved all code which interacts with the
17428         Mono Debugger here.
17429
17430         * debug-mono-symfile.c: This code now just deals with the symbol
17431         file itself, the debugger code is now in mono-debug-debugger.c.
17432
17433 2003-04-23  Martin Baulig  <martin@ximian.com>
17434
17435         * mono-debug.c (mono_debug_source_location_from_il_offset):
17436         New method; like mono_debug_source_location_from_address(), but
17437         takes an IL offset instead of a machine address.
17438
17439 2003-04-23  Martin Baulig  <martin@ximian.com>
17440
17441         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17442         `line' field; this is now computed by the debugger.
17443
17444 2003-04-23  Martin Baulig  <martin@ximian.com>
17445
17446         * mono-debug.[ch]: New files.  This is the new debugging interface.
17447
17448         * mono-debug-debugger.[ch]: New files.  Moved all code which
17449         interacts with the Mono Debugger here.
17450
17451 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17452
17453         * domain.c (mono_init): initialize mono_defaults.monitor_class
17454
17455 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17456
17457         * reflection.c (method_encode_code): Add a spicy exception to help
17458         future compiler authors.
17459
17460 2003-04-21  Martin Baulig  <martin@ximian.com>
17461
17462         * icall.c
17463         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17464         Make this work with relative pathnames; g_filename_to_uri() needs
17465         an absolute filename.
17466
17467 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17468
17469         * icall.c: Track name changes in Object and ValueType.
17470
17471 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17472
17473         * metadata.c (mono_type_stack_size): size should be a multiple of
17474         sizeof (gpointer)
17475
17476 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17477
17478         * gc.c:
17479         (internal_domain_finalize): moved into mono_domain_finalize. No need
17480         to create another thread because the finalizers will be run in the
17481         finalizer thread.
17482         
17483         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17484         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17485         to be run (MS does this too).
17486
17487 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17488
17489         * object.c (mono_class_compute_gc_descriptor): Update comment.
17490
17491         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17492
17493         * image.h: Add synchronized wrapper cache.
17494
17495         * image.c (do_mono_image_open): Initialize cache.
17496
17497         * reflection.c (create_dynamic_mono_image): Initialize cache.
17498
17499 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17500
17501         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17502         ves_icall_System_Buffer_ByteLengthInternal.
17503
17504 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17505
17506         * reflection.c: setup klass->nested_in earlier. Allow
17507         a dash in the assembly name.
17508
17509 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17510
17511         * metadata.c (mono_type_to_unmanaged): dont access
17512         type->data.klass for MONO_TYPE_OBJECT
17513         (mono_type_to_unmanaged): consider System.Delegate class
17514
17515 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17516
17517         * class.c: just setup supertypes in the proper place instead of
17518         initializing the full element class for arrays.
17519
17520 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17521
17522         * class.c: ensure the element class of arrays is initialized.
17523         Setup the supertype info for array classes, too.
17524
17525 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17526
17527         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17528
17529 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17530
17531         * Makefile.am: re-added -m option when running cygpath. This way,
17532         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17533         separator.
17534         * mono-config.c: same codepath for locating mono config file for WIN32
17535         and the rest.
17536         * assembly.c: if mono_assembly_setrootdir is called, don't override
17537         the value set.
17538
17539 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17540
17541         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17542         MONO_ASSEMBLIES variable.
17543
17544 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17545
17546         * icall.c: added Assembly::GetNamespaces() icall.
17547
17548 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17549
17550         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17551
17552 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17553
17554         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17555         * object.c: fixed bug in the construction of vtable for proxies
17556
17557 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17558
17559         * object.c (mono_array_new): Mark mono_array_new as an icall.
17560
17561 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17562
17563         * class.c: fixed test for public method when overriding interfaces.
17564         Closes bug #40970.
17565
17566 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17567
17568         * appdomain.h, domain.c: added mono_domain_foreach() to
17569         be able to access the currently loaded appdomains.
17570         * object.c: make string interning work across sppdomains.
17571         Mark some functions for use as icalls.
17572
17573 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17574
17575         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17576
17577         * reflection.h reflection.c: Allocate long living data using 
17578         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17579
17580         * reflection.c: Double the allocation size in streams instead of
17581         increasing it, to prevent unneccesary copying on large assemblies.
17582         
17583         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17584         creation if the assembly does not have the Run flag set.
17585
17586 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17587
17588         * class.h: avoid the C++ keywords in header files (Jerome Laban
17589         spotted and fixed this).
17590
17591 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17592
17593         * object.c:
17594         (mono_unhandled_exception): fill in the arguments for the
17595         UnhandledException event. Only trigger that event for the default
17596         domain (as MS does).
17597
17598 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17599
17600         * object.c: Improve typed allocation stuff based on suggestions from
17601         Paolo. Also turn it on if the GC library supports it.
17602
17603 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17604
17605         * object.c object.h class.h: Added experimental typed allocation
17606         facility using the interfaces in gc_gcj.h.
17607
17608         * os/gc_wrapper.h: Added new include files.
17609         
17610 2003-04-03  Martin Baulig  <martin@ximian.com>
17611
17612         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17613         which is not yet enabled by default.
17614
17615         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17616         functions.
17617         (mono_gc_lock, mono_gc_unlock): New static functions.
17618
17619         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17620         functions; stop/start the world for the garbage collector.  This
17621         is using the windows API; we need to complete the SuspendThread()/
17622         ResumeThread() implementation in the io-layer to make this work on Unix.
17623         (mono_gc_push_all_stacks): New public function; tells the garbage
17624         collector about the stack pointers from all managed threads.
17625
17626 2003-04-03  Martin Baulig  <martin@ximian.com>
17627
17628         * object.h (MonoThread): Added `gpointer stack_ptr'.
17629
17630         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17631
17632 2003-04-03  Martin Baulig  <martin@ximian.com>
17633
17634         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17635
17636 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17637
17638         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17639         field.last.
17640
17641 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17642
17643         * loader.c (mono_lookup_internal_call): Report the corlib that is
17644         out of sync.
17645
17646 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17647
17648         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17649         System.DBNull (it's class not valuetype).
17650
17651 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17652
17653         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17654         if the array method was already assigned a token (fixes bug#40646).
17655
17656 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17657
17658         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17659         if no assembly is given.
17660
17661 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17662
17663         * metadata.h: Added the new tables.
17664
17665         * row-indexes.h: Added definitions for new tables.
17666
17667         * metadata.c: Add schemas for new tables, and add support for
17668         computing the sizes of them.
17669
17670         * class.c: Update for handling the new type cases.
17671
17672 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17673
17674         * metadata.h (MONO_TYPE_IS_VOID): new macro
17675
17676 2003-03-31  Martin Baulig  <martin@ximian.com>
17677
17678         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17679
17680         * threads.c (mono_thread_new_init): Call `thread_created' in the
17681         mono_thread_callbacks.
17682
17683 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17684
17685         * loader.h: added marshalbyrefobject_class to mono_defaults
17686         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17687         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17688           generation of output parameters.
17689           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17690         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17691           contextbound and the target object belongs to the context of the caller.
17692         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17693         * object.c: Implemented support for interfaces and abstract classes
17694           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17695           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17696
17697 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17698
17699         * class.h class.c (mono_class_is_subclass_of): New function.
17700         
17701         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17702         routines for most common case (calls from ArrayList::ToArray).
17703
17704         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17705         routine so programs which call Environment::Exit() can be profiled.
17706
17707         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17708         Added MONO_ARCH_SAVE_REGS.
17709
17710         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17711
17712 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17713
17714         * blob.h: Add a couple of new MonoType types definitions.
17715
17716         * tabledefs.h: Add a couple of new call convs.
17717
17718 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17719
17720         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17721         the layout of the class.
17722
17723         * reflection.c (alloc_table): double the size on overflow to avoid
17724         unnecessary copying.
17725
17726         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17727         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17728         null so it can be garbage collected.
17729         
17730 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17731
17732         * reflection.c (mono_reflection_get_type): Return the resolved type
17733         only if it is in the assembly we searched.
17734
17735         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17736
17737         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17738         method.
17739
17740 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17741
17742         * appdomain.c:
17743         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17744         the right one is 'file:///blah', but MS allows it.
17745         * assembly.c:
17746         (mono_assembly_open): allow 'file://blah'
17747
17748         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17749
17750 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17751
17752         * socket-io.c: fixes bug #40310.
17753
17754 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17755
17756         * reflection.c (mono_reflection_parse_type): handle deeply nested
17757         types correctly.
17758
17759         * reflection.c (mono_image_create_token): Use unique token values
17760         since they will be put into a hash table.
17761
17762         * class.c (mono_class_setup_vtable): If a method occurs in more than
17763         one place in the vtable, and it gets overriden, then change the
17764         other occurances too.
17765
17766         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17767         object as return type.
17768
17769 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17770
17771         * icall.c: Deleted "ToString" implementation for double and float
17772         because they are full implemented in managed code.
17773
17774 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17775
17776         * reflection.c, reflection.h: implemented and exported functions
17777         to retrieve info about custom attributes.
17778
17779 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17780
17781         * appdomain.c: moved Uri handling to assembly.c
17782         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17783         work when using a file Uri in *nix and windows.
17784
17785         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17786         GetReferencedAssemblies.
17787
17788 2003-03-18  Dick Porter  <dick@ximian.com>
17789
17790         * icall.c: Rename a couple of internal calls
17791
17792         * threads.c: Set the thread state to Stopped when a thread exits.
17793         Fixes bug 39377.
17794
17795 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17796
17797         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17798         New icall.
17799
17800         * object.c (mono_class_vtable): fix warning.
17801
17802 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17803
17804         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17805
17806         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17807         memory.
17808         (method_encode_clauses): Create exception info structures in the right
17809         order.
17810         (mono_reflection_setup_internal_class): Initialize supertypes field.
17811
17812         * class.c object.c: Handle interfaces which implement other interfaces 
17813         correctly.
17814
17815         * class.h class.c: Move the supertypes array initialization code into 
17816         a separate function so it can be used for dynamic types too. Also call
17817         it earlier, in mono_class_init(), since it can be used before the
17818         type is initialized.
17819
17820 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17821
17822         * Makefile.am:
17823         * assembly.c:
17824         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17825
17826         * appdomain.c:
17827         * appdomain.h:
17828         * marshal.c:
17829         * object.c: remove warnings.
17830
17831 2003-03-13  Martin Baulig  <martin@ximian.com>
17832
17833         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17834         (MonoDebugLexicalBlockEntry): New types.
17835
17836         * debug-mono-symfile.c
17837         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17838
17839 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17840
17841         * process.c: ret can be any non-zero value accroding to MS doc.
17842
17843 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17844
17845         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17846         fixing a warning for a miss-used prototype, would have cause
17847         random memory corruption.
17848
17849 2003-03-07  Martin Baulig  <martin@ximian.com>
17850
17851         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17852         getting really annoying ....
17853
17854 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17855
17856         * reflection.c (fixup_method): added support for array methods.
17857
17858 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17859
17860         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17861         (pointed out by Michael Adams).
17862
17863 2003-03-04  Dick Porter  <dick@ximian.com>
17864
17865         * icall.c: Temporarily reverted the Double and Single ToString()
17866         change, because it broke nunit.
17867
17868 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17869
17870         * object.h, threads.h: make include files compatible with C++
17871         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17872
17873 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17874
17875         * icall.c: Erased ToString helper functions for Double and Single.
17876         Now, that implementations ar all in managed code (Double and Single
17877         Formatters).
17878
17879 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17880
17881         * appdomain.c: Added method for initializing the default context of
17882         a domain. Added internal call for getting the default context.
17883         * appdomain.h: Added context variable in MonoDomain struct.
17884         * domain.c: mono_domain_set also sets the default context of the domain
17885         * icall.c: Mapped internal method InternalGetDefaultContext.
17886         * object.c: mono_object_get_virtual_method returns always a remoting
17887         wrapper if the object is a transparent proxy.
17888         mono_runtime_invoke_array: when creating an object by calling the
17889         constructor, if the created object is a proxy, then the constructor should
17890         be called using the a remoting wrapper.
17891
17892 2003-03-03  Dick Porter  <dick@ximian.com>
17893
17894         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17895         variable so it compiles on solaris.  Problem spotted by
17896         Christopher Taylor <ct@cs.clemson.edu>
17897
17898 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17899
17900         * appdomain.c:
17901         (get_info_from_assembly_name): don't leak value.
17902
17903         * icall.c:
17904         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17905         result.
17906
17907 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17908
17909         * assembly.c: export mono_image_load_references ().
17910         * class.c: handle function pointers. mono_class_from_name() now
17911         supports nested type names directly.
17912
17913 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17914
17915         * reflection.h reflection.c: Encode already created dynamic methods 
17916         and fields correctly as a DEF instead of a REF.
17917
17918         * reflection.c: Get rid of the force_ref argument to 
17919         mono_image_typedef_or_ref since it was wrong in the first place.
17920
17921         * string-icalls.c: add error checking to string constructors according
17922         to the MSDN docs.
17923
17924         * reflection.c: Emit types in the order their TypeBuilders were 
17925         created. Previously, a new table index was assigned to each type before
17926         the tables were emitted. This was wrong because the signature blob
17927         might already refer to a type by its original table index.
17928
17929 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17930
17931         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17932         change.
17933         
17934 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17935
17936         * Makefile.am: make assemblies dir have \ instead of / on windows.
17937
17938 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17939
17940         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17941         iterate over the NESTEDCLASS table using a linear search since the
17942         table is not guaranteed to be sorted by the secondary key.
17943
17944         * class.c (mono_class_create_from_typedef): fixed up call to
17945         mono_metadata_nesting_typedef.
17946         
17947 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17948
17949         * marshal.c (mono_string_to_byvalstr): clear the memory as
17950         suggested by Jerome Laban <jlaban@wanadoo.fr>
17951
17952 2003-02-26  Dick Porter  <dick@ximian.com>
17953
17954         * process.c: Cope with padding in .rsrc blocks
17955
17956 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17957
17958         * metadata.h: reverted the filter_len change, it breaks reflection
17959         
17960 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17961
17962         * metadata.h: added a new field to store the filter_len
17963         
17964
17965 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17966
17967         * reflection.c: handle custom attributes for types and members
17968         created with Reflection.Emit (bug#38422).
17969
17970 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17971
17972         * reflection.c: define RTSpecialName automatically for constructors for
17973         compatibility with MS.NET.
17974
17975         * reflection.c (mono_reflection_create_runtime_class): initialize
17976         nested_in field of dynamically created classes.
17977
17978 2003-02-22  Martin Baulig  <martin@ximian.com>
17979
17980         * debug-mono-symfile.h: Incremented version number.
17981
17982 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17983
17984         * object.h icall.c process.c: fix warnings.
17985
17986 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17987
17988         * appdomain.h appdomain.c:
17989         (mono_domain_try_type_resolve): split the 
17990         name_or_tb argument into a name and a tb argument.
17991         (mono_domain_has_type_resolve): new function to check whenever the
17992         application has registered a TypeResolve event handler.
17993         
17994         * icall.c reflection.h reflection.c: move the type resolve logic into
17995         mono_reflection_get_type () so it will be invoked when 
17996         Assembly::GetType () is called.
17997
17998         * reflection.c:
17999         (mono_reflection_get_type): renamed to get_type_internal.
18000         (mono_reflection_get_type): fixed type name generation so it works 
18001         for nested types too.
18002         (mono_reflection_get_type): call has_type_resolve () to avoid the 
18003         costly type name generation if there is no resolve event handler.
18004
18005 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18006
18007         * class.c, image.c: load exported types from file references.
18008
18009 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
18010
18011         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
18012           used to cache the managed methods used to create proxies and make 
18013           remote invocation of methods.
18014         * class.h: Added in MonoVTable a flag to indicate that a class needs 
18015           to be remotely created.
18016         * object.c: Modified the method mono_class_vtable(). It now initializes 
18017           the remote flag of the vtable. Modified mono_object_new_specific(), 
18018           so now it checks the remote flag.
18019         * icall.c: Added a couple of internal methods, one for enabling instance 
18020           creation interception for a type, and one for creating objects bypassing
18021           the remote check.
18022
18023 2003-02-18  Martin Baulig  <martin@ximian.com>
18024
18025         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
18026         New interncall to get a method's metadata token.
18027
18028         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
18029         New interncall for the debugger.
18030
18031 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
18032
18033         * class.c (mono_class_setup_vtable): allocate supertype array
18034
18035 2003-02-18  Martin Baulig  <martin@ximian.com>
18036
18037         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
18038
18039 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18040
18041         * reflection.c:
18042         (assembly_name_to_aname): jump over unknown properties (i've found
18043         something like: 'type, assembly, version=xxx, custom=null, public...',
18044         so now will ignore custom=null and still get the rest of the values).
18045
18046 2003-02-17  Dick Porter  <dick@ximian.com>
18047
18048         * threads.c: Have Thread.Start() wait for a semaphore to signal
18049         that the thread has set up all its local data.  This fixes bug
18050         34323, where Abort() raced the new thread's TLS data.
18051
18052         Also removes the handle_store() call from start_wrapper, because
18053         threads are now always created suspended and there is no longer a
18054         race between the parent and child threads to store the info.
18055
18056 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
18057
18058         * image.c: explain the #- heap issue in a message, hopefully
18059         avoiding FAQs on mono-list.
18060
18061 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18062
18063         * icall.c:
18064         (GetEntryAssembly): if the domain has not invoked
18065         AppDomain.ExecuteAssembly yet, return the assembly of the default
18066         AppDomain.
18067
18068 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
18069
18070         * class.c (mono_ldtoken): make it work in dynamic assemblies.
18071
18072 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18073
18074         * metadata.c, reflection.c: simple speedup to type hash
18075         and equals code.
18076
18077 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
18078
18079         * image.c, image.h, class.c, assembly.c: move module loading
18080         to MonoImage. When loading metadata, consider alignemnet from
18081         the start of metadata, not from the metadata address in memory.
18082
18083 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
18084
18085         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
18086         AssemblyBuilder objects. Factored out custom attribute creation into
18087         a separate function.
18088         (create_custom_attr): new function to create custom attributes.
18089
18090 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
18091
18092         * Makefile.am: Got tired of typing the full pathname to pedump.
18093         Until there is another option, am installing this.
18094
18095 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
18096
18097         * class.c (class_compute_field_layout): always set field->parent 
18098         (mono_ldtoken): use mono_defaults.fieldhandle_class;
18099
18100 2003-02-11  Dick Porter  <dick@ximian.com>
18101
18102         * threads-types.h:
18103         * monitor.c: Rewrote Monitor, making lock much faster and
18104         Pulse/Wait work as specified.  Also uses much fewer handles, and only
18105         creates them as needed.
18106
18107         * exception.c: Added SynchronizationLockException
18108
18109         * threads.c: Deleted old Monitor implementation.  The new one is
18110         in a new file.
18111
18112 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18113
18114         * class.c: handled TypedReference type code. Set the correct size for
18115         class data. Setup interface_offsets for interface classes, too.
18116
18117 2003-02-09  Martin Baulig  <martin@ximian.com>
18118
18119         * debug-mono-symfile.h: Reflect latest symbol writer changes.
18120
18121 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
18122
18123         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
18124         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
18125         * object.c: fixed mono_object_get_virtual_method () for interfaces.
18126         * verify.c: check for code that runs after the end of the method.
18127
18128 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18129
18130         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
18131         "System.Math::Round2".
18132         * sysmath.h: Added Floor, Round and Round2 definitions.
18133         * sysmath.c: Modified certain functions that were not 100% compliant
18134         with MS.NET (math precision) and added the implementation of Floor,
18135         Round and Round2.
18136
18137 2003-02-07  Martin Baulig  <martin@ximian.com>
18138
18139         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
18140
18141 2003-02-07  Martin Baulig  <martin@ximian.com>
18142
18143         * debug-mono-symfile.c: Reflected latest symwriter changes.
18144         (mono_debug_create_mono_symbol_file): Removed.
18145         (mono_debug_open_mono_symbol_file): Take an argument which
18146         specifies whether to create a dynamic symbol file.
18147
18148 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
18149
18150         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
18151
18152 2003-02-05  Martin Baulig  <martin@ximian.com>
18153
18154         * reflection.c (mono_image_build_metadata): Make this public,
18155         protect it against being called multiple times, don't create
18156         resources and don't build the compressed metadata here.
18157         (mono_image_create_pefile): Do this here.
18158
18159         * icall.c
18160         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
18161
18162 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18163
18164         * socket-io.c: fixed bug #36322.
18165
18166 2003-02-06  Piers Haken <piersh@friskit.com>
18167
18168         * appdomain.[ch]:
18169         * class.h:
18170         * debug-mono-symfile.c:
18171         * icall.c:
18172         * loader.c:
18173         * mono-config.c:
18174         * monosn.c:
18175         * reflection.c:
18176         * socket-io.c: warning cleanups
18177
18178 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
18179
18180         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
18181         function. works like remoting invoke, but does a check for the Proxy first.
18182
18183 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
18184
18185         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
18186
18187 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
18188
18189         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
18190         array of pointers.
18191         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
18192         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
18193
18194         * object.c (mono_store_remote_field_new): used by the new jit
18195         instead of mono_store_remote_field
18196         (mono_load_remote_field_new): used by the new jit
18197         instead of mono_load_remote_field
18198
18199 2003-02-05  Patrik Torstensson
18200
18201         * appdomain.c: changed unload to take the domain id instead
18202         of domain
18203         
18204         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
18205
18206
18207 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18208
18209         * appdomain.c: don't look for assemblies in ApplicationBase if
18210         PrivateBinPathProbe is set.
18211
18212 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18213
18214         * object.c: make the first argument in main_args contain the absolute
18215         path to the assembly. Fixes bug #37511.
18216
18217 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18218
18219         * icall.c: get correct UTC offset for countries not using daylight
18220         time saving. Fixes bug #30030.
18221
18222 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18223
18224         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
18225         and 1 are the family).
18226
18227 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
18228
18229         * icall.c (ves_icall_InternalExecute): removed wrong assertion
18230
18231         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
18232
18233 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
18234
18235         * reflection.c: added support for SignatureHelper tokens, which is
18236         needed by the Calli opcode.
18237
18238         * reflection.h: track changes to SignatureHelper class.
18239
18240         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
18241
18242 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18243
18244         * appdomain.c: fixed loading assemblies from PrivateBinPath.
18245
18246 2003-02-03  Patrik Torstensson
18247         * appdomain.[c|h], domain.c : 
18248          - Added support for getting a domain via domain id
18249          - Support for setting and getting domain from System.AppDomain 
18250            (used in cross appdomain channel)
18251          - Added support for get/set for a MonoAppContext on a thread 
18252            (Context class in System.Runtime.Remoting.Contexts),
18253          - Removed hack in Get/SetData and ExecuteAssembly.
18254         
18255         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
18256         the managed world to get control when a proxy is created.
18257
18258         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
18259         
18260 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
18261
18262         * icall.c
18263         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18264         Populate the codebase field as well.
18265
18266 2003-02-02  Martin Baulig  <martin@ximian.com>
18267
18268         * debug-mono-symfile.c
18269         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
18270         (mono_debug_symfile_add_method): Allow interncalls.
18271
18272 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18273
18274         * icall.c: throw parse exception if strtod fails or the string is empty.
18275
18276 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
18277
18278         * marshal.c: handle object type separately from defined
18279         class types.
18280
18281 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
18282
18283         * marshal.c: handle NATIVE_LPSTR for strings when it's
18284         explicitly specified.
18285
18286 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
18287
18288         * reflection.c, reflection.h, icall.c: setup the reflection
18289         handle cache for ModuleBuilders and AssemblyBuilders.
18290
18291 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
18292
18293         * reflection.c (reflection_methodbuilder_to_mono_method): set
18294         pinvoke flag
18295
18296 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18297
18298         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
18299
18300 2003-01-29  Dick Porter  <dick@ximian.com>
18301
18302         * threads.c: No need for the fake_thread kludge now that Thread
18303         doesn't run a class constructor
18304         
18305 2003-01-29  Dick Porter  <dick@ximian.com>
18306
18307         * threads.c: Use g_direct_hash instead of the rather bogus
18308         g_int_hash
18309
18310 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
18311
18312         * marshal.c (mono_marshal_get_native_wrapper): add check for null
18313         (fix pinvoke12.exe)
18314         (mono_marshal_get_struct_to_ptr): generate valid IL code
18315         (mono_marshal_get_ptr_to_struct): generate valid IL code
18316         (*): correctly set sig->pinvoke, we need to memdup the signature
18317         to do that
18318
18319 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18320
18321         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18322         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18323
18324 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18325
18326         * profiler.c: provide more callers information.
18327
18328 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18329
18330         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18331
18332         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18333
18334         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18335
18336 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18337
18338         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18339         exception instead of going into an infinite loop on dates which it 
18340         can't yet handle.
18341
18342         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18343         out-of-range exception if needed.
18344
18345         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18346         an implementation for an interface method and to override an inherited
18347         method at the same time. 
18348         Imagine a scenario when a virtual method is used to override a
18349         virtual abstract method in a parent class, and this same method 
18350         provides an implementation for an method inherited from an interface. 
18351         In this case, the interface resolution code will set im->slot, which 
18352         means that the virtual method override pass will skip this method 
18353         which means a pointer to the abstract method inherited from the parent
18354         will remain in the vtable of this non-abstract class.
18355
18356         * class.c: (mono_class_setup_vtable): continue search for a real 
18357         method if only an abstract method is found.     
18358
18359 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18360
18361         * reflection.c: add size to encoding for ByValStr and ByValArray
18362         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18363
18364 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18365
18366         * class.c (mono_class_setup_vtable): pass the override info as an
18367         argument.
18368
18369         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18370         correctly.
18371         
18372         * reflection.c (ensure_runtime_vtable); add support for method 
18373         overrides.
18374         
18375 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18376
18377         * reflection.c (resolution_scope_from_image): Hack to work to work with
18378         dynamic assemblies.
18379
18380         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18381         added a 'force_ref' argument to force this function to allways return 
18382         a TypeRef. This is needed by mono_image_get_memberref_token ().
18383         
18384 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18385
18386         * reflection.c (mono_image_get_type_info): interfaces really don't have
18387         a parent.
18388
18389         * reflection.c (mono_image_basic_init): fill out missing fields of
18390         image structure.
18391
18392         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18393         dynamic assemblies. This is required so dynamic assemblies show up in
18394         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18395         Type::GetType() etc. This is consistent with MS behaviour.
18396
18397         * image.c image.h reflection.c: add newly created classes to the name 
18398         cache so mono_class_get () will find them.      
18399
18400 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18401
18402         First part of changes to get IKVM.NET running under mono.
18403         
18404         * appdomain.h, appdomain.c: added new function 
18405         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18406         This function will call AppDomain::DoTypeResolve to do the actual work.
18407
18408         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18409         moved existing code dealing with dynamic tokens to a new function 
18410         called mono_reflection_lookup_dynamic_token (). This function will 
18411         raise TypeResolve events when appropriate. Since reflection.c is not 
18412         part of libmetadata, a new hook function called 
18413         mono_lookup_dynamic_token() is added to class.c which will call this.
18414
18415         * assembly.h assembly.c: make the invoke_load_hook function public,
18416         so it can be called for dynamic assemblies.
18417
18418         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18419
18420         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18421         type isn't found.
18422
18423         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18424         MonoGHashTable, since it contains pointers to objects which the GC 
18425         needs to track.
18426
18427         * assembly.c (search_loaded): remove unused variable.
18428         
18429 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18430
18431         * object.c: fixed issue exposed by gcc-generated IL programs
18432         that use RVA data for pointers.
18433
18434 2003-01-25  Martin Baulig  <martin@ximian.com>
18435
18436         * threads.c (start_wrapper): Moved the initialization of
18437         `start_func' above the mono_new_thread_init() call to which we
18438         pass it as argument.
18439
18440 2003-01-24  Martin Baulig  <martin@ximian.com>
18441
18442         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18443         the MonoThread pointer.
18444
18445 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18446
18447         * icall.c: Rename `PowImpl' to Pow.
18448
18449 2003-01-23  Dick Porter  <dick@ximian.com>
18450
18451         * threads.c (start_wrapper): Create a Thread object if needed, so
18452         the Main() thread can do the class initialisation in a subthread
18453         that has been set up to allow managed code execution.
18454
18455         Pass the thread ID instead of the MonoThread pointer to the thread
18456         start and attach callbacks.  This change is required, because the
18457         jit thread start callback must be called _before_ the Thread
18458         object can be created.
18459         
18460         (mono_thread_init): Removed much object creation code that is no
18461         longer needed.  No managed code is called from here now.
18462
18463         * object.c (mono_runtime_exec_managed_code): Create a subthread
18464         for Main, and call back to the runtime to use it.
18465         Set the exit code when Main exits.
18466
18467         * gc.c: Make sure domain finalisation happens in a subthread.
18468         Re-enable threaded GC, fixing bug 31333 (again).
18469
18470         * environment.c: System.Environment internall calls (so far just
18471         ExitCode is here, the others are still in icall.c)
18472
18473         * appdomain.c (mono_runtime_cleanup): All threads running managed
18474         code should have finished before mono_runtime_cleanup() is
18475         reached, so no need to clean up threads.
18476
18477 2003-01-22  Martin Baulig  <martin@ximian.com>
18478
18479         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18480         `gpointer func' arguments.      
18481         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18482         but added `MonoThread *thread' argument.
18483         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18484
18485         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18486         and pass it to the mono_thread_start_cb callback.
18487         (mono_install_thread_callbacks): New public function to install a
18488         set of callbacks which are set by the debugger.
18489         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18490
18491 2003-01-22  Martin Baulig  <martin@ximian.com>
18492
18493         * Makefile.am: Install debug-mono-symfile.h.
18494
18495 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18496
18497         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18498
18499 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18500
18501         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18502         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18503         (mono_array_class_get): correctly set access levels of arrays
18504
18505 2003-01-20      Patrik Torstensson
18506         * image.h (MonoAssemblyName): changed major, minor, build, revision
18507         from signed to unsigned.
18508
18509 2003-01-20  sean kasun <skasun@azstarnet.com>
18510
18511         * reflection.c (load_cattr_value): Now this handles
18512         MONO_TYPE_SZARRAY.  Fixes bug #35629
18513
18514 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18515
18516         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18517         integer value
18518
18519 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18520
18521         * decimal.c: fixed bug #26056.
18522
18523 2003-01-17  Martin Baulig  <martin@ximian.com>
18524
18525         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18526
18527 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18528
18529         * exception.[ch]:
18530         (mono_get_exception_type_initialization): new function.
18531
18532         * object.c: throw a TypeInitializationException when an exception is
18533         thrown invoking the class constructor.
18534
18535 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18536
18537         * reflection.c: fixed attribute reading.
18538
18539 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18540
18541         * icall.c:
18542         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18543         provided, look for the type in the calling assembly and then in
18544         mscorlib; if the assembly name is provided, only try that one.
18545
18546 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18547
18548         * object.c: register the vtable before there is a chance it's
18549         queried again recursively.
18550
18551 2003-01-13  Duncan Mak  <duncan@ximian.com>
18552
18553         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18554         gc-internal.h. 
18555         
18556 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18557
18558         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18559
18560 2003-01-11  Martin Baulig  <martin@ximian.com>
18561
18562         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18563         this to 20 for the release.
18564
18565 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18566
18567         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18568
18569         * loader.c (mono_method_get_marshal_info): bug fix
18570
18571         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18572         structures with explicit layout
18573
18574 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18575
18576         * profiler.c: made the output more readable (and sorted). 
18577         Added caller information for the allocation profiler.
18578
18579 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18580
18581         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18582
18583 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18584
18585         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18586         to get value types.
18587         
18588 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18589
18590         * object.c, profiler.h, profiler.c, profiler-private.h:
18591         Added object allocation profiler.
18592
18593 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18594
18595         * reflection.h, reflection.c: handle global methods.
18596         Compress blob entries.
18597
18598 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18599
18600         * marshal.c: fix compilation.
18601
18602 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18603
18604         * loader.c (mono_method_get_marshal_info): impl.
18605
18606         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18607
18608 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18609
18610         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18611         for reference types.
18612
18613 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18614
18615         * loader.c: fixed off by one error in loaded parameter names.
18616
18617 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18618
18619         * marshal.c (mono_marshal_get_icall_wrapper): like
18620         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18621         instead of a MonoMethod.
18622
18623 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18624
18625         * decimal.c: fixed bug #36537.
18626
18627 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18628
18629         * marshal.c: throw a missing method exception if a
18630         P/Invoke method is not found.
18631
18632 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18633
18634         * icall.c: allow a null this for constructors.
18635
18636 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18637
18638         * icall.c: raise the proper exceptions if the arguments to the
18639         internal Invoke are incorrect.
18640
18641 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18642
18643         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18644
18645 2003-01-03  Martin Baulig  <martin@ximian.com>
18646
18647         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18648
18649 2002-12-31  Martin Baulig  <martin@ximian.com>
18650
18651         * debug-mono-symfile.c: Completely rewrote the type section.
18652         Instead of using individual malloc()ed fields, we use one big
18653         continuous memory area and offsets into this area.
18654         See the comments in the source code for details.
18655
18656 2002-12-30  Martin Baulig  <martin@ximian.com>
18657
18658         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18659
18660 2002-12-30  Martin Baulig  <martin@ximian.com>
18661
18662         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18663         line number table in this data blob instead of using an external
18664         pointer.
18665
18666 2002-12-28  Martin Baulig  <martin@ximian.com>
18667
18668         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18669
18670 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18671
18672         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18673         as a boxed return type.
18674
18675 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18676
18677         * appdomain.c
18678         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18679         g_build_filename to properly get separators on the filename created.
18680
18681         * object.h: Small change, introduce MonoMarshalByRefObject to
18682         track the layout of that structure in the C# universe as we make
18683         changes there.
18684
18685 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18686
18687         * object.c: removed assert to allow static fields on interfaces.
18688         * loader.c: a TypeSpec may be used for any type, not just arrays.
18689
18690 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18691
18692         * class.c, class.h: added mono_class_array_element_size ().
18693         Ignore static methods in interfaces.
18694
18695 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18696
18697         * threads.c: fixed the build under cygwin.
18698
18699 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18700
18701         * reflection.c: handle nullref constants. Allocate keys for
18702         reflection handles with the GC.
18703
18704 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18705
18706         * threads.c, threads.h: added mono_thread_get_abort_signal()
18707         to get a suitable signal for thread abort.
18708
18709 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18710
18711         * metadata.c: fix handling of ExportedType table.
18712
18713 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18714
18715         * icall.c: added WriteWindowsDebugString internal call.
18716
18717 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18718
18719         * reflection.h: added fields to match C# implementation.
18720
18721 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18722
18723         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18724
18725 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18726
18727         * gc.h, gc-internal.h: Rename header for GC internal calls to
18728         gc-internal.h from gc.h as to not clash with Boehm GC having its
18729         header installed as <gc.h> in outside include paths.
18730         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18731         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18732
18733 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18734
18735         * icall.c: assign minor, build and revision in FillName.
18736
18737 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18738
18739         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18740         Added support for running code generated by Reflection.Emit.
18741
18742 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18743
18744         * appdomain.c: check for NULL argument in LoadFrom.
18745
18746 2002-12-10  Dick Porter  <dick@ximian.com>
18747
18748         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18749
18750 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18751
18752         * appdomain.c: fix buglet when building exe file name.  Handle full
18753         assembly name (needed after latest changes to AssemblyName).
18754         * image.c:
18755         (mono_image_close): free some hashtables.
18756
18757 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18758
18759         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18760         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18761         on some systems (redhat 7.3) 
18762
18763 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18764
18765         * threads.c: delete the critical section of a sync block,
18766         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18767
18768 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18769
18770         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18771
18772 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18773
18774         * appdomain.[ch]: handle the assembly preload event to try loading the
18775         assemblies using the paths we have in the current domain.
18776
18777         * assembly.[ch]: created an assembly preload hook that is called to try
18778         loading the assembly by other means that the ones provided here.
18779
18780         * domain.c: initialize the domain search path.
18781
18782         From now on, assemblies (TODO: except corlib and System) are loaded
18783         according to these rules when using mono_assembly_load ():
18784
18785                 1. It tries to load the assembly from the ApplicationBase
18786                 of the current domain appending .dll and .exe (TODO: have to
18787                 try loading from name/name.dll and name/name.exe).
18788
18789                 2. It tries the search path specified in PrivateBinPath for the
18790                 current domain (if any).
18791
18792                 3. Previous behavior.
18793
18794 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18795
18796         * icall.c: implemented GetInterfaceMap() related icall.
18797         * domain.c, loader.h: load MethodInfo in mono_defaults.
18798
18799 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18800
18801         * gc.c: disable the finalizer thread for now, untill all the issues
18802         with it are resolved.
18803
18804 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18805
18806         * string-icalls.c: handle embedded nulls in string ctor when the
18807         length is specified.
18808
18809 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18810
18811         * class.c: look for explicit interface implementation in parent
18812         classes, too.
18813
18814 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18815
18816         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18817
18818 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18819
18820         * gc.c: protect handles with a critical section.
18821
18822 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18823
18824         * icall.c:
18825         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18826         parameters. If no assembly specified, try getting the type from all
18827         the assemblies in the current domain, else, load the assembly and get
18828         the type from it.
18829
18830 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18831
18832         * marshal.c: applied patch from Aleksey Demakov that fixes
18833         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18834
18835 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18836
18837         * icall.c: fixed get_location.
18838
18839 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18840
18841         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18842         declarations to make it work with older gcc. 
18843
18844         * loader.c (mono_get_method): set signature->pinvoke for native calls
18845
18846 2002-11-20  Dick Porter  <dick@ximian.com>
18847
18848         * threads.c (mono_thread_init): Set the main thread's handle
18849
18850 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18851
18852         * gc.c: allow compilation without GC support. Changed to match the
18853         mono coding style.
18854
18855 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18856
18857         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18858
18859 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18860
18861         * reflection.c: set a public key token on the core assemblies.
18862
18863 2002-11-18  Dick Porter  <dick@ximian.com>
18864
18865         * threads.c: Split out some thread initialisation so that other
18866         files can set the start callback function.
18867
18868         * gc.c: Run finalisers in a separate thread, to avoid stack
18869         overflow.  Fixes bug 31333.
18870
18871         * appdomain.c: Set up GC finalisation thread.
18872
18873         * reflection.c: 
18874         * object.c: 
18875         * domain.c: Use gc.h macros for GC_malloc
18876         
18877 2002-11-15  Dick Porter  <dick@ximian.com>
18878
18879         * threadpool.c: 
18880         * threads.c:
18881         * appdomain.c: Removed mono_runtime_init_with_attach(),
18882         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18883         merging the extra parameter with the existing function.  Removed
18884         unneeded code in mono_thread_attach().
18885
18886 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18887
18888         * image.c (mono_image_loaded_by_guid): a method to get loaded
18889         images by guid. 
18890         (load_metadata_ptrs): we store the guid as string.
18891
18892 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18893
18894         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18895
18896         * metadata.c (mono_guid_to_string): imported method form Zoltan
18897         Varga (slightly modified)
18898
18899         * assembly.c (mono_assembly_open): load precompiled code
18900
18901         * loader.h (MonoMethod): we store the method token for use in the
18902         aot compiler. 
18903
18904 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18905
18906         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18907         the hook function called when an assembly is loaded.
18908         
18909         * domain.c: Modified file.
18910         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18911
18912         Fixes bug #33196.
18913
18914 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18915
18916         * reflection.c: Map PEFileKind to the value expected by the WinNT
18917         image loader. 
18918
18919 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18920
18921         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18922         Read until the buffer is filled completely.
18923
18924 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18925
18926         * icall.c: implemented MonoType.InternalGetEvent ().
18927
18928 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18929
18930         * appdomain.c: implemented InitAppDomainSetup. Delayed
18931         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18932         the entry_assembly.
18933
18934         * assembly.c: base_dir is now an absolute path ending with
18935         G_DIR_SEPARATOR.
18936
18937         * icall.c: modified get_location according to the above changes.
18938
18939         * object.c: init AppDomain.SetupInformation for the default domain after
18940         we have the entry assembly.
18941
18942         * domain.c: when unloading a domain, setup = NULL.
18943
18944 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18945
18946         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18947
18948 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18949
18950         * object.h, object.c: introduced mono_object_get_virtual_method ()
18951         to lookup the method invoked on an object when a callvirt is done on
18952         a method.
18953         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18954
18955 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18956
18957         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18958         current domain when loaded an assembly and failed to load it.
18959
18960         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18961
18962 2002-10-31  Dick Porter  <dick@ximian.com>
18963
18964         * icall.c: 
18965         * file-io.h: 
18966         * file-io.c: Return the error status in a parameter, as the
18967         GetLastError() value has long since been blown away if we try and
18968         look it up in a subsequent internal call invocation.  Delete the
18969         GetLastError() internal call, because it's useless.
18970
18971 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18972
18973         * class.[ch]: added cast_class to fix bug 29517
18974
18975 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18976
18977         * marshal.c: create valid IL code in the filter clause:
18978         the new JIT is less forgiving:-)
18979
18980 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18981
18982         * icall.c: removed get_property internal call.
18983
18984 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18985
18986         * appdomain.h domain.c: Added an ID to appdomains.
18987         
18988         * threads.c threads.h icall.c: Implement icall
18989         Thread:GetDomainID(), and remove unused icall 
18990         CurrentThreadDomain_internal.
18991
18992 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18993
18994         * icall.c: Don't recurse through the base types in GetConstructor.
18995         Fixes bug #32063. 
18996
18997 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18998
18999         * mempool.h, mempool.c: added mono_mempool_empty() and
19000         mono_mempool_stats().
19001
19002 2002-10-23  Dick Porter  <dick@ximian.com>
19003
19004         * file-io.c: 
19005         * file-io.h: 
19006         * icall.c: Added MonoIO.GetFileType internal call
19007
19008 2002-10-17  Dick Porter  <dick@ximian.com>
19009
19010         * appdomain.c (mono_runtime_cleanup): Don't signal the async
19011         delegate semaphore before waiting for all threads to finish,
19012         because new threads can also call async delegates.  Fixes bug
19013         32004.
19014
19015         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
19016         of 3 seconds, in case another async job is queued.  (This part is
19017         needed because the bug fix reintroduced the 3s exit lag.)  This
19018         makes the mono_runtime_shutdown flag superfluous.
19019
19020 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19021
19022         * reflection.c: include ehader size in method section headers.
19023         Really check for suplicated modules entries.
19024
19025 2002-10-17  Martin Baulig  <martin@gnome.org>
19026
19027         * debug-mono-symfile.c: Added back support for locals.
19028
19029 2002-10-14  Martin Baulig  <martin@gnome.org>
19030
19031         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
19032         MONO_TYPE_VOID.
19033
19034 2002-10-14  Martin Baulig  <martin@gnome.org>
19035
19036         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
19037         mono_class_get() instead of looking in the class cache. 
19038
19039 2002-10-13  Martin Baulig  <martin@gnome.org>
19040
19041         * debug-mono-symfile.c: Set version number to 28, include the
19042         signature in method names.
19043
19044 2002-10-13  Martin Baulig  <martin@gnome.org>
19045
19046         * debug-mono-symfile.h: Set version number to 27.
19047
19048 2002-10-11  Martin Baulig  <martin@gnome.org>
19049
19050         * gc.c: Don't register/unregister NULL pointers as disappearing links.
19051
19052 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19053
19054         * metadata.c, metadata.h: added helper function to allocate signatures.
19055
19056 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19057
19058         * icall.c: added internal call to get the location of machine.config.
19059
19060 2002-10-08  Martin Baulig  <martin@gnome.org>
19061
19062         * debug-mono-symfile.c: Ignore classes with a pending init for the
19063         moment.
19064
19065 2002-10-03  Dick Porter  <dick@ximian.com>
19066
19067         * threads.c: Freebsd pthread_t is a pointer
19068
19069 2002-10-03  Dick Porter  <dick@ximian.com>
19070
19071         * socket-io.c: Implemented GetHostName_internal
19072
19073 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19074
19075         * mono-config.c:
19076         (mono_config_parse_file): don't leak the text.
19077
19078 2002-10-02  Martin Baulig  <martin@gnome.org>
19079
19080         * debug-mono-symfile.c: Added support for methods.
19081
19082 2002-10-01  Martin Baulig  <martin@gnome.org>
19083
19084         * debug-mono-symfile.c: Don't emit methods and line numbers for
19085         the dynamic symbol file, just write the type table.  We can easily
19086         have an external helper program which creates a symbol file for an
19087         IL file.        
19088
19089 2002-10-01  Dick Porter  <dick@ximian.com>
19090
19091         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
19092         Only add the handle to the cleanup array when we're about to
19093         launch the thread.  Bug 31425 deadlocked when the test was run on
19094         mono under w32.
19095
19096 2002-10-01  Martin Baulig  <martin@gnome.org>
19097
19098         * debug-mono-symfile.c: Added support for properties.
19099
19100 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19101
19102         * reflection.c: unaligned store fix from Mark Crichton
19103         <crichton@gimp.org>.
19104
19105 2002-09-27  Martin Baulig  <martin@gnome.org>
19106
19107         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
19108         New interncall.
19109
19110 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * assembly.h, assembly.c: use a sane API to hook into the assembly
19113         loading process instead of a useless special-purpouse hack
19114         (ngen needs a hook, too, for example).
19115
19116 2002-09-27  Dick Porter  <dick@ximian.com>
19117
19118         * threads.c (mono_thread_init): Call GetCurrentProcess() so
19119         io-layer can set up some process handle info.  Not needed on w32,
19120         but doesn't hurt either.
19121
19122         * process.c: Pass the program name in the second parameter to
19123         CreateProcess, so the path is searched.  Include the working
19124         directory. Implemented process name, process enumeration, and some
19125         process detail internal calls.
19126         
19127         * icall.c: Added internal calls for process lookup, and some
19128         process details
19129
19130 2002-09-26  Martin Baulig  <martin@gnome.org>
19131
19132         * assembly.c (mono_install_open_assembly_hook): New global
19133         function to install a function to be invoked each time a new
19134         assembly is loaded.
19135         (mono_assembly_open): Run this callback function if set.
19136
19137         * debug-mono-symfile.c: Put back line numbers for the dynamic
19138         symbol file and also record the .il file as source file.  This
19139         allows us to install the temporary symbol file as `file.dbg' just
19140         like a compiler-generated one.
19141
19142 2002-09-26  Nick Zigarovich <nick@chemlab.org>
19143
19144         * Corrected typo in gc.c (BOHEM vs BOEHM).
19145
19146 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19147
19148         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
19149         GetProperties. Also avoid calling g_slist_length in GetProperties and
19150         GetMethods.
19151
19152 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19153
19154         * reflection.c: avoid unaligned stores (bug spotted by
19155         Mark Crichton  <crichton@gimp.org>).
19156
19157 2002-09-25  Martin Baulig  <martin@gnome.org>
19158
19159         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
19160         instead of guint64 for addresses and added prologue/epilogue info.
19161
19162 2002-09-25  Martin Baulig  <martin@gnome.org>
19163
19164         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
19165         store line number info.  For the dynamic symbol file, we only need
19166         to provide the JIT generated dynamic line number info for the dynamic
19167         symbol file.
19168
19169 2002-09-25  Martin Baulig  <martin@gnome.org>
19170
19171         * debug-mono-symfile.h: Incremented version number.
19172
19173 2002-09-24  Martin Baulig  <martin@gnome.org>
19174
19175         * class.c (mono_debugger_class_init_func): New global function
19176         pointer variable.
19177         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
19178         call it.
19179
19180         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
19181         function.  This is called via the mono_debugger_class_init_func
19182         hook to add all types to the dynamic type table.
19183         (ves_icall_MonoDebugger_GetType): New interncall to get a class
19184         from its metadata token.
19185
19186         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
19187         New interncall for the debugger.
19188
19189 2002-09-24  Nick Drochak <ndrochak@gol.com>
19190
19191         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
19192         before using it in case it is null.
19193         
19194 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19195
19196         * metadata.c: allow custom modifiers in local var signatures
19197         (bug spotted by Zoltan Varga).
19198
19199 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19200
19201         * class.c: deal with the <Module> class that may have a NULL vtable.
19202         Eliminate warnings.
19203
19204 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19205
19206         * image.c, image.h: more strong name helpers.
19207         * monosn.c: more work: convert pem keys to cryptoapi format.
19208
19209 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19210
19211         * string-icalls.c: speedup IndexOf.
19212
19213 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19214
19215         * icall.c: updates from Zoltan.2.Varga@nokia.com.
19216
19217 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19218
19219         * icall.c: cleanup: use mono_object_domain ().
19220
19221 2002-09-23  Martin Baulig  <martin@gnome.org>
19222
19223         * debug-mono-symfile.c: Improved type support.
19224
19225 2002-09-22  Martin Baulig  <martin@gnome.org>
19226
19227         * debug-mono-symfile.c: Added support for reference types and strings.
19228
19229 2002-09-22  Martin Baulig  <martin@gnome.org>
19230
19231         * debug-mono-symfile.c: Started to work on the type table.
19232
19233 2002-09-21  Martin Baulig  <martin@gnome.org>
19234
19235         * debug-mono-symfile.c: Largely reworked the symbol table format.
19236         The symbol table is now incrementally updated each time a new
19237         method is added.  We're now also using our own magic and version
19238         so that you don't need to recompile all your classes if the
19239         dynamic table changes.
19240         (mono_debug_update_mono_symbol_file): Removed.
19241         (mono_debug_symfile_add_method): New function to add a method.
19242
19243 2002-09-21  Martin Baulig  <martin@gnome.org>
19244
19245         * icall.c
19246         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
19247         New interncall.
19248
19249         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
19250         New interncall to get a method from its metadata token.
19251
19252 2002-09-21  Martin Baulig  <martin@gnome.org>
19253
19254         * debug-mono-symfile.c: Create type table.
19255
19256 2002-09-20  Martin Baulig  <martin@gnome.org>
19257
19258         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
19259
19260 2002-09-20  Martin Baulig  <martin@gnome.org>
19261
19262         * debug-mono-symfile.c: Provide information about params and locals.
19263
19264 2002-09-20  Martin Baulig  <martin@gnome.org>
19265
19266         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
19267         New interncall.
19268
19269         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
19270         interncall to get a method from its metadata token.
19271
19272 2002-09-20  Martin Baulig  <martin@gnome.org>
19273
19274         * debug-mono-symfile.c: Added a few checks for method->header
19275         being non-NULL.  This should never happen, but for the moment
19276         let's use a g_warning() rather than a g_assert().
19277
19278 2002-09-19  Mark Crichton  <crichton@gimp.org>
19279
19280         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
19281         even if support for it isn't present.  Added an #ifdef to fix this.
19282
19283         * socket-io.c: Added checks back for Solaris support.
19284
19285 2002-09-19  Martin Baulig  <martin@gnome.org>
19286
19287         * debug-mono-symfile.c (read_string, write_string): Reflect latest
19288         changes in the symbol file format.
19289
19290 2002-09-18  Martin Baulig  <martin@gnome.org>
19291
19292         * debug-mono-symfile.c: Set version number to 21.
19293
19294 2002-09-18  Dick Porter  <dick@ximian.com>
19295
19296         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
19297         on netbsd.  Fixes bug 30051.
19298
19299 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19300
19301         * reflection.c:
19302         (set_version_from_string): little fix.
19303
19304 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19305
19306         * monosn.c, Makefile.am: added strong name utility.
19307         * reflection.h, reflection.c: implemented delayed signing,
19308         locale, version and hash id assembly attributes.
19309
19310 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19311
19312         * loader.c, metadata.c: load param attributes in signatures.
19313
19314 2002-09-16  Martin Baulig  <martin@gnome.org>
19315
19316         * debug-mono-symfile.c: Added string table with all method names.
19317
19318 2002-09-14  Martin Baulig  <martin@gnome.org>
19319
19320         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19321         fast method lookup.
19322
19323 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19324
19325         * reflection.c: record the public key token of referenced assemblies.
19326
19327 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19328
19329         * image.c, image.h: added functions to get the strong name and the
19330         public key of an assembly.
19331         * pedump.c: use them.
19332
19333 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19334
19335         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19336
19337 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19338
19339         * marshal.c (mono_marshal_get_managed_wrapper): Added
19340         MONO_TYPE_BOOLEAN 
19341
19342 2002-09-11  Martin Baulig  <martin@gnome.org>
19343
19344         * gc.c: Call GC_unregister_disappearing_link() on all links when
19345         finalizing them, this is necessary to aviod a crash in boehm's
19346         finalize handler.
19347
19348 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19349
19350         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19351         nick@chemlab.org.
19352
19353 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19354
19355         * icall.c: implemented MonoType::Module.
19356         * reflection.c, reflection.h: mono_module_get_object () from
19357         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19358
19359 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * icall.c: ignore overridden methods in GetMethods ().
19362         Fix for FieldInfo::SetValue().
19363         * object.c: handle float/double in runtime invoke.
19364
19365 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19366
19367         * object.c: allow a constructor to be called again on an object.
19368
19369 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19370
19371         * class.h, class.c: move field layout code to it's own function and
19372         export it. Get an interface id earlier. Move fields in MonoClass
19373         so they are more cache friendly and align the bitfields.
19374         * loader.c: temporary handle get_param_names() for a runtime method.
19375         * reflection.c, reflection.h: more code to handle runtime creation of
19376         types.
19377
19378 2002-09-09  Martin Baulig  <martin@gnome.org>
19379
19380         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19381         signature with the pinvoke field being set for the actual call.
19382
19383 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19384
19385         * icall.c: removed some unused icalls. Start of map of glib charsets
19386         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19387
19388 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19389
19390         * debug-helpers.c: break infinite loop (found and fixed by
19391         Holger Arnold <harnold@gmx.de>).
19392
19393 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19394
19395         * icall.c: target may be null in create_delegate.
19396
19397 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19398
19399         * marshal.c: handle a boolean return type.
19400
19401 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19402
19403         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19404
19405 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19406
19407         * gc.c: fix weakreferences.
19408
19409 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19410
19411         * icall.c: added icall to get default codepage.
19412
19413 2002-09-03  Dick Porter  <dick@ximian.com>
19414
19415         * threads.h: 
19416         * threads.c: Use MonoThread instead of MonoObject where
19417         apropriate.
19418
19419         Store running thread objects in a hash table, so that we have all
19420         the info to hand when waiting for them to finish
19421         (means we don't need OpenThread() any more, so mingw builds should
19422         be fully functional again.)
19423
19424         * verify.c:
19425         * object.h: Added thread ID to MonoThread
19426
19427 2002-09-03  Martin Baulig  <martin@gnome.org>
19428
19429         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19430
19431 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19432
19433         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19434
19435 2002-09-03  Martin Baulig  <martin@gnome.org>
19436
19437         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19438         argument to store the end address of the disassembled instruction.
19439
19440         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19441         here from debug-symfile.h.
19442         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19443         JIT into this struct.
19444         (MonoSymbolFile): Added `char *image_file' field.
19445         (MonoDebugGetMethodFunc): Removed.
19446         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19447         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19448         (mono_debug_find_method): New method.
19449
19450         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19451         create a full symbol file.
19452         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19453         and static symbol files.
19454         (mono_debug_find_method): The symbol file keeps an internal method hash,
19455         call this to get a MonoDebugMethodInfo from a MonoMethod.
19456
19457         * debug-symfile.[ch]: Removed.
19458
19459 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19460
19461         * image.c (do_mono_image_open): Remove linker version check.
19462
19463 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19464
19465         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19466         wrappers for instance methods.
19467         
19468 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19469
19470         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19471
19472 2002-08-28  Dick Porter  <dick@ximian.com>
19473
19474         * Makefile.am: Export HOST_CC for w32 builds
19475
19476 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19477
19478         * file-io.c process.c: MonoString are null terminated, no
19479         need for mono_string_to_utf16() anymore.
19480
19481 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19482
19483         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19484
19485 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * icall.c, reflection.h: speedup System.MonoType.
19488
19489 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19490
19491         * reflection.c: allow null as the value of a string argument in
19492         custom attributes constructors.
19493
19494 2002-08-27  Martin Baulig  <martin@gnome.org>
19495
19496         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19497         `trampoline_address' field.
19498
19499 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19500
19501         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19502         check (fixes bug #29486) 
19503
19504 2002-08-27  Martin Baulig  <martin@gnome.org>
19505
19506         * debug-mono-symfile.c: Changed the file format in a way that allows us
19507         open it read-only and to use a specially malloced area for all the
19508         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19509         debugging IL code and there is no MCS generated symbol file for it.
19510
19511 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19512
19513         * object.c: added a define for a good string and array
19514         creation speedup (not enabled by default because we need to deal with
19515         the synch stuff).
19516
19517 2002-08-26  Martin Baulig  <martin@gnome.org>
19518
19519         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19520         function to create a dynamic symbol file.  This is used by the
19521         debugger to create a symbol file for IL code on-the-fly.
19522
19523 2002-08-26  Martin Baulig  <martin@gnome.org>
19524
19525         * loader.c (mono_lookup_pinvoke_call): Include the error message
19526         from g_module_error() in the error message.
19527
19528 2002-08-24  Martin Baulig  <martin@gnome.org>
19529
19530         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19531         function to update the symbol file.  The symbol file is mmap()ed
19532         writable, but private.  This allows us to install the symbol file
19533         together with the assembly.
19534
19535 2002-08-24  Martin Baulig  <martin@gnome.org>
19536
19537         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19538         but they can read the new symbol file format which mcs is now creating.
19539
19540         * debug-symfile.c (mono_debug_find_source_location): Moved to
19541         debug-mono-symfile.c; this is now operating on the new symbol file.
19542
19543 2002-08-23  Martin Baulig  <martin@gnome.org>
19544
19545         * debug-helpers.c (mono_method_desc_from_method): New function to get
19546         a MonoMethodDesc from a MonoMethod.
19547
19548 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19551         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19552
19553 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19554
19555         * string-icalls.[ch]: make helper methods static.
19556
19557 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19558
19559         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19560         types to it and to SetValueInternal.
19561
19562         * object.c: Moved handle_enum label to its proper place. This was the
19563         f... bug! ;-)
19564
19565         This time i compiled mcs and gtk-sharp and they both work.
19566
19567 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19568
19569         * icall.c: reverted partially my previous patch until 
19570         object.c:set_value handles enums correcly.
19571
19572 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19573
19574         * icall.c:
19575         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19576         (ves_icall_System_Environment_get_MachineName): removed warning when
19577         compiling under cygwin.
19578
19579 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19580
19581         * object.c: fixed field_get_value() for reference types.
19582
19583 2002-08-22  Dick Porter  <dick@ximian.com>
19584
19585         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19586         Don't free a buffer while it's still needed.  Patch from Jonathan
19587         Liger <Jonathan.liger@wanadoo.fr>
19588
19589 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19590
19591         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19592         internal call.
19593
19594 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19595
19596         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19597         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19598
19599         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19600         we call unmanaged code which throws exceptions.
19601
19602 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19603
19604         * appdomain.h: added per-domain entry_assembly.
19605         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19606         arguments.
19607         * icall.c: Assembly::GetEntryAssembly icall.
19608         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19609         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19610
19611 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19612
19613         * appdomain.h, gc.c: added mono_domain_finalize ().
19614
19615 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19616
19617         * object.c:
19618         (mono_print_unhandled_exception): changed g_warning by g_printerr
19619         because g_log has a 1024 characters limit (yeah, i got a big stack
19620         trace). Don't print exception name, that should be in ToString 
19621         returned string.
19622
19623 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19624
19625         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19626         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19627
19628 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19629
19630         * object.c:
19631         (mono_print_unhandled_exception): after previous commit, i realized
19632         that MS calls ToString on the exception. I changed this function to
19633         do that. This way we get stack_trace for free.
19634
19635 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19636
19637         * object.c:
19638         (mono_print_unhandled_exception): invoke Message property instead of
19639         getting 'message' field from Exception. Don't allocate memory for
19640         'trace' and 'message' if not needed.
19641
19642 2002-08-18  Dick Porter  <dick@ximian.com>
19643
19644         * unicode.c: Fix asserts to match Encoder.cs checks
19645
19646 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19647
19648         * marshal.c: fix unaligned store issue and a few wrong
19649         opcode argument types.
19650
19651 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19652
19653         * icall.c: added GetUninitializedObjectInternal internal call.
19654
19655 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19656
19657         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19658         to the right domain.
19659
19660 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19661
19662         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19663
19664         * class.c (class_compute_field_layout): set blittable to false for Strings
19665
19666         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19667
19668 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19669
19670         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19671         first chunk of code to create types at runtime. Code to
19672         handle ReflectedType/DeclaringType. Make reflection handles
19673         domain specific.
19674
19675 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19676
19677         * class.c: set correct name in arrays.
19678
19679 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19680
19681         * appdomain.c (mono_domain_transfer_object): make it work with
19682         valuetypes. bug fixes.
19683
19684 2002-08-12  Dick Porter  <dick@ximian.com>
19685
19686         * object.h: Rename some parameters to avoid c++ keywords (Patch
19687         from Joseph Wenninger <kde@jowenn.at>)
19688
19689 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19690
19691         * icall.c: added icall to implement Assembly.GetFile*.
19692
19693 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19694
19695         * reflection.h, reflection.c: code to embed managed resources.
19696
19697 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19698
19699         * class.c: move all the type size stuff into
19700         class_compute_field_layout().
19701
19702 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19703
19704         * class.c: ensure enums have always the correct instance size.
19705         * unicode.c: remove wrong assert.
19706
19707 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19708
19709         * assembly.c: fix mem corruption issue.
19710         * image.h, image.c: added mono_image_get_resource () to access
19711         managed resources.
19712         * icall.c: implemented Assembly.EntryPoint property and some
19713         Managed Resources related internalcalls.
19714
19715
19716 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19717
19718         * image.c, image.h: impemented mono_image_get_entry_point ().
19719         * appdomain.c: use mono_image_get_entry_point.
19720
19721 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19722
19723         * reflection.c: support the object type argument when loading
19724         custom attributes.
19725
19726 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19727
19728         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19729         String as return type.
19730
19731 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19732
19733         * reflection.c: fix encoding of named args for custom attrs to match
19734         the ms implementation. Read them back when instantiating custom
19735         attributes.
19736
19737 2002-08-02  Radek Doulik  <rodo@ximian.com>
19738
19739         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19740         by Dietmar as quick fix
19741         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19742         16 as stack size, used on more places as quick fix before Dietmar
19743         will fix it properly
19744
19745 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19746
19747         * object.h, object.c: added accessors for fields and properties.
19748
19749 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19750
19751         * class.c, class.h: made mono_class_get_field_from_name ()
19752         loop on parent types.
19753         Added mono_class_get_property_from_name ().
19754
19755 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19756
19757         * class.c, class.h: move the code to setup the type vtable in its own
19758         function so that it can be reused also for types created at runtime.
19759         Eliminate the "class" identifier from the header file.
19760         * reflection.c: setup the vtable for enums so that we can create
19761         objects for use in SetConstant ().
19762
19763 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19764
19765         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19766         instead of the delegate itself as this pointer (bug #28383)
19767
19768 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19769
19770         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19771         conversions.
19772
19773 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19774
19775         * loader.c: don't set the pinvoke bit on icalls.
19776
19777 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19778
19779         * debug-helpers.c (mono_method_full_name): only print a number to
19780         indicate wrapper type (so that the output is more readable in traces).
19781
19782 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19783
19784         * class.c (mono_class_init): include method override patch from Paolo
19785
19786 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19787
19788         * icall.c: fixed GetTypeCode().
19789
19790 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19791
19792         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19793         use real delegate invoke function to make it work with multicast
19794         delegates (fix bug# 28291).
19795
19796 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19797
19798         * object.c: load constant strings.
19799
19800 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19801
19802         * reflection.c: no magic numbers.
19803         * tabledefs.h: security action enum.
19804
19805 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19806
19807         * assembly.c: fix possible memory corruption.
19808
19809 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19810
19811         * reflection.h, reflection.c: added support for linking resources.
19812         * verify.c: check we have an updated corlib.
19813
19814 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19815
19816         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19817         string arrays.
19818         (mono_marshal_string_array): null terminate unmanaged string arrays.
19819         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19820
19821 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19822
19823         * icall.c: Type.GetType () can now return also types from the
19824         calling assembly.
19825
19826 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19827
19828         * loader.h, loader.c: stack walking support.
19829         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19830         GetCallingAssembly.
19831
19832 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19833
19834         * marshal.c: added optimisations for blittable types 
19835
19836         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19837         (mono_class_setup_mono_type): set blittable attribute for single
19838         and double.
19839
19840         * marshal.c (mono_string_utf8_to_builder): impl.
19841         (mono_string_builder_to_utf8): impl.
19842         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19843
19844 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19845
19846         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19847         (mono_marshal_get_managed_wrapper): impl. byref types
19848
19849 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19850
19851         * icall.c:
19852         (search_method): don't display debug message. 
19853
19854 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19855
19856         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19857
19858 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19859
19860         * appdomain.c: set the missing filename when throwing exception.
19861
19862 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19863
19864         * metadata.c (mono_type_size): code cleanup
19865         (mono_type_stack_size): removed some test code
19866
19867 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19868
19869         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19870         mono_get_exception_file_not_found now.
19871
19872         * exception.c (mono_exception_from_name_two_strings): New version
19873         that will call a constructor with two string arguments. 
19874         (mono_get_exception_file_not_found): New helper routine, used to
19875         report file-not-found errors.
19876
19877 2002-07-20  Dick Porter  <dick@ximian.com>
19878
19879         * process.h:
19880         * process.c: Pass file handles to CreateProcess
19881         
19882         * icall.c:
19883         * file-io.h:
19884         * file-io.c: Implemented CreatePipe
19885
19886 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19887
19888         * metadata.c (mono_get_param_info): set alignment for value types
19889
19890 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19891
19892         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19893         Constify mono_domain_assembly_open().
19894         * loader.c: handle null namespace in icalls.
19895
19896 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19897
19898         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19899         (emit_str_to_ptr_conv): marshal object as structs
19900
19901         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19902
19903         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19904
19905 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19906
19907         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19908         (mono_marshal_get_native_wrapper): we an now return value types
19909
19910 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19911
19912         * verify.c: more checks implemented.
19913
19914 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19915
19916         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19917         (fix bug #27695)
19918         (mono_marshal_get_native_wrapper): allow byref arguments
19919         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19920         impl. PtrToStringXXX methods
19921         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19922         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19923         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19924         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19925         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19926
19927 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19928
19929         * reflection.c: fix buglet in parsing an assembly name.
19930
19931 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19932
19933         * marshal.c (emit_ptr_to_str_conv): first impl.
19934
19935 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19936
19937         * object.c, class.h: cache the vtable in the class as suggested by
19938         vargaz@freemail.hu (Zoltan Varga).
19939
19940 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19941
19942         * class.h, loader.c: added mono_field_from_token().
19943         * verify.c: first cut of type checking code.
19944
19945 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19946
19947         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19948
19949 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19950
19951         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19952         (fix bug #27782)
19953         (mono_marshal_get_remoting_invoke): impl.
19954         (mono_delegate_begin_invoke): impl.
19955         (mono_mb_emit_save_args): impl.
19956         (mono_delegate_end_invoke): impl.
19957         (mono_marshal_get_delegate_begin_invoke):
19958         (mono_marshal_get_delegate_end_invoke):
19959         (mono_marshal_get_delegate_invoke): generate a special name for
19960         those methods (including the signature) and associate them whith
19961         the delegate class. 
19962
19963 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19964
19965         * reflection.[ch]: 
19966         (mono_reflection_type_from_name): now it has a MonoImage parameter
19967         which is used as the default image to search the type in. If the image
19968         is NULL or getting the type from it fails, it defaults to corlib.
19969
19970         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19971         new parameter.
19972
19973 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19974
19975         * reflection.c: update the parameter table index.
19976
19977 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19978
19979         * domain.c: don't include the mark byte in the string hash.
19980
19981 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19982
19983         * icall.cs: icall for Type.GetTypeCode ().
19984         * verify: a couple of fixes and disabled local initialization checks.
19985
19986 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19987
19988         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19989
19990         * debug-helpers.c (mono_method_full_name): print the type of the
19991         runtime wrapper
19992
19993         * metadata.c (mono_signature_hash): a hash function for signatures
19994         (mono_signature_hash): better hash algorithm
19995
19996         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19997
19998         * debug-helpers.c (mono_method_full_name): this can now generate
19999         method names with signatures
20000
20001         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
20002         method dont have this pointers.
20003
20004 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20005
20006         * reflection.c: fixup typebuilder tokens.
20007         * image.c: fix buglet.
20008         * marshal.h: remove whitespace.
20009         * metadata.h, metadata.c: reinstate code that was removed.
20010         * verify.c: handle catch directives and fix another couple of bugs.
20011
20012 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
20013
20014         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
20015         (mono_marshal_get_native_wrapper): make it comp. with the old code
20016         (mono_marshal_get_native_wrapper): support boolean
20017         (mono_marshal_get_managed_wrapper): support more types
20018
20019 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
20020
20021         * class.c (class_compute_field_layout): compute class->blittable attribute.
20022
20023 2002-07-09  Dick Porter  <dick@ximian.com>
20024
20025         * threads.c: Make the thread cleaning up cope with threads that
20026         call ExitThread()
20027
20028 2002-07-08  Radek Doulik  <rodo@ximian.com>
20029
20030         * reflection.c (method_encode_code): use non-translated values to
20031         compute finally_start, this fixes exception handling on ppc, yay!
20032
20033         * decimal.h (struct signscale): fix endianess
20034
20035 2002-07-07  Radek Doulik  <rodo@ximian.com>
20036
20037         * reflection.c: swap box_val and not val
20038
20039 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20040
20041         * reflection.c, reflection.h: handle full assembly info in type name.
20042         Handle Type arguments when loading custom attributes.
20043         * icall.c: updated to use new mono_reflection_type_from_name () method.
20044
20045 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20046
20047         * loader.c:
20048         (method_from_memberref): also print assembly name when method not found.
20049
20050 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20051
20052         * icall.c:
20053         (ves_icall_TypeGetProperties): fixed bug #27473. 
20054
20055 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20056
20057         * reflection.c: display image name and token when cannot find the
20058         .ctor for an attribute.
20059
20060 2002-07-05  Martin Baulig  <martin@gnome.org>
20061
20062         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20063
20064 2002-07-04  Dick Porter  <dick@ximian.com>
20065
20066         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
20067         compile on mingw.  This will cause mingw builds to not wait for
20068         subthreads to terminate after the main thread does.  I've lodged a
20069         bug with the mingw developers for them to wrap OpenThread().
20070
20071 2002-07-03  Dick Porter  <dick@ximian.com>
20072
20073         * threads.c: Store thread IDs instead of handles, because
20074         GetCurrentThread() returns a pseudohandle and therefore stores
20075         useless values.  mono_thread_cleanup() continues checking the
20076         array of threads until it is empty, to cope with subthreads
20077         spawning new threads after the main thread has finished.
20078
20079         * profiler.h:
20080         * profiler.c:
20081         * profiler-private.h: Pass the thread ID to thread profiler
20082         functions, instead of a handle
20083
20084 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20085
20086         * verify.c: fixes to make it more usable.
20087         * pedump.c: added --verify code to verify IL code in an assembly.
20088
20089 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20090
20091         * reflection.c: turn errors into warnings to allow compiling corlib.
20092
20093 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
20094
20095         * reflection.c: add special cases to compile corlib.
20096
20097 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20098
20099         * reflection.c: handle properties with only a set method.
20100
20101 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20102
20103         * opcodes.h: add enum with opcodes in opval order.
20104
20105 2002-07-01  Dick Porter  <dick@ximian.com>
20106         
20107         * object.h:
20108         * object.c (mono_runtime_run_main): Removed unneeded argument
20109
20110 2002-06-28  Martin Baulig  <martin@gnome.org>
20111
20112         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20113
20114 2002-06-27  Dick Porter  <dick@ximian.com>
20115
20116         * threads.c: Store the handle in both the parent thread and in the
20117         subthread, to minimise the time between starting a new thread and
20118         storing its ID.
20119
20120 2002-06-26  Dick Porter  <dick@ximian.com>
20121
20122         * appdomain.c (mono_runtime_cleanup): Close the socket library
20123         after all the threads have finished, not before
20124
20125 2002-06-26  Martin Baulig  <martin@gnome.org>
20126
20127         * debug-symfile.c (mono_debug_find_source_location): Added
20128         `guint32 *line_number' argument.  If it's not NULL, store the line number
20129         there and return the file name without the line number.
20130
20131 2002-06-25  Dick Porter  <dick@ximian.com>
20132
20133         * icall.c:
20134         * process.h:
20135         * process.c: Process forking and other support functions
20136
20137 2002-06-25  Dick Porter  <dick@ximian.com>
20138
20139         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
20140         things dont happen when the image is closed.
20141         (mono_image_lookup_resource): Walk the resource section looking
20142         for a particular entry
20143
20144         * cil-coff.h: PE resource section decoding
20145
20146 2002-06-25  Dick Porter  <dick@ximian.com>
20147         
20148         * assembly.h:
20149         * assembly.c: 
20150         (mono_assembly_foreach): Accessor functions to walk the list of
20151         loaded assemblies
20152         (mono_assembly_set_main):
20153         (mono_assembly_get_main): Process methods need to know which
20154         assembly is the "main" one
20155
20156         * object.c (mono_runtime_run_main): Record the main assembly
20157
20158         * debug-helpers.c: Fix typo
20159
20160 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
20161
20162         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
20163         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
20164
20165 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20166
20167         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
20168
20169 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
20170
20171         * image.c (do_mono_image_open): Initialize reference count,
20172         otherwise we leak the MonoImage.
20173
20174 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20175
20176         * reflection.c: small tweak to handle self-hosting.
20177
20178 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20179
20180         * reflection.c: fix type name parse code.
20181
20182 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20183
20184         * reflection.c: break out of the loop.
20185         * image.c: special case corlib.
20186
20187 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20188
20189         * reflection.c: add all the custom attrs at the end to ensure the
20190         ctors have been properly initialized when the attributes are defined
20191         in the current assembly.
20192
20193 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20194
20195         * reflection.c: handle correctly multiple-nested types.
20196
20197 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
20198
20199         * row-indexes.h: fix typos.
20200         * reflection.c: adjust for typos and fix method_def_or_ref
20201         encoding in MethodImpl table.
20202
20203 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20204
20205         * reflection.c: fix entry point patching (thanks Serge!).
20206
20207 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
20208
20209         * verify.c: add check for System.Exception
20210
20211 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20212
20213         * image.c, class.c: minifix for code just c&p'ed.
20214         * reflection.c: warning fix.
20215         * object.h, loader.h, domain.c: load also StringBuilder.
20216
20217 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20218
20219         * marshal.h, marshal.c: some support code to handle complex marshaling.
20220
20221 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20222
20223         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
20224         Better signatures with vtable error dump.
20225
20226 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
20227
20228         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
20229
20230 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
20231
20232         * icall.c (ves_icall_Type_GetField): impl.
20233
20234 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20235
20236         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
20237         to retrieve a marshal description blob for a field or param.
20238
20239 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20240
20241         * reflection.h, reflection.c: change order of nested type emission
20242         to avoid table corruption. The NestedTypes table is sorted.
20243         * icall.c: change order of GetConstructor results to workaround mcs bug.
20244
20245 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20246
20247         * reflection.h, reflection.c: handle field and param marshal
20248         information.
20249
20250 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20251
20252         * icall.c, marshal.c marshal.h: more Marshal class implementation.
20253
20254 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20255
20256         * reflection.c: fix call convention.
20257
20258 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20259
20260         * reflection.h, reflection.c: mono_image_get_memberref_token()
20261         takes a type instead of a class, now. Added
20262         mono_image_get_array_token() to create tokens for the special
20263         multi-dim array methods.
20264
20265 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20266
20267         * assembly.c: handle modules (no assembly table). Split
20268         loading references in its own function.
20269         * class.c: handle moduleref resolution scope.
20270         * image.c, image.h: cache module name in image.
20271
20272 2002-06-07  Martin Baulig  <martin@gnome.org>
20273
20274         * reflection.c (mono_image_get_type_info): Only add a class layout entry
20275         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
20276
20277 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20278
20279         * icall.c: more signature fixes that used uint instead of int.
20280
20281 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20282
20283         * reflection.c: fixed signature of field refs.
20284
20285 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20286
20287         * class.c, reflection.c: handle typerefs of nested types
20288         (both on read and when writing files).
20289
20290 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20291
20292         * icall.c: fix method signatures that tried to workaround the previous
20293         typo, d'oh!
20294
20295 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20296
20297         * debug-helpers.c: fix typo.
20298
20299 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20300
20301         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
20302         rewrote the PE/COFF writing code (our programs are understood by the
20303         ms runtime, now).
20304
20305 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20306
20307         * gc.c, gc.h, icall.c: weakreference support.
20308
20309 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20310
20311         * Makefile.am, mono-config.c: use $(sysconfdir).
20312
20313 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20314
20315         * icall.c: changed default precision of Double.ToString() to 15.
20316         Fixed memory leak. Unified with Single.ToString.
20317
20318 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20319
20320         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20321
20322 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20323
20324         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20325         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20326         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20327         and myself.
20328
20329 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20330
20331         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20332
20333 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20334
20335         * reflection.c, socket-io.c: more compilation fixes.
20336
20337 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20338
20339         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20340         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20341         unicode.c: warning and compiler compatibility fixes.
20342
20343 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20344
20345         * class.h, metadata.c: fixed warnings/compilation errors.
20346
20347 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20348
20349         * Makefile.am, mono-config.c, mono-config.h: configuration file
20350         support routines.
20351         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20352         config file. Export methods to insert and lookup mappings.
20353
20354 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20355
20356         * reflection.c: handle types and boxed objects in custom attr
20357         constructors.
20358
20359 2002-05-30  Martin Baulig  <martin@gnome.org>
20360
20361         * debug-symfile.c
20362         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20363
20364 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20365
20366         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20367         to lookup the implmap row for a P/Invoke method.
20368         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20369         P/Invoke method from the runtime on an as needed basis.
20370
20371 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20372
20373         * metadata.c (mono_metadata_parse_signature): impl.
20374
20375 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20376
20377         * class.c: handle .pack directive.
20378
20379 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20380
20381         * object.c: initialize static fields with RVA data.
20382
20383 2002-05-25  Martin Baulig  <martin@gnome.org>
20384
20385         * debug-symfile.c
20386         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20387
20388 2002-05-24  Martin Baulig  <martin@gnome.org>
20389
20390         * debug-symfile.c
20391         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20392         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20393         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20394
20395 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20396
20397         * object.c: special case string ctros in invoke.
20398         * gc.c: silly whitespace changes.
20399
20400 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20401
20402         * threadpool.[ch]: impl. a threadpool that can
20403         be used by mint and mono.
20404
20405 2002-05-22  Martin Baulig  <martin@gnome.org>
20406
20407         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20408         The first argument is now a `MonoReflectionModuleBuilder *', the return
20409         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20410         `methods' field to get the method builder.  The `token' argument is the
20411         unfixed token.
20412
20413         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20414         invalid characters instead of g_assert_not_reached()ing.  This seems
20415         to be the behaviour of mscorlib.
20416
20417 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20418
20419         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20420         Hestilow to fix bug #25104
20421
20422 2002-05-21  Martin Baulig  <martin@gnome.org>
20423
20424         * debug-symfile.c (mono_debug_find_source_location): New function.
20425         Looks up an IL offset in the line number table and returns the source
20426         location as a string.
20427
20428 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20429
20430         * icall.c:
20431         (mono_double_ToStringImpl): changed %f by %g until we have something
20432         better.
20433
20434 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20435
20436         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20437         parameters first in C#.
20438
20439 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20440
20441         * icall.c, reflection.h: added icall to get info about an event.
20442
20443 2002-05-20  Radek Doulik  <rodo@ximian.com>
20444
20445         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20446         endian
20447         (mono_value_box): don't use memcpy for small sizes on
20448         architectures with unaligned access
20449
20450 2002-05-20  Martin Baulig  <martin@gnome.org>
20451
20452         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20453         if `tb->parent == NULL'.
20454         (mono_reflection_create_internal_class): New function.  This is
20455         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20456         for enum types.
20457
20458         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20459         New interncall.
20460
20461 2002-05-19  Martin Baulig  <martin@gnome.org>
20462
20463         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20464         argument to get the length, don't default to the array length.
20465
20466 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20467
20468         * assembly.c (mono_assembly_setrootdir): New function used to
20469         override the MONO_ASSEMBLIES directory.
20470
20471 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20472
20473         * icall.c: ValueType_GetHashCode() initialize local var.
20474
20475 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20476
20477         * reflection.c: sort custom attributes table.
20478
20479 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20480
20481         * reflection.c: support named args in custom attributes (write support).
20482
20483 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20484
20485         * reflection.c: fix finally position calculation.
20486
20487 2002-05-15  Radek Doulik  <rodo@ximian.com>
20488
20489         * reflection.c: fixed endianess at many places
20490
20491         * icall.c (ves_icall_InitializeArray): comment out debug msg
20492
20493 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20494
20495         * object.c (mono_unhandled_exception): new function to handle
20496         unhandled exceptions.
20497         (mono_unhandled_exception): call the UnhandledException event.
20498         (mono_runtime_delegate_invoke): impl.
20499
20500 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20501
20502         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20503         returns the RVA, not the direct pointer to the data. Handle the case
20504         when the class size is fixed.
20505
20506 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20507
20508         * reflection.c: fix some endianess issues.
20509
20510 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20511
20512         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20513
20514         * threads.c (mono_thread_init): added a callback which is invoked
20515         at thread start.
20516
20517 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20518         
20519         * icall.c: make GetHashCode return non-negative values.
20520
20521 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20522
20523         * object.c, icall.c, gc.c: revert to address-based hashcode.
20524
20525 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20526
20527         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20528
20529 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20530
20531         * icall.c, class.c: special case <Module>.
20532
20533 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20534
20535         * icall.c: fix bug in GetNow().
20536
20537 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20538
20539         * object.c (mono_runtime_class_init): make sure that we call all
20540         static class constructors.
20541
20542 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20543
20544         * reflection.c: sort methodsemantics table.
20545
20546 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20547
20548         * reflection.h, reflection.c: honour init locals setting.
20549
20550 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20551
20552         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20553
20554 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20555
20556         * reflection.c: support ContructorBuilders in attribute blob creation.
20557
20558 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20559
20560         * reflection.c: some changes to build a binary that can be run
20561         directly in windows.
20562
20563 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20564
20565         * loader.c: print a big message when an icall can't be found.
20566
20567 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20568
20569         * string-icalls.c: fix bug 24248.
20570
20571 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20572
20573         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20574         icall.c, reflection.h: separate assembly loading by pathname and by
20575         assembly name. Use the MONO_PATH env var to search for assemblies.
20576
20577 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20578
20579         * assembly.c, image.h: add some support for assemblies
20580         with multiple modules.
20581         * class.c, class.h: export mono_class_from_typeref().
20582         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20583         instead.
20584
20585 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20586
20587         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20588         documentation says (the ECMA one is correct).
20589
20590 2002-05-02  Dick Porter  <dick@ximian.com>
20591
20592         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20593         Don't name the synchronisation mutex.
20594
20595 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20596
20597         * rand.c
20598         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20599         Make the prototypes match.
20600         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20601         Same.
20602
20603         * icall.c
20604         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20605         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20606         all systems have tm.tm_zone, so use strftime() with %Z to print
20607         the timezone abreviation into a temp string.
20608
20609         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20610         rather than mono_array_addr() on a MonoString on Big Endian
20611         machines.
20612
20613 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20614
20615         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20616         fix bug 24041
20617
20618 2002-04-30  Dick Porter  <dick@ximian.com>
20619
20620         * socket-io.c: Cope with SOCKET being an integer rather than a
20621         pointer now.
20622
20623         * threads.c: Added Thread_free_internal, to deal with thread
20624         handle cleanup.  Moved calls to handle_store() and handle_remove()
20625         to start_wrapper(), so each can only be called once.  Allocate
20626         synchronisation blocks with GC_malloc(), and use GC finalisation
20627         to close the handles.
20628
20629         * icall.c: added System.Threading.Thread::Thread_free_internal
20630
20631 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20632
20633         * icall.c: support Environment.Exit, CommandLineArgs().
20634
20635 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20636
20637         * object.c, object.h: added mono_runtime_run_main () and
20638         mono_runtime_get_main_args () for use in System.Environment.
20639
20640 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20641
20642         * gc.c: fix thinko, enable actual finalization since the jit is now
20643         fixed.
20644
20645 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20646
20647         * gc.c, object.c: take into account that an object may be offset wrt the address
20648         returned by GC_malloc().
20649
20650 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20651
20652         * image.c: handle files without entries in the assembly table (modules).
20653
20654 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20655
20656         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20657         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20658         allowed to be null when it's System.Object class setup.
20659
20660 2002-04-27  Martin Baulig  <martin@gnome.org>
20661
20662         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20663         if `tb->parent == NULL' rather than crashing.
20664
20665 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20666
20667         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20668         calling acos() where asin() should have been called.
20669
20670 2002-04-26  Martin Baulig  <martin@gnome.org>
20671
20672         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20673         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20674         there's a subdirectory called `System', but we don't want to read that
20675         subdirectory as an assembly.
20676
20677 2002-04-25  Martin Baulig  <martin@gnome.org>
20678
20679         * debug-symfile.c: Reflect latest MonoString changes.
20680
20681 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20682
20683         * rand.c, rand.h: instance method icalls need to have an explicit
20684         this pointer as first argument in the C implementation.
20685
20686 2002-04-25  Nick Drochak <ndrochak@gol.com>
20687
20688         * icall.c: Fix typo in map for GetNonZeroBytes
20689
20690 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20691
20692         * string-icalls.c : String does now passes unit tests without any 
20693         errors, the following changes has been made:
20694         
20695         Implemented replace methods.
20696         Renaming of methods to (try) follow the standard.
20697         Fixed compare ordinal
20698         Made all memory allocated directly to function instead of via icall function.
20699         Small performance fix in is_in_array function
20700                         
20701  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20702
20703         c (mono_string_Internal_ctor_charp_int_int):
20704         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20705         sindex < 0, throw ArgumentOutOfRangeException instead of
20706         ArgumentNullException.
20707
20708         Added new check for length == 0, however
20709         I need to make it return String.Empty from the C code.
20710         
20711         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20712         that calculate the length for us here.
20713         
20714         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20715         mono_string_new_utf16 with mono_string_new, since value is utf8.
20716
20717 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20718
20719         * object.c: register the object for finalization if needed.
20720         Allocate one more char in the string for the terminating 0 char.
20721
20722 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20723
20724         * class.c, class.h, image.c: check if a type implemenst a destructor.
20725         Use the proper key for array class lookups.
20726         * icall.c: register the icalls in the System.GC class.
20727         * gc.c, gc.h: GC-related functions and icalls.
20728
20729 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20730
20731         * icall.c:
20732         * socket-io.c:
20733         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20734         changed a couple of free () by g_free ().
20735
20736         * decimal.c: one-liner in the comments for decimal2string ().
20737
20738 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20739
20740         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20741
20742 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20743
20744         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20745         * object.c (mono_runtime_invoke_array) : handle null in params
20746
20747 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20748
20749         * string-icalls.c: fixed bug in split (one off bug)
20750
20751 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20752
20753         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20754         * icalls.c: added String::Equals as internal method
20755
20756 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20757
20758         * threads.c: fixed bug in the double interlocked functions
20759
20760 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20761
20762         * threads.c: implemented all of the new interlocked icalls.
20763         * string-icalls.c: fix a bug in insert.
20764         * icalls.c: added the icalls for interlocked, removed old string functions.
20765         
20766 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20767
20768         * loader.c: fix off-by-one error when reading argument names.
20769
20770 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20771
20772         * profiler.c: win32 counter implementation (untested).
20773         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20774         (the latter needs testing and more complete impl. from win32 folks).
20775
20776 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20777
20778         * object.c: mono_array_new_full workaround mono_array_class_get
20779         problem.
20780
20781 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20782
20783         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20784         * object.h (mono_string_chars): Changed casting type.
20785
20786 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20787
20788         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20789                            method signatures to use gunichar2 instead of gint16.
20790
20791 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20792
20793         * object.h, object.c: domain-specific versions of mono_object_new and
20794         mono_array_new.
20795
20796 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20797
20798         * object.c: changed String layout
20799
20800         * string-icalls.c (mono_string_Internal_ctor_chara): added
20801         internal string constructors.
20802
20803 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20804
20805         * threads.c: pass 'this' to the thread start routine.
20806
20807 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20808
20809         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20810         InternalCompareStr don't call twice mono_string_cmp_char for the last
20811         character. Improved performance in mono_string_cmp_char.
20812
20813 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20814
20815         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20816         code into its own library: libmonoruntime.
20817
20818 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20819
20820         * object.h, object.c: changed array format so that szarrays do not
20821         require a bounds structure.
20822         * icall.c, appdomain.c: support for new szarray format.
20823
20824 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20825
20826         * metadata.c: compare also the retuns type when comparing signatures:
20827         we didn't do this as an optimization since really overloaded methods
20828         must differ also in the arguments, but this doesn't work with
20829         low-level IL code (or when using explicit conversion operators: see
20830         bug#23498 for an example).
20831
20832 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20833
20834         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20835
20836 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20837
20838         * icall.c: make MonoType::GetElementType its own icall.
20839
20840 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20841
20842         * icall.c: remove MonoMethod_get_Name().
20843         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20844         object.
20845
20846 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20847
20848         * string-icalls.c: optimized a few methods.
20849
20850 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20851
20852         * icall.c: added all new string internal calls
20853         * string-icalls.c: added, new string internal call implementation.
20854         * object.c: added mono_string_new_size for allocating a string a size
20855
20856 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20857
20858         * object.c (mono_object_isinst): use the same code as in the
20859         optimized x86 version.
20860
20861 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20862
20863         * profiler.c: TSC-based timer code (faster and more accurate).
20864         Not hooked up in configure, yet (set USE_X86TSC to 1).
20865
20866 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20867
20868         * profiler.c, profiler.h: track time spent compiling methods.
20869         * threads.c: track thread creation/destruction.
20870
20871 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20872
20873         * profiler.c, profiler.h, profiler-private.h: profiling interface
20874         and sample implementation. Moved here so that it can be used also by
20875         the jit.
20876
20877 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20878
20879         * reflection.c, reflection.h: keep types and other handles separate in
20880         the hash tables for referred tokens. Add guid for modules.
20881
20882 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20883
20884         * assembly.c: fix bugs found with valgrind.
20885         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20886
20887 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20888
20889         * threads: added icall support for getting current domain for
20890                    the thread.
20891  
20892 2002-04-13  Martin Baulig  <martin@gnome.org>
20893
20894         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20895         (MonoDebugVarInfo): Added `index' field for register based addresses.
20896         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20897         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20898         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20899         `MonoDebugVarInfo *this_var'.
20900
20901         * debug-symfile.c (relocate_variable): New static function to write
20902         a location description for a local variable or method parameter.
20903
20904 2002-04-12  Martin Baulig  <martin@gnome.org>
20905
20906         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20907         stack offset and begin/end scope address of a local variable.
20908         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20909         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20910         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20911
20912         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20913         Added new relocation types for start/end scope of a local variable.
20914
20915 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20916
20917         * object.h: add mono_object_domain() macro.
20918         * reflection.c: handle typespecs.
20919         * icall.c: MonoMethod::get_Name() implementation.
20920
20921 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20922
20923         * icall.c: String::GetHashCode() icall implementation.
20924
20925 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20926
20927         * icall.c: String::IndexOfAny icall.
20928         * object.c, object.h: make array->max_length more useful.
20929         Intrduced mono_object_class() and mono_string_length() macros.
20930
20931 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20932
20933         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20934         instead of g_unichar_isdigit.
20935
20936 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20937
20938         * icall.c: Implement a simple Double.ToString().
20939
20940 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20941
20942         * appdomain.h: only io-layer.h is supposed to be included.
20943         * icall.c: explicitly import environ. Fix warning.
20944
20945 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20946
20947         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20948                 return true even if it's not Daylight Savings time.
20949                 Only return false for the case where the function isn't
20950                 implemented for a plaform (read Windows).
20951
20952 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20953
20954         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20955         data with a mutex.
20956
20957 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20958
20959         * mempool.c (mono_mempool_alloc): only use g_malloc when
20960         absolutely necessary.
20961
20962 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20963
20964         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20965
20966         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20967         (mono_class_proxy_vtable): use domain mempool
20968
20969 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20970
20971         * appdomain.h, appdomain.c: split initialization that requires the
20972         execution engine support into mono_runtime_init().
20973
20974 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20975
20976         * class.c (mono_class_init): don't include vtable inside MonoClass
20977         to save some memory, gather some statistics.
20978         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20979
20980 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20981
20982         * icall.c: internalcall implementation for ValueType.Equals().
20983
20984 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20985
20986         * object.c (mono_message_init): moved 
20987         (mono_runtime_exec_main): new arch. independent impl.
20988         (mono_runtime_invoke_array): new method - like
20989         mono_runtime_invoke, but you can pass an array of objects.
20990         (mono_remoting_invoke): new arch. independent impl.
20991         (mono_message_invoke): new arch. independent impl.
20992         (mono_runtime_class_init): new arch. independent impl.
20993         (mono_runtime_object_init): new arch. independent impl.
20994
20995 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20996
20997         * metadata.c, object.c, reflection.c: documented the exported
20998         functions.
20999
21000 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21001
21002         * icall.c: simpler code to pass the assembly builder data to corlib.
21003         Implement GetNestedTypes() internalcall.
21004
21005 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
21006
21007         * class.c: warn if a type can't be loaded.
21008
21009 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
21010
21011         * image.h: typedef MonoImageOpenStatus
21012         * types.h: removed unused file
21013         
21014 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
21015
21016         * icall.c: Enum_ToObject accepts enum value arguments.
21017
21018 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
21019
21020         * class.c: move initialization of properties, events and nested
21021         classes, so that they happen for interfaces, too.
21022
21023 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
21024
21025         * icall.c: cleanup some ugly casts in Array_SetValue*.
21026
21027 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
21028
21029         * icall.c: the values array fro enums is of the correct type, now.
21030         Implement (correctly) getFullName instead of assQualifiedName for
21031         MonoType.
21032         * reflection.h, reflection.c: added mono_type_get_name ().
21033
21034 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
21035
21036         * assembly.c, image.h: for each MonoImage, record from wich assembly
21037         it was loaded.
21038         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
21039         Make Type.Assembly work.
21040
21041 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
21042
21043         * debug-symfile.h: use char* instead of gpointer to avoid
21044         unnecessary casts.
21045
21046         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
21047
21048         * icall.c (ves_icall_InternalExecute): impl. FielSetter
21049         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
21050
21051 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
21052
21053         * icall.c (mono_message_init): impl. (code cleanup)
21054         (ves_icall_InternalExecute): impl. FieldGetter
21055
21056         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
21057         defined we call all (non-static)methods through the vtable. 
21058
21059 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
21060
21061         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
21062         finalizer even though the memory is still referenced (and the chunk of
21063         memory is not freed).
21064
21065 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21066
21067         * assembly.c: fix brokeness.
21068
21069 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
21070
21071         * class.c: kill some warnings. Check explicit interface method
21072         implementation also without considering the namespace.
21073         Load also literal strings in static class data.
21074
21075 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
21076
21077         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
21078         (default_assembly_name_resolver): Make the resolver take the
21079         "base" directory where the assembly was originally defined, so we
21080         can load DLLs that are in the same directory as the assembly that
21081         is being referenced.
21082
21083 2002-03-28  Dick Porter  <dick@ximian.com>
21084
21085         * file-io.h: 
21086         * file-io.c:
21087         * socket-io.c: 
21088         * unicode.h: 
21089         * unicode.c: Warning cleanups
21090
21091 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
21092
21093         * object.h, reflection.h: use the correct type instead of MonoObject.
21094
21095 2002-03-28  Martin Baulig  <martin@gnome.org>
21096
21097         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
21098         (mono_debug_update_symbol_file): Initialize classes if necessary.
21099
21100 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21101
21102         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
21103         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
21104
21105 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
21106
21107         * assembly.h: fix function prototype.
21108         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
21109         * mono-endian.h: use const cast.
21110
21111 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21112
21113         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
21114
21115 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21116
21117         * loader.c: don't assert when a typeref can't be loaded, give
21118         a chance to the runtime to trow an exception instead.
21119         * loader.h: fix warning.
21120
21121 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21122
21123         * class.c (mono_class_proxy_vtable): added proxy support
21124
21125 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
21126
21127         * icall.c: removed last of PAL calls, added System.Environment
21128         * file-io.h, file-io.c: MonoIO implementation
21129         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
21130
21131 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21132
21133         * appdomain.c: do not use the byte marker in ldstr table lookup.
21134         * debug-helpers.c: allow two ':' to separate class and method name.
21135         * object.c: allocate arrays bounds with the GC, too.
21136         * verify: add a few more checks.
21137
21138 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
21139
21140         * reflection.c: output also literal strings. Allocate parameter data
21141         with GC_malloc() (thanks, Martin, for catching this!).
21142
21143 2002-03-26  Martin Baulig  <martin@gnome.org>
21144
21145         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
21146         include the `this' offset in the `param_offsets'.
21147
21148 2002-03-25  Martin Baulig  <martin@gnome.org>
21149
21150         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
21151         mono_debug_get_class() function to get the classes. Added new
21152         relocation types for arrays and strings.
21153         (mono_debug_get_class): New static function to search in all
21154         referenced assemblies for a metadata token.
21155
21156         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
21157
21158 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21159
21160         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
21161         hold gc-allocated objects. Make the string heap a stream like the
21162         others. Removed duplicated code when writing stream info.
21163         Added asserts to catch possible buffer overflows. Set the sorted map
21164         for tables that need sorting. Added some documentation.
21165
21166 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
21167
21168         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
21169         for interned strings and vtables.
21170
21171 2002-03-24  Martin Baulig  <martin@gnome.org>
21172
21173         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
21174         it in the array since it was created with g_slist_prepend().
21175
21176 2002-03-24  Martin Baulig  <martin@gnome.org>
21177
21178         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
21179         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
21180         (mono_debug_method_from_token): Renamed to
21181         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
21182         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
21183
21184         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
21185         relocation types.
21186
21187         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
21188
21189 2002-03-24  Martin Baulig  <martin@gnome.org>
21190
21191         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
21192         (mono_debug_method_from_token): New func.
21193
21194         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
21195         New interncall, calls mono_debug_local_type_from_signature().
21196         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
21197         calls mono_debug_method_from_token().
21198
21199 2002-03-23  Martin Baulig  <martin@gnome.org>
21200
21201         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
21202         specifies the number of bytes to be converted, not the array size.
21203         Return the number of chars, not the number of bytes.
21204         (ves_icall_iconv_get_chars): The `byteCount' argument
21205         specifies the number of bytes to be converted, not the array size.
21206
21207 2002-03-23  Martin Baulig  <martin@gnome.org>
21208
21209         * reflection.h (MonoReflectionSigHelper): New type.
21210
21211         * reflection.c (mono_reflection_sighelper_get_signature_local),
21212         (mono_reflection_sighelper_get_signature_local): New functions.
21213
21214         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
21215         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
21216         interncalls.
21217
21218 2002-03-23  Martin Baulig  <martin@gnome.org>
21219
21220         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
21221         is_writeable is set.
21222         (mono_raw_buffer_update): New function to write the modified map
21223         back to disk.
21224
21225         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
21226
21227         * debug-symfile.c (mono_debug_update_symbol_file): Call
21228         mono_raw_buffer_update() when done writing.
21229
21230 2002-03-23  Martin Baulig  <martin@gnome.org>
21231
21232         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
21233
21234         * debug-symfile.c: Added support for arguments and local variables.
21235
21236 2002-03-23  Dick Porter  <dick@ximian.com>
21237
21238         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
21239         protected by ifdefs, hence breaking the w32 build.
21240
21241 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21242
21243         * object.c: implement is_interned() the right way.
21244
21245 2002-03-21  Martin Baulig  <martin@gnome.org>
21246
21247         * debug-symfile.[ch]: New files to handle debugging information
21248         files. There's also support to dynamically update these symbol
21249         files to include machine dependent information.
21250
21251 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
21252
21253         * threads.c (mono_thread_create): new function to create thread
21254         from C
21255
21256 2002-03-20  Martin Baulig  <martin@gnome.org>
21257
21258         * icall.c (ves_icall_InternalInvoke): Create a new object if the
21259         method is a constructor.
21260         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
21261         points to ves_icall_InternalInvoke().
21262
21263 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
21264
21265         * file-io.c: Flush shouldn't throw exceptions.
21266
21267 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
21268
21269         * file-io.c: FileStream flush support; FileSetLength now
21270         restores file pointer.
21271
21272 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21273
21274         * class.c: set image for pointer classes.
21275
21276 2002/03/19  Nick Drochak <ndrochak@gol.com>
21277
21278         * sysmath.c: Forgot one.
21279
21280 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
21281
21282         * sysmath.c: Avoid redefining existing names.
21283
21284 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
21285
21286         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
21287         handled by runtime as icall rather than dllimport from libm.so
21288         * file-io.c, file-io.h: fixed handle argument type.
21289
21290 2002-03-18  Dick Porter  <dick@ximian.com>
21291
21292         * reflection.c (mono_image_get_type_info): rename interface to
21293         iface, because of "#define interface struct" on windows.
21294
21295 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
21296
21297         * class.c, class.h: rename and export mono_ptr_class_get().
21298         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
21299         * reflection.c, reflection.h, icall.c: better/saner type name
21300         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
21301         method signatures.
21302
21303 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
21304
21305         * class.c (mono_class_init): removed hardcoded GHC_SLOT
21306
21307         * icall.c (ves_icall_InternalInvoke): impl.
21308
21309 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21310
21311         * reflection.c: output the interface map table, too.
21312
21313 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21314
21315         * class.c (class_compute_field_layout): separate computation of 
21316         static field layout
21317
21318 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21319
21320         * icall.c: added System.Buffer support.
21321         * file-io.c: moved file icalls from PAL to FileStream.
21322
21323 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21324
21325         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21326
21327 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21328
21329         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21330
21331 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21332
21333         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21334
21335 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21336
21337         * debug-helpers.{c,h}: moved here from monograph some useful functions
21338         to locate a method by name/signature in a class or image. Included
21339         also a small and flexible IL disassembler.
21340
21341 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21342
21343         * reflection.c: fixup tokens in methods with small header size, too.
21344
21345 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21346
21347         * object.c (mono_string_to_utf8): remove assert(!error), instead
21348         print a warning. 
21349
21350 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21351
21352         * icall.c: update to the new mono_Array_class_get interface.
21353
21354 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21355
21356         * appdomain.c, object.c: Boehm-GC enable.
21357         * icall.c: make get_data_chunk() support split data requests.
21358         Ensure a class is initialized in more cases. Return only the first
21359         property found in GetProperties() or the compiler gets confused. 
21360         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21361         * reflection.h, reflection.c: add fixup mechanism for field and method
21362         tokens. Initialize assembly->typeref in a single place. Output
21363         properties after events. Support custom attributes for events, too.
21364         Typo fix for paramter custom attrs.
21365
21366 2002-03-07  Martin Baulig  <martin@gnome.org>
21367
21368         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21369
21370 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21371
21372         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21373
21374 2002-03-06  Martin Baulig  <martin@gnome.org>
21375
21376         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21377         non-zero lower bounds. See testcases #F10-#F13.
21378
21379 2002-03-05  Martin Baulig  <martin@gnome.org>
21380
21381         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21382
21383         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21384         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21385         here.
21386         (ves_icall_System_Array_SetValue): Likewise.
21387         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21388         as argument and does the actual work. This function is used when copying a
21389         multi-dimensional array.
21390         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21391         now do all the widening conversions of value types.
21392         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21393
21394 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21395
21396         * class.c: remove some magic numbers and use the smbolic names,
21397         instead. Added init_events() to load event info at class init time.
21398         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21399         and mono_metadata_methods_from_event().
21400         * reflection.h, reflection.c: added support for writing out the evnets
21401         related information.
21402
21403 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21404
21405         * reflection.h, icall.c: use a different method (GetInterfaces)
21406         to gather interface info and add isbyref, isprimitive and
21407         ispointer to the ves_icall_get_type_info() return value.
21408
21409 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21410
21411         * class.h: stared adding support for events.
21412         * icall.c: split find_members implementation. Added debug icall to get
21413         the address of an object.
21414         * reflection.c: handle TypeBuilders in mono_type_get_object().
21415
21416 2002-03-01  Martin Baulig  <martin@gnome.org>
21417
21418         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21419         ArgumentOutOfRangeException(), not an ArgumentException().
21420         (ves_icall_System_Array_GetLowerBound): Likewise.
21421         (ves_icall_System_Array_GetValue): Improved argument checking.
21422         (ves_icall_System_Array_SetValue): Improved argument checking.
21423
21424 2002-03-01  Martin Baulig  <martin@gnome.org>
21425
21426         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21427         called with invalid arguments rather than just dying with g_assert().
21428         (ves_icall_System_Array_SetValue): Likewise.
21429         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21430         raise a NotImplementedException instead.
21431         (ves_icall_System_Array_GetLength): Added argument checking.
21432         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21433
21434 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21435
21436         * object.h (mono_assert): new macros mono_assert and
21437         mono_assert_not_reached
21438
21439 2002-02-28  Martin Baulig  <martin@gnome.org>
21440
21441         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21442         and "System::String::IsInterned" to "System::String::_IsInterned".
21443
21444 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21445
21446         * icall.c: remove hacks for typebuilder. Added icall to create a
21447         modified type from a tybebuilder.
21448         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21449         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21450         to create a backing MonoClass for a TypeBuilder.
21451
21452 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21453
21454         * class.c, class.h: more refactoring of class init.
21455         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21456
21457 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21458
21459         * marshal.c, marshal.h: start of marshaling interface.
21460
21461 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21462
21463         * icall.c: fix order in assembly qualified name icall.
21464
21465 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21466
21467         * class.c: do not free str, since we store it in the hash table.
21468         * reflection.h: add label field to MonoILExceptionInfo.
21469         * reflection.c: handle references to more than one assembly. Handle
21470         case when there isn't a module created in the assembly.
21471
21472 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21473
21474         * class.c: Fix typo. Start refactoring of class init code.
21475
21476 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21477
21478         * appdomain.c: exit with 1 on error.
21479         * class.c: we already have the name in MonoClassField.
21480         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21481         MonoStreamHeader instead of an offset of image->raw_metadata.
21482
21483 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21484
21485         * appdomain.c (mono_init): Be even more descriptive about the error.
21486
21487 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21488
21489         * appdomain.c: give the user an informative message when corlib can't
21490         be loaded.
21491
21492 2002-02-26  Martin Baulig  <martin@gnome.org>
21493
21494         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21495         New icall to get the time zone data.
21496
21497 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21498
21499         * reflection.c: set virtual and raw size of section correctly.
21500         * threads.c: transfer domain information to newly created threads.
21501
21502 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21503
21504         * class.c: when instancing a class in a domain, load the default
21505         vaules for static fields from the constant table. Fix System.Enum to
21506         not be an enum.
21507         * icall.c: implement Object::GetType() internalcall. Implemented
21508         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21509         Fixed checking of binding flags in find_members().
21510         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21511         * reflection.c: handle enumerations when writing to the constant
21512         table. Use a different object cache for types.
21513
21514
21515 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21516
21517         * object.c (mono_object_isinst): fix for arrays
21518
21519         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21520
21521 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21522
21523         * object.c: don't use mprotect ()  and fix intern pool hash table
21524         lookup for big endian systems.
21525
21526 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21527
21528         * icall.c: change type_is_subtype_of () signature.
21529
21530 2002-02-21  Mark Crichton  <crichton@gimp.org>
21531
21532         * rand.c, rand.h: Added random number generator for
21533         System.Security.Cryptography classes.
21534
21535         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21536
21537         * icall.c: Added System.Security.Cryptography calls.
21538
21539 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21540
21541         * class.c, icall.c, metadata.c: better support for pointer types.
21542         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21543         * reflection.c: Add support for getting custom attrs for properties
21544         and simplify some code.
21545
21546 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21547
21548         * icall.c: change getToken () and add custom attribute GetBlob()helper
21549         method.
21550         * reflection.h: add custom attrs array to the reflection builder structures.
21551         * reflection.c: encode and emit custom attributes for all the relevant
21552         reflection objects. Cache fieldref and methodref tokens. Change
21553         mono_image_create_token() interface to take a MonoDynamicAssembly.
21554         More complete custom attributes decoder. Load custom attributes for
21555         Assembly, Field, Method and Constructor objects, too. Make the
21556         returned array an Attribute[] one, not object[]. Added
21557         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21558         custom attribute constructor.
21559
21560 2002-02-20  Dick Porter  <dick@ximian.com>
21561
21562         * icall.c:
21563         * rawbuffer.c:
21564         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21565         problem code out for now).
21566
21567 2002-02-19  Radek Doulik  <rodo@ximian.com>
21568
21569         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21570
21571 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21572
21573         * icall.c: register the GetCustomAttributes method.
21574         * object.c, object.h: add mono_string_new_len ().
21575         * reflection.h, reflection.c: added mono_runtime_invoke(),
21576         mono_install_runtime_invoke(). Added
21577         mono_reflection_get_custom_attrs () to load custom attributes and
21578         create the attribute objects.
21579
21580 2002-02-19  Dick Porter  <dick@ximian.com>
21581         * threads-dummy-types.c:
21582         * threads-dummy-types.h:
21583         * threads-dummy.c:
21584         * threads-dummy.h:
21585         * threads-pthread-types.c:
21586         * threads-pthread-types.h:
21587         * threads-pthread.c:
21588         * threads-pthread.h:  Deleted obsolete files
21589
21590 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21591
21592         * class.c (mono_class_vtable): runtime init the class when we
21593         allocate static class data.
21594
21595         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21596
21597         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21598         and String - but we will need generic marshalling support in the
21599         future. 
21600         (mono_init): set the domain name in a ms compatible way
21601
21602         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21603         String[].
21604
21605 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21606
21607         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21608         for sizes
21609
21610         * appdomain.c (mono_domain_unload): impl.
21611
21612 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21613
21614         * appdomain.c, object.c: fix intern pool implementation.
21615         * class.c: fix alignment code.
21616
21617 2002-02-16  Radek Doulik  <rodo@ximian.com>
21618
21619         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21620         and s2 > s1, just copy lower bytes to be compatible with little
21621         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21622         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21623
21624         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21625         force big_endian to be 1 for big endian machines 
21626         (ves_icall_iconv_new_decoder): ditto
21627
21628 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21629
21630         * socket-io.c (convert_sockopt_level_and_name): If the system
21631         doesn't define SOL_IP or SOL_TCP, get them by hand using
21632         getprotobyname() and caching the values (because this could be a
21633         slow operation).
21634         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21635         Use the appropriate struct when the system does support it. Ie,
21636         not all systems have struct ip_mreqn so use struct ip_mreq when
21637         appropriate.
21638
21639 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21640
21641         * reflection.c: handle finally clauses.
21642
21643 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21644
21645         * socket-io.c: use g_snprintf() instead of snprintf.
21646
21647 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21648
21649         * reflection.c (mono_param_get_objects): Cast second argument to
21650         mono_method_get_param_names to a const char** to silence the
21651         compiler warning.
21652
21653         * appdomain.c (mono_domain_assembly_open): Put parens around the
21654         truth statement in the for-loop.
21655
21656         * unicode.c (iconv_convert): Got rid of a compiler warning about
21657         int i being unused when the system has a new iconv.
21658         (iconv_get_length): Same.
21659
21660         * image.c (load_class_names): Cast the second argument to
21661         g_hash_table_insert() to char* to hush compiler warnings about the
21662         arg being a const.
21663         (mono_image_open): Same here.
21664
21665         * socket-io.c: Don't conditionally include sys/filio.h or
21666         sys/sockio.h here anymore since we now get them from
21667         io-layer/io-layer.h
21668         (inet_pton): If the system doesn't support inet_aton, implement
21669         using inet_addr and also #define INADDR_NONE if it isn't defined
21670         by the system.
21671
21672 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21673
21674         * metadata.c, metadata.h: added function to get packing and size info
21675         of a typedef.
21676         * reflection.h, reflection.c: handle field RVA data. Save info about
21677         the table layout if needed. Assign typedef indexes to all the types
21678         before dumping the info about them to avoid forward reference problems.
21679
21680 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21681
21682         * socket-io.c (convert_sockopt_level_and_name): ifdef
21683         SO_ACCEPTCONN because it is not defined on my system (old debian)
21684
21685 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21686
21687         * opcode.c: use stddef.h to get NULL.
21688
21689 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21690
21691         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21692         for FIONBIO, FIONREAD and SIOCATMARK.
21693         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21694         define INADDR_NONE and besides, inet_addr() is deprecated and
21695         should not be used. Use inet_pton() instead - it also has the
21696         added bonus that it can easily handle IPv6 addresses as well.
21697         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21698
21699 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21700
21701         * decimal.c: remove _MSC_VER conditional.
21702
21703 2002-02-13  Dick Porter  <dick@ximian.com>
21704
21705         * socket-io.c: 
21706         * icall.c: Internal calls for Blocking, Select, Shutdown,
21707         GetSocketOption and SetSocketOption
21708
21709 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21710
21711         * assembly.cs: better resolver: use it instead of some kludgy
21712         code.
21713
21714 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21715
21716         * reflection.c: the best way to speed-up the compiler is to avoid
21717         infinite loops.
21718
21719 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21720
21721         * class.c (mono_class_vtable): changed the object layout
21722         (obj->vtable->class). 
21723         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21724
21725 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21726
21727         * assembly.c: look for assemblies in the assembly dir, too.
21728
21729 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21730
21731         * class.c: fix thinko in mono_class_from_type().
21732
21733 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21734
21735         * exception.h, exception.c: added TypeLoadException.
21736         * object.h, object.c: added mono_array_clone ().
21737         * icall.c: handle throwOnError in AssemblyGetType().
21738         Added Array.Clone().
21739         * opcode.h, opcode.c: use a single value for the opcode val.
21740         Compile fix for non-gcc compilers.
21741
21742 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21743
21744         * opcodes.c, opcodes.h: export interesting info about opcodes.
21745
21746 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21747
21748         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21749         icalls. 
21750
21751         * class.c (class_compute_field_layout): set element_class for enums
21752         (mono_class_create_from_typedef): set element_class for normal classes
21753
21754         * icall.c (ves_icall_System_Enum_get_value): impl.
21755
21756         * class.c (mono_class_create_from_typedef): do not set valuetype
21757         flag for System.ValueType and System.Enum
21758
21759 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21760
21761         * unicode.c (iconv_convert): fix big endian problem.
21762
21763 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21764
21765         * class.c: add asserts if we are ever going to scribble over memory.
21766         * socket-io.c: not all systems have AF_IRDA defined.
21767
21768 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21769
21770         * class.c (class_compute_field_layout): do not consider static
21771         fields to compute alignment
21772
21773 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21774
21775         * appdomain.c (mono_appdomain_get): impl.
21776         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21777
21778 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21779
21780         * icall.c: ignore "file://" prefix when loading an assembly.
21781
21782 2002-01-23  Dick Porter  <dick@ximian.com>
21783
21784         * socket-io.c:
21785         * icall.c:
21786         * Makefile.am: Added socket support
21787
21788 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21789
21790         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21791         code back.  This should return the assemblies that are loaded by
21792         the runtime on behalf of an application domain. 
21793
21794         The current implementation is still broken, it just returns every
21795         assembly loaded, but until we get real applications domain this
21796         will do.
21797
21798 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21799
21800         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21801         AppDomain object.
21802
21803 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21804
21805         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21806         the mono_class_from_name lookup.
21807         (ves_icall_get_parameter_info): ditto.
21808         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21809         method.
21810         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21811
21812 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21813
21814         * class.c: load also nested classes on class init.
21815         System.ValueType instance methods gets passed boxed
21816         values, unless methods in derived classed that get a pointer to the
21817         data.
21818         * icall.c: use better name parsing code in GetType().
21819         * image.c, image.h: add mono_image_loaded ().
21820         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21821         * reflection.c, reflection.h: added mono_reflection_parse_type().
21822
21823 2002-01-22  Veronica De Santis <veron78@interfree.it>
21824
21825         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21826         * threads.c : Added the implementation of internal calls for events
21827         * threads.h : Added prototypes of internal calls for events
21828         
21829 2002-01-21  Radek Doulik  <rodo@ximian.com>
21830
21831         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21832
21833 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21834
21835         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21836         (mono_class_value_size): use min_align
21837
21838 2002-01-20  Dick Porter  <dick@ximian.com>
21839
21840         * threads.h:
21841         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21842         so it compiles on w32.
21843
21844 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21845
21846         * metadata.c (mono_type_stack_size): impl.
21847
21848         * class.c (mono_class_get_field): impl. memberref token
21849
21850 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21851
21852         * icall.h : Added the internal calls mapping for CreateMutex_internal
21853                     and ReleaseMutex_internal.
21854         * threads.h : Added the prototype of mutexes internal calls.
21855         * threads.c : Added the implementations of mutexes internal calls.
21856
21857 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21858
21859         * metaparse.h: removed unused file.
21860         * reflection.c, reflection.h: added stream_data_align () function 
21861         to align data in streams and keep stream aligned. Add support for
21862         exception support in method headers.
21863
21864 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21865
21866         * unicode.c: make iconv_convert () return the number of bytess written
21867         in the output buffer.
21868
21869 2002-01-15  Dick Porter  <dick@ximian.com>
21870         * threads.c: Make the runtime's idea of infinite timeouts coincide
21871         with the class library's
21872
21873         Fix a particularly egregious bug in mono_thread_cleanup(). That
21874         code was so utterly bogus it must have been written on a Monday.
21875
21876 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21877
21878         * reflection.h: add subtypes field to TypeBuilder.
21879         * reflection.c: encode constants for literal fields.
21880         Handle subtypes. Fix user string token (and add a zero byte)
21881         at the end.
21882         
21883 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21884
21885         * class.c (mono_class_init): bug fix: assign slot numbers for
21886         abstract methods.
21887
21888 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21889
21890         * reflection.c: don't try to output a code RVA for abstract methods.
21891         Small fixes for method header format. Output parameter info to the
21892         ParamDef table. Save method overriding info to MethodImpl table.
21893         Fix property support. Allow typedef.extends to be a type in the
21894         building assembly.
21895         * verify.c: fix off-by-one error.
21896
21897 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21898
21899         * class.c: fix mono_class_from_mono_type () for szarray types.
21900         Remove unused cache check in mono_class_from_type_spec().
21901         * icall.c: *type_from_name () functions handle simple arrays and byref.
21902         * reflection.c: handle byref and szarray types. Handle methods without
21903         body (gets P/Invoke compilation working). Handle types and fields in
21904         get_token ().
21905         * reflection.h: add rank to MonoTypeInfo.
21906
21907 2002-01-10  Dick Porter  <dick@ximian.com>
21908
21909         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21910         internal calls
21911
21912 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21913
21914         * icall.c: initialize class in type_from_handle ().
21915         Loop also in parent classes for get_method ().
21916         * reflection.c: properly encode class and valuetype types.
21917         Start on encoding TypeBuilder types. Handle fieldrefs.
21918         Use correct length when registering a user string.
21919         Handle ConstructorBuilder and MonoMethod in get_token ().
21920         Make mono_type_get_object () aware of cached types.
21921         * object.c: back out change to mono_string_new ().
21922
21923 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21924         * object.c: mono_string_new should return a NULL when the string 
21925         passed in is NULL -- not try to deference it.
21926         
21927 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21928
21929         * icall.c: hack to make IsSubType work for TypeBuilders.
21930         * reflection.c: emit constructors before methods.
21931         Retrieve param names in mono_param_get_objects().
21932
21933 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21934
21935         * Makefile.am: fix list of headers and sources so automake 1.5
21936         doesn't complain. Removed \# at end of list.
21937
21938 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21939
21940         * reflection.c: get token for a method ref. Set return type of
21941         constructor to void.
21942         * loader.c: debug message.
21943         * class.c: typo fix.
21944
21945 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21946
21947         * icall.c: fix array init with rank > 1. FindMembers
21948         loops in parent class as well.
21949         * image.c: do not insert nested types in name cache.
21950         * reflection.c: warning fix.
21951         * reflection.h: add override method (for interface impl).
21952
21953 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21954
21955         * metadata.c: fix customattr decoding.
21956
21957 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21958
21959         * rawbuffer.cs: Added native Win32 implementation, avoids using
21960         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21961
21962 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21963
21964         * class.c: make the low-level routines handle the cache.
21965
21966 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21967
21968         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21969
21970 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21971
21972         * class.c: fix mono_array_element_size() for objects.
21973         * class.h, class.c: add properties to MonoClass and load them
21974         at init time.
21975         * icall.c: check with isinst() when assigning a value to an array
21976         instead of requiring the classes to match exactly.
21977         Implemented icall for System.Type::GetType().
21978         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21979         enums. Handle bindingflags when looking for methods and fields.
21980         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21981         and mono_metadata_methods_from_property().
21982         * reflection.h, reflection.c: added structures for propreties,
21983         parameters and enums. Implemented mono_property_get_object() and
21984         mono_param_get_objects().
21985
21986 2001-12-18  Dick Porter  <dick@ximian.com>
21987
21988         * file-io.c: Use mono_string_to_utf16() instead of
21989         mono_string_chars()
21990
21991         * object.c: Added mono_string_to_utf16(), which copies the non
21992         NULL-terminated MonoString into a new double-null-terminated
21993         buffer.
21994
21995 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21996
21997         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21998
21999 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
22000
22001         * file-io.c: raise exceptions if handle is invalid.
22002
22003 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
22004
22005         * assembly.c: yet another check for mscorlib.
22006         * class.c, class.h: load nesting info for classes.
22007         * icall.c: many new functions to support the Reflection classes.
22008         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
22009         * reflection.h, reflection.c: mono_image_create_token(),
22010         mono_assembly_get_object(), mono_type_get_object(),
22011         mono_method_get_object(), mono_field_get_object(): methods to return
22012         objects that parallel the C representation of assemblies, types,
22013         methods, fields.
22014
22015 2001-12-11  Dick Porter  <dick@ximian.com>
22016
22017         * icall.c:
22018         * file-io.c: Internal calls for file IO.
22019
22020 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
22021
22022         * tabledefs.h: missing FileAttributes.
22023         * verify.h, verify.c: use is_valid_string () to simplify and check for
22024         valid strings more correctly. Fix warnings and speeling.
22025         Check more tables: Filed, File, ModuleRef, StandAloneSig.
22026         Check code: branches, maxstack, method calls.
22027
22028 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
22029
22030         * object.c (mono_object_allocate): removed static, so that the jit
22031         can allocate value types.
22032
22033         * icall.c (ves_icall_System_DateTime_GetNow): impl.
22034
22035 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22036
22037         * class.c: init enum types right away and register the
22038         token->MonoClass map in mono_class_create_from_typedef ().
22039         * verify.h, verify.c: first cut of the verifier.
22040         * pedump.c: add --verify switch to verify metadata tables.
22041         * tabledefs.h: add some missing enums.
22042
22043 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
22044
22045         * class.c (mono_install_runtime_class_init): impl.
22046         (mono_class_init): renamed mono_class_metadata_init to
22047         mono_class_init, also removed the metadata_inited flag
22048
22049         * object.c (mono_object_isinst): use faster algorithm
22050
22051 2001-11-30  Radek Doulik  <rodo@ximian.com>
22052
22053         * mono-endian.h: reverted last change
22054         added function prototypes
22055
22056         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
22057         add mono-endian.c back
22058
22059         * mono-endian.c: returned back, as Paolo pointed out, it's needed
22060         for unaligned access, I've mistaked it with endianess. I am
22061         sorry.
22062         (mono_read16): fix reverted endianess
22063         (mono_read64): ditto
22064         (mono_read32): ditto
22065
22066 2001-11-30  Dick Porter  <dick@ximian.com>
22067
22068         * exception.c: Implement mono_exception_from_name()
22069
22070 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22071
22072         * metadata.h, metadata.c: remove params_size and locals_size and their
22073         calculation from the metadata code: they are only usefult to the
22074         interp.
22075
22076 2001-11-29  Radek Doulik  <rodo@ximian.com>
22077
22078         * object.c (mono_ldstr): swap bytes here, it's probably not the
22079         best place, but works for me now, I'll redo it once I know mono
22080         better, also note that I add PROT_WRITE and don't reset back, also
22081         note that it's only affects big endians, so x86 should be OK
22082
22083         * mono-endian.h (read16): use just glib macros for both endians
22084
22085         * mono-endian.c: removed as glib macros are used in in
22086         mono-endian.h so we don't need to care about endianess for read
22087         macros as glib does that for us already
22088
22089 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
22090
22091         * class.h, class.h: take minimum alignment into consideration so
22092         that the fields of a class remain aligned also when in an array.
22093
22094 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22095
22096         * loader.h, loader.c: add mono_method_get_param_names().
22097         * class.c: 0-init class fields.
22098
22099 2001-11-26  Dick Porter  <dick@ximian.com>
22100
22101         * icall.c:
22102         * threads-types.h:
22103         * threads.c: New file that handles System.Threading on all platforms
22104
22105         * object.c: 
22106         * object.h: Remove the synchronisation struct from MonoObject,
22107         replace it with a pointer that gets initialised on demand
22108
22109         * Makefile.am: Replace all the system-specific threading code with
22110         a single file that uses the new wrapper library
22111
22112 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
22113
22114         * class.c, class.h: add mono_install_trampoline() so that the runtime
22115         can register a function to create a trampoline: removes the ugly
22116         requirement that a runtime needed to export arch_create_jit_trampoline.
22117         * object.h, object.c: added mono_install_handler() so that the runtime
22118         can install an handler for exceptions generated in C code (with
22119         mono_raise_exception()). Added C struct for System.Delegate.
22120         * pedump.c: removed arch_create_jit_trampoline.
22121         * reflection.c: some cleanups to allow registering user strings and
22122         later getting a token for methodrefs and fieldrefs before the assembly
22123         is built.
22124         * row-indexes.h: updates and fixes from the new ECMA specs.
22125
22126 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
22127
22128         * class.h, class.c: add enum_basetype field to MonoClass.
22129         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
22130         to get index in the constant table reated to a field, param or
22131         property.
22132         * reflection.h, reflection.c: handle constructors. Set public-key and
22133         version number of the built assembly to 0.
22134         * row-indexes.h: update from new ECMA spec.
22135
22136 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22137
22138         * class.h, class.c: add a max_interface_id to MonoClass.
22139         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
22140         since it's used to do that. Added mono_type_type_from_obj().
22141         Make GetType() return NULL instead of segfaulting if the type was not
22142         found. Handle simple arrays in assQualifiedName.
22143         * object.h: add a struct to represent an Exception.
22144         * reflection.c: output call convention in method signature.
22145         Add code to support P/Invoke methods and fixed offsets for fields.
22146
22147 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
22148
22149         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
22150         the value.
22151         * icall.c: use mono_array_addr instead of array->vector: fixes the
22152         reflection image writing.
22153         * reflection.c: init call convention byte to 0 in method signature.
22154         Encode the property signature. Don't output property-related methods
22155         twice. Really process the properties for a type (don't cast a field to
22156         a property, my mom always told me that).
22157         Fix 64 bit issues in pointer alignment in a different and more
22158         readable way.
22159
22160 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
22161
22162         * loader.h: Removed type class from MonoDefaults, added monotype
22163
22164         * loader.c: Loaded MonoType, removed loading of Type
22165
22166         * icall.c (my_mono_new_object): Now returns a System.MonoType,
22167         and fills in System.Type._impl with a RuntimeTypeHandle rather
22168         than the actual MonoClass *
22169
22170         (ves_icall_type_from_handle): change from type_class to
22171         monotype_class
22172
22173         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
22174         implemented
22175
22176         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
22177         implemented
22178
22179         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
22180
22181         (ves_icall_System_Reflection_Assembly_GetType): implemented
22182
22183         (ves_icall_System_MonoType_assQualifiedName): implemented
22184
22185         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
22186
22187 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
22188
22189         * assembly.c (mono_assembly_open): Implement a cache for the
22190         assemblies. 
22191
22192         (mono_assembly_close): only destroy the assembly when the last
22193         reference is gone.
22194         
22195 2001-11-09  Dick Porter  <dick@ximian.com>
22196
22197         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
22198
22199 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
22200
22201         * class.c (mono_class_metadata_init): bug fix: compute the right slot
22202
22203 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22204
22205         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
22206         from Martin Weindel.
22207         * object.h: add mono_string_chars ().
22208
22209 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
22210
22211         * reflection.c (build_compressed_metadata): Eliminates warnings
22212         and uses 64-bit clean code.
22213
22214         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
22215         (mono_type_equal): Change signature to eliminate warnings.
22216
22217 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22218
22219         * icall.c, loader.c: remove the internalcall array constructors.
22220         Changes to match the new MonoArray structure.
22221         * object.h, object.c: an array object doesn't allocate an extra
22222         vector. Add mono_array_new_full () to create jagged arrays easily.
22223
22224 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22225
22226         * metadata.h, metadata.c: add mono_metadata_field_info () to
22227         retreive all the info about a field from vairous tables.
22228         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
22229         * class.h, class.c: augment MonoClassField with more info.
22230         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
22231         policy and load a field's RVA if needed.
22232
22233 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
22234
22235         * class.c (mono_class_metadata_init): create a trampoline for all
22236         virtual functions instead of actually compiling them.
22237
22238 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
22239
22240         * class.h, class.c: include name in MonoClassField.
22241         * class.c: fix fundamental type of System.Object and System.String.
22242         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
22243         tokens in ldtoken.
22244         * icall.c: remove internalcalls for the Reflection stuff that is now
22245         done in C# code.
22246         * loader.c: mono_field_from_memberref () implementation.
22247         * mono-endian.c: thinko (s/struct/union/g).
22248         * object.c, object.h: make the mono_string_* prototypes actually use
22249         MonoString instead of MonoObject.
22250         * reflection.c, reflection.h: updates for changes in the reflection
22251         code in corlib: we use C structures that map to the actual C# classes.
22252         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
22253         fat method header if needed and use the info from the ILGenerator for
22254         methods. Handle fields in types. Misc fixes.
22255
22256 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
22257
22258         * class.c (mono_class_metadata_init): bug fix: always allocate
22259         space for static class data
22260
22261 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
22262
22263         * class.c (mono_compute_relative_numbering): use relative
22264         numbering to support fast runtime type checks.
22265
22266 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
22267
22268         * class.c (mono_class_create_from_typeref): added debugging output
22269         to print class name when MonoDummy is returned instead of real class
22270
22271 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
22272
22273         * class.c (mono_class_metadata_init): interface offset table now
22274         contains pointers into the vtable - this is more efficient for the jit
22275
22276 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
22277
22278         * class.c (mono_class_metadata_init): use a temporary vtable (the
22279         old algorithm only worked for the interpreter, but not for the jit)
22280
22281 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
22282
22283         * loader.c (method_from_memberref): use mono_class_get to get the
22284         class of an array instead of using System.Array directly.
22285         (mono_get_method): also add MEMBERREF methods to the method cache
22286         which usefull for arrays.
22287
22288 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
22289
22290         * pedump.c (arch_compile_method): added to compute vtable entry
22291
22292         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
22293         number of interfaces.
22294         
22295         * class.h: merged MonoArrayClass into MonoClass
22296
22297         * class.c (mono_class_create_from_typedef): compute the vtable size and
22298         allocate space to include the vtable inside MonoClass
22299         (mono_class_metadata_init): initialize the vtable
22300
22301 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
22302
22303         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
22304         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
22305         * image.c: endian fixes by Laurent Rioux.
22306         * object.h, object.c: rename MonoStringObject to MonoString and
22307         MonoArrayObject to MonoArray. Change some function names to conform to
22308         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
22309         guint16* as first argument, so don't use char*.
22310         Provide macros to do the interesting things on arrays in a portable way.
22311         * threads-pthread.c: updates for the API changes and #include <sched.h>
22312         (required for sched_yield()).
22313         * icall.c: updates for the API changes above.
22314         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
22315         platforms that need them.
22316
22317 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22318
22319         * class.c: set the correct type for all the fundamental
22320         type when loading the class.
22321
22322 2001-10-05  Dick Porter  <dick@ximian.com>
22323
22324         * threads-pthread.c (pthread_mutex_timedlock): Simple
22325         compatibility version for C libraries that lack this call.
22326
22327 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22328
22329         * class.c: MonoTypes stored in MonoClass are stored as
22330         fundamental MonoTypes when the class represents a
22331         fundamental type (System.Int32, ...).
22332         The TypeHandle return by ldtoken is a MonoType*.
22333         * icall.c: ves_icall_get_data_chunk () write out all the
22334         PE/COFF stuff. Implement ves_icall_define_method (),
22335         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22336         * image.c: properly skip unknown streams.
22337         * loader.h, loader.c: add type_class to mono_defaults.
22338         * metadata.c, metadata.h: export compute_size () as
22339         mono_metadata_compute_size () with a better interface.
22340         Typo and C&P fixes.
22341         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22342         * reflection.c, reflection.h: many cleanups, fixes, output method
22343         signatures and headers, typedef and typeref info, compress the metadata
22344         tables, output all the heap streams, cli header etc.
22345         * row-indexes.h: typo fixes.
22346
22347 2001-10-04  Dick Porter  <dick@ximian.com>
22348
22349         * object.h: Add a synchronisation mutex struct to MonoObject
22350
22351         * object.c (mono_new_object): Initialise the object
22352         synchronisation mutexes
22353
22354         * icall.c: System.Threading.Monitor internal calls
22355         
22356         * threads-pthread.h:
22357         * threads-pthread.c: System.Threading.Monitor internal calls
22358
22359         * threads-types.h: New file, includes the system-specific thread
22360         structures
22361         
22362         * threads-pthread-types.h:
22363         * threads-pthread-types.c: New files, handle pthread-specific
22364         synchronisation types
22365
22366         * threads-dummy-types.h: 
22367         * threads-dummy-types.c: New files of dummy support for
22368         thread-specific types
22369
22370         * metadata.c:
22371         * image.c:
22372         * pedump.c: include mono-endian.h not endian.h
22373         
22374         * Makefile.am: More threads files.
22375         Name mono-endian.h not endian.h
22376
22377 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22378
22379         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22380         stuff and implement a few more bits.
22381         * icall.c: a field needs to be dereferenced twice. Do not use the same
22382         name for two variables in the same scope.
22383         * image.c, image.h: cleanups.
22384
22385 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22386
22387         * class.c (mono_class_metadata_init): bug fix: compute the right size
22388
22389 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22390
22391         * icall.c: implemented some of the Reflection internalcalls.
22392         * image.c, image.h: start writing out the PE/COFF image.
22393         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22394         that does the reverse than decode_blob_size ().
22395         * object.c: use mono_metadata_encode_value (). Move here
22396         temporary implementation of mono_string_to_utf8 ().
22397         * rawbuffer.c: make malloc_map static.
22398
22399 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22400
22401         * metadata.c: fix type comparison for arrays.
22402         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22403         Added a couple of new classes to monodefaults.
22404         * icall.c: added a couple of Reflection-related internalcalls.
22405         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22406         Added a byval_arg MonoType to MonoClass.
22407
22408 2001-09-28  Dick Porter  <dick@ximian.com>
22409
22410         * icall.c:
22411         * threads-pthread.h: 
22412         * threads-pthread.c: Implemented internal calls for
22413         LocalDataStoreSlot operations.  Applied mutexes around all shared
22414         data.  Reworked the thread creation and Start() operations to
22415         avoid a race condition.
22416         
22417         * threads-dummy.h:
22418         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22419
22420 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22421
22422         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22423
22424 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22425
22426         * class.c, loader.c: warn and return NULL instead of erroring out.
22427         * icall.c: added System.AppDomain::getCurDomain().
22428         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22429
22430 2001-09-25  Dick Porter  <dick@ximian.com>
22431
22432         * threads-pthread.h:
22433         * threads-pthread.c: Implemented timed thread joining and added
22434         System.Threading.Thread::Join_internal internal call
22435
22436         * icall.c: Added System.Threading.Thread::Join_internal internal call
22437
22438         * threads-dummy.h:
22439         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22440
22441 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22442
22443         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22444         mono_string_intern () to implement the semantics of the ldstr opcode
22445         and the interning of System.Strings.
22446         * icall.c: provide hooks to make String::IsIntern and String::Intern
22447         internalcalls.
22448
22449 2001-09-23  Dick Porter  <dick@ximian.com>
22450
22451         * threads-dummy.c: 
22452         * threads-dummy.h: New files of dummy threading routines
22453
22454         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22455         support code based on system specifics
22456
22457         Rename PTHREAD_LIBS to THREAD_LIBS
22458         
22459 2001-09-23  Dick Porter  <dick@ximian.com>
22460
22461         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22462         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22463         internal calls.
22464         (mono_thread_init): Set up a Thread object instance to return when
22465         the main thread calls Thread.CurrentThread
22466         (mono_thread_cleanup): Wait for all subthreads to exit
22467
22468         * icall.c: New internal calls for System.Threading.Thread::Sleep
22469         (including Schedule) and CurrentThread
22470
22471         * threads.h: New file, to insulate thread-specific stuff from the
22472         rest of the code
22473
22474 2001-09-21  Dick Porter  <dick@ximian.com>
22475
22476         * threads-pthread.h: 
22477         * threads-pthread.c: New file, for handling pthreads-style
22478         threading support.  Start() now starts a new thread and executes
22479         the ThreadStart delegate instance.
22480
22481         * icall.c: Added the internalcall for
22482         System.Threading.Thread::Start_internal
22483
22484         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22485
22486 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22487
22488         * loader.c: work around the different signatures for delegates
22489         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22490
22491 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22492
22493         * class.h, class.c: add mono_class_get_field_from_name ().
22494         * *: Fix C comments and other ANSI C issues.
22495
22496 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22497
22498         * endian.h, assembly.c: fix some endianness issues.
22499
22500 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22501
22502         * loader.h, load.c: add delegate_class to mono_defaults.
22503         Handle runtime provided methods in mono_get_method ().
22504
22505 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22506
22507         * loader.c (mono_get_method): use pinvoke for internal call
22508
22509         * icall.c: use pinvoke for internal call
22510
22511         * loader.c (method_from_memberref): set the method name
22512
22513 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22514
22515         * metadata.c: help the compiler generate better code for
22516         mono_class_from_mono_type ().
22517
22518 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22519
22520         * class.c (mono_class_metadata_init): delayed computing of the
22521         class size to mono_class_metadata_init ()
22522
22523 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22524
22525         * class.c, class.h: add an interfaces member to MonoClass.
22526         * image.c, image.h: add assembly_name field to MonoImage
22527         from the assembly table.
22528         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22529
22530 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22531
22532         * class.c: Handle Array in mono_class_from_mono_type ().
22533         * metadata.c, pedump.c: some endian fixes.
22534
22535 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22536
22537         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22538         * metadata.c: fix small problem introduced with the latest commit.
22539
22540 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22541
22542         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22543         We don't need a MonoMetadata pointer anymore to compare signatures in
22544         mono_metadata_signature_equal (), update callers.
22545         Reduced memory usage an number of allocations for MonoMethodHeader and
22546         MonoMethodSignature.
22547
22548 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22549
22550         * metadata.c: added compare for szarray.
22551
22552 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22553
22554         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22555         and add a couple more types to it and mono_defaults. Give an hint on
22556         classes that need implementing in our corlib and are referenced
22557         in mscorlib.
22558
22559 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22560
22561         * class.h, class.c: keep track if a class is also an Enum.
22562         * loader.c: Implement a couple more types for use in libffi
22563         marshalling. Gives better diagnostics when failing to dlopen
22564         a library. Set method->klass for P/Invoke methods, too.
22565
22566 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22567
22568         * class.c, class.h: add a MonoType this_arg to MonoClass that
22569         represents a pointer to an object of the class' type that
22570         can be used by the interpreter and later the type cache.
22571         Add best guess alignment info for valuetype objects.
22572
22573 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22574
22575         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22576         into MonoType: one less level of indirection and allocation and
22577         simplifies quite a bit of code. Added cache for MonoTypes that are
22578         used frequently, so that we don't need to allocate them all the time.
22579
22580 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22581
22582         * class.c (mono_class_create_from_typedef): System.Enum is also a
22583         value type, although it does not derive from System.ValueType
22584         (maybe a bug in the ms compiler?)
22585
22586         * metadata.c (mono_type_size): return the right size for value types
22587
22588         * loader.c (mono_get_method): only initialize method header if not abstract
22589
22590         * class.c (mono_class_from_mono_type): use mono_default values. 
22591
22592 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22593
22594         * *: use MonoClass pointers instead of <type_tokens>
22595         
22596         * class.h: new flag: metadata_inited.
22597
22598         * class.c (mono_class_metadata_init): impl.
22599         (mono_class_instance_size): impl.
22600         (mono_class_data_size): impl.
22601
22602 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22603
22604         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22605         MonoClass now has the name and name_space fields. 
22606         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22607         mono_get_method () takes and optional MonoClass as argument.
22608         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22609         instead that takes advantage of a map from class names to typedef
22610         tokens in MonoImage.
22611
22612 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22613
22614         * metadata.c: zero is not a valid alignment boundary.
22615         Merge MONO_TYPE_VOID in default decoding code.
22616
22617 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22618
22619         * image.h: merged MonoMetadata into MonoImage
22620
22621         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22622         identify the type of elements.
22623
22624 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22625
22626         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22627         * cil-coff.h: split MonoMSDOSHeader and add size info.
22628         * image.c: add some consistency checks.
22629         * metadata.c: fix row size computation: one programmer
22630         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22631         add explanation for the locator routine.
22632         Fix decoding of size in method header.
22633         
22634 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22635
22636         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22637         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22638         function from gnome-libs.  This uses the right path separator
22639         based on the OS, and also works around a bug in some systems where
22640         a double slash is not allowed. 
22641         (default_assembly_name_resolver): Use g_concat_dir_and_file
22642         (mono_assembly_open): ditto.
22643
22644 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22645
22646         * metadata.c (mono_metadata_signature_equal): impl.
22647
22648         * *: void is now a realy MonoType (instead of using NULL)
22649         
22650         * metadata.c (do_mono_metadata_parse_type): use
22651         mono_metadata_parse_type to parse void value.
22652
22653 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22654
22655         * metadata.c, metadata.h: in the signature and method header store
22656         only the space required for holding the loca vars and incoming arguments.
22657
22658 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22659
22660         * metadata.c (do_mono_metadata_parse_type): treat void like any
22661         other type (instead of assigning NULL);
22662
22663 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22664
22665         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22666
22667 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22668
22669         * image.c (do_mono_image_open): added a cache for arrays.
22670
22671 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22672
22673         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22674         decode a single column from a row in a metadata table and changes
22675         to take advantage of it in the typedef locator (gives a nice speed up).
22676         Store offset info for function params.
22677
22678 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22679
22680         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22681
22682 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22683
22684         * assembly.c: how could mono_assembly_close () had ever worked?
22685         * metadata.c, metadata.h: provide offset info for local vars.
22686         Implement mono_type_size () to take care of alignment as well
22687         as size (it was mono_field_type_size in cli/class.c before).
22688
22689 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22690
22691         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22692
22693         * assembly.h (CORLIB_NAME): set to corlib.dll
22694
22695         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22696
22697 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22698
22699         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22700         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22701         tokentype.h: massive namespace cleanup.
22702
22703 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22704
22705         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22706
22707 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22708
22709         * metadata.c (mono_metadata_free_type): added check for type !=
22710         NULL (void) before calling mono_metadata_free_type()
22711
22712 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22713
22714         * metadata.h, row_indexes.h: added header with enumerations to use
22715         to index in the columns from tables in metadata and to decode coded
22716         tokens: we should start using this instead of embedding magic numbers
22717         all over the code.
22718
22719 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22720
22721         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22722         Move metadata_t info from cli_image_info_t to MonoImage, where
22723         it's easily accessible. Changed all the uses accordingly.
22724         Added the method and class caches to MonoImage.
22725         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22726         and mono_metadata_decode_value () signature to be more consistent
22727         with the other parse functions (and simplify code). Taken advantage
22728         of zero-length array allocation with GCC. Removed reduntant (and
22729         wrong) MonoFieldType struct and use MonoParam instead. Changed
22730         mono_metadata_parse_field_type () to use common code for parsing.
22731         Added mono_metadata_typedef_from_field () and
22732         mono_metadata_typedef_from_method () to lookup a typedef index from a
22733         field or method token.
22734         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22735
22736 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22737
22738         * metadata.c (mono_metadata_parse_field_type): Implement. 
22739         (do_mono_metadata_parse_type): Split engine from
22740         mono_metadata_parse_type, so that we can create smaller structures
22741         for things that just have one pointer to the MonoType (look at
22742         the MonoFieldType)
22743
22744 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22745
22746         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22747         as Jan Gray found out, it is incorrect. 
22748
22749 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22750
22751         * assembly.c: Implement asssembly loading.  This loads an image
22752         and loads all the referenced assemblies.  Come to think of it, we
22753         could always do lazy loading of the assemblies. 
22754
22755         * image.c (mono_image_open): Keep loaded images in a hashtable.
22756
22757         * image.h (MonoImage): Add reference count.
22758
22759 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22760
22761         * assembly.c (mono_assembly_open): Keep track of the file name in
22762         case the assembly has no ASSEMBLY table.
22763
22764         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22765         from get.c here.
22766
22767 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22768
22769         * metadata.c, metadata.h: decode local vars in method header
22770         parse function. Change callers accordingly.
22771
22772 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22773
22774         * metadata.h, cil-coff.h: protect against multiple inclusion.
22775         Added some new structures to hold information decoded from metadata:
22776         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22777         and relevant decoding/free functions.
22778         * metadata.c: implement decoding functions. Add warning for out of bounds
22779         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22780         all the info about a method signature and invocation. Remove check on
22781         uninitialized local var in parse_mh() and fix memory leak.
22782
22783 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22784
22785         * metadata.h: More macros.
22786
22787         * tokentype.h: New file.
22788
22789 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22790
22791         * assembly.c: added a consistency check and initialize
22792         some structures with g_new0().
22793         * metadata.c: fixed a couple more bugs in table size computation
22794         and add other checks for out-of bound access to metadata.
22795
22796 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22797
22798         * metatada.c: fix bugs computing table sizes. Spew a
22799         warning when index in string heap is out of bounds.
22800
22801 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22802
22803         * metadata.h: Add a couple of macros to manipulate tokens. 
22804
22805 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22806
22807         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22808         cli_section_tables).
22809
22810 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22811
22812         * metadata.c (mono_metadata_user_string): New function, provides
22813         access to the UserString heap. 
22814
22815 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22816
22817         * metadata.c: Add inline documentation.
22818
22819 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22820
22821         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22822         files. 
22823
22824 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22825
22826         * typeattr.h: New file, TypeAttribute flags. 
22827
22828 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22829
22830         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22831         mono_assembly_ensure_section): Section loading code.
22832         (load_section_tables): Load the sections.
22833
22834         * mono/metadata/metadata.c (mono_metadata_locate_token,
22835         mono_metadata_locate): Functions to locate the information
22836         definition given a token or a table and an index.
22837         (mono_metadata_compute_table_bases): New.
22838         (compute_size): New function to compute the sizes of the various
22839         tables.
22840
22841         * mono/metadata/metadata.h: Finish listing the different index
22842         types. 
22843
22844         * mono/metadata/pedump.c: Improve to dump new information.
22845
22846 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22847
22848         * mono/metadata/metadata.c: Entered all the tables matching
22849         Beta2. 
22850
22851         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22852
22853
22854