Fix crash on 'make run-test' in mcs/errors
[mono.git] / mono / metadata / ChangeLog
1 2007-09-19  Raja R Harinath  <harinath@gmail.com>
2
3         Fix crash on 'make run-test' in mcs/errors
4         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
5         Avoid more potential allocations in mono_class_from_mono_type.
6         (ginst_in_image): Update to changes.
7         (gclass_in_image): Rearrange slightly.
8
9 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
10
11         * class.c (mono_class_init): Move the code that sets up class->methods to 
12         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13
14         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15         canonical instance of an inflated generic signature.
16         (mono_type_create_from_typespec): Remove an invalid free.
17
18         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
19
20 2007-09-18  Marek Habersack  <mhabersack@novell.com>
21
22         * domain-internals.h: added a declaration of the
23         mono_assembly_load_full_nosearch internal function.
24
25         * assembly.c (mono_assembly_load_with_partial_name): use
26         mono_try_assembly_resolve return value properly.
27         (mono_assembly_load_full_nosearch): copied the function body from
28         mono_assembly_load_full, without the code to invoke assembly
29         search hooks.
30         (mono_assembly_load_full): calls the above new function and if the
31         assembly is not resolved, invokes the search hooks.
32
33         * appdomain.c (mono_runtime_init): restore the global postload
34         assembly search handlers.
35
36 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
37
38         * class.c (mono_class_init): Make sure class->methods and class->properties
39         are never NULL in the generics case.
40
41         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
42
43 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
44
45         * metadata.c (free_generic_class): Disable some code to fix the build.
46
47         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
48
49         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
50         from the image mempool.
51
52         * metadata.c (free_generic_class): Free more data from the inflated class.
53
54         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
55
56         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
57         mempool.
58         (mono_type_create_from_typespec): Ditto.
59
60         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
61         MonoImage to the caller.
62         (mono_init_internal): Save the opened image in a global variable.
63         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
64
65         * reflection.c (resolve_object): Fix a leak.
66
67         * metadata.c: Fix the freeing of data in the generics caches.
68         
69         * metadata.c (free_generic_inst): Comment this out to fix the build.
70         (free_generic_class): Ditto.
71
72         * metadata.c: Free cached generic methods, instantinations and classes when
73         they are removed from the caches.
74         (mono_metadata_free_type): Free the type itself.
75
76         * class.c: Free the result of mono_class_inflate_generic_type () in a few
77         places.
78
79 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
80
81         * boehm-gc.c: restrict managed allocs to __thread supporting
82         architectures.
83
84 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
85
86         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
87         (mono_generic_class_get_class): Fix a leak.
88
89         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
90         mono_metadata_free_type ().
91         (mono_metadata_inflate_generic_inst): Fix a leak.
92
93 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
94
95         * mono-debug.c (free_header_data): Fix a leak missed earlier.
96
97         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
98         mempool.
99
100         * mono-debug.c (mono_debug_close_image): Fix call to 
101         g_hash_table_remove ().
102
103 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
104
105         * icall-def.h: redirect all the string ctor to the managed
106         CreateString () methods.
107         * string-icalls.c, string-icalls.h: removed dead code for string
108         ctors and icalls.
109
110 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
111
112         * mono-debug.c: Fix memory leaks.
113
114 2007-09-14  Jonathan Chambers <joncham@gmail.com>
115
116         * threads-types.h: Implement mono_hazard_pointer_set and 
117         mono_hazard_pointer_clear macros using do/while(0) to fix
118         compilation with MSVC.
119         
120         Code is contributed under MIT/X11 license.
121
122 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
123
124         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
125         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
126
127 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
128
129         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
130         icalls.
131
132 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
133
134         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
135         managed-code allocated as well.
136
137 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
138
139         * class.c (mono_class_is_assignable_from): Add support for generic variance.
140
141 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
142
143         * boehm-gc.c: fixed the build after the AOT changes.
144
145 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
146
147         * wrapper-types.h: Add an ALLOC wrapper type.
148
149         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
150         reference managed allocator methods.
151
152 2007-09-12  Marek Safar  <marek.safar@gmail.com>
153
154         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
155         of Type array and not MonoType, a fix suggested by Hari.
156         
157 2007-09-12  Jonathan Chambers <joncham@gmail.com>
158
159         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
160         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
161         
162         Code is contributed under MIT/X11 license.
163
164 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
165
166         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
167
168 2007-09-12  Marek Habersack  <mhabersack@novell.com>
169
170         * image.c (do_mono_image_open): if assembly file fails to open and
171         MONO_IOMAP is in effect, try to find the path in a
172         case-insensitive way.
173
174         * appdomain.c (mono_runtime_init): do not install postload hooks -
175         tests show that MS.NET doesn't use anything of that sort to
176         trigger the AppDomain.AssemblyResolve event.
177         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
178         made non-static.
179         (mono_runtime_init): init portability helpers here.
180
181         * assembly.c (mono_assembly_load_with_partial_name): if other   
182         attempts fail, trigger the AppDomain.AssemblyResolve event handler
183         to resolve the assembly.
184
185         * domain-internals.h: added mono_try_assembly_resolve and marked
186         it as internal.
187
188 2007-09-11  Jb Evain  <jbevain@novell.com>
189
190         * object-internals.h (MonoReflectionDynamicMethod): add
191         a `MonoReflectionType *owner` field. The owner is used
192         * reflection.c:
193         (mono_reflection_create_dynamic_method): use the owner of the dynamic
194         method as the class declaring the dynamic method.
195         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
196         dynamic method to the declaring type of the methodbuilder.
197
198 2007-09-11  Mark Probst  <mark.probst@gmail.com>
199
200         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
201         rules for calling methods via reflection.
202
203 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
204
205         * reflection.c (resolve_object): Add support for MonoGenericClass. 
206         Inflate MonoType's.
207
208 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
209
210         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
211         provide a managed method that does fast allocations without needing
212         a managed->unmanaged transition. Boehm GC implementation currently
213         enabled for ptrfree objects on sane architectures.
214
215 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
216
217         * marshal.c, marshal.h: exported a couple of useful functions and
218         added mono_mb_get_label () to easily handle backward branches.
219
220 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
221
222         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
223
224 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
225
226         * loader.c (find_method): Fixed the regression introduced while
227         fixing bug #81466.
228
229 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
230
231         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
232         well.
233         
234         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
235         icall.c reflection.c: Pass a MonoGenericContext argument to 
236         mono_lookup_dynamic_token ().
237
238         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
239         #82744.
240         
241 2007-09-09  Robert Jordan  <robertj@gmx.net>
242
243         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
244         for generic methods.
245
246         * object.c (mono_object_get_virtual_method): Handle generic methods.
247         Fixes bug #78882.
248
249         Code is contributed under MIT/X11 license.
250
251 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
252
253         * image.c: fix locking in mono_image_load_file_for_image ().
254
255 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
256
257         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
258         used only as a cache: added an icall to fill it.
259
260 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
261
262         * reflection.h: exposed mono_reflection_free_type_info
263         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
264         since mono_reflection_bind_generic_parameters makes a copy of it.
265         * reflection.c (free_type_info): subinfos should be freed.
266         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
267         made non static.
268         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
269         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
270         this fixes #82695 and #81726.
271    
272
273 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
274
275         * process.h, process.c:  added support for user profile/info in
276           ProcessStartInfo. For now only Windows works.
277
278 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
279
280         * metadata.c: consider the generic arguments when comparing
281         signatures (bug #82614).
282
283 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
284
285         * cil-coff.h, image.c: updated assembly loader to cope with the
286         PE32+ 64 bit file format.
287
288 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
289
290         * assembly.c, class.c, domain.c, loader.c: remove useless
291         inclusion of cil-coff.h.
292
293 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
294
295         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
296         if interface is marked with CoClassAttribute. 
297    
298         Code is contributed under MIT/X11 license.
299
300 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
301
302         * sgen-gc.c: ensure no object from the to space is copied again or finalized
303         if it's seen twice in major collections.
304
305 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
306
307         * sgen-gc.c: big objects are not copied to the gray area, but they
308         need to be considered for scanning, too, if they are brought alive
309         by an object ready for finalizations or a survived one.
310
311 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
312
313         * sgen-gc.c: properly account the number of disappearing links when
314         they are nullified.
315
316 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
317
318         * sgen-gc.c: share the code to scan the registered roots between the
319         different types of collections.
320
321 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
322
323         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
324
325 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
326
327         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
328         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
329
330 2007-08-28  Mark Probst  <mark.probst@gmail.com>
331
332         * security-manager.c (mono_security_manager_get_methods):
333         LinkDemandSecurityException now has 2 arguments instead of 3.
334
335 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
336
337         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
338         platforms which need it.
339
340 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
341
342         * sgen-gc.c: unregister thread data structures with a pthread_key_t
343         dtor.
344
345 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
346
347         * threads.c: free the thread static data on thread exit.
348
349 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
350
351         * class.c: walk the hierarchy to find the generic definition for
352         a class (fixes runtime part of bug #82498).
353
354 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
355
356         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
357         ...
358
359         * image.c (mono_image_close): Here. Hopefully fixes #82510.
360
361 2007-08-24  Mark Probst  <mark.probst@gmail.com>
362
363         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
364
365 2007-08-24  Robert Jordan  <robertj@gmx.net>
366
367         * appdomain.c: don't perform the ':'->';' substitution on Win32.
368
369 2007-08-24  Jb Evain  <jbevain@novell.com>
370
371         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
372         for byref types.
373
374 2007-08-24  Mark Probst  <mark.probst@gmail.com>
375
376         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
377         #82286.
378
379 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
380
381         * assembly.c: Fix a warning.
382         
383 2007-08-23  Marek Habersack  <mhabersack@novell.com>
384
385         * appdomain.c: parse the <runtime> section looking for the probing
386         element with the 'privatePath' attribute, which sets additional
387         directories in which the runtime should look for assemblies.
388
389 2007-08-23  Robert Jordan  <robertj@gmx.net>
390
391         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
392         Fixes #82499.
393
394 2007-08-23  Martin Baulig  <martin@ximian.com>
395
396         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
397         _mono_debug_init_corlib() and remove it from the header file.
398
399 2007-08-23  Martin Baulig  <martin@ximian.com>
400
401         * mono-debug-debugger.c
402         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
403         don't notify the debugger about it.
404
405         * mono-debug-debugger.h
406         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
407
408 2007-08-23  Robert Jordan  <robertj@gmx.net>
409
410         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
411         Code is contributed under MIT/X11 license.
412
413 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
414
415         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
416
417 2007-08-22  Martin Baulig  <martin@ximian.com>
418
419         * mono-debug.c: Store debugging info on a per-domain basis and
420         free it on domain unload.  Add support for unloading symbol files.
421
422         * mono-debug.h
423         (MonoDebugList): New typedef.
424         (MonoSymbolTable):
425         - add `data_tables and `type_table'.
426         - replace 'symbol_files' and `num_symbol_files' with a
427           `MonoDebugList *'.
428         (mono_debug_data_table): Removed.
429         (mono_debug_list_add): New public function.
430         (mono_debug_list_remove): New public function.
431         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
432         (mono_debug_init_2_memory): Renamed into
433         mono_debug_open_image_from_memory().
434         (mono_debug_close_image): New public function.
435         (mono_debug_domain_create): Likewise.
436         (mono_debug_domain_unload): Likewise.
437         (MONO_DEBUGGER_VERSION): Bump to 60.
438
439         * mono-debug-debugger.h
440         (MonoDebuggerEvent):
441         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
442         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
443         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
444         - rename `THREAD_CREATED' and `THREAD_EXITED' into
445           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
446         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
447           meaning.
448         (mono_debugger_add_symbol_file): Removed.
449         (mono_debugger_add_type): Removed.
450         (mono_debugger_lookup_type): Removed.
451         (mono_debugger_lookup_assembly): Removed.
452
453         * domain.c
454         (mono_domain_create): Call mono_debug_domain_create().
455         (mono_init_internal): Call mono_debug_init_corlib().
456
457         * assembly.c
458         (mono_assembly_close): Call mono_debug_close_image().
459
460 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
461
462         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
463         mmap call.
464
465 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
466
467         * sgen-gc.c: ensure section->pin_queue_end is initialized
468         correctly when non pinning objects in the section have been found.
469
470 2007-08-22  Marek Habersack  <mhabersack@novell.com>
471
472         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
473         containing a list of directories separated by ':'. MSDN docs say
474         the directories should be separated with ';'. Part of a bugfix for
475         bug #81446
476
477 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
478
479         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
480         it should MonoType and not MonoClass.
481
482 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
483
484         * culture-info-table.h : regenerated.
485
486 2007-08-20  William Holmes  <billholmes54@gmail.com>
487
488         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
489          to call ReplaceFile Kernel32 on windows or in io-layer.
490         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
491         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
492          as an internal call.
493
494         Code is contributed under MIT/X11 license.
495
496 2007-08-20  Jb Evain  <jbevain@novell.com>
497
498         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
499         and MONO_EXCEPTION_FIELD_ACCESS.
500
501         * debug-helpers.[c|h]: new mono_field_full_name function.
502
503 2007-08-20  Mark Probst  <mark.probst@gmail.com>
504
505         * class.c: Removed class_security_level() and moved it to
506         security-core-clr.c.
507
508         * security-core-clr.c, security-core-clr.h: class_security_level()
509         is now public and renamed to mono_security_core_clr_class_level().
510         It also looks for security attributes in the classes a class is
511         nested in.
512
513 2007-08-20  Mark Probst  <mark.probst@gmail.com>
514
515         * security-core-clr.c, security-core-clr.h: CoreCLR security
516         utility functions.
517
518         * Makefile.am: Added security-core-clr.[ch].
519
520         * security-manager.c, security-manager.h: Functions and enum for
521         setting and getting the security mode.
522
523         * class.c: CoreCLR security checks.
524
525 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
526
527         * icall-def.h, process.c, process.h: implemented icall to get
528         user/system processor times.
529
530 2007-08-17  Mark Probst  <mark.probst@gmail.com>
531
532         * domain.c, threads.c, class-internals.h, domain-internals.h: New
533         reader-lock-free jit_info_table.
534
535 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
536
537         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
538
539         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
540
541         * object-internals.h (MonoException): Add missing _data member.
542
543 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
544
545         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
546         checking that only methods with matching qname or fqname are picked
547         from implemented interfaces.
548
549 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
550
551         * verify.c (do_newarr):added, do type verification of
552         newarr ops, push the right value on the eval stack.
553         * verify.c (mono_method_verify): use do_newarr
554
555
556 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
557
558         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
559         factored the common code into get_boxable_mono_type, which
560         is now using mono_type_get_full, this fixed byref related tests.
561
562 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
563
564         * class.c: added mono_type_get_full, this function has the same
565         behavior of mono_class_get_full but the returned MonoType has
566         all metadata of the associated token in case of a typespec token.
567         * class.c: added mono_type_retrieve_from_typespec, used by 
568         mono_type_get_full to retrieve the token type.
569         * class.c (mono_class_create_from_typespec): changed to use
570         mono_type_retrieve_from_typespec.
571         * class.c (mono_ldtoken): changed to use mono_type_get_full
572         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
573         * class-internals.h: exported mono_type_get_full for internal use.
574
575 2007-08-16  Jb Evain  <jbevain@novell.com>
576
577         * domain.c (supported_runtimes): add entry for
578         the 'moonlight' runtime version.
579
580 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
581
582         * verify.c (mono_method_verify): small typo sliped in.  
583
584 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
585
586         * verify.c (do_unbox_value): added, do type verification of
587         unboxing ops
588         * verify.c (mono_method_verify): use do_unbox_value
589
590
591 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
592
593         * verify.c (dump_stack_value): fixed typo, was printing string
594         instead of object on stack.
595         * verify.c (do_box_value): moved the byref check up as it leads
596         to invalid code and should be done earlier.
597         * verify.c: improved error messages for and ldobj
598
599 2007-08-15  William Holmes  <billholmes54@gmail.com>
600
601         * marshal.c (emit_marshal_custom): Omit the call to 
602           marshal_native_to_managed when calling native to managed 
603           and the argument is specified as an out argument.
604
605         Code is contributed under MIT/X11 license.
606
607 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
608
609         * verify.c: fixed the type checks for generics, function pointers and vectors.
610         Added type verification for ldobj and ldtoken. The verifier
611         would segfault if header or signature of a method contained references
612         to non-existant types.
613
614 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
615
616         * marshal.c (cominterop_get_ccw): Patch from
617         Bill Holmes to no walk up interface hierarchy. 
618         All parent methods should be present in the interface for COM.
619    
620         Code is contributed under MIT/X11 license.
621
622 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
623
624         * marshal.c (emit_marshal_com_interface): Patch from
625         Bill Holmes to handle COM Interfaces as return values
626         for native->managed calls.
627    
628         Code is contributed under MIT/X11 license.
629
630 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
631
632         * marshal.c (cominterop_get_idispatch_for_object): Implement
633         for runtime callable wrappers.
634    
635         Code is contributed under MIT/X11 license.
636
637 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
638
639         * pedump.c (main): changed from mono_init to mono_init_from_assembly
640         so 2.0 types are accessible
641
642
643 2007-08-13  Miguel de Icaza  <miguel@novell.com>
644
645         * domain.c (mono_init_internal): Call mono_assembly_load_friends
646         once we load mscorlib.   Due to the order in which we initialize,
647         the mono_assembly_load_full routine that loads mscorlib did not
648         load friends.   We now load it once we load the
649         mono_defaults.internals_visible_class class. 
650
651         * assembly.c: Expose the mono_load_friend_assemblies method.
652
653 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
654
655         * verify.c: improved the handling of boxing, better
656         type checking for unary ops and conversion. Fix bug
657         regarding managed pointer compatibility checking
658
659 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
660
661         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
662
663         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
664
665 2007-08-09  Raja R Harinath  <rharinath@novell.com>
666
667         * reflection.c (dup_type): Remove.
668         * class.c (dup_type): Remove.
669         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
670         instead of the dodgy 'dup_type'.
671         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
672         handle the case where 'dup_type' needed the second argument.
673
674 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
675
676         * domain.c: Fix a warning.
677
678 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
679
680         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
681         checking that methods with the same fqname are not overridden
682         with a method from an ancestor.
683
684 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
685
686         * threads.c (free_thread_static_data_helper): Avoid a crash if
687         thread->static_data is not yet set.
688
689 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
690
691         * marshal.c: Use correct image when emitting
692         native wrapper for COM calls.
693    
694         Code is contributed under MIT/X11 license.
695
696 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
697
698         * icall-def.h, security.c, security.h :
699           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
700
701 2007-08-07  Martin Baulig  <martin@ximian.com>
702
703         * mono-debug-debugger.h
704         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
705
706         * domain.c (mono_domain_free): Call
707         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
708
709 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
710
711         * verify.c (check_underflow, check_overflow): error message now returns IL offset
712         * verify.c (in_same_block): code should test if either offset is inside the clauses
713         * verify.c (mono_method_verify): push the exception into the eval stack of exception
714         and filter blocks
715
716 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
717
718         * image.c (mono_image_close): Fix a leak.
719
720         * object.c (mono_runtime_invoke_array): Avoid using alloca.
721
722         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
723
724 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
725
726         * domain.c, threads.c, threads-types.h: fix memory retention issue
727         with thread static variables not being cleared on domain unload.
728         Reuse thread static slots after domain unload.
729
730 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
731
732         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
733         nullable type.
734
735         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
736         now done in mono_runtime_invoke_array.
737
738         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
739         receiver is a nullable type.
740
741         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
742         generic parameter.
743
744 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
745
746         * marshal.c: Implement COM Objects as return type for 
747         managed->unmanaged calls. Added Release calls for COM Object
748         out/return values in managed->unmanaged calls.
749
750         Code is contributed under MIT/X11 license.
751
752 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
753
754         * threads.h, threads-type.h: move the hazard pointer declarations
755         to the private header.
756
757 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
758
759         * file-io.c, appdomain.c: memory leak fixes.
760
761 2007-08-02  Dick Porter  <dick@ximian.com>
762
763         * socket-io.c
764         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
765         SO_REUSEADDR setting into io-layer/sockets.c.
766
767 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
768
769         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
770         from Object when called on a generic parameter. Fixes #82211.
771
772 2007-08-01  Dick Porter  <dick@ximian.com>
773
774         * file-io.c (convert_share): Test FileShare values bit-by-bit.
775         Fixes bug 79250 yet again.
776
777 2007-07-30  Martin Baulig  <martin@ximian.com>
778
779         Merged the `debugger-dublin' branch.
780
781         * mono-debug.h
782         (MonoDebugDataTable): New typedef.
783         (MonoDebugMethodAddressList): New typedef.
784         (MonoDebugWrapperData): Removed.
785         (MonoDebugSymbolTable): Removed `current_data_table',
786         `current_data_table_size', `current_data_table_offset'.
787         (MonoDebugDataItemType): Moved into mono-debug.c.
788         (MonoDebugMethodJitInfo): Remove `address'.
789         (mono_debug_data_table): New global variable.
790         (mono_debug_lookup_method_addresses): New public function.
791         (mono_debug_find_method): Take a `MonoMethod *', not a
792         `MonoDebugMethodInfo *'.
793
794         * mono-debug.c: Drop support for the old symbol tables.
795
796 2007-06-28  Martin Baulig  <martin@ximian.com>
797
798         * mono-debug.c (mono_debug_debugger_version): New public variable.
799
800 2007-07-31  William Holmes  <billholmes54@gmail.com>
801
802         * metadata.c Changed mono_type_create_from_typespec to not insert
803           the type into the hash map until after
804           do_mono_metadata_parse_type has completed.
805         Fixes Bug #82194
806         Code is contributed under MIT/X11 license.
807
808 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
809
810         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
811         generic parameter. Fixes #82211.
812
813 2007-07-27  Jb Evain  <jbevain@novell.com>
814
815         * pedump.c (dump_metadata, dump_metadata_header): dump
816         versions contained in the metadata header.
817
818 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
819
820         * threads.c: register small_id_table with the GC.
821
822 2007-07-27  Mark Probst  <mark.probst@gmail.com>
823
824         * threads.c, threads.h, class-internals.h, object-internals.h:
825         Hazard pointers, to be used by lock-free parallel algorithms.
826
827 2007-07-26  Dick Porter  <dick@ximian.com>
828
829         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
830         routine on non-windows platforms, as I've not managed to think of
831         a non-kludgy way of doing this.  Finishes off bug 78739.
832
833 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
834
835         * object.c: properly setup interface_bitmap in proxy vtables.
836
837 2007-07-25  Marek Habersack  <mhabersack@novell.com>
838
839         * appdomain.c (get_shadow_assembly_location): do not use TickCount
840         to create unique shadow copy target directories, use the domain's
841         serial number instead. Each domain gets a unique target directory
842         that way.
843
844         * domain.c (mono_domain_create): added code to increment domain
845         shadow copy serial number and cache the value in the current
846         domain structure.
847
848         * domain-internals.h (struct _MonoDomain): added a new field -
849         shadow_serial to hold the serial number used in generation of
850         shadow-copy directories. This is to make sure that the directory
851         name is unique for each and every domain created. We avoid a race
852         condition with overriding assemblies already in use by other app
853         domains.
854
855 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
856
857         * class.c (mono_bounded_array_class_get): fixed memory leak when 
858         binding generic parameters.
859
860 2007-07-24  Raja R Harinath  <rharinath@novell.com>
861
862         * metadata.c (do_mono_metadata_parse_generic_class): Use
863         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
864         error.
865
866 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
867
868         * loader.c, class-internals.h, reflection.c: removed the per-method
869         generics hashtable: we use the global one through the call of
870         mono_class_inflate_generic_method ().
871
872 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
873
874         * class.c, metadata.c, class-internals.h: introduce yet another
875         generics global cache for inflated methods (fixes 98% of the perf
876         issue in bug #81806).
877
878 2007-07-23  Raja R Harinath  <rharinath@novell.com>
879
880         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
881         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
882         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
883         return a MonoGenericInst containing (a copy) of those types.
884         (mono_metadata_inflate_generic_inst): Update to changes.
885         (mono_metadata_parse_generic_inst): Likewise.
886         (mono_get_shared_generic_inst): Likewise.
887         * reflection.c (mono_class_bind_generic_parameters): Likewise.
888         (mono_reflection_bind_generic_method_parameters): Likewise.
889         * metadata-internals.h: Likewise.
890         * icall.c (free_generic_context): Kill.
891         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
892
893         * reflection.c (reflection_methodbuilder_to_mono_method): Use
894         mono_metadata_type_dup.
895         * marshal.c (mono_mb_create_method): Likewise.
896
897         * metadata.c (mono_metadata_type_dup): Rename from
898         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
899         MonoImage.  Handle a few more cases, esp. when no mempool is given.
900         * marshal.c, metadata-internals.h: Update to changes.
901
902 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
903
904         * class.c: fixed a small leak for array classes and removed warning.
905
906 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
907
908         * loader.c (mono_method_get_param_token): Make this work on generic methods.
909         Return 0x8000000 for return parameters. Fixes #82161.
910
911 2007-07-21  Marek Habersack  <grendello@gmail.com>
912
913         * appdomain.c (get_shadow_assembly_location): append the current
914         ticks value to the path. Avoids overwriting the same assemblies by
915         several threads at the same time.
916
917 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
918         and Raja R Harinath  <rharinath@novell.com>
919
920         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
921         Simplify slightly.
922         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
923         property for testing if a method is a generic method definition.
924
925 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
926
927         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
928
929 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
930
931         * verify.c: used function from private branch, reverted to the one in class.h 
932
933 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
934
935         * verify.c: a typo slipped in and the code wont compile
936
937 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
938
939         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
940         disabled box instruction as it is doing the wrong thing
941         improved stack dump messages, now it is easier to debug type related issues
942
943
944 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
945
946         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
947
948 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
949
950         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
951         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
952         grouped with class and valuetype. This change will simply 
953         the code as it should be handled just like unmanaged pointers.
954
955 2007-07-19  Mark Probst  <mark.probst@gmail.com>
956
957         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
958
959 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
960
961         * verify.c: several stack merge issues fixed, reference comparisons now
962         check the type size. strict type check now works correctly.
963         added more uses of IS_MANAGED_POINTER macro.
964         fixed issues pointed by running the test suite against .net.
965         
966
967 2007-07-19  Mark Probst  <mark.probst@gmail.com>
968
969         * class.c, loader.c, class-internals.h: Removed the
970         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
971         defines.
972
973         * icall.c: Better error checking in some internal reflection
974         methods.
975
976 2007-07-18  William Holmes  <billholmes54@gmail.com>
977
978         * filewatcher.c : removed unused variable 'filename' in 
979           ves_icall_System_IO_FSW_SupportsFSW
980
981 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
982
983         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
984         obsolete, removed.
985
986 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
987
988         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
989         
990         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
991
992 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
993
994         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
995         Implement generics support.
996         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
997
998         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
999         type_args and method_args arguments.
1000         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
1001         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1002         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
1003
1004 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
1005
1006         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
1007           It adds a rootimage parameter to mono_reflection_get_type_internal,
1008           adds new function mono_reflection_get_type_with_rootimage and use
1009           the rootimage to resolve the types instead of the current image
1010
1011 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1012
1013         * culture-info-table.h: Forgot to update after r78304.
1014
1015 2007-07-13  Raja R Harinath  <rharinath@novell.com>
1016
1017         * class.c (mono_class_is_open_constructed_type)
1018         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
1019
1020 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
1021
1022         * class.c (mono_bounded_array_class_get):  method fails if used with
1023         an incomplete TypeBuilder enum (no basetype field), fixed it by 
1024         avoiding calculating the size for such array as it cannot be instantiated.
1025         Fix bug #82015
1026
1027 2007-07-12  Raja R Harinath  <rharinath@novell.com>
1028
1029         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
1030         field.
1031         * metadata.c, reflection.c: Update to changes.
1032
1033 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
1034
1035         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
1036         mono_class_is_valid_enum, they are used to valide a enum when loading.
1037         * reflection.c: used new functions to throw TypeLoadException when and
1038         invalid enum is build with TypeBuilder. Fixes #82018
1039   
1040 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
1041
1042         * object.c: forgot commit of mono_class_setup_methods () to access
1043         iface->methods.
1044         * object-internals.h: added a few more handy fields to
1045         MonoIMTCheckItem.
1046
1047 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
1048
1049         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
1050         iface->methods.
1051
1052 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
1053
1054         * class-internals.h, object-internals.h, object.c: IMT-based
1055         interface invocation core from Massimiliano Mantione
1056         (massi@ximian.com) with a reworked arch-specific interface,
1057         bsearch implementation and a few bugfixes and memory savings by me.
1058
1059 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
1060
1061         * class.c (mono_class_create_from_typedef): mono would segfault if 
1062         an enum did not have a __value field. It now throws a TypeLoadException
1063         for such cases. Fix bug #82022
1064
1065 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1066
1067         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
1068
1069 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1070
1071         * class.c (mono_class_init): If a class is already inited but has
1072         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
1073
1074 2007-07-09  Mark Probst  <mark.probst@gmail.com>
1075
1076         * class.c: Properly handle the case of an unimplemented interface
1077         method.  Fixes: 81673.
1078
1079 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
1080
1081         * class-internals.h, object.c: cleanup patch from massi: use
1082         MonoVTable->interface_bitmap since the vtable interfaces offset array
1083         is going away.
1084
1085 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
1086
1087         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
1088         GetMDStreamVersion icall instead.
1089
1090 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
1091
1092         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
1093         not use mono_dl_build_path() with a full library name: makes
1094         fallbacks to libgaim and libfam work.
1095
1096 2007-07-06  William Holmes  <billholmes54@gmail.com>
1097
1098         * assembly.c: Added a continue statement in probe_for_partial_name when
1099          parse_assembly_directory_name fails.  Fixes : 82002
1100
1101 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
1102
1103         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
1104         and added a verification  for TYPEDBYREF.
1105         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
1106         make native int interchangeable with int32 and some small cleanup and formating.
1107         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
1108         handle byref of byref.
1109         * verify.c (push_local): handle byref of byref.
1110         * verify.c (do_binop): invalid mix of values is unverifiable
1111         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
1112         added visibility checks
1113         * verify.c (field related method): added visibility checks
1114         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
1115
1116 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
1117
1118         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
1119         string.
1120
1121 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
1122
1123         * profiler.c (mono_profiler_load): Fix an off-by-one error.
1124
1125         * marshal.c (emit_marshal_string): When returning a string from managed code,
1126         allways make a copy even for unicode strings. Fixes #81990.
1127
1128 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
1129
1130         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
1131         of byref generic inst types (bug #81997).
1132
1133 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
1134
1135         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
1136         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
1137
1138 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
1139
1140         * marshal.c (emit_marshal_string): Add support for unicode strings in
1141         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
1142
1143 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
1144
1145         * verify.c: field load/store are now verified, missing only access checks now
1146
1147 2007-06-28  Martin Baulig  <martin@ximian.com>
1148
1149         * mono-debug.c (mono_debug_debugger_version): New public variable.
1150
1151 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
1152
1153         * locales.c: When constructing DateTimeFormat or NumberFormat for
1154         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
1155         MonoCultureInfo contructed from the current locale is always
1156         read-only and has UseUserOverride set to true. All MonoCultureInfo
1157         instances returned for GetCultures have both IsReadOnly and
1158         UseUserOverride set to true. Fixes part of bug #81930.
1159
1160 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
1161
1162        * icall-def.h: Update System.__ComObject icalls
1163        * marshal.c: Avoid managed transition (and object creation)
1164        when looking up COM interface in RCW.
1165        * marshal.h: Ditto.
1166        
1167        Code is contributed under MIT/X11 license.
1168
1169 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
1170
1171         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
1172         to avoid crashes during assembly unloading.
1173
1174 2007-06-22  Raja R Harinath  <rharinath@novell.com>
1175
1176         Fix MethodInfo.IsGenericMethodDefinition
1177         * reflection.c (mono_reflection_bind_generic_method_parameters):
1178         Rearrange code to ensure we always uses a generic method definition.
1179         * class.c (mono_class_inflate_generic_method_full): Set
1180         'generic_container' field only for generic method definitions.
1181         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1182         Use presense of 'generic_container' field as indication of being a
1183         generic method definition.
1184
1185 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1186
1187         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1188
1189         * object-internals.h: Reflect changes in the layout of the managed Delegate
1190         class.
1191         
1192         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
1193         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
1194         runtime memory used by the dynamic method. Fixes #77146.
1195
1196 2007-06-21  Dick Porter  <dick@ximian.com>
1197
1198         * file-io.h: 
1199         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
1200         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
1201         81767.
1202
1203 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1204
1205         * reflection.c (method_encode_methodspec): Add a tripwire.
1206         * class.c (inflate_generic_type): The fully open generic type is
1207         not the same as the generic type definition.
1208
1209 2007-06-21  Martin Baulig  <martin@ximian.com>
1210
1211         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
1212
1213         * mono-debug-debugger.h
1214         (MonoDebuggerBreakpointInfo): Removed.
1215         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
1216         (mono_debugger_remove_breakpoint): Likewise.
1217         (mono_debugger_breakpoint_callback): Likewise.
1218         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
1219
1220 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1221
1222         * metadata.c (mono_metadata_lookup_generic_class): The fully open
1223         generic type is not the same as the generic type definition.
1224         * class.c (mono_generic_class_get_class): Likewise.
1225
1226 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
1227
1228         * icall.c: The second argument to 
1229         System.Reflection.MethodBase.GetMethodFromHandleInternalType
1230         is a MonoType not a MonoClass.
1231
1232 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1233
1234         * verify.c: support for function pointers in the verifier
1235
1236 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1237
1238         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
1239
1240 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
1241
1242         * assembly.c: removed Mono.Data.SqliteClient from the list of
1243         forward-compatible assemblies as it breaks the ABI (bug #81899).
1244
1245 2007-06-19  Raja R Harinath  <rharinath@novell.com>
1246
1247         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
1248         lookup/update with the loader lock.
1249         * reflection.c (mono_class_bind_generic_parameters): No need to
1250         protect mono_metadata_lookup_* with the loader lock.
1251         * class.c (inflate_generic_type): Likewise.
1252         
1253         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
1254         on a generic instantiated type.
1255
1256 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
1257
1258         *verify.c: produce meanfull error messages on verification error
1259         *verify.c: fixed some cases of verification errors reported as validation errors
1260         *pedump.c: fixed the error name array, now it shows validation errors properly
1261         *verify.h: fixed the contant that should be used for verification errors
1262
1263 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1264
1265         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1266         for bug #77596, 81858 and 80743 (generics data structures on domain
1267         unload).
1268
1269 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1270
1271         Avoid allocating 'MonoGenericContext' on the heap.
1272         * class-internals (_MonoMethodInflated::context): Make field
1273         inline, not a pointer.
1274         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1275         stack.  Use the context embedded within the inflated method as the
1276         hash key, rather than 'new_context'.
1277         * class.c (inflate_generic_context): Simplify.  Return a struct
1278         rather than allocating on the heap.
1279         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1280         doesn't salt away a copy of the context -- simplifying the
1281         lifetime rules of a 'MonoGenericContext *'.
1282         (mono_method_get_context): Return pointer to embedded context.
1283         (setup_generic_array_ifaces): Allocate temporary context on stack.
1284         * reflection.c (inflate_mono_method): Likewise.
1285         (mono_reflection_bind_generic_method_parameters): Likewise.
1286         Use the context embedded within the inflated method as the hash key.
1287
1288         Avoid a source of allocation of 'MonoGenericContext'.
1289         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1290         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1291         * class.c: Update to changes.
1292         (mono_generic_class_get_context): Simplify drastically.  Now just
1293         returns a pointer to the field.
1294         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1295         argument as a const pointer.
1296         (mono_metadata_generic_context_equal): Likewise.
1297         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1298         Update to changes.
1299
1300 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1301
1302         * verify.c improved the handling of brtrue/brfalse, factored out common code
1303
1304 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1305
1306         Kill MonoGenericMethod.
1307         * class-internals.h (MonoGenericContext::method_inst): Rename from
1308         'gmethod' and convert to a MonoGenericInst.
1309         (MonoGenericMethod): Remove.
1310         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1311         * loader.c (method_from_methodspec): Update to changes.  Use a
1312         MonoGenericContext as the key to the hashtable.
1313         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1314         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1315         (mono_metadata_generic_context_hash): Likewise from
1316         'mono_metadata_generic_method_hash'.  Change hash function.
1317         (mono_metadata_load_generic_params): Update to changes.
1318         (mono_get_shared_generic_method): Remove.
1319         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1320         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1321         (inflate_generic_context): Likewise.
1322         (mono_class_inflate_generic_method_full): Likewise.
1323         (setup_generic_array_ifaces): Likewise.
1324         (mono_class_create_from_typespec): Likewise.
1325         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1326         (method_encode_methodspec): Update callsite.
1327         (reflection_methodbuilder_to_mono_method): Update to changes.
1328         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1329         MonoGenericContext as the key to the hashtable.
1330         (inflate_mono_method): Update to changes.
1331
1332         * class-internals.h (MonoGenericMethod::container): Remove.
1333         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1334
1335 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1336
1337         * profiler-private.h, profiler.c, profiler.h: added API to profile
1338         exception events.
1339
1340 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1341
1342         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1343
1344 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1345
1346         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1347         Fixed overflow and underflow not aborting the verification process.
1348
1349 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1350
1351         * class-internals.h (MonoStats): Added stats entries for dynamic
1352         code allocations.
1353
1354 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1355
1356         * loader.c (mono_free_method): Free header->locals and header->clauses.
1357
1358         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1359         dynamic case.
1360
1361         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1362
1363         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1364
1365 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1366
1367         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1368         the tables.
1369
1370 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1371
1372         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1373
1374 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1375
1376         MonoGenericMethod on a diet
1377         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1378         here ...
1379         (_MonoGenericMethod::reflection_info): ... from here.
1380         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1381         Update to changes.
1382         * reflection.c (inflate_mono_method): Likewise.
1383         (mono_reflection_bind_generic_method_parameters): Likewise.
1384
1385 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1386
1387         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1388         *verify.c: factored long ldarg forms to share code with short forms
1389
1390 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1391
1392         *verify.c: fixed code formating factored some duplicate code
1393         into a new function
1394
1395         *verify.h: fixed binary incompatibility introduced earlier
1396
1397         *pedump.c: fixed formating
1398
1399 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1400
1401         Fix assertion when disassembling Mono.C5.dll
1402         * loader.c (method_from_methodspec): Avoid inflating a method
1403         twice with the same context.  If the methodref is inflated, use
1404         the declaring method instead.
1405
1406         * class.c (mono_class_from_generic_parameter): Fix case similar to
1407         bug #81830 handled below, but for method containers.
1408
1409 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1410
1411         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1412         get_shared_generic_class.  Directly inflate the instance.
1413         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1414         (inflate_generic_class): Delete.
1415         (get_shared_generic_class): Delete.  Move setting of
1416         'cached_class' and 'cached_context' ...
1417         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1418
1419         * metadata.c (mono_metadata_lookup_generic_class): Change
1420         signature to take the components of a MonoGenericClass rather than
1421         an allocated MonoGenericClass.  Change semantics to be intern-like.
1422         * reflection.c (mono_class_bind_generic_parameters): Update to
1423         changes.  Make locking region tighter.
1424         * class.c (inflate_generic_class): Update to changes.
1425         (get_shared_generic_class): Likewise.
1426         * metadata-internals.h: Likewise.
1427
1428         * reflection.c (mono_class_bind_generic_parameters): Take and
1429         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1430         (mono_reflection_bind_generic_parameters): Use
1431         'mono_class_bind_generic_parameters' rather than duplicate the code.
1432         * class.c (mono_bounded_array_class_get): Update to changes.
1433         * object-internals.h: Likewise.
1434
1435         * reflection.c (mono_class_bind_generic_parameters): Only support
1436         parameterizing generic type definitions.  Remove support for other
1437         open types.
1438
1439 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1440
1441         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1442
1443         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1444         in the dynamic case.
1445
1446 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1447
1448         * threads.c: When cleaning up thread, reset the Background bit.
1449         Fixes bug #81720.
1450
1451 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1452
1453        * metadata.c: Move variable declarations to top of scope.
1454        * verify.c: Move variable declarations to top of scope.
1455
1456        Code is contributed under MIT/X11 license.
1457
1458 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1459
1460         * reflection.c (mono_class_bind_generic_parameters): Replace
1461         open-coded loop with mono_metadata_inflate_generic_inst.
1462
1463         * class.c (get_shared_generic_class): Don't call
1464         mono_get_shared_generic_inst.  Use the container's own
1465         'class_inst'.
1466
1467         * metadata.c (mono_metadata_load_generic_params): Move
1468         initialization of 'context' field here from ...
1469         * class.c (mono_class_create_from_typedef): ... here, and ...
1470         * loader.c (mono_get_method_from_token): ... here.
1471
1472         * class.c (get_shared_generic_class): Rename from
1473         mono_get_shared_generic_class and make static.
1474         (mono_get_shared_generic_inst): Move to metadata.c.
1475         * loader.c (mono_get_shared_generic_method): Likewise.
1476         * class-internals.h, metadata-internals.h: Update to changes.
1477
1478         Fix #81830
1479         * class.c (mono_class_from_generic_parameter): Don't assume a
1480         generic container owner exists.  Generic containers from monodis
1481         don't have any.
1482
1483 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1484
1485         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1486         * verify.h: new typedefs to returns the non-verifiable status
1487         * verify.c: initial implementation of generics, stack merging and object compatibility check
1488
1489 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1490
1491         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1492         a MonoInternalHashTable again (fixed bug in internal hash table
1493         code).
1494
1495 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1496
1497         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1498         MonoInternalHashTable again (fixed bug in internal hash table
1499         code).
1500
1501 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1502
1503         * class.c, image.c, class-internals.h, domain.c,
1504         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1505         changes.  Have to figure out what makes them break the SWF
1506         regression.
1507
1508 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1509
1510         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1511         a MonoInternalHashTable now.
1512
1513 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1514
1515         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1516         MonoInternalHashTable now.
1517
1518 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1519
1520         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1521         invoke_impl code.
1522
1523         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1524
1525         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1526         dependent trampoline.
1527
1528         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1529
1530         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1531
1532 2007-05-29  Robert Jordan  <robertj@gmx.net>
1533
1534         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1535
1536 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1537
1538         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1539
1540 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1541
1542        * marshal.c: Fix interface lookup loops for
1543        cominterop_get_com_slot_for_method and 
1544        cominterop_get_method_interface. Only need to lookup
1545        if type is a class, else use interface type method is on.
1546
1547        Code is contributed under MIT/X11 license.
1548
1549 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1550
1551         * reflection.c: HasSecurity can be present even if no specially 
1552         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1553         SecurityAttribute). Fix CAS regression tests on buildbot.
1554
1555 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1556
1557        * appdomain.c: Add configure checks for header files.
1558        * image.c: Add configure checks for header files.
1559        * file-io.c: Add configure checks for header files.
1560        * debug-mono-symfile.c: Add configure checks for header files.
1561        * threadpool.c: Add configure checks for header files.
1562        * console-io.c: Add configure checks for header files.
1563        * profiler.c: Add configure checks for header files.
1564        * rawbuffer.c: Add configure checks for header files.
1565        * icall.c: Add configure checks for header files.
1566        * rand.c: Add configure checks for header files.
1567        * socket-io.c: Add configure checks for header files.
1568
1569        Code is contributed under MIT/X11 license.
1570
1571 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1572
1573         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1574         assertion as it breaks the build.
1575         
1576         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1577
1578         * reflection.c (lookup_custom_attr): Make a copy here too.
1579
1580         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1581         dynamic images.
1582
1583         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1584         images.
1585
1586         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1587         info.
1588
1589 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1590
1591         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1592         (load_cattr_value): Ditto.
1593
1594 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1595
1596         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1597
1598 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1599
1600         * threads.c: In "start_wrapper", set apartment_state to MTA if
1601         apartment_state is Unknown and we're running on 2.0 profile or
1602         higher.
1603         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1604         to main method, then set apartment_state to Unknown on 1.0 profile,
1605         and MTA on 2.0 profile.
1606
1607 2007-05-16  Jb Evain  <jb@nurv.fr>
1608
1609         * class-internals.h (MonoDefaults): Add an attribute_class and
1610           customattribute_data_class.
1611         * domain.c (mono_init_internal): Populate them.
1612         * reflection.c: Use them to remove duplicates. Make a vew
1613         MonoClass variables `static'.
1614
1615 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1616
1617         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1618         step in implementing IMT, so that all isinst checks now can go
1619         through the bitmap.
1620         This was needed because vtables for TransparentProxy need to look
1621         like the vtable of the "target" class, so they need to point to
1622         its interface bitmap directly.
1623
1624         * object.c: inside "mono_class_create_runtime_vtable" and
1625         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1626
1627 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1628
1629         * object-internals.h
1630           culture-info.h : added territory field in MonoCulture and
1631           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1632         * locales.c : fill territory field above too.
1633         * culture-info-table.h : regenerated.
1634
1635 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1636
1637         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1638         Fixes #81599.
1639
1640 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1641
1642         * object.c: Always initialize apartment, even if 
1643         there is no custom attributes on entry point.
1644         
1645         Code is contributed under MIT/X11 license.
1646
1647 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1648
1649         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1650         * metadata.c: If no encoding is set, check for unicode
1651         on class.
1652         
1653         Code is contributed under MIT/X11 license.
1654
1655 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1656
1657         * threads.c: Handle if mono_thread_current returns NULL 
1658         
1659         Code is contributed under MIT/X11 license.
1660
1661 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1662
1663         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1664         in start_wrapper. Added mono_thread_init_apartment_state and
1665         mono_thread_cleanup_apartment_state.
1666         * object.c: Initialize thread apartment state on main thread
1667         by checking for STAThreadAttribute on entry point.
1668         * object-internals.h: Add apartment_state field to MonoThread.
1669         * threads-types.h: Add unmanaged definition of 
1670         System.Threading.ApartmentState, MonoThreadApartmentState.
1671         
1672         Code is contributed under MIT/X11 license.
1673         
1674 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1675
1676         * class.c: Fix windows build.
1677         * class-internals.h: Fix windows build.
1678         
1679         Code is contributed under MIT/X11 license.
1680
1681 2007-05-08  Robert Jordan  <robertj@gmx.net>
1682
1683         * process.c (CreateProcess_internal):
1684         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1685         .CreateNoWindow was specified. Fixes #81496.
1686
1687 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1688
1689         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1690         step in implementing IMT, replaced it with two compact arrays
1691         (interfaces_packed and interface_offsets_packed) and a bitmap that
1692         is used for isinst checks (interface_bitmap).
1693
1694         * class.c: (compare_interface_ids): compare function to pass to
1695         bsearch when looking for an interface with a given id.
1696         (mono_class_interface_offset): reimplemented using bsearch on
1697         interfaces_packed, getting the offset from interface_offsets_packed.
1698         (print_implemented_interfaces): utility debugging function.
1699         (setup_interface_offsets): reworked to initialize interfaces_packed,
1700         interface_offsets_packed and interface_bitmap.
1701
1702         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1703         with uses of interfaces_packed and interface_offsets_packed.
1704
1705 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1706
1707         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1708         mono_class_interface_offset prototype to wrap all accesses to
1709         "MonoClass.interface_offsets".
1710
1711         * class.c: Implemented mono_class_interface_offset, and wrapped all
1712         accesses to "MonoClass.interface_offsets".
1713
1714         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1715         "MonoClass.interface_offsets".
1716
1717 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1718
1719         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1720         GetMethodFromHandle overloads (bug #78637).
1721
1722 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1723
1724         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1725         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1726
1727 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1728
1729         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1730         #81498.
1731
1732         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1733         gracefully.
1734         (mono_custom_attrs_from_index): Ditto.
1735
1736         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1737         Fixes #81501.
1738
1739 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1740
1741         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1742         is now allocated from a mempool.
1743
1744 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1745
1746         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1747         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1748
1749 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1750
1751         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1752         mono_loader_clear_error () too late. Fixes #81463.
1753
1754 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1755
1756         * culture-info-table.h : regenerated.
1757
1758 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1759
1760         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1761         is missing.
1762
1763 2007-04-25  Dick Porter  <dick@ximian.com>
1764
1765         * Makefile.am: Put the mingw enforced-optimisation back into the
1766         PLATFORM_WIN32 section.
1767
1768 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1769
1770         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1771         patch.
1772
1773         * image.c (mono_image_load_module): New API function to load a module reference.
1774
1775         * image.c (load_modules): Load modules lazily. Fixes #80812.
1776
1777         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1778         
1779         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1780
1781         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1782         to mono_image_load_module_dynamic.
1783
1784 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1785
1786         * marshal.c: Fix calling convention for CCW on non-windows
1787         platforms. STDCALL on windows, CDECL everywhere else to work 
1788         with XPCOM and MainWin COM.
1789         
1790         Code is contributed under MIT/X11 license.
1791
1792 2007-04-23  Martin Baulig  <martin@ximian.com>
1793
1794         Fix #80969.
1795
1796         * loader.c
1797         (method_from_memberref): Added `gboolean *used_context' argument.
1798         (mono_get_method_from_token): Likewise.
1799         (mono_get_method_full): Don't insert the method in the cache when
1800         `used_context' is true.
1801
1802 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1803
1804         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1805
1806         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1807         create new MonoTypes for returned types.
1808         * class.c (mono_generic_class_get_class): Export mono-internal.
1809         * class-internals.h: Update to changes.
1810
1811 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1812
1813         * threadpool.c, threadpool.h, icall-def.h: patch from
1814         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1815
1816 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1817
1818         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1819         
1820         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1821
1822         * threads.c (mono_thread_get_stack_bounds): New helper function.
1823
1824         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1825         Correctly compute stack bounds when attaching. Fixes #81394.
1826
1827 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1828
1829         * reflection.c: fix handling of doubles in custom attributes
1830         for the arm-fpa format (bug #81368).
1831
1832 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1833
1834         * reflection.c (assembly_add_win32_resources): Mildly relax an
1835         bounds check to let the end pointer point just past the end of the
1836         allocated buffer.  (may fix #81384)
1837
1838 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1839
1840         * culture-info-table.h : regenerated.
1841
1842 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1843
1844         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1845         the thread is aborted early.
1846
1847 2007-04-05  Dick Porter  <dick@ximian.com>
1848
1849         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1850         FindFirstFile()/FindNextFile() to find entries.  This lets the
1851         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1852         81038.
1853
1854         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1855         the parameters of
1856         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1857
1858 2007-04-04  Martin Baulig  <martin@ximian.com>
1859
1860         * debug-helpers.c
1861         (mono_method_desc_full_match): Add support for nested classes.
1862
1863 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1864
1865         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1866
1867 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1870         waiting for too many threads.
1871
1872 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1873
1874         * environment.c: Fix return value check on uname so we can get the 
1875         executing version on Solaris operating systems.
1876
1877 2007-03-28  Jb Evain  <jbevain@gmail.com>
1878
1879         * class.c (mono_type_get_name_recurse): Complete the
1880         fix for the creation of assembly qualified names for
1881         pointer types. Fixes #81208.
1882
1883 2007-03-27  Dick Porter  <dick@ximian.com>
1884
1885         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1886         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1887         changed.
1888
1889         * threads.c
1890         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1891         the value of ReleaseMutex().
1892
1893 2007-03-27  Dick Porter  <dick@ximian.com>
1894
1895         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1896         in little-endian order, not network endian, so must be converted
1897         to host endian here.  Fixes bug 80593.
1898
1899 2007-03-22  Jb Evain  <jbevain@gmail.com>
1900
1901         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1902         qualified names for pointer types. Fixes #81208.
1903
1904 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1905
1906         * marshal.c: Add support for PreserveSigAttribute. 
1907         
1908         Code is contributed under MIT/X11 license.
1909
1910 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1911
1912         * process.c: Fix endianness issues. Fixes #81126.
1913
1914         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1915         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1916
1917         * image.c (mono_image_lookup_resource): Make this work on big-endian
1918         machines.Change API contract so the caller needs to free the return value.
1919         
1920         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1921         API change.
1922         
1923 2007-03-14  Martin Baulig  <martin@ximian.com>
1924
1925         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1926         mono_type_get_desc() as well.
1927
1928 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1929
1930         * icall.c:  Fix environ access in VS.  
1931         
1932 2007-03-13  Alp Toker  <alp@atoker.com>
1933
1934         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1935         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1936         #63841.
1937
1938 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1939
1940         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1941         circular references among dynamic methods. Fixes #81091.
1942
1943         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1944
1945 2007-03-09  Martin Baulig  <martin@ximian.com>
1946
1947         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1948
1949 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1950
1951         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1952         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1953         
1954         Code is contributed under MIT/X11 license.
1955         
1956 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1957
1958         * loader.c: Reapply patch for bug #79424.
1959
1960 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1961
1962         * metadata.c (mono_type_to_unmanaged): Only convert object to
1963         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1964
1965 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1966
1967         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1968         (and incorrectly set) is_reference field from MonoGenericInst.
1969
1970 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1971
1972         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1973         a little earlier.
1974
1975         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1976
1977         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1978
1979 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1980
1981         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1982         FileOptions.1 value to mean "temporary", map that to
1983         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1984
1985         Fixes 80688
1986
1987 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1988
1989         * appdomain.c: implement MS .Net style shadow copying. Copies of
1990         the assemblies are made in a subdirectory of the dynamic base
1991         directory, the assembly names are preserved.
1992         Copy .mdb and .config files along with the assemblies being shadowed.
1993
1994 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1995
1996         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1997         (emit_marshal_handleref): Ditto.
1998
1999         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
2000         on Visual C++. Fixes #80671.
2001
2002 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
2003
2004         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
2005         for clone operations.
2006
2007 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
2008
2009         * marshal.c: Fix warnings.
2010
2011 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
2012
2013         * loader.c: allow case-insensitive matching of the dll name
2014         in dllmap handling when prefixed with "i:".
2015
2016 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
2017
2018         * threads.c: Fix #ifdef for dummy_apc function for VS.
2019
2020 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
2021
2022         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
2023
2024 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
2025         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
2026         giving precedence to the methods with a fully qualified name
2027         (InterfaceName.MethodName) when building the interface sections
2028         of the vtable.
2029
2030 2007-02-16  Dick Porter  <dick@ximian.com>
2031
2032         * threadpool.c (append_job): Fix fast-path array handling, so it's
2033         less likely the array will grow exponentially when the load is
2034         heavy.
2035
2036 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2037
2038         * metadata-internals.h, loader.c: fix dllmap lookup order
2039         for non-function maps, too, and prepare for fallback code.
2040
2041 2007-02-12  Robert Jordan  <robertj@gmx.net>
2042
2043         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
2044         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
2045         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
2046         GlobalFree. Fixes a part of bug #77075.
2047
2048 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
2049
2050         * loader.c: implemented typedef parent in field memberref.
2051
2052 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
2053
2054         * marshal.c: Fix warnings and remember to call Release on
2055         IUnknown of RCW.
2056         
2057         Code is contributed under MIT/X11 license.
2058
2059 2007-02-10  Miguel de Icaza  <miguel@novell.com>
2060
2061         * class-internals.h: Add MonoHandleRef definition, and
2062         handleref_class to mono_defaults. 
2063
2064         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
2065         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
2066
2067         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
2068         (do nothing on this stage)
2069         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
2070         (emit_marshal_handleref): New method, used for argument handling
2071         of HandleRefs. 
2072
2073 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
2074
2075         * class.c (mono_class_setup_parent): Lazily init com types.
2076         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
2077         init com types.
2078         * object.c (mono_remote_class_vtable): Lazily init com types.
2079         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
2080         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
2081         * domain-internals.h: Expose mono_init_com_types.
2082         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
2083         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
2084         Add support for COM Callable Wrapper marshalling.
2085         * marshal.h: Add icall definitions.
2086         * gc.c: Handle freeing of CCWs in finalizer code.
2087         
2088         Code is contributed under MIT/X11 license.
2089
2090 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
2091
2092         * reflection.c: changed all the signature encoding code to use
2093         a variable-sized buffer.
2094
2095 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2096
2097         * marshal.c: locking fixes: never take the loader lock
2098         or other runtime locks when holding the marshal lock
2099         (fixes bug#80664).
2100
2101 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
2102
2103         * marshal.c: make the delegate function pointer mapping
2104         work for the moving GC.
2105
2106 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
2107
2108         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
2109         for bug #80618.
2110
2111 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
2112
2113         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
2114         gmodule.
2115
2116 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
2117
2118         * threadpool.c: made the code moving-GC safe.
2119
2120 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
2121
2122         * assembly.c, boehm-gc.c, class-internals.h, class.c,
2123         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
2124         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
2125         warning cleanup.
2126         * reflection.c: warning cleanup, some threading and moving GC fixes.
2127
2128 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
2129
2130         * class.c, loader.c: create the needed Set/Get/Address array methods
2131         as well as the .ctors in mono_class_init (), fixes bug #80567.
2132
2133 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
2134
2135         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
2136         we doesn't decrease its alignment. Should fix the sparc build.
2137
2138 2007-01-24  Dick Porter  <dick@ximian.com>
2139
2140         * socket-io.c
2141         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
2142         Create the returned object if we need to ignore an unsupported
2143         socket option.  Fixes a segfault reported by Atsushi.
2144
2145 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
2146
2147         * class.c, object.c: restrict GC-tracked fields to
2148         UIntPtr fields used inside corlib, so we provide better
2149         type info to the GC and also allow broken packing as in
2150         bug #80580.
2151
2152 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
2153
2154         * sgen-gc.c: removed duplicated function.
2155
2156 2007-01-19  Miguel de Icaza  <miguel@novell.com>
2157
2158         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
2159         value that means that the value is not supported, but that we
2160         should not return a failure, but instead report this as a
2161         successful operation.
2162
2163 2007-01-19  Raja R Harinath  <rharinath@novell.com>
2164
2165         Fix tests/bug79956.2.il
2166         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
2167         (mono_generic_class_get_class): If the generic definition in an
2168         enum, copy over other fields related to it.
2169
2170 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
2171
2172         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
2173         genericinst enums (bug #79215).
2174
2175 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
2176         * class.c: Fix bug 80307.
2177
2178 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
2179
2180         * image.c: if the file table is not present, try to load
2181         all the modules, since we don't have info about them
2182         having or not metadata (bug #80517).
2183         * assembly.c: allow mono_assembly_load_references () to
2184         work for netmodules.
2185
2186 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2187
2188         * image.c, metadata-internals.h, object.c: execute module
2189         cctors when running on the 2 runtime if present (bug #80487).
2190
2191 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2192
2193         * icall.c: optimized InitializeArray() on bigendian.
2194
2195 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
2196
2197         * icall.c: fix for the broken ARM FPA double format.
2198
2199 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2200
2201         * icall.c: handle endian issues for r4 and r8 types, too, in
2202         the InitializeArray() icall.
2203
2204 2007-01-15  Miguel de Icaza  <miguel@novell.com>
2205
2206         * loader.c (mono_loader_error_prepare_exception): Clear the error
2207         once we have extracted the information from it, do this before we
2208         call into the JIT's class loading mechanisms.
2209
2210         * object.c (mono_class_create_runtime_vtable): Do not clear the
2211         loader error before calling mono_class_get_exception_for_failure
2212         as the loader error is needed inside
2213         mono_class_get_exception_for_failure to throw the error (thinko).
2214
2215         Fixes #80521
2216         
2217 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2218
2219         * reflection.c: align fields rva data so it's faster to load at
2220         runtime.
2221
2222 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2223
2224         Prepare to simplify GenericMethod handling.
2225         * class-internals.h (mono_method_get_context): New accessor function.
2226         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
2227         rather than directly accessing '->context' field.
2228
2229         * class-internals.h (_MonoGenericParam.method): Move ...
2230         (_MonoGenericContainer): ... here.  Add into union with klass field.
2231         * class.c, icall.c, loader.c, metadata.c, reflection.c:
2232         Update to changes.
2233
2234 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
2235
2236         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
2237         the wrapper type enum and reduce relocations.
2238
2239 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2240
2241         * reflection.c (inflate_mono_method): Reuse method instantiation
2242         from the generic method, if available.
2243
2244 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2245
2246         * marshal.c (emit_marshal_variant): Fix conv_arg
2247         type in last commit, based on whether parameter is byref.
2248         
2249 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2250
2251         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
2252         marshalling.
2253         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
2254         MONO_TYPE_OBJECT back for VARIANT support.
2255
2256 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2257
2258         * marshal.c, marshal.h, icall-def.h: Implement 
2259         Marshal.ReAllocCoTaskMem.
2260
2261 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
2262
2263         * marshal.c: memory retention fixes: use the proper
2264         image cache for runtime_invoke method lookups.
2265
2266 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2267
2268         * mempool.c: added code to help debug mempool allocations.
2269
2270 2007-01-11  Dick Porter  <dick@ximian.com>
2271
2272         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2273         support (experimenting with faking it with IP_MTU_DISCOVER for
2274         systems that don't have IP_DONTFRAGMENT.)
2275         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2276         icall.
2277
2278         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2279
2280         * socket-io.h: Add new fields to MonoSocketAsyncResult
2281         corresponding to the new ones in Socket.cs.
2282
2283 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2284
2285         Fix IronPython regression mentioned in #80249
2286         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2287         'cached_context' field, since it may have been initialized as a
2288         side-effect of metadata parsing.
2289
2290         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2291         (_MonoGenericClass.cached_class): Move here and rename from lone
2292         remaining field of ...
2293         (_MonoInflatedGenericClass): ... this.  Remove.
2294         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2295         to changes.
2296
2297         Fix mcs/tests/test-128.cs regression.
2298         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2299         2007-01-10 change below.
2300         [MONO_TYPE_OBJECT]: Recurse into array case.
2301
2302 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2303
2304         * class-internals.h (mono_get_inflated_generic_class): Remove.
2305         * class.c (mono_get_inflated_generic_class): Remove.
2306         (mono_generic_class_get_class): Rename from
2307         mono_class_create_generic.
2308         (mono_class_from_mono_type) [GENERICINST]: Use it.
2309         * reflection.c, metadata.c: Update to changes.  Use
2310         'mono_class_from_mono_type'.
2311
2312 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2313
2314         * reflection.c: use passed type when encoding an array element
2315         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2316
2317 2007-01-09  Robert Jordan  <robertj@gmx.net>
2318
2319         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2320         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2321         Fixes bug #80392.
2322
2323 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2324
2325         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2326
2327         * object.c (set_value): Avoid aliasing between type->data.klass
2328         and type->data.generic_class.
2329
2330         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2331
2332 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2333
2334         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2335         between type->data.klass and type->data.generic_class.
2336
2337 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2338
2339         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2340         value in out parameters.
2341
2342 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2343
2344         Simplify invariant for MonoGenericClass::klass field.
2345         * class.c (mono_class_create_generic): Verify 'klass' is null.
2346         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2347         initialize 'klass' field.
2348
2349 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2350
2351         Ongoing work to avoid redundant data and simplify invariants.
2352         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2353         'generic_class', and change type to a GenericInst.
2354         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2355         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2356
2357 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2358
2359         * class.c : skip io-layer under PLATFORM_WIN32.
2360
2361 2007-01-03  Tor Lillqvist  <tml@novell.com>
2362
2363         Fix #80305: In a bundled executable, look in the bundled exe
2364         assembly to determine the runtime version. Add the possibility to
2365         bundle also the machine.config file.
2366         
2367         * assembly.c (mono_assembly_open_from_bundle): Make
2368         non-static. Allow being called even if we have no bundled
2369         assemblies, and return NULL right away in that case.
2370
2371         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2372         here.
2373
2374         * domain.c (app_config_parse): Take an assembly exe file name as
2375         parameter instead of a config file name. Check for a bundled
2376         config file for that assembly by calling
2377         mono_config_string_for_assembly_file() (see below) before looking
2378         for one in the file system.
2379         (get_runtimes_from_exe): Corrsponding change to call of
2380         app_config_parse().
2381         (get_runtimes_from_exe): Check for bundled assembly exe file first
2382         by calling mono_assembly_open_from_bundle(). If no bundled
2383         assembly exe file is found, call mono_image_open() as before to
2384         look it up in the file system.
2385
2386         * mono-config.c: Add variable bundled_machinec_onfig.
2387         (mono_config_string_for_assembly_file): New function.
2388         (mono_config_for_assembly): Move code snippet that looks for a
2389         bundled assembly .config file into the above new function. Call
2390         it.
2391         (mono_register_machine_config, mono_get_machine_config): New
2392         functions to set and retrieve
2393
2394         * assembly.h: Declare mono_register_machine_config().
2395
2396         * mono-config.h: Declare mono_get_machine_config() and
2397         mono_config_string_for_assembly_file().
2398
2399         * icall.c: No declaration of environ necessary on Win32. It is
2400         declared (as a macro expanding to a function call) in stdlib.h.
2401         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2402         New internal mono function. Returns the value of
2403         mono_get_machine_config() as a Mono string.
2404
2405         * icall-def.h: Add get_bundled_machine_config().
2406
2407 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2408
2409         Remove redundant field
2410         * class-internals.h (_MonoGenericContext.container): Remove field.
2411         * loader.c (mono_method_get_signature_full): Don't parse a
2412         "container" for a signature parse when the signature is inflated
2413         immediately.
2414         (method_from_methodspec): Likewise, for a generic_inst.
2415         * class.c, metadata.c, reflection.c: Update to changes.
2416
2417 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2418
2419         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2420         'cached_context', and change semantics -- it starts off NULL, and
2421         is initialized on demand.
2422         * class.c (mono_generic_class_get_context): New accessor to
2423         replace 'context' field accesses.
2424         (mono_class_get_context): New helper.
2425         (*): Update to changes.
2426         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2427
2428 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2429
2430         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2431         before the memcpy.   Fixes Marshal2 regression.
2432
2433 2007-01-02  Jb Evain  <jbevain@gmail.com>
2434
2435         * blob.h: add a MONO_TYPE_ENUM definition
2436         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2437         fix the encoding of arrays of enums in custom attributes.
2438
2439         Fixes #79666.
2440
2441 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2442
2443         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2444         string is null terminated, but only cut the string short if it
2445         overflows the buffer.   
2446         
2447         (mono_string_to_byvalstr): Also fix this routine.   The code here
2448         was not properly terminating a string (it was only terminated
2449         because of the previous catch-all memset). 
2450
2451         I left the memset, because I do not know if applications expect
2452         the runtime to clear this region. 
2453
2454         Fixes #79944.
2455
2456         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2457         Clear the error before returning to unmanaged code to prevent the
2458         runtime from being confused later on (fixes  80420).
2459         (ves_icall_type_from_name): Always call mono_loader_clear_error
2460         after parsing a type that could have failed.
2461         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2462
2463         * loader.c (mono_loader_clear_error): Fix indentation.
2464
2465 2006-12-28  Martin Baulig  <martin@ximian.com>
2466
2467         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2468
2469 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2470
2471         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2472         getting a token for an EnumBuilder.
2473
2474 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2475
2476         * reflection.c: be more careful in case resource generation
2477         fails to create the data array.
2478
2479 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2480
2481         * sgen-gc.c: write barrier for clone and fix unregister handles.
2482
2483 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2484
2485         * reflection.c: some fixes needed in the generics code for the moving GC.
2486
2487 2006-12-22  Robert Jordan  <robertj@gmx.net>
2488
2489         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2490         account. Fixes bug #80299.
2491
2492 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2493
2494         Fix WaitHandle usage in delegates.
2495         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2496         * object.c (mono_wait_handle_new): Use the property set method to
2497         initialize the handle.
2498         (mono_wait_handle_get_handle): New.
2499         * threadpool.c (mono_async_invoke): Use it.
2500         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2501         Likewise.
2502         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2503
2504 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2505
2506         * marshal.c (emit_marshal): Call emit_marshal_variant and
2507         emit_marshal_com_interface when applicable.
2508         (emit_marshal_variant, emit_marshal_com_interface): Add
2509         methods for this case and remove if's from emit_marshal_object.
2510         
2511 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2512
2513         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2514
2515 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2516
2517         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2518         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2519         and GlobalFree on Windows. Remove FIXME.
2520
2521 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2522
2523         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2524         implementation for managed objects.
2525
2526 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2527
2528         * object.c: implemented code to be used for checking
2529         that no reference field overlaps with non-references.
2530
2531 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2532
2533         * threadpool.c: fix queue code to be compatible with the
2534         moving GC.
2535
2536 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2537
2538         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2539         in structures by throwing ArgumentNullException.
2540
2541         (emit_marshal_safehandle): Also when they are null parameters.
2542
2543         (emit_marshal_safehandle): Add support for ref
2544         SafeHandles parameters
2545
2546 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2547
2548         * profiler.c: updated to use the mono-dl API instead of
2549         gmodule.
2550
2551 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2552
2553         * profiler.c: updated to use the mono-dl dynamic loading
2554         API instead of gmodule.
2555
2556 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2557
2558         * profiler.c: use readlink, older versions of glib don't have
2559         g_file_read_link ().
2560
2561 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2562
2563         * profiler.c: try to detect the path to mono if libc fails to provide
2564         a useful name (bug #80286).
2565
2566 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2567
2568         Fix #80242
2569         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2570         instance, use the generic type definition instead.
2571         (ves_icall_Type_GetNestedTypes): Likewise.
2572         * class.c (mono_class_create_generic): Always set the
2573         nested_classes of a generic instance to NULL, even if the generic
2574         type definition has nested types.
2575
2576 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2577
2578         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2579         and fix on Linux.
2580         
2581 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2582
2583         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2584         my arguments were in the wrong order.   I also fixed the Windows
2585         version which seems to have had the same issue.
2586
2587         (mono_free_bstr): On Unix, this is g_free.
2588         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2589         conversions (for the tests in corlib to pass).
2590
2591 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2592
2593         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2594         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2595         exception if a ref SafeHandle in a struct has changed).
2596         
2597         (emit_struct_conv): Do not perform layout checks for classes
2598         derived from SafeHandle, as those are specially handled. 
2599
2600         (emit_object_to_ptr_conv): Add support for
2601         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2602
2603         (emit_marshal_safehandle): Implement conversion of return values
2604         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2605         
2606         * threads.c: WaitHandle now is compiled with two different handles
2607         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2608         for 2.0.
2609         
2610         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2611         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2612         these routines to cope with both kinds of fields.
2613
2614 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2615
2616         * metadata.c (mono_type_to_unmanaged): Handle the case where
2617         type->data.klass is a SafeHandle, and in that case, return the
2618         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2619         MONO_MARSHAL_CONV_SAFEHANDLE. 
2620
2621 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2622
2623         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2624         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2625         calling emit_marshal_object.
2626
2627         (emit_marshal_safehandle): Implement marshalling of
2628         SafeHandle parameters (no ref support yet).
2629
2630         (MarshalAction): Document the defines as I implement
2631         them for SafeHandle.
2632
2633         (emit_marshal_object): indentation police.
2634
2635         * class-internals.h: Define MonoSafeHandle.
2636         Add safehandle_class to MonoDefaults type.
2637
2638         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2639         list of classes to check for fields. 
2640
2641         * domain.c (mono_init_internal): Add SafeHandle to the list of
2642         mono_defaults loaded.
2643
2644 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2645
2646         Fix #80253
2647         * reflection.c (mono_reflection_bind_generic_parameters): If the
2648         generic type definition is a type builder, ensure that it is fully
2649         initialized before instantiating it.  Kill some dead code.
2650
2651 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2652
2653         * object.c: clear the loader_error () before loading
2654         more metadata stuff (bug #80258).
2655
2656 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2657
2658         * icall.c, icall-defs.h: type modifiers icalls for
2659         parameters and properties.
2660
2661 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2662
2663         * object.c, icall.c: fixed warnings.
2664
2665 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2666
2667         * marshal.c: fixed a couple of leaks and coding style in a few places.
2668
2669 2006-12-08  Dick Porter  <dick@ximian.com>
2670
2671         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2672         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2673         80173.
2674
2675 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2676
2677         * process.c: ProcessStartInfo may have only filename set and
2678         arguments can be NULL.
2679
2680 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2681
2682         * icall.c: fix leak found by Robert Jordan.
2683
2684 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2685
2686         * marshal.c, marshal.h: generate managed method to access an element
2687         of a multi-dimensional array.
2688
2689 2006-11-30  Paolo Molaro (lupus@ximian.com)
2690
2691         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2692
2693 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2694
2695         * icall.c: back out GetFields () fix until the serialization code is
2696         fixed to not depend on the incorrect behaviour.
2697
2698 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2699
2700         * profiler.c: provide defaults if none are set.
2701
2702 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2703
2704         * Makefile.am, attrdefs.h: new public header file with
2705         constants for attributes for use by embedders.
2706
2707 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2708
2709         * icall.c: GetFields () fix for bug #80064.
2710
2711 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2712
2713         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2714         removed long unused icalls.
2715
2716 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2717   
2718         * marshal.c: 
2719                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2720                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2721                 can be generated without a delegate class.
2722                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2723         
2724         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2725
2726 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2727
2728         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2729         #80069.
2730
2731 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2732
2733         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2734         icall-def.h: added icalls needed by System.GC.
2735
2736 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2737
2738         * loader.c: ensure the class in catch clauses is handled
2739         correctly for generics methods (fixes bug#79980).
2740
2741 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2742
2743         * monitor.h, monitor.c: added mono_locks_dump () function
2744         to help debug deadlocks involving managed locks.
2745
2746 2006-11-13  Dick Porter  <dick@ximian.com>
2747
2748         * file-io.c (get_file_attributes): If the file is a symlink try
2749         and get the stat data for the target, but also add the
2750         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2751         the specs for the windows symlink support, but will probably have
2752         to be reworked when I have test data from a vista machine.  Fixes
2753         bug 79887.
2754
2755 2006-11-13  Dick Porter  <dick@ximian.com>
2756
2757         * gc.c (mono_domain_finalize): 
2758         * marshal.c (mono_delegate_begin_invoke): 
2759         * threadpool.c (socket_io_init, mono_thread_pool_init)
2760         (mono_thread_pool_finish): 
2761         * monitor.c (mono_monitor_try_enter_internal): 
2762         * threads.c (mono_thread_resume, mono_thread_init)
2763         (mono_thread_suspend_all_other_threads)
2764         (mono_thread_execute_interruption): 
2765         * appdomain.c (mono_domain_unload): Check for NULL error returns
2766         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2767         75733.
2768
2769 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2770
2771         * process.c
2772         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2773         Only close the handle if the value of the handle is not
2774         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2775         robust.
2776
2777         Improvement for #75733, so that we do not run into this problem. 
2778
2779         
2780         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2781         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2782         internal variables.  Fixes #79462 
2783         
2784
2785 2006-11-09  Dick Porter  <dick@ximian.com>
2786
2787         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2788         Use poll() not select().  Fixes bug 79397.
2789
2790 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2791
2792         Fix #79872
2793         * assembly.c (mono_assembly_load_from_full): Check that the given
2794         image has an assembly manifest.
2795
2796 2006-11-09  Ankit Jain  <jankit@novell.com>
2797
2798         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2799         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2800         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2801
2802 2006-11-07  Dick Porter  <dick@ximian.com>
2803
2804         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2805         Put the old resolver behaviour back for pre-2.0 profiles.
2806
2807 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2808
2809         * threadpool.c: precise GC and locking fixes.
2810
2811 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2812
2813         * class.c: don't load types that have an explicit unaligned
2814         managed reference. Provide better info in the TypeLoad exception.
2815         Part of the fix for bug #79744.
2816         * object.c: use the correct check for class type load issues.
2817
2818 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2819
2820         * class.c: enforce alignment of fields with managed references
2821         even when Pack=1 is forced by the user (bug #77788).
2822
2823 2006-11-03  Dick Porter  <dick@ximian.com>
2824
2825         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2826         If the address reverse lookup fails, return it as the hostname
2827         anyway.  Fixes bug 79721.
2828
2829 2006-11-03  Dick Porter  <dick@ximian.com>
2830
2831         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2832         Fix build on Windows.
2833
2834 2006-11-02  Dick Porter  <dick@ximian.com>
2835
2836         * icall-def.h: 
2837         * object-internals.h: 
2838         * exception.c (mono_get_exception_thread_interrupted): 
2839         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2840         Fixes bug 74525.
2841
2842         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2843         Check for pending Thread.Interrupt.
2844
2845 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2846         * loader.c: Fixed bug 79684.
2847
2848 2006-10-27  Dick Porter  <dick@ximian.com>
2849
2850         * file-io.c (get_file_attributes): Force symlinks to directories
2851         to be returned as a regular file.  Fixes bug 79733.
2852 2006-10-26  Dick Porter  <dick@ximian.com>
2853
2854         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2855         CreateFile to open a directory then we need to set the
2856         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2857
2858 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2861         friends.
2862
2863 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2864
2865         * sgengc.c: small cleanup of timer code.
2866
2867 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2868
2869         * sgen-gc.c: fix some warnings and start adding support for
2870         complete object removal on domain unload.
2871
2872 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2873
2874         * assembly.c: build_assembly_name should not consider a version
2875         number without build or revision number invalid. Fixes bug #79715.
2876
2877 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2878
2879         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2880         call kernel32 function OutputDebugString directly.
2881         
2882         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2883         
2884 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2885
2886         * reflection.c: small cleanup, using a function to insert a MonoString
2887         in the string heap.
2888
2889 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2890
2891         * reflection.c: moving GC fixes.
2892
2893 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2894
2895         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2896         all the objects with finalizers belonging to an unloading appdomain.
2897
2898 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2899
2900         * sgen-gc.c: added ability to allocate even when the nursery is fully
2901         pinned and fixed a couple of bugs.
2902
2903 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2904
2905         * threads.h: Revert the last change for now.
2906
2907         * threads.h (mono_thread_get_pending_exception): Rename this to
2908         mono_thread_get_undeniable_exception ().
2909
2910 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2911
2912         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2913         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2914         when fname does not refer to valid assembly. This result in a more
2915         meaningful error message.
2916         * exception.c: added mono_get_exception_bad_image_format2 which 
2917         constructs a BadImageFormatException using the ctor taking a custom
2918         message and the file name. Passing in a NULL msg results in a default
2919         message.
2920         * exception.h: define mono_get_exception_bad_image_format2 function.
2921         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2922         when file name pointed to an invalid IL image. Use 
2923         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2924         as this results in a more meaningful error message.
2925
2926 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2927
2928         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2929         #79465.
2930
2931 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2932
2933         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2934         consistency with the other _size functions.
2935         (mono_type_stack_size): Ditto.
2936
2937         * class.c object.c icall.c: Fix warnings caused by the above change.
2938
2939         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2940
2941         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2942
2943         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2944
2945 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2946
2947         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2948         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2949         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2950         threadpool.h, threads-types.h: mark more internal functions.
2951
2952 2006-10-11  Dick Porter  <dick@ximian.com>
2953
2954         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2955         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2956         reproduce the bug even before applying the fix.)
2957
2958 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2959
2960         * reflection.c: allow retrieving attributes for arguments in generic
2961         methods (bug #79241).
2962
2963 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2964
2965         * debug-mono-symfile.c: properly check fopen () result (found by
2966         coverity).
2967
2968 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2969
2970         * reflection.c: make error message clearer and fixed two
2971         issuelets found by Coverity.
2972
2973 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2974
2975         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2976
2977 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2978
2979         * object-internals.h, gc-internal.h, profiler-private.h:
2980         mark internal functions.
2981
2982 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2983
2984         * reflection.c: put data in the text section.
2985         * icall.c: recognize more types in type_from_typename ().
2986         * process.c, marshal.c: added some GC FIXMEs.
2987
2988 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2989
2990         * loader.c: check for NULL before initializing.
2991
2992 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2993
2994         * gc.c (finalizer_thread): Use a non-alertable wait here.
2995
2996         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2997         until the correct solution is found.
2998
2999 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3000
3001         * reflection.c (mono_module_get_object): Avoid an assert when operating on
3002         modules with no metadata. Fixes #79596.
3003
3004         * image.c (load_metadata_ptrs): Put back the error message when
3005         the #- heap is encountered since the support is not complete yet.
3006
3007 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
3008
3009         * gc.c: do not allow the user to SuppressFinalize () a
3010         delegate because it would leak the trampoline if present.
3011
3012 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
3013
3014         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
3015         PropertyPtr table.
3016
3017 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
3018
3019         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
3020
3021         * metadata.c (mono_metadata_get_param_attrs): Ditto.
3022
3023         * row-indexes.h: Add definitions for *Ptr tables.
3024
3025         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
3026
3027         * metadata.c (mono_metadata_translate_token_index): New helper function to
3028         translate table indexes used in uncompressed metadata.
3029         (mono_metadata_decode_table_row): Ditto.
3030         (mono_metadata_decode_table_row_col): Ditto.
3031
3032         * metadata.c: Add table schema for *Ptr tables.
3033
3034         * class.c loader.c: Use the new helper function to access the affected metadata
3035         tables.
3036         
3037         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
3038         #38532.
3039         
3040 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
3041
3042         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
3043         sequences which can be unbounded in size. Fixes #79583.
3044
3045 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
3046
3047         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
3048         static initialization.
3049
3050         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
3051
3052         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
3053
3054         * domain.c (mono_domain_free): Free up type_init_exception_hash.
3055
3056         * object.c (mono_runtime_class_init): Implement correct semantics when a static
3057         ctor fails, i.e. throw the same exception on subsequent accesses.
3058         
3059 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
3060
3061         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
3062         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
3063         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
3064         Handle marshalling of interfaces and VARIANTs contained in structs.
3065         
3066         Code is contributed under MIT/X11 license.
3067         
3068 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
3069
3070         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
3071         
3072         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
3073         mempool.
3074
3075 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3076
3077         * console-io.c: ignore previous SIGINT handler.
3078
3079 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
3080
3081         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
3082         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
3083         #79460, #79461, #79485.
3084
3085         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
3086
3087         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
3088         #79217.
3089
3090 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
3091
3092         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
3093         could be generated from it.
3094
3095 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
3096
3097         * rand.c: fix read loop to correctly handle EINTR.
3098
3099 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3100
3101         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
3102         internal calls are defined to keep methods closer to the declaring
3103         type and allow a significant reduction in runtime relocations and
3104         memory usage.
3105
3106 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
3107
3108         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
3109         exception message to have FileNotFoundException use the default
3110         assembly load error message. Fixes bug #79426.
3111         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
3112
3113 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3114
3115         * threadpool.c: (start_thread_or_queue) use the root domain when
3116         creating the thread instead of the async object one.
3117
3118 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
3119
3120         * class.c, object.c, class-internals.h, reflection.c:
3121         for arrays, store element_size inside MonoClass (speedup
3122         for array object creation).
3123
3124 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
3125
3126         * icall.c: fixed CodeBase to use the file name and not the module
3127         name (bug #79365).
3128
3129 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3130
3131         * mono-debug.c, mono-debug.h: export find_method as
3132         mono_debug_find_method ().
3133
3134 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
3135
3136         * debug-helpers.c, class-internals.h: added a few functions useful
3137         when debugging under gdb.
3138
3139 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3140
3141         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
3142         characters that need special handling.
3143
3144 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
3145
3146         * mono-config.c: make the os/cpu specification more flexible,
3147         allowing lists and negation.
3148
3149 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
3150
3151         * marshal.c: COM Interop fixes. Handle case where method->klass.
3152         is interface. Handle BSTR/MonoString when null. Use CDECL as 
3153         calling convention on non-windows platforms. This is for
3154         compatibility with XPCOM and MainWin COM.
3155         
3156         Code is contributed under MIT/X11 license.
3157         
3158
3159 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
3160
3161         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
3162         correctly. Fixes #79217.
3163
3164         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
3165
3166 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
3167
3168         * mono-config.c: allow both an os and cpu attribute for dllmap
3169         and dllentry elemnets to enable a single config file to be used
3170         for multiple architectures.
3171
3172 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
3173
3174         * loader.c: MonoLoaderError was cleared too soon on load failure.
3175         Fixes bug #79424.
3176
3177 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
3178
3179         * icall.c: use the defining class vtable when accessing a
3180         static field, not a pobblibly derived class.
3181
3182 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
3183
3184         * icall.c string-icalls.c: Remove references to unicode.h.
3185
3186         * unicode.h unicode.c Makefile.am: Remove these unused source files.
3187
3188         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
3189
3190         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
3191         indicating the image where custom marshaller types should be looked up.
3192         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
3193         custom marshallers, instead of corlib. Fixes #79425.
3194
3195 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
3196
3197         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
3198
3199 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
3200
3201         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
3202         Implement Environment.ProcessorCount.
3203         
3204         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
3205         Implement Environment.ProcessorCount.
3206         
3207         * icall.c: 
3208         Add Environment.ProcessorCount icall.
3209         
3210         Patch by Jason McFall.
3211
3212 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3213
3214         * assembly.c: don't append .exe/.dll when the filename already contains
3215         one of those extensions.
3216
3217 2006-09-12  Martin Baulig  <martin@ximian.com>
3218
3219         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
3220         to array interfaces.
3221
3222 2006-09-11  Martin Baulig  <martin@ximian.com>
3223
3224         * reflection.c (mono_image_build_metadata): Create the
3225         MethodImpl's after emitting all types and methods, so we don't
3226         need another fixup pass for them.
3227
3228 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
3229
3230         * class.c (mono_class_from_name_case): Fix regression introduced by the last
3231         change.
3232
3233 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
3234
3235         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
3236         unload.
3237
3238 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
3239
3240         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
3241         args is not set. Fixes #78926.
3242
3243 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
3244
3245         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
3246
3247         * image.c (load_class_names): Move this to class.c, and rename it to 
3248         'mono_image_init_name_cache'.
3249         (load_modules): Fix a warning.
3250
3251         * class.c icall.c image.c: Initialize image->name_cache lazily.
3252
3253         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
3254         on its name using information in the AOT file.
3255
3256         * class.c (mono_class_from_name): Use the new hook function.
3257
3258 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
3259
3260         * reflection.c (mono_param_get_objects): Handle enum default parameter values
3261         correctly.
3262
3263         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
3264         Fixes #79289.
3265         
3266 2006-09-06  Martin Baulig  <martin@ximian.com>
3267
3268         * icall.c (mono_lookup_internal_call): Small fix.
3269
3270 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3271
3272         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3273         double g_free.
3274
3275 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3276
3277         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3278         when --debug is specified.
3279
3280 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3281
3282         * class.c (setup_generic_array_ifaces): Fix a warning.
3283
3284 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3285
3286         * Temporarily remove the patch to assemly.c that checks the
3287         assembly versions as it breaks our gacutil.
3288
3289 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3290
3291         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3292
3293         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3294         a net 1.0 runtime.
3295
3296         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3297         created using the default ctor. Fixes #79152.
3298         (mono_string_builder_to_utf16): Ditto.
3299
3300 2006-09-01  Martin Baulig  <martin@ximian.com>
3301
3302         Fix handling of the generic array interfaces.
3303
3304         * class-internals.h
3305         (MonoDefaults): Removed `generic_array_class' and added
3306         `generic_ilist' class.
3307
3308         * class.c
3309         (mono_bounded_array_class_get): Add the new generic array interfaces.
3310         (setup_generic_array_ifaces): New static method; create vtable
3311         entries for each method in the generic array interfaces.
3312
3313         * metadata.c
3314         (select_container): Allow "parent-less" generic methods.
3315
3316         * marshal.c
3317         (mono_marshal_get_generic_array_helper): New public method.
3318
3319         * icall.c
3320         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3321         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3322         moved the interncall into System.Array.
3323
3324 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3325
3326         A few more cases of avoiding work on types with ->byref set.
3327         Has the real fix for #79238
3328         * icall.c (is_generic_parameter): New helper.
3329         (ves_icall_Type_GetGenericParameterPosition): Use it.
3330         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3331         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3332         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3333         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3334         reference types.
3335         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3336         reference types.
3337         (ves_icall_Type_get_IsGenericInstance): Likewise.
3338         (ves_icall_Type_get_IsGenericType): Likewise.
3339
3340 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3341
3342         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3343         class if possible.
3344
3345         * mempool.h (mono_mempool_get_allocated): New helper function.
3346
3347         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3348         change.
3349
3350         * mempool.c: Fix warnings and the calculation of stats.
3351
3352         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3353
3354         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3355
3356         * loader.c (mono_get_method_from_token): Update method_count stat.
3357
3358         * class-internals.h (MonoStats): Add some stats.
3359
3360 2006-08-31 Robert Jordan  <robertj@gmx.net>
3361
3362         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3363         with managed variants.
3364         All code is contributed under the MIT/X11 license.
3365         
3366 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3369         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3370
3371         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3372
3373         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3374         with cycles in classes.
3375
3376         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3377
3378         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3379         missing a [MarshalAs] directive. Fixes #79203.
3380
3381         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3382         klass->marshal_info. Fixes #79217.
3383
3384 2006-08-30  Martin Baulig  <martin@ximian.com>
3385
3386         Committing a patch from Joachim Ante <joe@otee.dk>:
3387         Add support for binary data symbol stores.
3388
3389         * debug-mono-symfile.c
3390         (mono_debug_open_mono_symbol_file): Renamed into
3391         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3392         arguments.
3393
3394         * mono-debug.c
3395         (mono_debug_open_image): Added `raw_contents' and `size' args.
3396         (mono_debug_init_2_memory): New public function.
3397
3398 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3399
3400         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3401
3402 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3403
3404         * appdomain.c: implement support for ShadowCopyFiles.
3405
3406 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3407
3408         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3409         when value is NULL (and should remove CID #51).
3410
3411 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3412
3413         * image.c: moved 2 functions to ../utils.
3414
3415 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3416
3417         * gc.c: cope with the target object of a GC handle being NULL
3418         (bug #78877).
3419
3420 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3421
3422         * class.c: recursively check parent's explicit implementations
3423         of interface methods (fixes bug #79125).
3424
3425 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3426
3427         * filewatcher.c: Avoid warnings when building, do not redefine
3428         constants that are defined.
3429
3430         Remove warnings.
3431
3432 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3433
3434         * image.c: don't fail when the link points to an absolute path.
3435
3436 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3437
3438         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3439         Fix CID #3.
3440
3441 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3442
3443         * image.c (full_path): A new method used to obtain the actual path
3444         of an assembly even in the presence of symbolic links.  
3445
3446         This is necessary for the case where we are running a binary that
3447         has been GACed, but we are using the "published" path name
3448         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3449         file in the GAC.
3450
3451         This was the source of the failure for the `xsp' command with the
3452         recent AppDomain changes, as far as the runtime was concerned,
3453         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3454         $prefix/mono/gac/blah/version/blah.exe.
3455
3456         (do_mono_image_open): use full path
3457
3458 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3459
3460         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3461
3462 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3463
3464         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3465         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3466
3467 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3468
3469         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3470         small structures. Fixes #78990.
3471
3472 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3475
3476         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3477
3478 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3479
3480         * appdomain.c:
3481         * marshal.c: don't load all the assemblies from a domain into newly
3482         created ones. The new domains might have different rules and load
3483         assemblies from different locations. Fixes bug #76757.
3484
3485         Patch by Lluis. Conflicts resolved by Brian Crowell.
3486
3487 2006-08-16  Alp Toker  <alp@atoker.com>
3488
3489         * socket-io.c: First half of the fix for #79084.
3490         Set sa_size to the length of the content, not that of the struct.
3491         Don't add NULL suffix to the content, this should be done in
3492         managed code if needed.
3493
3494 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3495
3496         Fix part of #79012
3497         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3498         mono_metadata_parse_type returns NULL.
3499
3500 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3501
3502         * normalization-tables.h : new file for string normalization data.
3503         * locales.c, locales.h, icall.c :
3504           added load_normalization_resource() for string normalization,
3505           and icall as well.
3506         * Makefile.am : added normalization-tables.h to the sources.
3507
3508 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3509
3510         * marshal.c: Add more helper functions to reduce code duplication and use them
3511         everywhere.
3512
3513 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3514
3515         * marshal.c: Fix non-x86 stdcall warnings.
3516         
3517         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3518         them everywhere.
3519
3520 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3521
3522         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3523         type check on multi-dimensional arrays. Fixes #79000.
3524
3525 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3526
3527         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3528         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3529         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3530         * class-internals.h: add is_com_object to class structure.
3531         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3532         null checks to COM object marshalling. Fix .ctor call on RCW.
3533         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3534         
3535         All code is contributed under the MIT/X11 license.
3536
3537 2006-08-09  Dick Porter  <dick@ximian.com>
3538
3539         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3540         racing mono_monitor_allocator_lock() somewhere, so don't delete
3541         the critical section for now.  Found by running and exiting
3542         monodevelop.
3543
3544 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3545
3546         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3547         (ves_icall_System_ComObject_FindInterface): Ditto.
3548         (ves_icall_System_ComObject_CacheInterface): Ditto.
3549
3550         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3551         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3552
3553 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3554
3555         * threadpool.c: treat pipes from process asynchronous reads as sockets
3556         when reading from them, so we get select/poll or epoll to wait for
3557         data.
3558
3559 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3560
3561         * loader.c: Fix a typo (CID #233) in the null check.
3562
3563 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3566         Hopefully fixes #78949.
3567         
3568         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3569         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3570         bytes. Fixes #78972.
3571
3572 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3573
3574         * filewatcher.c: we need to set errno here.
3575
3576 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3577
3578         * filewatcher.c: let Win32Exception get the error value.
3579
3580 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3581
3582         * filewatcher.c: translate errno into win32 errors for Win32Exception
3583         to know what happened.
3584
3585 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3586
3587         * threadpool.c: Fix more warnings.
3588
3589         * assembly.c (search_loaded): Fix warnings.
3590
3591         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3592         (mono_async_invoke): Ditto.
3593
3594 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3595
3596         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3597         entries for __ComObject type in addition to ComImport types.
3598         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3599         about hash table.
3600         
3601         All code is contributed under the MIT/X11 license.
3602
3603 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3604
3605         * image.c: avoid tentative loading of modulerefs that contain
3606         no metadata (P/Invoke library names).
3607
3608 2006-07-28  Dick Porter  <dick@ximian.com>
3609
3610         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3611         mono_loader_lock() somewhere, so don't delete the critical section
3612         for now.  Found by running and exiting monodevelop.
3613
3614 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3615
3616         * filewatcher.c: define the inotify syscalls when we're building on
3617         linux and have sys/syscall.h. The build system might not have support
3618         for inotify but the target system might have it.
3619
3620 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3621
3622         * domain.c: Documentation updates.
3623
3624         * loader.c (mono_free_method): Do not release the method
3625         information if we are being profiled, as profilers will use this
3626         information at shut down to present some data to the user.
3627
3628         This is needed so that the profiler does not crash, as the
3629         profiler tends to keep MonoMethods around, and they might become
3630         invalid if we free these.
3631
3632         (mono_get_method_constrained): Return the original CIL stream
3633         method as well, so verification can be performed against it.
3634
3635 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3636
3637         * filewatcher.[ch]: support for inotify file system watcher.
3638         * icall.c: add new internal calls for the inotify file system watcher.
3639
3640 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3641
3642         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3643         #78888.
3644
3645 2006-07-20  Dick Porter  <dick@ximian.com>
3646
3647         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3648         warning.
3649
3650 2006-07-20  Dick Porter  <dick@ximian.com>
3651
3652         * threads.c (start_wrapper): Do the thread cleanup while we still
3653         hold a reference to its object.  Fixes bug 78123.
3654
3655 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3656
3657         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3658         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3659           "managed-to-managed".
3660         * icall.c: Redirect string constructors that take sbyte* to
3661           ves_icall_System_String_ctor_RedirectToCreateString.
3662         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3663           to CreateString () methods with matching signature.
3664         * reflection.c: Use original security informations for
3665           MONO_WRAPPER_MANAGED_TO_MANAGED.
3666         * security-manager.c: Use original security informations for
3667           MONO_WRAPPER_MANAGED_TO_MANAGED.
3668         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3669           that is a placeholder and only its address should be used.
3670         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3671           that is a placeholder and only its address should be used.
3672
3673 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3674
3675         Begin implementing COM Interop.
3676         * appdomain.c: Increment corlib version.
3677         * class.c: Set ComImport classes' parent to __ComObject.
3678         * loader.c: Mark cominterop methods as such.
3679         * domain.c: Add __ComObject class to MonoDefaults structure.
3680         * image.c: Add 2 hashtables to the image for COM Interop related methods
3681         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3682         using the mempool allocator
3683         
3684         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3685         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3686         declaration for mono_metadata_type_dup_mp.
3687         
3688         * debug-helpers.c: Added strings for two additional wrapper types
3689         * object.c: Create proxy objects for ComImport classes
3690         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3691         and added __ComObject class to MonoDefaults structure.
3692         
3693         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3694         MonoComInteropProxy and MonoComObject.
3695         
3696         * marshal.c: Added support for COM Interop
3697         (signature_cominterop): Converts managed signature to corresponding
3698         unmanaged COM signature.
3699         (cominterop_get_function_pointer): gets unmanaged function pointer via
3700         COM object vtable
3701         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3702         (cominterop_get_method_interface): returns interface type that method is defined on
3703         (mono_mb_emit_cominterop_call): emits native call to function pointer
3704         gotten from vtable
3705         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3706         that matches signature of unmanaged function.
3707         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3708         (cominterop_get_invoke): forwards call from proxy to __ComObject
3709         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3710         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3711         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3712         
3713         * marshal.h: Added Marshal icall declarations.
3714         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3715         so we can access them in finalizer
3716         
3717 2006-07-14  Dick Porter  <dick@ximian.com>
3718
3719         * object.c (mono_type_initialization_cleanup): Fix a race
3720         condition by temporarily commenting out the critical section
3721         deletion.
3722
3723 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3724
3725         * reflection.c (create_custom_attr): Fix some warnings.
3726         (create_custom_attr_data): Ditto.
3727         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3728         types. Fixes #78855.
3729
3730 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3731
3732         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3733
3734         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3735
3736 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3737
3738         * reflection.c (resolve_object): Add support for DynamicMethod.
3739
3740         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3741         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3742
3743 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3744
3745         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3746         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3747
3748 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3749
3750         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3751         Fixes #77888.
3752
3753 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3754
3755         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3756         slightly: remove a shadow local variable.
3757
3758 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3759
3760         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3761         definition that introduces the virtual function slot.
3762         Also fix Coverity #105.
3763
3764 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3765
3766         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3767         for dynamic assemblies. Fixes #78724.
3768
3769 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3770
3771         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3772         Fixes #78722.
3773
3774 2006-06-21  Martin Baulig  <martin@ximian.com>
3775
3776         * reflection.c
3777         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3778         fixes #76484.
3779
3780 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3781
3782         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3783
3784 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3785
3786         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3787         nor TYPEREFs.
3788         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3789         Inflate result if necessary.
3790         (mono_class_get_full): Remove old version.  Rename from
3791         'mono_class_get' and add 'context' argument.  Pass it to
3792         ..._create_from_typespec.
3793         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3794         (mono_ldtoken): Revert change below.
3795
3796 2006-06-20  Martin Baulig  <martin@ximian.com>
3797
3798         * class.c (mono_ldtoken): Don't pass the generic context to
3799         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3800
3801 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3802
3803         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3804         and later freeing it. Fixes #78638.
3805
3806 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3807
3808         * icall.c (mono_class_get_throw): Revert over-zealous error
3809         throwing, the caller for mono_class_get_throw will cope with
3810         errors when classes are not properly initialized already.
3811
3812         The code still copes with loader exceptions though.
3813
3814         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3815         
3816 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3817
3818         Fixes the `make run1' version of RuntimeAbort (to be commited,
3819         source is in Bugzilla).
3820         
3821         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3822         FALSE on class loading failure instead of returning true.
3823
3824         * class.c (mono_class_create_from_typedef): It is possible for
3825         mono_metadata_interfaces_from_typedef_full to fail if a class is
3826         not found, cope with this.
3827         
3828
3829 2006-06-14  Dick Porter  <dick@ximian.com>
3830
3831         * socket-io.c: 
3832         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3833         4.1.1
3834
3835 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3836
3837         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3838
3839 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3840
3841         * icall.c: Another fix for building mono in Visual Studio.
3842
3843 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3844
3845         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3846         
3847 2006-06-09  Martin Baulig  <martin@ximian.com>
3848
3849         * debug-mono-symfile.c: Put this back and really fix it this
3850         time. Sorry for all the trouble.
3851
3852 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3853
3854         * icall.c (mono_class_get_throw): Fix a warning.
3855         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3856         ReflectionTypeLoadException if needed. Fixes #78606.
3857
3858         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3859         (mono_class_init): Ditto.
3860
3861         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3862         ref_only exceptions.
3863         (mono_loader_clear_error): Make this work even if there is no error.
3864
3865 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3866
3867         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3868         Marshal.GetComSlotForMethodInfo using internal call.
3869
3870 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3871
3872         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3873         a function for signalling it.
3874
3875         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3876         a referenced assembly is not found.
3877
3878         * loader.c (mono_loader_error_prepare_exception): Add support for 
3879         LOADER_ERROR_ASSEMBLY. Fix formatting.
3880
3881 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3882
3883         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3884         for VARIANT marshalling on windows and increment corlib version
3885         since Variant struct was added.
3886
3887 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3888
3889         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3890         stack trace line information:
3891
3892         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3893         (Martin) when looking up B which is between A and C, return A not C.
3894
3895         Bug is #78573.
3896
3897         Thanks to Alexander Olk for tracking this down.
3898
3899 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3900
3901         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3902         
3903         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3904         avoid clobbering its value.
3905         (mono_string_to_lpstr): Fix a warning on windows.
3906
3907 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3908
3909         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3910
3911         * reflection.c loader.c: Removed references to 'dummy' flag.
3912
3913         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3914
3915         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3916         it gets GC tracking.
3917
3918         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3919         GC tracking.
3920         
3921         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3922
3923         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3924
3925         * appdomain.c: Bump corlib version.
3926
3927 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3928
3929         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3930         CEE_STIND_REF when working with object references.
3931
3932 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3933
3934         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3935         Fixes #78539.
3936
3937 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3938
3939         * loader.c (method_from_memberref): Fix argument value for
3940         mono_loader_set_error_method_load (I was passing the MonoClass
3941         instead of the class name char *).
3942
3943 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3944
3945         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3946         CEE_STIND_REF when working with object references.
3947
3948 2006-05-30  Martin Baulig  <martin@ximian.com>
3949
3950         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3951         mono_method_full_name() change and replace the ':' with a '.'
3952         here.
3953
3954 2006-05-30  Martin Baulig  <martin@ximian.com>
3955
3956         * debug-mono-symfile.c
3957         (mono_debug_symfile_lookup_location): Fix the algorithm:
3958         when looking up B which is between A and C, return A not C.
3959
3960 2006-05-29  Martin Baulig  <martin@ximian.com>
3961
3962         * mono-debug.h
3963         (MonoDebugMethodInfo): Make the typedef public.
3964         (MonoDebugSourceLocation): New public struct.
3965
3966         * mono-debug.c
3967         (mono_debug_source_location_from_address): Removed.
3968         (mono_debug_source_location_from_il_offset): Removed.
3969         (mono_debug_il_offset_from_address): Removed.
3970         (mono_debug_address_from_il_offset): Removed.
3971         (mono_debug_lookup_method): New public function.
3972         (mono_debug_lookup_source_location): New public function; replaces
3973         the old mono_debug_source_location_from_*() functions; see the
3974         inline documentation.
3975         (mono_debug_free_source_location): New public function.
3976         (mono_debug_print_stack_frame): New public function; see the
3977         inline documentation.
3978
3979         * debug-mono-symfile.c
3980         (mono_debug_find_source_location): Renamed into
3981         mono_debug_symfile_lookup_location(); only take a
3982         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3983         documentation.
3984         (mono_debug_find_method): Renamed into
3985         mono_debug_symfile_lookup_method().
3986
3987 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3988
3989         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3990         returned by mono_image_open_full ().
3991
3992         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3993         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3994         #78517.
3995
3996         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3997         #78518.
3998
3999 2006-05-27  Miguel de Icaza  <miguel@novell.com>
4000
4001         * class.c (mono_class_from_typeref): handle missing images
4002         earlier, deals with bug #78418.   Refactor code; 
4003
4004         Fix a warning introduced in my previous commit (some stale code
4005         from before I revisited my patch).
4006
4007         * class.c (mono_class_create_from_typedef): On failure, remove the
4008         class from the MonoImage->class_cache as the class is not
4009         initialized;   Fixes the leak pointed out by Paolo.
4010
4011 2006-05-25  Dick Porter  <dick@ximian.com>
4012
4013         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
4014         DeleteCriticalSections until I figure out which one may still be
4015         sometimes locked when mono_thread_cleanup is called.
4016
4017 2006-05-24  Dick Porter  <dick@ximian.com>
4018
4019         * threads.c (mono_thread_cleanup): Move the threading cleanup out
4020         of mono_thread_manage and back into its own function, so it can be
4021         called after the finalizer thread has finished.
4022
4023         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
4024
4025 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
4026
4027         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
4028         Fixes #78495.
4029
4030         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
4031         with non-blittable elements.
4032         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
4033
4034 2006-05-24  Martin Baulig  <martin@ximian.com>
4035
4036         * mono-debug-debugger.h (MonoDebuggerEvent): Added
4037         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
4038
4039         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
4040         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
4041         `mono_debugger_event_handler' to NULL.
4042
4043 2006-05-24  Martin Baulig  <martin@ximian.com>
4044
4045         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
4046
4047 2006-05-24  Martin Baulig  <martin@ximian.com>
4048
4049         * mono-debug-debugger.h
4050         (mono_debugger_create_notification_function): Added
4051         `MonoCodeManager *' argument.
4052
4053 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
4054
4055         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
4056
4057 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
4058
4059         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
4060         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
4061         implementation.
4062
4063 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
4064
4065         * icall.c: precise GC support: objects can't be stored in unmanaged
4066         memory anymore, even if they are kept alive by other references: since
4067         they can move the GC needs to be able to always find them.
4068
4069 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
4070
4071         * object.c: precise GC support for static fields. Support
4072         for moving GCs: write barriers and pinned allocation for interned
4073         strings.
4074
4075 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
4076
4077         * domain.c, domain-internals.h: precise GC support for the MonoDomain
4078         structure.
4079
4080 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
4081
4082         * class.c, gc.c: sgen and precise GC updates.
4083
4084 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
4085
4086         * marshal.h, marshal.c: added write barrier wrapper and precise type
4087         fixes.
4088
4089 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
4090
4091         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
4092         support.
4093
4094 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
4095
4096         * reflection.c: precise and sgen GC updates.
4097
4098 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
4099
4100         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
4101
4102 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
4103
4104         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
4105
4106 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
4107
4108         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
4109         MONO_TYPE_OBJECT. Fixes #78462.
4110
4111 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
4112
4113         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
4114         and blittable types.
4115
4116 2006-05-17  Miguel de Icaza  <miguel@novell.com>
4117
4118         * class.c (mono_class_get_exception_for_failure): Implement parts
4119         of a TODO: if the loader error is set (instead of the class
4120         error), we return a Loader exception that can be properly thrown
4121         elsewhere.
4122
4123         This was exposed by some Winforms 2.0 code that I tried to run
4124         (Atsushi pointed me to it).
4125
4126 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
4127
4128         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
4129         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
4130         
4131         * marshal.c (emit_marshal_vtype): Add limited support for 
4132         UnmanagedType.LPStruct. Fixes #78427.
4133
4134         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
4135         Applied a patch from kangaroo to fix #77523.
4136
4137 2006-05-17  Martin Baulig  <martin@ximian.com>
4138
4139         * threads.c
4140         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
4141         (debugger_thread_created): Removed.
4142         (debugger_thread_exited): Removed.
4143
4144 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
4145
4146         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4147
4148         * object-internals.h (MonoReflectionResource): Sync with managed version.
4149
4150 2006-05-12  Wade Berrier <wberrier@novell.com>
4151
4152         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
4153
4154 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
4155
4156         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
4157         functions try to allocate from the image mempool.
4158
4159 2006-05-12  Dick Porter  <dick@ximian.com>
4160
4161         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
4162
4163 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
4164
4165         * object.c: The FieldGetter and FieldSetter methods require the full
4166         name of the class, not only the name. Fixes bug #78277.
4167
4168 2006-05-11  Miguel de Icaza  <miguel@novell.com>
4169
4170         * loader.c (method_from_memberref): Do not pass the NULL klass to
4171         mono_loader_set_error_() methods.  Pass the non-NULL value
4172         (class). 
4173
4174 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
4175
4176         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
4177         (mono_assembly_close): Null out assembly->image->references after freeing it.
4178
4179         * image.c (mono_image_close): Free image->references.
4180         
4181         * reflection.c (mono_image_basic_init): Fix a small memory leak.
4182
4183 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4184
4185         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
4186         before checking if it's NULL (g_assert).
4187
4188 2006-05-10  Martin Baulig  <martin@ximian.com>
4189
4190         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
4191         I thought I already killed that two months ago, but now it somehow reappeared.
4192
4193 2006-05-10  Martin Baulig  <martin@ximian.com>
4194
4195         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
4196
4197 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
4198
4199         * reflection.c: Allocate memory for dynamically created methods in the image
4200         mempools.
4201
4202 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4203
4204         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
4205         don't use the ad pointer before checking if it's NULL (g_assert).
4206
4207 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
4208
4209         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
4210         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
4211
4212         * marshal.c: Allocate all signatures from mempools.
4213
4214         * marshal.c: Allocate some more signatures from mempools.
4215
4216 2006-05-09  Miguel de Icaza  <miguel@novell.com>
4217
4218         * object.c (mono_load_remote_field): The code used to provide a
4219         temporary variable for returning results if the user did not
4220         provide a result pointer.  But our temporary variable was allocted
4221         on the satck.
4222
4223         Fix calling code to always pass a result area.   Coverity ID 103.
4224
4225 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
4226
4227         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
4228         value, not the old. Fixes #78312.
4229         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
4230
4231         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
4232         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
4233         per-image cache.
4234
4235         * assembly.c (mono_assembly_close): Free image->references.
4236
4237         * assembly.c (mono_assembly_names_equal): Fix a warning.
4238         (mono_assemblies_cleanup): Cleanup more global data.
4239
4240         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
4241
4242         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
4243         ptr_cache and image->modules.
4244
4245         * image.c (mono_image_init): Allocate array_cache lazily.
4246         
4247 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4248
4249         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
4250         behavior was changed recently and has bad side effects.
4251
4252 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
4253
4254         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
4255         
4256         * assembly.c (mono_assembly_close): Remove a debug printf.
4257
4258         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
4259
4260         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
4261         to also allow for temporary references between mono_image_open ()/close ().
4262
4263         * domain.c (get_runtimes_from_exe): Add a FIXME.        
4264
4265 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4266
4267         * marshal.c: Fix support for dynamic methods.
4268
4269         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4270
4271         * marshal.c (mono_marshal_cleanup): New cleanup function.
4272
4273         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4274         image mempools.
4275
4276         * class.c (mono_class_init): Fix leaking class->nested_classes.
4277
4278         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4279
4280         * image.c (mono_image_init): Initialize the new cashes.
4281
4282         * image.c (mono_image_close): Destroy the new cashes.
4283
4284         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4285
4286         * mempool.c (mono_mempool_strdup): New helper function.
4287
4288         * class-internals.h: Add prototype for mono_loader_unlock ().
4289
4290         * domain.c (mono_jit_info_table_find): Fix a warning.
4291         (mono_debugger_check_runtime_version): Ditto.
4292
4293         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4294         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4295         functions to these modules.
4296
4297         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4298         metadata modules.
4299         
4300         * marshal.c (mono_free_bstr): Fix a warning.
4301
4302         * assembly.c (mono_assembly_open_full): Fix another small leak.
4303
4304         * object.c: Fix some unload leaks in the remoting code.
4305
4306         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4307         function.
4308
4309         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4310
4311         * reflection.c: Fix some unload leaks in dynamic assemblies.
4312
4313 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4314
4315         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4316         * marshal.h: Add BSTR support on Win32
4317         * icall.c: Add BSTR icalls
4318         * metadata.h: Add BSTR enums
4319
4320 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4321
4322         Work to catch the crash from #76795 and turn it into an
4323         exception.   As I stubbed out pieces of the VisualBasic support,
4324         I found a number of places where the code was failing and I added
4325         checks to those places. 
4326         
4327         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4328         function return a status code.  If we fail to parse the signature
4329         from mono_metadata_parse_generic_inst, return FALSE.
4330
4331         * loader.c (mono_get_method_from_token): If we fail to load the
4332         method (mono_class_get) return NULL.   
4333
4334         * (method_from_memberref): Return NULL if we are unable to parse
4335         the method signature
4336
4337         (mono_loader_error_prepare_exception): Since we now use the
4338         loader_error flag internally to stop processing, and obtaining
4339         exceptions that might be thrown will walk this code path the
4340         proper way of going from a MonoLoaderError into a
4341         MonoException was convoluted.   This new routine encapsulates the
4342         process of turning the error into an exception and *clearing* the
4343         error afterwards.
4344         
4345 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4346
4347         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4348         with missing assemblies), and to cope with:
4349
4350                 * Missing fieldref from a non-existing assembly.
4351                 * Missing methodref from a non-existing assembly.
4352
4353         The first batch of work to address *some* of the issues from 76661.
4354         
4355         * object.c (mono_class_create_runtime_vtable): If we fail to
4356         initialize the class raise the exception here. 
4357
4358         * metadata.c (mono_class_get_overrides_full): If any methods fail
4359         to load return the failure to the caller.
4360
4361         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4362         flagging assemblies that failed to load.   
4363
4364         Do not crash if we are unable to load the assembly.
4365
4366         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4367         assemblies. 
4368
4369         * loader.c (mono_loader_set_error_type_load): Change the
4370         convention to always pass unallocated strings, so we make our own
4371         copies (I know our own code had duplicated strings before, but
4372         this keeps the normal conventions).
4373         (method_from_memberref): Call mono_loader_set_error_method_load
4374         for all possible failures of loading the class. 
4375         Remove assert, turn into a loader error.
4376
4377         (mono_loader_error_to_exception): Move this routine from mini
4378         (mini_loader_error_to_exception) there was no need to have that in
4379         mini. 
4380
4381         * class.c (mono_class_from_typeref): If we were not able to load
4382         the assembly with mono_assembly_load_reference, call the
4383         mono_loader_set_error_type_load to register the problem.
4384
4385         (mono_class_setup_fields): If we fail to load the type from
4386         mono_metadata_parse_type_full, call mono_class_set_failure and
4387         break from the loop.
4388
4389         If class->exception_type is set, we do not layout the fields as
4390         that might crash the runtime, and instead return (from breaking
4391         from the previous loop).
4392
4393         (mono_class_setup_vtable): This now returns a boolean indicating
4394         whether the table was properly setup.   The decision is driven by
4395         mono_class_get_overrides_full which might run into non-existing
4396         methods. 
4397         
4398         (mono_class_init): Returns TRUE on success or FALSE if there was a
4399         problem in loading the type (incorrect assemblies, missing
4400         assemblies, methods, etc).
4401
4402         When we call mono_class_setup_fields we also check for a potential
4403         error inside this call (either a class exception or a general
4404         loader exception).
4405
4406         (mono_class_create_from_typedef): If the parent fails to load
4407         (calling mono_class_get_full) return NULL.
4408         
4409         ** Important **
4410
4411         calls to mono_metadata_parse_type_full should be checked
4412         everywhere and set the mono_class_set_failure
4413         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4414
4415         The current patch checks the places where my manually constructed
4416         tests show the errors are showing up, but we should do it
4417         everywhere. 
4418
4419         ** Important2 **
4420
4421         mono_class_init return values should be tested everywhere, like
4422         the previous case this is something that we should audit
4423         everywhere and not only on the cases exposed by the tests I
4424         created. 
4425
4426 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4427
4428         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4429         boolean parameter and instead pass the information on `options'
4430         parameter (FileOptions).
4431
4432         * icall.c: Register the new signature for MonoIO.Open.
4433
4434         * debug-helpers.c (dis_one): Trying to understand how coverity
4435         works.  Fix Run 5, item 78.
4436
4437 2006-04-26  Dick Porter  <dick@ximian.com>
4438
4439         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4440         dereference.
4441
4442 2006-04-25  Martin Baulig  <martin@ximian.com>
4443
4444         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4445
4446         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4447         debugger_thread_created().
4448         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4449         special way.
4450         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4451         (mono_debugger_finalize_threads): New function; undo the effects
4452         of mono_debugger_init_threads().
4453         (mono_debugger_create_all_threads): Removed.
4454
4455 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4456
4457         * image.c (mono_image_close): Tidy up trace messages.
4458
4459         * assembly.c (mono_assembly_close): Ditto.
4460
4461         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4462         no longer references an already freed assembly. Fixes #78168.
4463
4464 2006-04-21  Dick Porter  <dick@ximian.com>
4465
4466         * threads.c (mono_thread_detach): Fix reference counting when
4467         detaching threads.
4468
4469 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4470
4471         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4472         #78155.
4473
4474 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4475
4476         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4477         (mono_type_to_stind): Ditto.
4478
4479         * marshal.c: Use the new helper functions to simplify code.
4480
4481         * image.c (mono_image_close): Add some code for help debug assembly unloading
4482         problems.
4483
4484         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4485         image mempool.
4486
4487         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4488         assembly was already loaded in another appdomain. Fixes #78083.
4489
4490 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4491
4492         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4493         referenced assemblies.
4494         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4495
4496         * domain.c (mono_domain_free): Add a trace message.
4497
4498         * appdomain.c (add_assemblies_to_domain): Ditto.        
4499
4500         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4501         field.  
4502
4503 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4504
4505         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4506
4507 2006-04-12  Martin Baulig  <martin@ximian.com>
4508
4509         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4510         `USE_INCLUDED_LIBGC'.   
4511
4512 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4513
4514         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4515         the patch contains ../ and a small directory name later. Hopefully fixes
4516         #78035.
4517
4518 2006-04-10  Martin Baulig  <martin@ximian.com>
4519
4520         Clean up the debugger's thread-handling code.
4521
4522         The debugger's thread-handling code has been moved from
4523         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4524         over the `threads' hash, keep track of exiting threads and also
4525         use proper locking.
4526
4527         We can now debug XSP and XSP based applications with the debugger.
4528
4529         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4530
4531         * threads.h
4532         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4533         (mono_install_thread_callbacks): Likewise.      
4534
4535         * threads.c (mono_thread_callbacks): Removed.
4536         (debugger_thread_created, debugger_thread_exited): New static functions.
4537         (start_wrapper): Call debugger_thread_created().
4538         (thread_cleanup): Call debugger_thread_exited().
4539         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4540         (mono_debugger_init_threads): New public function.
4541         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4542         iterate directly over the `threads' hash and also use proper locking.
4543
4544         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4545
4546         * mono-debug-debugger.h
4547         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4548
4549 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4550
4551         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4552         argument type=array. Fixes #78057.
4553
4554 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4555
4556         * culture-info-table.h : regenerated. Fixed bug #69652.
4557
4558 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4559
4560         * loader.c metadata.c: Reapply a variant r59116.
4561         
4562         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4563
4564         * class.c (mono_class_setup_interface_offsets): New internal function.
4565
4566         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4567         interfaces too. Fixes #77398.
4568
4569         * reflection.c (encode_cattr_value): Add support for 
4570         parameter type=object, argument type=array.
4571         (load_cattr_value): Ditto. Fixes #77916.
4572
4573         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4574         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4575
4576         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4577         a byval char array and CharSet is Ansi.
4578
4579         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4580
4581 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4582
4583         * metadata.c: Add some locking comments.
4584         
4585         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4586         mempool.
4587         (mono_metadata_free_method_signature): Don't free the signature itself.
4588
4589         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4590
4591         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4592         reference the same MonoImage.
4593         (mono_assembly_load_from_full): Add an assert.
4594
4595 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4596
4597         * image.c (mono_image_close): Don't put the image we are about to free into the
4598         loaded_images_guid_hash.
4599
4600         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4601         to reduce code duplication.
4602
4603         * marshal.c: Register the native functions called by this module as icalls, to
4604         somewhat centralize the creation of MonoMethodSignature's.
4605
4606         * loader.c (mono_method_signature): Add a cache for method signatures.
4607
4608         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4609         the parameter attributes of a method.
4610         (mono_metadata_parse_method_signature_full): Refactored the computation of
4611         parameter attributes into a separate function. Also avoid one allocation in
4612         most cases.
4613
4614         * assembly.c (mono_assembly_close): Ditto.
4615
4616         * image.c (mono_image_close): Log trace messages with INFO level.
4617
4618         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4619
4620         * image.c reflection.c: Correct reference counting of image modules.
4621         
4622         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4623         of this function from the image mempool.
4624         
4625         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4626         to allow more cached types to be used.
4627
4628         * mono-debug.c (mono_debug_add_method): Appled patch from
4629         David S. Miller  <davem@sunset.davemloft.net>: Access 
4630         minfo->lexical_blocks[] entry elements using read32().
4631
4632 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4633
4634         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4635         methods as it is allocated from the mempool.
4636
4637         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4638         image mempool.
4639
4640         * metadata-internals.h: Add comments describing the reference counting scheme
4641         used for MonoImage and MonoAssembly.
4642
4643         * image.c assembly.c reflection.c: Rework reference counting of images and 
4644         assemblies so they are freed when the runtime is shut down. Free some 
4645         additional memory structures when an image is unloaded.
4646         
4647 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4648
4649         * class.c loader.c reflection.c: Allocate more data structures in
4650         the image mempool.
4651
4652 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4653
4654         * icall.c
4655         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4656         build on pre glib 2.4 systems.
4657
4658 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4659
4660         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4661
4662         * icall.c: Fix some warnings.
4663
4664 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4665
4666         * culture-info-table.h : regenerated.
4667
4668 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4669
4670         * threads.c, object-internals.h, verify.c: changed the culture caching
4671         code to use a normal MonoArray for storage so the GC can keep track of
4672         them easily. Fixed bits of the cache logic, too and simplified the
4673         code.
4674
4675 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4676
4677         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4678         thread for non-Boehm GCs.
4679
4680 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4681
4682         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4683         needed to keep track of the data for static fields.
4684
4685 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4686
4687         Fix #75172
4688         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4689         for interface classes.  Use 'num_methods' instead.
4690         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4691         before using '->vtable_size' field.
4692
4693 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4694
4695         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4696         doesn't contain managed pointers, so use a normal hashtable.
4697
4698 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4699
4700         * reflection.c, class-internals.h, domain.c: fixed handling of types
4701         used as values for objects in custom attributes (bug #77915):
4702
4703 2006-03-24  Martin Baulig  <martin@ximian.com>
4704
4705         * class.c (mono_class_setup_fields): Added support for generic
4706         instances; fixes #77580.
4707
4708 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4709
4710         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4711
4712 2006-03-24  Dick Porter  <dick@ximian.com>
4713
4714         * file-io.c (get_file_attributes): More stat macro breakage.
4715         Fixes bug 77759.
4716
4717 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4718
4719         * profiler.c: added the file=filename option in the default profiler
4720         to output the profile data to filename.
4721
4722 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4723
4724         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4725         bug #77877.
4726
4727 2006-03-22  Martin Baulig  <martin@ximian.com>
4728
4729         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4730         allocated `MonoClassField *' in `fb->handle'.
4731
4732 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4733
4734         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4735         allocate interface ID to save memory and allow better ID reuse on
4736         appdomain unload. setup_generic_vtable () removal from Martin.
4737
4738 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4739
4740         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4741         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4742         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4743         write barriers for reference stores with managed objects accessed with
4744         C structures in the runtime and in embedding programs.
4745
4746 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4747
4748         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4749         'interface_id' and 'max_interface_id' fields of MonoClasses
4750         representing open generic types.
4751
4752 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4753
4754         * object.h, object.c, icall.c: added functions to deal with
4755         storing valuetypes that contain references in managed objects.
4756         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4757         fixes and comments around uses of mono_array_addr ().
4758
4759 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4760
4761         * object.h, icall.c, monitor.c: object.GetHashCode ()
4762         implementation that supports the moving garbage collector.
4763
4764 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4765
4766         * icall.c, threads-types.h, threads.c: implemented finalizer for
4767         LocalDataStoreSlot.
4768
4769 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4770
4771         * metadata.c (mono_type_size): Add a fixme.
4772         (mono_type_stack_size): Ditto.
4773
4774         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4775         'type_forwarders' field.
4776
4777         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4778         attribute from net 2.0.
4779
4780         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4781         from class.c.
4782
4783         * class.c (mono_class_setup_fields): Fix a warning.
4784         
4785         * class.c (mono_class_from_name): Add support for assemblyref entries
4786         in the EXPORTEDTYPE table.
4787
4788         * reflection.c: Add support for handling type forwarders under net 2.0.
4789
4790         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4791         
4792 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4793
4794         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4795         overwriting entries in ModuleBuild->types, also clean up the code
4796         a little. Fixes #77774.
4797
4798 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4799
4800         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4801         load friend assembly info when present.
4802
4803 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4804
4805         Fix crasher on gtest-158.cs.
4806         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4807         the return value if the MonoClass we want is yet in an
4808         inconsistent state.
4809         * class.c (mono_class_create_from_typedef): Add an comment
4810         explaining an order dependency between mono_class_setup_parent and
4811         mono_class_setup_mono_type.
4812
4813 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4814
4815         * class.c: documentation updates and events bug fix.
4816
4817 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4818
4819         * class.c: some cleanup, locking fixes.
4820
4821 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4822
4823         * class.c: fix the generics code to setup nested
4824         type info to the instantiated type (bug #77770).
4825
4826 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4827
4828         * marshal.c: fixed a few type correctness issues.
4829
4830 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4831
4832         * loader.c: the Set/Get/Addrtess array methods should be public.
4833
4834 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4835
4836         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4837         
4838         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4839         info->wrapper.
4840
4841 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4842
4843         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4844
4845         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4846
4847         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4848         (mono_mempool_alloc0): Ditto.
4849
4850 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4851
4852         * socket-io.c:
4853         (create_object_from_sockaddr): it was allocating 4 extra bytes
4854         for the AF_UNIX data. Fixes bug #77747.
4855
4856 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4857
4858         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4859
4860 2006-03-09  Dick Porter  <dick@ximian.com>
4861
4862         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4863         Fixes bug 76966 again.
4864
4865 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4866
4867         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4868         names from r57532
4869         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4870
4871 2006-03-07  Martin Baulig  <martin@ximian.com>
4872
4873         * object.c
4874         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4875
4876 2006-03-07  Martin Baulig  <martin@ximian.com>
4877
4878         * class.c
4879         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4880         regression introduced in r56970; see gtest-252.cs.
4881
4882         * loader.c (mono_get_method_constrained): Correctly handle generic
4883         methods; see gtest-253.cs.
4884
4885 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4886
4887         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4888
4889 2006-03-04  Martin Baulig  <martin@ximian.com>
4890
4891         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4892         compute the parent type at runtime, just like we're already doing
4893         it for interfaces.
4894
4895         * reflection.c
4896         (mono_reflection_bind_generic_parameters): Don't compute the
4897         parent type anymore.
4898
4899         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4900
4901 2006-03-04  Martin Baulig  <martin@ximian.com>
4902
4903         * mono-debug-debugger.h
4904         (mono_debugger_create_notification_function): Allocate memory at
4905         runtime and return a pointer to it.
4906
4907 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4908
4909         * assembly.c: Fix windows build.
4910         
4911         * assembly.c: Fix build.
4912
4913         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4914
4915         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4916         
4917 2006-03-03  Dick Porter  <dick@ximian.com>
4918
4919         * process.c
4920         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4921         Check parameters before dereferencing them.  Fixes Aaron's part of
4922         bug 77393.
4923
4924 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4925
4926         Fix performance regression.
4927         * loader.c (find_method_in_class): Add 'from_class' argument.
4928         Rename 'klass' argument to 'in_class'.  The signature is compared
4929         against the method in 'in_class', and the corresponding method is
4930         returned from 'from_class'.
4931         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4932         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4933         type definition and generic instantiation in parallel.
4934         (mono_get_method_constrained): Update to changes.
4935
4936 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4937
4938         * threads.c: make sure the domain is correct, too when doing
4939         mono_thread_attach ().
4940
4941 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4942
4943         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4944         windows. Fixes #77683.
4945
4946 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4947
4948         * object.h, *: introduced specific way to set elements of an array
4949         of references to be used as write barrier. Still need to audit the
4950         uses of mono_array_addr.
4951
4952 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4953
4954         * object-internals.h: New field to cache the assmebly name, patch
4955         from Tambet Ingo (tambet@ximian.com)
4956
4957 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4958
4959         * decimal.h, class-internals.h, metadata-internals.h,
4960         file-io.h: mark a few function declarations as internal, to
4961         reduce the number of PLT entries.
4962
4963 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4964
4965         * file-io.c: fix typo in warning message.
4966
4967 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4968
4969         * loader.c: on unix, lookup the "*A" version of a function
4970         if charset is auto as a second option before failing.
4971
4972 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4973
4974         * class.h (mono_class_inflate_generic_method): Revert to two
4975         argument version.
4976         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4977         (mono_class_inflate_generic_method_full): Add.
4978         * class.c (mono_class_inflate_generic_method_full): Rename from
4979         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4980         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4981         * loader.c, reflection.c: Update to changes.
4982
4983 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4984
4985         * icall.c: const fixes and small improvements.
4986
4987 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4988
4989         * threadpool.c: for asynchronous connect(), enable the same workaround
4990         for BSD 6 as for the Mac. Fixes bug #77637.
4991
4992 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4993
4994         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4995         formatted classes. Fixes #77524.
4996
4997 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4998
4999         * class.c (inflate_generic_type): Add a couple more
5000         micro-optimizations.
5001         (inflate_generic_context): Don't use the 'gmethod' from
5002         'inflate_with'.
5003         (mono_class_inflate_generic_method): If the method has generic
5004         parameters, but the passed-in context doesn't have a 'gmethod',
5005         create one.  Use the possibly simplified generic instantiation
5006         from the declaring class instead of the one passed in.
5007
5008 2006-02-24  Raja R Harinath  <harinath@gmail.com>
5009
5010         Make generic method signature and method header handling lazy.
5011         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
5012         (inflate_generic_header): Likewise.
5013         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
5014         parameter to avoid inflating types.
5015         (mono_get_inflated_method): Empty out.
5016         * class.h (mono_class_inflate_generic_method): Update to changes.
5017         * loader.c (mono_get_method_from_token): Don't parse signature for
5018         generic methods, nor methods of generic classes.
5019         (mono_method_signature): Rename from 'mono_method_signature'.
5020         Inflate signature on demand.
5021         (mono_method_get_header): Inflate method header on demand.
5022         * reflection.c: Update to changes.
5023
5024 2006-02-23  Raja R Harinath  <rharinath@novell.com>
5025
5026         * metadata.c (mono_metadata_inflate_generic_inst): If the
5027         instantiation is closed, don't bother expanding it in the new
5028         context.
5029         * class.c (inflate_generic_class): If the generic instantiation
5030         doesn't change after inflation, return the argument itself.
5031         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
5032         Add bounds checks.
5033         (inflate_generic_context): If neither the generic class nor the
5034         generic method instantiations change, return the original context.
5035         * reflection.c (mono_method_get_object): Do
5036         'mono_get_inflated_method' before accessing the ->klass field.
5037         (inflate_mono_method): Don't create a MonoGenericMethod unless
5038         necessary.
5039         (inflate_method): Don't pass a constructed type as the declaring
5040         type of a methodbuilder.
5041
5042 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
5043
5044         * object.c: fix memory overwrite.
5045
5046 2006-02-22  Dick Porter  <dick@ximian.com>
5047
5048         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
5049         it doesn't work any more.
5050         (mono_threads_request_thread_dump): Fix unused variable warnings.
5051
5052 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5053
5054         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
5055         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
5056         the public header file.
5057
5058 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
5059
5060         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
5061
5062 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
5063
5064         * class-internals.h, object.c: reduce the size of MonoVTable
5065         and store the interface_offsets array at negative offsets.
5066
5067 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
5068
5069         * metadata.c: tweak table descriptors data structures to reduce
5070         size and runtime relocations.
5071
5072 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5073
5074         * marshal.c: fix some types and opcodes to be type-safe
5075         in marshaling wrappers.
5076
5077 2006-02-21  Ankit Jain  <jankit@novell.com>
5078
5079         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
5080
5081 2006-02-21  Raja R Harinath  <rharinath@novell.com>
5082
5083         * metadata.c (get_constraints): Relax debugging checks for monodis.
5084
5085 2006-02-21  Ankit Jain  <jankit@novell.com>
5086
5087         * metadata.c (mono_metadata_load_generic_params): Move the code
5088         checking for ambiguous generic params from here to mono/dis/get.c
5089         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
5090
5091 2006-02-21  Raja R Harinath  <harinath@gmail.com>
5092
5093         Fix assertion triggered when compiling nemerle.
5094         * class.c (mono_get_shared_generic_inst): Rename from
5095         get_shared_inst and make non-static.
5096         * loader.c (mono_get_shared_generic_method): New.  Used to create
5097         the MonoGenericContext-equivalent of a MonoGenericContainer.
5098         (mono_get_method_from_token): Initialize the 'context' field of
5099         the created MonoGenericContainer.
5100         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
5101         * metadata.c (get_constraints): Add sanity check.
5102         * class-internals.h: Add new internal methods.
5103
5104         * reflection.c (verify_safe_for_managed_space): New sanity check.
5105         Currently checks that owner-less generic parameters aren't allowed
5106         in managed space.
5107         (mono_type_get_object): Use it.
5108         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
5109         that are now in mono_type_get_object.
5110         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
5111
5112 2006-02-19  Raja R Harinath  <harinath@gmail.com>
5113
5114         * metadata.c (mono_type_create_from_typespec): Rename from
5115         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
5116         argument and caching of types in the generic container.
5117         (unwrap_arrays, find_generic_param): Remove.
5118         * metadata-internals.h: Update.
5119         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
5120
5121 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
5122
5123         * class.c (mono_class_get_exception_for_failure): Fix a warning.
5124
5125         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
5126         return values. Fixes #77581.
5127
5128         * class.c (mono_fnptr_class_get): Switch name and name_space.
5129
5130         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
5131         classes and add support for [In, Out] attributes.
5132         (mono_marshal_free_asany): Ditto. Fixes #77524.
5133
5134 2006-02-18  Raja R Harinath  <harinath@gmail.com>
5135
5136         * class.c (mono_class_from_generic_parameter): Make more robust to
5137         incomplete MonoGenericContainers from monodis.
5138
5139 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5140
5141         * class-internals.h: added some more exception types.
5142         * class.c, metadata.c: added a few checks to handle missing
5143         types.
5144
5145 2006-02-17  Raja R Harinath  <rharinath@novell.com>
5146
5147         Use owner-less generic-params some more.
5148         * class.c (my_mono_class_from_generic_parameter): Remove.
5149         (mono_class_from_generic_parameter): Handle null image,
5150         param->name and param->owner.
5151         (mono_class_from_mono_type): Update.
5152         (mono_class_create_from_typespec): Remove 'container' parameter.
5153         If that parameter is non-null, the result is always inflated by
5154         'mono_class_get_full' anyway.
5155         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
5156         parameter.
5157         (mono_class_get_full): Update.
5158
5159         * class.c (inflate_generic_type) [GENERICINST]: If the generic
5160         instance is not open, don't bother inflating.
5161         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
5162         parse metadata for inflated classes.
5163         (_mono_class_get): Change GenericContext* parameter to
5164         GenericContainer*.
5165         (mono_class_create_from_typespec): Likewise.  Simplify, and
5166         implement trivially.  All the cases are handled in
5167         mono_class_from_mono_type.  Don't inflate returned class.
5168         (mono_class_get_full): Delegate GENERICINST optimization to
5169         inflate_generic_type.
5170         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
5171
5172 2006-02-16  Dick Porter  <dick@ximian.com>
5173
5174         * socket-io.c (create_object_from_sockaddr): Fix typo.
5175         (create_sockaddr_from_object): Check array lengths before
5176         potentially accessing items off the end.
5177         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
5178         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
5179         (ves_icall_System_Net_Sockets_Socket_Send_internal)
5180         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
5181         length checks to avoid wraparound overflows.
5182         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
5183         contents of the array of sockets
5184         (hostent_to_IPHostEntry2)
5185         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
5186         Check return value of inet_ntop ().
5187         (addrinfo_to_IPHostEntry): Fix typo
5188
5189 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5190
5191         Type metadata parsing doesn't use generic-instantiation information.
5192         * metadata.c (mono_metadata_parse_array_full): Change
5193         MonoGenericContext* parameter to MonoGenericContainer*.
5194         (mono_metadata_parse_type_full): Likewise.
5195         (mono_type_create_from_typespec_full): Likewise.
5196         (mono_metadata_parse_mh_full): Likewise.
5197         (mono_metadata_parse_generic_inst): Likewise.
5198         (do_mono_metadata_parse_generic_class): Likewise.
5199         (do_mono_metadata_parse_type): Likewise.
5200         * metadata-internals.h: Update to changes.
5201         * class.c (mono_class_find_enum_basetype): Likewise.
5202         (mono_class_setup_fields): Likewise.
5203         (mono_class_create_from_typespec): Likewise.
5204         * loader.c (method_from_methodspec): Likewise.
5205         (mono_get_method_from_token): Likewise.
5206         (mono_method_get_header): Likewise.
5207
5208 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5209
5210         * marshal.c: handle additional GENERICINST case (patch from
5211         Thong Nguyen <tum@veridicus.com>).
5212         Fix a few cases where LDIND_I/STIND_I was used for references.
5213
5214 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5215
5216         * reflection.c (mono_reflection_get_token): Remove unused variable.
5217
5218 2006-02-16  Martin Baulig  <martin@ximian.com>
5219
5220         * reflection.c (mono_reflection_get_token): Add support for fields
5221         in instantiated generic types.
5222
5223         * icall.c
5224         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
5225
5226 2006-02-15  Martin Baulig  <martin@ximian.com>
5227
5228         * icall.c
5229         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
5230         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
5231         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
5232         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
5233
5234 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5235
5236         * class.c, metadata.c, metadata.h, object.c, icall.c,
5237         marshal.c: changed mono_type_get_underlying_type () to do
5238         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
5239         Fixed handling of instantiated generic valuetypes (bug #75479).
5240
5241 2006-02-15  Raja R Harinath  <rharinath@novell.com>
5242
5243         * metadata.c (mono_metadata_decode_signed_value): Simplify.
5244         Delegate to mono_metadata_decode_value, and work on the returned value.
5245
5246         * icall.c (ves_icall_MonoType_GetGenericArguments):
5247         Add consistency check here too.
5248         
5249 2006-02-15  Ankit Jain  <jankit@novell.com>
5250
5251         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
5252         char/short etc.
5253
5254 2006-02-15  Ankit Jain  <jankit@novell.com>
5255
5256         * metadata.c (mono_metadata_decode_signed_value): New function to decode
5257         signed values, used only for representing lower bounds of arrays.
5258         (mono_metadata_parse_array_full): Use new
5259         mono_metadata_decode_signed_value to decode lower bounds.
5260
5261 2006-02-14  Martin Baulig  <martin@ximian.com>
5262
5263         * reflection.c
5264         (mono_reflection_get_token): Support "MonoGenericMethod" and
5265         "MonoGenericCMethod" and allow generic instances / methods.
5266
5267 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5268
5269         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5270         to obtain the terminal size using an ioctl.
5271
5272         * object.c (mono_nullable_init): Revert this as nullable reference
5273         types are not valid.
5274         (mono_nullable_box): Ditto.
5275
5276 2006-02-09  Dick Porter  <dick@ximian.com>
5277
5278         * threads.c (mono_thread_detach): Drop a reference to the thread
5279         we're detaching.
5280
5281 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5282
5283         * object.c (mono_nullable_init): Handle nullable reference types.
5284         (mono_nullable_box): Ditto. Fixes #77446.
5285
5286 2006-02-07  Martin Baulig  <martin@ximian.com>
5287
5288         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5289
5290 2006-02-07  Ankit Jain  <jankit@novell.com>
5291
5292         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5293         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5294         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5295         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5296         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5297         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5298
5299 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5300
5301         * class.c (mono_class_create_generic): Set type_token as well.
5302
5303         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5304         compatible with MS.
5305
5306 2006-02-02  Martin Baulig  <martin@ximian.com>
5307
5308         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5309         has never been used so far.
5310
5311 2006-02-02  Martin Baulig  <martin@ximian.com>
5312
5313         * mono-debug-debugger.h: Changed comment at the top of this file;
5314         the header is not installed, but it's safe to #include it from
5315         within the JIT.
5316
5317         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5318         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5319
5320 2006-02-02  Martin Baulig  <martin@ximian.com>
5321
5322         * mono-debug.h
5323         (MonoSymbolTable): Removed the `metadata_info' field.
5324
5325         * mono-debug.c
5326         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5327
5328         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5329         (mono_debugger_add_builtin_types): Removed.
5330         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5331         (mono_debugger_create_notification_function): We now operate on a
5332         pre-allocated area; take a `gpointer' and return `void'.
5333
5334         * mono-debug-debugger.c
5335         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5336         (mono_debugger_add_builtin_types): Removed.
5337
5338 2006-02-02  Martin Baulig  <martin@ximian.com>
5339
5340         * threads.c (mono_debugger_create_all_threads): New public method.
5341
5342 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5343
5344         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5345         breaks on several platforms.
5346
5347 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5348
5349         * assembly.c: the VS.NET build doesn't supply default values for
5350         MONO_ASSEMBLIES and MONO_CFG_DIR.
5351
5352 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5353
5354         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5355         helper function.
5356
5357         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5358
5359         * loader.c (method_from_memberref): Fix a warning.
5360
5361         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5362
5363         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5364         with explicit layout. Fixes #77433.
5365
5366 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5367
5368         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5369         max_interface_id is initialized before using it. Fixes #77398.
5370         (ves_icall_Type_GetInterfaces): Ditto.
5371
5372 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5373
5374         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5375         allocate memory for parameter attributes when parsing memberref
5376         signatures.
5377         * loader.c (mono_loader_set_error_method_load): Don't warn.
5378         (method_from_memberref): Ensure MissingMethodException gets thrown
5379         if method is not found.  Make warning more informative.
5380
5381 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5382
5383         Fix #77397
5384         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5385         return true if is byref.
5386         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5387         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5388         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5389
5390 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5391
5392         Fix tests/find-method.2.il
5393         * loader.c (find_method, find_method_in_class): Remove is_inflated
5394         argument.  Revert 2006-01-18 change.
5395         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5396         is generic, search for method in its generic definition.
5397         * class.c (mono_class_setup_vtable_general): Print generic
5398         arguments of generic types in debugging printf.
5399
5400 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5401
5402         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5403
5404         * threads.c (mono_threads_request_thread_dump): New helper function.
5405
5406 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5407
5408         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5409
5410 2006-01-25  Ankit Jain  <jankit@novell.com>
5411
5412         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5413         move definition to ..
5414         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5415         
5416 2006-01-25  Ankit Jain  <jankit@novell.com>
5417             Raja R Harinath  <rharinath@novell.com>
5418
5419         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5420         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5421         as necessary.
5422
5423 2006-01-25  Martin Baulig  <martin@ximian.com>
5424
5425         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5426         `MonoDebuggerThread' into debug-debugger.c.
5427
5428 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5429
5430         * profiler.c: fix printing of data.
5431
5432 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5433
5434         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5435           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5436
5437 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5438
5439         * object.c: fix deadlock related to string interning.
5440
5441 2006-01-23  Martin Baulig  <martin@ximian.com>
5442
5443         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5444
5445         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5446
5447 2006-01-23  Martin Baulig  <martin@ximian.com>
5448
5449         * mono-debug.h: Moved the prototypes of some functions which are
5450         used by the JIT here from mono-debug-debugger.h.
5451
5452 2006-01-21  Martin Baulig  <martin@ximian.com>
5453
5454         * Makefile.am: Don't install mono-debug-debugger.h.
5455
5456 2006-01-21  Martin Baulig  <martin@ximian.com>
5457
5458         * mono-debug-debugger.h: Enforce the private status of this header
5459         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5460         Moved some stuff from mono-debugger-jit-wrapper.h here.
5461
5462 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5463
5464         * class.c (mono_class_from_typeref): Add a sanity test to help
5465         catch lack of assembly load/search hooks.
5466
5467 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5468
5469         * marshal.c (emit_struct_conv): Relax the fields with same offset
5470         check even more. Fixes #77230.
5471
5472 2006-01-18  Martin Baulig  <martin@ximian.com>
5473
5474         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5475         argument; if false, we compare the uninstantiated signatures.
5476         (method_from_memberref): Compare the uninstantiated signatures;
5477         fixes #76417.
5478
5479 2006-01-18  Robert Jordan  <robertj@gmx.net>
5480
5481         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5482         Clear the weak link. Fixes bug #77170.
5483
5484         * gc.c (mono_gchandle_free):
5485         Reflect *-gc.c changes (tiny optimization).
5486
5487 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5488
5489         * metadata.c (mono_metadata_signature_dup): Applied patch from
5490         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5491         Fixes #77288.
5492
5493 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5494
5495         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5496         marshalling from native to managed code. Fixes #77230.
5497
5498 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5499
5500         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5501         connect. Fixes bug #77020.
5502
5503 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5504
5505         * class.c: fixed id assignement for nested interfaces (bug #77275).
5506         Added also better info for --print-vtable debugging.
5507
5508 2006-01-12  Martin Baulig  <martin@ximian.com>
5509
5510         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5511         interfaces on-the-fly; fixes #76625.
5512
5513         * class-internals.h
5514         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5515         don't need that anymore.
5516
5517 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5518
5519         * socket-io.c
5520         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5521         To avoid initing the nested_classes when not needed I turned the
5522         PeerCredData as a toplevel internal class, as it has to be shared
5523         anyways. 
5524
5525         Fixes the CASA issue.
5526
5527 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5528
5529         * domain.c: Accessors for MonoJitInfo
5530
5531         * profiler-private.h: Add jitinfo to the end jit hook
5532
5533         * profiler.[ch]: Define new hooks, called after jitting which give
5534         the MonoJitInfo that was compiled
5535
5536 2006-01-10  Martin Baulig  <martin@ximian.com>
5537
5538         * class.c (mono_class_setup_events): Add support for generic
5539         classes; fixes #76440.
5540
5541 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5542
5543         Fix #77160.
5544         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5545         on passed-in method.
5546
5547 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5548
5549         * object.c (mono_runtime_invoke_array): Add Nullable support.
5550
5551         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5552
5553 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5554
5555         * file-io.c: Don't consider sockets as directory and avoid an endless
5556         loop. Fix bug #76966.
5557
5558 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5559
5560         * object.c (mono_nullable_init): New helper function.
5561         (mono_nullable_box): Ditto.
5562
5563         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5564
5565         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5566
5567         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5568         
5569 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5570
5571         * class.c (mono_class_is_assignable_from): Make T assignable to 
5572         Nullable<T>.
5573
5574 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5575
5576         * appdomain.c: Bump corlib version to 46.
5577         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5578         serialization purpose) and changed ves_icall_System_Reflection_
5579         Assembly_get_code_base signature to accept a boolean (to escape, or 
5580         not, the assembly code base).
5581
5582 2005-12-23  Dick Porter  <dick@ximian.com>
5583
5584         * icall.c: 
5585         * threads-types.h: 
5586         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5587         CreateEvent icall now returns "created" boolean parameter.
5588
5589 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5590
5591         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5592         #76967.
5593
5594         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5595         when attr_klass is an interface. Fixes #77045.
5596
5597 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5598
5599         * marshal.c (emit_struct_conv): Fix previous patch.
5600         
5601         * marshal.c (emit_struct_conv): Add a check for fields with the same
5602         offset.
5603
5604 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5605
5606         Fix regression in Mono.C5.
5607         * class.c (mono_class_create_generic): If 'klass' is an interface
5608         set up the interface offsets.
5609         (mono_class_is_assignable_from): Don't throw away generic arguments.
5610
5611 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5612
5613         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5614         type parameters.
5615
5616 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5617
5618         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5619         dead store.
5620         (do_mono_metadata_parse_generic_class): Don't pass the current
5621         generic context when parsing the type being instantiated: it
5622         cannot use it, anyway.
5623
5624         * loader.c (method_from_memberref): Don't inflate a signature if
5625         it doesn't contain any type parameters.
5626
5627 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5628
5629         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5630
5631 2005-12-14  Martin Baulig  <martin@ximian.com>
5632
5633         * class.c
5634         (mono_type_get_name_recurse): Don't return null for type
5635         parameters and open generic classes.
5636         (mono_class_setup_methods): Don't exclude generic instances.
5637         (mono_get_unique_iid): Use different IDs for different
5638         instantiations of the same generic type.
5639         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5640         open generic instances; create a normal vtable for closed generic
5641         instances.
5642         (mono_class_setup_vtable_general): We're now also called for
5643         closed generic instances.
5644
5645         * reflection.c
5646         (mono_reflection_bind_generic_parameters): Correctly use
5647         mono_metadata_lookup_generic_inst() everywhere.
5648
5649 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5650
5651         * object.c (mono_class_create_runtime_vtable): Call 
5652         mono_class_setup_vtable ().
5653
5654         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5655         function.
5656         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5657         #76959.
5658
5659         * loader.c (mono_loader_set_error_type_load): Print the type load
5660         warnings to the console so they are more visible to the user.
5661         (mono_loader_set_error_method_load): Ditto.
5662
5663         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5664         is still broken.
5665         
5666         * reflection.c (ensure_runtime_vtable): Fix build.
5667
5668         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5669         doesn't work in all cases.
5670
5671 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5672
5673         * object.c (mono_array_new_full): Treat a single dimensional array
5674         with 0 lower bounds as an szarray. Fixes #76973.
5675
5676         * reflection.c (custom_attr_visible): Really fix this.
5677
5678 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5679
5680         * reflection.c (custom_attr_visible): Allow nested public attributes
5681         as well.
5682
5683         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5684         interface check.
5685
5686 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5687
5688         * class.c (set_generic_param_owner): Delete.
5689         (mono_class_create_from_typedef): Don't set ->owner field of
5690         generic parameters to "param containers" of enclosing classes.
5691         * reflection.c (mono_reflection_initialize_generic_parameter):
5692         Likewise.
5693
5694 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5695
5696         * reflection.c (custom_attr_visible): Fix build.
5697
5698 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5699
5700         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5701         private attributes.
5702         
5703         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5704         handling of null parameter defaults.
5705
5706 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5707
5708         * class.c (mono_class_from_generic_parameter): Don't set
5709         klass->generic_container.
5710         (my_mono_class_from_generic_parameter): Likewise.
5711
5712 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5713
5714         * reflection.c (load_public_key): Fix a warning.
5715         (method_encode_code): Fix unaligned accesses.
5716
5717 2005-12-07  Martin Baulig  <martin@ximian.com>
5718
5719         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5720
5721         * reflection.c
5722         (write_generic_param_entry): Encode our custom attrs.
5723
5724         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5725
5726 2005-12-07  Martin Baulig  <martin@ximian.com>
5727
5728         * reflection.c (encode_new_constraint): Removed; we don't use the
5729         `NewConstraintAttribute' anymore.
5730
5731 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5732
5733         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5734         not fire a TypeResolve event when Assembly.GetType () is called.
5735
5736 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5737
5738         Beginning of support for nullable types in the runtime. Parts of
5739         this patch are from Martin.
5740
5741         * appdomain.c (MONO_CORLIB_VERSION): Bump
5742
5743         * domain.c (mono_init_internal): get the nullable type
5744
5745         * class.c (mono_class_is_nullable): New method
5746         (mono_class_get_nullable_param): New mehod
5747         (mono_class_create_generic): In types T? set cast_class to T
5748
5749         * class-internals.h (MonoDefaults): new nullable default class
5750         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5751         new methods.
5752
5753 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5754
5755         * metadata.c (select_container): New.  Refactor code to select the
5756         appropriate GenericContainer given the type of generic parameter
5757         we are looking for.
5758         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5759         not a MonoGenericContext.  Use select_container.  Update parameters.
5760         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5761         and MONO_TYPE_MVAR.
5762         (unwrap_arrays): Remove duplicate tests.
5763         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5764         generic instantiated class to find any arguments that are generic
5765         parameters.
5766         (mono_type_create_from_typespec_full): Use find_generic_param to
5767         avoid evicting some generic instantiations from the typespec
5768         cache.
5769
5770 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5771
5772         * reflection.c: fixed writing of doubles on ARM FPA.
5773
5774 2005-12-02  Robert Jordan  <robertj@gmx.net>
5775
5776         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5777
5778 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5779
5780         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5781         least on SUSE 10 they are not the same (on debian, they are just the
5782         same thing).
5783
5784 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5785
5786         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5787         DeclaringType for VARs and MVARs.
5788         * class.c (set_generic_param_owner): Fix initialization of owner
5789         fields.
5790
5791 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5792
5793         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5794
5795 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5796
5797         * threadpool.c: workaround for a bug that shows up on the Mac:
5798         select()+connect() on a blocking socket is not like it should
5799         be, so we proceed to connect() in that case, wasting the I/O
5800         threadpool thread until connect succeedes. Fixes bug #75436.
5801
5802 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5803
5804         * threadpool.c: fix typo when setting file descriptor states.
5805
5806 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5807
5808         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5809         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5810         create a temporary signature container.
5811         (mono_metadata_parse_generic_param): Update to changes.
5812         (mono_type_create_from_typespec_full): Update to changes.
5813         * loader.c (method_from_memberref): Don't use a
5814         MonoGenericContainer while parsing a memberref signature.
5815         (method_from_methodspec): Remove dead-store of the 'container'
5816         variable.  It's overwritten before use.
5817
5818         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5819         checks tighter.
5820         (mono_metadata_parse_generic_param): Likewise.
5821         * loader.c (find_method_in_class): Does not need a
5822         MonoGenericContainer.  Use 'mono_method_signature' rather than
5823         'mono_method_signature_full'.
5824         (find_method, mono_get_method_constrained, method_from_memberref):
5825         Update to changes.
5826
5827         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5828         owner-less generic-parameters are never evicted from the typespec
5829         cache.
5830
5831         * loader.c (method_from_memberref): Don't use the current context
5832         when parsing signatures.
5833         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5834
5835         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5836         side-effects in g_assert.
5837         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5838         that we don't potentially lose information.
5839
5840 2005-11-26  Dick Porter  <dick@ximian.com>
5841
5842         * icall.c:
5843         * threads.c: icalls to implement basic (ie, not named)
5844         System.Threading.Semaphore.
5845
5846 2005-11-24  Dick Porter  <dick@ximian.com>
5847
5848         * process.c
5849         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5850         Use GetProcessId() if it's available.
5851
5852 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5853
5854         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5855
5856 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5857             Ankit Jain  <jankit@novell.com>
5858
5859         * loader.c (mono_get_method_from_token): Initialize 'method' field
5860         of all generic parameters before parsing the signature.  Remove
5861         code that "fixed"-up MVAR references.
5862
5863 2005-11-23  Ankit Jain  <jankit@novell.com>
5864
5865         * metadata.c (mono_metadata_has_generic_params):
5866         (mono_metadata_load_generic_param_constraints):
5867         (mono_metadata_load_generic_params): Move duplicate code ...
5868         (mono_metadata_get_generic_param_row): ... here. Returns the
5869         first row-id in GenericParam table for a given owner (token).
5870         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5871         prototype.
5872
5873 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5874             Ankit Jain  <jankit@novell.com>
5875
5876         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5877         comparing VARs too.
5878         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5879         type->data.generic_param only if the type is an MVAR.
5880         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5881         leak owner-less VARs and MVARs into managed space.
5882
5883 2005-11-21  Martin Baulig  <martin@ximian.com>
5884
5885         * class-internals.h
5886         (MonoMethod): Moved the `generic_container' here from
5887         `MonoMethodNormal' since we now also need it for
5888         `MonoMethodPInvoke';
5889         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5890         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5891         an union containing both `MonoMethodNormal' and
5892         `MonoMethodPInvoke'.
5893
5894         * loader.c
5895         (mono_get_method_from_token): Allow implementing generic methods
5896         as interncalls.
5897
5898         * threads.c
5899         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5900         icall.
5901
5902 2005-11-17  Dick Porter  <dick@ximian.com>
5903
5904         * icall.c: 
5905         * process.h: 
5906         * process.c: Split the Process Start_internal icall into
5907         ShellExecuteEx_internal and CreateProcess_internal, which are
5908         called depending on whether UseShellExecute is true.  Fixes bug
5909         76670.
5910
5911         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5912
5913 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5914
5915         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5916         'msize' parameters, use the information in 'mspec' instead.
5917         (emit_object_to_ptr_conv): Ditto.
5918
5919         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5920         fields out of order. Fixes #76733.
5921
5922 2005-11-17  Ankit Jain  <jankit@novell.com>
5923
5924         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5925
5926 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5927
5928         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5929           bug #76575.
5930
5931 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5932
5933         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5934         for types with non-auto layout. Fixes #76717.
5935
5936 2005-11-16  Ankit Jain  <jankit@novell.com>
5937
5938         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5939         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5940         if generic_context is null.
5941           (mono_metadata_generic_param_equal): param->owner can be null.
5942           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5943         null.
5944
5945 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5946
5947         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5948         the correct value.
5949
5950 2005-11-15  Martin Baulig  <martin@ximian.com>
5951
5952         * object.c (set_value): Use mono_class_from_mono_type() instead of
5953         the hack for generic instances; fixes #76136.
5954
5955 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5956
5957         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5958         fields.
5959
5960         * image.c (load_metadata_ptrs): Initialize the new fields.
5961
5962         * reflection.c (create_dynamic_mono_image): Ditto.
5963
5964         * reflection.c (build_compressed_metadata): Use the new fields.
5965
5966         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5967         icall.
5968
5969         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5970         icall.
5971         
5972 2005-11-15  Ankit Jain  <jankit@novell.com>
5973             Raja R Harinath  <harinath@gmail.com>
5974
5975         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5976         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5977         new per-generic_container cache if the cached MonoType's context matches
5978         the current context.
5979           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5980         to the expected context.
5981           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5982
5983 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5984
5985         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5986         we changed the signature of an icall.
5987         * icall.c: Modify to mono_double_ParseImpl return true/false 
5988         depending on the success, instead of throwing the exception. This will
5989         help us in Double.TryParse methods.
5990         
5991 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5992
5993         * marshal.c (emit_marshal_object): Throw an exception when
5994         marshalling 'object' instead of crashing. Fixes #76696.
5995
5996 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5997
5998         * class-internals.h: Add prototype for mono_type_get_full_name ().
5999
6000 2005-11-11  Dick Porter  <dick@ximian.com>
6001
6002         * threads.c (mono_thread_manage): Make sure the main thread has
6003         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
6004
6005 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
6006
6007         * loader.c (mono_loader_set_error_type_load): Log a warning to the
6008         console about the missing type.
6009         (mono_loader_set_error_method_load): Ditto.
6010
6011 2005-11-09  Miguel de Icaza  <miguel@novell.com>
6012
6013         * mono-config.c (mono_get_config_dir): Set the system defaults if
6014         none is specified.
6015
6016         * assembly.c (mono_set_dirs): New API entry point to set the
6017         assembly and the config directory in one call
6018
6019 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
6020
6021         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
6022         the ftnptr was created from a delegate in a domain other than the
6023         current domain. Fixes #75377.
6024
6025         * exception.h exception.c: Add mono_get_exception_not_supported ().
6026
6027 2005-11-08  Martin Baulig  <martin@ximian.com>
6028
6029         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
6030
6031 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
6032
6033         * security-manager.h: Added definitions to deal with strongname key 
6034         pairs bigger (and smaller) than 1024 bits.
6035         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
6036         adjust wrt the public key length being used.
6037
6038 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
6039
6040         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
6041           Windows build (r51396-51397).
6042
6043 2005-11-03  Martin Baulig  <martin@ximian.com>
6044
6045         * class.c (mono_class_setup_vtable_general): Also add generic
6046         methods to the vtable; fixes #76581.
6047
6048 2005-11-01  Miguel de Icaza  <miguel@novell.com>
6049
6050         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
6051         sure that we lookup GetString method from the System.Text.Encoding
6052         class, not the derived class or we get an empty method.
6053
6054         Fixed class #76612.
6055
6056 2005-10-25  Miguel de Icaza  <miguel@novell.com>
6057
6058         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
6059         if it has been previously set (embedders). 
6060
6061         Make mono_set_rootdir available also on Unix.
6062
6063 005-10-24  Robert Jordan  <robertj@gmx.net>
6064
6065         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
6066
6067 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
6068
6069         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
6070         only calls which are made to native code use this flag.
6071
6072         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
6073
6074 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
6075
6076         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
6077         Add support for FieldBuilders.
6078
6079 2005-10-29  Martin Baulig  <martin@ximian.com>
6080
6081         * mono-debug.c
6082         (mono_debug_using_mono_debugger): New public method; returns
6083         whether we're running inside the debugger.
6084
6085 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
6086
6087         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
6088         for Method/Constructor/FieldBuilders.
6089
6090 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
6091
6092         * reflection.c (module_add_cattrs): Save custom attributes for global methods
6093         and fields as well.
6094
6095 2005-10-26  Martin Baulig  <martin@ximian.com>
6096
6097         * mono-debug-debugger.c
6098         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
6099
6100 2005-10-24  Raja R Harinath  <harinath@gmail.com>
6101
6102         * icall.c (base64_to_byte_array): Don't pass an out-of-range
6103         integer to isspace.
6104
6105 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
6106
6107         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
6108         when passing valuetypes byref. Fixes #76502.
6109
6110 2005-10-19  Jackson Harper  <jackson@ximian.com>
6111
6112         * profiler.c: Don't put a . in front of types that are not in a
6113         namespace.
6114
6115 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
6116
6117         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
6118
6119 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
6120
6121         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
6122         #76436.
6123         (mono_marshal_get_ldflda_wrapper): Fix a warning.
6124
6125 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6126
6127         * assembly.c metadata-internals.h icall.c: Define an additional
6128         parameter for mono_assembly_name_parse_full, so we can avoid creating
6129         S.R.AssemblyName.Version when no version info wasn't passed.
6130         
6131 2005-10-09  Miguel de Icaza  <miguel@novell.com>
6132
6133         * class.c (mono_type_get_full_name): Reimplement method that was
6134         removed. 
6135
6136         * image.c: Some docs
6137
6138 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
6139
6140         * profiler.c (output_newobj_profile): Fix printing of Total memory
6141         on x86.
6142
6143 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6144
6145         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
6146
6147 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
6148
6149         * threads.c: remove debug output.
6150
6151 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6152
6153         * threads.c (mono_thread_manage): Fix crashes if more than 64
6154         threads need to be aborted. Hopefully fixes #75899.
6155
6156         * assembly.c (mono_stringify_assembly_name): New helper function.
6157
6158         * class.c: Use mono_stringify_assembly_name instead of the similar
6159         static function.
6160
6161         * assembly.h assembly.c: Add support for calling a postload search 
6162         hook if an assembly cannot be loaded.
6163
6164         * appdomain.c: Register new search hooks which call the AssemblyResolve
6165         events in AppDomain. Fixes #75231
6166
6167 2005-10-07  Martin Baulig  <martin@ximian.com>
6168
6169         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
6170         methods without debug info.
6171
6172 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
6173
6174         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
6175         wrappers.
6176
6177 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6178
6179         * file-io.c: now that we return symlinks, use lstat and, when the file
6180         is a symbolic link, stat, to get the file attributes. Also avoid the
6181         conversion to/from utf16/external.
6182
6183 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
6184
6185         * class.c (mono_class_layout_fields): Compute klass->has_references
6186         correctly if an embedded valuetype is not yet initialized. Fixes
6187         #76331.
6188
6189 2005-10-04  Martin Baulig  <martin@ximian.com>
6190
6191         * metadata.c
6192         (mono_metadata_load_generic_param_constraints): New public
6193         function; splitted the constraints loading out from
6194         mono_metadata_load_generic_params().
6195
6196         * class.c (mono_class_create_from_typedef): Call
6197         mono_metadata_load_generic_param_constraints() after setting up
6198         the type and creating our parent; fixes #75329.
6199
6200 2005-10-04  Martin Baulig  <martin@ximian.com>
6201
6202         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
6203         non-dynamic parent classes.
6204
6205 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6206
6207         * file-io.c : win32 build fix (ETXTBSY seems not found).
6208
6209 2005-10-04  Martin Baulig  <martin@ximian.com>
6210
6211         * reflection.c
6212         (mono_image_get_methodspec_token): Make the cache actually work;
6213         fixes #75974.
6214
6215 2005-10-04  Martin Baulig  <martin@ximian.com>
6216
6217         * class.c (mono_class_name_from_token): Removed the unneccessary
6218         `MonoGenericContext *' argument.
6219
6220 2005-10-04  Martin Baulig  <martin@ximian.com>
6221
6222         * loader.c
6223         (method_from_methodspec): Make the caching work again; fixes the
6224         performance regression from #76262.
6225
6226 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6227
6228         * file-io.c:
6229         * file-io.h:
6230         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
6231         GetFileSystemEntries that performs the same work but without going
6232         into io-layer, locking, etc.
6233
6234 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
6235
6236         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
6237         ThreadState_Stopped as well. Fixes #76047.
6238
6239 2005-09-29  Martin Baulig  <martin@ximian.com>
6240
6241         * class.c
6242         (inflate_generic_context): If the new context has a `gmethod', set
6243         its `container' that that gmethod's `container'.
6244
6245         * metadata.c
6246         (mono_metadata_parse_generic_param): Simplify things;
6247         `generic_container = generic_context->container;' is just fine.
6248
6249         * loader.c (method_from_methodspec): Code cleanups.
6250
6251 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
6252
6253         * decimal.c: fix warning (and let gcc generate correct
6254         code on ARM with optimizations).
6255
6256 2005-09-28  Martin Baulig  <martin@ximian.com>
6257
6258         * loader.c
6259         (method_from_memberref): Added `MonoGenericContext *class_context'
6260         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
6261         (method_from_methodspec): If we're a memberref, use the enclosing
6262         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
6263
6264 2005-09-28  Martin Baulig  <martin@ximian.com>
6265
6266         * object.c (mono_runtime_invoke_array): Added support for
6267         MONO_TYPE_GENERICINST; fixes #75917.
6268
6269 2005-09-27  Martin Baulig  <martin@ximian.com>
6270
6271         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6272         `k->byval_arg.type' to determine the actual type.
6273
6274         * loader.c (method_from_methodspec): Removed some hacks.
6275
6276 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6277
6278         * class-internals.h (mono_field_is_deleted): Do the test for
6279         rtspecialname before we check the actual name of the field. This
6280         prevents us from dereferencing a pointer into the string table,
6281         saving us from accessing a few pages
6282
6283         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6284         macros. This will allow a deadlock debugger to easily be plugged
6285         in.
6286
6287 2005-09-27  Martin Baulig  <martin@ximian.com>
6288
6289         * loader.c (method_from_methodspec): Create a "signature"
6290         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6291
6292 2005-09-27  Martin Baulig  <martin@ximian.com>
6293
6294         * class.c
6295         (inflate_generic_class): Correctly set the new context's
6296         container.
6297
6298         * loader.c
6299         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6300         instead of a `MonoGenericContext *'.
6301         (mono_method_signature_full): Take a `MonoGenericContainer *'
6302         instead of a `MonoGenericContext *'.
6303
6304         * metadata.c
6305         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6306         instead of a `MonoGenericContext *'.
6307         (mono_metadata_parse_method_signature_full): Likewise.
6308
6309 2005-09-26  Martin Baulig  <martin@ximian.com>
6310
6311         * class.c
6312         (mono_class_from_generic_parameter): Set `klass->generic_container'
6313         (mono_class_from_generic_parameter): Likewise.
6314         (mono_bounded_array_class_get): We inherit the generic container
6315         from the element class.
6316
6317         * loader.c
6318         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6319         argument rather than computing it here.
6320         (method_from_memberref): Correctly set the generic context before
6321         parsing the signature.  Fixes #75681.
6322
6323 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6324
6325         * object.c (mono_class_has_special_static_fields): Fix warnings.
6326
6327 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6328
6329         * assembly.c: Add parse_public_key function, to
6330         par the public keys. Also added mono_assembly_name_parse_full,
6331         to define it the parsed key should be freed or not.
6332         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6333         to parse a long format assembly name.
6334         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6335         private, since calling it to preserve the key requires
6336         freeing it manually.
6337         
6338 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6339
6340         * locales.c : removed HAVE_ICU part.
6341
6342 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6343
6344         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6345         field_is_special_static if the klass has no special static fields.
6346
6347         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6348         (MonoCachedClassInfo): Likewise.
6349
6350         * object.c (mono_class_has_special_static_fields): New helper function.
6351
6352 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6353
6354         * class.c (mono_class_create_from_typedef): Don't call 
6355         interfaces_from_typedef_full for enums.
6356         (mono_class_create_from_typedef): Compute the base types of enums directly
6357         without calling mono_class_setup_fields ().
6358         (mono_class_find_enum_basetype): New helper function.
6359
6360         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6361         one place inside the string heap.
6362         
6363 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6364
6365         * class.c: locking fixes, code cleanups, some docs added.
6366         Allocate some data structures in the image mempool.
6367
6368 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6369
6370         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6371         the example code.
6372         
6373 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6374
6375         * class-internals.h, class.c, reflection.c: reduce memory taken by
6376         MonoClass.
6377
6378 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6379
6380         * metadata.c, metadata.h, loader.h: documentation updates, code and
6381         API cleanups.
6382
6383 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6384
6385         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6386         the example code.
6387
6388         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6389         page faults caused by the runtime while reading metadata.
6390
6391 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6392
6393         * socket-io.c: the field names were changed 3 months ago and no one
6394         realized until bug #76077 got filed!
6395
6396 2005-09-20  Martin Baulig  <martin@ximian.com>
6397
6398         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6399
6400 2005-09-20  Martin Baulig  <martin@ximian.com>
6401
6402         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6403         write the rank into the class entry.
6404
6405 2005-09-20  Martin Baulig  <martin@ximian.com>
6406
6407         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6408
6409 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6410
6411         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6412
6413         * icall.c (custom_attrs_defined_internal): New icall.
6414
6415         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6416         function.
6417         (mono_custom_attrs_construct_by_type): New helper function.
6418
6419 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6420
6421         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6422         terminate the resulting string. Fixes #76123.
6423
6424 2005-09-16  Martin Baulig  <martin@ximian.com>
6425
6426         * mono-debug.c
6427         (mono_debug_add_method): Ignore inflated methods for the moment.
6428
6429 2005-09-14  Martin Baulig  <martin@ximian.com>
6430
6431         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6432
6433 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6434
6435         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6436         return a success/failure indication.
6437         (mono_metadata_interfaces_from_typedef_full): Ditto.
6438         (get_constraints): Ditto.
6439
6440 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6441
6442         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6443         
6444         * marshal.c (emit_marshal_array): Add support for returning string
6445         arrays from delegates. Fixes #76063.
6446
6447         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6448
6449 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6450
6451         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6452         icall.
6453
6454 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6455
6456         * reflection.c icall.c: Fix after mono_get_exception_type_load
6457         signature change.
6458
6459         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6460         (mono_assembly_load_reference): Use the new helper.
6461
6462         * class-internals.h (MonoLoaderError): New structure containing 
6463         information about type loading errors.
6464
6465         * class-internals.h loader.c: Add APIs to store per-thread loader
6466         error information.
6467
6468         * loader.c class.c: Set the loader error if needed.
6469
6470         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6471
6472 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6473
6474         * decimal.c: fixed to handle the broken ARM fp format.
6475
6476 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6477
6478         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6479         broken.
6480
6481 2005-09-06  Martin Baulig  <martin@ximian.com>
6482
6483         * domain.c (supported_runtimes): Added v2.0.50727.
6484
6485 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6486
6487         * culture-info.h: reduce the size of some structures.
6488
6489 2005-09-05  Martin Baulig  <martin@ximian.com>
6490
6491         Reflect latest API changes in the August CTP.
6492
6493         * icall.c
6494         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6495         ("MonoType.HasGenericArguments"): Removed.
6496         ("MonoMethod.BindGenericParameters"): Renamed to
6497         "MakeGenericMethod".
6498         ("MethodBuilder.BindGenericParameters"): Renamed to
6499         "MakeGenericMethod".    
6500
6501 2005-09-05  Martin Baulig  <martin@ximian.com>
6502
6503         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6504
6505 2005-09-05  Martin Baulig  <martin@ximian.com>
6506
6507         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6508
6509         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6510         generic_container is non-NULL.
6511
6512 2005-09-05  Martin Baulig  <martin@ximian.com>
6513
6514         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6515
6516         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6517
6518 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6519
6520         * reflection.c (encode_locals,
6521         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6522         for large generic types.
6523
6524 2005-09-05  Martin Baulig  <martin@ximian.com>
6525
6526         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6527
6528         * class.c (mono_dup_array_type): New public method.
6529         (mono_metadata_signature_deep_dup): New public method.
6530         (dup_type): Correctly duplicate array and function types.
6531
6532 2005-09-05  Martin Baulig  <martin@ximian.com>
6533
6534         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6535
6536         * reflection.c (get_default_param_value_blobs): Handle generic types
6537         and generic methods.
6538
6539 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6540
6541         * class.c: Fixed error reporting (method/class were inversed) for 
6542         inheritance demands.
6543         * security-manager.c|h: Added the AppDomain when calling the managed
6544         System.Security.SecurityManager.InheritanceDemand method.
6545
6546 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6547
6548         * reflection.c (encode_marshal_blob): 'marshaltype' and
6549         'marshaltyperef' are alternate sources for the custom marshaler
6550         name.
6551
6552 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6553
6554         * class.c: fix creation of array classes with rank == 1
6555         (patch by Ankit Jain <jankit@novell.com>).
6556
6557 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6558
6559         * object.c: fix check for creating the bound data for arrays vs
6560         szarrays.
6561
6562 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6563
6564         * object.c: configuration file name is now based on the executable name,
6565         not the image name. Fixes bug #75931.
6566
6567 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6568
6569         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6570         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6571
6572 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6573
6574         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6575
6576 2005-08-24  Ankit Jain  <jankit@novell.com>
6577             Raja R Harinath  <rharinath@novell.com>
6578
6579         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6580           called by it recursively.
6581           (mono_class_init): Remove special case in pending_init handling, since it's
6582           superseded by the fix to mono_class_from_typeref.
6583
6584 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6585
6586         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6587         BROKEN_THREAD_START stuff.
6588
6589 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6590
6591         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6592         trampoline.
6593
6594         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6595         
6596         * object.c (mono_delegate_ctor): Replace the original function address with
6597         a delegate trampoline.
6598
6599 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6600
6601         * icall.c: add boolean argument to base64_to_byte_array and 
6602         InternalFromBase64String to control whether a whitespace-only string
6603         is allowed (or should casue a FormatException to be thrown). We need
6604         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6605         to match the MS behaviour in both profiles.
6606         * appdomain.c: Bump corlib version.
6607
6608 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6609
6610         This patch implements a big portion of publisher policy
6611         support, used to bind assembly versions and redirect
6612         one assembly from version A to version B.
6613
6614         * assembly.c:
6615         New GSList loaded_assembly_bindings, for storing the cached
6616         assembly bindings.
6617         (assembly_binding_maps_name): New static function for checking if a 
6618         assembly binding information maps an assembly name.
6619         (mono_assembly_binding_info_free): New function for freeing
6620         assembly binding information resources.
6621         (get_publisher_policy_info): New static function for retrieving 
6622         assembly binding information from a MonoImage.
6623         (compare_versions): New static function for comparing an assembly
6624         binding information data and the version of an assembly name.
6625         (check_policy_versions): New static function for checking if an
6626         assembly binding info mapping an assembly name is valid for it.
6627         (mono_assembly_load_publisher_policy): New static function for
6628         loading the 'policy.major.minor.MyAssembly' image for an assembly
6629         with an assembly name 'aname'.
6630         (mono_assembly_bind_version): New static function for updating
6631         assembly redirection.
6632         (mono_assembly_apply_binding): New static function for applying
6633         assembly binding.
6634         (search_binding_loaded): New static function for searching 
6635         loaded assembly binding infos in the cache domain.
6636         (mono_assembly_load_full): Don't apply assembly binding for
6637         reflection only assemblies.
6638
6639         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6640         which contains information about assembly binding. Also
6641         declare signature for mono_config_parse_publisher_policy ()
6642         function, used to retrieve pub policy info.
6643         
6644         * mono-config.c:
6645         (publisher_policy_start): New static function used to parse publisher 
6646         policy config files.
6647         (publisher_policy_parser): New static MonoParseHandler containing 
6648         the functions used when parsing config files.
6649         (mono_config_parse_publisher_policy): New function for parsing
6650         publisher policy files.
6651         
6652 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6653
6654         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6655
6656         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6657
6658         * object.c (mono_get_addr_from_ftnptr): New helper function.
6659
6660         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6661
6662         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6663
6664 2005-08-19  Dick Porter  <dick@ximian.com>
6665
6666         * threads.c, threads.h, appdomain.c, appdomain.h,
6667         profiler-private.h, monitor.c, object.c, object-internals.h,
6668         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6669         store the thread ID, so it can hold a 64 bit value if needed.
6670
6671 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6672
6673         * reflection.c (mono_reflection_create_dynamic_method): Store the
6674         handle class into the method references as well so ldtoken works in
6675         dynamic methods.
6676
6677         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6678         types.
6679
6680 2005-08-19  Ankit Jain <jankit@novell.com>
6681
6682         Fix #75847.
6683         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6684           here rather than using the method signature of a arbitrary function
6685           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6686           two arguments.
6687           Hack done with Harinath.
6688
6689 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6690
6691         * threadpool.c: disable printing stack traces when we get a exception
6692         in a threadpool thread. I need to do more testing to figure out which
6693         cases actually print this. Fixes bug #75828.
6694
6695 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6696
6697         * icall.c: there might be ignored whitespace after the last '='. This
6698         fixes length computation and bug #75840.
6699
6700 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6701
6702         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6703         well. Fixes #75809.
6704
6705         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6706         #75784.
6707         
6708         * reflection.c (create_custom_attr_data): Ditto.
6709
6710 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6711
6712         * locales.c, culture-info.h : removed RegionLCIDMap.
6713         * culture-info-tables.h : regenerated.
6714
6715 2005-08-16  Martin Baulig  <martin@ximian.com>
6716
6717         * class.c (mono_type_get_name_recurse): Small fix.
6718
6719 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6720
6721         * locales.c : indentation fixie.
6722
6723 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6724
6725         * object-internals.h,
6726           locales.h,
6727           locales.c,
6728           culture-info.h,
6729           icall.c : added RegionInfo table support.
6730         * culture-info-table.h : regenerated for region support.
6731
6732 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6733
6734         * reflection.c (resolve_object): handle all kinds of MonoMethod
6735         including generic ones
6736
6737 2005-08-12  Ankit Jain <jankit@novell.com>
6738
6739         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6740           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6741
6742 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6743
6744         * process.c: Don't close a thread handle when it's NULL. This is a
6745         workaround for bug #75733.
6746
6747 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6748
6749         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6750
6751 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6752
6753         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6754
6755 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6756
6757         * threadpool.c: if a work item in the thread pool has a callback that
6758         catches a exception, don't propagate it after invoking the callback.
6759         Fixes bug #75336.
6760
6761 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6762
6763         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6764
6765         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6766
6767         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6768
6769         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6770
6771 2005-08-03  Ankit Jain  <jankit@novell.com>
6772
6773         Fix #75683.
6774         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6775           PInvoke calling convention is 0.
6776
6777 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6778
6779         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6780         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6781
6782 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6783
6784         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6785         to handle threads not started by the GC (patch by Michael Meeks
6786         <michael.meeks@novell.com>).
6787
6788 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6789
6790         * reflection.c: Make buffer used in emitting types larger for some
6791         big generic types (patch by Michal Moskal).
6792
6793 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6794
6795         * mono-debug.c: Fix some (not all) alignment problems.
6796
6797 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6798
6799         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6800         Invoke mono_image_load_from_data_full passing the refonly
6801         parameter.
6802
6803         * assembly.c
6804         (mono_assembly_open_from_bundle): Add the refonly argument, 
6805         in order to pass it to other methods it calls to.
6806         (do_mono_assembly_open): Add the refonly argument, in order 
6807         to pass it to other methods it calls to.
6808         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6809         the refonly parameter to it.
6810
6811         * image.c: Add loaded_images_refonly_hash and
6812         loaded_images_refonly_guid_hash to cache the reflection
6813         only loaded images.
6814         (mono_images_init): Initialize the hash tables used for
6815         caching the reflection only images.
6816         (load_modules): Invoke mono_image_open_full passing the refonly
6817         parameter to load the modules the correct way.
6818         (build_guid_table): Add the refonly argument, to re-build the 
6819         correct hash table.
6820         (do_mono_image_open): Added the refonly argument, in order to
6821         define it for the loaded image.
6822         (mono_image_loaded_full): New function, which receives an
6823         additional parameter to look for the image in the refonly or
6824         non-refonly section.
6825         (mono_image_loaded): Updated, using mono_image_loaded_full.
6826         (mono_image_loaded_by_guid_full): The same case that happens
6827         with mono_image_loaded_full.
6828         (mono_image_loaded_by_guid): Likewise.
6829         (register_image): Use the ref_only variable inside MonoImage
6830         to decide in which hash table store the current image.
6831         (mono_image_open_from_data_full): Rename
6832         mono_image_open_from_data to mono_image_open_from_data_full,
6833         adding the refonly argument, to define the ref_only variable 
6834         inside MonoImage.
6835         (mono_image_open_from_data): Return 
6836         mono_image_open_from_data_full.
6837         (mono_image_open_full): Rename mono_image_open to
6838         mono_image_open_full, receiving the new refonly argument,
6839         to pass it to inner methods.
6840         (mono_pe_file_open): Update this function, to open
6841         a MonoImage as a non-refonly image.
6842         (mono_image_close): Use the refonly variable inside
6843         MonoImage to remove the image from the correct caches.
6844
6845         * image.h: Add the signatures of mono_image_open_full,
6846         mono_image_open_from_data_full, mono_image_loaded_full,
6847         mono_image_loaded_by_guid_full.
6848
6849         * metadata-internals.h: Add the ref_only field to 
6850         MonoImage.
6851         
6852 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6853
6854         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6855         Fix the last behavior, which used to load the assemblies and
6856         extract MonoReflectionAssemblyName information, instead of
6857         extract it from the metadata tables. Needed for Reflection
6858         Only assemblies.
6859         
6860 2005-07-29  Martin Baulig  <martin@ximian.com>
6861
6862         * mono-debug-debugger.c
6863         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6864         not initialized.
6865
6866         * mono-debug.c
6867         (mono_debug_address_from_il_offset): Check whether we have
6868         debugging support before attempting to take the lock.
6869         (mono_debug_source_location_from_address): Likewise.
6870         (mono_debug_source_location_from_il_offset): Likewise.
6871         (mono_debug_il_offset_from_address): Likewise.
6872         (mono_debug_address_from_il_offset): Likewise.
6873
6874 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6875
6876         * class.c (mono_class_from_name_case): Add support for dynamic images.
6877         Fixes #75650.
6878
6879         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6880         for #75479.
6881
6882 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6883         
6884         * reflection.c (mono_method_get_object): Fix warning.
6885
6886 2005-07-28  Martin Baulig  <martin@ximian.com>
6887
6888         * mono-debug.c
6889         (mono_debug_add_wrapper): Also write the wrapper type.
6890
6891 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6892
6893         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6894         
6895         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6896         data indicates the class has none.
6897
6898 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6899
6900         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6901         loader lock with the debugger lock. Prevents deadlocks for beagle.
6902
6903         Beagle can now run on an smp box for a weekend without any
6904         issues. Woohoo!
6905
6906 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6907
6908         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6909         in a module. Fixes #75629.
6910
6911 2005-07-26  Martin Baulig  <martin@ximian.com>
6912
6913         * mono-debug.c (mono_debug_add_wrapper): New static method.
6914         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6915         interncall or a wrapper.
6916
6917         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6918         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6919         (MONO_DEBUGGER_VERSION): Bump to 51.
6920
6921         * mono-debug-debugger.c
6922         (mono_debugger_add_type): Removed this empty function.
6923         (mono_debugger_add_method): Likewise.
6924
6925 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6926
6927         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6928         before accessing method->slot.
6929
6930 2005-07-21  Jb Evain  <jbevain@gmail.com>
6931
6932         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6933         Fixes #75010.
6934
6935 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6936
6937         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6938         #75587.
6939
6940 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6941
6942         * image.h image.c: Add mono_image_get_guid () API function.
6943
6944 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6945
6946         There were issues when multiple threads tried to load
6947         assemblies. A deadlock was created between assemblies_mutex and
6948         mono_domain_assemblies_lock. This fixes the issue by making the
6949         assembly ref counting be lock free. See bug 75586.
6950         
6951         * image.c (mono_image_close): The add ref function here was using
6952         Interlocked operations while the unref was using a mutex and a
6953         --. I don't think this was ever a bug that would be exposed in a
6954         non-pendantic way (ie, by an embedder doing a ref on one thread
6955         and an unref on another), but for the sake of correctness, this is
6956         now Interlocked.
6957
6958         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6959         (mono_assembly_load_reference): Call mono_assembly_addref rather
6960         than touching the refcount ourselves.
6961         (mono_assembly_close): Use InterlockedDecrement to unref the
6962         assembly. Don't acquire the lock unless it is actually needed.
6963
6964 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6965
6966         * class.c (mono_class_layout_fields): Fix calculation of has_references
6967         for generic types.
6968
6969 2005-07-12  Martin Baulig  <martin@ximian.com>
6970
6971         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6972
6973         * metadata.c
6974         (mono_type_hash): Provide better hashing for generic instances.
6975         (mono_generic_inst_hash): Improve hashing.
6976         (mono_generic_class_hash): Likewise.
6977
6978         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6979         generic instances.
6980
6981 2005-07-12  Martin Baulig  <martin@ximian.com>
6982
6983         * reflection.c (mono_reflection_create_runtime_class): Remove the
6984         hack for generic type definitions and non-`Run' assemblies.
6985         (mono_reflection_bind_generic_parameters): Also use
6986         `klass->wastypebuilder' to check for TypeBuilders.
6987
6988 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6989
6990         * class.c (mono_class_layout_fields): Fix calculation of has_references
6991         for generic types.
6992
6993         * class.c (inflate_generic_class): Fix a leak.
6994         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6995         for generic types.
6996
6997 2005-07-11  Martin Baulig  <martin@ximian.com>
6998
6999         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
7000         on error.
7001
7002 2005-07-11  Martin Baulig  <martin@ximian.com>
7003
7004         * loader.c (find_method): Also lookup in
7005         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
7006
7007 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7008
7009         * appdomain.c (mono_domain_unload): Don't free the error message
7010         before passing it to mono_get_exception_...
7011
7012         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
7013         
7014 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
7015
7016         * threads.c: try to better guess an available RT signal (bug #75387).
7017
7018 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7019
7020         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
7021         and CACHE_OBJECT.
7022
7023 2005-07-07  Martin Baulig  <martin@ximian.com>
7024
7025         * class.c (mono_type_get_name_full): Return NULL for
7026         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
7027         fixes #75408.
7028
7029 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
7030
7031         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
7032         exit the appdomain as well being aborted.
7033
7034         * threadpool.c: Create all threadpool threads inside the root appdomain, and
7035         change back to the root domain after calling managed code. This enables
7036         appdomains using threadpools to be unloaded.
7037
7038 2005-07-07  Martin Baulig  <martin@ximian.com>
7039
7040         * class-internals.h
7041         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
7042         into `MonoDynamicGenericClass' since we only need it for dynamic
7043         types.
7044
7045         * reflection.c (mono_class_bind_generic_parameters): We don't need
7046         to compute the `parent' here.
7047
7048 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
7049
7050         * culture-info-table.h : regenerated.
7051
7052 2005-07-06  Martin Baulig  <martin@ximian.com>
7053
7054         * icall.c
7055         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
7056
7057         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
7058
7059 2005-07-06  Martin Baulig  <martin@ximian.com>
7060
7061         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
7062         we're doing a signature-only comparision; fixes #74945.
7063
7064 2005-07-06  Martin Baulig  <martin@ximian.com>
7065
7066         * class-internals.h (MonoGenericClass): Moved some things out into
7067         a new `MonoInflatedGenericClass' type.  
7068         (MonoInflatedGenericClass): New type; the `klass' of a
7069         `MonoGenericClass' is now computed lazyly in
7070         mono_get_inflated_generic_class().      
7071
7072         * class.c (mono_get_inflated_generic_class): New public function.
7073         (mono_class_inflate_generic_method): Removed the unused
7074         `MonoClass *' argument.
7075         (setup_generic_vtable): Don't call mono_get_inflated_method() on
7076         all the methods.
7077         (mono_class_create_generic): Make this static and merge it with
7078         mono_class_create_generic_2(); we're now called automatically from
7079         mono_get_inflated_generic_class().
7080
7081         * loader.c (mono_method_signature): Call
7082         mono_get_inflated_method() here.
7083
7084 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
7085
7086         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
7087         type of fields with RVA.
7088
7089         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
7090         for this pseudo class.
7091         (my_mono_class_from_generic_parameter): Likewise.
7092         (mono_class_init): Allow interfaces to have cctors.
7093
7094 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7095
7096         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
7097         lazily for AOT methods.
7098
7099 2005-07-05  Martin Baulig  <martin@ximian.com>
7100
7101         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
7102         returns FALSE for a successful match, not TRUE.
7103
7104 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
7105
7106         * loader.c (mono_method_get_index): Optimize this a bit.
7107
7108 2005-07-04  Martin Baulig  <martin@ximian.com>
7109
7110         * class.c
7111         (class_compute_field_layout): Move the check for generic type
7112         definitions into mono_class_layout_fields().  Fixes #74684.
7113         (mono_class_from_generic_parameter): Correctly compute
7114         `klass->parent'; fixes #75457.
7115
7116         * reflection.c (register_assembly, register_module): Make sure
7117         `domain->rejobject_hash' is already created.
7118
7119 2005-07-02  Martin Baulig  <martin@ximian.com>
7120
7121         * class-internals.h
7122         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
7123         `MonoDynamicGenericClass'.      
7124
7125 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
7126
7127         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
7128         returned by a field getter is null, since null is a valid value.
7129
7130 2005-07-01  Martin Baulig  <martin@ximian.com>
7131
7132         * reflection.c (mono_reflection_generic_class_initialize): Update
7133         the `dgclass->fields [i].parent' to the correct class.
7134         (mono_image_get_fieldref_token): Use the declaring type, not the
7135         reflected type.
7136
7137 2005-07-01  Martin Baulig  <martin@ximian.com>
7138
7139         * loader.c (find_method): Also look in the interfaces; fixes #75429.
7140
7141 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
7142
7143         * threads.c (thread_cleanup): assert that thread != NULL
7144         (wait_for_tids_or_state_change): We were using the wrong variable
7145         when accessing wait->threads. `i' was always out of the bounds of
7146         the array.
7147
7148 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7149
7150         * loader.c: map user32 and kernel32 to libMonoSupportW
7151
7152 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
7153
7154         * appdomain.c (unload_thread_main): Mark this as WINAPI.
7155
7156 2005-06-28  Martin Baulig  <martin@ximian.com>
7157
7158         * loader.c (method_from_methodspec): Fix #75334.
7159
7160 2005-06-28  Martin Baulig  <martin@ximian.com>
7161
7162         Fix #74953 - Arrays now implement the generic IList<T> interface
7163         on the 2.0 platform.
7164
7165         * class-internals.h (MonoDefaults): Added `generic_array_class'.
7166
7167         * reflection.c (mono_class_bind_generic_parameters): New public
7168         function; similar to mono_reflection_bind_generic_parameters(),
7169         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
7170
7171         * domain.c (mono_init_internal): Try to initialize.
7172         `mono_defaults.generic_array_class' here; this'll only succeed if
7173         we're using the 2.0 corlib.
7174
7175         * icall.c
7176         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
7177         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
7178         (mono_lookup_internal_call): Added support for nested classes.
7179
7180         * loader.c
7181         (mono_get_method_from_token): Set `result->signature->pinvoke' if
7182         we're an interncall and have generic arguments.
7183
7184         * class.c
7185         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
7186         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
7187         instance of System.Array.InternalArray<T> for arrays, so they
7188         implement the generic IList<T> interface.
7189
7190 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
7191
7192         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
7193         (chastamar@yahoo.com). Fixes #75374.    
7194
7195 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
7196
7197         * culture-info-table.h: regenerated.
7198
7199 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7200
7201         * icall.c: handle spaces correctly for base64 strings.
7202
7203 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
7204
7205         * *.c: Kill some warnings.
7206
7207 2005-06-23  Duncan Mak  <duncan@novell.com>
7208
7209         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
7210         that this builds on Solaris 10 (x86).
7211
7212 2005-06-23  Martin Baulig  <martin@ximian.com>
7213
7214         * class.c
7215         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
7216         generic type definitions.
7217
7218 2005-06-23  Martin Baulig  <martin@ximian.com>
7219
7220         Fix #75331.
7221
7222         * metadata.c (mono_class_get_overrides): Renamed to
7223         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
7224         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
7225         pass it to mono_get_method_full().
7226
7227 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
7228
7229         * reflection.c (mono_reflection_create_runtime_class): take the
7230         mono_domain_lock in this method. Prevents deadlocks
7231
7232 2005-06-22  Martin Baulig  <martin@ximian.com>
7233
7234         * loader.c (method_from_methodspec): Fix #75330.
7235
7236 2005-06-22  Martin Baulig  <martin@ximian.com>
7237
7238         * reflection.c (type_get_qualified_name): Use
7239         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
7240         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
7241         argument; use it if we don't have an assembly name.
7242
7243 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
7244
7245         * object.c: In mono_message_init, set "copy out" flag for in
7246         parameters with the [Out] flag.
7247
7248 2005-06-21  Martin Baulig  <martin@ximian.com>
7249
7250         * class.c
7251         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
7252         and MONO_TYPE_PTR.
7253
7254 2005-06-21  Martin Baulig  <martin@ximian.com>
7255
7256         * class.c (mono_class_init): Don't initialize `class->fields' for
7257         generic instances since they're initialized again in
7258         compute_field_layout(). 
7259         (compute_field_layout): Set the field's `generic_info' here; fix
7260         #75320. 
7261
7262 2005-06-21  Martin Baulig  <martin@ximian.com>
7263
7264         * class-internals.h
7265         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7266
7267         * metadata.c (mono_metadata_generic_method_equal): Also
7268         distinguish the `generic_class'; fixes #75334.
7269
7270 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7271
7272         * domain.c:
7273         * appdomain.c:
7274         * domain-internals.h:
7275         * reflection.c: 'domain_assemblies' field is now protected by its own
7276         lock. Don't call into managed code to run the AssemblyLoad event if we
7277         now there are no registered delegates for it.
7278
7279 2005-06-20  Martin Baulig  <martin@ximian.com>
7280
7281         * class.c (mono_class_is_assignable_from): Use a custom version of
7282         mono_class_has_parent() to make things work for generic instances;
7283         fix #75300.
7284
7285 2005-06-20  Martin Baulig  <martin@ximian.com>
7286
7287         * loader.c (method_from_methodspec): Apply a patch from
7288         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7289
7290 2005-06-20  Martin Baulig  <martin@ximian.com>
7291
7292         * class.c (mono_class_init): Reverted Zoltan's last change; it
7293         breaks generics.
7294
7295 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7296
7297         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7298
7299 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7300
7301         * socket-io.c: fix the index in the socket array for writable/error
7302         sockets. Fixes bug #75306.
7303
7304 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7305
7306         * class.c (mono_class_init): Allow interfaces to have static ctors.
7307
7308 2005-06-17  Martin Baulig  <martin@ximian.com>
7309
7310         * loader.c (method_from_methodspec): Use `context->container' when
7311         parsing the `gmethod->inst'.
7312
7313 2005-06-17  Martin Baulig  <martin@ximian.com>
7314
7315         * class.c (mono_type_get_name_recurse): Don't add the assembly
7316         name for type arguments.
7317
7318 2005-06-15  Martin Baulig  <martin@ximian.com>
7319
7320         * reflection.c (mono_image_get_inflated_method_token): Encode
7321         correct klass; fixes #75260.
7322
7323 2005-06-13 Michal Moskal <malekith@nemerle.org>
7324
7325         * icall.c: Make GetCorrespondingMethod/Constructor take
7326         MonoReflectionMethod method not MonoMethod. Removed
7327         MonoType.GetCorrespondingField, and make
7328         MonoGenericType.GetCorrespondingField take name not
7329         MonoClassField.
7330
7331 2005-06-13  Michal Moskal <malekith@nemerle.org>
7332
7333         * reflection.c (field_encode_signature, encode_locals):
7334          Make sizes of buffers for types larger (for big generic types).
7335          (create_generic_typespec,
7336          mono_reflection_sighelper_get_signature_local,
7337          mono_reflection_sighelper_get_signature_field):
7338          Add asserts for too small buffers.
7339
7340 2005-06-15  Martin Baulig  <martin@ximian.com>
7341
7342         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7343         if our parent is not a dynamic type.
7344
7345 2005-06-15  Martin Baulig  <martin@ximian.com>
7346
7347         * class-internals.h (MonoTypeNameFormat): New enum.
7348
7349         * class.c
7350         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7351         (mono_type_get_full_name): Removed.
7352         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7353         argument instead of the boolean's.
7354
7355         * icall.c (ves_icall_System_MonoType_getFullName):
7356         Added `gboolean assembly_qualified'.    
7357
7358         * reflection.h
7359         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7360
7361         * reflection.c (mono_reflection_parse_type): Parse the new type
7362         name format.
7363
7364 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7365
7366         * icall.c: no need to convert from utf16 to utf8 and then back again
7367         after the call to GetLogicalDrives.
7368
7369 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7370
7371         * icall.c: frombase64. Fix problems exposed by new tests.
7372
7373 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7374
7375         * icall.c: added internal calls for converting char [] and strings in
7376         base64 into byte [].
7377
7378 2005-06-10  Martin Baulig  <martin@ximian.com>
7379
7380         * class.c (mono_class_create_generic_2): Read the nested classes
7381         from the metadata rather than from `gklass->nested_classes' since
7382         `gklass' might not be initialized yet.
7383
7384 2005-06-09  Duncan Mak  <duncan@novell.com>
7385
7386         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7387         all public headers. Fixes #74919.
7388
7389 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7390
7391         * domain.c: The key for proxy_vtable_hash is now a pointer
7392         array. Added new GHashFunc and GCompareFunc functions for this.
7393
7394         * class.h: The list of interfaces in MonoRemoteClass is known in
7395         advance and can't grow (we create a new MonoRemoteClass if needed),
7396         so now the interface array can be allocated together with
7397         MonoRemoteClass.
7398         
7399         * object.c: Added a new method create_remote_class_key.
7400         Fixed mono_remote_class so it does not depend on
7401         mono_upgrade_remote_class.
7402         Removed extend_interface_array.
7403         Added new method clone_remote_class(), which makes a copy of a remote
7404         class and adds a new interface or class to it.
7405         mono_upgrade_remote_class() now creates a new remote class (or gets
7406         it from the cache) if an vtable upgrade is needed. In this way
7407         we make sure that other objects sharing the same remote class
7408         don't get the new vtable with unwanted interfaces.
7409         
7410         * object-internals.h:
7411         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7412         
7413         * marshal.c: Track changes in mono_upgrade_remote_class().
7414
7415 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7416         * icall.c: Add runtime methods for obtaining members of inflated
7417         class, which were created from supplied non-inflated members. It
7418         is used in internal Get{Method,Constructor,Field} methods in
7419         System.Type
7420
7421 2005-06-09  Martin Baulig  <martin@ximian.com>
7422
7423         * reflection.c
7424         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7425
7426 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7427         * reflection.c (mono_image_basic_init): Define
7428         Version in MonoDynamicAssembly. 
7429         
7430 2005-06-08  Martin Baulig  <martin@ximian.com>
7431
7432         Fix #75136.
7433
7434         * loader.c
7435         (mono_method_signature_full): New public method; takes a
7436         `MonoGenericContext *'.
7437         (find_method): Use mono_method_signature_full() and pass the
7438         klass'es context to it.
7439
7440         * class.c (mono_class_is_inflated_method): Use
7441         mono_method_signature_full() and pass the context to it.
7442
7443 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7444
7445         * object.c: add proper locking in mono_remote_class_vtable(),
7446         fixes possible memory corruption.
7447
7448 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7449
7450         * marshal.c (mono_remoting_marshal_init): set
7451         initialized after initialization.
7452
7453 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7454
7455         * locales.c : hush.
7456
7457 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7458
7459         * object.c (extend_interface_array): fix really silly
7460         memory corrupting / comparison bug.
7461
7462 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7463
7464         * reflection.c: Functions added to support the creation
7465         of CustomAttributeData, which includes Attribute data
7466         used by ReflectionOnly methods.
7467
7468         * reflection.h:  mono_reflection_get_custom_attrs_data and
7469          mono_custom_attrs_data_construct added (functions exposed).
7470
7471          * icall.c: Added mono_reflection_get_custom_attrs_data
7472          as icall.
7473         
7474 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7475
7476         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7477         lupus's request.
7478
7479 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7480
7481         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7482
7483         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7484         dynamic DllImportAttribute.
7485
7486         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7487         dynamic DllImportAttribute.
7488
7489         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7490         Fixes #75162.
7491
7492 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7493
7494         * threads.c: avoid segfault when an unstarted thread is aborted.
7495
7496 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7497
7498         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7499         Returns the name and version of the runtime for reporting.
7500
7501 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7502
7503         * appdomain.c: bump corlib version.
7504         * object-internals.h: new field in MonoReflectionAssembly.
7505
7506 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7507
7508         * object-internals.h: Carlos forgot to add this field.
7509
7510 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7511
7512         * icall.c: Added create_version to create instances
7513         of Version of MonoReflectionAssemblyName. This change helps
7514         the AssemblyName tests to keep running fine.
7515         
7516 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7517   
7518         * object.c (mono_method_return_message_restore): A somehow less
7519         intrusive fix for #75138.
7520
7521 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7522
7523         * object.c (mono_method_return_message_restore): Fix computation
7524         of expected number of out args.
7525
7526 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7527
7528         * reflection.c (mono_image_get_method_info): Fix the case when the
7529         charset is empty.
7530
7531 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7532
7533         * object.c: Added missing null check in
7534           mono_method_return_message_restore.
7535
7536 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7537
7538         * reflection.c (mono_image_get_method_info): Handle the case when
7539         dllentry is empty.
7540
7541 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7542
7543         * object.c: When creating the vtable for a proxy, take into account
7544         all inherited interfaces, not only the ones registered in
7545         iclass->interfaces. This fixs bug #74996.
7546         Also, in mono_method_return_message_restore, verify that the array
7547         of out args has the expected lengh.
7548
7549 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7550
7551         * socket-io.c: update the timeout in Poll when the call is interrupte.
7552
7553 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7554
7555         * socket-io.c: support abort/suspend in Select_internal after last
7556         change.
7557
7558 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7559
7560         * threadpool.c: remove warning.
7561
7562 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7563
7564         * icall.c:
7565         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7566         removing the 1024 limit from select(). Runtime part of the fix for
7567         bug #71203.
7568
7569 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7570
7571         * socket-io.c: when resolving the addresses for the same
7572         host returned by gethostname(), get the local IPs from the interface
7573         list. Loopback addresses are discarded if the are interfaces up with
7574         non-loopback ones. Fixes bug #63265.
7575
7576 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7577
7578         * appdomain.c, verify.c, object-internals.h, reflection.c:
7579         bumped corlib number to 36, and added new extra_flags field
7580         to ReflectionMethodBuilder and friends.  Fixes #75060.
7581
7582 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7583
7584         * gc.c: register a new weak link only if the object is non-null
7585         (fixes bug#75047).
7586
7587 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7588
7589         * culture-info.h : short time pattern too.
7590
7591 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7592
7593         * culture-info.h : expand long time pattern string length.
7594
7595 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7596
7597         * culture-info-table.h : update (more French date format; #72788).
7598
7599 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7600
7601         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7602         the method is static. Fixes #75029.
7603
7604 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7605
7606         * reflection.c: Update the table_idx field of method builders after
7607         saving the module, since it can change. This is a workaround for
7608         bug #74914. 
7609
7610 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7611
7612         * culture-info-table.h : update (additional French date format).
7613
7614 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7615
7616         * icall.c (ves_icall_type_Equals): Revert last change.
7617         
7618         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7619
7620         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7621
7622 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7623
7624         * class-internals.h: Added executioncontext_class field to 
7625         MonoDefaults structure.
7626         * domain.c: Cache System.Threading.ExecutionContext class in 
7627         mono_defaults.
7628         * object.c: Capture the ExecutionContext for asynchroneous calls in
7629          mono_async_result_new.
7630         * object-internals.h: Added execution_context and original_context 
7631         fields to MonoAsyncResult. Added execution_context to MonoThread.
7632         * security-manager.c|.h: Added mono_get_context_capture_method to 
7633         return the capture method (if required by the security manager or by
7634         the framework version used).
7635         * threadpool.c: Apply capture (if present) ExecutionContext in 
7636         mono_async_invoke and revert to original context after it completes.
7637
7638 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7639
7640         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7641
7642 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7643
7644         * culture-info-table.h : zh-CHT related workaround.
7645
7646 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7647
7648         * marshal.c (emit_marshal_custom): Add some error checking and call the
7649         methods in the ICustomMarshaler interface. Fixes #74875.
7650         
7651         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7652         native->managed wrappers.
7653
7654 2005-05-12  Martin Baulig  <martin@ximian.com>
7655
7656         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7657         here and use the loader lock.
7658
7659         * mono-debug.c: Properly lock when the debugger is not attached.
7660         (mono_debug_init): Release the initial lock if we're not running
7661         in the debugger.
7662
7663 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7664
7665         * marshal.c (emit_marshal_custom): Pass through NULL values without
7666         calling the custom marshalling routines.
7667
7668         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7669         conversion in structures. Fixes #74882.
7670
7671 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7672
7673         * culture-info-table.h : zh-* cultures were missing.
7674
7675 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7676
7677         * threads.c: Added a new event background_change_event which is signaled
7678         when a thread changes its background mode.
7679         Moved here several checks previously done in managed code. The checks
7680         require the thread lock, and using the thread lock in managed code
7681         can result in deadlocks.
7682         Merged Start_internal and Thread_internal into a single method. Now 
7683         Thread_internal does all work of creating and starting a thread.
7684         Added icalls for setting and getting the state of the object. Moved from
7685         managed code to avoid locking there.
7686         Added wait_for_tids_or_state_change() which is called instad of
7687         wait_for_tids when waiting for non-backround threads to end. This method
7688         will return if one of the threads ends or the background_change_event
7689         is signaled.
7690         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7691         the background mode. This method signals the background_change_event
7692         event.
7693         * icall.c:
7694         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7695         removed Start_internal.
7696         
7697 2005-05-11  Martin Baulig  <martin@ximian.com>
7698
7699         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7700         to order of some fields to get proper alignment on 64-bit machines.
7701
7702 2005-05-11  Martin Baulig  <martin@ximian.com>
7703
7704         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7705         changes as they're broken and completely fuck up the debugger.
7706
7707         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7708
7709 2005-05-10  Martin Baulig  <martin@ximian.com>
7710
7711         * reflection.c (mono_reflection_generic_class_initialize): Don't
7712         call mono_class_setup_parent() here.
7713
7714 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7715
7716         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7717         send/receive timeout use an integer in milliseconds. We were using a
7718         struct timeval.
7719
7720 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7721
7722         * locales.c:
7723         (internal_get_cultures): reserve the first slot of the array for the
7724         InvariantCulture, which will be filled in managed code.
7725
7726 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7727
7728         * reflection.c (mono_image_fill_module_table): Initialize the
7729         GENERATION field as well.
7730
7731 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7732
7733         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7734         Monitor.Enter on the object.
7735
7736 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7737
7738         * threads.c: Enable the wait for running threads when exiting.
7739         * icall.c: Suspend all threads before exiting.
7740
7741 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7742
7743         * assembly.c (mono_assembly_load_reference): Fix warning.
7744
7745 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7746
7747         * threadpool.c: changed the default number of threads per cpu. From now
7748         on, the default will be 20 + (5 * number of cpus) instead of 50.
7749
7750 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7751
7752         * loader.c (mono_method_get_signature_full): Add locking here.
7753
7754 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7755
7756         * appdomain.c: Moved methods for parsing and freeing assembly
7757         names to assembly.c.
7758         * assembly.c, domain-internals.h: Created public methods for parsing
7759         assembly names. Fixed mono_assembly_load_with_partial_name:
7760         it now finds the best match, taking into account the version,
7761         token and culture specified in the partial name. Also return
7762         the latest version if no version information is specified.
7763
7764 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7765
7766         * threadpool.c: replace check for SocketAsyncCall class.
7767
7768 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7769
7770         * threadpool-internals.h:
7771         * Makefile.am: added threadpool-internals.h
7772
7773         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7774         that happen in threadpool threads (tested on MS).
7775         (mono_thread_pool_remove_socket): new function that dispatch any pending
7776         AIO call on a socket that is closing. By now only epoll really needs it,
7777         as select/poll wake up when the socket closes.
7778
7779
7780         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7781
7782 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7783
7784         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7785
7786 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7787
7788         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7789
7790 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7791
7792         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7793         has an abort request, convert it into a suspend request.
7794
7795 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7796
7797         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7798         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7799         is not supported yet.
7800
7801 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7802
7803         * image.c: register assemblies loaded from data (bundles) in the loaded
7804         assemblies hash. Fixes bug #74772.
7805
7806 2005-04-29  Martin Baulig  <martin@ximian.com>
7807
7808         * class.c (mono_type_get_name_recurse): Update to the new naming
7809         schema from the latest .NET 2.x beta2.
7810         (mono_class_setup_vtable_general): If we're a generic instance,
7811         copy the vtable from our generic type definition and inflate all
7812         the methods in it.
7813
7814         * loader.c (find_method): Update to the new naming schema from the
7815         latest .NET 2.x beta2.
7816
7817 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7818
7819         * class.c (mono_class_init): Add a mono_loader_unlock to the
7820         #74734 fix.
7821
7822 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7823
7824         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7825         suspend_all_other_threads () call for the time being, since it can hang.
7826
7827         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7828         the background threads to exit, since it can also hang.
7829
7830         * class.c (mono_class_init): Applied patch from Ankit Jain 
7831         (radical@gmail.com). Avoid pending init errors when a field refers
7832         to a nested class using a typeref. Fixes #74734.
7833
7834         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7835         this for dynamic modules.
7836
7837 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7838
7839         * threads.c: don't wait for threads that are in the process of aborting
7840         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7841         and waiting for background threads to finish. This makes xsp and
7842         mod-mono-server exit without random length delays and/or hangs.
7843
7844 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7845
7846         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7847
7848 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7849
7850         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7851         dynamic types to prevent infinite loops. Fixes #74727.
7852
7853         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7854         ..._is_assignable_to.
7855
7856 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7857
7858         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7859
7860 2005-04-25  Martin Baulig  <martin@ximian.com>
7861
7862         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7863
7864         * domain.c
7865         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7866
7867         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7868
7869         * reflection.c (build_compressed_metadata): Set metadata header
7870         version to 2.0.
7871
7872 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7873
7874         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7875         number into an integral and a decimal part. Fixes #70473.
7876
7877         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7878
7879 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7880
7881         * culture-info-table.h : reflected the latest locale-builder output.
7882
7883 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7884
7885         * threadpool.c: check for SuspendRequested too when deciding if
7886         mono_thread_interruption_checkpoint should be called.
7887
7888 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7889
7890         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7891         * threads.c: remove interruption_mutex and use Interlocked instead. When
7892         suspending all the threads, wait for all the suspended events at once.
7893         If we're shutting down and get an APC that is going to be queued,
7894         call mono_thread_execute_interruption immediately, as the thread might
7895         be sleeping on a pthread condition or mutex.
7896
7897         * icall.c: call mono_runtime_set_shutting_down before suspending the
7898         threads.
7899
7900         Fixes bug #74693. And now xsp is happier when exiting.
7901
7902 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7903
7904         * loader.c (mono_stack_walk): Fix #74690.
7905
7906 2005-04-22  Martin Baulig  <martin@ximian.com>
7907
7908         * mono-debug.h (MonoDebugMethodJitInfo): Added
7909         `MonoDebugMethodJitInfo *jit'.
7910
7911         * mono-debug.c (mono_debug_read_method): Cache the
7912         MonoDebugMethodJitInfo in `address->jit'.
7913         (mono_debug_free_method_jit_info): New public method.
7914
7915 2005-04-22  Martin Baulig  <martin@ximian.com>
7916
7917         * class.c (mono_class_is_assignable_from): Disallow
7918         type parameter -> interface.
7919
7920 2005-04-21  Dick Porter  <dick@ximian.com>
7921
7922         * threads.c (mono_thread_create): Turn an assertion into an error.
7923
7924 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7925
7926         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7927         
7928         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7929         Fix some gcc 4.0 warnings.
7930
7931 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7932
7933         * file-io.c: fix alt dir separator char on unix systems
7934         and cleanup (fixes bug #71214).
7935
7936 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7937
7938         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7939         a call to a remote domain, since the method may be an
7940         interface method in the client domain. This fixes bug #74192.
7941
7942 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7943
7944         * threadpool.c: recv/send are now performed before going back to managed
7945         code to save one transition.
7946
7947 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7948
7949         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7950
7951         * metadata/threadpool.c: removed hack to workaround the bug above.
7952
7953         Fixes bug #74618.
7954
7955 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7956
7957         * reflection.c reflection.h: Fix handling of parameter defaults in
7958         dynamic methods. Also fixes handling of parameter attributes.
7959         Fixes #74609.
7960
7961         * mono-debug.c (mono_debug_close_image): Fix warning.
7962
7963 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7964
7965         * socket-io.h: replaced old unused field with new 'blocking'.
7966         * threadpool.c: restore socket blocking state on windows(tm).
7967
7968 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7969
7970         * icall.c: don't return the codebase in the AssemblyName[] returned by
7971         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7972         * object-internals.h: Removed FIXME (fields were presents) and fixed
7973         versioncompat declaration.
7974
7975 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7976
7977         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7978         not closed, so don't cleanup when it happens.
7979
7980 2005-04-13  Chris Toshok  <toshok@ximian.com>
7981
7982         * mono-debug-debugger.h: change prototype for
7983         mono_debugger_lookup_type.
7984
7985         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7986         this function, although it should probably be named
7987         mono_debugger_init_type.
7988
7989 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7990
7991         * threadpool.c: fix non-AIO case.
7992
7993 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7994
7995         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7996         the built-in profiler to measure just JIT compilation times.
7997
7998 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7999
8000         * threadpool.c: the epollfd might be closed by another thread at
8001         any time, so ignore EBADF at treat it as a "we're closing" sign.
8002
8003 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8004
8005         * threadpool.c: release the semaphores with a count equals to the number
8006         of working threads in both IO and regular pools. Fixed typo that messed
8007         up the count of IO pool threads. Don't initialize the pipe handles if
8008         we're using epoll.
8009
8010 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8011
8012         * threadpool.c: some systems don't like a NULL when deleting the socket
8013         from epoll.
8014
8015 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8016
8017         * threadpool.c: fix semaphore allocation.
8018
8019 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8020
8021         * threadpool.c: added epoll() based implementation for asynchronous IO
8022         that is used instead of the default poll() when available.
8023         It can be disabled by setting MONO_DISABLE_AIO.
8024
8025 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8026
8027         * threadpool.c: windows needs 'closesocket' and instead of returning
8028         0 when the stream is closed while in select, it returns -1. Fixes bug
8029         #74573.
8030
8031 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
8032
8033         * class.c (class_compute_field_layout): Fix the regression caused by
8034         the previous try.
8035
8036 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8037
8038         * threadpool.c: separate pool for socket async. IO.
8039         * threadpool.h: mono_max_worker_threads is not a global any more.
8040
8041 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
8042
8043         * class.c (class_compute_field_layout): Fix #74549.
8044
8045 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8046
8047         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
8048         use 2 connected sockets instead.
8049
8050 2005-04-08  Miguel de Icaza  <miguel@novell.com>
8051
8052         * mono-config.c: Add new entry point for mkbundle
8053         mono_config_parse_memory. 
8054
8055 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8056
8057         * threadpool.c: removed another unused function.
8058
8059 2005-04-08  Ankit Jain  <radical@corewars.org>
8060
8061         * reflection.c (get_default_param_value_blobs): Add 'types'
8062         parameter to get the types encoded in the constant table.
8063         (mono_param_get_objects): Use the type from the constant table,
8064         not the type of the parameter, when creating default values.
8065         Handle null default values correctly.
8066
8067 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8068
8069         * file-io.c:
8070         * file-io.h:
8071         * threadpool.c:
8072         * threadpool.h:
8073         * icall.c:
8074         * socket-io.c: removed dead code for async IO.
8075
8076 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8077
8078         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
8079
8080         * threadpool.c: intercept socket async. calls and pass them to a thread
8081         that is polling and dispatching the job items to the threadpool as
8082         socket become ready. Fixes bugs #71217, #71933.
8083
8084         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
8085         between char and short/ushort arrays.
8086
8087         * socket-io.c: remove dead code.
8088
8089 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8090
8091         * locales.c,
8092           icall.c : removed InternalToUpper_Comp() and
8093           InternalToLower_Comp().
8094
8095 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
8096
8097         * char-conversions.h : The tables were incorrectly generated. Should
8098           be generated against invariant culture.
8099
8100 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
8101
8102         * object.c (mono_runtime_invoke_array): Fix return value when 
8103         passing pre-created valuetype objects to ctors.
8104
8105         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
8106         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
8107         Fixes #74338.
8108
8109 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
8110
8111         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
8112         only used with --security and hides the wrong corlib version error.
8113
8114 2005-03-30  Joshua Tauberer  <tauberer@for.net>
8115
8116         * class.c: Changed mono_class_name_from_token so that types
8117         outside of a namespace don't have an initial period.  Improved
8118         the g_warning message used in _mono_class_get when loading
8119         fails.
8120         * assembly.c: In mono_assembly_load_reference, when an assembly
8121         can't be found, "No such file or directory" is misleading and
8122         unhelpful because a few paths were checked for the presence of
8123         the assembly.  When that happens (ENOENT), display a nicer
8124         message indicating the directories that were searched.  In all
8125         cases, the warning is made easier to read for non-hackers.
8126
8127 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
8128
8129         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
8130         project/solution.
8131         * appdomain.h|domain.c: Removed inline from functions.
8132         * appdomain.c: Reduced warnings when compiling on windows.
8133         * icall.c: Fixed output_debug declaration to gunichar2*.
8134         * mono-config.c: Reduced warnings when compiling on windows.
8135         * rand.c: Added missing "windows.h". Added missing return value.
8136         * rawbuffer.c: Added missing winsock2.h for windows.
8137         * sysmath.h: Added mono-compiler.h header to allow/ease 
8138         compilation with non-GCC compilers.
8139         * threads.c: Fixed declarations to compile with VS.NET C compiler.
8140         Removed cast warnings.
8141
8142         Adapted from the work of J Lothian (for VC6).
8143
8144 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
8145
8146         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
8147         from default_path.
8148
8149 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
8150
8151         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
8152         the 2.0 profile.
8153
8154 2005-03-27  Raja R Harinath  <harinath@gmail.com>
8155
8156         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
8157         has to be in $(exec_prefix).  $(prefix) is for arch-independent
8158         stuff, and it would probably use $(prefix)/share rather than
8159         $(prefix)/lib.
8160
8161 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8162
8163         * console-io.c: added 2 includes that might be missing.
8164
8165 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
8166
8167         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
8168         profile.
8169
8170         * reflection.c (create_custom_attr): Allocate the params array using
8171         alloca so it gets GC tracking.
8172
8173 2005-03-23  Chris Toshok  <toshok@ximian.com>
8174
8175         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
8176         out some spew.
8177
8178 2005-03-24  Raja R Harinath  <rharinath@novell.com>
8179
8180         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
8181         changes to pick up any changes in prefix, etc.
8182
8183 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8184
8185         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
8186         
8187         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
8188         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
8189
8190 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8191
8192         * class-internals.h object-internals.h class.c reflection.c: Extend the
8193         mono_lookup_dynamic_token () function to return the class of the
8194         token as well. 
8195
8196         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
8197         well. Fixes #73848.
8198
8199 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
8200
8201         * security-manager.c: Skip inheritance checks for intra-corlib
8202         class inheritance and method overrides. This skips a lot of checks
8203         and (anyway) permissions cannot work until corlib is loaded.
8204
8205 2005-03-23  Martin Baulig  <martin@ximian.com>
8206
8207         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
8208         MONO_TYPE_GENERICINST.  
8209
8210 2005-03-23  Martin Baulig  <martin@ximian.com>
8211
8212         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
8213
8214 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8215
8216         * class.c: added locking comments to some functions.
8217         Cache the interface offsets arrays (saves about 20 KB
8218         of runtime memory in a typical app).
8219         Reduce the time overhead in mono_class_setup_supertypes ().
8220
8221 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
8222
8223         * icall.c: speedup and fix leaks in GetMethodsByName and
8224         GetPropertiesByName.
8225
8226 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8227
8228         * reflection.c: some locking fixes.
8229
8230 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8231
8232         * metadata.c: added missing break in case statement.
8233
8234 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
8235
8236         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8237         typedbyref return values. Fixes #73941.
8238
8239 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
8240
8241         * security-manager.c|h: Added demandunmanaged method and 
8242         suppressunmanagedcodesecurity class to MonoSecurityManager.
8243         Renamed aptc class to allowpartiallytrustedcallers.
8244
8245 2005-03-17  Martin Baulig  <martin@ximian.com>
8246
8247         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
8248
8249 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8250
8251         * file-io.c: disabled file async. IO using aio_*. It uses the
8252         threadpool now. Workaround for bug #73718.
8253
8254 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8255
8256         * assembly.h, mono-config.c: added code to deal with bundled configs
8257         for bundled assemblies.
8258
8259 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
8260
8261         * *.c, private.h: cleanup, removing old private.h header file.
8262
8263 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
8264
8265         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8266         and throw_on_unmappable_char attributes.
8267
8268 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8269
8270         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8271         _ProcessName_internal.
8272
8273 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8274
8275         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8276         #73631.
8277
8278         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8279         are no longer used.
8280
8281 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8282
8283         * object.c (compute_class_bitmap): Add support for generics. Fixes
8284         #73527.
8285
8286 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8287
8288         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8289
8290 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8291
8292         * filewatcher.c: commented out the code for windows watcher, as we don't
8293         use it (we use the managed implementation instead).
8294
8295 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8296
8297         * object-internals.h (MonoThread): Remove 'unused1' field.
8298
8299         * appdomain.c: Bump corlib version.
8300
8301         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8302
8303         * reflection.c (mono_reflection_create_runtime_class): Remove the
8304         AssemblyBuilder.Save optimization since it causes too many problems.
8305
8306 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8307
8308         * exception.c|h: Added mono_get_exception_reflection_type_load to
8309         create a ReflectionTypeLoadException object.
8310         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8311         to return NULL is a InheritanceDemand fails during reflection. Updated
8312         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8313         ReflectionTypeLoadException if an InheritanceDemand fails during 
8314         reflection. Added icall mapping for GetLinkDemandSecurity.
8315         * security-manager.c|h: Added ves_icall_System_Security_
8316         SecurityManager_GetLinkDemandSecurity internal call to return the
8317         class and methods permissions set for a LinkDemand. Removed unused
8318         fields in MonoSecurityManager.
8319
8320 2005-03-10  Martin Baulig  <martin@ximian.com>
8321
8322         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8323         it's a generic instance.
8324
8325 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8326
8327         * reflection.c (mono_get_object_from_blob): Applied patch from
8328         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8329
8330         * class.c (mono_class_is_assignable_from): Another try at fixing 
8331         #73469 without breaking anything.
8332
8333 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8334
8335         * class.c: (mono_class_is_assignable_from): Revert the last changes
8336         since they don't work with generics.
8337         
8338         * class.c (mono_class_is_assignable_from): Fix build bustage.
8339
8340         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8341         the managed IsAssignableFrom method. Fixes #73469.
8342
8343         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8344         function.
8345
8346 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8347
8348         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8349         memory when the remoting callback does not sets the out arguments.
8350         Fixes #73007.
8351
8352         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8353         by mistake.
8354
8355         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8356
8357         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8358
8359         * appdomain.c: Bump corlib version.
8360
8361 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8362
8363         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8364         function.
8365
8366         * threads.c (mono_thread_attach): Detect threads which are not started
8367         by the GC pthread wrappers.
8368
8369 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8370
8371         * icall.c: Added new icall for RNG.
8372         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8373         single handle on Linux to access /dev/urandom and fix #73183.
8374
8375 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8376
8377         * object.c: setting the new vtable in a transparent proxy object must
8378         not change the GC descriptor.
8379
8380 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8381
8382         * object.c: fixed compilation without GCJ support.
8383         * reflection.c: for runtime-created types ensure klass->has_references
8384         is correct (bug #73215).
8385
8386 2005-03-02  Martin Baulig  <martin@ximian.com>
8387
8388         * class.c (mono_class_is_assignable_from): Make this work if
8389         `oklass' is a generic instance; fixes #72831.
8390
8391 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8392
8393         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8394         with hasthis set.
8395         
8396         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8397
8398         * marshal.c: Reorganize native->managed marshalling code to also use
8399         the emit_marshal_... functions.
8400
8401 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8402
8403         * object.c: typed allocs have issues with bitmap sizes > 30,
8404         so check for max_set >= 30.
8405
8406 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8407
8408         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8409         managed code. Fixes #73012.
8410
8411         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8412
8413         * metadata.c reflection.c: Load/Emit elem_mult as well.
8414         
8415         * metadata.h (MonoMarshalSpec): Add comment.
8416
8417         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8418
8419         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8420         num_elem to -1 if not given.
8421
8422         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8423
8424         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8425         given values.
8426
8427 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8428
8429         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8430
8431 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8432
8433         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8434
8435         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8436
8437 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8438
8439         * object.c: generalized the reference bitmap creation
8440         and added hooks for the new GC.
8441         * class-internals.c: removed the gc_bitmap field from MonoClass.
8442
8443 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8444
8445         * domain.c: help the compiler to produce better code
8446         in mono_jit_info_table_find ().
8447
8448 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8449
8450         * object.c: make all allocations look typed.
8451
8452 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8453
8454         * socket-io.c: load Mono.Posix if it's not loaded already
8455         (fixes bug#73033).
8456
8457 2005-02-24  Martin Baulig  <martin@ximian.com>
8458
8459         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8460         * reflection.c (dup_type): Likewise.
8461
8462 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8463
8464         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8465         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8466
8467 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8468
8469         * domain.c, threads.c, object-internals.h: make the critical thread
8470         local vars use the fast access mode (even when we're compiled in
8471         a lib). Provide accessors to be used by the jit during codegen.
8472
8473 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8474
8475         * appdomain.c: Changed hook functios behavior to include
8476         support for the reflection only assemblies. Some icalls were changed
8477         to support the mentioned assemblies too. Signatures of static methods
8478         try_assembly_resolve and real_load now have an additional parameter:
8479         refonly.
8480
8481         * assembly.c: General changes to mono_assembly_ methods to support
8482         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8483         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8484         suffix, to support an additional gbool parameter to specify whether
8485         the assembli is reflection only or not. Created some new hook functions 
8486         to add support for reflection only assemblies. Signatures of static 
8487         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8488         have now an additional parameter: refonly.
8489
8490         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8491         indicating whether the assembly is reflection only or not.
8492
8493         * exception.c: Add mono_get_exception_invalid_operation.
8494
8495         * icall.c: Throw an InvalidOperationException when trying to invoke
8496         a property/method/event, or trying to set/get the value of a field.
8497         Also add an icall to retrieve the ref_only flag to the
8498         MonoReflectionAssembly.
8499
8500 2005-02-23  Chris Toshok  <toshok@ximian.com>
8501
8502         Part of fix for #72827.
8503         * mono-debug.c (mono_debug_add_method): add lexical block data to
8504         the info we write.  Kind of a hack at the moment - we copy the
8505         lexical block info from the MonoDebugMethodInfo to the
8506         MonoDebugMethodJitInfo here, before writing it.
8507         (mono_debug_read_method): read the lexical block info.
8508
8509         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8510
8511         * debug-mono-symfile.h: add lexical block support.
8512
8513         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8514         support.
8515
8516 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8517
8518         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8519
8520         * object.c (mono_runtime_free_method): Call mono_free_method () and
8521         put the TODOs there.
8522
8523         * loader.c (mono_free_method): Free up most memory allocated for 
8524         dynamic methods.
8525
8526 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8527
8528         * reflection.c: properly flag a Type argument to a
8529         named custom attr value (bug #72248).
8530
8531 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8532
8533         * reflection.c: reduce code duplication in named custom
8534         attribute encoding.
8535
8536 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8537
8538         * reflection.c: properly encode custom attrs of type object
8539         (bug #72649).
8540
8541 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8542
8543         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8544
8545 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8546
8547         * socket-io.c: load System.dll if it's not loaded already
8548         (bug #72850 and #70477).
8549
8550 2005-02-21  Martin Baulig  <martin@ximian.com>
8551
8552         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8553         generic instances.
8554
8555 2005-02-21  Martin Baulig  <martin@ximian.com>
8556
8557         * reflection.c (mono_image_build_metadata): We also need to
8558         "fixup" the MethodImpl table after we computed the final method
8559         indices.  Call fixup_methodimpl() to do that.
8560         (fixup_methodimpl): New private method.
8561
8562 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8563
8564         * assembly.c: special case mscorlib.dll (bug#72536),
8565         patch from Carlos Alberto Cortez.
8566
8567 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8568
8569         * threads-types.h threads.c: Fix build bustage.
8570
8571         * threads.c: Use a union for long<->double conversions.
8572
8573         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8574         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8575
8576         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8577         containing the checkpoint call with NOT_TAKEN.
8578         
8579         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8580         checkpoint before pushing the arguments, so they won't have to be
8581         spilled to stack.
8582
8583 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8584
8585         * domain.c, assembly.c, domain-internals.h: make some data
8586         const and relocation-free.
8587
8588 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8589
8590         * object.c, appdomain.c, class-internals.h: introduce the
8591         MonoClassRuntimeInfo structure to hold the info needed to
8592         use a class at runtime. Made mono_class_vtable() lock-free
8593         for all the appdomains.
8594
8595 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8596
8597         * metadata-internals.h, image.c: introduce a per-image mempool to
8598         be used for memory that has the same lifetime as the image.
8599
8600 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8601
8602         * domain.c: In mono_init_internal(), instead of selecting the first
8603         runtime version supported by an executable, get a list of all
8604         supported versions and select the one for which an mscorlib exists
8605         (since even if the runtime supports a given version, it doesn't mean
8606         that the framework for that version is installed).
8607         Modified get_runtimes_from_exe to support this behavior.
8608         In supported_runtimes, added information about additional system
8609         assembly versions.
8610         
8611         * assembly.c: Added support for more than one system assembly version
8612         per runtime version. Updated the assembly list.
8613         In mono_assembly_remap_version, removed the initial version check,
8614         since we don't know to which version we need to compare until we
8615         get the version set on which the assembly is based.
8616         Moved the code for loading corlib into the new method
8617         mono_assembly_load_corlib(), so it can be used by the initialization
8618         code.
8619         
8620         * domain-internals.h: Updated data structures and added declaration
8621         for mono_assembly_load_corlib.
8622
8623 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8624
8625         * reflection.c (resolve_object): Fix the creation of the signature in 
8626         the SignatureHelper case.
8627
8628         * assembly.c (mono_assembly_remap_version): Fix binary search.
8629         
8630 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8631  
8632         * class.c: Added inheritance check when a method is overloaded (from a
8633         virtual method or when implementing an interface) and when a class is
8634         inherited. Added functions to set a failure for a class and to 
8635         retreive the exception from a failure.
8636         * class-internals.h: Added fields to MonoClass to keep the exception
8637         information status for inheritance (or other exceptions) to be thrown
8638         later (i.e. not at load time).
8639         * object.c: Throw the inheritance SecurityException when a type is to 
8640         be created with either class or method inheritance violations.
8641         * reflection.c|h: Fix when getting declsec from a class. Removed 
8642         unrequired code for class. Improved sanity in parameter naming.
8643         * security-manager.c|h: Added functions to check for class and method
8644         inheritance.
8645
8646 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8647
8648         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8649         and has_finalize in dynamic types as well.
8650
8651 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8652
8653         * culture-info-table.h : fixed currency format for en-GB (and so on).
8654
8655 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8656
8657         * gc.c: ensure the GC handles never have 0 as a value.
8658
8659 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8660
8661         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8662         a pointer to a struct to unmanaged code. Fixes #72625.
8663
8664 2005-02-16  Martin Baulig  <martin@ximian.com>
8665
8666         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8667
8668 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8669
8670         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8671
8672 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8673
8674         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8675
8676         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8677         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8678         etc. Fixes #71471.
8679
8680         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8681
8682         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8683
8684 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8685
8686         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8687         changes to make the current context a field in MonoThread.
8688
8689 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8690
8691         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8692         the last change.
8693         
8694         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8695         extracted from mono_marshal_get_native_wrapper.
8696
8697         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8698         to create wrappers around native functions.
8699
8700         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8701         delegates for arbitrary function pointers. Fixes #71472.
8702
8703 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8704
8705         * threads.c: cleaned up the code a little.
8706
8707 2005-02-15  Martin Baulig  <martin@ximian.com>
8708
8709         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8710         the data table.
8711
8712         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8713         allocate larger chunks if needed.
8714
8715 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8716
8717         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8718         in by mistake.
8719
8720 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8721
8722         * domain.c: keep the domains in an array and ensure the domain ids
8723         are kept small, so they can be used as indexes to domain-specific data
8724         with a small memory overhead.
8725
8726 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8727
8728         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8729
8730 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8731
8732         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8733
8734 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8735
8736         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8737
8738         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8739         values.
8740
8741         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8742         
8743 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8744
8745         * domain-internals.h: add the hashtable here.
8746
8747         * class-internals.h: Remove `info' from MonoMethod
8748
8749         * domain.c: Add a new hashtable, jit_trampoline_hash
8750
8751 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8752
8753         * object.c: don't set the value of static fields
8754         (fixes bug#72494).
8755
8756 2005-02-11  Martin Baulig  <martin@ximian.com>
8757
8758         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8759         (mono_debug_add_method): Silently ignore the method if it's too big.
8760         (mono_debug_add_type): Likewise.
8761
8762 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8763
8764         * threads.c, appdomain.c: remove #ifdefs from the code.
8765
8766 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8767
8768         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8769         common security informations. This allows us to stay in unmanaged code
8770         when doing LinkDemand and it's special cases (except for the first 
8771         time for initialization). The flags a very much used with --security.
8772         * reflection.c|h: Added code to get declarative security attributes 
8773         for LinkDemand and InheritanceDemand. This required to refactor the
8774         existing code for Demand.
8775         * security-manager.c|h: Added new method fields for the special cases
8776         of LinkDemand.
8777
8778 2005-02-10  Martin Baulig  <martin@ximian.com>
8779
8780         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8781         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8782
8783 2005-02-10  Martin Baulig  <martin@ximian.com>
8784
8785         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8786         debugging code; this is almost a complete rewrite.
8787
8788         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8789
8790 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8791
8792         * domain.c, object.h: expose mono_string_equal () and 
8793         mono_string_hash ().
8794         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8795         it's implemented in managed code.
8796
8797 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8798
8799         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8800         lo leak objects between appdomains.
8801
8802 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8803
8804         * assembly.c: old compilers compilation fix from 
8805         robertj@gmx.net (Robert Jordan).
8806
8807 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8808
8809         * class-internals.h: Little reminder for the future.
8810
8811         * debug-helpers.c: Fix up wrapper_type_names
8812
8813 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8814
8815         * image.c, metadata-internals.h: when loading an image from a file,
8816         mmap all of it and use the same codepaths as when using a
8817         in-memory image: the code is simpler and we use less memory
8818         (both writable and readonly).
8819
8820 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8821
8822         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8823         API to alloc runtime data structures that need to be tracked by the
8824         GC and contain pointers.
8825         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8826         make the code more readable and eventually use a different GC.
8827
8828 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8829
8830         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8831         for out arguments.
8832         
8833 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8834
8835         * object.c: In release_type_locks(), don't release the cctor lock
8836         if it has already been released. This fixes a crash in the
8837         thread5 test.
8838
8839 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8840
8841         * gc.c, marshal.c, icall.c: register a delegate for finalization
8842         only when the native function pointer has been allocated for it.
8843
8844 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8845
8846         * object.c: cleaned up some code, allocate objects that are
8847         pointer free with the atomic malloc variant. Allocate memory
8848         for static data from the mempool if it's pointer-free.
8849         Allocate the bounds array at the end of the array data, when needed.
8850         * object-internals.h, object.h: move a private function in a private
8851         header.
8852         * class.c: handle missing case in tracking references in fields.
8853
8854 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8855
8856         * class.c, class-internals.h: keep track if a type has
8857         reference fields in either the instance or static fields.
8858
8859 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8860
8861         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8862         and renamed to MonoRuntimeInfo. Added fields to store the expected
8863         framework assembly version. Changed mono_get_framework_version and
8864         mono_get_runtime_version for a single mono_get_runtime_info method.
8865         
8866         * assembly.c: Added method to remap system assembly versions to the
8867         current executing runtime version. Removed old mapping code.
8868         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8869         
8870         * icall.c, reflection.c: Track api changes.
8871
8872 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8873
8874         * loader.c (method_from_memberref): Improve error reporting,
8875         produce the class name instead of the typeref/typedef index. 
8876
8877 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8880
8881 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8882
8883         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8884         stdcall and charset name mangling.  Reorganize the code and add
8885         some tracing stuff.
8886
8887 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8888
8889         * monodiet.c: More iters!
8890
8891         * marshal.c: Iter usage.
8892
8893         * icall.c: Iter usage.
8894
8895         * object.c: Use iters.
8896
8897         * debug-helpers.c: More iters
8898
8899 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8900
8901         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8902         under win32.
8903
8904 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8905
8906         * mono-debug-debugger.c: use iters
8907
8908         * class.c, class-internals.h: mono_class_setup_events is static
8909         now
8910
8911         * All callers: use iters
8912
8913 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8914
8915         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8916         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8917
8918 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8919
8920         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8921
8922         * marshal.h: Add prototypes for ldfld/stfld_remote.
8923
8924         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8925         this is called during startup.
8926         
8927 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8928
8929         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8930         MonoThreadsSync struct private in monitor.c. Changed the way
8931         MonoThreadsSync is allocated so it's faster and there is no
8932         need to keep track of it with a finalizer and it uses less memory.
8933         This also finally allows us to allocate mono objects as ptrfree when
8934         there are no reference fields.
8935
8936 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8937
8938         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8939         disappearing link to the GC interface and use them to simplify
8940         the gchandles code.
8941
8942 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8943
8944         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8945         stfld_remote which call mono_load/store_field_new. This allows methods
8946         calling ldfld/stfld wrappers to be AOTed.
8947
8948         * console-io.c: Include sys/filio.h under solaris.
8949         
8950         * console-io.c: Include curses.h if needed correctly.
8951
8952 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8953         
8954         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8955         method->klass as well.
8956
8957         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8958
8959         * class.c (mono_class_init): Switch on lazy initialization of 
8960         methods.
8961
8962         * class.c (mono_class_get_finalizer): Handle the case when the 
8963         finalizer is inherited.
8964
8965 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8966
8967         * console-io.c: <curses.h> is needed by term.h on solaris.
8968
8969 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8970
8971         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8972         mono_class_setup_properties where possible. Remove this ftn from
8973         the header file, and make it static.
8974
8975 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8976
8977         * loader.c: Add missing setup_... call.
8978
8979         * class.c: Add missing setup_... calls.
8980
8981         * class.c (mono_class_init): Switch on lazy initialization of 
8982         the generic vtable.
8983         
8984         * class.c (mono_class_init): Fix generics broken by the recent changes.
8985
8986         * monodiet.c (handle_type): Add missing setup_... calls.
8987
8988         * class.c: Back out garbage in previous patch.
8989         
8990         * class.c: Add missing setup_... calls.
8991
8992         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8993         mono_class_setup_methods () if possible.
8994
8995         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8996
8997         * class-internals.h (MonoCachedClassInfo): New structure.
8998
8999         * class.c: Initialize properties and events fields of MonoClass lazily.
9000
9001         * class.c: Add infrastructure for lazily initializing the methods and
9002         vtable fields of MonoClass. Not yet used.
9003
9004         * class.c (mono_class_get_finalizer): New helper function.
9005
9006         * class.c: Add infrastructure for loading some class related data from
9007         an AOT file.
9008
9009         * object.c: Add infrastructure for initializing the vtable from data
9010         in the AOT file.
9011
9012         * gc.c (run_finalize): Use mono_class_get_finalizer ().
9013
9014         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
9015         appropriate initialization function before accessing parts of the
9016         MonoClass structure.
9017
9018         * marshal.c: Fix warnings.
9019         
9020         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
9021
9022         * mono-debug-debugger.c (get_exception_message): Use 
9023         mono_class_get_method_from_name_flags ().
9024
9025 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
9026
9027         * reflection.c, appdomain.c: Replace a few manual searches that
9028         Zoltan missed. (Paolo approved this part of my initial patch).
9029
9030 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
9031
9032         * profiler.c: disable recording statistical events at report time.
9033
9034 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9035
9036         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
9037         to byteswap arrays of enum values, too (bug #72080).
9038
9039 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
9040
9041         * appdomain.c (set_domain_search_path): Allow this to be called if
9042         domain->setup is not yet set.
9043
9044         * loader.c (mono_method_get_index): New helper function.
9045
9046         * loader.c reflection.c: Use mono_method_get_index ().
9047
9048         * class.c (mono_class_get_method_from_name_flags): New helper method.
9049
9050         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
9051         this.
9052
9053         * class.c (mono_class_get_cctor): New helper method.
9054
9055         * string-icalls.c object.c class.c marshal.c reflection.c: Use
9056         mono_class_get_method () to look up methods.
9057
9058 2005-02-01  Miguel de Icaza  <miguel@novell.com>
9059
9060         * console-io.c: Fix the build, this should work on Windows.
9061
9062 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
9063
9064         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
9065         be set to null to keep things valid
9066
9067 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9068
9069         * icall.c: added Console 2.0 icalls.
9070         * Makefile.am: added console-io.[ch]
9071         * console-io.[ch]: internal calls for Console 2.0 API.
9072
9073 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9074
9075         * class.c: make sure we consider all the interfaces
9076         when calculating max_interface_id (bug found by
9077         Jeroen Frijters running ikvm).
9078
9079 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
9080
9081         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
9082         valuetype fields to null.
9083
9084         * object.c (set_value): Ditto. Fixes #71669.    
9085
9086 2005-01-31  Martin Baulig  <martin@ximian.com>
9087
9088         * metadata.c (mono_metadata_has_generic_params): New public
9089         function; checks whether something is a generic method.
9090
9091 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
9092
9093         * appdomain.c: fix infinite recursion when adding assemblies.
9094
9095 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
9096
9097         * object.c: Fix small typo to return all items for Environment.
9098         GetCommandLineArgs.
9099
9100 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
9101
9102         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
9103         reflection.c: more domain and assembly-unload related fixes
9104         and memory leaks plugs.
9105
9106 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
9107
9108         * 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.
9109
9110 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
9111
9112         * loader.c (mono_method_signature): Make this method lazy
9113         (mono_get_method_from_token): Don't computate the signature here.
9114
9115         Doing this saves quite a bit of memory. I got 90 kb on starting up
9116         monodoc. It should also save some disk reads on startup.
9117
9118         * *: MonoMethod->signature might be NULL now. You *MUST* use
9119         mono_method_signature.
9120
9121 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
9122
9123         * object.c (mono_runtime_get_main_args): Return an array from the
9124         current domain here. Fixes #71938.
9125
9126 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
9127
9128         * monitor.c: formatting changes to comply with the
9129         mono coding style and remove #ifdefs from the code.
9130
9131 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9132
9133         * metadata.c, private.h: remove some unneeded data
9134         and use a more compact representation for table schemas.
9135
9136 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
9137
9138         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
9139         to get a better distribution in hash tables.
9140         * *.c: use mono_aligned_addr_hash() where appropriate.
9141         * assembly.c: make var static.
9142
9143 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
9144
9145         * domain-internals.h: Put MonoJitInfo on a diet.
9146
9147         * domain.c: Fix a warning.
9148
9149 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9150
9151         * gc.c: rework the gc handles code to reuse handles
9152         when freed.
9153
9154 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
9155
9156         * domain.c: fixed long standing bug in mono_string_equal() which
9157         was brought to light with the ldstr changes.
9158
9159 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
9160
9161         * reflection.c: Remove warning by adding missing include for marshal.h
9162
9163 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9164
9165         * domain.c, object.c: change the ldstr_table to hold
9166         MonoString* as keys: makes the runtime isinterned lookup
9167         faster and simplifies memory management.
9168
9169 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9170  
9171         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
9172         possible to add imperative security checks before calling the icall.
9173         * reflection.c: Return security attributes on the original MonoMethod
9174         (and not the wrapped one). This fix permissions on icalls.
9175
9176 2005-01-25  Dick Porter  <dick@ximian.com>
9177
9178         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
9179         the check for mktime() support actually test the mktime() return
9180         value.  "Fixes" bug 71682, though the output is still different to
9181         MS.
9182
9183 2005-01-25  Martin Baulig  <martin@ximian.com>
9184
9185         * class.c (mono_class_is_assignable_from): Make this work for
9186         generic instances.
9187
9188 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
9189
9190         * marshal.c (mono_string_utf8_to_builder)
9191         (mono_string_builder_to_utf16): We might not have ownership of the
9192         string. In thise case, we need to create a new buffer.
9193
9194         * object-internals.h (mono_stringbuilder_capacity): sb->str might
9195         be null, in which case, use the default capacity.
9196
9197 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9198
9199         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
9200         GC events to the profiler.
9201
9202 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9203
9204         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
9205         if you don't want the GC to run.
9206
9207 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
9208
9209         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
9210         start providing a GC API and keeping different implementations in
9211         their own file.
9212         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
9213
9214 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
9215
9216         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
9217         mmap rather than allocating a huge buffer.
9218         (mono_debug_close_mono_symbol_file): Free the buffer allocated
9219         above.
9220
9221 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9222
9223         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
9224         and CheckExecutionRights.
9225         * reflection.c|h: Keep the index of the declarative security to be 
9226         used, instead of the pointer, when AOT compiler is used. Also add 
9227         class initialization when requesting demands.
9228         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
9229         CheckExecutionRights. Both properties are now FALSE by default, and
9230         unmodifiable, unless the --security option is used.
9231
9232 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9233
9234         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
9235         reflection.c: properly refcount images and assemblies, many leaks fixed.
9236
9237 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9238
9239         * threadpool.c: increase the timeout for threads in the thread pool to
9240         10s.  Fixes bug #67159.
9241
9242 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
9243
9244         * class-internals.h: Sun's compiler insists on explicit
9245         signed on bit fields to handle then correctly.
9246
9247 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
9248
9249         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
9250         Make the size of the array fit only the number of invalid path
9251         chars that we have.
9252
9253         * class.c (_mono_class_get): Improve the error reporting when a
9254         class referenced is not found, to assist debugging. 
9255
9256 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
9257
9258         * threads.c: fix off-by-one error.
9259         * domain.c: free data allocated in the domain.
9260
9261 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9262
9263         * reflection.c (mono_method_body_get_object): Fill out exception info
9264         as well.
9265
9266         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9267         structure.
9268         
9269 2005-01-19  Martin Baulig  <martin@ximian.com>
9270
9271         * loader.c (mono_get_method_constrained): Make this work again.
9272
9273 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9274
9275         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9276         guint16 to match the managed side.
9277
9278         * reflection.c (mono_reflection_body_get_object): Fill out local
9279         variables array.
9280
9281         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9282         as well.
9283
9284         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9285         'local_var_sig_token'.
9286
9287 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9288
9289         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9290         System.Drawing.
9291
9292         * reflection.c (mono_method_body_get_object): Handle abstract and
9293         runtime methods.
9294
9295 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9296
9297         * marshal.c, loader.c, class-internals.h, reflection.c:
9298         store the emthod data for a wrapper in an array instead of a list.
9299
9300 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9301
9302         * marshal.c: change the code to allocate memory more
9303         conservatively for method wrappers.
9304
9305 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9306
9307         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9308         fields from MonoClass to the marshal info structure where they belong.
9309
9310 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9311
9312         * class.c, object.c, class-internals.h, marshal.c: rearrange
9313         some fields and tweak some types to lower memory usage.
9314
9315 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9316
9317         * threads.c (signal_thread_state_change): Handle the case when the
9318         target thread is the current thread.
9319
9320         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9321
9322         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9323         emit_ptr_to_object_conv. 
9324
9325         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9326         marshalling. Fixes #71352.
9327
9328 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9329
9330         * metadata.h, blob.h: move table enum to blob.h so it can be included
9331         in any header.
9332         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9333         cut the size of MonoImage/MonoDynamicImage.
9334
9335 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9336
9337         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9338
9339 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9340
9341         * reflection.c, reflection.h, icall.c: add a function to check
9342         if an attribute type is defined for a metadata object.
9343
9344 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9345
9346         * object-internals.h: Added some needed fields from StringBuilder class.
9347         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9348
9349 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9350
9351         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9352         threads before shutting down the runtime.
9353
9354         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9355
9356 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9357
9358         * object-internal.h, threads.c: implement stacksize and 
9359         parameterized thread start functionality (requires
9360         matching corlib). Marked broken code for later removal.
9361
9362 2005-01-12  Martin Baulig  <martin@ximian.com>
9363
9364         * class-internals.h (MonoGenericClass): Moved the `initialized'
9365         flag to MonoDynamicGenericClass, removed `init_pending'.
9366         (MonoGenericInst): Added `is_reference' flag.
9367
9368 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9369
9370         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9371         inside the MSDOS header. Fixes #71201.
9372
9373         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9374         gc thread.
9375         (mono_domain_finalize): Ditto.
9376
9377 2005-01-12  Martin Baulig  <martin@ximian.com>
9378
9379         * class.c (mono_get_shared_generic_class): Use the cache for
9380         non-dynamic generic classes.
9381
9382         * class-internals.h (mono_class_create_generic_2): Removed
9383         function prototype, this function is now static inside class.c.
9384
9385         * class.c (mono_class_create_generic_2): Made this static, only
9386         call it from mono_class_init() and mono_class_setup_parent().
9387         (collect_implemented_interfaces_aux): Call mono_class_init() on
9388         the interfaces we collect.
9389         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9390
9391 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9392
9393         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9394         it a real thread handle.
9395
9396         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9397         MonoJitExceptionInfo, since each catch clause needs its own variable.
9398         
9399 2005-01-11  Dick Porter  <dick@ximian.com>
9400
9401         * image.c (mono_pe_file_open): New variant on mono_image_open()
9402         that does not set up the CLI metadata; used for FileVersionInfo so
9403         it can get the data for windows binaries too.
9404         
9405         * process.c (process_read_string_block): Don't read off the end of
9406         the StringTable block.
9407
9408         These both fix bug 70766.
9409
9410 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9411
9412         * gc.c: set some fields to NULL at GC cleanup time.
9413         * threads.c: if we quit the main thread, call exit ().
9414
9415 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9416
9417         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9418
9419 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9420
9421         * threads.h, threads.c, object.c: added accessor and settor for
9422         main_thread. Handle it specially when exiting from it: wait
9423         for other foreground threads to exit.
9424
9425 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9426
9427         * process.c, verify.c: remove some bloat.
9428
9429 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9430
9431         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9432         the calling convention to cdecl under win32.
9433
9434 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9435
9436         * object.c (mono_object_get_size): New function to get the size of
9437         an object instance.
9438
9439         * profiler.c (simple_allocation): Use above.
9440
9441 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9442
9443         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9444         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9445         get an appdomain by it's id and we can't assume the root's id is 0).
9446         * domain-internals.h: Change the function prototype to match.
9447         * icall.c: Change the icall table for AppDomain.
9448
9449 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9450
9451         * locales.c (string_invariant_compare_char): Only compute
9452         GUnicodeTypes in the case where we need them.  Test for ordinality
9453         first and return if so.
9454
9455         From the commit:
9456
9457                 /*
9458                  * FIXME: here we must use the information from c1type and c2type
9459                  * to find out the proper collation, even on the InvariantCulture, the
9460                  * sorting is not done by computing the unicode values, but their
9461                  * actual sort order.
9462                  */
9463
9464 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9465
9466         * loader.c: for P/Invoke methods, allow the "Internal" shared
9467         library name to refer to the calling process symbol namespace.
9468
9469 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9470
9471         * Makefile.am: Add the security manager to the build.
9472         * security-manager.c|h: New. Initialization of the security manager.
9473
9474 2005-01-07  Dick Porter  <dick@ximian.com>
9475
9476         * threads.c: 
9477         * monitor.c: Update thread state during Monitor and WaitHandle
9478         waits.  Fixes bug 71031.
9479
9480 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9481
9482         * reflection.c (property_encode_signature): Correctly handle when the
9483         property has no methods.
9484
9485 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9486
9487         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9488         
9489         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9490         fields from mb, not rmb. Fixes #71017.
9491
9492         * marshal.c (emit_ptr_to_str_conv): Add support for 
9493         ByValTStr -> string conversion. Fixes #71015.
9494
9495         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9496
9497         * mempool.c (mono_mempool_contains_addr): New helper function.
9498
9499 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9500
9501         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9502         HasSematics encoded fields.
9503         
9504         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9505         invalid string marshalling.
9506
9507         * metadata.c: Fix warnings.
9508         
9509 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9510
9511         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9512         profiler support.
9513
9514 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9515
9516         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9517         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9518         tests.
9519
9520 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9521
9522         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9523         so methods containing these can be AOTed.
9524
9525 2005-01-03  Martin Baulig  <martin@ximian.com>
9526
9527         * loader.c (find_method): Removed the hack for generic instances.
9528         (method_from_memberref): If our parent is a generic instance, pass
9529         its generic type definition to find_method() and then inflate the
9530         method.
9531         (mono_get_method_constrained): Pass the generic type definition to
9532         find_method() and inflate the method later.
9533
9534         * class-internals.h (MonoStats): Added `generic_class_count'.
9535
9536         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9537         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9538
9539         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9540         generic type definitions.
9541
9542 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9543
9544         * loader.c icall.c: Fix warnings.
9545
9546 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9547
9548         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9549         blittable types. Fixes #70864.
9550
9551 2004-12-29  Martin Baulig  <martin@ximian.com>
9552
9553         * icall.c
9554         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9555
9556         * reflection.c (mono_method_get_object): Create a
9557         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9558         call mono_get_inflated_method().
9559
9560         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9561
9562 2004-12-27  Martin Baulig  <martin@ximian.com>
9563
9564         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9565         (MonoMethodInflated): Added `inflated' field.
9566
9567         * class.c (mono_class_inflate_generic_method): Don't really
9568         inflate the method here; just set the `is_inflated' flag in the
9569         MonoMethod.
9570         (mono_class_get_inflated_method): Actually inflate the method here
9571         if it's not already inflated; we use the MonoMethodInflated's new
9572         `inflated' field as a cache.
9573
9574 2004-12-26  Martin Baulig  <martin@ximian.com>
9575
9576         * class.c
9577         (inflate_generic_class): Moved some code out of inflate_generic_type().
9578         (mono_class_inflate_generic_method): If we're already inflated,
9579         inflate the context and use the declaring method; ie. make sure
9580         the declaring method of an inflated method is always the generic
9581         method definition.
9582         (mono_class_create_from_typedef): Create
9583         `class->generic_container->context->gclass'.
9584
9585 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9586
9587         * metadata-internals.h, marshal.c, reflection.c: More
9588         MonoGHashTable->GHashTable.
9589
9590         * domain-internals.h, class.c: Change MonoGHashTable's into
9591         GHashTables for some cases where no gc stuff is used
9592
9593         All users: update apis
9594
9595 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9596
9597         * metadata.c (builtin_types): Make this `const'. Makes this get
9598         put into the shareable section.
9599         (mono_metadata_init): Casts to make gcc happy.
9600
9601 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9602
9603         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9604
9605 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9606
9607         * icall.c: Added an internal call to retrieve the position and length
9608         of assembly-level declarative security attributes (RequestMinimum, 
9609         RequestOptional and RequestRefuse). This is used by the Assembly class
9610         to re-create the corresponding permission sets.
9611
9612 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9613
9614         * marshal.c: fix the stelemref wrapper to be type correct
9615         (and faster).
9616
9617 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9618
9619         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9620         to do key & 0x7fffffff. Hashtable already does this. It just
9621         results in longer code.
9622
9623 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9624
9625         * appdomain.c: Bump corlib version.
9626         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9627         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9628         * reflection.c|h: Add functions to get declarative security infos
9629         (blob position and length) for assemblies, classes and methods.
9630
9631 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9632
9633         * reflection.c: sort the constant table (bug #70693).
9634
9635 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9636
9637         * object-internals.h, threads.c, domain.c: add accessors for
9638         the MonoThread and MonoDomain tls keys.
9639
9640 2004-12-18  Martin Baulig  <martin@ximian.com>
9641
9642         * class.c (inflate_generic_type): If we're inflating a generic
9643         instance, set `ngclass->context->container = context->container';
9644         ie. the container we inflated into.
9645
9646         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9647         inflate_generic_type() changes.
9648
9649 2004-12-17  Martin Baulig  <martin@ximian.com>
9650
9651         * class-internals.h
9652         (MonoGenericClass): Replaced `MonoType *generic_type' with
9653         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9654         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9655         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9656
9657 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9658
9659         * exception.c (mono_exception_from_token): New helper function.
9660
9661 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9662
9663         * assembly.c (mono_assembly_load_with_partial_name): Call 
9664         mono_assembly_loaded before invoking the preload hooks. Fixes
9665         #70564.
9666
9667         * object-internals.h (MonoThread): Change culture_info and 
9668         ui_culture_info into an array.
9669
9670         * threads.c: Cache culture info objects from more than one appdomain.
9671
9672         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9673         current UI culture.
9674
9675 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9676
9677         * threads.h threads.c appdomain.c: Clear the culture_info field of
9678         all threads during unloading if they point to an object in the dying
9679         appdomain.
9680
9681 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9682
9683         * culture-info.h (TextInfoEntry): New struct
9684         * object-internals.h: sync with managed
9685         * locales.c: fill the `text_info_data' field
9686         * culture-info-tables.h: update
9687
9688 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9689
9690         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9691         collector.
9692
9693 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9694
9695         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9696         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9697
9698 2004-12-12  Martin Baulig  <martin@ximian.com>
9699
9700         * mono-debug-debugger.c (write_type): If we're an enum and the
9701         builtin types have already been initialized, call mono_class_init().
9702
9703 2004-12-11  Martin Baulig  <martin@ximian.com>
9704
9705         * metadata.c (mono_metadata_load_generic_params): Added
9706         `MonoGenericContainer *parent_container' argument; automatically
9707         compute `container->is_method'; pass the correct owner to
9708         get_constraints().      
9709
9710         * reflection.c (compare_genericparam): Sort the GenericParam table
9711         according to increasing owners. 
9712
9713 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9714
9715         * profiler.c: allow disabling the default profiler.
9716
9717 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9718
9719         * decimal.c, icall.c: allow disabling System.Decimal support.
9720
9721 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9722
9723         * reflection.c: Add support for null attribute arguments.
9724
9725 2004-12-09  Martin Baulig  <martin@ximian.com>
9726
9727         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9728         names to get rid of compiler warnings.
9729
9730 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9731
9732         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9733         mono_marshal_load_type_info (). Fixes #69625.
9734         (mono_marshal_get_ptr_to_struct): Likewise.
9735
9736 2004-12-08  Martin Baulig  <martin@ximian.com>
9737
9738         * mono-debug.h: Bumped version number to 47.
9739
9740         * mono-debug-debugger.c
9741         (mono_debugger_event_handler, mono_debugger_event): Take two
9742         guint64 arguments insteed of a gpointer and a guint32.  
9743
9744 2004-12-08  Martin Baulig  <martin@ximian.com>
9745
9746         * debug-mono-symfile.h
9747         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9748         `address' to `native_offset'.
9749
9750 2004-12-08  Martin Baulig  <martin@ximian.com>
9751
9752         * class.c (mono_class_create_from_typespec): Only inflate if we
9753         either have `context->gclass' or `context->gmethod'.
9754
9755 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9756
9757         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9758
9759         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9760
9761         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9762
9763         * reflection.c (mono_assembly_get_object): Remove the workaround put
9764         in for the release.
9765         
9766         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9767
9768         * appdomain.c: Bump corlib version.
9769
9770         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9771         be visible in other appdomains.
9772
9773 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9774
9775         * threads.c: Interlocked inc and dec for longs were messed up,
9776         use a KISS based impl for this. Fixes 70234
9777
9778 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9779
9780         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9781
9782 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9783
9784         * icall.c: fix to follow policy not to allow struct
9785         arguments in icalls.
9786
9787 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9788
9789         * process.c: make the patch that handles spaces in file paths work
9790         on mono/windows too.
9791
9792 2004-12-06  Martin Baulig  <martin@ximian.com>
9793
9794         * class.c (mono_class_create_generic): Call
9795         mono_class_setup_supertypes() if we're dynamic.
9796         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9797
9798 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9799
9800         * object-internals.h: Add new fields to MonoThread.
9801
9802         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9803
9804         * icall.c threads-types.h threads.c: Add new icalls.
9805
9806         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9807
9808         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9809         managed side.
9810
9811         * appdomain.c: Bump corlib version.
9812
9813         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9814         internal assemblies. Fixes #69181.
9815
9816 2004-12-05  Martin Baulig  <martin@ximian.com>
9817
9818         * class.c (mono_class_inflate_generic_signature): Make this a
9819         no-op if `context' is NULL or we don't have any type parameters;
9820         also copy `sentinelpos'.        
9821
9822 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9823
9824         * image.c: Add unbox_wrapper_cache.
9825
9826         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9827
9828         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9829         function generator.
9830         
9831         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9832         Fixes #70173.
9833
9834         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9835         
9836 2004-12-04  Martin Baulig  <martin@ximian.com>
9837
9838         * loader.c (mono_method_get_signature_full): New public function;
9839         like mono_method_get_signature(), but with an additional
9840         `MonoGenericContext *' argument.
9841
9842         * class.c (mono_class_inflate_generic_signature): Formerly known
9843         as inflate_generic_signature(); make this public.
9844
9845 2004-12-04  Martin Baulig  <martin@ximian.com>
9846
9847         * metadata.c
9848         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9849         instead of a `MonoGenericContainer *'.  
9850         (mono_metadata_parse_array_full): Likewise.
9851         (mono_metadata_parse_signature_full): Likewise.
9852         (mono_metadata_parse_method_signature_full): Likewise.
9853         (mono_metadata_parse_generic_inst): Likewise.
9854         (mono_metadata_parse_generic_param): Likewise.
9855         (mono_metadata_parse_mh_full): Likewise.
9856         (mono_type_create_from_typespec_full): Likewise.
9857
9858 2004-12-03  Martin Baulig  <martin@ximian.com>
9859
9860         * class-internals.h (MonoGenericContainer): Replaced the
9861         `MonoGenericContext * pointer with a `MonoGenericContext'
9862         structure and made it the first element.
9863
9864 2004-12-03  Martin Baulig  <martin@ximian.com>
9865
9866         * class.c
9867         (inflate_generic_type): Set the `context->container' when creating
9868         a new MonoGenericContext.
9869         (mono_class_inflate_generic_method): Likewise.
9870         (mono_class_create_from_typespec): Just use `context->container'
9871         to get the container.
9872
9873         * loader.c (method_from_methodspec): Set `context->parent' from
9874         `context->container' - and if that's a method container, use its
9875         parent.  Also set the `context->container' when creating a new
9876         MonoGenericContext.
9877         (mono_get_method_from_token): Use just `context->container' to get
9878         the container.
9879
9880         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9881         `gclass->context->container'.
9882
9883         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9884         the `context->container' when creating a new MonoGenericContext.
9885
9886 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9887
9888         * reflection.c (compare_genericparam): Sort params with identical
9889         owner by their number. Fixes gen-111 on sparc.
9890
9891 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9892
9893         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9894         around the domain changes.
9895
9896         * appdomain.c (mono_domain_unload): Handle the case when the thread
9897         calling Unload is itself being aborted during unloading. Fixes #70022.
9898
9899         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9900
9901         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9902         checkpoint_func as an icall so it gets a wrapper.
9903         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9904         in the cross-appdomain wrappers too.
9905
9906         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9907
9908         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9909
9910         * reflection.c: Fix some memory leaks.
9911         
9912 2004-12-02  Martin Baulig  <martin@ximian.com>
9913
9914         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9915
9916         * metadata.c (generic_class_cache): New static hashtable.
9917         (mono_metadata_lookup_generic_class): New public method.
9918
9919 2004-12-02  Martin Baulig  <martin@ximian.com>
9920
9921         * class.c (mono_class_create_from_typedef): Call
9922         mono_class_setup_parent() and mono_class_create_mono_type() before
9923         parsing the interfaces.
9924
9925 2004-12-02  Martin Baulig  <martin@ximian.com>
9926
9927         * metadata.c (generic_inst_cache): New static hashtable.
9928         (mono_metadata_lookup_generic_inst): New public function.
9929         (mono_metadata_inflate_generic_inst): New public function.
9930         (mono_metadata_parse_generic_inst): New public function.
9931         (do_mono_metadata_parse_generic_class): Use the new
9932         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9933         since this'll also use the cache.
9934
9935         * reflection.c (mono_reflection_bind_generic_method_parameters):
9936         Use mono_metadata_lookup_generic_inst() to use the new cache.
9937
9938         * class.c (inflate_mono_type): Use
9939         mono_metadata_inflate_generic_inst() to inflate a generic
9940         instance; this'll also use the new cache.
9941
9942         * loader.c (method_from_methodspec): Use
9943         mono_metadata_parse_generic_inst() and
9944         mono_metadata_inflate_generic_inst() rather than parsing it
9945         manually, so we can use the new cache.
9946
9947 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9948
9949         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9950         the wait times out.
9951
9952 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9953
9954         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9955         iter->args based on whether parameters are passed in registers (i.e.
9956         MONO_ARCH_REGPARMS is defined)
9957
9958 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9959
9960         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9961         the exception message. Fixes #70070.
9962         (method_from_methodspec): Fix warnings.
9963
9964 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9965
9966         * process.c: (complete_path) return the path quoted
9967
9968 2004-12-01  Martin Baulig  <martin@ximian.com>
9969
9970         * class-internals.h (MonoGenericInst): New structure.
9971         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9972         `is_open' with `MonoGenericInst *inst'.
9973         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9974         `is_open' with `MonoGenericInst *inst'.
9975
9976 2004-11-30  Martin Baulig  <martin@ximian.com>
9977
9978         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9979
9980         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9981         to `generic_class_cache'.
9982
9983         * metadata.c
9984         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9985         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9986         (mono_generic_inst_is_valuetype): Renamed to
9987         mono_generic_class_is_valuetype().
9988
9989         * class-internals.h
9990         (MonoGenericInst): Renamed to MonoGenericClass.
9991         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9992         (MonoClass): Renamed `generic_inst' to `generic_class'.
9993         (MonoGenericContext): Renamed `ginst' to `gclass'.
9994
9995         * object-internals.h
9996         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9997
9998         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9999         mono_reflection_generic_class_initialize().
10000
10001         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
10002         now known as "System.Reflection.MonoGenericClass".
10003         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
10004
10005 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
10006
10007         * class-internals.h: Added a flag field to MonoClass to cache the
10008         declarative security attributes actions associated with the class.
10009         * domain-internals.h: Added booleans to MonoJitInfo to cache the
10010         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
10011         applicable to the JITted method.
10012         * reflection.c|h: Added functions to extract (as flags) which security
10013         actions are available (declaratively) for a method, class or assembly.
10014         * metadata.c|h: Added functions to search the declarative security
10015         table in the metadata.
10016         
10017 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
10018
10019         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
10020         EXPORTEDTYPES are already in the class name cache, so there is no
10021         need to add extra code here to look at them. Just removes a bit of
10022         cruft.
10023
10024         (ves_icall_System_Environment_get_TickCount): No need for #if
10025         WINDOWS. We already have the code in io-layer.
10026
10027 2004-11-28  Martin Baulig  <martin@ximian.com>
10028
10029         * loader.c
10030         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
10031         Fixes gen-112.cs.
10032
10033 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
10034
10035         * assembly.c (do_mono_assembly_open): Instead of having a
10036         conditional WITH_BUNDLE, incorporate support for bundles here, by
10037         having a global `bundles' variable holding a pointer to the actual
10038         bundles. 
10039
10040         (mono_register_bundled_assemblies): New API call used by the
10041         bundle code. 
10042
10043         See mkbundle.1 for details.
10044         
10045 2004-11-27  Martin Baulig  <martin@ximian.com>
10046
10047         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
10048         the vtable for generic methods.
10049
10050 2004-11-26  Martin Baulig  <martin@ximian.com>
10051
10052         * metadata.c
10053         (mono_metadata_generic_method_hash): New public function.
10054         (mono_metadata_generic_method_equal): Likewise.
10055
10056         * class-internals.h
10057         (MonoGenericContainer): Added `GHashTable *method_hash'.
10058
10059         * reflection.c (ReflectionMethodBuilder): Added
10060         `MonoGenericContainer *generic_container'.
10061         (reflection_methodbuilder_to_mono_method): Don't create a new
10062         MonoGenericContainer each time we're called.
10063         (mono_reflection_bind_generic_method_parameters): Use
10064         `container->method_hash' to cache the results so we don't create a
10065         different method if we're called several times with the same
10066         arguments.
10067
10068         * loader.c (method_from_methodspec): Use the new
10069         `container->method_hash' here, too.
10070
10071 2004-11-26  Martin Baulig  <martin@ximian.com>
10072
10073         * class.c (inflate_generic_signature): Correctly compute
10074         `res->has_type_parameters'.
10075         (mono_class_vtable): Use the `has_type_parameters' flag to
10076         determine whether we're a generic method.
10077
10078         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
10079
10080 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
10081
10082         * object.c (mono_runtime_run_main): Fix a small memory leak.
10083
10084 2004-11-25  Martin Baulig  <martin@ximian.com>
10085
10086         * class.c (set_generic_param_owner): Fixed the loop.
10087
10088 2004-11-25  Martin Baulig  <martin@ximian.com>
10089
10090         * object.c (mono_class_vtable): Don't create any JIT wrappers for
10091         generic methods.
10092
10093 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
10094
10095         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
10096         names. Fixes #69787.
10097
10098 2004-11-24  Martin Baulig  <martin@ximian.com>
10099
10100         * class.c (mono_class_create_generic_2): If we don't have a
10101         `ginst->parent', inflate `gklass->parent' to get our parent.
10102
10103 2004-11-24  Martin Baulig  <martin@ximian.com>
10104
10105         * reflection.c (compare_genericparam): Correctly sort the
10106         GenericParam table; fixes #69779.
10107
10108 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
10109
10110         * reflection.c: When writing a PE file, don't create a huge
10111         buffer in memory. Just write the arrays we have to the file.
10112         This reduces memory usage.
10113
10114         * metadata-internals.h: MonoDynamicStream pefile is no longer used
10115         globally.
10116
10117 2004-11-17  Martin Baulig  <martin@ximian.com>
10118
10119         * class.c (mono_class_init): Don't setup `class->parent' for
10120         dynamic instances; moved this to mono_class_generic_2().
10121         (mono_class_create_generic): Also set `klass->inited' for dynamic
10122         generic instances.
10123         (mono_class_create_generic_2): Don't do anything for dynamic
10124         generic instances.  Set `klass->parent' here and also call
10125         mono_class_setup_parent() here. 
10126
10127         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
10128         `MonoType *parent' argument; set `ginst->parent' before calling
10129         mono_class_create_generic_2(), so we set the correct parent.
10130
10131 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
10132
10133         * reflection.c: allow getting attributes from ModuleBuilder
10134         (used by ikvm).
10135
10136 2004-11-17  Martin Baulig  <martin@ximian.com>
10137
10138         * class.c (mono_class_create_from_typedef): If a type parameter is
10139         inherited from an outer class, set its owner to that class.
10140
10141 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
10142
10143         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
10144           for (int*) written size. This fixes bug #69592.
10145
10146 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
10147
10148         * icall.c: Added IsAuthenticodePresnet internal call.
10149         * image.c|h: New function that check a MonoImage for an Authenticode
10150         signature in the certificate PE data directory.
10151         * security.c|h: New internal call to ask the runtime if an 
10152         Authenticode signature seems referenced in the PE header.
10153
10154 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
10155
10156         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
10157
10158         * reflection.c (mono_image_create_pefile): Free the assembly streams
10159         after writing out the assembly file.
10160
10161         * object.c (mono_runtime_run_main): Fix small memory leak.
10162
10163         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
10164         property access modifiers. Fixes #69389.
10165
10166 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
10167
10168         * domain.c, object.c, object-internals.h, domain-internals.h,
10169         object.h, marshal.c: keep dynamic code info per domain.
10170
10171 2004-11-15  Martin Baulig  <martin@ximian.com>
10172
10173         * class.c (mono_type_get_name_recurse): Put type arguments in
10174         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
10175         see bug #68387.
10176
10177 2004-11-15  Martin Baulig  <martin@ximian.com>
10178
10179         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
10180         (mono_class_setup_vtable): When computing `the_cname' for a
10181         generic instance, don't include the namespace since we'd otherwise
10182         add it twice.
10183
10184 2004-11-15  Martin Baulig  <martin@ximian.com>
10185
10186         * class.c (mono_class_create_generic): Changed return type to void.
10187         (mono_class_create_generic_2): New public function; setup
10188         `class->method', `class->field' and `class->interfaces' here
10189         instead of in mono_class_init().
10190
10191         * class.h (mono_class_create_generic): Moved to class-internals.h.
10192
10193 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
10194
10195         * reflection.c (mono_image_create_pefile): take a file HANDLE.
10196         rather than writing to memory, write to this file. Right now,
10197         we are just writting into a buffer, and copying that. However
10198         we can avoid the buffer later.
10199
10200         (mono_dynamic_stream_reset): new function
10201
10202         * icall.c, object-internals.h: update for the above.
10203
10204 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
10205
10206         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
10207         have been using gc'd memory. First it is slower, unlikely
10208         the comment in the source code said, secondly, it increases
10209         our footprint to do it in the gc.
10210
10211         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
10212         the method so that it does not have to copy to managed code.
10213
10214 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
10215
10216         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
10217
10218 2004-11-12  Martin Baulig  <martin@localhost>
10219
10220         * reflection.c (mono_image_create_token): Allow generic method
10221         definitions here, since they may appear in an `.override'; see
10222         gen-98/gen-99 for an example.
10223
10224 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
10225
10226         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
10227         #69365.
10228
10229         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
10230         descriptive.
10231
10232 2004-11-11  Martin Baulig  <martin@ximian.com>
10233
10234         * class.c (mono_class_setup_vtable): In an explicit interface
10235         implementation, the method name now includes the arity.
10236
10237 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
10238
10239         * object.c (mono_array_full_copy): Fix warning.
10240
10241 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
10242
10243         * appdomain.c: Removed look_for_method_by_name(). Use the new method
10244         mono_class_get_method_from_name() instead.
10245         
10246         * class-internals.h: Added two new types of wrappers. 
10247         Added MonoRemotingTarget enum. Added new trampoline function type, which
10248         takes an additional MonoRemotingTarget value as parameter, so it is
10249         possible to request a trampoline for a specific target.
10250         
10251         * class.c: Added new mono_class_get_method_from_name() method.
10252         
10253         * class.h: In MonoRemoteClass, we can have now to vtables, one for
10254         general remoting sinks and one specific for cross domain calls.
10255         
10256         * debug-helpers.c: Added new wrapper names.
10257         
10258         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
10259         of a remote class.
10260         
10261         * image.c: Porperly delete value objects form the remoting invoke hashtable.
10262         
10263         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
10264         with several other methods (mono_marshal_get_xappdomain_dispatch,
10265         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10266         and others) can generate a fast remoting wrapper for cross domain calls.
10267         More information can be found in docs/remoting.
10268         Other changes: Removed mono_find_method_by_name, and used
10269         mono_class_get_method_from_name instead.
10270         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10271         is stored in the remoting invoke hashtable.
10272         
10273         * marshal.h: published the new method for getting the xdomain wrapper,
10274         and also added a method for getting the adequate wrapper for a given
10275         method and target.
10276         
10277         * object-internals.h, object.c: Added a couple of methods for capying and
10278         cloning arrays.
10279         Modified mono_install_remoting_trampoline, which takes the new remoting
10280         trampoline that has a remoting target as parameter.
10281         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10282         will return the most suitable vtable for the target.
10283         Added mono_remote_class_vtable, which returns the vtable of a remote class
10284         (which can be the normal remoting vtable or the xdomain vtable).
10285         
10286         * threads.c: the xdomain invoke and dispatch wrappers must also be
10287         protected against interruptions.
10288
10289 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10290
10291         * icall.c: use memmove in BlockCopyInternal when the source and
10292         destination arrays are the same.
10293
10294 2004-11-09  Martin Baulig  <martin@ximian.com>
10295
10296         * class-internals.h (MonoGenericContainer): Removed `method' and
10297         `signature', replaced them with `is_method' and `is_signature'
10298         flags.  Added `context'.
10299
10300         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10301         instead of a `MonoGenericContainer *'.
10302
10303         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10304         for dynamic type parameters.
10305         (mono_metadata_load_generic_params): Setup `container->context'.
10306
10307         * reflection.c (mono_reflection_setup_generic_class): Setup
10308         `tb->generic_container->context'.
10309         (do_mono_reflection_bind_generic_parameters): Use
10310         mono_class_inflate_generic_type() to correctly inflate types,
10311         rather than using our own hack just for MONO_TYPE_VAR.
10312
10313 2004-11-09  Martin Baulig  <martin@ximian.com>
10314
10315         * class.c (mono_class_inflate_generic_method): Small fix; don't
10316         crash here.
10317
10318         * icall.c
10319         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10320         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10321         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10322         (ves_icall_Type_BindGenericParameters): Likewise.
10323         (ves_icall_Type_get_IsGenericInstance): Likewise.
10324         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10325         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10326         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10327         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10328
10329 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10330
10331         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10332         assembly versions and public key tokens. Fixes #69113.
10333
10334 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10335
10336         * metadata.c: fix bug introduced with the type cache changes
10337         on 2004-11-06.
10338
10339 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10340
10341         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10342         the MonoClass pointer instead of the token in exception clauses.
10343         * reflection.c: updates for the above and make the code not depend
10344         on the structure of MonoExceptionClause.
10345
10346 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10347
10348         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10349         Add support for dynamic assemblies. Fixes #69114.
10350
10351         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10352
10353 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10354
10355         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10356         since most only those methods use it. the code member of
10357         MonoMethodPInvoke was dead, so that can be removed too. Also,
10358         remove inline_count (again, not used), and move slot so that it
10359         can share bits with some other flags. This saves 8 bytes in the
10360         structure and gives us about 50 kb back for mcs helloworld.cs
10361
10362         * *.[ch]: Do naming changes for the above.
10363
10364         * loader.c (mono_method_get_header): Lazily init the header
10365         on first access.
10366         (mono_get_method_from_token): don't init the header here
10367         (mono_free_method): the header may never be allocated
10368
10369         Overall, this saves 150 kb of unmanaged allocations
10370         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10371         memory at runtime.
10372         
10373         * loader.c, loader.h (mono_method_get_header): new accessor.
10374
10375         * *.[ch]: use the above method. Prepares us to lazily load
10376         the header.
10377
10378         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10379         three warnings, which are actual bugs (see 69206).
10380
10381         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10382         unused. Saves a cool 4 bytes / method.
10383
10384 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10385
10386         * metadata.c (builtin_types): Add types for System.Object here.
10387         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10388         for a class or valuetype from klass->this_arg or klass->byval_arg.
10389
10390         On mcs for a hello world, this gets us down from 21836 MonoType's
10391         to 14560.
10392
10393         (mono_metadata_free_type): Account for the above change.
10394
10395 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10396
10397         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10398         exception instead of asserting if name is null.
10399         (ves_icall_System_AppDomain_GetData): Ditto.
10400
10401 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10402
10403         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10404         EnumBuilder.
10405
10406         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10407         Return NULL when the domain does not have entry_assembly set.
10408
10409         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10410         Add a 'resource_modules' argument.
10411         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10412
10413         * reflection.c (mono_reflection_create_runtime_class): Move setting
10414         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10415         for enums too.
10416
10417         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10418         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10419         Throw an ArgumentNullException if 'ptr' is null.
10420
10421         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10422         assemblies here. Fixes #69020.
10423
10424 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10425
10426         * reflection.c (build_compressed_metadata): Fix the previous patch for
10427         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10428         the stack.
10429
10430 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10431
10432         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10433         the cultures is false. Fixes #69090.
10434
10435         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10436         detected by valgrind.
10437         
10438         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10439         TypeResolve multiple times for the same type. Fixes #65577.
10440
10441 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10442
10443         * marshal.c: Avoid using ldftn to call managed functions. It is
10444         much slower than just a call.
10445
10446         * reflection.c (mono_module_get_object): free the basename we
10447         allocate here from glib.
10448         
10449         * reflection.c (ensure_runtime_vtable): make sure to free
10450         overrides.  Also, we were allocating an array of MonoMethod not an
10451         array of MonoMethod*.
10452
10453         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10454
10455         * image.c (mono_image_close): free image->guid here.
10456
10457 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10458
10459         * reflection.c: Fix some spec conformance issues with the PE file
10460         structures so mcs compiled apps run on the Net 2.0 beta.
10461
10462 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10463
10464         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10465         Implement this. Fixes #67264.
10466
10467         * debug-helpers.h debug-helpers.c marshal.c: Move 
10468         mono_find_method_by_name to debug-helpers.c.
10469
10470 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10471
10472         * object.c (mono_release_type_locks): type_initialization_hash is
10473         a GHashTable.
10474
10475         * reflection.c object.c object-internals.h: Fix warnings.
10476
10477         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10478         without accessors. Fixes #61561.
10479
10480         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10481         application base from the root domain if not set. Fixes #65641.
10482         (mono_runtime_init): Fix warning.
10483
10484 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10485
10486         * appdomain.c: call mono_thread_pool_init.
10487         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10488         of worker threads based on the number of CPUs and the environment
10489         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10490         for non-windows (windows) systems.
10491
10492 2004-10-27  Chris Toshok  <toshok@ximian.com>
10493
10494         * mono-debug-debugger.c (write_class): don't call mono_class_init
10495         here, as even with the check for (!klass->init_pending), we get
10496         into a situation where we're hitting cycles in class
10497         initialization.  Fixes #68816.
10498
10499 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10500
10501         * image.c: Avoid overwriting values in the loaded_images_hash when an
10502         assembly is loaded multiple times. Fixes #61152.
10503
10504         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10505         so multiple satellite assemblies for the same name can be loaded.
10506         Fixes #68259.
10507
10508         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10509         not NULL.
10510
10511         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10512         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10513
10514         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10515         pending finalizers are not invoked after the appdomain has been 
10516         unloaded. Fixes #67862.
10517
10518 2004-10-22  Martin Baulig  <martin@ximian.com>
10519
10520         * mono-debug-debugger.c
10521         (mono_debugger_runtime_invoke): Don't box valuetypes.
10522
10523 2004-10-22  Chris Toshok  <toshok@ximian.com>
10524
10525         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10526         don't hide private methods.
10527
10528 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10529
10530         * icall.c: Allows the runtime to "share" (when known) the public key
10531         token of an assembly. This avoid the need to recalculate the token 
10532         (from the public key) in managed code.
10533
10534 2004-10-21  Chris Toshok  <toshok@ximian.com>
10535
10536         * debug-helpers.c (append_class_name): argh, revert last patch.
10537         
10538 2004-10-21  Chris Toshok  <toshok@ximian.com>
10539
10540         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10541         not '/', so that it matches what the debugger uses to look up
10542         methods.
10543
10544 2004-10-21  Martin Baulig  <martin@ximian.com>
10545
10546         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10547         public method; this is called each time an exception is thrown and
10548         allows the debugger to use exception catch points.
10549
10550 2004-10-21  Martin Baulig  <martin@ximian.com>
10551
10552         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10553         the stack pointer and the exception object in some struct and pass
10554         that to the debugger.
10555
10556 2004-10-21  Chris Toshok  <toshok@ximian.com>
10557
10558         * mono-debug-debugger.c (do_write_class): add instance/static
10559         event support.  We don't expose "raise" or "other" yet.
10560         (event_is_static): new method.
10561
10562 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10563
10564         * mono-debug-debugger.c
10565         (mono_debugger_handle_exception): Remove
10566         bogus return value for fussy compilers.
10567
10568 2004-10-20  Martin Baulig  <martin@ximian.com>
10569
10570         * mono-debug-debugger.c
10571         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10572         (mono_debugger_handled_exception): Likewise.
10573
10574 2004-10-20  Martin Baulig  <martin@ximian.com>
10575
10576         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10577         MONO_DEBUGGER_EVENT_EXCEPTION.
10578
10579         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10580         public function to send the debugger a notification for an
10581         exception and inform it about a catch/finally clause.
10582
10583 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10584
10585         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10586         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10587         fix 2.95 build. 
10588
10589         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10590
10591 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10592
10593         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10594         marshalled as [In,Out]. Fixes #58325.
10595
10596 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10597
10598         * reflection.c (mono_method_body_get_object): Implement some fields.
10599
10600 2004-10-12  Martin Baulig  <martin@ximian.com>
10601
10602         * reflection.c (mono_reflection_bind_generic_parameters): Small
10603         fix, correctly retrieve our parent from a generic instance.
10604
10605 2004-10-12  Martin Baulig  <martin@ximian.com>
10606
10607         * metadata.c (mono_metadata_generic_param_equal): We always have
10608         an owner.
10609
10610         * class.c
10611         (mono_class_from_generic_parameter): We need to have an owner.
10612         (my_mono_class_from_generic_parameter): Likewise.
10613
10614         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10615         mono_reflection_create_generic_class() and added a new
10616         mono_reflection_setup_generic_class().  
10617         (mono_reflection_initialize_generic_param): If we're a nested
10618         generic type and inherited from the containing class, set our
10619         owner to the outer class.
10620
10621 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10622
10623         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10624
10625         * reflection.c (mono_method_body_get_object): New function to create
10626         a MethodBody object.
10627
10628         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10629
10630 2004-10-11  Martin Baulig  <martin@ximian.com>
10631
10632         * metadata.c (_mono_metadata_type_equal): Renamed to
10633         do_mono_metadata_type_equal() and made static.
10634
10635 2004-10-11  Martin Baulig  <martin@ximian.com>
10636
10637         * appdomain.c: Bump corlib version number to 28.
10638
10639 2004-10-10  Martin Baulig  <martin@ximian.com>
10640
10641         * class-internals.h
10642         (MonoGenericInst): Added `MonoGenericContainer *container'.
10643         (MonoGenericMethod): Likewise.
10644         (MonoGenericContext): Likewise.
10645         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10646
10647         * metadata.c
10648         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10649         (do_mono_metadata_parse_generic_inst): Likewise.
10650         (mono_metadata_parse_type_full): New public method.  This is the actual
10651         mono_metadata_parse_type() implementation - with an additional
10652         `MonoGenericContainer *' argument.
10653         (mono_metadata_parse_array_full): Likewise.
10654         (mono_metadata_parse_signature_full): Likewise.
10655         (mono_metadata_parse_method_signature_full): Likewise.
10656         (mono_metadata_parse_mh_full): Likewise.
10657         (mono_type_create_from_typespec): Likewise.
10658         (mono_metadata_interfaces_from_typedef_full): New public method;
10659         this is similar to the other _full() methods, but we take a
10660         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10661         (mono_metadata_parse_generic_param): Take an additional
10662         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10663         from that container.
10664         (mono_metadata_generic_param_equal): New static method to compare
10665         two type parameters.
10666         (_mono_metadata_type_equal): New static method; takes an
10667         additional `gboolean signature_only' argument - if true, we don't
10668         compare the owners of generic parameters.
10669         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10670         with a TRUE argument - do a signature-only comparision.
10671
10672         * loader.c: Use the new _full() methods and pass the
10673         MonoGenericContainer to them.
10674
10675         * object-internals.h (MonoReflectionTypeBuilder): Added
10676         `MonoGenericContainer *generic_container' field.
10677         (MonoReflectionMethodBuilder): Likewise.
10678
10679 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10680
10681         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10682         case initial images of dynamic assemblies.
10683
10684         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10685
10686         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10687
10688         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10689         length of event->other array.
10690         (typebuilder_setup_events): Ditto.
10691
10692         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10693         'assembly_by_name' and add an 'assemblies' list.
10694
10695         * assembly.h assembly.c: Add a new search hook for determining whenever
10696         an assembly is already loaded. Use this instead of searching in the
10697         loaded_assemblies list.
10698
10699         * domain.c appdomain.c: Implement the new search hook so loaded 
10700         assemblies are now scoped by appdomain. Fixes #67727.
10701
10702 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10703
10704         * threads.c (mono_thread_attach): Initialize synch_lock field so
10705         mono_thread_detach works again.
10706
10707         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10708         'lib' too. Fixes #63130.
10709
10710 2004-10-06  Jackson Harper  <jackson@ximian.com>
10711
10712         * culture-info-tables.h: regenerated.
10713
10714 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10715
10716         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10717         implemented by other interfaces in the result. Fixes #65764.
10718         
10719         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10720         Handle unloadable modules without crashing.
10721
10722         * image.c (load_modules): Revert the previous patch since modules must
10723         have a fixed index inside the array.
10724         
10725         * image.c (load_modules): Don't include native modules in the modules
10726         array.
10727
10728 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10729
10730         * reflection.h: Add param_defaults field.
10731
10732         * reflection.c: Add support for parameter defaults in dynamic methods.
10733         Fixes #64595.
10734
10735         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10736         an empty string when a type has no namespace. Fixes #64230.
10737
10738 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10739
10740         * tabledefs.h: Added "internal" security actions to support non-CAS
10741         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10742         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10743
10744 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10745
10746         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10747         constructor of abstract class. Fixes #61689.
10748
10749 2004-10-04  Martin Baulig  <martin@ximian.com>
10750
10751         * class-internals.h (MonoGenericContainer): New type.
10752         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10753         `MonoGenericContainer *generic_container'.
10754         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10755         `MonoGenericContainer *generic_container'.
10756
10757         * metadata.c (mono_metadata_load_generic_params): Return a
10758         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10759         removed the `num' argument.
10760
10761 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10762
10763         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10764         for dynamic images.
10765
10766         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10767         machine fields.
10768
10769         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10770
10771         * reflection.c: Save pe_kind and machine values into the generated
10772         image file.
10773
10774         * appdomain.c: Bump corlib version number.
10775
10776         * object-internals.h: Reorganize layout of LocalBuilder.
10777
10778         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10779         New helper function.
10780
10781         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10782         created MonoType for dynamic types. Fixes #66180.
10783
10784 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10785
10786         * threadpool.c: the ares hashtable needs a critical section around it.
10787         this prevents some nasty segfaults
10788
10789 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10790
10791         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10792         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10793         bug 67324).
10794         
10795 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10796
10797         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10798         
10799 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10800
10801         * image.c: Always canonicalize image file names, to avoid loading
10802         the same assembly twice when referenced using a relative path.
10803
10804 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10805
10806         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10807
10808         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10809
10810         * marshal.c: Fix warnings.
10811
10812 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10813
10814         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10815         attempting to marshal the delegate_trampoline as the method_addr.
10816         This patch has a static hashtable of marshalled delegates so that 
10817         we can map delegate_trampoline addresses back to delegates.  This
10818         allows a delegate passed to managed code to be passed back into native
10819         code.  Fixes #67039
10820
10821 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10822
10823         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10824
10825         * reflection.c (method_encode_code): Align method headers properly.
10826         Fixes #66025.
10827
10828 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10829
10830         * marshal.c: In the runtime invoke wrapper, reset the abort
10831         exception if it is cached. This avoids the automatic rethrowal of 
10832         the exception after the catch of the wrapper. Also check for pending
10833         interruptions before calling the managed method. This is done using
10834         the new method emit_thread_force_interrupt_checkpoint, since the
10835         normal checkpoint method is ignored when running the invoke wrapper.
10836         * object.c: If the abort exception is rethrown, set the abort_exc
10837         field of the thread, so it will be rethrown aftere every catch.
10838         * threadpool.c: Only run an interruption checkpoint if what has been
10839         requested is a stop of the thread (aborts will be ignored).
10840         * threads.c: By default, a thread will now never be interrumped while
10841         running the runtime invoke wrapper (this ensures that runtime_invoke
10842         will always return to the caller if an exception pointer is provided).
10843         There is a new special method mono_thread_force_interruption_checkpoint()
10844         to force an interruption checkpoint even if running a protected
10845         wrapper, which is used by the same runtime invoke wrapper to do a check
10846         at a safe point.
10847
10848 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10849
10850         * object.c, object-internals.h: Implemented mono_release_type_locks,
10851         which releases the cctor locks held by a thread.
10852         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10853         by a thread. Added mono_thread_exit() method to be used to safely stop
10854         a thread.
10855
10856 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10857
10858         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10859         Move null check before dereference.  Avoid indexing beyond the end
10860         of the 'modules' array.
10861
10862 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10863
10864         * metadata-internals.h (MonoImage): Add module_count field.
10865         * image.c (load_modules): Set image->module_count.
10866         (mono_image_load_file_for_image): Use image->module_count.
10867         * reflection.c (mono_image_load_module): Append to image->modules array 
10868         of dynamic assembly.
10869         (mono_module_get_object): Fix loop to actually increment index.
10870         Use image->module_count.
10871         * assembly.c (mono_assembly_load_references): Use image->module_count.
10872         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10873         Likewise.
10874
10875 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10876
10877         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10878         Avoid assert on generic types.
10879
10880 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10881
10882         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10883
10884         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10885
10886         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10887         function to convert a MarshalSpec structure to its managed counterpart.
10888
10889         * reflection.c: Fix warnings.
10890         
10891         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10892         field.
10893
10894         * icall.c (mono_create_icall_signature): Fix build.
10895
10896 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10897
10898         * icall.c: Add MakePointType icall.
10899
10900         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10901         warnings.
10902
10903 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10904
10905         * threadpool.c: reuse allocated slots in the queue.
10906
10907 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10908
10909         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10910
10911         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10912
10913         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10914         previous change.
10915
10916         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10917         ThrowOnUnmappableChar.
10918
10919         * icall.c (ves_icall_Type_GetPacking): New icall.
10920
10921 2004-09-24  Martin Baulig  <martin@ximian.com>
10922
10923         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10924
10925 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10926
10927         * appdomain.c:
10928         (mono_domain_set): allow setting a domain that is being unloaded.
10929         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10930         being unloaded.
10931
10932 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10933
10934         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10935         the GetCustomAttributes icall.
10936
10937 2004-09-23  Martin Baulig  <martin@ximian.com>
10938
10939         * object-internals.h (MonoReflectionGenericParam): Replaced
10940         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10941         with `guint32 attrs'.
10942
10943 2004-09-23  Martin Baulig  <martin@ximian.com>
10944
10945         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10946
10947 2004-09-23  Martin Baulig  <martin@ximian.com>
10948
10949         * object-internals.h (GenericParameterAttributes): New enum.
10950
10951 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10952
10953         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10954         
10955         * class.c (init_events): Fill out event->other field.
10956
10957         * class.c: Fix warnings.
10958
10959         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10960
10961 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10962
10963         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10964         walk which doesn't supply the IL offset.
10965
10966 2004-09-22  Martin Baulig  <martin@ximian.com>
10967
10968         * reflection.c (mono_reflection_setup_internal_class): If we're
10969         System.ValueType, System.Object or System.Enum, set
10970         `klass->instance_size' and create the vtable.
10971         (mono_reflection_create_internal_class): If we're an enum type,
10972         get the base class from our current corlib.
10973
10974 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10975
10976         * reflection.h (MonoResolveTokenError): New type.
10977
10978         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10979         icall.
10980
10981         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10982
10983 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10984
10985         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10986         Support also calling constructors, but only for already allocated objects.
10987
10988 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10989
10990         * reflection.c (type_get_qualified_name): If the klass is null
10991         return the typename to avoid a NullRefEx.
10992         (encode_cattr_value): Get the qualified name of the boxed type,
10993         not the underlying enumtype.  Fixes #62984.
10994
10995 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10996
10997         * marshal.c: Fix problems with previous checkin.
10998
10999 2004-09-21    <vargaz@freemail.hu>
11000
11001         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
11002         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
11003
11004         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
11005
11006 2004-09-21  Geoff Norton <gnorton@customerdna.com>
11007
11008         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
11009         should only return a type for pointers, arrays, and passbyref types.
11010         Fixes bug #63841.
11011
11012 2004-09-21  Martin Baulig  <martin@ximian.com>
11013
11014         * domain.c (mono_debugger_check_runtime_version): New public
11015         function.
11016
11017         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
11018
11019 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
11020
11021         * reflection.c: Added missing sort to the declarative security 
11022         attributes table. MS implementation stops seeing the attributes if the
11023         token number regress in the table (as shown by ildasm and permview).
11024
11025 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
11026
11027         * object-internals.h (MonoReflectionModule): Add 'token' field.
11028         
11029         * reflection.c (mono_reflection_get_token): Add support for Module
11030         and Assembly.
11031         (mono_module_get_object): Set 'token' field.
11032         (mono_module_file_get_object): Set 'token' field.
11033
11034         * icall.c: Add new Assembly and Module icalls.
11035
11036         * appdomain.c: Bump corlib version.
11037
11038 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
11039
11040         * loader.h loader.c class.h class.c: Add helper functions for obtaining
11041         tokens of metadata objects.
11042
11043         * reflection.h reflection.c (mono_reflection_get_token): New function
11044         to obtain the token of a metadata object.
11045
11046         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
11047
11048 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
11049
11050         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
11051         
11052         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
11053
11054 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
11055
11056         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
11057         * object-internals.h: Added 3 MonoArray* members to MonoReflection
11058         AssemblyBuilder to access the permissions set in the class lib.
11059         * reflection.c: Added security attributes encoding step in 
11060         mono_image_build_metadata.
11061         * tabledefs.h: Added new security actions defined in 2.0:
11062         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
11063
11064 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11065
11066         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
11067         macro parameter.
11068
11069 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
11070  
11071         * locales.c: nullify the ICU_collator member of CompareInfo when it is
11072           finalized. There where random SIGSEVs at program termination, when
11073           an object being finalized was trying to do a string comparison and
11074           the current culture was already finalized.
11075  
11076 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11077
11078         * threads.c: call thread_cleanup before finishing the thread if we get
11079         there.
11080
11081 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
11082
11083         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
11084         assemblies from the parent. Fixes #65665.
11085
11086 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
11087
11088         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
11089         modifiers.
11090
11091 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
11092
11093         * reflection.h: add prototype for mono_get_dbnull_object
11094         * reflection.c: add prototypes for get_default_param_value_blobs 
11095         and mono_get_object_from_blob for fussier compilers
11096
11097 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
11098  
11099         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
11100         false deadlock checks in class initialization.
11101  
11102 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
11103
11104         * image.c (mono_image_addref): Fix comment.
11105
11106         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
11107         possible.
11108
11109 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
11110
11111         * reflection.c (mono_param_get_objects): Modified to return
11112         ParameterInfo.DefaultValue object.
11113
11114         (get_default_param_value_blobs):
11115         (mono_get_object_from_blob):
11116         (mono_get_dbnull_object): New helper routines. 
11117
11118         * object.c (mono_get_constant_value_from_blob): New helper routine
11119         carved out from get_default_field_value ()
11120
11121         * object-internals.h (mono_get_constant_value_from_blob): Added
11122         function declaration.
11123
11124 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
11125
11126         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
11127         referenced assemblies. Fixes #62135.
11128
11129         * exception.h exception.c (mono_get_exception_file_not_found2): New
11130         helper function.
11131
11132 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
11133
11134         * class.h class.c: Add mono_type_get_underlying_type ().
11135
11136 2004-09-09  Geoff Norton <gnorton@customerndna.com>
11137
11138         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
11139         Fix GetTypes() to support dynamically created assemblies.
11140
11141 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
11142
11143         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
11144         
11145         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
11146         previous patch.
11147
11148         * reflection.h reflection.c loader.c: Allow dynamic construction of
11149         pinvoke methods. Fixes #65571.
11150         
11151         * reflection.c (mono_reflection_get_type): Revert previous change since
11152         it causes regressions.
11153
11154 2004-09-08  Martin Baulig  <martin@ximian.com>
11155
11156         * class.c (class_compute_field_layout): Don't call
11157         mono_class_layout_fields() for open generic instances.
11158
11159 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
11160         * threads.c appdomain.c: fix typo in GC macro
11161
11162 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11163
11164         * threads.c: don't call mono_thread_detach() in start_wrapper(),
11165         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
11166
11167 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
11168
11169         * image.c (mono_image_close): Applied patch from 
11170         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
11171         assembly is loaded multiple times from data.
11172         
11173         * image.c (mono_image_open): Fix warning.
11174
11175 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11176
11177         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
11178         once. Fixes #58334.
11179         
11180         * reflection.c (mono_reflection_create_runtime_class): Initialize
11181         klass->nested_classes. Fixes #61224.
11182
11183 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11184
11185         * threads.c: sched_yield() on exit, to allow threads to quit.
11186
11187 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11188
11189         * object.c (mono_unhandled_exception): Remove leftover debug code.
11190
11191 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
11192
11193         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
11194
11195 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11196
11197         * marshal.c (emit_marshal_array): Really null terminate string arrays.
11198         
11199         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
11200
11201 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11202
11203         * marshal.c (emit_marshal_array): Null terminate string arrays.
11204         
11205         * marshal.c (raise_auto_layout_exception): Fix warning.
11206
11207         * reflection.c (mono_param_get_objects): Initialize the default value
11208         with DBNull.Value, not null. Fixes #62123.
11209
11210 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
11211
11212         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
11213         throw an exception with a cute explanation.
11214
11215 2004-09-06  Dick Porter  <dick@ximian.com>
11216
11217         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
11218         Close the new process's thread handle, as we don't use it.  The
11219         handle stays around forever otherwise.
11220
11221 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11222
11223         * object.c (arith_overflow): Fix warning.
11224
11225         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
11226         calling conventions in method refs. Fixes #65352.
11227
11228         * reflection.c: Fix warnings.
11229
11230 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11231
11232         * icall.c: Add a new icall for Array.Clear
11233
11234 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11235
11236         * object.c: When allocating an array, we have to throw
11237         an overflow exception if any of the lengths are < 0.
11238
11239 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11240
11241         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
11242         properly. Also move implementation of string array marshalling to 
11243         managed code. Fixes #42316.
11244
11245 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11246
11247         * assembly.c: provide more information when loading an assembly fails.
11248
11249 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11250
11251         * filewatcher.c: don't expect the development fam package to be
11252         installed.
11253
11254 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
11255
11256         * marshal.c: Make a copy of the signature cookie since it will be
11257         freed by the caller.
11258         
11259         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
11260
11261         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
11262
11263         * metadata.c (mono_metadata_free_marshal_spec): New function to free
11264         marshal specs.
11265
11266         * marshal.c: More refactoring.
11267         
11268         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11269         smaller functions.
11270
11271 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11272
11273         * object.c: In mono_message_invoke, fill the output parameter array after
11274           calling the managed method (it was done before the call). This fixes
11275           bug #59299.
11276
11277 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11278
11279         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11280         as well.
11281
11282 2004-09-02  Martin Baulig  <martin@ximian.com>
11283
11284         * class.c (mono_class_instance_size): Don't allow generic type
11285         definitions or open generic instances.
11286         (mono_class_array_element_size): If we're a value type, call
11287         mono_class_instance_size() on the original class.
11288
11289         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11290         handle generic instances.
11291
11292         * mono-debug-debugger.c (write_type): Handle generic instances
11293         like classes.
11294
11295 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11296
11297         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11298         the allocation request fails. Fixes #65089.
11299
11300         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11301         
11302         * object.c (mono_runtime_free_method): New function to free a dynamic
11303         method.
11304
11305         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11306         delegate trampoline.
11307
11308         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11309         with hasthis as dynamic,
11310
11311         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11312
11313         * domain.c (mono_jit_info_table_remove): New function to remove an
11314         entry from the jit info table.
11315
11316         * class-internals.h (MonoMethod): Add 'dynamic' field.
11317
11318         * loader.c: Fix warnings.
11319
11320 2004-09-01  Martin Baulig  <martin@ximian.com>
11321
11322         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11323         instead of mono_debugger_lock() because the latter one is a no-op
11324         unless running in the debugger.
11325
11326 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11327
11328         * class.c (class_compute_field_layout): Classes with auto-layout or
11329         reference fields are not blittable.
11330         
11331 2004-09-01  Dick Porter  <dick@ximian.com>
11332
11333         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11334         mono_image_get_filename() to get the assembly location.
11335
11336         * icall.c:
11337         * metadata.h: Fix compile warnings
11338
11339 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11340
11341         * class.c (class_compute_field_layout): System.Object is blittable.
11342
11343         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11344         as in/out. Fixes #59909.
11345
11346 2004-09-01  Martin Baulig  <martin@ximian.com>
11347
11348         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11349         mono_metadata_generic_inst_is_valuetype() if we're a generic
11350         instance to check whether our underlying type is a reference type.
11351
11352 2004-09-01  Martin Baulig  <martin@ximian.com>
11353
11354         * metadata.c (mono_type_size): If we're a generic instance, call
11355         mono_class_value_size() for value types.
11356
11357 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11358
11359         * marshal.c: Implement more custom marshalling functionality. Fixes
11360         #64915.
11361
11362 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11363
11364         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11365
11366 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11367
11368         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11369
11370         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11371
11372         * icall.c: Fix some warnings.
11373
11374         * threads.c (abort_appdomain_thread): Fix unref errors.
11375         (mono_thread_current): Fix THREAD_DEBUG define.
11376
11377 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11378
11379         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11380
11381         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11382
11383 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11384
11385         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11386         string arrays.
11387
11388 2004-08-28  Martin Baulig  <martin@ximian.com>
11389
11390         * metadata.c
11391         (mono_metadata_generic_inst_is_valuetype): New public function.
11392
11393         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11394         mono_metadata_generic_inst_is_valuetype() if we're a generic
11395         instance to check whether our underlying type is a valuetype.
11396
11397 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11398
11399         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11400         #63768.
11401
11402 2004-08-25  Martin Baulig  <martin@ximian.com>
11403
11404         * loader.c (mono_get_method_from_token): Abstract methods can also
11405         be generic and thus have type parameters.
11406
11407         * metadata-internals.h
11408         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11409
11410         * reflection.c (mono_image_get_generic_param_info): Don't create a
11411         metadata row, just add an entry to the `gen_params' array.
11412         (build_compressed_metadata): Sort the `gen_params' array and then
11413         actually create the metadata.
11414
11415 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11416
11417         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11418
11419 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11420
11421         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11422
11423 2004-08-24  Martin Baulig  <martin@ximian.com>
11424
11425         * class.cs (mono_class_is_subclass_of): Like an interface, a
11426         generic instance also derives from System.Object.
11427
11428 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11429
11430         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11431         custom modifiers to be in any order. Fixes #61990.
11432
11433 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11434
11435         * object.c: Register mono_object_new_fast icall.
11436         
11437         * object.c (mono_class_get_allocation_ftn): Return to calling
11438         mono_object_new_fast, since it seems faster to compute the object 
11439         size in unmanaged code than passing it as a parameter.
11440
11441         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11442
11443         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11444         this function with Boehm as the oom handler, so we don't have to check
11445         the result of GC_malloc.
11446
11447         * object.c: Remove checks for oom.
11448
11449         * object.h object.c (mono_class_get_allocation_ftn): New function to
11450         return the icall which can be used to allocate an instance of a given
11451         class. 
11452
11453         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11454
11455         * class-internals.h: Add 'enabled' field.
11456
11457 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11458
11459         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11460
11461 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11462         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11463         value 0x0010.
11464
11465 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11466
11467         * appdomain.c: use the Tls function for appdomain too,
11468         at Zoltan's request. Actually return in mono_context_get
11469
11470         * appdomain.c, profiler.c, threads.c: use __thread
11471
11472 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11473
11474         * appdomain.c threads.c: Call GC_CreateThread on windows.
11475
11476         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11477         multiple libraries since this don't work on windows.
11478
11479 2004-08-18  Martin Baulig  <martin@ximian.com>
11480
11481         * class-internals.h
11482         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11483         MonoMethodHeader.
11484
11485         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11486         MonoMethodNormal since we also need it for abstract and interface
11487         methods.
11488
11489         * reflection.c
11490         (build_compressed_metadata): Sort the GenericParam table.
11491         (mono_image_create_token): Added `gboolean create_methodspec'
11492         argument; this is false when generating a MethodImpl token.
11493         (reflection_methodbuilder_to_mono_method): Abstract and interface
11494         methods may also have generic parameters.
11495
11496 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11497
11498         * appdomain.c: thread local alloc
11499
11500 2004-08-17  Martin Baulig  <martin@ximian.com>
11501
11502         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11503
11504         * icall.c
11505         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11506         argument.
11507
11508         * class.c (mono_type_get_full_name): New public function.
11509         (mono_type_get_name): Don't include the type arguments.
11510
11511 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11512
11513         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11514         for inclusion into the mono executable.
11515
11516 2004-08-16  Martin Baulig  <martin@ximian.com>
11517
11518         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11519         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11520
11521 2004-08-14  Martin Baulig  <martin@ximian.com>
11522
11523         * class.c (dup_type): Also copy the `byref' field.
11524
11525 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11526
11527         * reflection.c (create_dynamic_mono_image): Revert the last change 
11528         since it breaks bootstrap.
11529
11530 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11531
11532         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11533
11534         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11535         not free them with g_free.
11536
11537 2004-08-11  Martin Baulig  <martin@ximian.com>
11538
11539         * reflection.c (mono_reflection_setup_internal_class): Also call
11540         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11541
11542 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11543
11544         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11545         called during default (first) AppDomain creation. Keep track of
11546         Evidence when loading assemblies.
11547
11548 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11549
11550         * opcodes.c, opcodes.h: reduce runtime relocations.
11551
11552 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11553
11554         * culture-info.h, locales.c: fixes and chages to sue the new
11555         optimized format of the locale data.
11556         * culture-info-tables.h: regenerated.
11557
11558 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11559         
11560         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11561
11562 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11563
11564         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11565         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11566         * domain-internals.h: icall declaration.
11567         * icall.c: icall registration.
11568         * object-internals.h: New fields in MonoAssembly for CAS.
11569
11570 2004-08-05  Duncan Mak  <duncan@ximian.com>
11571
11572         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11573         CEE_LDELEM_ANY.
11574
11575 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11576
11577         * reflection.c: fix to deal with object[] arrays in custom ctors
11578         (bug #62550).
11579
11580 2004-08-05  Martin Baulig  <martin@ximian.com>
11581
11582         * class.c (mono_class_array_element_size): Added support for
11583         generic instances and correctly handle "recursive" types.
11584
11585 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11586
11587         * assembly.c: Fix warnings.
11588
11589 2004-08-04  Martin Baulig  <martin@ximian.com>
11590
11591         * class.c
11592         (mono_type_get_name_recurse): Added `gboolean include_arity'
11593         argument specifying whether or not we should include the generic
11594         arity in the type name.
11595         (_mono_type_get_name): New static function.
11596         (mono_class_setup_vtable): If we're a generic instance, don't
11597         include the generic arity in the names of explicit method
11598         implementations.        
11599
11600 2004-08-03  Martin Baulig  <martin@ximian.com>
11601
11602         * class.c (mono_type_get_name_recurse): Enclose the generic type
11603         arguments in `<', '>'.
11604
11605 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11606
11607         * gc.c: make GC warning messages use the trace API, they are just
11608         noise to most of the users.
11609
11610 2004-08-03  Martin Baulig  <martin@ximian.com>
11611
11612         * debug-mono-symfile.c (read_string): Correctly read the string.
11613
11614 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11615
11616         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11617         
11618         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11619         icalls.
11620         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11621
11622 2004-07-30  Martin Baulig  <martin@ximian.com>
11623
11624         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11625         Reflect latest symbol writer changes.   
11626
11627 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11628
11629         * object.c: always create an object if null is passed
11630         to Invoke() where a valuetype is expected.
11631
11632 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11633
11634         * marshal.c (mono_marshal_init): make managed
11635         signatures match native ones better for 64bits.
11636
11637 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11638
11639         * appdomain.c: hack to build correctly the private bin path on windows.
11640         Fixes bug #61991.
11641
11642 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11643
11644         * assembly.c: Load mscorlib from the correct framework directory
11645           (mono/<version>/mscorlib.dll).
11646         * appdomain.h: Added prototypes for new functions.
11647         * internals.h: Added some prototypes.
11648         * domain.c: When initializing the runtime, get from the executable and
11649           the configuration files the runtime version that the app supports.
11650           Added support methods for reading app.exe.config. Added list of versions
11651           supported by the JIT. Added two new methods: mono_init_from_assembly,
11652           which initializes the runtime and determines the required version from
11653           the provided exe file, and mono_init_version, which initializes
11654           the runtime using the provided version.
11655         * icall.c: Get machine.config from version-specific directory.
11656         * reflection.c: When generating an image, embed the version number
11657           of the current runtime.
11658
11659 2004-07-28  Dick Porter  <dick@ximian.com>
11660
11661         * socket-io.c
11662         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11663         returned sockaddr size before creating the remote address object.
11664         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11665         61608.
11666
11667 2004-07-28  Dick Porter  <dick@ximian.com>
11668
11669         * locales.c (string_invariant_compare_char): Fix invariant char
11670         compares between upper and lower cases.  Fixes bug 61458.
11671
11672 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11673         
11674         * marshal.c: actually cache stelem.ref wrappers.
11675         
11676 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11677
11678         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11679         sections and remove the mono_cli_rva_map () function.
11680
11681 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11682
11683         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11684         by Geoff Norton (<gnorton@customerdna.com>).
11685
11686 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11687
11688         * class.c: fix class loads for pointer types (typeof(int) !=
11689         typeof(int*)).
11690
11691 2004-07-27  Martin Baulig  <martin@ximian.com>
11692
11693         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11694         reading the debugging information from an external ".mdb" file.
11695
11696 2004-07-24  Martin Baulig  <martin@ximian.com>
11697
11698         * reflection.c (mono_image_get_type_info): Only write a class
11699         layout entry if we actually have a size or a packing size.
11700
11701 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11702
11703         * reflection.c (type_get_fully_qualified_name): 
11704         insert cast to get type checking of ?: with non-gcc compilers
11705
11706 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11707
11708         * rand.c: use g_getenv for both lookups of
11709         MONO_EGD_SOCKET
11710
11711 2004-07-17  Martin Baulig  <martin@ximian.com>
11712
11713         * reflection.c (mono_reflection_bind_generic_method_parameters):
11714         Set `gmethod->reflection_info'.
11715
11716 2004-07-17  Martin Baulig  <martin@ximian.com>
11717
11718         * class.c (mono_class_create_from_typedef): Insert the newly
11719         created class into the hash table before computing the interfaces
11720         since we could be called recursively.
11721
11722 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11723
11724         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11725         function to implement stelem.ref in managed code
11726         * class-internals.h, debug-helpers.c: a new wrapper type
11727         for the above.
11728
11729 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11730
11731         * gc.c: allow GC handles to work even when no GC is compiled in.
11732         Fix part of bug #61134 (GetAddrOfPinnedObject).
11733
11734 2004-07-13  Peter Williams  <peter@newton.cx>
11735  
11736         * process.c (complete_path): Make sure we don't attempt to execute
11737         directories.
11738  
11739 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11740
11741         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11742           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11743           and will add/subtract the hour if needed
11744
11745 2004-07-12  Martin Baulig  <martin@ximian.com>
11746
11747         * reflection.c (mono_field_get_object): If we have
11748         `field->generic_info', take the attributes from
11749         `field->generic_info->generic_type'.    
11750
11751 2004-07-12  Martin Baulig  <martin@ximian.com>
11752
11753         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11754         This function must be called before initializing the runtime.
11755         (mono_debug_init_1): New function; call this after initializing
11756         the runtime, but before loading the assembly.  It tells the
11757         debugger to load corlib and the builtin types.
11758
11759         * mono-debug-debugger.c: Did some larger changes in the debugging
11760         code; support recursive class declarations, make sure we actually
11761         add all classes.
11762
11763 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11764
11765         * debug-helpers.c: undo my previous patch and fixed the real issue in
11766         ../mini/exceptions-x86.c
11767
11768 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11769
11770         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11771         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11772         called from other .cctors.
11773
11774 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11775
11776         * loader.c: Removed the mono_loader_wine_init hack now that we are
11777         doing a managed version of Windows.Forms.
11778
11779 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11780
11781         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11782         threadpool.c, threads.c: remove static data from rootset.
11783
11784 2004-07-09  Dick Porter  <dick@ximian.com>
11785
11786         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11787         Don't do any more processing if the matched length was 0.  It was
11788         increasing the size of the string before.  Fixes bug 61167.
11789
11790 2004-07-09  Dick Porter  <dick@ximian.com>
11791
11792         * socket-io.h:
11793         * socket-io.c
11794         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11795         Add support for SO_PEERCRED if its available.
11796
11797 2004-07-09  Peter Bartok <pbartok@novell.com>
11798         * loader.c: winelib.exe.so error message is now only displayed if
11799         MONO_DEBUG is set. To help us avoid questions when people are trying
11800         out the new Managed.Windows.Forms.
11801
11802 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11803
11804         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11805         for isinst and castclass wrappers.
11806
11807         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11808         to libmetadata from the JIT, so they could be used by the marshalling
11809         code and the interpreter.
11810
11811         * marshal.c: Register marshalling related JIT icalls here instead of
11812         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11813         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11814
11815         * metadata.h: Remove unneeded marshalling conversions.
11816
11817         * opcodes.c: Update for new opcodes.
11818         
11819 2004-07-08  Martin Baulig  <martin@ximian.com>
11820
11821         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11822         (mono_debug_get_domain_data): Make this function static.
11823
11824 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11825
11826         * gc.c, object.h: add nice GC handle API for embedders.
11827
11828 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11829
11830         * reflection.c: more changes for the new api
11831
11832         * object.c: When we reflect on a field w/ a constant value, it
11833         will not have a memory location, so we must access metadata. Also,
11834         allow easier reading of strings so that we can read them from
11835         the constant data.
11836
11837         * class.c (mono_class_layout_fields): no need for literal fields here.
11838
11839         * class-internals.h: api changes for const fields
11840
11841         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11842
11843 2004-07-06  Martin Baulig  <martin@ximian.com>
11844
11845         * mono-debug.h: Increment version number to 44.
11846
11847         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11848         now a gpointer, rewrote this whole method.
11849
11850         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11851         function.  Add information about the wrapper in a new "misc table".
11852
11853         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11854         for the new misc table.
11855
11856 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11857
11858         * metadata-internals.h image.c: Add a cache for helper signatures.
11859
11860         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11861
11862 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11863
11864         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11865         delegates from a delegate. Fixes #61033.
11866         
11867         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11868         marshalling of stringbuilder arrays. Fixes #59900.
11869
11870 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11871
11872         * icall.c: Add EnumBuilder:setup_enum_type icall.
11873
11874 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11875
11876         * icall.c: Added a new icall for the property version of
11877         OffsetOfStringData.
11878
11879 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11880
11881         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11882         it has a constant size across platforms.
11883
11884         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11885         stack trace.
11886
11887 2004-06-29  Martin Baulig  <martin@ximian.com>
11888
11889         * mono-debug.c (mono_debug_add_method): Protect the whole function
11890         in mono_debugger_lock(), not just parts of it.
11891
11892 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11893
11894         * reflection.c: make sure padding bytes in heaps are zeroed.
11895
11896 2004-06-24  David Waite  <mass@akuma.org>
11897
11898         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11899         image.c, loader.c, locales.c, marshal.c, metadata.c,
11900         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11901         string-icalls.c, threads.c: change to C90-style comments from C99 /
11902         C++ -style
11903
11904 2004-06-24  Dick Porter  <dick@ximian.com>
11905
11906         * threads.c
11907         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11908         return createdNew.  Fixes bug 60412.
11909
11910         * threads-types.h: 
11911         * icall.c: Add createdNew parameter to CreateMutex icall
11912
11913 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11914
11915         * reflection.c, object-internals.h: save default value in params.
11916
11917 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11918
11919         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11920         no need to build a new path combining that with the application base.
11921         Fixes bug #60442.
11922
11923 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11924
11925         * reflection.c: fixed minor standard compliance issues.
11926
11927 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11928
11929         * reflection.c: fixed issue with encoding some custom attributes
11930         (arrays in properties and fields, bug #60411).
11931
11932 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11933
11934         * reflection.c: fix start address when copying the public key token.
11935
11936 2004-06-23  Martin Baulig  <martin@ximian.com>
11937
11938         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11939         the `exc' object in a static object to put it into the GC's root set.
11940
11941 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11942
11943         * reflection.c: make mono_reflection_setup_internal_class ()
11944         callable a second time to setup a new parent class.
11945
11946 2004-06-23  Dick Porter  <dick@ximian.com>
11947
11948         * threads.c: Check for WAIT_IO_COMPLETION return values.
11949
11950 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11951
11952         * appdomain.c: Removed the g_free on the public key token. Now copy 
11953         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11954         * assembly.c: Added public key token string value when loading 
11955         assemblies. Fix bug #60439.
11956         * icall.c: Added missing informations (like public key) in 
11957         GetReferencedAssemblies. Fix #60519.
11958         * image.h: Changed definition for public key token from const char*
11959         public_tok_value to guchar public_key_token [17];
11960         * reflection.c: Updated for changes to public key token.
11961
11962 2004-06-22  Lluis Sanchez Gual
11963
11964         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11965         for the field in base classes.
11966
11967 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11968
11969         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11970         mark headers as not supported, they are installed only for use by the
11971         debugger.
11972
11973 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11974
11975         * *.c, *.h: avoid namespace pollution in public headers.
11976
11977 2004-06-21  Martin Baulig  <martin@ximian.com>
11978
11979         * exception.c (mono_get_exception_security): It's in
11980         "System.Security", not in "System".
11981
11982         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11983         the exception classes.
11984
11985 2004-06-21  Martin Baulig  <martin@ximian.com>
11986
11987         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11988         Protect the exception object from being finalized.
11989
11990 2004-06-21  Martin Baulig  <martin@ximian.com>
11991
11992         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11993         public function.
11994
11995 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11996
11997         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11998         if it was not loaded before. Fix parts of #60439.
11999
12000 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
12001
12002         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
12003         code that was broken since Ben's change: wrappers are now
12004         dependent on the method signature only again.
12005
12006 2004-06-21  Martin Baulig  <martin@ximian.com>
12007
12008         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
12009         added interface support.
12010
12011 2004-06-21  Martin Baulig  <martin@ximian.com>
12012
12013         * class.c (mono_vtable_get_static_field_data): New public method.
12014
12015 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
12016
12017         * filewatcher.c : Windows build fix to be compliant with API changes.
12018
12019 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12020
12021         * class.h, class.c: more accessors.
12022         * metadata.h, metadata.c: prepare for hiding MonoType and
12023         MonoMethodSignature: people should use the accessors from now on
12024         outside of the tree.
12025
12026 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
12027
12028         * *.c, *.h: more API cleanups.
12029
12030 2004-06-18  Jackson Harper  <jackson@ximian.com>
12031
12032         * assembly.c: Trace loading assemblies.
12033         * loader.c: Trace loading native libraries.
12034         * mono-config.c: Trace loading config files.
12035         
12036 2004-06-18  Dick Porter  <dick@ximian.com>
12037
12038         * locales.c: Tell ICU the lengths of strings, it can cope with
12039         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
12040
12041 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
12042
12043         * image.c: swapped name/filename;
12044
12045 2004-06-18  Martin Baulig  <martin@ximian.com>
12046
12047         * mono-debug-debugger.c (write_class): Write the parent class at
12048         the end of the header.
12049
12050 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
12051
12052         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
12053
12054 2004-06-17  Raja R Harinath  <rharinath@novell.com>
12055
12056         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
12057         (bundle_obj): New conditional define.
12058         (BUILT_SOURCES): Remove.
12059         ($(bundle_srcs)): Make parallel-make safe.
12060         (libmonoruntime_la_LIBADD): Make unconditional.
12061         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
12062         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
12063
12064 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
12065
12066         * culture-info-tables.h: It was inconsistent with the latest
12067           supp info files.
12068
12069 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
12070
12071         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
12072         be loaded.
12073
12074         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
12075         with gcc 2.95.
12076
12077 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
12078
12079         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
12080         cleaned up public header threads.h.
12081
12082 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
12083
12084         * Makefile.am, *.c, *.h: more API cleanups.
12085
12086 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
12087
12088         * Makefile.am: removed monosn from compilation.
12089         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
12090         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
12091         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
12092         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
12093         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
12094         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
12095
12096 2004-06-15  Jackson Harper  <jackson@ximian.com>
12097
12098         * assembly.c: Make locales lower case when searching the GAC for
12099         assemblies. gacutil will always make locales lowercase when
12100         installing so this effectively makes them case insensitive.
12101         
12102 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
12103
12104         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
12105         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
12106           parameter which allows to choose whether the wait can be interrupted or 
12107           not. Also added the method mono_monitor_enter(), which locks the monitor
12108           using an infinite wait and without allowing interruption.
12109           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
12110           interrupted.
12111         * object.h: Added new fields in MonoThread. suspend_event holds the event
12112           used to susped/resume the thread. synch_lock is the lock object to use for
12113           modifying the thread state.
12114         * threads.c: Use the new synch_lock object for locking, instead of "this",
12115           which can generate deadlocks.
12116           Moved thread state change in Thread.Sleep and Thread.Join from managed
12117           to unmanaged code. This avoids a deadlock when the thread was suspended
12118           just after acquiring the thread lock.
12119           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
12120           Implemented Thread.Suspend using an event instead of ThreadSuspend,
12121           which is not fully implemented in the io-layer.
12122         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
12123
12124 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
12125
12126         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
12127         threads-types.h: more API cleanups.
12128
12129 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
12130
12131         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
12132         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
12133         threadpool.c, threads.c: first pass at the exported API cleanup.
12134
12135 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
12136
12137         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
12138
12139 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12140
12141         * icall.c: added internalGetHome.
12142
12143 2004-06-14  Dick Porter  <dick@ximian.com>
12144
12145         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
12146         possible to return successfully when '.' or '..' were the only
12147         entries in a directory, but were skipped.  The MonoIOStat was not
12148         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
12149         Fixes bug 59574.
12150
12151 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
12152
12153         * reflection.c: make binaries run on .Net 1.1 by default.
12154
12155 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12156
12157         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
12158
12159 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
12160
12161         * marshal.c: keep track of struct size with explicit layout
12162         (bug #59979).
12163
12164 2004-06-12  Martin Baulig  <martin@ximian.com>
12165
12166         * mono-debug-debugger.c: Comment out a debugging g_message().
12167
12168 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12169
12170         * reflection.c, reflection.h: do not free custom attrs that are cached.
12171         * icall.c: use braces to make code clearer.
12172
12173 2004-06-11  Martin Baulig  <martin@ximian.com>
12174
12175         * class.h (MonoInflatedField): New type.
12176         (MonoClassField): Replaced `MonoType *generic_type' with
12177         `MonoInflatedField *generic_info'.
12178
12179         * icall.c
12180         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
12181
12182 2004-06-11  Martin Baulig  <martin@ximian.com>
12183
12184         * reflection.c (mono_image_create_method_token): Correctly encode
12185         varargs methods.
12186
12187 2004-06-11  Martin Baulig  <martin@ximian.com>
12188
12189         * metadata.c (mono_metadata_parse_method_signature): When parsing
12190         a MethodDef which has VarArgs, also set sentinelpos if we don't
12191         have any parameters.
12192
12193 2004-06-11  Martin Baulig  <martin@ximian.com>
12194
12195         * verify.c (mono_method_verify): In CEE_CALL, use
12196         mono_method_get_signature() to get the method's signature, unless
12197         we're a PInvoke method.
12198
12199 2004-06-10  Jackson Harper  <jackson@ximian.com>
12200
12201         * assembly.c: Use <path>/lib/mono/gac for the extra paths
12202         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
12203         logical name as the supplied path is just a prefix to the gac not
12204         the direct path to it.
12205         
12206 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
12207
12208         * reflection.c: make the token for a created method match
12209         the token of the MethodBuilder it was created from
12210         (IKVM requires this behaviour now).
12211
12212 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
12213
12214         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
12215         reflection.c, socket-io.c: leak fixes.
12216
12217 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
12218
12219         * icall.c: handle sentinel pos in vararg methods in position different
12220         from 0.
12221
12222 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12223
12224         * culture-info-tables.h: freshly generated.
12225
12226 2004-06-09  Martin Baulig  <martin@ximian.com>
12227
12228         * loader.c (mono_get_method_constrained): Call `mono_class_init
12229         (constrained_class)'.   
12230
12231 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
12232
12233         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
12234         any methods. Fixes #59629.
12235
12236 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12237
12238         * culture-info-tables.h: reflecting locale-builder updates.
12239
12240 2004-06-08  Dick Porter  <dick@ximian.com>
12241
12242         * object.h:
12243         * locales.c: Fixed compile warnings, including a real bug in
12244         CompareInfo_internal_compare.
12245         
12246 2004-06-08  Dick Porter  <dick@ximian.com>
12247
12248         * locales.c
12249         (ves_icall_System_Globalization_CompareInfo_internal_index):
12250         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12251         Double-check the resuls of usearches, because ICU currently
12252         ignores most of the collator settings here.  Fixes bug 59720.
12253         
12254 2004-06-08  Dick Porter  <dick@ximian.com>
12255
12256         * locales.c
12257         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12258         Fix memory leak and segfault-causing typo.  No idea how this one
12259         lasted so long without being noticed.
12260
12261 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
12262
12263         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
12264         any methods. Fixes #59629.
12265
12266 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12267
12268         * assembly.c:
12269         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12270         own the critical section before). Removed dead code (that's done
12271         in the preload hook).
12272
12273         (mono_assembly_load_with_partial_name): call the preload hook.
12274
12275 2004-06-08  Martin Baulig  <martin@ximian.com>
12276
12277         * metadata.c (mono_metadata_signature_alloc): Default
12278         `sentinelpos' to -1.
12279
12280         * reflection.c (mono_image_get_array_token): Likewise.
12281
12282 2004-06-08  Martin Baulig  <martin@ximian.com>
12283
12284         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12285
12286         * metadata.c (mono_metadata_parse_method_signature): When parsing
12287         a MethodDef which has VarArgs, set sentinelpos.
12288
12289         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12290         `gint16' since we're using -1 for non-varargs methods.
12291
12292         * reflection.c
12293         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12294         (method_encode_signature): Added varargs support.
12295         (method_builder_encode_signature): Likewise.
12296         (mono_image_get_varargs_method_token): New static method.
12297         (mono_image_create_method_token): New public method; this is
12298         called via an icall instead of mono_image_create_token() when
12299         calling a varargs method.       
12300
12301 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12302
12303         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12304
12305 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12306
12307         * culture-info-tables.h : Reflecting the latest locale-builder that
12308           fixed empty array representation ({} to {0}).
12309
12310 2004-06-07  Jackson Harper  <jackson@ximian.com>
12311
12312         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12313         looking up extra gac paths. This allows MONO_GAC_PATH to act
12314         exactly like a prefix.
12315         
12316 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12317
12318         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12319         type name before modifying it. Fixes #59405.
12320
12321 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12322
12323         * culture-info.h: added fields for "all datetime patterns".
12324         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12325           _construct_datetime_format ()): fill xxx_patterns fields.
12326         * object.h: added fields for "all datetime patterns" to
12327           MonoDateTimeFormatInfo.
12328         * culture-info-tables.h: reflecting locale-builder updates.
12329
12330 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12331
12332         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12333         the event has no add and remove methods. Fixes #59629.
12334
12335 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12336
12337         * object.c: Fixed possible integer overflow when allocating large
12338         strings.
12339
12340 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12341
12342         * culture-info-tables.h: reflecting locale-builder updates.
12343
12344 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12345
12346         * culture-info-tables.h: reflecting locale-builder updates.
12347
12348 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12349
12350         * culture-info-tables.h: reflecting locale-builder updates.
12351
12352 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12353
12354         * threads.c: Made Thread.Sleep abortable.
12355
12356 2004-06-02  Martin Baulig  <martin@ximian.com>
12357
12358         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12359
12360         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12361
12362 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12363
12364         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12365
12366 2004-05-30  Jackson Harper  <jackson@ximian.com>
12367
12368         * reflection.c: Do not hardcode assembly versions or public key
12369         tokens anymore. All of this except the corlib section was dead
12370         code anyways.
12371         
12372 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12373
12374         * object.c (mono_runtime_invoke_array): Automatically create boxed
12375         objects for byref valuetypes if needed. Fixes #59300.
12376         
12377         * object.c (mono_method_return_message_restore): Handle 
12378         MONO_TYPE_OBJECT as well.
12379
12380 2004-05-28  Jackson Harper  <jackson@ximian.com>
12381
12382         * reflection.c: The modified type encoding was causing build
12383         problems. Reverted for now.
12384         
12385 2004-05-28  Jackson Harper  <jackson@ximian.com>
12386
12387         * reflection.c/h: Take an assembly ref so that we dont create
12388         fully qualified names when encoding types in the same assembly as
12389         the custom attribute being emitted.
12390         * appdomain.c: Increment version number.
12391         
12392 2004-05-26  Duncan Mak  <duncan@ximian.com>
12393
12394         * icall.c
12395         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12396         Set the full version number (major, minor, build, revision).
12397
12398 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12399
12400         * marshal.c (emit_struct_conv): increment src/dst after blit
12401         (mono_marshal_get_managed_wrapper,
12402         mono_marshal_get_native_wrapper): make sure we have marshalling
12403         info before marshalling params (info computation affects
12404         blittable)
12405
12406         * class.c (class_compute_field_layout): correctly deal with
12407         blittable
12408         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12409         value types (as per what windows dows by default)
12410         (mono_class_setup_mono_type): System.ValueType is blittable
12411         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12412         blittable
12413
12414         * marshal.c (mono_marshal_load_type_info): flag types  as
12415         non-blittable if the native layout doesn't match the managed
12416         layout
12417
12418 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12419
12420         * appdomain.c: don't add stuff in the private search path that is
12421         above the application base. If application base is not set, there's
12422         no private search path.
12423
12424 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12425
12426         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12427         byref struct arguments in native->managed marshalling.
12428
12429 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12430
12431         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12432         cache methods using signature (special case for methods
12433         that are value type or string class)
12434         
12435         * image.c (mono_image_close): clean up allocated GSList's
12436         in runtime_invoke_cache.
12437
12438 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12439
12440         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12441         there's no MONO_CFG_DIR environment variable defined.
12442
12443 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12444
12445         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12446
12447 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12448
12449         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12450           is interrumped.
12451         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12452           before waiting for it, and call CloseHandle after the wait to unref it.
12453           This will make sure that handles are not disposed too early.
12454
12455 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12456
12457         * appdomain.c:
12458         * appdomain.h:
12459         * icall.c: removed
12460         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12461         needed now.
12462
12463         * object.c: se the application_base only for the domain that runs
12464         Main. Fixes bug #59216,
12465
12466 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12467
12468         * appdomain.c:
12469         * object.c: only the domain in which Main is run have
12470         SetupInformation.ConfigurationFile set, so moved a few lines from
12471         appdomain.c to object.c.
12472
12473 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12474
12475         * appdomain.c: we tried to load [name].(dll|exe), but according
12476         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12477         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12478         There's a test case attached to bug #58922.
12479
12480 2004-05-27  Dick Porter  <dick@ximian.com>
12481
12482         * icall.c:
12483         * file-io.c: Implemented icalls for locking and unlocking regions
12484         in a file.
12485         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12486         FALSE on error (fixes both compiler warning and real bug.)
12487
12488 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12489
12490         * culture-info-tables.h: reflecting locale-builder updates.
12491
12492           (Added missing ChangeLog entry for 05/26)
12493
12494 2004-05-27  Jackson Harper  <jackson@ximian.com>
12495
12496         * locales.c: Fix some cut and paste errors.
12497         
12498 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12499
12500         * mono-config.c: set the correct path for config. directory on windows.
12501
12502 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12503
12504         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12505           on win32.
12506
12507 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12508
12509         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12510         from pinvoke functions.
12511         
12512         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12513
12514 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12515
12516         * culture-info-tables.h: reflecting locale-builder updates.
12517
12518 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12519
12520         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12521         #59086.
12522
12523 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12524
12525         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12526         * icall.c: Modified icalls for RNG.
12527         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12528         Windows (CryptoAPI).
12529
12530 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12531
12532         * locales.c: Fix build.
12533
12534 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12535
12536         * culture-info-tables.h: reflecting locale-builder updates.
12537
12538 2004-05-25  Jackson Harper  <jackson@ximian.com>
12539
12540         * locales.c: When creating the current culture use the $LANGs
12541         specific culture. So DateTimeFormat and NumberFormat entries are created.
12542         
12543 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12544
12545         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12546         a char array as parameter.
12547
12548 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12549
12550         * image.c: In mono_image_open(), always use an absolute path name to
12551           look for already loaded images.
12552
12553 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12554
12555         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12556         missing in the windows build (like older cygwin include files).
12557
12558 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12559
12560         * icall.c: Fixed check for possible integer overflow in Buffer_
12561         BlockCopy icall. Replaced comments style // by /* */.
12562
12563 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12564
12565         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12566         
12567         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12568         check after MONO_VTADDR. Fixes pinvoke2.exe.
12569
12570         * marshal.h marshal.c metadata.h: Add beginnings of support for
12571         ftnptr -> delegate marshalling.
12572
12573 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12574
12575         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12576         * threads.c: Fix warnings.
12577
12578 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12579
12580         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12581         * icall.c: Registered icalls for Suspend and Resume.
12582         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12583           Thread.Abort.
12584         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12585         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12586         * process.c: Use WaitForSingleObjectEx.
12587         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12588           checkpoints.
12589         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12590           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12591           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12592           background threads. Added basic support for Abort in Windows.
12593           Start new threads using a managed delegate invoke wrapper. This wrapper
12594           has an interruption checkpoint that is needed since an interruption
12595           can be requested before the thread leaves the unmanaged code that starts 
12596           the thread.
12597         * marshal.c: Added interruption checkpoint after every native call, and
12598           also before managed calls for wrappers called from unmanaged code to
12599           go into managed code.
12600         * object.h: Added new field in MonoThread to keep track of interruption
12601           requests.
12602
12603 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12604
12605         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12606         calls.
12607
12608 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12609
12610         * appdomain.c:
12611         * assembly.c:
12612         * gc.c:
12613         * locales.c:
12614         * mono-config.c:
12615         * rand.c: getenv -> g_getenv (windows!)
12616
12617         * process.c: complete_path is also used on non-windows platforms.
12618
12619 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12620
12621         * icall.c: new signature for Process_Start.
12622
12623         * process.[ch]: new signature for Process_Start. If we're on windows
12624         and UseShellExecute is false, we have to search for the program by
12625         ourselves if we don't get a full path.
12626
12627 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12628
12629         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12630         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12631
12632 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12633
12634         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12635         Fixes bug #58373.
12636
12637 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12638
12639         * process.c: use double quotes to quote program name and arguments on
12640         windows. Fixes bug #58575.
12641
12642 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12643
12644         * file-io.c: don't return "." and ".." when using windows Find*File.
12645
12646 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12647
12648         * marshal.c: Don't pass wrappers to message init because method 
12649         addressed used to lookup metadata. part of remoting[2|3] fix.
12650
12651 2004-05-15  Jackson Harper  <jackson@ximian.com>
12652
12653         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12654         path is essentially the same as MONO_PATH except that it points to
12655         GACs instead of lib directories.
12656         * loader.h: The user gac is gone so we dont need function to
12657         enable/disable it.
12658         * mono-config.c: user gac option is now gone.
12659         
12660 2004-05-15  Jackson Harper  <jackson@ximian.com>
12661
12662         * culture-info.h: Make defines more consistent, add calendar data
12663         to the culture info table.
12664         * culture-info-tables.h: Add basic calendar data. Basically
12665         everyone gets default gregorian until all the data is
12666         updated.
12667         * locales.c: Use the new consistent defines. Set calendar data for
12668         culture info objects.
12669         * object.h: add a field for calendar data to CultureInfo
12670         
12671 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12672
12673         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12674         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12675         a signature.
12676         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12677         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12678         an extra param that is the pointer of the method to invoke. The IL for
12679         the invoke method is no longer specific to the method, but to the
12680         signature of the method. Thus, we can share the same code for multiple
12681         methods. This reduces the number of methods that have to be compiled.
12682
12683 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12684
12685         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12686
12687         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12688
12689         * icall.c: Optimize Buffer.BlockCopy.
12690
12691 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12692
12693         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12694         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12695         quote). Changed them to "MMMM yyyy".
12696
12697 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12698
12699         * rand.c
12700         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12701
12702 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12703
12704         * reflection.h: Updated after changes to managed structures.
12705
12706         * appdomain.c: Bump corlib version.
12707
12708 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12709
12710         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12711         windows.
12712
12713 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12714
12715         * Makefile.am: link to ../os/libmonoos.la on windows.
12716
12717         * assembly.c:
12718                 -If MONO_DEBUG, warn about non-existing directories in
12719                 MONO_PATH.
12720                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12721                 compile time variable.
12722                 -Removed init_default_path and call mono_set_rootdir from
12723                 libmonoos.a instead (windows only).
12724
12725         * assembly.h: declare mono_assembly_getrootdir().
12726
12727         * domain.c:
12728         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12729
12730         * loader.c: s/getenv/g_getenv/
12731
12732 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12733
12734         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12735
12736         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12737
12738         * metadata.h: Add new marshalling conversions.
12739
12740         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12741         function.
12742
12743         * reflection.c (mono_reflection_get_type): Lookup the type in all
12744         modules of a multi-module assembly. Fixes #58291.
12745
12746 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12747
12748         * threads.c: Before aborting a background, set the StopRequested
12749         state.  This avoids throwing the Abort exception.
12750         In mono_thread_manage, don't continue with the shutdown until all
12751         aborted threads have actually stopped.
12752
12753 2004-05-10  Jackson Harper  <jackson@ximian.com>
12754
12755         * locales.c: Remove the modifier from culture names.
12756         
12757 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12758
12759         * Makefile.am: monosn is not installed any more. It has been deprecated
12760         in favor of sn.
12761
12762 2004-05-07  Jackson Harper  <jackson@ximian.com>
12763
12764         * locales.c
12765         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12766         Fix array construction, add bailout if the length is 0.
12767
12768 2004-05-07  Dick Porter  <dick@ximian.com>
12769
12770         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12771         machine doesn't have a DNS entry.  Patch by Urs Muff
12772         (umuff@quark.com), fixes bug 57928.
12773
12774 2004-05-06  Jackson Harper  <jackson@ximian.com>
12775
12776         * reflection.c: Handle null PublicTokens properly. alloc mem for
12777         assembly names culture so we dont crash when freeing it.
12778         
12779 2004-05-06  Jackson Harper  <jackson@ximian.com>
12780
12781         * assembly.c: Check the usergac when loading with partial names.
12782         
12783 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12784
12785         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12786         does nothing for now (not required for Linux/Windows) but the class
12787         library can call it (and a newer or modified runtime could need it).
12788         * icall.c: Registred icall.
12789
12790 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12791
12792         * loader.c: prints a message on module loading error we set MONO_DEBUG
12793         environment variable.
12794
12795 2004-05-05  Jackson Harper  <jackson@ximian.com>
12796
12797         * appdomain.c: Handle PublicKeyToken=null properly.
12798         
12799 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12800
12801         * environment.c|h: Added icall ves_icall_System_Environment_
12802         GetOSVersionString to get the current OS version as a string.
12803         * icall.c: Registred icall.
12804
12805 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12806
12807         * object.c: in mono_object_get_virtual_method(), take into account that
12808         non-virtual methods don't have a slot in the vtable. Check needed when
12809         the object is a proxy.
12810
12811 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12812
12813         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12814         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12815
12816         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12817
12818         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12819         passed when a valuetype is expected.
12820
12821         * object.c (mono_unhandled_exception): Only set the exit code if the
12822         exception happens in the main thread. Fixes thread5.exe.
12823
12824         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12825         invalid names. Fixes #58047.
12826
12827 2004-05-03  Jackson Harper  <jackson@ximian.com>
12828
12829         * assembly.c: This line was committed accidently and is unneeded.
12830         
12831 2004-05-03  Jackson Harper  <jackson@ximian.com>
12832
12833         * icall.c: Add new icall for Assembly::LoadWithPartialName
12834         * assembly.c/.h: new function that probes the GAC to load partial
12835         assembly names by Paolo Molaro.
12836         
12837 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12838
12839         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12840         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12841         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12842         full type name.
12843
12844 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12845
12846         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12847         * reflection.c: fix bug when parsing a full type name and Version is not
12848         the last thing in the string.
12849
12850 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12851
12852         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12853         crashes when it is freed.
12854
12855 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12856
12857         * assembly.c: print the compat warning to stderr.
12858
12859 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12860
12861         * assembly.c (mono_assembly_load_references): Add a compatibility
12862         hack to run old applications that might be still referencing the
12863         3300-based assemblies, only do this for System.xxx.
12864
12865 2004-05-01  Jackson Harper  <jackson@ximian.com>
12866
12867         * appdomain.c: If the culture is neutral we set it to "".
12868         
12869 2004-04-29  Jackson Harper  <jackson@ximian.com>
12870
12871         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12872
12873 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12874  
12875         * string-icalls.c: added low overhead function for copying chars
12876         * icall.c: added needed icall for the above function
12877  
12878 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12879
12880         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12881         Environment.GetLogicalDrives.
12882
12883 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12884
12885         * rand.c: try and talk to egd or prngd
12886         for random bytes if opening devices fail.
12887
12888 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12889
12890         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12891         alignment for the type using the native alignment of its members 
12892         instead of using klass->min_align.
12893
12894         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12895
12896 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12897
12898         * file-io.c:
12899         * socket-io.c: added check for sys/aio.h.
12900
12901 2004-04-28  Dick Porter  <dick@ximian.com>
12902
12903         * threads.c: Don't abort a thread thats already aborting, when
12904         terminating everything.
12905
12906 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12907
12908         * icall.c: added 2 new async calls for Socket.
12909
12910         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12911         IO on *nix systems.
12912
12913         * threadpool.c: removed unused variable.
12914
12915 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12916
12917         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12918
12919 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12920
12921         * locales.c: put back string_invariant_tolower () and
12922         string_invariant_toupper ().
12923
12924 2004-04-26 David Waite <mass@akuma.org>
12925
12926         * file-io.h:
12927         * socket-io.h:
12928         * threads.h:
12929         * unicode.h: remove comma from end of enumeration declarations
12930
12931 2004-04-26 David Waite <mass@akuma.org>
12932
12933         * debug-mono-symfile.h:
12934         * decimal.c:
12935         * mono_debug.h:
12936         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12937
12938
12939 2004-04-26  Jackson Harper  <jackson@ximian.com>
12940
12941         * appdomain.c: Increment version number.
12942         
12943 2004-04-26  Jackson Harper  <jackson@ximian.com>
12944
12945         * appdomain.c: Set assembly references public token value when
12946         PublicKeyToken is specified, not the hash_value. Free public token
12947         values when free assembly name data. Previously the public key
12948         token was hex decoded, however we are using hex encoded public key
12949         tokens, so this is not neccasary.
12950         * assembly.c: Lookup assemblies in the gac if their public token
12951         value is set. Add function to allow enabling user gac
12952         lookups. Specify whether or not the assembly was loaded from the
12953         GAC. Compare full assembly names when checking the cache for
12954         assemblies (Temporarily disabled see comment in code). Remove
12955         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12956         specifies trace-loader they get extra info to stdout on the
12957         loading of assemblies.
12958         * image.h: Add a field for an assembly references public token
12959         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12960         whether an assembly has been loaded from the GAC.
12961         * image.c: Remove a corlib -> mscorlib name mapping.
12962         * loader.h: Add function to enable/disable the user gac.
12963         * mono-config.c: Check if the usergac is enabled in the config
12964         file.
12965         * icall.c: New icall to determine whether or not an assembly has
12966         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12967         * tabldefs.h: Add constant for assemblyref flag that specifies a
12968         full public key is used instead of a public token.
12969         * reflection.c: Remove mscorlib -> corlib mappings. Set
12970         PublicTokenValue instead of hash value. This value is a hex
12971         string so it does not need to be expanded.
12972
12973 2004-04-26  Martin Baulig  <martin@ximian.com>
12974
12975         * mono-debug-debugger.c (mono_debugger_initialize): Set
12976         `mono_debugger_initialized' before calling mono_debug_lock().
12977
12978 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12979
12980         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12981           InternalToUpper/InternalToLower.
12982         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12983           removed invariant culture shortcut.  This is now done in managed code.
12984         * locales.c: (string_invariant_toupper/tolower) removed.
12985
12986 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12987
12988         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12989         Added Poll internal call.
12990
12991         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12992         call for Poll. Select was too heavy for polling a single socket.
12993
12994         * threadpool.[ch]: added mono_threadpool_cleanup.
12995         * threads.c: use it. Don't use Thread_Abort on windows.
12996
12997 2004-04-23  Martin Baulig  <martin@ximian.com>
12998
12999         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
13000
13001 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
13002
13003         * icall.c: Registred new icalls for key pair protection and added an
13004         icall for Environment.GetFolderPath on Windows.
13005         * security.c|h: Added new icalls for key pair protection.
13006
13007 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13008
13009         * socket-io.c: don't display the non-supported family warning for known
13010         families. Now this is not displayed on windows when checking support
13011         for IPv4/IPv6.
13012
13013 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13014
13015         * class.c: don't display the layout warning for static fields.
13016
13017 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
13018
13019         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
13020         * locales.c, locales.h: Added new icalls for culture-specific
13021         Char.ToLower and Char.ToUpper.
13022
13023 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13024
13025         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
13026         by David Waite.
13027
13028 2004-04-20  Martin Baulig  <martin@ximian.com>
13029
13030         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
13031         of the type name before passing it to mono_reflection_type_from_name().
13032
13033 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
13034
13035         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
13036         encodings here. Fixes #56965.
13037
13038 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
13039
13040         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13041         fix test on strstr result not that I can see anything that
13042         relies on the result.
13043
13044 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
13045
13046         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
13047         Fixes #57081.
13048
13049         * marshal.c (mono_marshal_get_string_encoding): New helper function.
13050
13051         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
13052         function to determine which marshalling to use for strings. Fixes
13053         #56965.
13054
13055         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
13056
13057         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
13058
13059 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
13060
13061         * icall.c: #include mono-config.h
13062
13063 2004-04-15  Jackson Harper  <jackson@ximian.com>
13064
13065         * culture-info-tables.h: Fix date formats for en-US culture.
13066         
13067 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
13068
13069         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
13070         ThreadPool.SetMinThreads.
13071         * threadpool.c: Implemented ThreadPool.GetMinThreads and
13072         ThreadPool.SetMinThreads.
13073
13074 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
13075
13076         * mono-config.c: also load the .config file in the directory
13077         where the assembly was found.
13078
13079 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
13080
13081         * assembly.c: load per-assembly config files.
13082         * icall.c: decrapified code to get the config dir and moved to
13083         mono-config.c.
13084         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
13085         per-assembly config files. When doing a dll map lookup give precedence
13086         to the per-assembly data.
13087
13088 2004-04-14  Martin Baulig  <martin@ximian.com>
13089
13090         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
13091         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
13092         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
13093
13094         * mono-debugger-debugger.c: While the debugger is locked, remember
13095         whether the symbol tables have changes and send one single
13096         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
13097
13098 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
13099
13100         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
13101
13102         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
13103         function.
13104
13105         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
13106         account when marshalling string arrays. Fixes #56965.
13107
13108 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
13109
13110         * icall.c: Add new icalls mapping for security.
13111         * security.c|h: Add internal calls for WindowsIdentity,
13112         WindowsImpersonationContext and WindowsPrincipal.
13113
13114 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
13115
13116         * class.c: Added comment to ensure the System.MonoDummy class
13117         is removed when no longer necessary
13118
13119 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
13120
13121         * appdomain.c: Pass arguments to the bootstraping exceptions to
13122         minimize JITed methods at boot
13123
13124         * metadata.c (mono_exception_from_name_two_strings): Allow for the
13125         second string to be null.
13126
13127         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
13128         Change the protocol to minimize the JIT methods at startup.  Now
13129         it Returns the internal codepage, if the value of "int_code_page"
13130         is 1 at entry, and we can not compute a suitable code page
13131         number, returns the code page as a string.
13132
13133 2004-04-13  Jackson Harper  <jackson@ximian.com>
13134
13135         * culture-info-tables.h: Fix number of decimal digits for all
13136         english locales.
13137
13138 2004-04-13  Jackson Harper  <jackson@ximian.com>
13139
13140         * icall.c: Clairfy out of sync error message. It is not always
13141         your corlib that is out of sync.
13142
13143 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
13144
13145         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
13146         properties when only the set accessor is overriden. Fixes #55874.
13147
13148 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
13149
13150         * assembly.c (mono_assembly_load_references): Make this thread safe.
13151         Fixes #56327.
13152
13153 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
13154
13155         * monosn.c: Add missing initialization calls.
13156
13157 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
13158
13159         * locales.c:
13160         ves_icall_System_Globalization_CultureInfo_construct_number_format
13161         Fix g_assert so it compiles on fussier compilers re int/ptr
13162         mismatch
13163
13164 2004-04-08  Dick Porter  <dick@ximian.com>
13165
13166         * socket-io.h:
13167         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
13168         53992.  Also rearrange the code so that the internal calls return
13169         an error value and exceptions are thrown from managed code.
13170
13171         * icall.c: Add type info to the socket icalls.
13172
13173 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13174
13175         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
13176         owes me a beer.
13177
13178 2004-04-07  Martin Baulig  <martin@ximian.com>
13179
13180         * class.c (mono_class_from_generic_parameter): Don't default
13181         `klass->parent' to `mono_defaults.object_type'.
13182
13183 2004-04-07  Martin Baulig  <martin@ximian.com>
13184
13185         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13186         `param->pklass->reflection_info'.       
13187
13188 2004-04-07  Jackson Harper  <jackson@ximian.com>
13189
13190         * culture-info-tables.h: Fix date separator symbol.
13191         
13192 2004-04-07  Martin Baulig  <martin@ximian.com>
13193
13194         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
13195         from System.Type to System.MonoType.
13196
13197 2004-04-07  Martin Baulig  <martin@ximian.com>
13198
13199         * reflection.h
13200         (MonoReflectionGenericParam): Added `has_reference_type' and
13201         `has_value_type' fields.
13202
13203         * reflection.c (mono_image_get_generic_param_info): Encode the
13204         correct flags if we have the `class' or `struct' constraint.
13205
13206 2004-04-07  Martin Baulig  <martin@ximian.com>
13207
13208         * reflection.h
13209         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
13210
13211 2004-04-07  Jackson Harper  <jackson@ximian.com>
13212
13213         * appdomain.c: Revert extra patches, just wanted to bump the
13214         version number.
13215         
13216 2004-04-07  Jackson Harper  <jackson@ximian.com>
13217
13218         * Makefile.am: Add culture-info private headers.
13219         * icall.c: Add new icalls for contructing locales.
13220         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
13221         * locales.h: Declare new culture info construction methods.
13222         * object.h: Add new fields used to avoid the CultureMap to
13223         MonoCultureInfo.
13224         * culture-info.h: Definition of structs used in the culture info
13225         tables.
13226         * culture-info-tables.h: Autogenerated tables that contain culture
13227         info data. This file was generated with the locale-builder tool.
13228         * appdomain.c: Incement corlib version number.
13229         
13230 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
13231
13232         * appdomain.c: (mono_runtime_init) move mono_thread_init
13233         to before mono_object_new calls so critical sections
13234         are initialized before use.
13235
13236 2004-04-07  Martin Baulig  <martin@ximian.com>
13237
13238         * icall.c
13239         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
13240         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
13241         (ves_icall_MonoGenericParam_initialize): Removed.
13242         (monogenericparam_icalls): Removed.
13243         (generictypeparambuilder_icalls): Added new table for
13244         System.Reflection.Emit.GenericTypeParameterBuilder.
13245
13246         * reflection.c
13247         (mono_reflection_define_generic_parameter): Removed.
13248         (mono_reflection_initialize_generic_parameter): This is now called
13249         from GenericTypeParameterBuilder's .ctor.
13250
13251 2004-04-06  Martin Baulig  <martin@ximian.com>
13252
13253         * class.c (mono_class_init): Don't inflate nested classes in a
13254         generic instance.
13255         (mono_type_get_name_recurse): Include the generic arguments for
13256         generic instances and generic type declarations.
13257         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
13258         (_mono_class_get_instantiation_name): Removed.
13259         (mono_class_create_generic): Always use `gklass->name' as our name.
13260
13261         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
13262
13263         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
13264         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
13265         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13266         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13267         closed generic methods here.
13268
13269         * reflection.c
13270         (mono_reflection_generic_inst_get_nested_types): Removed.
13271         (inflate_mono_method): Copy the generic parameters from the
13272         MonoMethodHeader into out MonoGenericMethod.
13273
13274 2004-04-06  Martin Baulig  <martin@ximian.com>
13275
13276         * row-indexes.h
13277         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13278
13279         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13280
13281         * reflection.c (build_compressed_metadata): If we have any entries
13282         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13283         set the header version to 1.1.
13284
13285 2004-04-06  Martin Baulig  <martin@ximian.com>
13286
13287         * class.c (mono_class_init): If we're a generic instance,
13288         initialize our nested classes, too.
13289         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13290         suffix. 
13291
13292 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13293
13294         * process.c: quote the argument passed to the shell on windows.
13295
13296 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13297
13298         * threads.c (mono_alloc_special_static_data): Allow this to be
13299         called during startup.
13300
13301 2004-04-02  Martin Baulig  <martin@ximian.com>
13302
13303         * icall.c
13304         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13305
13306 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13307
13308         * icall.c: Fix build.
13309
13310 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13311
13312         * Makefile.am: Added security.c|h.
13313         * icall.c: Added icall for get_UserName;
13314         * security.c: New file for security related icalls. Added function
13315         get_UserName for System.Environment (fix #56144).
13316         * security.h: New. Header file for security.c
13317
13318 2004-04-02  Dick Porter  <dick@ximian.com>
13319
13320         * icall.c: Deleted the icalls that were obsoleted some time ago
13321         by the ICU string code, and which were mixed into the icall
13322         rearranging.  Fixes bug 55969.
13323
13324         * string-icalls.h: 
13325         * string-icalls.c: Deleted the code that those icalls reference.
13326
13327 2004-04-01  Martin Baulig  <martin@ximian.com>
13328
13329         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13330
13331         * class.c (mono_class_from_generic_parameter): Don't set 
13332         TYPE_ATTRIBUTE_INTERFACE.
13333         (my_mono_class_from_generic_parameter): Likewise.
13334
13335 2004-04-01  Martin Baulig  <martin@ximian.com>
13336
13337         * loader.c (find_method): Added an optional `MonoClass *ic'
13338         argument to search in a specific interface.
13339         (mono_get_method_constrained): New public function.
13340
13341 2004-04-01  Martin Baulig  <martin@ximian.com>
13342
13343         * reflection.c (mono_image_get_generic_field_token): Use the
13344         `handleref' cache here.
13345
13346 2004-04-01  Martin Baulig  <martin@ximian.com>
13347
13348         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13349
13350         * reflection.c (create_generic_typespec): Use the `typespec' hash
13351         here, not the `typeref' one.    
13352
13353 2004-04-01  Martin Baulig  <martin@ximian.com>
13354
13355         * class.c (mono_class_inflate_generic_type): Moved the
13356         functionality into a new static inflate_generic_type() which
13357         returns NULL if it didn't do anything.  Only increment the
13358         `mono_stats.inflated_type_count' if we actually inflated
13359         something.
13360         (mono_class_get_full): Check the classes type to see whether we
13361         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13362
13363 2004-04-01  Jackson Harper  <jackson@ximian.com>
13364
13365         * reflection.c: Set culture for assembly references.
13366         
13367 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13368
13369         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13370
13371 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13372
13373         * assembly.c:
13374         (do_mono_assembly_open): the critical section also covers
13375         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13376
13377 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13378
13379         * threads.c:
13380         (mono_manage_threads): abort the background threads when finishing.
13381         Fixes bug #47232.
13382
13383 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13384
13385         * gc.c: only close the done_event handle if there was no timeout.
13386         C-ified comments.
13387
13388 2004-03-30  Martin Baulig  <martin@ximian.com>
13389
13390         * icall.c (icall_entries): It's called "System.Activator", not
13391         "System.Activation".    
13392
13393 2004-03-30  Martin Baulig  <martin@ximian.com>
13394
13395         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13396         (mono_class_create_from_typespec): Likewise.
13397
13398 2004-03-30  Martin Baulig  <martin@ximian.com>
13399
13400         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13401         `has_ctor_constraint' and `initialized'.
13402
13403 2004-03-30  Martin Baulig  <martin@ximian.com>
13404
13405         * reflection.c (encode_new_constraint): New static function to add
13406         the constructor constraint attribute to a type parameter.
13407         (encode_constraints): Call encode_new_constraint() if necessary.
13408
13409         * reflection.h
13410         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13411
13412         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13413         
13414 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13415
13416         * reflection.c, icall.c: add support for pinning variables. 
13417
13418 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13419
13420         * marshal.c (mono_marshal_get_managed_wrapper):
13421         init bool local with zero rather than null.
13422
13423 2004-03-29  Martin Baulig  <martin@ximian.com>
13424
13425         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13426         the "official" behavior here.
13427         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13428
13429 2004-03-29  Martin Baulig  <martin@ximian.com>
13430
13431         * icall.c: Reflect latest API changes.
13432
13433 2004-03-29  Martin Baulig  <martin@ximian.com>
13434
13435         * loader.c (mono_get_method_from_token): Also call
13436         mono_metadata_load_generic_params () for abstract and interface
13437         methods; replace the type arguments in the method signature with
13438         the ones which are loaded from the metadata.
13439
13440 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13441
13442         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13443         of the lock is not the current thread. MS.NET don't do it, in spite of
13444         what the documentation says. See bug #56157.
13445
13446 2004-03-28  Martin Baulig  <martin@ximian.com>
13447
13448         * class.c (mono_class_init): Don't call init_properties() and
13449         init_events() for generic instances; set `prop->parent' when
13450         inflating properties.
13451
13452         * reflection.c (mono_generic_inst_get_object): Call
13453         `mono_class_init (ginst->klass)'.
13454         (mono_type_get_object): Only create a MonoGenericInst if your
13455         generic type is a TypeBuilder.
13456         (do_mono_reflection_bind_generic_parameters): Only set
13457         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13458
13459 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13460
13461         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13462         Fixes #56091.
13463
13464 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13465
13466         * icall.c: added Kill_internal icall.
13467         * process.[ch]: added Kill_internal icall.
13468
13469 2004-03-25  Martin Baulig  <martin@ximian.com>
13470
13471         * class.h (MonoStats): Added `generic_instance_count',
13472         `inflated_method_count', `inflated_type_count' and
13473         `generics_metadata_size'.       
13474
13475 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13476
13477         * reflection.c: no warnings now.
13478
13479 2004-03-25  Martin Baulig  <martin@ximian.com>
13480
13481         * class.c (mono_class_get_full): New public function; does a
13482         mono_class_get(), but also takes a `MonoGenericContext *'.
13483
13484         * loader.c (mono_field_from_memberref): Renamed to
13485         `field_from_memberref', made static and added `MonoGenericContext *'
13486         argument.
13487         (mono_field_from_token): Added `MonoGenericInst *' argument.
13488         (method_from_memberef): Likewise.
13489         (mono_get_method_from_token): Likewise.
13490         (mono_get_method_full): New public function; does a
13491         mono_get_method(), but also takes a `MonoGenericContext *'.
13492
13493         * verify.c (mono_method_verify): Get the method's generic context
13494         and pass it to mono_field_from_token(), mono_get_method_full() and
13495         mono_class_get_full().
13496
13497 2004-03-25  Martin Baulig  <martin@ximian.com>
13498
13499         * class.c (mono_class_inflate_generic_type): Take a
13500         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13501         `MonoGenericMethod *'.
13502
13503 2004-03-25  Martin Baulig  <martin@ximian.com>
13504
13505         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13506         instead of the MonoGenericMethod here.
13507
13508 2004-03-25  Martin Baulig  <martin@ximian.com>
13509
13510         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13511         each time we create a new MonoGenericInst, we also create a new
13512         context which points back to us.
13513
13514         * class.c (inflate_method): Use `ginst->context' instead of
13515         creating a new context.
13516
13517         * loader.c (method_from_memberref): Use
13518         `klass->generic_inst->context' instead of creating a new context.
13519
13520 2004-03-25  Martin Baulig  <martin@ximian.com>
13521
13522         * class.h (MonoGenericContext): New struct.
13523         (MonoGenericMethod): Removed `generic_inst'.
13524
13525         * class.c (mono_class_inflate_generic_method): Take a
13526         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13527
13528 2004-03-25  Martin Baulig  <martin@ximian.com>
13529
13530         * loader.h (MonoMethodInflated): New typedef.
13531
13532         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13533         `generic_param_count' consume just 30 bits, added `is_inflated'
13534         and `has_type_parameters' flags (one bit each).
13535
13536         * class.c (mono_class_inflate_generic_method): Create a
13537         MonoMethodInflated instead of a MonoMethodNormal and set
13538         `is_inflated' in the method signature.
13539
13540         * class.h (MonoGenericMethod): Removed `generic_method'.
13541
13542 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13543
13544         * image.c: Make sure the name of a MonoImage is always an absolute path.
13545           This fixes bug #54415.
13546
13547 2004-03-24  Martin Baulig  <martin@ximian.com>
13548
13549         * class.c (mono_class_setup_vtable): If we're a generic instance,
13550         use our generic type's vtable size.
13551
13552 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13553
13554         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13555         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13556         problems.
13557
13558 2004-03-23  Martin Baulig  <martin@ximian.com>
13559
13560         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13561         `MonoEvent *events'.
13562
13563         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13564         (typebuilder_icalls): Added "get_event_info"; calls
13565         mono_reflection_event_builder_get_event_info(). 
13566
13567         * reflection.c (mono_reflection_generic_inst_initialize): Added
13568         `MonoArray *events'.
13569         (mono_reflection_event_builder_get_event_info): New function.
13570
13571 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13572
13573         * object.h: add mono_type_initialization_init
13574
13575         * object.c (mono_runtime_class_init): 
13576         implement class constructor synchronization rules
13577         to cope with threading issues.  
13578         add mono_type_initialization_init
13579
13580         * appdomain.c (mono_runtime_init): call 
13581         mono_type_initialization_init
13582
13583         * class.h: removing initializing field from MonoVTable
13584
13585 2004-03-23  Martin Baulig  <martin@ximian.com>
13586
13587         * class.c (my_mono_class_from_generic_parameter): Use
13588         `param->name' if it's not NULL. 
13589
13590 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13591
13592         * class.c: do not insert non-virtual methods in the vtable.
13593         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13594         that means the method is non-virtual. This never would have
13595         happened before.
13596
13597 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13598
13599         * profiler.c: Added lock for accessing coverage_hash.
13600
13601 2004-03-22  Martin Baulig  <martin@ximian.com>
13602
13603         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13604         `method->method->signature->generic_param_count != 0' to make it
13605         work for interface methods.
13606
13607 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13608
13609         * process.c: quote the string passed to the shell using g_shell_quote.
13610
13611 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13612
13613         * threads.c:
13614         (mono_threads_manage): don't remove the finalizer thread and self
13615         from the threads hash table so that mono_thread_manage can be called
13616         more than once.
13617
13618 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13619
13620         * process.c: quote the arguments when UseShellExecute is true. Fixes
13621         bug #55790.
13622
13623 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13624
13625         * threads.c: set mono_thread_detach as a cleanup routine for every
13626         thread. This way it's always executed upon thread termination, either
13627         aborted or finished normally. No more xsp hangs!
13628
13629 2004-03-17  Martin Baulig  <martin@ximian.com>
13630
13631         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13632         `int count_nested' and a `MonoType **nested'.
13633
13634         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13635         most of the functionality into a new static
13636         do_mono_reflection_bind_generic_parameters() and don't take a
13637         `MonoType *nested_in' argument any more.  Don't compute nested
13638         types here.
13639         (mono_reflection_generic_inst_get_nested_types): New public method
13640         to get nested types.
13641
13642         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13643         we're a nested class.
13644
13645         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13646         mono_reflection_generic_inst_get_nested_types() to compute the
13647         nested types.
13648
13649 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13650
13651         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13652         descriptive error message under windows.
13653         
13654 2004-03-17  Martin Baulig  <martin@ximian.com>
13655
13656         * class.c (dup_type): Added `const MonoType *original' argument;
13657         copy the attrs from the original type.
13658
13659 2004-03-17  Martin Baulig  <martin@ximian.com>
13660
13661         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13662         `m->generic_inst_cache' here.
13663
13664 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13665
13666         * exception.h exception.c: Add stack_overflow_exception.
13667
13668 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13669
13670         * threadpool.c:
13671         (overlapped_callback): call SetEvent *after* invoking the callback.
13672         No need to call CloseHandle.
13673
13674 2004-03-16  Martin Baulig  <martin@ximian.com>
13675
13676         * reflection.c (mono_image_get_fieldref_token): Take a
13677         `MonoReflectionField *' instead of a `MonoClassField *' and a
13678         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13679
13680 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13681
13682         * appdomain.c: don't add the culture to the filename we're looking for
13683         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13684
13685 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13686
13687         * locales.c: don't ignore symbols when doing case insensitive compares.
13688         Thanks Dick! Fixes bug #54046.
13689
13690         * threads.c: surround 'threads' usage with enter/leave in
13691         mono_thread_manage.
13692
13693 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13694
13695         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13696         implicitly marshalled as [Out]. Fixes #55450.
13697
13698         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13699         an exception.
13700
13701 2004-03-16  Martin Baulig  <martin@ximian.com>
13702
13703         * class.c (mono_class_from_generic_parameter): Use the actual
13704         parameter name. 
13705
13706 2004-03-16  Martin Baulig  <martin@ximian.com>
13707
13708         * reflection.c (type_get_signature_size): New static function.
13709         Compues the size of the type in a method signature.
13710         (method_get_signature_size): New static function; calls
13711         type_get_signature_size() to compute the actual size of the
13712         method's signature.
13713         (method_encode_signature): Use method_get_signature_size() to get
13714         the signature's size rather than using `nparams * 10'.
13715
13716 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13717
13718         * file-io.h: define here WapiOverlapped on windows. I don't want the
13719         regular OVERLAPPED one.
13720
13721         * file-io.c:
13722         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13723         Disabling AIO on windows.
13724
13725 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13726
13727         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13728         bug #55385.
13729
13730 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13731
13732         * appdomain.c: upgraded corlib version.
13733
13734         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13735         and BeginWrite. Allow opening files for asynchrnous operations.
13736
13737         * file-io.h: new struct that maps FileStreamAsyncResult.
13738         * icall.c: added new icalls.
13739         * process.[ch]: support setting child process environment variables
13740         and use the SHELL or COMSPEC when UseShellExecute is true.
13741
13742         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13743         callback for async. IO is here and also BindHandle.
13744
13745         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13746         from here.
13747
13748 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13749
13750         * reflection.c (create_custom_attr): Allow len == 0.
13751
13752         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13753         computation on big-endian machines.
13754
13755 2004-03-13  Martin Baulig  <martin@ximian.com>
13756
13757         * class.h (MonoGenericInst): Added `int count_ifaces'.
13758
13759         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13760         `ginst->count_ifaces' instead `klass->interface_count' since we
13761         may get called before the vtable is created.
13762
13763         * loader.c (mono_method_get_param_names): If we're a generic
13764         instance, return and don't initialize the class.
13765
13766         * reflection.c (mono_reflection_setup_generic_class): Don't call
13767         ensure_runtime_vtable().
13768         (mono_reflection_bind_generic_parameters): Set
13769         `ginst->count_ifaces'.
13770
13771 2004-03-11  Jackson Harper <jackson@ximian.com>
13772
13773         * icall.c:
13774         * unicode.c:
13775         * unicode.h: Remove unused System.Char icalls.
13776         
13777 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13778
13779         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13780         code when we P/Invoke the first library in Windows.Forms, instead
13781         of when we first open the assembly.
13782
13783         * assembly.c: Drop the lookup from here.
13784
13785 2004-03-10  Martin Baulig  <martin@ximian.com>
13786
13787         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13788         class for properties, fields and events.  Finally fixes #54945.
13789
13790 2004-03-10  Martin Baulig  <martin@ximian.com>
13791
13792         * metadata.c (mono_metadata_class_equal): New static function;
13793         checks whether two generic instances or two generic parameters are
13794         equal.
13795         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13796         compare classes.        
13797
13798 2004-03-10  Martin Baulig  <martin@ximian.com>
13799
13800         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13801
13802         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13803         argument and write it into the `reflection_info' field.
13804
13805         * icall.c
13806         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13807         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13808
13809 2004-03-09  Jackson Harper  <jackson@ximian.com>
13810
13811         * char-conversions.h: use 8 bits for numeric data its all we need
13812         * icall.c: numeric data is only 8 bits now.
13813
13814 2004-03-09  Martin Baulig  <martin@ximian.com>
13815
13816         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13817
13818         * class.c (init_properties, init_events): Initialize the new
13819         `parent' field.
13820
13821         * reflection.c (typebuilder_setup_properties): Likewise.
13822         (typebuilder_setup_events): Likewise.
13823
13824         * reflection.h (MonoEventInfo): Replaced `parent with
13825         `declaring_type' and `reflected_type'.
13826
13827         * icall.c (ves_icall_get_property_info): Distinguish between
13828         declaring and reflected type.
13829         (ves_icall_get_event_info): Likewise.
13830
13831 2004-03-09  Martin Baulig  <martin@ximian.com>
13832
13833         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13834         (ves_icall_Type_GetField): Correctly set field->klass.
13835
13836 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13837
13838         * loader.h: Fix warning.
13839
13840 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13841
13842         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13843         library routine if present.  Notice that it will still continue
13844         executing even if its missing, for those working on the Gtk#
13845         edition of Windows.Forms.
13846
13847         * assembly.c (do_mono_assembly_open): If loading the
13848         System.Windows.Forms call mono_loader_wini_init.
13849
13850 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13851
13852         * class.h: Added MonoRemoteClass struct.
13853         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13854         function for MonoStrings.
13855         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13856         Added internal call for getting the proxy type.
13857         * marshal.c: Get the type of transparent proxies from its remote_class.
13858         Added methods that generate the IL for type checks and casts:
13859         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13860         mono_marshal_get_proxy_cancast.
13861         * marshal.h: Declaration of the previous new methods.
13862         * object.c: Added new moethods for creating and updating MonoRemoteClass
13863         instances: mono_remote_class, mono_upgrade_remote_class, 
13864         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13865         * verify.c: FIx transparent_proxy_fields layout.
13866         * appdomain.c: Bump corlib version.
13867
13868 2004-03-04  Jackson Harper  <jackson@ximian.com>
13869
13870         * icall.c: Add icall to access char conversion tables.
13871         * char-conversions.h: Character conversion tables.
13872         * Makefile.am: Add char-conversions.h private header file.
13873         
13874 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13875
13876         * appdomain.c (unload_thread_main): Increase unloading timeout to
13877         10 sec as a temporary workaround for Nant problems.
13878
13879 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13880
13881         * gc.c: Add checks for GC_enable and GC_disable.
13882
13883         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13884         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13885         (bug #54988).
13886         
13887 2004-02-27  Martin Baulig  <martin@ximian.com>
13888
13889         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13890         `MonoReflectionType *' instead of a `MonoType *'.
13891
13892 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13893
13894         * gc.c (run_finalize): Avoid finalizing the object representing the
13895         finalizer thread.
13896         (finalizer_thread): Fix warning.
13897
13898 2004-02-25  Martin Baulig  <martin@ximian.com>
13899
13900         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13901         argument for nested types.
13902         (mono_class_create_generic): Added support for nested generictypes.
13903
13904         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13905         `GList *nested'.
13906
13907         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13908
13909         * reflection.c (method_encode_signature): Increase the minimum
13910         value of `size' from 10 to 11.
13911         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13912         and `MonoType **types' arguments instead of the `MonoArray
13913         *types'; added `MonoType *nested_in'.  Recursively instantiate
13914         nested classes. 
13915
13916 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13917
13918         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13919         stack_overflow_ex members which are used by exception handling.
13920
13921         * appdomain.c (mono_runtime_init): Initialize the new members.
13922
13923         * gc.c (mono_gc_enable): New helper function.
13924         * gc.c (mono_gc_disable): New helper function.
13925
13926 2004-02-23  Martin Baulig  <martin@ximian.com>
13927
13928         * icall.c: I must have been really stupid - make it actually work
13929         this time ;-)
13930
13931 2004-02-23  Martin Baulig  <martin@ximian.com>
13932
13933         * loader.c (method_from_memberref): Only inflate the method if
13934         it's in another klass.
13935
13936 2004-02-23  Martin Baulig  <martin@ximian.com>
13937
13938         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13939         (mono_class_init): If we're a generic instance and an interface,
13940         compute `class->interface_id'; also create `class->interfaces'
13941         here and inflate them.
13942
13943         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13944         `ginst->is_open'.
13945         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13946
13947         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13948
13949 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13950
13951         * reflection.c (method_encode_code): Improved the error message
13952         generated by the exception.
13953
13954 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13955
13956         * icall.c: Martin did not do what he said in the ChangeLog for
13957         2004-02-18, but put back the changes for properties and events.
13958         Commenting those changes out again and adding comment to bug #54518.
13959         
13960         * process.c: removed warning.
13961
13962 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13963
13964         * marshal.c (emit_struct_conv): Print an error message instead of
13965         asserting when a type does not have the StructLayout attribute.
13966
13967 2004-02-20  Martin Baulig  <martin@ximian.com>
13968
13969         * reflection.c (mono_type_get_object): Also use the cache for
13970         generic instances.
13971         (mono_reflection_bind_generic_parameters): Always compute
13972         `ginst->ifaces'.        
13973
13974 2004-02-20  Martin Baulig  <martin@ximian.com>
13975
13976         * class.h (MonoGenericMethod): Removed `klass'.
13977
13978         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13979         *klass' argument.
13980
13981 2004-02-20  Martin Baulig  <martin@ximian.com>
13982
13983         * reflection.c (method_encode_methodspec): Actually use the
13984         uninflated signature for the memberref.
13985
13986 2004-02-20  Martin Baulig  <martin@ximian.com>
13987
13988         * class.h (MonoGenericMethod): Removed `declaring'.
13989
13990         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13991         is NULL, compute it here.
13992
13993 2004-02-20  Martin Baulig  <martin@ximian.com>
13994
13995         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13996
13997         * metadata.c (mono_metadata_generic_inst_hash): New method.
13998         (mono_metadata_generic_inst_equal): New method.
13999
14000         * reflection.c (mono_reflection_bind_generic_parameters): Use the
14001         `klass->image->generic_inst_cache' cache to avoid creating
14002         duplicate MonoGenericInst's.
14003
14004         * class.c (mono_class_inflate_generic_type): Use the cache.
14005
14006 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
14007
14008         * object.c: fixed gc descriptor calculation for embedded valuetypes.
14009
14010 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14011
14012         * icall.c: added Socket.WSAIoctl icall.
14013
14014         * socket-io.[ch]: implemented
14015         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
14016
14017 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
14018
14019         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
14020
14021 2004-02-18  Urs C Muff  <umuff@quark.com>
14022
14023         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
14024         this work on PPC and other big-endian architectures.
14025
14026         * debug-mono-symfile.h: Prepended the names of all the `guint32'
14027         fields with an underscore to make sure they're only accessed by
14028         the read32() macro.
14029
14030 2004-02-18  Martin Baulig  <martin@ximian.com>
14031
14032         * icall.c: Put the klass->refclass changes back for methods and
14033         fields, but not for properties and events.  We're currently not
14034         distinguishing between DeclaringType and ReflectedType for
14035         properties and events, that's what caused the regressions.
14036
14037 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14038
14039         * object.c:
14040         (mono_async_result_new): the handle can be NULL.
14041
14042         * threadpool.c: Use an event instead of a semaphore, don't initialize
14043         it until needed. This saves quite a few semaphores from being created
14044         when using the threadpool.
14045
14046 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
14047
14048         * object.c (mono_string_is_interned_lookup): Fix interning of long
14049         strings. Fixes #54473.
14050
14051         * domain.c (ldstr_equal): Optimize if the two strings are equal.
14052
14053         * icall.c: Revert the klass->refclass changes since they introduce
14054         regressions (bug #54518).
14055
14056 2004-02-18  Martin Baulig  <martin@ximian.com>
14057
14058         * class.c (mono_class_init): If we're a generic instance and don't
14059         come from a TypeBuilder, inflate our members here.
14060         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
14061         (mono_class_create_generic): New public method.
14062         (mono_class_initialize_generic): Removed.
14063         (get_instantiation_name): Renamed to
14064         _mono_class_get_instantiation_name() and made it public.
14065
14066 2004-02-18  Martin Baulig  <martin@ximian.com>
14067
14068         * class.c (mono_class_inflate_generic_type): Clear the new
14069         instance's `nginst->klass' when inflating a generic instance.
14070         (mono_class_is_subclass_of): Added (basic) support for generic
14071         instances.
14072
14073 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
14074
14075         * appdomain.h, domain.c: use a MonoCodeManager instead of a
14076         MonoMempool to hold compiled native code.
14077
14078 2004-02-17  Martin Baulig  <martin@ximian.com>
14079
14080         * class.h (MonoDynamicGenericInst): Added `count_properties' and
14081         `properties'.
14082
14083         * reflection.c (mono_reflection_generic_inst_initialize): Added
14084         `MonoArray *properties' argument.
14085
14086         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
14087
14088 2004-02-17  Martin Baulig  <martin@ximian.com>
14089
14090         * icall.c (ves_icall_Type_GetFields): Renamed to
14091         ves_icall_Type_GetFields_internal() and added a
14092         `MonoReflectionType *rtype' argument; pass it to
14093         mono_field_get_object() to set the field's "reflected" type.
14094         (ves_icall_Type_GetConstructors): Likewise.
14095         (ves_icall_Type_GetEvents): Likewise.
14096         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
14097         argument; pass it to mono_method_get_object() to set the method's
14098         "reflected" type.       
14099
14100 2004-02-17  Martin Baulig  <martin@ximian.com>
14101
14102         * class.h (MonoDynamicGenericInst): New type.
14103         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
14104
14105         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
14106         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
14107         (ves_icall_MonoGenericInst_GetFields): New interncall.
14108
14109         * class.c (mono_class_from_generic): Don't call
14110         mono_class_initialize_generic() if this is a dynamic instance;
14111         ie. it's being created from a TypeBuilder.
14112         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
14113         `class->byval_arg.type'.
14114
14115         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
14116         to `inflate_method' and made static.
14117         (mono_reflection_inflate_field): Removed.
14118         (mono_reflection_generic_inst_initialize): New public method.
14119
14120         * reflection.h (MonoReflectionGenericInst): Removed `methods',
14121         `ctors' and `fields'; added `initialized'.
14122
14123 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
14124
14125         * debug-helpers.c (mono_method_full_name): Fix output for empty
14126         namespaces.
14127
14128 2004-02-12  Martin Baulig  <martin@ximian.com>
14129
14130         * class.h (MonoClassField): Added `MonoType *generic_type'.
14131
14132         * reflection.c (mono_image_get_fieldref_token): Added support for
14133         instantiated generic types.
14134         (field_encode_inflated_field): Removed.
14135         (mono_image_get_inflated_field_token): Removed.
14136         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
14137
14138         * reflection.h (MonoReflectionInflatedField): Removed.
14139
14140 2004-02-12  Martin Baulig  <martin@ximian.com>
14141
14142         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
14143         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
14144
14145         * reflection.c (mono_image_get_methodspec_token): Take a
14146         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
14147         (mono_image_create_token): Check whether we have a
14148         `method->signature->gen_method' and call
14149         mono_image_get_methodspec_token() if appropriate.
14150         (inflated_method_get_object): Removed.
14151         (mono_reflection_bind_generic_method_parameters): Return a
14152         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
14153         (mono_reflection_inflate_method_or_ctor): Likewise.
14154
14155         * reflection.h (MonoReflectionInflatedMethod): Removed.
14156
14157 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
14158
14159         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
14160         for custom valuetype marshalling.
14161
14162         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
14163
14164 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14165
14166         * icall.c: fixed WSAGetLastError_internal name.
14167
14168 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
14169
14170         * threads.c (mono_thread_attach): Allow this to be called multiple
14171         times for a thread.
14172         
14173         * threads.c (build_wait_tids): Do not wait for ourselves.
14174
14175         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
14176         appdomain list is empty.
14177
14178         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
14179         memory returned by mono_string_builder_to_utf16, since it points into
14180         managed memory. Thanks to Bernie Solomon for noticing this.
14181
14182         * icall.c: Add AppDomainSetup icalls.
14183
14184         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
14185
14186         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
14187         types.
14188
14189         * reflection.c (reflection_methodbuilder_to_mono_method): Save
14190         custom attributes to the method_aux struct. Also fix array indexes etc.
14191
14192         * loader.c (mono_method_get_param_names): Make dynamic case work again.
14193         
14194 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
14195
14196         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
14197         (both static and runtime) and reduce startup time.
14198
14199 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
14200
14201         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
14202         AsAny marshalling conversion instead of crashing.
14203
14204         * marshal.c: Fix warnings.
14205
14206 2004-02-09  Martin Baulig  <martin@ximian.com>
14207
14208         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
14209
14210         * reflection.h (MonoReflectionInflatedMethod): Removed the
14211         `declaring' field, it's now in the unmanaged MonoGenericMethod.
14212
14213         * reflection.c (method_encode_methodspec): Removed the `method'
14214         argument; we get it from `gmethod->declaring'.
14215         (inflated_method_get_object): Removed the `declaring' argument.
14216
14217 2004-02-09  Martin Baulig  <martin@ximian.com>
14218
14219         * class.h (MonoGenericMethod): New type.
14220         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
14221         `generic_method'.
14222
14223         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
14224         a `MonoGenericMethod *gen_method' one.
14225
14226         * class.c (mono_class_inflate_generic_type): Take an additional
14227         `MonoGenericMethod * argument.  This is only non-NULL if we're
14228         inflating types for a generic method.   
14229         (mono_class_inflate_generic_signature): Renamed to
14230         inflate_generic_signature() and made static; take a
14231         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14232         (inflate_generic_header): Take a `MonoGenericMethod *' argument
14233         instead of a `MonoGenericInst *' one.
14234         (mono_class_inflate_generic_method): Likewise.
14235
14236         * reflection.c (encode_generic_method_sig): Take a
14237         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14238         (method_encode_methodspec): Likewise.
14239         (inflated_method_get_object): Likewise. 
14240
14241         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
14242         field with a `MonoGenericMethod *gmethod' one.  
14243
14244 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
14245
14246         * class.h (mono_class_has_parent): add parens to expansion
14247         so you can ! this.
14248
14249 2004-02-08  Martin Baulig  <martin@ximian.com>
14250
14251         * image.h (MonoImage): Removed `generics_cache'.
14252
14253         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
14254         instead of a `MonoType *' argument; removed the `inflate_methods'
14255         argument.  Don't inflate methods here.
14256
14257         * loader.c (find_method): If it's a generic instance, call
14258         mono_class_init() on the `sclass->generic_inst->generic_type'.
14259
14260         * metadata.c (mono_type_size): Make this work on uninitialized
14261         generic instances; call it on the `ginst->generic_type's class.
14262
14263         * reflection.c (mono_reflection_bind_generic_parameters): Call
14264         mono_class_from_generic() to create the `ginst->klass'.
14265
14266 2004-02-08  Martin Baulig  <martin@ximian.com>
14267
14268         * class.h (MonoClass): Changed type of `generic_inst' from
14269         `MonoType *' to `MonoGenericInst *'.
14270
14271 2004-02-08  Martin Baulig  <martin@ximian.com>
14272
14273         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14274         mono_type_get_object(), this is now creating a `MonoGenericInst'
14275         for MONO_TYPE_GENERICINST.
14276         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14277         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14278
14279         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14280         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14281         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14282         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14283         and reflected type.
14284
14285         * reflection.h (MonoReflectionInflatedMethod): Removed
14286         `declaring_type' and `reflected_type'.
14287
14288 2004-02-08  Martin Baulig  <martin@ximian.com>
14289
14290         * class.h (MonoGenericInst): Added `MonoType *parent' and
14291         `MonoType **ifaces'.
14292
14293         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14294         `parent' and `interfaces'.
14295
14296         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14297         `MonoType *' argument and return a `MonoType *'.
14298
14299         * icall.c
14300         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14301         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14302
14303 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14304
14305         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14306         valuetype marshalling.
14307
14308 2004-02-06  Martin Baulig  <martin@ximian.com>
14309
14310         * class.c
14311         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14312         (my_mono_class_from_generic_parameter): Likewise.
14313
14314 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14315
14316         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14317         contents of the symbol files lazily.
14318
14319         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14320
14321         * threads.h threads.c icall.c: New icalls for getting and setting the
14322         threads name.
14323
14324 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14325
14326         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14327         Raise an exception when the domain is not found.
14328
14329 2004-02-03  Martin Baulig  <martin@ximian.com>
14330
14331         * reflection.c (mono_image_get_methodspec_token): Use the
14332         uninflated signature; fixes gen-33.
14333
14334 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14335
14336         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14337         the finalizer code can use thread functionality.
14338
14339         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14340         the finalizer thread.
14341
14342         * threads.c: Make some functions more robust.
14343
14344         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14345
14346         * metadata.h: Add new marshalling conventions.
14347
14348         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14349         stringbuilder marshalling. Fixes #53700.
14350
14351         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14352
14353         * reflection.c (mono_image_get_type_info): Save declarative security
14354         info.
14355
14356         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14357         unmanaged fields as well.
14358
14359         * appdomain.c: Bump corlib version.
14360
14361 2004-02-01  Martin Baulig  <martin@ximian.com>
14362
14363         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14364         method type arguments.  
14365
14366 2004-01-30  Duncan Mak  <duncan@ximian.com>
14367
14368         * marshal.h: Add prototype for
14369         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14370         and
14371         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14372         fix the build.
14373
14374 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14375
14376         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14377         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14378
14379 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14380
14381         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14382         custom marshalling of valuetypes.
14383
14384         * marshal.c: Fix some warnings.
14385
14386 2004-01-29  Martin Baulig  <martin@ximian.com>
14387
14388         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14389         for generic method parameters.
14390
14391         * reflection.c (method_encode_methodspec): Write the uninflated
14392         signature into the methodspec table.
14393         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14394         is always the uninflated method.
14395         (reflection_methodbuilder_to_mono_method): Copy the generic
14396         parameters from the MethodBuilder into `header->gen_params'.
14397
14398 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14399
14400         * class.c (mono_class_from_generic_parameter): Fix warning.
14401
14402 2004-01-27  Martin Baulig  <martin@ximian.com>
14403
14404         * class.c (mono_class_from_generic_parameter): Don't create
14405         `klass->methods' here.  
14406
14407 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14408
14409         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14410         extension since it does not work with libraries named lib<FOO>.dll.so.
14411
14412 2004-01-25  Martin Baulig  <martin@ximian.com>
14413
14414         * class.c (mono_class_inflate_generic_type): Added support for
14415         MONO_TYPE_GENERICINST.
14416
14417         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14418         inflate methods on open constructed types.      
14419
14420 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14421
14422         * object.c: fire ProcessExit event in the root AppDomain after running
14423         Main. Fixes bug #53299.
14424
14425 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14426
14427         * socket-io.c: include the new socket-wrappers.h header.
14428         Use the wrappers instead of the unix socket functions to make the code
14429         more clear.
14430
14431 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14432
14433         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14434
14435         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14436         Fixes #22532.
14437
14438 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14439
14440         * reflection.c (mono_image_create_pefile): Handle the case when the
14441         entry point is not a MethodBuilder.
14442
14443         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14444         field to ReflectionMethod since it is not allways a builder.
14445
14446         * reflection.c (type_get_fully_qualified_name): New helper function to
14447         return the fully qualified name of a type.
14448
14449         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14450         type name for custom marshallers.
14451
14452         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14453
14454         * class.c (mono_class_setup_vtable): If a parent class already 
14455         implements an interface, use the implementing methods from that class.
14456         Fixes #53148.
14457
14458 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14459
14460         * threadpool.c: just return instead of ExitThread to allow for thread
14461         clean up earlier.
14462
14463 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14464
14465         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14466         when closing resource modules.
14467
14468         * reflection.c (mono_image_create_pefile): Handle the case when the
14469         entry point is not a MethodBuilder.
14470
14471         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14472         field to ReflectionMethod since it is not allways a builder.
14473
14474 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14475
14476         * marshal.c (mono_marshal_get_managed_wrapper): 
14477         mono_marshal_alloc takes native int so CONV_I
14478         the arg for 64bits.
14479
14480 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14481
14482         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14483         tokens in the cattr table. Fixes #53108.
14484
14485 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14486
14487         * loader.c: don't trim ".dll" before looking up in the config file.
14488         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14489
14490 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14491
14492         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14493         Return the module which contains the resource as well.
14494         (ves_icall_System_Reflection_Module_Close): New icall.
14495
14496         * appdomain.c: Bump corlib version number.
14497
14498         * image.c (mono_image_addref): New public function.
14499
14500         * assembly.c: Call mono_image_addref.
14501
14502         * reflection.c (mono_module_get_object): Increase reference count of 
14503         the image.
14504
14505         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14506         Fixes #22532.
14507
14508         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14509         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14510         proper exceptions on DllImport problems.
14511
14512 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14513
14514         * class.c, metadata.c: eliminate CSIZE macro.
14515
14516 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14517
14518         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14519         * object.h: Added async_callback field in MonoAsyncResult.
14520         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14521         * verify.c: Added async_callback in MonoAsyncResult layout.
14522
14523 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14524
14525         * reflection.c (mono_reflection_get_custom_attrs): Add support
14526         for Modules.
14527
14528 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14529
14530         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14531         marshalling.
14532         (mono_marshal_method_from_wrapper): Add null pointer check.
14533
14534 2004-01-16  Martin Baulig  <martin@ximian.com>
14535
14536         * debug-mono-symfile.h: Set version number to 36 and reflect
14537         latest symbol writer changes.
14538
14539 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14540
14541         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14542         multi-dimensional arrays.
14543         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14544         (mono_class_from_mono_type): Use bounded_array_class_get.
14545         
14546         * class.c (mono_bounded_array_class_get): New function which takes
14547         a 'bounded' bool argument to distinguish vectors from one dimensional
14548         arrays.
14549
14550         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14551         bounded_array_class_get if the array has bounds.
14552
14553         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14554         Search modules loaded using AssemblyBuilder:AddModule as well.
14555
14556 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14557
14558         * appdomain.c: increased corlib version.
14559         * filewatcher.c: removed g_print.
14560         * icall.c:
14561         (get_property_info): only allocate what is actually requested.
14562         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14563
14564 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14565
14566         * Makefile.am: added filewatcher.[ch]
14567         * filewatcher.[ch]: FileSystemWatcher runtime support.
14568         * icall.c: added new FSW icalls.
14569
14570 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14571
14572         * string-icalls.c: fix stringbuilder regression as suggested by
14573         Iain McCoy <iain@mccoy.id.au>.
14574
14575 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14576
14577         * process.c (process_read_stringtable_block): Recognize '007f' as
14578         a language neutral stringtable block.
14579
14580 2004-01-12  Patrik Torstensson
14581
14582         * object.h (MonoStringBuilder) : Changed layout to support our
14583         new stringbuilder class.
14584         * marshal.c: Change marshalling to support the new layout of 
14585         string builder.
14586         * appdomain.c: increased version number because new layout of
14587         string builder.
14588
14589 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14590
14591         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14592         assembly name as an string instead of an AssemblyName, since it is
14593         easier to extract info from it.
14594
14595         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14596         the culture subdirectories too. Fixes #52231.
14597
14598 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14599
14600         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14601         It takes 2 new parameters with an optional name for the method to look
14602         for and case ignoring info.
14603
14604         * threadpool.c: removed unused variable.
14605
14606 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14607
14608         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14609         It takes 2 new parameters with an optional name for the property to look
14610         for and case ignoring info.
14611         Fixes bug #52753.
14612
14613 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14614
14615         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14616         Fix #52451.
14617
14618 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14619
14620         * appdomain.c:
14621         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14622         Fixes bug #52630.
14623
14624 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14625
14626         * reflection.c: Add support for more than one unmanaged resource.
14627
14628         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14629         in field->def_value, as done in all other cases.
14630
14631         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14632         TypeBuilders.
14633
14634         * reflection.c (mono_reflection_create_runtime_class): Remove 
14635         errorneous assignment to klass->element_class, since it is already
14636         done in mono_reflection_setup_internal_class.
14637
14638 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14639
14640         * gc.c: added missing LeaveCriticalSection.
14641         * icall.c: indented a couple of lines.
14642         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14643         if we call EndInvoke inside a callback. Fixes bug #52601.
14644
14645 2004-01-07  Martin Baulig  <martin@ximian.com>
14646
14647         * mono-debug-debugger.h
14648         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14649
14650 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14651
14652         * appdomain.c: Use messages in NotImplementedException.
14653
14654         * exception.c (mono_get_exception_not_implemented): Now this takes
14655         a message argument.
14656
14657         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14658         exception instead of g_asserting an aborting when something is not
14659         implemented.
14660
14661         Add some inline docs.
14662
14663 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         * reflection.h: Update after changes to object layout.
14666
14667         * reflection.c: Implement saving of unmanaged aka win32 resources.
14668
14669         * appdomain.c: Bump version number.
14670
14671         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14672         Handle missing domains gracefully.
14673
14674 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14675
14676         * file-io.c : On Windows, there are much more invalid_path_chars.
14677
14678 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14679
14680         * class.h, object.c: prepare for GetType () speedup.
14681
14682 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14683
14684         * profiler.c: workaround for --profile null reference exception on
14685           cygwin. Patch by Patrik Torstensson.
14686
14687 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14688
14689         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14690         make work for unaligned access.
14691
14692 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14693
14694         * class.c: small cleanup (class->fields [i] -> field).
14695         * image.c: check address of metadata is valid.
14696
14697 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14698
14699         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14700         search the list of loaded assemblies.
14701
14702         * reflection.c (mono_reflection_type_from_name): Use 
14703         mono_assembly_loaded instead of mono_image_loaded.
14704
14705         * reflection.c: Fix warnings.
14706
14707 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14708
14709         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14710         is dynamic. This is needed since an assembly can contain both dynamic and
14711         non-dynamic images.
14712
14713         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14714         assembly->dynamic.
14715
14716         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14717
14718         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14719         to store modules loaded using AddModule.
14720
14721         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14722         on Modules.
14723
14724         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14725
14726         * reflection.c (mono_image_fill_export_table_from_module): New function to
14727         fill out the EXPORTEDTYPES table from a module.
14728
14729         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14730         into a separate function. Also handle loaded non-dynamic modules.
14731
14732         * reflection.c (mono_image_basic_init): Fix memory allocation.
14733
14734         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14735
14736         * assembly.c (mono_assembly_load_references): Make this public.
14737
14738 2003-12-19  Martin Baulig  <martin@ximian.com>
14739
14740         * class.c (mono_class_initialize_generic): Made this static, take
14741         a `MonoGenericInst *' instead of a `MonoClass *'.
14742         (mono_class_from_generic): Call mono_class_initialize_generic()
14743         unless we're already initialized or being called from
14744         do_mono_metadata_parse_generic_inst().
14745
14746         * class.h (MonoGenericInst): Added `initialized' and
14747         `init_pending' flags.
14748
14749         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14750         `mono_class_init (gklass)' or mono_class_initialize_generic()
14751         here; set `generic_inst->init_pending' while parsing the
14752         `type_argv'.
14753
14754 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14755
14756         * locales.c: include string.h for memxxx prototypes
14757
14758 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14759
14760         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14761         constructor when accessing literal fields.
14762
14763 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14764
14765         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14766
14767         * reflection.c (assembly_add_resource_manifest): New function to fill
14768         the MANIFESTRESOURCE table.
14769
14770         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14771
14772         * reflection.h: Update to changes in class layout.
14773
14774         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14775         Reenable call to mono_runtime_is_shutting_down ().
14776
14777         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14778         determine if the runtime is shutting down.
14779
14780 2003-12-16  Jackson Harper <jackson@ximian.com>
14781
14782         * icall.c: comment out call to mono_runtime_is_shutting_down to
14783         fix build.
14784         
14785 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14786
14787         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14788         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14789
14790 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14791
14792         * reflection.c: move definition of swap_with_size
14793         to before its first call
14794
14795 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14796
14797         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14798
14799         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14800         icall.
14801
14802         * object.c: Fix warnings.
14803
14804         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14805         members if FlattenHierarchy is set.
14806
14807         * reflection.c (mono_image_add_decl_security): New function to emit
14808         declarative security.
14809
14810         * reflection.h reflection.c: Add support for declarative security.
14811
14812         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14813         
14814 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14815
14816         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14817         
14818         * appdomain.c verify.c: Moved corlib version checking into its own
14819         function in appdomain.c since it needs to create vtables etc.
14820
14821 2003-12-13  Patrik Torstensson <p@rxc.se>
14822
14823         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14824         instead of unwrapped server.
14825
14826 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14827
14828         * verify.c (check_corlib): Fix field index.
14829
14830 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14831
14832         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14833         GetGacPath icall.
14834
14835 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14836
14837         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14838         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14839         cope with sizeof(size_t) != sizeof(guint32).
14840
14841 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14842
14843         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14844         in case of failure.
14845
14846 2003-12-10  Mark Crichton <crichton@gimp.org>
14847
14848         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14849         in managed code.
14850
14851         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14852
14853 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14854
14855         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14856         marked as deleted.
14857
14858 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14859
14860         * verify.c (check_corlib): Handle the case when the version field is 
14861         initialized by a static constructor.
14862
14863 2003-12-08  Patrik Torstensson  <p@rxc.se>
14864
14865     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14866
14867 2003-12-08  Martin Baulig  <martin@ximian.com>
14868
14869         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14870         a MonoReflectionGenericParameter, also take the parameter index
14871         and name as arguments.
14872         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14873         (ves_icall_MonoGenericParam_initialize): New interncall.
14874         (ves_icall_Type_make_byref_type): New interncall.
14875
14876         * reflection.h (MonoReflectionGenericParam): Derive from
14877         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14878         `index' fields.
14879
14880         * reflection.c (mono_reflection_define_generic_parameter): Create
14881         and return a new MonoReflectionGenericParam; don't initialize the
14882         constraints here.
14883         (mono_reflection_initialize_generic_parameter): New public method;
14884         initializes the constraints and creates the `param->pklass'.
14885
14886 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14887
14888         * reflection.h reflection.c: Use the new fields 'num_types', 
14889         'num_fields' and 'num_methods' to track the number of types etc.
14890
14891         * verify.c (check_corlib): Check corlib version number.
14892
14893 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14894
14895         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14896         function works on all methods.
14897
14898 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14899
14900         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14901         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14902         the custom_type_info flag of the transparent proxy.
14903         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14904         objects that supports IRemotingTypeInfo.
14905         * object.h: Added custom_type_info field in transparent proxy.
14906
14907 2003-12-06  Martin Baulig  <martin@ximian.com>
14908
14909         * class.c (mono_class_create_from_generic): Removed.
14910         (mono_class_from_generic): Check `ginst->klass' before doing
14911         anything else.  This is important to fully support "recursive"
14912         generic types.
14913
14914         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14915         empty `generic_inst->klass' before doing anything else.
14916
14917 2003-12-06  Dick Porter  <dick@ximian.com>
14918
14919         * verify.c: 
14920         * object.h:
14921         * icall.c:
14922         * locales.c: Use C structs to access class fields.  Don't do a
14923         conversion between MonoString and UChar because both are
14924         platform-endian UTF-16.  Compare now takes startindex and count
14925         parameters.  Add a char overload for IndexOf.  Speed up the
14926         invariant string IndexOf.
14927
14928 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14929
14930         * Makefile.am (monosn_LDADD): Fix parallel build.
14931
14932 2003-12-04  Martin Baulig  <martin@ximian.com>
14933
14934         * icall.c
14935         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14936         (ves_icall_Type_make_array_type): New interncall.       
14937
14938 2003-12-04  Martin Baulig  <martin@ximian.com>
14939
14940         * locales.c: also change it in the !HAVE_ICU case.
14941
14942 2003-12-04  Dick Porter  <dick@ximian.com>
14943
14944         * icall.c:
14945         * locales.c: construct_compareinfo is now in CompareInfo, not
14946         CultureInfo.
14947
14948 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14949
14950         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14951         image->files array.
14952
14953         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14954         table as well.
14955
14956         * assembly.c (mono_assembly_load_references): Only load references
14957         once.
14958
14959         * class.c (mono_class_from_name): Avoid linear search of the 
14960         EXPORTEDTYPE table.
14961
14962         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14963
14964 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14965
14966         * image.h (MonoImage): Add 'field_cache' field.
14967
14968         * loader.c (mono_field_from_token): Cache field lookups.
14969         
14970         * reflection.c (mono_module_get_object): Fix name property.
14971
14972         * icall.c (ves_icall_get_enum_info): Update after changes to 
14973         mono_metadata_get_constant_index ().
14974
14975         * icall.c: Get rid of get_type_info icall, use a separate icall for
14976         each type property to avoid needless memory allocations. Fixes #51514.
14977
14978         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14979         to avoid needless binary searches.
14980
14981         * class.c (class_compute_field_layout): Move the initialization of
14982         field->def_value to mono_class_vtable ().
14983
14984         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14985         non-corlib types.
14986
14987         * object.c (mono_object_allocate): Make it inline.
14988
14989         * object.c (mono_object_allocate_spec): Make it inline.
14990         
14991 2003-12-02  Dick Porter  <dick@ximian.com>
14992
14993         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14994         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14995
14996 2003-12-01  Dick Porter  <dick@ximian.com>
14997
14998         * threads.c: Fix signature and call in CreateMutex and
14999         CreateEvent.
15000
15001 2003-12-01  Dick Porter  <dick@ximian.com>
15002
15003         * icall.c: 
15004         * locales.c: Implement string compares and searching
15005
15006         * object.h: Add extra Thread field
15007
15008 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
15009
15010         * reflection.c (fixup_method): Add support for MonoCMethod.
15011
15012 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
15013
15014         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
15015
15016         * reflection.c (assembly_name_to_aname): Allow extra characters in
15017         assembly names. Fixes #51468.
15018
15019 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
15020
15021         * exception.c (mono_exception_from_name_domain): New helper function.
15022
15023         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
15024         exception object in the correct domain.
15025
15026         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
15027         formatting + make a copy a the input data.
15028
15029         * loader.c (mono_get_method_from_token): Methods which contain
15030         native code do not have entries in the ImplMap.
15031
15032         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
15033         Thanks to Gonzalo for spotting this.
15034         
15035         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
15036         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
15037
15038         * assembly.h (mono_assembly_load_from): Split the second part of 
15039         assembly loading into a new public function.
15040
15041         * exception.h (mono_get_exception_bad_image_format): New function.
15042
15043 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
15044
15045         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15046         Enumerate all modules inside a dynamic assembly. Fixes #51293.
15047         
15048         * icall.c: Add new icall for creating dynamic methods.
15049
15050         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
15051
15052         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
15053
15054         * reflection.c (mono_reflection_create_dynamic_method): New icall to
15055         create a dynamic method.
15056
15057         * reflection.c (resolve_object): New helper function.
15058
15059         * reflection.c: Generalize ReflectionMethodBuilder and the functions
15060         which manipulate it so they can also work on dynamic methods.
15061
15062         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
15063         creating the MonoReflectionMethodAux structure if it is not needed.
15064         
15065         * reflection.h verify.c: Update after changes to object layout.
15066
15067         * reflection.c (method_builder_encode_signature): Fix compilation on
15068         gcc 2.95.x.
15069
15070 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
15071
15072         * appdomain.h: Added support for context static fields. Added static_data
15073           field to MonoAppContext and renamed thread_static_fields to a more
15074           generic special_static_fields in MonoAppDomain, since it can now contain
15075           context static fields.
15076         * domain.c: Updated hashtable name.
15077         * object.c: Replaced field_is_thread_static() for a more generic
15078           field_is_special_static() which also checks for context static attribute.
15079           In mono_class_vtable(), added support for static context fields.
15080         * threads.c: Changed methods that manage thread static fields to more
15081           generic methods so they can be reused both for thread and context static
15082           data.
15083         * threads.h: Declared some new methods.
15084
15085 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
15086
15087         * reflection.h: Update after changes to the managed types.
15088
15089         * reflection.c (encode_custom_modifiers): New helper function.
15090
15091         * reflection.c (method_encode_signature): Emit custom modifiers.
15092
15093         * reflection.c (field_encode_signature): Emit custom modifiers.
15094
15095 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
15096
15097         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
15098
15099         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
15100         implementation.
15101
15102         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
15103         icall.
15104
15105         * object.c (mono_field_get_value_object): New function.
15106
15107         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
15108         specific.
15109
15110 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
15111
15112         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
15113         return a preallocated out-of-memory exception instance.
15114
15115         * object.c (out_of_memory): Use the new function.
15116
15117         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
15118         flag is before the custom modifiers. Fixes #49802.
15119
15120 2003-11-16  Martin Baulig  <martin@ximian.com>
15121
15122         * class.c (mono_class_is_open_constructed_type): Implemented the
15123         MONO_TYPE_GENERICINST case.
15124
15125 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
15126
15127         * assembly.c (mono_assembly_fill_assembly_name): New function to
15128         fill out the MonoAssemblyName structure.
15129         (mono_assembly_open): Use the new function.
15130
15131         * icall.c (fill_reflection_assembly_name): New helper function.
15132
15133         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
15134         new function.
15135
15136         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
15137
15138 2003-11-15  Martin Baulig  <martin@ximian.com>
15139
15140         * class.c (mono_class_is_open_constructed_type): New public
15141         function; checks whether a type is an open constructed type,
15142         ie. whether it still contains type parameters.
15143         (mono_class_inflate_generic_type): If we're a type parameter and
15144         the inflated type is also a MONO_TYPE_(M)VAR, return the original
15145         type.
15146
15147         * class.h (MonoGenericInst): Added `guint32 is_open'.
15148
15149         * loader.c (method_from_methodspec): Check whether we're an open
15150         or closed constructed type and set `ginst->is_open'.
15151
15152         * reflection.c (mono_reflection_bind_generic_parameters): Check
15153         whether we're an open or closed constructed type and set
15154         `ginst->is_open'.
15155         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
15156         from open constructed types.
15157
15158 2003-11-15  Martin Baulig  <martin@ximian.com>
15159
15160         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15161         a generic instance (instead of a generic type declaration) with
15162         unbound generic parameters, bind them to our actual types.
15163
15164 2003-11-14  Martin Baulig  <martin@ximian.com>
15165
15166         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
15167
15168         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15169         an interface type, populate `res->interfaces' with instantiated
15170         versions of all the interfaces we inherit.
15171
15172 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
15173
15174         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
15175         when MONO_PATH is set but doesn't contain the install dir.
15176
15177 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15178
15179         * icall.c:
15180         (ves_icall_Type_GetInterfaces): don't return an interface twice when
15181         it's also implemented in base classes. Fixes bug #50927.
15182
15183 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
15184
15185         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
15186         if this method is called from a finalizer. Fixes #50913.
15187
15188 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
15189
15190         * threads.c: Implement VolatileRead/VolatileWrite
15191
15192         * icall.c: Add new icalls for VolatileRead/VolatileWrite
15193
15194 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15195
15196         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
15197         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
15198         2.95.3.
15199
15200         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
15201         from Peter Ross (pro@missioncriticalit.com).
15202         
15203 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
15204
15205         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
15206
15207 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15208
15209         * assembly.c (mono_assembly_load_references): Disable check because it
15210         triggers on older corlibs which lots of people have.
15211
15212 2003-11-12  Jackson Harper  <jackson@ximian.com>
15213
15214         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
15215         load corlib.dll if mscorlib.dll is not found.
15216         * assembly.h: Remove corlib name define.
15217         * class.c:
15218         * domain.c:
15219         * image.c: Change corlib name to mscorlib.
15220         
15221 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15222
15223         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
15224
15225 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
15226
15227         * appdomain.h: Added loader_optimization here to sync with the C#
15228         code, and add disallow_binding_redirects field.
15229
15230 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15231
15232         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
15233
15234         * reflection.c (mono_image_build_metadata): Fix crash on modules
15235         with no types.
15236
15237         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
15238
15239         * icall.c (ves_icall_get_method_info): Return callingConvention as
15240         well.
15241
15242         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
15243         namespaces from the EXPORTEDTYPE table as well.
15244
15245         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
15246         from all modules inside the assembly.
15247         
15248 2003-11-11  Martin Baulig  <martin@ximian.com>
15249
15250         * reflection.c (mono_reflection_bind_generic_parameters): Make
15251         this work for interfaces.
15252
15253 2003-11-11  Martin Baulig  <martin@ximian.com>
15254
15255         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
15256
15257 2003-11-11  Martin Baulig  <martin@ximian.com>
15258
15259         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
15260         "MonoInflatedMethod" and "MonoInflatedCtor".
15261
15262 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15263
15264         * reflection.c (resolution_scope_from_image): Use the assembly table
15265         from the manifest module, since other modules don't have it.
15266
15267         * debug-helpers.c (mono_type_full_name): New helper function.
15268
15269         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15270
15271         * image.c (mono_image_load_file_for_image): New public function which
15272         is a replacement for the load_file_for_image in class.c.
15273
15274         * assembly.c (mono_assembly_load_module): A wrapper for the function
15275         above which does assembly association and reference loading too.
15276
15277         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15278
15279 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15280
15281         * appdomain.c: not all of the attributes for the full assembly name
15282         are required and the order doesn't matter. Fixes bug #50787.
15283
15284 2003-11-10  Dick Porter  <dick@ximian.com>
15285
15286         * locales.c: Use platform-endian UTF16
15287
15288 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15289
15290         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15291         
15292 2003-11-10  Martin Baulig  <martin@ximian.com>
15293
15294         * metadata.c
15295         (mono_metadata_load_generic_params): Make this actually work.
15296
15297         * reflection.c (mono_reflection_bind_generic_parameters): If our
15298         parent is a generic instance, pass all the `types' to it, no
15299         matter whether it has the same number of type parameters or not.
15300
15301 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15302
15303         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15304
15305         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15306         assignment code to this function so it gets called recursively for all
15307         modules.
15308
15309         * image.c (load_modules): Remove the assembly assignment since it is
15310         now done by mono_assembly_load_references.
15311         
15312         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15313         Add 'module' argument.
15314         (mono_module_get_types): New helper function.
15315         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15316
15317 2003-11-08  Martin Baulig  <martin@ximian.com>
15318
15319         * class.c (mono_class_inflate_generic_method): Interface method
15320         don't have a header.
15321
15322         * reflection.c (mono_image_get_methodspec_token): Take an
15323         additional `MonoGenericInst *' argument instead of reading it from
15324         the header; this is necessary to support interfaces.
15325         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15326         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15327         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15328         argument.
15329
15330         * reflection.h (MonoReflectionInflatedMethod): Added
15331         `MonoGenericInst *ginst'.
15332
15333 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15334
15335         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15336
15337 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15338
15339         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15340
15341 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15342
15343         * reflection.c 
15344         (reflection_methodbuilder_from_method_builder):
15345         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15346         initialize a ReflectionMethodBuilder structure.
15347         (mono_image_get_methodbuilder_token):
15348         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15349         tokens which point to types in another module inside the same assembly.
15350
15351         * reflection.c: Use the new helper functions.
15352         
15353         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15354
15355         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15356         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15357
15358         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15359         neccesary.
15360
15361         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15362         current module. Emit the manifest only for the main module.
15363
15364         * reflection.c (mono_image_create_token): Add assertion when a 
15365         memberref needs to be created.
15366
15367         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15368
15369         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15370         larger buffer for the custom attribute blob. Fixes #50637.
15371         
15372 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15373
15374         * threadpool.c: notify listener on async processing handles after
15375         invoking the async callback. Thanks to Zoltan.
15376
15377 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15378
15379         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15380         avoid code duplication.
15381
15382         * reflection.h (MonoDynamicImage): New type which is currently unused,
15383         but will be used through the ref.emit code in place of 
15384         MonoDynamicAssembly.
15385
15386         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15387         object layout.
15388
15389         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15390         a MonoDynamicImage instead of just a MonoImage.
15391         
15392         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15393         icalls to ModuleBuilder but keep their semantics, so they will work
15394         with moduleb->assemblyb. This will change later.
15395         
15396 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15397
15398         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15399         object layout.
15400
15401         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15402         main module, since it is now done by the managed code.
15403
15404 2003-11-03  Martin Baulig  <martin@ximian.com>
15405
15406         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15407         `ginst->klass' here.
15408         (method_encode_methodspec): Don't use the `ginst->generic_method's
15409         klass if it's a generic instance, use `ginst->klass' in this case.
15410
15411 2003-11-03  Martin Baulig  <martin@ximian.com>
15412
15413         * reflection.c (mono_image_get_generic_method_param_info):
15414         Removed, use mono_image_get_generic_param_info() instead.
15415         (mono_image_get_type_info): Write the GenericParam table before
15416         the Method table.  This is neccessary because in the GenericParam
15417         table, type parameters of the class (ie. '!0' etc.) must come
15418         before the ones from its generic methods (ie. '!!0' etc).
15419
15420 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15421
15422         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15423
15424 2003-11-02  Martin Baulig  <martin@ximian.com>
15425
15426         * reflection.c (create_generic_typespec): Take a
15427         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15428         the generic parameters from it.
15429
15430 2003-11-02  Martin Baulig  <martin@ximian.com>
15431
15432         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15433         instead of a `MonoClassField *' since we just need the type.
15434         (create_generic_typespec): New static function.  Creates a
15435         TypeSpec token for a generic type declaration.
15436         (mono_image_get_generic_field_token): New static function.
15437         (mono_image_create_token): If we're a FieldBuilder in a generic
15438         type declaration, call mono_image_get_generic_field_token() to get
15439         the token.
15440
15441 2003-11-02  Martin Baulig  <martin@ximian.com>
15442
15443         * reflection.h
15444         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15445         `MonoReflectionGenericInst *declaring_type' and
15446         `MonoReflectionGenericInst *reflected_type' fields.
15447
15448         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15449         `MonoReflectionGenericInst *declaring_type' and a
15450         `MonoReflectionGenericInst *reflected_type' argument instead of a
15451         single `MonoReflectionGenericInst *type' one.  Set
15452         `res->declaring_type' and `res->reflected_type' from them.
15453         (mono_reflection_inflate_field): Likewise.      
15454
15455 2003-11-02  Martin Baulig  <martin@ximian.com>
15456
15457         * class.c (mono_class_setup_vtable): Don't store generic methods
15458         in the vtable.  
15459
15460 2003-11-02  Martin Baulig  <martin@ximian.com>
15461
15462         * reflection.h (MonoReflectionGenericInst): Added
15463         `MonoReflectionType *declaring_type'.
15464
15465         * reflection.c (mono_reflection_bind_generic_parameters): Use
15466         `if (tb->parent)' instead of `klass->parent'.
15467
15468 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15469
15470         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15471         with an empty ASSEMBLY table.
15472
15473         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15474         variable in the inner and outer loops.
15475
15476 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15477
15478         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15479         argument.
15480
15481         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15482         
15483         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15484         icalls. Instead, do everything in managed code. This is needed since
15485         it is hard to restore the original domain etc. in unmanaged code in the
15486         presence of undeniable exceptions.
15487
15488         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15489         New icalls to push and pop appdomain refs.
15490
15491 2003-10-31  Martin Baulig  <martin@ximian.com>
15492
15493         * class.c (inflate_generic_type): Renamed to
15494         mono_class_inflate_generic_type() and made it public.
15495
15496         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15497         New interncall.
15498
15499         * loader.c (mono_field_from_memberref): Also set the retklass for
15500         typespecs.
15501
15502         * fielder.c (mono_image_get_inflated_field_token): New static
15503         method; creates a metadata token for an inflated field.
15504         (mono_image_create_token, fixup_method): Added support for
15505         "MonoInflatedField".
15506         (fieldbuilder_to_mono_class_field): New static function.
15507         (mono_reflection_inflate_field): New public function.
15508
15509         * reflection.h
15510         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15511         (MonoReflectionInflatedField): New typedef.     
15512
15513 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15514
15515         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15516         for Solaris and other platforms without s6_addr16
15517
15518 2003-10-30  Martin Baulig  <martin@ximian.com>
15519
15520         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15521         argument instead of two.
15522         (mono_class_inflate_generic_signature): Likewise.
15523         (inflate_generic_header): Likewise.
15524         (mono_class_inflate_generic_method): Likewise.  In addition, if
15525         `ginst->klass' is set, it becomes the new `method->klass'.
15526
15527         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15528         field.
15529
15530         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15531         first byte. [FIXME]
15532         (method_encode_methodspec): If we have generic parameters, create
15533         a MethodSpec instead of a MethodRef.
15534         (fixup_method): Added support for "MonoInflatedMethod" and
15535         "MonoInflatedCtor".
15536         (mono_image_create_token): Added support for "MonoInflatedMethod"
15537         and "MonoInflatedCtor".
15538         (inflated_method_get_object): New static function; returns a
15539         managed "System.Reflection.MonoInflatedMethod" object.
15540         (mono_reflection_bind_generic_method_parameters): Return a
15541         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15542         (mono_reflection_inflate_method_or_ctor): Likewise.
15543         (mono_image_get_generic_method_param_info): Initialize unused
15544         fields to zero.
15545         (mono_image_get_generic_param_info): Likewise.
15546
15547         * reflection.h (MonoReflectionInflatedMethod): New public
15548         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15549         "S.R.MonoInflatedCtor" classes.
15550
15551         * loader.c (method_from_memberref): If we're a TypeSpec and it
15552         resolves to a generic instance, inflate the method.
15553
15554 2003-10-28  Dick Porter  <dick@ximian.com>
15555
15556         * object.c (mono_runtime_run_main): Convert command-line arguments
15557         into utf8, falling back to the user's locale encoding to do so.
15558
15559 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15560
15561         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15562         at this time.
15563
15564         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15565
15566         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15567         up icalls at method definition time. Partially fixes #33569.
15568
15569 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15570
15571         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15572         marshalling of arrays. Fixes #50116.
15573
15574         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15575
15576         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15577         points to a vtable in the dying appdomain.
15578
15579         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15580         listeners into unmanaged code inside the lock.
15581
15582         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15583         domains and add some comments.
15584
15585 2003-10-25  Martin Baulig  <martin@ximian.com>
15586
15587         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15588
15589         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15590
15591         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15592         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15593         currently parsing.  Create the generic class and store it in
15594         `generic_inst->klass' before parsing the type arguments.  This is
15595         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15596         for an example.
15597         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15598         to support recursive typespec entries.
15599
15600         * class.c (mono_class_setup_parent): If our parent is a generic
15601         instance, we may get called before it has its name set.
15602         (mono_class_from_generic): Splitted into
15603         mono_class_create_from_generic() and mono_class_initialize_generic().
15604
15605 2003-10-25  Martin Baulig  <martin@ximian.com>
15606
15607         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15608         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15609         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15610         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15611
15612         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15613         (create_typespec): Likewise.
15614         (mono_reflection_bind_generic_parameters): Return a
15615         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15616         (mono_reflection_inflate_method_or_ctor): New public function.
15617
15618         * reflection.h (MonoReflectionGenericInst): New typedef.        
15619
15620 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15621
15622         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15623         inside the domain lock. Fixes #49993.
15624         
15625         * object.c (mono_class_vtable): When typed allocation is used, 
15626         allocate vtables in the GC heap instead of in the mempool, since the
15627         vtables contain GC descriptors which are used by the collector even
15628         after the domain owning the mempool is unloaded.
15629
15630         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15631
15632         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15633         reflect what it does. Also invalidate mempools instead of freeing
15634         them if a define is set.
15635
15636         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15637         of the appdomain.
15638         
15639         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15640         hold the finalizable objects in this domain.
15641
15642         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15643         appdomain.
15644
15645         * appdomain.c (mono_domain_set): New function to set the current
15646         appdomain, but only if it is not being unloaded.
15647
15648         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15649         appdomain which is being unloaded.
15650         
15651         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15652         unloading of the root appdomain.
15653
15654         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15655         icall to execute a method in another appdomain. Intended as a 
15656         replacement for InternalSetDomain, which can confuse the code 
15657         generation in the JIT.
15658
15659         * appdomain.c (mono_domain_is_unloading): New function to determine
15660         whenever an appdomain is unloading.
15661
15662         * appdomain.c (mono_domain_unload): New function to correctly unload
15663         an appdomain.
15664
15665         * assembly.c (mono_assembly_load_references): Check that an assembly
15666         does not references itself.
15667
15668         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15669         domain manually, it asks the finalizer thread to do it, then waits for
15670         the result. Also added a timeout.
15671
15672         * icall.c: Register the new icalls.
15673
15674         * threads.h threads.c: Export the mono_gc_stop_world and 
15675         mono_gc_start_world functions.
15676         
15677         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15678         function to fill out the mempool with 0x2a.
15679
15680 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15681
15682         * reflection.h (MonoReflectionMethodAux): New structure to store
15683         information which is rarely used, thus is not in the MonoMethod
15684         structure.
15685
15686         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15687         store the aux info.
15688
15689         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15690         and marshalling info into the aux structure.
15691
15692         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15693         from the aux structure.
15694
15695         * loader.c (mono_method_get_param_names): Retrieve the param names from
15696         the aux structure.
15697         
15698 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15699
15700         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15701         warning.
15702
15703 2003-10-21  Dick Porter  <dick@ximian.com>
15704
15705         * socket-io.c
15706         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15707         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15708
15709 2003-10-21  Martin Baulig  <martin@ximian.com>
15710
15711         * reflection.c (mono_reflection_bind_generic_parameters):
15712         `klass->parent' is NULL for interfaces.
15713
15714 2003-10-21  Martin Baulig  <martin@ximian.com>
15715
15716         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15717
15718 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15719
15720         * exception.c (mono_exception_from_name_msg): New helper function for
15721         creating exceptions and initializing their message field.
15722
15723         * exception.c: Simplify functions using the new helper.
15724
15725         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15726         New function.
15727
15728         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15729         mono_raise_exception, since otherwise gcc doesn't generate the function
15730         epilog for raise_exception, confusing the stack unwinding in the JIT.
15731         Fixes #45043.
15732
15733         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15734         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15735         Fixes #49499.
15736
15737 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15738
15739         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15740         utf8.
15741
15742 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15743
15744         * icall.c: Removed GetUninitializedObject method because
15745           AllocateUninitializedClassInstance does the same.
15746
15747 2003-10-18  Martin Baulig  <martin@ximian.com>
15748
15749         * class.c (inflate_generic_signature): Renamed to
15750         mono_class_inflate_generic_signature() and made it public.
15751         (my_mono_class_from_generic_parameter): New static function; if we
15752         don't already have the generic parameter's MonoClass, create a
15753         very simple one which is just used internally in the runtime and
15754         not passed back to managed code.
15755
15756         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15757
15758         * metadata.h (MonoMethodSignature): Moved the
15759         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15760         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15761
15762         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15763         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15764         interncall on the MonoMethod class, not on MethodInfo.
15765         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15766         calling mono_reflection_bind_generic_method_parameters() directly.
15767
15768         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15769         return the already computed `method->signature'.
15770         (method_from_methodspec): New static function to load a method
15771         from a MethodSpec entry.
15772         (mono_get_method_from_token): Call the new method_from_methodspec()
15773         for MethodSpec tokens.  
15774         (mono_get_method_from_token): If we're a generic method, load the
15775         type parameters.
15776
15777         * reflection.c (mono_image_get_memberref_token): Allow
15778         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15779         table.
15780         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15781         (mono_image_create_token): First check whether it's a generic
15782         method (so we'd need to create a MethodSpec), then do the other
15783         two alternatives.
15784         (mono_reflection_bind_generic_method_parameters): Return a
15785         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15786         called directly from the interncall.
15787
15788 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15789
15790         * reflection.c (load_public_key): Move loading of the public key
15791         into managed code.
15792
15793         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15794
15795         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15796         fields.
15797
15798         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15799         culture, hash_alg and public_key. Fixes #49555.
15800
15801 2003-10-17  Martin Baulig  <martin@ximian.com>
15802
15803         * class.h (MonoGenericInst): Moved this declaration here and added
15804         `MonoMethod *generic_method'.
15805
15806         * icall.c
15807         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15808         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15809
15810         * metadata.c (mono_metadata_type_equal): Two types of
15811         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15812         index; ie. don't compare the address of the `MonoGenericParam'
15813         structure.
15814         (mono_metadata_load_generic_params): Removed the `MonoMethod
15815         *method' argument.
15816
15817         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15818         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15819
15820         * reflection.c (method_encode_signature): Encode the number of
15821         generic parameters.
15822         (encode_generic_method_sig): New static function.
15823         (method_encode_methodspec): New static function; creates an entry
15824         in the MethodSpec table for a generic method.
15825         (mono_image_get_methodspec_token): New static function.
15826         (mono_image_create_token): Call mono_image_get_methodspec_token()
15827         for generic methods.
15828         (mono_reflection_bind_generic_method_parameters): New public
15829         function.  Instantiates a generic method.
15830
15831 2003-10-16  Martin Baulig  <martin@ximian.com>
15832
15833         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15834         *gen_params' here from MonoMethodHeader.
15835
15836         * metadata.c (mono_metadata_parse_method_signature): If we have
15837         generic parameters, initialize `method->gen_params' and then set
15838         the correct `type->data.generic_param' in all the parameters.
15839
15840 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15841
15842         * threads.c (mono_threads_get_default_stacksize): New function to 
15843         return the default stacksize.
15844
15845         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15846         termination of the finalizer thread, since the previous method had
15847         race conditions. Fixes #49628.
15848
15849         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15850         as for the other managed threads.
15851
15852 2003-10-16  Martin Baulig  <martin@ximian.com>
15853
15854         * class.c (inflate_generic_signature): Copy `generic_param_count'
15855         and `gen_params'.
15856
15857         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15858         New interncall.
15859
15860         * metadata.c (mono_metadata_parse_method_signature): Actually set
15861         the `method->generic_param_count' here.
15862         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15863
15864 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15865
15866         * object.h: Add a new field to TypedRef to simplify the implementation
15867         of the REFANY opcodes in the JIT.
15868
15869         * icall.c: Make use of the new field.
15870
15871         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15872         dynamically.
15873
15874 2003-10-15  Martin Baulig  <martin@ximian.com>
15875
15876         * class.c (mono_class_from_gen_param): Renamed to
15877         mono_class_from_generic_parameter() and moved most of the
15878         functionality from mono_reflection_define_generic_parameter()
15879         here; ie. we create a "real" class here.
15880         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15881         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15882         previously been called.
15883
15884         * class.h (MonoGenericParam): Moved the declaration of this struct
15885         here from metadata.h and added `MonoMethod *method'.
15886
15887         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15888         interncall.
15889
15890         * loader.c (mono_get_method_from_token): If we have any generic
15891         parameters, call mono_metadata_load_generic_params() to read them
15892         from the MONO_TABLE_GENERICPAR.
15893
15894         * metadata.c (mono_metadata_load_generic_params): Added
15895         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15896
15897         * metadata.h (MonoMethodSignature): Replaced
15898         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15899         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15900
15901         * reflection.c (mono_reflection_define_generic_parameter): Moved
15902         most of the functionality into the new
15903         mono_class_from_generic_parameter(); set the `method' field if
15904         we're a method parameter.       
15905
15906 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15907
15908         * marshal.c (emit_struct_conv): if native size is 0
15909         emit no code.
15910
15911 2003-10-14  Martin Baulig  <martin@ximian.com>
15912
15913         * icall.c: The generics API has changed in the spec since it was
15914         added to System.Type; these modifications make it match the spec
15915         again.
15916         (ves_icall_Type_GetGenericParameters): Renamed to
15917         `ves_icall_Type_GetGenericArguments'.
15918         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15919         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15920         `ves_icall_MonoType_get_HasGenericArguments'.
15921         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15922         `ves_icall_MonoType_get_IsGenericParameter'.
15923         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15924         this is no interncall anymore.
15925         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15926         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15927
15928 2003-10-14  Martin Baulig  <martin@ximian.com>
15929
15930         * reflection.c (mono_reflection_bind_generic_parameters): Also
15931         inflate generic methods if we're reading the class from IL.
15932
15933 2003-10-13  Martin Baulig  <martin@ximian.com>
15934
15935         * reflection.c (mono_reflection_define_generic_parameter): This
15936         method isn't called directly from the icall anymore; take a
15937         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15938         method generic parameters.
15939         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15940         (method_builder_encode_signature): Encode generic parameters.
15941         (mono_image_get_method_info): Write generic params to the
15942         MONO_TABLE_GENERICPARAM table.
15943
15944         * reflection.h (MonoReflectionMethodBuilder): Added
15945         `MonoArray *generic_params'.
15946
15947         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15948
15949         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15950         wrapper for mono_reflection_define_generic_parameter().
15951         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15952
15953 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15954
15955         * marshal.h: Add missing function to fix build.
15956
15957         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15958         the SetLastError pinvoke attribute.
15959
15960         * marshal.c (mono_marshal_set_last_error): New helper function called
15961         by the generated code.
15962         
15963         * marshal.c (mono_mb_emit_branch): New helper function.
15964
15965         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15966
15967         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15968         classes as parameters and return values of delegates. Fixes #29256. 
15969
15970 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15971
15972         * locales.c: use gint32 in non HAVE_ICU case
15973
15974 2003-10-11  Martin Baulig  <martin@ximian.com>
15975
15976         * mono-debug.c (mono_debug_add_method): Added a workaround for
15977         bug #48591.
15978
15979 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15980
15981         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15982         delegates passed to native code must use the STDCALL calling 
15983         convention. Fixes #35987.
15984
15985 2003-10-10  Martin Baulig  <martin@ximian.com>
15986
15987         * class.c (inflate_generic_type): If we're inflating for a generic
15988         type instance (and not for a generic method), return
15989         MONO_TYPE_MVAR unchanged.
15990
15991 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15992
15993         * string-icalls.c: Join ignores null strings in the source array.
15994         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15995         * threads.c: GetAvailableTheads is slightly more accurate.
15996
15997 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15998
15999         * threads.h threads.c : add mono_threads_set_default_stacksize
16000         and pass default to CreateThread calls.
16001
16002 2003-10-09  Dick Porter  <dick@ximian.com>
16003
16004         * icall.c:
16005         * locales.h:
16006         * locales.c: Internal calls for constructing CultureInfo and
16007         related objects from libicu (if its available.)
16008
16009 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
16010
16011         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
16012
16013 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16014
16015         * threadpool.c: added an argument to async_invoke_thread that is the
16016         item to process, pass the MonoAsyncResult to the thread start function
16017         when creating a new thread. This way we don't need to acquire any lock
16018         when we're creating a new thread. Readded a semaphore for faster
16019         response times (instead of that Sleep i added).
16020
16021 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
16022
16023         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
16024         get daylight change dates better on Windows, fix handling
16025         of platforms without tm_gmtoff.
16026
16027 2003-10-06  Martin Baulig  <martin@ximian.com>
16028
16029         * class.c (inflate_generic_method): Renamed to
16030         mono_class_inflate_generic_method() and made public.
16031         (mono_class_init): Don't inflate the generic methods here.
16032         (mono_class_from_generic): Added `gboolean inflate_methods'
16033         argument.  Inflate the methods here.
16034
16035         * loader.c (mono_method_get_param_names): Ignore instances of
16036         generic types for the moment.
16037
16038         * reflection.c (fixup_method): Added support for inflated methods.
16039         (mono_image_create_token): Use mono_image_get_methodref_token()
16040         for inflated methods.
16041         (mono_custom_attrs_from_param): Ignore instances of generic types
16042         for the moment.
16043         (mono_reflection_bind_generic_parameters): New public function.
16044         Moved all the functionality from
16045         ves_icall_Type_BindGenericParameters() here and added support for
16046         dynamic types.
16047         (mono_reflection_define_generic_parameter): Initialize
16048         `klass->methods' here.
16049
16050         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
16051         functionality into mono_reflection_define_generic_parameter().
16052         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
16053         TypeBuilder, return that TypeBuilder.
16054
16055 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16056
16057         * appdomain.c: removed mono_delegate_semaphore.
16058
16059         * threadpool.c:
16060         (mono_thread_pool_add): moved hash table creation inside and the thread 
16061         creation outside of the critical region.
16062         (mono_thread_pool_finish): removed obsolete code.
16063         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
16064         continue or exit the thread depending on the queue.
16065
16066 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
16067
16068         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
16069         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
16070         handle more bool marshalling options
16071
16072 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
16073
16074         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
16075         arrays of structs. Also add a more descriptive error message when
16076         a structure member is marshalled as LPArray.
16077
16078 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
16079
16080         * marshal.c (mono_marshal_get_native_wrapper): Add support for
16081         marshalling arrays of complex types. Fixes #29098. Also remove an
16082         usused and incomplete function.
16083
16084 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16085
16086         * gc.c: report heap_size - free_bytes as total memory allocated
16087         (bug#49362).
16088
16089 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
16090
16091         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
16092         fix timezone handling problems on Windows.
16093         
16094         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
16095         asserts when the year is outside the range handled by ms the functions.
16096
16097         * class.c (setup_interface_offsets): If the class is an interface,
16098         fill out its interface_offsets slot.
16099
16100 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16101
16102         * threadpool.c: mark threadpool threads as background.
16103
16104 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
16105
16106         * decimal.c - define DECINLINE to nothing if not using GCC
16107
16108 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
16109
16110         * assembly.c: More refcount fixes.
16111
16112 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16113
16114         * string-icalls.c: if we're not trimming, return the same string.
16115         When not splitting, don't create a new string.
16116
16117 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16118
16119         * image.c:
16120         (mono_image_open): increment the ref_count inside the critical section.
16121
16122 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
16123
16124         * image.c (mono_image_open): Fix reference counting bug.
16125
16126 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
16127
16128         * marshal.c (mono_marshal_type_size) struct alignment changed for 
16129         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
16130         64bits. Avoid leak in mono_marshal_get_native_wrapper when
16131         mono_lookup_pinvoke_call throws.        
16132
16133 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
16134
16135         * reflection.c (mono_reflection_parse_type): Fix #49114.
16136
16137         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
16138         temporary workaround for cygwin header problem.
16139
16140         * object.c (mono_object_isinst): Synchronize this with the code
16141         generated by the JIT for casts.
16142
16143 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
16144
16145         * reflection.c (encode_type): Fix #38332.
16146
16147 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
16148
16149         * marshal.c (mono_marshal_method_from_wrapper): New function to return
16150         the original method from the wrapper method.
16151
16152 2003-09-25  Martin Baulig  <martin@ximian.com>
16153
16154         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
16155         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
16156         (ves_icall_Type_get_IsGenericInstance): New interncall.
16157
16158 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
16159
16160         * object.c: fix cast warning in big endian code.
16161
16162 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
16163
16164         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
16165         
16166 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16167
16168         * assembly.c: don't call check_env from mono_assembly_load. It's
16169         already done once in mono_assemblies_init and may cause headaches when
16170         multiple threads are loading assemblies.
16171
16172 2003-09-19  Martin Baulig  <martin@ximian.com>
16173
16174         * reflection.c (mono_reflection_define_generic_parameter): Don't
16175         allocate `klass->methods', set `klass->flags' to
16176         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
16177
16178 2003-09-18  Martin Baulig  <martin@ximian.com>
16179
16180         * class.c (mono_class_init): Don't create `class->methods' if it's
16181         already initialized.
16182
16183         * metadata.c (mono_metadata_load_generic_params): Make this
16184         actually work.
16185
16186         * reflection.c (mono_reflection_define_generic_parameter): Set
16187         parent class and interfaces from the constraints.
16188
16189         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
16190         to keep this struct in sync with the declaration in TypeBuilder.cs.
16191
16192 2003-09-17  Martin Baulig  <martin@ximian.com>
16193
16194         * metadata.h (MonoType): Replaced the data's `int type_param'
16195         field with `MonoGenericParam *generic_param'.
16196         (MonoGenericParam): Added `MonoClass *klass'.
16197
16198         * class.c (mono_class_from_gen_param): Removed the
16199         `MonoImage *image' and `int type_num' arguments.
16200
16201         * metadata.c (mono_metadata_parse_generic_param): New static
16202         method; creates a MonoGenericParam which just contains the index.
16203         (do_mono_metadata_parse_type): Call
16204         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
16205         MONO_TYPE_MVAR.
16206
16207         * reflection.c (mono_image_typedef_or_ref): Generic type
16208         parameters may be in the same assembly, but never use a typedef
16209         for them.
16210         (mono_reflection_define_generic_parameter): We're now creating a
16211         "real" class for the type parameter; it's now safe to call
16212         mono_class_from_mono_type() on the class'es type, it'll do the
16213         right thing.
16214
16215 2003-09-16  Martin Baulig  <martin@ximian.com>
16216
16217         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
16218         `symfile->range_entry_size' and `symfile->class_entry_size' here;
16219         the `symfile' data structure must be fully initialized before it
16220         gets added to the table.
16221
16222 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
16223
16224         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
16225
16226         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
16227         class init trampolines.
16228
16229 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
16230
16231         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
16232         to the built-in profiler to turn off time and allocation profiling
16233         respectively.
16234
16235 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
16236
16237         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
16238         g_direct_equal.
16239
16240         * debug-helpers.c (mono_method_full_name): Print the wrapper type
16241         in human readable form.
16242
16243 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
16244
16245         * reflection.c icall.c: Fixed warnings.
16246
16247         * image.c (load_class_names): Use a temporary hash table to hold the
16248         namespaces in order to avoid doing many string comparisons.
16249
16250         * image.h: Fix typo.
16251
16252         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
16253         Pass NULL instead of g_direct_equal to the GHashTable constructor 
16254         since the NULL case is short-circuited inside g_hash_table_lookup, 
16255         leading to better performance.  
16256
16257         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
16258         obtain the first custom attribute for a given index. Depends on the
16259         CustomAttribute table being sorted by the parent field.
16260
16261         * reflection.c (mono_custom_attrs_from_index): Use the new function 
16262         for better performance.
16263
16264 2003-09-07  Martin Baulig  <martin@ximian.com>
16265
16266         * class.c (mono_class_init): If we're a generic instance, inflate
16267         all our methods instead of loading them from the image.
16268         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16269
16270 2003-09-07  Martin Baulig  <martin@ximian.com>
16271
16272         * mono-debug-debugger.c: Added support for constructors.
16273
16274 2003-09-06  Martin Baulig  <martin@ximian.com>
16275
16276         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16277         New interncall.
16278
16279         * reflection.c (mono_reflection_setup_generic_class): Call
16280         ensure_runtime_vtable() to create the vtable.
16281
16282 2003-09-05  Martin Baulig  <martin@ximian.com>
16283
16284         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16285         MONO_TYPE_MVAR.
16286
16287 2003-09-04  Martin Baulig  <martin@ximian.com>
16288
16289         * reflection.c (mono_reflection_define_generic_parameter): Generic
16290         parameters start with zero.
16291
16292 2003-09-04  Martin Baulig  <martin@ximian.com>
16293
16294         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16295
16296         * reflection.h (MonoReflectionGenericParam): New typedef.
16297         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16298         the generic parameters from the managed TypeBuilder.
16299
16300         * reflection.c (mono_reflection_define_generic_parameter): New function.
16301         (mono_reflection_create_runtime_class): Encode generic parameters.
16302         (mono_reflection_setup_generic_class): New function; this is
16303         called after adding adding all generic params to the TypeBuilder.
16304         (encode_type): Added MONO_TYPE_VAR.
16305
16306 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16307
16308         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16309         here from the JIT.
16310
16311         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16312         load hook.
16313
16314 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16315
16316         * reflection.h reflection.c class.h class.c: Delete duplicate 
16317         definition of mono_type_get_name () from reflection.c and export the
16318         one in class.c.
16319
16320         * class.c: Class loading fixes from Bernie Solomon 
16321         (bernard@ugsolutions.com).
16322
16323         * reflection.c: Endianness fixes from Bernie Solomon 
16324         (bernard@ugsolutions.com).
16325         
16326 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16327
16328         * assembly.h assembly.c: Define a file format version for AOT
16329         libraries.
16330         
16331         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16332
16333         * appdomain.h (MonoJitInfo): New field to determine whenever the
16334         code is domain neutral.
16335         
16336 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16337
16338         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16339
16340 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16341
16342         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16343         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16344         Avoid caching the result since strings must be domain specific. Fixes
16345         #48050.
16346
16347 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16348
16349         * marshal.c (mono_marshal_init): Make this callable multiple times
16350         since it is hard to find a correct place to call it.
16351
16352         * object.c (mono_runtime_class_init): Execute static constructors in
16353         the correct appdomain.
16354
16355         * image.c (build_guid_table): Handle the case when multiple images have
16356         the same GUID.
16357
16358 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16359
16360         * icall.c: added a couple of icalls for System.Web.
16361
16362 2003-08-28  Martin Baulig  <martin@ximian.com>
16363
16364         * icall.c (ves_icall_Type_BindGenericParameters): Use
16365         `klass->generic_inst' instead of `&klass->byval_arg' in the
16366         mono_type_get_object() call.  The returned type must be
16367         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16368
16369 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16370
16371         * NOTES: New file.
16372
16373         * object.c (mono_class_proxy_vtable): Make it thread safe.
16374
16375         * pedump.c: Fix warning.
16376
16377         * object.c appdomain.h: Get rid of metadata_section. 
16378         It is no longer needed and it was causing deadlocks with domain->lock.
16379
16380         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16381
16382 2003-08-26  Martin Baulig  <martin@ximian.com>
16383
16384         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16385
16386 2003-08-26  Martin Baulig  <martin@ximian.com>
16387
16388         * pedump.c (main): Call mono_metadata_init(),
16389         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16390         and mono_loader_init().
16391
16392 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16393
16394         * loader.h: Add missing include to fix build.
16395
16396         * image.h: mono_image_load_references is no more.
16397
16398         * assembly.c: Reworked assembly loading to make it really thread safe.
16399         After these changes, the assembly returned by mono_assembly_open is
16400         fully initialized, i.e. all its references assemblies are loaded.
16401
16402         * assembly.c (mono_image_load_references): Renamed to 
16403         mono_assembly_load_references, and made private, since clients no
16404         longer need to call it.
16405
16406         * class.c: Removed calls to mono_assembly_load_references, since it was
16407         a source of deadlocks.
16408
16409         * loader.h loader.c class.h class.c: Protect data structures using a 
16410         new lock, the loader lock.
16411
16412         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16413         GPtrArrays only when needed.
16414
16415         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16416         into empty structures by mcs. Fixes pinvoke7.cs.
16417         
16418         * domain.c (mono_init): Call a new initialization function.
16419
16420         * appdomain.c (mono_runtime_init): Call the new initializer function
16421         of the marshal module.
16422
16423         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16424         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16425
16426         * marshal.h marshal.c: Added locks around the wrapper caches to make
16427         this module thread safe.
16428
16429         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16430         this argument. Fixes pinvoke1.exe.
16431
16432 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16433
16434         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16435         enumeration of values. Removed fields to store remote call output values in
16436         MonoAsyncResult. Not needed any more.
16437         * object.c: Initialize call_type and async_result fields in mono_message_init.
16438         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16439         dispatching the message.
16440         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16441         async call to finish. To do it use a message with EndInvoke call type.
16442
16443 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16444
16445         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16446         determines whenever a method has marshalling info.
16447
16448 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16449
16450         * assembly.c: fix the build on windows.
16451
16452 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16453
16454         * object.cs: Fixed bug #47785.
16455
16456 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16457
16458         * string-icalls.c (StringReplace): If their are no occurances of
16459         the old string found return a reference to the supplied
16460         string. This saves some memory and matches MS behavoir.
16461         
16462 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16463
16464         * socket-io.c: fixed compilation for systems that define AF_INET6
16465         and don't define SOL_IP/SOL_IPV6.
16466
16467 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16468
16469         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16470         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16471
16472         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16473
16474         * domain.c: Make this module thread safe.
16475
16476         * domain.c (mono_init): Call new initialization function.
16477
16478         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16479         reference types too. Fixes #38812.
16480
16481         * image.c (mono_image_init): Fixed warnings.
16482
16483         * class.c (mono_class_from_typeref): Handle assembly load failure
16484         correctly.
16485
16486         * appdomain.c (add_assemblies_to_domain): Handle the case when
16487         the references of an assembly are not yet loaded.
16488
16489         * metadata.c image.c assembly.c: Moved initialization of global
16490         variables to a separate function called at startup since lazy 
16491         initialization of these variables is not thread safe.
16492         
16493         * image.c assembly.c: Made this module thread safe by adding locks in 
16494         the appropriate places.
16495
16496         * domain.c (mono_init): Call the new initialization functions of the
16497         three modules.
16498
16499 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16500
16501         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16502           make a direct call. It is proxy's work to make the call asynchronous.
16503           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16504           the return values.
16505         * object.cs: mono_method_call_message_new(): read AsyncResult and
16506           state object from parameters list, if this info is requested.
16507         * object.h: Added fields to store remote call output values in
16508           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16509
16510 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16511
16512         * object.h: add needed fields to MonoThread.
16513         * threads.c, threads.h: allow registering a function to cleanup data
16514         allocated per thread by the JIT.
16515
16516 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16517
16518         * loader.h: portability fix by Bernie Solomon
16519         * <bernard@ugsolutions.com>.
16520
16521 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16522
16523         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16524         return a MonoArray. This simplifies the code and also ensures that
16525         the cache allways contains an object reference as a value.
16526
16527         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16528         function.
16529
16530 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16531
16532         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16533         fixes a problem with byte ordering when getting the address family for
16534         a socket.
16535
16536 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16537
16538         * .cvsignore: Added monosn.
16539
16540         * reflection.h reflection.c loader.c: Added support for parameter
16541         marshalling to dynamically created types. Fixes #47295.
16542
16543 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16544
16545         * rand.c: remove useless warnings.
16546
16547 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16548
16549         * class.c: implemented ldtoken for methods and fieldrefs.
16550
16551 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16552
16553         * threadpool.c: when mono_async_invoke was called, no one took care of
16554         monitoring the queue. So if the method invoked took some time and we
16555         got new async invoke requests after 500 ms (the thread created waited
16556         that long in WaitForSingleObject), the new async invoke was not called
16557         until the previous one finished.
16558
16559         This is fixed now. Thanks to Totte for helping with it.
16560
16561 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16562
16563         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16564
16565 2003-08-11  Martin Baulig  <martin@ximian.com>
16566
16567         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16568
16569 2003-08-06  Martin Baulig  <martin@ximian.com>
16570
16571         * mono-debug-debugger.c: Added support for static fields,
16572         properties and methods.
16573
16574 2003-08-06  Martin Baulig  <martin@ximian.com>
16575
16576         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16577         make this work for applications with multiple application domains.
16578
16579 2003-08-04  Martin Baulig  <martin@ximian.com>
16580
16581         * mono-debug-debugger.c: Completely reworked the type support; the
16582         most important thing is that we're now just using one single
16583         `MonoType' instance per type.
16584
16585 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16586
16587         * mono-endian.h, mono-endian.c, icall.c: Added icall
16588         ves_icall_System_Double_AssertEndianity to assert double word endianity
16589         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16590
16591 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16592
16593         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16594         support, icalls and fixes.
16595
16596 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16597
16598         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16599         classes that are a punctuation character in .NET is not the same a
16600         g_unichar_ispunct.
16601
16602 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16603
16604         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16605
16606 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16607
16608         * icall.c: Add new MemCopy internalcall.
16609         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16610         Simplified code; It is not necessary to handle all the cases here,
16611         as the C# code takes care of it.  Only handle the case of the name
16612         resource embedded into the assembly.
16613
16614         Changed signature to return the data pointer and the size of the
16615         data. 
16616
16617 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16618
16619         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16620         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16621
16622 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16623
16624         * socket-io.c: ignore EINTR error in select.
16625
16626 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16627
16628         * class.h, class.c: removed unused subclasses field in MonoClass.
16629
16630 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16631
16632         * icall.c: improve fix of get_base_definition(). If the parent class
16633           doesn't have the mehod, look at the parent of the parent.
16634         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16635           to check if a parameter is an in or out parameter
16636           (PARAM_ATTRIBUTE_IN is not set by default).
16637           mono_method_return_message_restore(): Use mono_class_value_size to
16638           get the size of a value type. mono_type_stack_size (parameterType)
16639           does not return the correct value if parameterType is byRef.
16640           mono_load_remote_field(), mono_load_remote_field_new(),
16641           mono_store_remote_field(), mono_store_remote_field_new():
16642           raise exception if the remote call returns an exception.
16643
16644 2003-07-28  Martin Baulig  <martin@ximian.com>
16645
16646         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16647         method.  This is a wrapper around mono_runtime_invoke() which
16648         boxes the instance object if neccessary.
16649
16650 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16651
16652         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16653         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16654
16655 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16656
16657         * icall.c: disable mcs bug workaround.
16658
16659 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16660
16661         * object.c (mono_runtime_class_init): Take the metadata_section
16662         mutex before obtaining the domain mutex.
16663
16664         * appdomain.h: Added definition of metadata_section mutex here. 
16665
16666         * object.c: define metadata_mutex here.
16667
16668 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16669
16670         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16671         fixed.
16672
16673 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16674
16675         * reflection.c: Fix bug #46669
16676
16677 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16678
16679         * exception.c:
16680         * exception.h:
16681         * icall.c:
16682         * object.h: fill in the type name for TypeLoadException.
16683
16684 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16685
16686         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16687         relationship between TypeBuilders while compiling corlib) and bug
16688         45993 (Array types returned from the runtime while compiling
16689         corlib were from the loaded corlib).
16690
16691 2003-07-22  Martin Baulig  <martin@ximian.com>
16692
16693         * mono-debug-debugger.c: Reworked the type support a bit more;
16694         distinguish between types and classes.
16695
16696 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16697
16698         * icall.c: add IsArrayImpl icall.
16699
16700 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16701
16702         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16703         initializing real_size only once. Also fix bug #46602.
16704
16705 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16706
16707         * object.c: Renamed mono_metadata_section to metadata_section.
16708
16709 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16710
16711         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16712           empty array if the type is an array. Fixed.
16713           ves_icall_MonoMethod_get_base_definition: if the base method
16714           is abstract, get the MethodInfo from the list of methods of
16715           the class.
16716         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16717           and it was 1-based. Fixed in mono_param_get_objects.
16718
16719 2003-07-20  Martin Baulig  <martin@ximian.com>
16720
16721         * mono-debug.h: Set version number to 31.
16722         (mono_debug_init): Added `MonoDomain *' argument.
16723
16724         * mono-debug-debugger.c: Reworked the type support; explicitly
16725         tell the debugger about builtin types; pass the `klass' address to
16726         the debugger.
16727
16728 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16729
16730         * image.c: Allow new metadata tables to be loaded without a
16731         warning. Also update the warning message to give the new constant value.
16732                 
16733 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16734
16735         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16736         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16737         array type representation changes.
16738
16739 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16740
16741         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16742         on Environment.Exit () call.
16743
16744 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16745
16746         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16747         requires a matching corlib.
16748
16749 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16750
16751         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16752           Committed again without the CRs.
16753         
16754 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16755
16756         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16757           getting it from the "this" socket instance. Did not work
16758           if the socket is a subclass of Socket.
16759           Also fixed bug #35371.
16760
16761 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16762
16763         * metadata.c: fixed size for TypedByRef.
16764         * loader.c: when searching for a method, consider the vararg amrker.
16765         * unicode.c, decimal.c: constify some arrays.
16766
16767 2003-07-15  Dick Porter  <dick@ximian.com>
16768
16769         * socket-io.c: Fixed compilation for gcc < 3.2.
16770
16771         Fixed compilation for machines that don't have AF_INET6 (thanks to
16772         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16773
16774         Fixed compile warnings.
16775         
16776         Fixed formatting and line endings.
16777
16778 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16779
16780         * socket-io.h:
16781         * socket-io.c: Added IPv6 support.
16782
16783 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16784
16785         * class.c (mono_class_is_assignable_from): New function to implement
16786         the is_assignable_from logic. Used by mono_object_isinst, 
16787         Type::IsAssignableFrom () and the interpreter.
16788
16789         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16790         Object, even interfaces.
16791         
16792         * object.c (mono_object_isinst): Implement in terms of 
16793         is_assignable_from.
16794
16795         * icall.c (ves_icall_type_is_assignable_from): New icall.
16796
16797 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16798
16799         * domain.c (foreach_domain): fix compiler warning.
16800
16801 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16802
16803         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16804         not available on all plattforms
16805
16806 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16807
16808         * image.h image.c: Store the metadata version string in MonoImage.
16809         * icall.c: New icall to retrieve the image version.
16810         * reflection.c (create_dynamic_image): Fill in the image version field
16811         * reflection.c (build_compressed_metadata): Use the image version
16812         from the image structure.
16813
16814 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16815
16816         * appdomain.c: modified comment.
16817         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16818         That will be its last iteration when mono_gc_cleanup is called from
16819         mono_runtime_cleanup and before the domain is unloaded.
16820
16821         Fixes bug #45962.
16822
16823 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16824
16825         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16826         attributes.
16827
16828 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16829
16830         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16831         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16832         Bernie Solomon <bernard@ugsolutions.com>.
16833
16834 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16835
16836         * object.c, object.h: provide mono_object_new_fast() for faster
16837         allocation in some special cases.
16838
16839 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16840
16841         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16842         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16843
16844 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16845
16846         * threadpool.c: fix leaks.
16847
16848 2003-07-01  Dick Porter  <dick@ximian.com>
16849
16850         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16851         using MonoGHashTables.  Fixes threadpool bug posted to list.
16852
16853 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16854
16855         * image.h, image.c: added support to load an assembly from a byte array.
16856         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16857         assembly bundle support.
16858
16859 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16860
16861         * threadpool.c (mono_thread_pool_add): keep a reference to the
16862         AsyncResult to prevent GC
16863
16864 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16865
16866         * class.c: leak fix.
16867
16868 2003-06-25  Dick Porter  <dick@ximian.com>
16869
16870         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16871         for the async object, the WaitHandle object will close the handle.
16872         Fixes bug 45321.
16873
16874 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16875
16876         * class.c: in mono_array_class_get (), lookup from the hash with the
16877         same type we insert: this works around a bug in
16878         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16879         lluis. The real fix will have to wait for after the release.
16880
16881 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16882
16883         * icall.c: fix memory leak when getting type members.
16884
16885 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16886
16887         * reflection.c: added more pubtoken special cases.
16888
16889 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16890
16891         * class.c: handle field offset correctly when class size
16892         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16893
16894 2003-06-20  Martin Baulig  <martin@ximian.com>
16895
16896         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16897         *image' field.
16898
16899 2003-06-20  Martin Baulig  <martin@ximian.com>
16900
16901         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16902
16903 2003-06-20  Martin Baulig  <martin@ximian.com>
16904
16905         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16906         just distinguish between variables in registers and variables at
16907         an offset relative to a register.
16908
16909 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16910
16911         * icall.c: #ifdef out latest changes until mcs is fixed.
16912
16913 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16914
16915         * icall.c: return members in metadata order.
16916
16917 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16918
16919         * icall.c: avoid infinite loop in GetTimeZoneData.
16920
16921 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16922
16923         * icall.c: added Marshal.Prelink/All icalls.
16924
16925 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16926
16927         * object.c, object.h: fix warnings and do some overflow checking
16928         when creating arrays.
16929
16930 2003-06-17  Dick Porter  <dick@ximian.com>
16931
16932         * file-io.h:
16933         * file-io.c: File attributes need to be tweaked slightly when
16934         passed from the managed to the w32 world.
16935
16936 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16937         * profiler.h profiler-private.h profiler.c: Rework last patch
16938         based on suggestion by Paolo.
16939         
16940 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16941
16942         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16943         instruction level coverage data collection.
16944         * profiler.h profiler.c (: Added new callback function which can be
16945         used by the profiler to limit which functions should have coverage
16946         instrumentation.
16947         * profiler.c (mono_profiler_load): Call g_module_build_path to
16948         generate the file name of the profiler library.
16949
16950 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16951
16952         * profiler.c, profiler.h, profiler-private.h: added basic block 
16953         coverage profiling API.
16954
16955 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16956
16957         * reflection.c (mono_reflection_create_runtime_class): Add support
16958         for events in dynamically generated code.
16959
16960         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16961         not allocated.
16962
16963 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16964
16965         * icall.c: when getting timezone info, return reasonable values if we
16966         can't get the actual data.
16967
16968 2003-06-14  Dick Porter  <dick@ximian.com>
16969
16970         * threads.c (start_wrapper): Remove the reference to the thread
16971         object in the TLS data, so the thread object can be finalized.
16972         This won't be reached if the thread threw an uncaught exception,
16973         so those thread handles will stay referenced :-( (This is due to
16974         missing support for scanning thread-specific data in the Boehm GC
16975         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16976
16977 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16978
16979         * reflection.c: ensure streams and tables are first allocated with
16980         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16981
16982 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16983
16984         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16985
16986 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16987
16988         * reflection.c (mono_reflection_create_runtime_class): Add support for
16989         properties to dynamically created classes.
16990         * reflection.c: Fix a few places where non-MonoObjects were inserted
16991         into the tokens hashtable.
16992
16993 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16994
16995         * object.c: some support to handle out of memory exceptions.
16996
16997 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16998
16999         * marshal.c (mono_marshal_get_native_wrapper): support reference
17000         return types
17001
17002 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17003
17004         * object.h, object.c: more portability stuff from Bernie Solomon.
17005         Unexport mono_object_allocate(). Added mono_object_unbox ().
17006         Set exitcode when an unhandled exception is thrown.
17007
17008 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
17009
17010         * marshal.c (mono_marshal_get_native_wrapper): use custom
17011         marshaler for return types.
17012
17013 2003-06-10  Dick Porter  <dick@ximian.com>
17014
17015         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
17016         ip_mreq is available
17017
17018 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
17019
17020         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
17021         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
17022         by Bernie Solomon <bernard@ugsolutions.com>.
17023
17024 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
17025
17026         * gc.c (mono_gc_init): Avoid error message on shutdown when
17027         GC_DONT_GC=1 is used.
17028
17029         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
17030         New icall to return the GUID of a module.
17031
17032 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
17033
17034         * class.c: ensure instance size always includes the parent's size
17035         even whem class size is set explicitly (fixes bug#44294).
17036
17037 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17038
17039         * profiler.h, profiler.c: made the simple profiler thread-safe,
17040         get more accurate timing info. Allow the loading of an
17041         externally-developed profiler module.
17042
17043 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
17044
17045         * marshal.c (mono_marshal_get_native_wrapper): improved
17046         class/byref arguments.
17047         (mono_marshal_get_native_wrapper): better string marshaling support.
17048
17049 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
17050
17051         * class.c: ensure .pack and .size are handled correctly and
17052         simplified layout of static fields.
17053
17054 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
17055
17056         * appdomain.c
17057         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
17058
17059         * loader.c (mono_lookup_pinvoke_call): look for modules in the
17060         current directory (fix bug 44008)
17061
17062 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
17063
17064         * marshal.c (mono_marshal_get_native_wrapper): started support for
17065         custom marshalers.
17066         (mono_delegate_to_ftnptr): consider marshalling specifications
17067
17068 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
17069
17070         * reflection.c, reflection.h: emit custom marshal info.
17071
17072 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17073
17074         * object.c: free the GError.
17075         * icall.c: added CloseEvent_internal.
17076         * threads.[ch]:
17077         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
17078         call.
17079
17080 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
17081
17082         * loader.c (mono_method_get_signature): Add support for dynamic
17083         assemblies.
17084
17085 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
17086
17087         * reflection.c: fixed bug #43905.
17088
17089 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
17090
17091         * class.c, domain.c, icall.c, metadata.h, object.h: support for
17092         handling TypedReference and ArgIterator.
17093         * loader.c, loader.h: added function to get signature at call site.
17094
17095 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17096
17097         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
17098         data readonly. Buglets and warning fixes. Some MethodSpec support.
17099
17100 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
17101
17102         * class.h, class.c, object.c: remove relative numbering support.
17103
17104 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
17105
17106         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
17107         free the string, until we get a chance to fix Gtk#
17108
17109 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17110
17111         * marshal.c: revert last patch.
17112
17113 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
17114
17115         * icall.c: updates for new mono_class_vtable() not calling
17116         the type constructor anymore.
17117
17118 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17119
17120         * object.h, object.c: separate vtable creation from type
17121         initialization. Make running the .cctor thread safe.
17122
17123 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
17124
17125         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
17126
17127 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
17128
17129         * loader.c (mono_get_method): consider calling convention
17130
17131 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
17132
17133         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
17134         to return the invisible global type for a module.
17135
17136         * reflection.c (mono_image_build_metadata): Emit global fields too.
17137
17138 2003-05-20  Peter Williams  <peterw@ximian.com>
17139
17140         * loader.c (mono_lookup_internal_call): Add a few newlines.
17141
17142 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
17143
17144         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
17145         literal strings.
17146
17147         * appdomain.c (set_domain_search_path): Recalculate search path when
17148         AppDomainSetup.PrivateBinPath changes.
17149
17150         * object.c (mono_class_compute_gc_descriptor): It turns out some
17151         parts of the class libs (like System.Thread) holds pointers to
17152         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
17153         to treat native int a pointer type here.
17154         
17155 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
17156
17157         * appdomain.h, domain.c: add hashtable for jump target resolution.
17158
17159 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
17160
17161         * reflection.h reflection.c icall.c: Added new icalls 
17162         GetManifestResourceInfoInternal, GetModulesInternal and support
17163         infrastructure.
17164
17165 2003-05-16  Dick Porter  <dick@ximian.com>
17166
17167         * icall.c:
17168         * file-io.h:
17169         * file-io.c: Implement System.IO.MonoIO::GetTempPath
17170
17171 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
17172
17173         * object.c: mono_store_remote_field: little fix to previous patch.
17174
17175 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17176
17177         * class.c: add constructors to array classes.
17178         * icall.c: special case array construction for InternalInvoke (),
17179
17180 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
17181
17182         * class.h class.c reflection.c object.c: Added support for field
17183         defaults in dynamically generated classes.
17184
17185 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
17186
17187         * reflection.c: properly encode charset for ddlimport.
17188
17189 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
17190
17191         * threads.c: allow compiling without GC.
17192
17193 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17194
17195         * appdomain.h, object.c, object.h, threads.c, threads.h: added
17196         handling of thread static data.
17197
17198 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17199
17200         * reflection.h, reflection.c: added mono_custom_attrs_free ().
17201
17202 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
17203
17204         * class.c (mono_array_class_get): always set the serializable flags
17205         (mono_array_class_get): always set the SEALED attribute for array types
17206
17207 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
17208
17209         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
17210         attributes (fix for bug 42021).
17211
17212 2003-05-12  Dick Porter  <dick@ximian.com>
17213
17214         * gc.c: Don't run finalizers when the finalizer thread is
17215         finishing up, because the default domain has already been
17216         destroyed.
17217
17218 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
17219
17220         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
17221         value is null, we should throw an exception.   This is slightly
17222         different than the other conventions used for the constructor.
17223
17224 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17225
17226         * socket-io.c: fixed windows build.
17227
17228 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17229
17230         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
17231
17232 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
17233
17234         * object.c (mono_string_new_wrapper): Compatibility fix for MS
17235         compilers.
17236
17237 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
17238
17239         * class.c (mono_class_layout_fields): Add experimental GC aware
17240         auto layout facility. Requires class library changes to work correctly.
17241
17242         (mono_class_setup_vtable): Avoid overriding explicit interface
17243         method implementations. Fixes iface3.exe test.
17244
17245         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
17246         object reference.
17247         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
17248         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
17249
17250         * metadata.h: Add new type classification macro which determines
17251         whenever the type holds an object reference.
17252
17253 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
17254
17255         * marshal.c (mono_marshal_get_native_wrapper): cleanups
17256
17257 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
17258
17259         * gc.c (finalizer_thread): Work around a GC bug.
17260
17261 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
17262
17263         * marshal.c (emit_struct_conv): allow unions
17264
17265         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17266
17267 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17268
17269         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17270
17271 2003-05-06  Martin Baulig  <martin@ximian.com>
17272
17273         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17274
17275 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17276
17277         * socket-io.c:
17278         (Select_internal): allow NULLs, don't create arrays if not needed.
17279         Coupled with Socket.cs changes.
17280
17281         * threadpool.c:
17282         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17283         register a finalizer for it that will close the semaphore handle. This
17284         fixes the leak and make Lupus' test run with > 4080 loops.
17285
17286 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17287
17288         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17289         Jerome Laban (bug #42287)
17290
17291 2003-05-02  Martin Baulig  <martin@ximian.com>
17292
17293         * debug-mono-symfile.h
17294         (MonoSymbolFile): Moved declaration into mono-debug.h.
17295         (MonoDebugMethodJitInfo): Likewise.
17296         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17297         argument.
17298         (_mono_debug_address_from_il_offset): Take a
17299         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17300
17301         * mono-debug.h
17302         (MonoDebugDomainData): New struct.
17303         (mono_debug_get_domain_data): New function.
17304         (mono_debug_add_method): Take an additional `MonoDomain *'
17305         argument.
17306         (mono_debug_source_location_from_address): Likewise.
17307         (mono_debug_il_offset_from_address): Likewise.
17308         (mono_debug_address_from_il_offset): Likewise.
17309
17310 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17311
17312         * reflection.c: one more check for null type in custom attrs.
17313
17314 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17315
17316         * reflection.c: avoid warning (comparison is always false due to limited
17317         range of data type).
17318
17319 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17320
17321         * icall.c: throw an exception in Type.GetField if the argument 'name'
17322         is NULL.
17323
17324 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17325
17326         * reflection.c: fixed handling of enums in named arguments to custom
17327         attributes (bug #42123).
17328
17329 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17330
17331         * reflection.c: use the right array element type and handle
17332         a null for a Type argument, too.
17333
17334 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17335
17336         * reflection.c: handle arrays as arguments to custom attributes.
17337
17338 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17339
17340         * reflection.c: handle a string value in a custom attr
17341         ctor that takes an object.
17342
17343 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17344
17345         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17346         (fix bug #42063)
17347
17348 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17349
17350         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17351
17352 2003-04-27  Martin Baulig  <martin@ximian.com>
17353
17354         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17355         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17356         MONO_DEBUGGER_EVENT_BREAKPOINT.
17357         (mono_breakpoint_trampoline_code): Removed.
17358         (mono_debugger_event_handler): The last argument is now a
17359         `guint32'.
17360         (mono_debugger_insert_breakpoint_full): Removed the
17361         `use_trampoline' argument.
17362         (mono_debugger_method_has_breakpoint): Likewise.
17363         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17364         mono_debugger_breakpoint_callback(); take the method and
17365         breakpoint number as arguments.
17366
17367 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17368
17369         * metadata.c: fix off by one when loading parameters attributes.
17370
17371 2003-04-24  Martin Baulig  <martin@ximian.com>
17372
17373         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17374
17375 2003-04-24  Martin Baulig  <martin@ximian.com>
17376
17377         * mono-debug-debugger.c: Moved all code which interacts with the
17378         Mono Debugger here.
17379
17380         * debug-mono-symfile.c: This code now just deals with the symbol
17381         file itself, the debugger code is now in mono-debug-debugger.c.
17382
17383 2003-04-23  Martin Baulig  <martin@ximian.com>
17384
17385         * mono-debug.c (mono_debug_source_location_from_il_offset):
17386         New method; like mono_debug_source_location_from_address(), but
17387         takes an IL offset instead of a machine address.
17388
17389 2003-04-23  Martin Baulig  <martin@ximian.com>
17390
17391         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17392         `line' field; this is now computed by the debugger.
17393
17394 2003-04-23  Martin Baulig  <martin@ximian.com>
17395
17396         * mono-debug.[ch]: New files.  This is the new debugging interface.
17397
17398         * mono-debug-debugger.[ch]: New files.  Moved all code which
17399         interacts with the Mono Debugger here.
17400
17401 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17402
17403         * domain.c (mono_init): initialize mono_defaults.monitor_class
17404
17405 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17406
17407         * reflection.c (method_encode_code): Add a spicy exception to help
17408         future compiler authors.
17409
17410 2003-04-21  Martin Baulig  <martin@ximian.com>
17411
17412         * icall.c
17413         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17414         Make this work with relative pathnames; g_filename_to_uri() needs
17415         an absolute filename.
17416
17417 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17418
17419         * icall.c: Track name changes in Object and ValueType.
17420
17421 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17422
17423         * metadata.c (mono_type_stack_size): size should be a multiple of
17424         sizeof (gpointer)
17425
17426 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17427
17428         * gc.c:
17429         (internal_domain_finalize): moved into mono_domain_finalize. No need
17430         to create another thread because the finalizers will be run in the
17431         finalizer thread.
17432         
17433         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17434         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17435         to be run (MS does this too).
17436
17437 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17438
17439         * object.c (mono_class_compute_gc_descriptor): Update comment.
17440
17441         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17442
17443         * image.h: Add synchronized wrapper cache.
17444
17445         * image.c (do_mono_image_open): Initialize cache.
17446
17447         * reflection.c (create_dynamic_mono_image): Initialize cache.
17448
17449 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17450
17451         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17452         ves_icall_System_Buffer_ByteLengthInternal.
17453
17454 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17455
17456         * reflection.c: setup klass->nested_in earlier. Allow
17457         a dash in the assembly name.
17458
17459 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17460
17461         * metadata.c (mono_type_to_unmanaged): dont access
17462         type->data.klass for MONO_TYPE_OBJECT
17463         (mono_type_to_unmanaged): consider System.Delegate class
17464
17465 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17466
17467         * class.c: just setup supertypes in the proper place instead of
17468         initializing the full element class for arrays.
17469
17470 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17471
17472         * class.c: ensure the element class of arrays is initialized.
17473         Setup the supertype info for array classes, too.
17474
17475 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17476
17477         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17478
17479 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17480
17481         * Makefile.am: re-added -m option when running cygpath. This way,
17482         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17483         separator.
17484         * mono-config.c: same codepath for locating mono config file for WIN32
17485         and the rest.
17486         * assembly.c: if mono_assembly_setrootdir is called, don't override
17487         the value set.
17488
17489 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17490
17491         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17492         MONO_ASSEMBLIES variable.
17493
17494 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17495
17496         * icall.c: added Assembly::GetNamespaces() icall.
17497
17498 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17499
17500         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17501
17502 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17503
17504         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17505         * object.c: fixed bug in the construction of vtable for proxies
17506
17507 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17508
17509         * object.c (mono_array_new): Mark mono_array_new as an icall.
17510
17511 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17512
17513         * class.c: fixed test for public method when overriding interfaces.
17514         Closes bug #40970.
17515
17516 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17517
17518         * appdomain.h, domain.c: added mono_domain_foreach() to
17519         be able to access the currently loaded appdomains.
17520         * object.c: make string interning work across sppdomains.
17521         Mark some functions for use as icalls.
17522
17523 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17524
17525         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17526
17527         * reflection.h reflection.c: Allocate long living data using 
17528         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17529
17530         * reflection.c: Double the allocation size in streams instead of
17531         increasing it, to prevent unneccesary copying on large assemblies.
17532         
17533         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17534         creation if the assembly does not have the Run flag set.
17535
17536 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17537
17538         * class.h: avoid the C++ keywords in header files (Jerome Laban
17539         spotted and fixed this).
17540
17541 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17542
17543         * object.c:
17544         (mono_unhandled_exception): fill in the arguments for the
17545         UnhandledException event. Only trigger that event for the default
17546         domain (as MS does).
17547
17548 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17549
17550         * object.c: Improve typed allocation stuff based on suggestions from
17551         Paolo. Also turn it on if the GC library supports it.
17552
17553 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17554
17555         * object.c object.h class.h: Added experimental typed allocation
17556         facility using the interfaces in gc_gcj.h.
17557
17558         * os/gc_wrapper.h: Added new include files.
17559         
17560 2003-04-03  Martin Baulig  <martin@ximian.com>
17561
17562         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17563         which is not yet enabled by default.
17564
17565         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17566         functions.
17567         (mono_gc_lock, mono_gc_unlock): New static functions.
17568
17569         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17570         functions; stop/start the world for the garbage collector.  This
17571         is using the windows API; we need to complete the SuspendThread()/
17572         ResumeThread() implementation in the io-layer to make this work on Unix.
17573         (mono_gc_push_all_stacks): New public function; tells the garbage
17574         collector about the stack pointers from all managed threads.
17575
17576 2003-04-03  Martin Baulig  <martin@ximian.com>
17577
17578         * object.h (MonoThread): Added `gpointer stack_ptr'.
17579
17580         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17581
17582 2003-04-03  Martin Baulig  <martin@ximian.com>
17583
17584         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17585
17586 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17587
17588         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17589         field.last.
17590
17591 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17592
17593         * loader.c (mono_lookup_internal_call): Report the corlib that is
17594         out of sync.
17595
17596 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17597
17598         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17599         System.DBNull (it's class not valuetype).
17600
17601 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17602
17603         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17604         if the array method was already assigned a token (fixes bug#40646).
17605
17606 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17607
17608         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17609         if no assembly is given.
17610
17611 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17612
17613         * metadata.h: Added the new tables.
17614
17615         * row-indexes.h: Added definitions for new tables.
17616
17617         * metadata.c: Add schemas for new tables, and add support for
17618         computing the sizes of them.
17619
17620         * class.c: Update for handling the new type cases.
17621
17622 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17623
17624         * metadata.h (MONO_TYPE_IS_VOID): new macro
17625
17626 2003-03-31  Martin Baulig  <martin@ximian.com>
17627
17628         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17629
17630         * threads.c (mono_thread_new_init): Call `thread_created' in the
17631         mono_thread_callbacks.
17632
17633 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17634
17635         * loader.h: added marshalbyrefobject_class to mono_defaults
17636         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17637         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17638           generation of output parameters.
17639           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17640         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17641           contextbound and the target object belongs to the context of the caller.
17642         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17643         * object.c: Implemented support for interfaces and abstract classes
17644           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17645           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17646
17647 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17648
17649         * class.h class.c (mono_class_is_subclass_of): New function.
17650         
17651         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17652         routines for most common case (calls from ArrayList::ToArray).
17653
17654         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17655         routine so programs which call Environment::Exit() can be profiled.
17656
17657         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17658         Added MONO_ARCH_SAVE_REGS.
17659
17660         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17661
17662 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17663
17664         * blob.h: Add a couple of new MonoType types definitions.
17665
17666         * tabledefs.h: Add a couple of new call convs.
17667
17668 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17669
17670         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17671         the layout of the class.
17672
17673         * reflection.c (alloc_table): double the size on overflow to avoid
17674         unnecessary copying.
17675
17676         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17677         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17678         null so it can be garbage collected.
17679         
17680 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17681
17682         * reflection.c (mono_reflection_get_type): Return the resolved type
17683         only if it is in the assembly we searched.
17684
17685         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17686
17687         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17688         method.
17689
17690 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17691
17692         * appdomain.c:
17693         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17694         the right one is 'file:///blah', but MS allows it.
17695         * assembly.c:
17696         (mono_assembly_open): allow 'file://blah'
17697
17698         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17699
17700 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17701
17702         * socket-io.c: fixes bug #40310.
17703
17704 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17705
17706         * reflection.c (mono_reflection_parse_type): handle deeply nested
17707         types correctly.
17708
17709         * reflection.c (mono_image_create_token): Use unique token values
17710         since they will be put into a hash table.
17711
17712         * class.c (mono_class_setup_vtable): If a method occurs in more than
17713         one place in the vtable, and it gets overriden, then change the
17714         other occurances too.
17715
17716         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17717         object as return type.
17718
17719 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17720
17721         * icall.c: Deleted "ToString" implementation for double and float
17722         because they are full implemented in managed code.
17723
17724 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17725
17726         * reflection.c, reflection.h: implemented and exported functions
17727         to retrieve info about custom attributes.
17728
17729 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730
17731         * appdomain.c: moved Uri handling to assembly.c
17732         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17733         work when using a file Uri in *nix and windows.
17734
17735         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17736         GetReferencedAssemblies.
17737
17738 2003-03-18  Dick Porter  <dick@ximian.com>
17739
17740         * icall.c: Rename a couple of internal calls
17741
17742         * threads.c: Set the thread state to Stopped when a thread exits.
17743         Fixes bug 39377.
17744
17745 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17746
17747         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17748         New icall.
17749
17750         * object.c (mono_class_vtable): fix warning.
17751
17752 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17753
17754         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17755
17756         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17757         memory.
17758         (method_encode_clauses): Create exception info structures in the right
17759         order.
17760         (mono_reflection_setup_internal_class): Initialize supertypes field.
17761
17762         * class.c object.c: Handle interfaces which implement other interfaces 
17763         correctly.
17764
17765         * class.h class.c: Move the supertypes array initialization code into 
17766         a separate function so it can be used for dynamic types too. Also call
17767         it earlier, in mono_class_init(), since it can be used before the
17768         type is initialized.
17769
17770 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17771
17772         * Makefile.am:
17773         * assembly.c:
17774         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17775
17776         * appdomain.c:
17777         * appdomain.h:
17778         * marshal.c:
17779         * object.c: remove warnings.
17780
17781 2003-03-13  Martin Baulig  <martin@ximian.com>
17782
17783         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17784         (MonoDebugLexicalBlockEntry): New types.
17785
17786         * debug-mono-symfile.c
17787         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17788
17789 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17790
17791         * process.c: ret can be any non-zero value accroding to MS doc.
17792
17793 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17794
17795         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17796         fixing a warning for a miss-used prototype, would have cause
17797         random memory corruption.
17798
17799 2003-03-07  Martin Baulig  <martin@ximian.com>
17800
17801         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17802         getting really annoying ....
17803
17804 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17805
17806         * reflection.c (fixup_method): added support for array methods.
17807
17808 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17809
17810         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17811         (pointed out by Michael Adams).
17812
17813 2003-03-04  Dick Porter  <dick@ximian.com>
17814
17815         * icall.c: Temporarily reverted the Double and Single ToString()
17816         change, because it broke nunit.
17817
17818 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17819
17820         * object.h, threads.h: make include files compatible with C++
17821         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17822
17823 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17824
17825         * icall.c: Erased ToString helper functions for Double and Single.
17826         Now, that implementations ar all in managed code (Double and Single
17827         Formatters).
17828
17829 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17830
17831         * appdomain.c: Added method for initializing the default context of
17832         a domain. Added internal call for getting the default context.
17833         * appdomain.h: Added context variable in MonoDomain struct.
17834         * domain.c: mono_domain_set also sets the default context of the domain
17835         * icall.c: Mapped internal method InternalGetDefaultContext.
17836         * object.c: mono_object_get_virtual_method returns always a remoting
17837         wrapper if the object is a transparent proxy.
17838         mono_runtime_invoke_array: when creating an object by calling the
17839         constructor, if the created object is a proxy, then the constructor should
17840         be called using the a remoting wrapper.
17841
17842 2003-03-03  Dick Porter  <dick@ximian.com>
17843
17844         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17845         variable so it compiles on solaris.  Problem spotted by
17846         Christopher Taylor <ct@cs.clemson.edu>
17847
17848 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17849
17850         * appdomain.c:
17851         (get_info_from_assembly_name): don't leak value.
17852
17853         * icall.c:
17854         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17855         result.
17856
17857 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17858
17859         * assembly.c: export mono_image_load_references ().
17860         * class.c: handle function pointers. mono_class_from_name() now
17861         supports nested type names directly.
17862
17863 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17864
17865         * reflection.h reflection.c: Encode already created dynamic methods 
17866         and fields correctly as a DEF instead of a REF.
17867
17868         * reflection.c: Get rid of the force_ref argument to 
17869         mono_image_typedef_or_ref since it was wrong in the first place.
17870
17871         * string-icalls.c: add error checking to string constructors according
17872         to the MSDN docs.
17873
17874         * reflection.c: Emit types in the order their TypeBuilders were 
17875         created. Previously, a new table index was assigned to each type before
17876         the tables were emitted. This was wrong because the signature blob
17877         might already refer to a type by its original table index.
17878
17879 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17880
17881         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17882         change.
17883         
17884 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17885
17886         * Makefile.am: make assemblies dir have \ instead of / on windows.
17887
17888 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17889
17890         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17891         iterate over the NESTEDCLASS table using a linear search since the
17892         table is not guaranteed to be sorted by the secondary key.
17893
17894         * class.c (mono_class_create_from_typedef): fixed up call to
17895         mono_metadata_nesting_typedef.
17896         
17897 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17898
17899         * marshal.c (mono_string_to_byvalstr): clear the memory as
17900         suggested by Jerome Laban <jlaban@wanadoo.fr>
17901
17902 2003-02-26  Dick Porter  <dick@ximian.com>
17903
17904         * process.c: Cope with padding in .rsrc blocks
17905
17906 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17907
17908         * metadata.h: reverted the filter_len change, it breaks reflection
17909         
17910 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17911
17912         * metadata.h: added a new field to store the filter_len
17913         
17914
17915 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17916
17917         * reflection.c: handle custom attributes for types and members
17918         created with Reflection.Emit (bug#38422).
17919
17920 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17921
17922         * reflection.c: define RTSpecialName automatically for constructors for
17923         compatibility with MS.NET.
17924
17925         * reflection.c (mono_reflection_create_runtime_class): initialize
17926         nested_in field of dynamically created classes.
17927
17928 2003-02-22  Martin Baulig  <martin@ximian.com>
17929
17930         * debug-mono-symfile.h: Incremented version number.
17931
17932 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17933
17934         * object.h icall.c process.c: fix warnings.
17935
17936 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17937
17938         * appdomain.h appdomain.c:
17939         (mono_domain_try_type_resolve): split the 
17940         name_or_tb argument into a name and a tb argument.
17941         (mono_domain_has_type_resolve): new function to check whenever the
17942         application has registered a TypeResolve event handler.
17943         
17944         * icall.c reflection.h reflection.c: move the type resolve logic into
17945         mono_reflection_get_type () so it will be invoked when 
17946         Assembly::GetType () is called.
17947
17948         * reflection.c:
17949         (mono_reflection_get_type): renamed to get_type_internal.
17950         (mono_reflection_get_type): fixed type name generation so it works 
17951         for nested types too.
17952         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17953         costly type name generation if there is no resolve event handler.
17954
17955 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17956
17957         * class.c, image.c: load exported types from file references.
17958
17959 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17960
17961         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17962           used to cache the managed methods used to create proxies and make 
17963           remote invocation of methods.
17964         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17965           to be remotely created.
17966         * object.c: Modified the method mono_class_vtable(). It now initializes 
17967           the remote flag of the vtable. Modified mono_object_new_specific(), 
17968           so now it checks the remote flag.
17969         * icall.c: Added a couple of internal methods, one for enabling instance 
17970           creation interception for a type, and one for creating objects bypassing
17971           the remote check.
17972
17973 2003-02-18  Martin Baulig  <martin@ximian.com>
17974
17975         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17976         New interncall to get a method's metadata token.
17977
17978         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17979         New interncall for the debugger.
17980
17981 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17982
17983         * class.c (mono_class_setup_vtable): allocate supertype array
17984
17985 2003-02-18  Martin Baulig  <martin@ximian.com>
17986
17987         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17988
17989 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17990
17991         * reflection.c:
17992         (assembly_name_to_aname): jump over unknown properties (i've found
17993         something like: 'type, assembly, version=xxx, custom=null, public...',
17994         so now will ignore custom=null and still get the rest of the values).
17995
17996 2003-02-17  Dick Porter  <dick@ximian.com>
17997
17998         * threads.c: Have Thread.Start() wait for a semaphore to signal
17999         that the thread has set up all its local data.  This fixes bug
18000         34323, where Abort() raced the new thread's TLS data.
18001
18002         Also removes the handle_store() call from start_wrapper, because
18003         threads are now always created suspended and there is no longer a
18004         race between the parent and child threads to store the info.
18005
18006 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
18007
18008         * image.c: explain the #- heap issue in a message, hopefully
18009         avoiding FAQs on mono-list.
18010
18011 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18012
18013         * icall.c:
18014         (GetEntryAssembly): if the domain has not invoked
18015         AppDomain.ExecuteAssembly yet, return the assembly of the default
18016         AppDomain.
18017
18018 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
18019
18020         * class.c (mono_ldtoken): make it work in dynamic assemblies.
18021
18022 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18023
18024         * metadata.c, reflection.c: simple speedup to type hash
18025         and equals code.
18026
18027 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
18028
18029         * image.c, image.h, class.c, assembly.c: move module loading
18030         to MonoImage. When loading metadata, consider alignemnet from
18031         the start of metadata, not from the metadata address in memory.
18032
18033 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
18034
18035         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
18036         AssemblyBuilder objects. Factored out custom attribute creation into
18037         a separate function.
18038         (create_custom_attr): new function to create custom attributes.
18039
18040 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
18041
18042         * Makefile.am: Got tired of typing the full pathname to pedump.
18043         Until there is another option, am installing this.
18044
18045 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
18046
18047         * class.c (class_compute_field_layout): always set field->parent 
18048         (mono_ldtoken): use mono_defaults.fieldhandle_class;
18049
18050 2003-02-11  Dick Porter  <dick@ximian.com>
18051
18052         * threads-types.h:
18053         * monitor.c: Rewrote Monitor, making lock much faster and
18054         Pulse/Wait work as specified.  Also uses much fewer handles, and only
18055         creates them as needed.
18056
18057         * exception.c: Added SynchronizationLockException
18058
18059         * threads.c: Deleted old Monitor implementation.  The new one is
18060         in a new file.
18061
18062 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18063
18064         * class.c: handled TypedReference type code. Set the correct size for
18065         class data. Setup interface_offsets for interface classes, too.
18066
18067 2003-02-09  Martin Baulig  <martin@ximian.com>
18068
18069         * debug-mono-symfile.h: Reflect latest symbol writer changes.
18070
18071 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
18072
18073         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
18074         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
18075         * object.c: fixed mono_object_get_virtual_method () for interfaces.
18076         * verify.c: check for code that runs after the end of the method.
18077
18078 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
18079
18080         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
18081         "System.Math::Round2".
18082         * sysmath.h: Added Floor, Round and Round2 definitions.
18083         * sysmath.c: Modified certain functions that were not 100% compliant
18084         with MS.NET (math precision) and added the implementation of Floor,
18085         Round and Round2.
18086
18087 2003-02-07  Martin Baulig  <martin@ximian.com>
18088
18089         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
18090
18091 2003-02-07  Martin Baulig  <martin@ximian.com>
18092
18093         * debug-mono-symfile.c: Reflected latest symwriter changes.
18094         (mono_debug_create_mono_symbol_file): Removed.
18095         (mono_debug_open_mono_symbol_file): Take an argument which
18096         specifies whether to create a dynamic symbol file.
18097
18098 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
18099
18100         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
18101
18102 2003-02-05  Martin Baulig  <martin@ximian.com>
18103
18104         * reflection.c (mono_image_build_metadata): Make this public,
18105         protect it against being called multiple times, don't create
18106         resources and don't build the compressed metadata here.
18107         (mono_image_create_pefile): Do this here.
18108
18109         * icall.c
18110         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
18111
18112 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18113
18114         * socket-io.c: fixed bug #36322.
18115
18116 2003-02-06  Piers Haken <piersh@friskit.com>
18117
18118         * appdomain.[ch]:
18119         * class.h:
18120         * debug-mono-symfile.c:
18121         * icall.c:
18122         * loader.c:
18123         * mono-config.c:
18124         * monosn.c:
18125         * reflection.c:
18126         * socket-io.c: warning cleanups
18127
18128 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
18129
18130         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
18131         function. works like remoting invoke, but does a check for the Proxy first.
18132
18133 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
18134
18135         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
18136
18137 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
18138
18139         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
18140         array of pointers.
18141         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
18142         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
18143
18144         * object.c (mono_store_remote_field_new): used by the new jit
18145         instead of mono_store_remote_field
18146         (mono_load_remote_field_new): used by the new jit
18147         instead of mono_load_remote_field
18148
18149 2003-02-05  Patrik Torstensson
18150
18151         * appdomain.c: changed unload to take the domain id instead
18152         of domain
18153         
18154         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
18155
18156
18157 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18158
18159         * appdomain.c: don't look for assemblies in ApplicationBase if
18160         PrivateBinPathProbe is set.
18161
18162 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18163
18164         * object.c: make the first argument in main_args contain the absolute
18165         path to the assembly. Fixes bug #37511.
18166
18167 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18168
18169         * icall.c: get correct UTC offset for countries not using daylight
18170         time saving. Fixes bug #30030.
18171
18172 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18173
18174         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
18175         and 1 are the family).
18176
18177 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
18178
18179         * icall.c (ves_icall_InternalExecute): removed wrong assertion
18180
18181         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
18182
18183 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
18184
18185         * reflection.c: added support for SignatureHelper tokens, which is
18186         needed by the Calli opcode.
18187
18188         * reflection.h: track changes to SignatureHelper class.
18189
18190         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
18191
18192 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18193
18194         * appdomain.c: fixed loading assemblies from PrivateBinPath.
18195
18196 2003-02-03  Patrik Torstensson
18197         * appdomain.[c|h], domain.c : 
18198          - Added support for getting a domain via domain id
18199          - Support for setting and getting domain from System.AppDomain 
18200            (used in cross appdomain channel)
18201          - Added support for get/set for a MonoAppContext on a thread 
18202            (Context class in System.Runtime.Remoting.Contexts),
18203          - Removed hack in Get/SetData and ExecuteAssembly.
18204         
18205         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
18206         the managed world to get control when a proxy is created.
18207
18208         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
18209         
18210 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
18211
18212         * icall.c
18213         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18214         Populate the codebase field as well.
18215
18216 2003-02-02  Martin Baulig  <martin@ximian.com>
18217
18218         * debug-mono-symfile.c
18219         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
18220         (mono_debug_symfile_add_method): Allow interncalls.
18221
18222 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18223
18224         * icall.c: throw parse exception if strtod fails or the string is empty.
18225
18226 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
18227
18228         * marshal.c: handle object type separately from defined
18229         class types.
18230
18231 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
18232
18233         * marshal.c: handle NATIVE_LPSTR for strings when it's
18234         explicitly specified.
18235
18236 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
18237
18238         * reflection.c, reflection.h, icall.c: setup the reflection
18239         handle cache for ModuleBuilders and AssemblyBuilders.
18240
18241 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
18242
18243         * reflection.c (reflection_methodbuilder_to_mono_method): set
18244         pinvoke flag
18245
18246 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18247
18248         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
18249
18250 2003-01-29  Dick Porter  <dick@ximian.com>
18251
18252         * threads.c: No need for the fake_thread kludge now that Thread
18253         doesn't run a class constructor
18254         
18255 2003-01-29  Dick Porter  <dick@ximian.com>
18256
18257         * threads.c: Use g_direct_hash instead of the rather bogus
18258         g_int_hash
18259
18260 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
18261
18262         * marshal.c (mono_marshal_get_native_wrapper): add check for null
18263         (fix pinvoke12.exe)
18264         (mono_marshal_get_struct_to_ptr): generate valid IL code
18265         (mono_marshal_get_ptr_to_struct): generate valid IL code
18266         (*): correctly set sig->pinvoke, we need to memdup the signature
18267         to do that
18268
18269 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18270
18271         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18272         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18273
18274 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18275
18276         * profiler.c: provide more callers information.
18277
18278 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18279
18280         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18281
18282         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18283
18284         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18285
18286 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18287
18288         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18289         exception instead of going into an infinite loop on dates which it 
18290         can't yet handle.
18291
18292         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18293         out-of-range exception if needed.
18294
18295         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18296         an implementation for an interface method and to override an inherited
18297         method at the same time. 
18298         Imagine a scenario when a virtual method is used to override a
18299         virtual abstract method in a parent class, and this same method 
18300         provides an implementation for an method inherited from an interface. 
18301         In this case, the interface resolution code will set im->slot, which 
18302         means that the virtual method override pass will skip this method 
18303         which means a pointer to the abstract method inherited from the parent
18304         will remain in the vtable of this non-abstract class.
18305
18306         * class.c: (mono_class_setup_vtable): continue search for a real 
18307         method if only an abstract method is found.     
18308
18309 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18310
18311         * reflection.c: add size to encoding for ByValStr and ByValArray
18312         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18313
18314 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18315
18316         * class.c (mono_class_setup_vtable): pass the override info as an
18317         argument.
18318
18319         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18320         correctly.
18321         
18322         * reflection.c (ensure_runtime_vtable); add support for method 
18323         overrides.
18324         
18325 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18326
18327         * reflection.c (resolution_scope_from_image): Hack to work to work with
18328         dynamic assemblies.
18329
18330         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18331         added a 'force_ref' argument to force this function to allways return 
18332         a TypeRef. This is needed by mono_image_get_memberref_token ().
18333         
18334 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18335
18336         * reflection.c (mono_image_get_type_info): interfaces really don't have
18337         a parent.
18338
18339         * reflection.c (mono_image_basic_init): fill out missing fields of
18340         image structure.
18341
18342         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18343         dynamic assemblies. This is required so dynamic assemblies show up in
18344         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18345         Type::GetType() etc. This is consistent with MS behaviour.
18346
18347         * image.c image.h reflection.c: add newly created classes to the name 
18348         cache so mono_class_get () will find them.      
18349
18350 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18351
18352         First part of changes to get IKVM.NET running under mono.
18353         
18354         * appdomain.h, appdomain.c: added new function 
18355         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18356         This function will call AppDomain::DoTypeResolve to do the actual work.
18357
18358         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18359         moved existing code dealing with dynamic tokens to a new function 
18360         called mono_reflection_lookup_dynamic_token (). This function will 
18361         raise TypeResolve events when appropriate. Since reflection.c is not 
18362         part of libmetadata, a new hook function called 
18363         mono_lookup_dynamic_token() is added to class.c which will call this.
18364
18365         * assembly.h assembly.c: make the invoke_load_hook function public,
18366         so it can be called for dynamic assemblies.
18367
18368         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18369
18370         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18371         type isn't found.
18372
18373         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18374         MonoGHashTable, since it contains pointers to objects which the GC 
18375         needs to track.
18376
18377         * assembly.c (search_loaded): remove unused variable.
18378         
18379 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18380
18381         * object.c: fixed issue exposed by gcc-generated IL programs
18382         that use RVA data for pointers.
18383
18384 2003-01-25  Martin Baulig  <martin@ximian.com>
18385
18386         * threads.c (start_wrapper): Moved the initialization of
18387         `start_func' above the mono_new_thread_init() call to which we
18388         pass it as argument.
18389
18390 2003-01-24  Martin Baulig  <martin@ximian.com>
18391
18392         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18393         the MonoThread pointer.
18394
18395 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18396
18397         * icall.c: Rename `PowImpl' to Pow.
18398
18399 2003-01-23  Dick Porter  <dick@ximian.com>
18400
18401         * threads.c (start_wrapper): Create a Thread object if needed, so
18402         the Main() thread can do the class initialisation in a subthread
18403         that has been set up to allow managed code execution.
18404
18405         Pass the thread ID instead of the MonoThread pointer to the thread
18406         start and attach callbacks.  This change is required, because the
18407         jit thread start callback must be called _before_ the Thread
18408         object can be created.
18409         
18410         (mono_thread_init): Removed much object creation code that is no
18411         longer needed.  No managed code is called from here now.
18412
18413         * object.c (mono_runtime_exec_managed_code): Create a subthread
18414         for Main, and call back to the runtime to use it.
18415         Set the exit code when Main exits.
18416
18417         * gc.c: Make sure domain finalisation happens in a subthread.
18418         Re-enable threaded GC, fixing bug 31333 (again).
18419
18420         * environment.c: System.Environment internall calls (so far just
18421         ExitCode is here, the others are still in icall.c)
18422
18423         * appdomain.c (mono_runtime_cleanup): All threads running managed
18424         code should have finished before mono_runtime_cleanup() is
18425         reached, so no need to clean up threads.
18426
18427 2003-01-22  Martin Baulig  <martin@ximian.com>
18428
18429         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18430         `gpointer func' arguments.      
18431         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18432         but added `MonoThread *thread' argument.
18433         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18434
18435         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18436         and pass it to the mono_thread_start_cb callback.
18437         (mono_install_thread_callbacks): New public function to install a
18438         set of callbacks which are set by the debugger.
18439         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18440
18441 2003-01-22  Martin Baulig  <martin@ximian.com>
18442
18443         * Makefile.am: Install debug-mono-symfile.h.
18444
18445 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18446
18447         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18448
18449 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18450
18451         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18452         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18453         (mono_array_class_get): correctly set access levels of arrays
18454
18455 2003-01-20      Patrik Torstensson
18456         * image.h (MonoAssemblyName): changed major, minor, build, revision
18457         from signed to unsigned.
18458
18459 2003-01-20  sean kasun <skasun@azstarnet.com>
18460
18461         * reflection.c (load_cattr_value): Now this handles
18462         MONO_TYPE_SZARRAY.  Fixes bug #35629
18463
18464 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18465
18466         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18467         integer value
18468
18469 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18470
18471         * decimal.c: fixed bug #26056.
18472
18473 2003-01-17  Martin Baulig  <martin@ximian.com>
18474
18475         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18476
18477 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18478
18479         * exception.[ch]:
18480         (mono_get_exception_type_initialization): new function.
18481
18482         * object.c: throw a TypeInitializationException when an exception is
18483         thrown invoking the class constructor.
18484
18485 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18486
18487         * reflection.c: fixed attribute reading.
18488
18489 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18490
18491         * icall.c:
18492         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18493         provided, look for the type in the calling assembly and then in
18494         mscorlib; if the assembly name is provided, only try that one.
18495
18496 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18497
18498         * object.c: register the vtable before there is a chance it's
18499         queried again recursively.
18500
18501 2003-01-13  Duncan Mak  <duncan@ximian.com>
18502
18503         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18504         gc-internal.h. 
18505         
18506 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18507
18508         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18509
18510 2003-01-11  Martin Baulig  <martin@ximian.com>
18511
18512         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18513         this to 20 for the release.
18514
18515 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18516
18517         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18518
18519         * loader.c (mono_method_get_marshal_info): bug fix
18520
18521         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18522         structures with explicit layout
18523
18524 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18525
18526         * profiler.c: made the output more readable (and sorted). 
18527         Added caller information for the allocation profiler.
18528
18529 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18530
18531         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18532
18533 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18534
18535         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18536         to get value types.
18537         
18538 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18539
18540         * object.c, profiler.h, profiler.c, profiler-private.h:
18541         Added object allocation profiler.
18542
18543 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18544
18545         * reflection.h, reflection.c: handle global methods.
18546         Compress blob entries.
18547
18548 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18549
18550         * marshal.c: fix compilation.
18551
18552 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18553
18554         * loader.c (mono_method_get_marshal_info): impl.
18555
18556         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18557
18558 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18559
18560         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18561         for reference types.
18562
18563 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18564
18565         * loader.c: fixed off by one error in loaded parameter names.
18566
18567 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18568
18569         * marshal.c (mono_marshal_get_icall_wrapper): like
18570         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18571         instead of a MonoMethod.
18572
18573 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18574
18575         * decimal.c: fixed bug #36537.
18576
18577 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18578
18579         * marshal.c: throw a missing method exception if a
18580         P/Invoke method is not found.
18581
18582 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18583
18584         * icall.c: allow a null this for constructors.
18585
18586 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18587
18588         * icall.c: raise the proper exceptions if the arguments to the
18589         internal Invoke are incorrect.
18590
18591 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18592
18593         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18594
18595 2003-01-03  Martin Baulig  <martin@ximian.com>
18596
18597         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18598
18599 2002-12-31  Martin Baulig  <martin@ximian.com>
18600
18601         * debug-mono-symfile.c: Completely rewrote the type section.
18602         Instead of using individual malloc()ed fields, we use one big
18603         continuous memory area and offsets into this area.
18604         See the comments in the source code for details.
18605
18606 2002-12-30  Martin Baulig  <martin@ximian.com>
18607
18608         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18609
18610 2002-12-30  Martin Baulig  <martin@ximian.com>
18611
18612         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18613         line number table in this data blob instead of using an external
18614         pointer.
18615
18616 2002-12-28  Martin Baulig  <martin@ximian.com>
18617
18618         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18619
18620 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18621
18622         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18623         as a boxed return type.
18624
18625 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18626
18627         * appdomain.c
18628         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18629         g_build_filename to properly get separators on the filename created.
18630
18631         * object.h: Small change, introduce MonoMarshalByRefObject to
18632         track the layout of that structure in the C# universe as we make
18633         changes there.
18634
18635 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18636
18637         * object.c: removed assert to allow static fields on interfaces.
18638         * loader.c: a TypeSpec may be used for any type, not just arrays.
18639
18640 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18641
18642         * class.c, class.h: added mono_class_array_element_size ().
18643         Ignore static methods in interfaces.
18644
18645 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18646
18647         * threads.c: fixed the build under cygwin.
18648
18649 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * reflection.c: handle nullref constants. Allocate keys for
18652         reflection handles with the GC.
18653
18654 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18655
18656         * threads.c, threads.h: added mono_thread_get_abort_signal()
18657         to get a suitable signal for thread abort.
18658
18659 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18660
18661         * metadata.c: fix handling of ExportedType table.
18662
18663 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18664
18665         * icall.c: added WriteWindowsDebugString internal call.
18666
18667 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18668
18669         * reflection.h: added fields to match C# implementation.
18670
18671 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18672
18673         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18674
18675 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18676
18677         * gc.h, gc-internal.h: Rename header for GC internal calls to
18678         gc-internal.h from gc.h as to not clash with Boehm GC having its
18679         header installed as <gc.h> in outside include paths.
18680         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18681         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18682
18683 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18684
18685         * icall.c: assign minor, build and revision in FillName.
18686
18687 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18688
18689         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18690         Added support for running code generated by Reflection.Emit.
18691
18692 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18693
18694         * appdomain.c: check for NULL argument in LoadFrom.
18695
18696 2002-12-10  Dick Porter  <dick@ximian.com>
18697
18698         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18699
18700 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18701
18702         * appdomain.c: fix buglet when building exe file name.  Handle full
18703         assembly name (needed after latest changes to AssemblyName).
18704         * image.c:
18705         (mono_image_close): free some hashtables.
18706
18707 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18708
18709         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18710         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18711         on some systems (redhat 7.3) 
18712
18713 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18714
18715         * threads.c: delete the critical section of a sync block,
18716         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18717
18718 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18719
18720         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18721
18722 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18723
18724         * appdomain.[ch]: handle the assembly preload event to try loading the
18725         assemblies using the paths we have in the current domain.
18726
18727         * assembly.[ch]: created an assembly preload hook that is called to try
18728         loading the assembly by other means that the ones provided here.
18729
18730         * domain.c: initialize the domain search path.
18731
18732         From now on, assemblies (TODO: except corlib and System) are loaded
18733         according to these rules when using mono_assembly_load ():
18734
18735                 1. It tries to load the assembly from the ApplicationBase
18736                 of the current domain appending .dll and .exe (TODO: have to
18737                 try loading from name/name.dll and name/name.exe).
18738
18739                 2. It tries the search path specified in PrivateBinPath for the
18740                 current domain (if any).
18741
18742                 3. Previous behavior.
18743
18744 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18745
18746         * icall.c: implemented GetInterfaceMap() related icall.
18747         * domain.c, loader.h: load MethodInfo in mono_defaults.
18748
18749 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18750
18751         * gc.c: disable the finalizer thread for now, untill all the issues
18752         with it are resolved.
18753
18754 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18755
18756         * string-icalls.c: handle embedded nulls in string ctor when the
18757         length is specified.
18758
18759 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18760
18761         * class.c: look for explicit interface implementation in parent
18762         classes, too.
18763
18764 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18765
18766         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18767
18768 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18769
18770         * gc.c: protect handles with a critical section.
18771
18772 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18773
18774         * icall.c:
18775         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18776         parameters. If no assembly specified, try getting the type from all
18777         the assemblies in the current domain, else, load the assembly and get
18778         the type from it.
18779
18780 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18781
18782         * marshal.c: applied patch from Aleksey Demakov that fixes
18783         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18784
18785 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18786
18787         * icall.c: fixed get_location.
18788
18789 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18790
18791         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18792         declarations to make it work with older gcc. 
18793
18794         * loader.c (mono_get_method): set signature->pinvoke for native calls
18795
18796 2002-11-20  Dick Porter  <dick@ximian.com>
18797
18798         * threads.c (mono_thread_init): Set the main thread's handle
18799
18800 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18801
18802         * gc.c: allow compilation without GC support. Changed to match the
18803         mono coding style.
18804
18805 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18806
18807         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18808
18809 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18810
18811         * reflection.c: set a public key token on the core assemblies.
18812
18813 2002-11-18  Dick Porter  <dick@ximian.com>
18814
18815         * threads.c: Split out some thread initialisation so that other
18816         files can set the start callback function.
18817
18818         * gc.c: Run finalisers in a separate thread, to avoid stack
18819         overflow.  Fixes bug 31333.
18820
18821         * appdomain.c: Set up GC finalisation thread.
18822
18823         * reflection.c: 
18824         * object.c: 
18825         * domain.c: Use gc.h macros for GC_malloc
18826         
18827 2002-11-15  Dick Porter  <dick@ximian.com>
18828
18829         * threadpool.c: 
18830         * threads.c:
18831         * appdomain.c: Removed mono_runtime_init_with_attach(),
18832         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18833         merging the extra parameter with the existing function.  Removed
18834         unneeded code in mono_thread_attach().
18835
18836 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18837
18838         * image.c (mono_image_loaded_by_guid): a method to get loaded
18839         images by guid. 
18840         (load_metadata_ptrs): we store the guid as string.
18841
18842 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18843
18844         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18845
18846         * metadata.c (mono_guid_to_string): imported method form Zoltan
18847         Varga (slightly modified)
18848
18849         * assembly.c (mono_assembly_open): load precompiled code
18850
18851         * loader.h (MonoMethod): we store the method token for use in the
18852         aot compiler. 
18853
18854 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18855
18856         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18857         the hook function called when an assembly is loaded.
18858         
18859         * domain.c: Modified file.
18860         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18861
18862         Fixes bug #33196.
18863
18864 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18865
18866         * reflection.c: Map PEFileKind to the value expected by the WinNT
18867         image loader. 
18868
18869 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18870
18871         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18872         Read until the buffer is filled completely.
18873
18874 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18875
18876         * icall.c: implemented MonoType.InternalGetEvent ().
18877
18878 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18879
18880         * appdomain.c: implemented InitAppDomainSetup. Delayed
18881         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18882         the entry_assembly.
18883
18884         * assembly.c: base_dir is now an absolute path ending with
18885         G_DIR_SEPARATOR.
18886
18887         * icall.c: modified get_location according to the above changes.
18888
18889         * object.c: init AppDomain.SetupInformation for the default domain after
18890         we have the entry assembly.
18891
18892         * domain.c: when unloading a domain, setup = NULL.
18893
18894 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18895
18896         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18897
18898 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18899
18900         * object.h, object.c: introduced mono_object_get_virtual_method ()
18901         to lookup the method invoked on an object when a callvirt is done on
18902         a method.
18903         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18904
18905 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18906
18907         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18908         current domain when loaded an assembly and failed to load it.
18909
18910         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18911
18912 2002-10-31  Dick Porter  <dick@ximian.com>
18913
18914         * icall.c: 
18915         * file-io.h: 
18916         * file-io.c: Return the error status in a parameter, as the
18917         GetLastError() value has long since been blown away if we try and
18918         look it up in a subsequent internal call invocation.  Delete the
18919         GetLastError() internal call, because it's useless.
18920
18921 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18922
18923         * class.[ch]: added cast_class to fix bug 29517
18924
18925 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18926
18927         * marshal.c: create valid IL code in the filter clause:
18928         the new JIT is less forgiving:-)
18929
18930 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18931
18932         * icall.c: removed get_property internal call.
18933
18934 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18935
18936         * appdomain.h domain.c: Added an ID to appdomains.
18937         
18938         * threads.c threads.h icall.c: Implement icall
18939         Thread:GetDomainID(), and remove unused icall 
18940         CurrentThreadDomain_internal.
18941
18942 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18943
18944         * icall.c: Don't recurse through the base types in GetConstructor.
18945         Fixes bug #32063. 
18946
18947 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18948
18949         * mempool.h, mempool.c: added mono_mempool_empty() and
18950         mono_mempool_stats().
18951
18952 2002-10-23  Dick Porter  <dick@ximian.com>
18953
18954         * file-io.c: 
18955         * file-io.h: 
18956         * icall.c: Added MonoIO.GetFileType internal call
18957
18958 2002-10-17  Dick Porter  <dick@ximian.com>
18959
18960         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18961         delegate semaphore before waiting for all threads to finish,
18962         because new threads can also call async delegates.  Fixes bug
18963         32004.
18964
18965         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18966         of 3 seconds, in case another async job is queued.  (This part is
18967         needed because the bug fix reintroduced the 3s exit lag.)  This
18968         makes the mono_runtime_shutdown flag superfluous.
18969
18970 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18971
18972         * reflection.c: include ehader size in method section headers.
18973         Really check for suplicated modules entries.
18974
18975 2002-10-17  Martin Baulig  <martin@gnome.org>
18976
18977         * debug-mono-symfile.c: Added back support for locals.
18978
18979 2002-10-14  Martin Baulig  <martin@gnome.org>
18980
18981         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18982         MONO_TYPE_VOID.
18983
18984 2002-10-14  Martin Baulig  <martin@gnome.org>
18985
18986         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18987         mono_class_get() instead of looking in the class cache. 
18988
18989 2002-10-13  Martin Baulig  <martin@gnome.org>
18990
18991         * debug-mono-symfile.c: Set version number to 28, include the
18992         signature in method names.
18993
18994 2002-10-13  Martin Baulig  <martin@gnome.org>
18995
18996         * debug-mono-symfile.h: Set version number to 27.
18997
18998 2002-10-11  Martin Baulig  <martin@gnome.org>
18999
19000         * gc.c: Don't register/unregister NULL pointers as disappearing links.
19001
19002 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19003
19004         * metadata.c, metadata.h: added helper function to allocate signatures.
19005
19006 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19007
19008         * icall.c: added internal call to get the location of machine.config.
19009
19010 2002-10-08  Martin Baulig  <martin@gnome.org>
19011
19012         * debug-mono-symfile.c: Ignore classes with a pending init for the
19013         moment.
19014
19015 2002-10-03  Dick Porter  <dick@ximian.com>
19016
19017         * threads.c: Freebsd pthread_t is a pointer
19018
19019 2002-10-03  Dick Porter  <dick@ximian.com>
19020
19021         * socket-io.c: Implemented GetHostName_internal
19022
19023 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19024
19025         * mono-config.c:
19026         (mono_config_parse_file): don't leak the text.
19027
19028 2002-10-02  Martin Baulig  <martin@gnome.org>
19029
19030         * debug-mono-symfile.c: Added support for methods.
19031
19032 2002-10-01  Martin Baulig  <martin@gnome.org>
19033
19034         * debug-mono-symfile.c: Don't emit methods and line numbers for
19035         the dynamic symbol file, just write the type table.  We can easily
19036         have an external helper program which creates a symbol file for an
19037         IL file.        
19038
19039 2002-10-01  Dick Porter  <dick@ximian.com>
19040
19041         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
19042         Only add the handle to the cleanup array when we're about to
19043         launch the thread.  Bug 31425 deadlocked when the test was run on
19044         mono under w32.
19045
19046 2002-10-01  Martin Baulig  <martin@gnome.org>
19047
19048         * debug-mono-symfile.c: Added support for properties.
19049
19050 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19051
19052         * reflection.c: unaligned store fix from Mark Crichton
19053         <crichton@gimp.org>.
19054
19055 2002-09-27  Martin Baulig  <martin@gnome.org>
19056
19057         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
19058         New interncall.
19059
19060 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19061
19062         * assembly.h, assembly.c: use a sane API to hook into the assembly
19063         loading process instead of a useless special-purpouse hack
19064         (ngen needs a hook, too, for example).
19065
19066 2002-09-27  Dick Porter  <dick@ximian.com>
19067
19068         * threads.c (mono_thread_init): Call GetCurrentProcess() so
19069         io-layer can set up some process handle info.  Not needed on w32,
19070         but doesn't hurt either.
19071
19072         * process.c: Pass the program name in the second parameter to
19073         CreateProcess, so the path is searched.  Include the working
19074         directory. Implemented process name, process enumeration, and some
19075         process detail internal calls.
19076         
19077         * icall.c: Added internal calls for process lookup, and some
19078         process details
19079
19080 2002-09-26  Martin Baulig  <martin@gnome.org>
19081
19082         * assembly.c (mono_install_open_assembly_hook): New global
19083         function to install a function to be invoked each time a new
19084         assembly is loaded.
19085         (mono_assembly_open): Run this callback function if set.
19086
19087         * debug-mono-symfile.c: Put back line numbers for the dynamic
19088         symbol file and also record the .il file as source file.  This
19089         allows us to install the temporary symbol file as `file.dbg' just
19090         like a compiler-generated one.
19091
19092 2002-09-26  Nick Zigarovich <nick@chemlab.org>
19093
19094         * Corrected typo in gc.c (BOHEM vs BOEHM).
19095
19096 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19097
19098         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
19099         GetProperties. Also avoid calling g_slist_length in GetProperties and
19100         GetMethods.
19101
19102 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19103
19104         * reflection.c: avoid unaligned stores (bug spotted by
19105         Mark Crichton  <crichton@gimp.org>).
19106
19107 2002-09-25  Martin Baulig  <martin@gnome.org>
19108
19109         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
19110         instead of guint64 for addresses and added prologue/epilogue info.
19111
19112 2002-09-25  Martin Baulig  <martin@gnome.org>
19113
19114         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
19115         store line number info.  For the dynamic symbol file, we only need
19116         to provide the JIT generated dynamic line number info for the dynamic
19117         symbol file.
19118
19119 2002-09-25  Martin Baulig  <martin@gnome.org>
19120
19121         * debug-mono-symfile.h: Incremented version number.
19122
19123 2002-09-24  Martin Baulig  <martin@gnome.org>
19124
19125         * class.c (mono_debugger_class_init_func): New global function
19126         pointer variable.
19127         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
19128         call it.
19129
19130         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
19131         function.  This is called via the mono_debugger_class_init_func
19132         hook to add all types to the dynamic type table.
19133         (ves_icall_MonoDebugger_GetType): New interncall to get a class
19134         from its metadata token.
19135
19136         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
19137         New interncall for the debugger.
19138
19139 2002-09-24  Nick Drochak <ndrochak@gol.com>
19140
19141         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
19142         before using it in case it is null.
19143         
19144 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19145
19146         * metadata.c: allow custom modifiers in local var signatures
19147         (bug spotted by Zoltan Varga).
19148
19149 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19150
19151         * class.c: deal with the <Module> class that may have a NULL vtable.
19152         Eliminate warnings.
19153
19154 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19155
19156         * image.c, image.h: more strong name helpers.
19157         * monosn.c: more work: convert pem keys to cryptoapi format.
19158
19159 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19160
19161         * string-icalls.c: speedup IndexOf.
19162
19163 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19164
19165         * icall.c: updates from Zoltan.2.Varga@nokia.com.
19166
19167 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19168
19169         * icall.c: cleanup: use mono_object_domain ().
19170
19171 2002-09-23  Martin Baulig  <martin@gnome.org>
19172
19173         * debug-mono-symfile.c: Improved type support.
19174
19175 2002-09-22  Martin Baulig  <martin@gnome.org>
19176
19177         * debug-mono-symfile.c: Added support for reference types and strings.
19178
19179 2002-09-22  Martin Baulig  <martin@gnome.org>
19180
19181         * debug-mono-symfile.c: Started to work on the type table.
19182
19183 2002-09-21  Martin Baulig  <martin@gnome.org>
19184
19185         * debug-mono-symfile.c: Largely reworked the symbol table format.
19186         The symbol table is now incrementally updated each time a new
19187         method is added.  We're now also using our own magic and version
19188         so that you don't need to recompile all your classes if the
19189         dynamic table changes.
19190         (mono_debug_update_mono_symbol_file): Removed.
19191         (mono_debug_symfile_add_method): New function to add a method.
19192
19193 2002-09-21  Martin Baulig  <martin@gnome.org>
19194
19195         * icall.c
19196         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
19197         New interncall.
19198
19199         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
19200         New interncall to get a method from its metadata token.
19201
19202 2002-09-21  Martin Baulig  <martin@gnome.org>
19203
19204         * debug-mono-symfile.c: Create type table.
19205
19206 2002-09-20  Martin Baulig  <martin@gnome.org>
19207
19208         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
19209
19210 2002-09-20  Martin Baulig  <martin@gnome.org>
19211
19212         * debug-mono-symfile.c: Provide information about params and locals.
19213
19214 2002-09-20  Martin Baulig  <martin@gnome.org>
19215
19216         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
19217         New interncall.
19218
19219         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
19220         interncall to get a method from its metadata token.
19221
19222 2002-09-20  Martin Baulig  <martin@gnome.org>
19223
19224         * debug-mono-symfile.c: Added a few checks for method->header
19225         being non-NULL.  This should never happen, but for the moment
19226         let's use a g_warning() rather than a g_assert().
19227
19228 2002-09-19  Mark Crichton  <crichton@gimp.org>
19229
19230         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
19231         even if support for it isn't present.  Added an #ifdef to fix this.
19232
19233         * socket-io.c: Added checks back for Solaris support.
19234
19235 2002-09-19  Martin Baulig  <martin@gnome.org>
19236
19237         * debug-mono-symfile.c (read_string, write_string): Reflect latest
19238         changes in the symbol file format.
19239
19240 2002-09-18  Martin Baulig  <martin@gnome.org>
19241
19242         * debug-mono-symfile.c: Set version number to 21.
19243
19244 2002-09-18  Dick Porter  <dick@ximian.com>
19245
19246         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
19247         on netbsd.  Fixes bug 30051.
19248
19249 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19250
19251         * reflection.c:
19252         (set_version_from_string): little fix.
19253
19254 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19255
19256         * monosn.c, Makefile.am: added strong name utility.
19257         * reflection.h, reflection.c: implemented delayed signing,
19258         locale, version and hash id assembly attributes.
19259
19260 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19261
19262         * loader.c, metadata.c: load param attributes in signatures.
19263
19264 2002-09-16  Martin Baulig  <martin@gnome.org>
19265
19266         * debug-mono-symfile.c: Added string table with all method names.
19267
19268 2002-09-14  Martin Baulig  <martin@gnome.org>
19269
19270         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19271         fast method lookup.
19272
19273 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19274
19275         * reflection.c: record the public key token of referenced assemblies.
19276
19277 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19278
19279         * image.c, image.h: added functions to get the strong name and the
19280         public key of an assembly.
19281         * pedump.c: use them.
19282
19283 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19284
19285         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19286
19287 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19288
19289         * marshal.c (mono_marshal_get_managed_wrapper): Added
19290         MONO_TYPE_BOOLEAN 
19291
19292 2002-09-11  Martin Baulig  <martin@gnome.org>
19293
19294         * gc.c: Call GC_unregister_disappearing_link() on all links when
19295         finalizing them, this is necessary to aviod a crash in boehm's
19296         finalize handler.
19297
19298 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19299
19300         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19301         nick@chemlab.org.
19302
19303 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19304
19305         * icall.c: implemented MonoType::Module.
19306         * reflection.c, reflection.h: mono_module_get_object () from
19307         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19308
19309 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19310
19311         * icall.c: ignore overridden methods in GetMethods ().
19312         Fix for FieldInfo::SetValue().
19313         * object.c: handle float/double in runtime invoke.
19314
19315 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19316
19317         * object.c: allow a constructor to be called again on an object.
19318
19319 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19320
19321         * class.h, class.c: move field layout code to it's own function and
19322         export it. Get an interface id earlier. Move fields in MonoClass
19323         so they are more cache friendly and align the bitfields.
19324         * loader.c: temporary handle get_param_names() for a runtime method.
19325         * reflection.c, reflection.h: more code to handle runtime creation of
19326         types.
19327
19328 2002-09-09  Martin Baulig  <martin@gnome.org>
19329
19330         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19331         signature with the pinvoke field being set for the actual call.
19332
19333 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19334
19335         * icall.c: removed some unused icalls. Start of map of glib charsets
19336         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19337
19338 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19339
19340         * debug-helpers.c: break infinite loop (found and fixed by
19341         Holger Arnold <harnold@gmx.de>).
19342
19343 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19344
19345         * icall.c: target may be null in create_delegate.
19346
19347 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19348
19349         * marshal.c: handle a boolean return type.
19350
19351 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19352
19353         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19354
19355 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19356
19357         * gc.c: fix weakreferences.
19358
19359 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * icall.c: added icall to get default codepage.
19362
19363 2002-09-03  Dick Porter  <dick@ximian.com>
19364
19365         * threads.h: 
19366         * threads.c: Use MonoThread instead of MonoObject where
19367         apropriate.
19368
19369         Store running thread objects in a hash table, so that we have all
19370         the info to hand when waiting for them to finish
19371         (means we don't need OpenThread() any more, so mingw builds should
19372         be fully functional again.)
19373
19374         * verify.c:
19375         * object.h: Added thread ID to MonoThread
19376
19377 2002-09-03  Martin Baulig  <martin@gnome.org>
19378
19379         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19380
19381 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19382
19383         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19384
19385 2002-09-03  Martin Baulig  <martin@gnome.org>
19386
19387         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19388         argument to store the end address of the disassembled instruction.
19389
19390         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19391         here from debug-symfile.h.
19392         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19393         JIT into this struct.
19394         (MonoSymbolFile): Added `char *image_file' field.
19395         (MonoDebugGetMethodFunc): Removed.
19396         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19397         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19398         (mono_debug_find_method): New method.
19399
19400         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19401         create a full symbol file.
19402         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19403         and static symbol files.
19404         (mono_debug_find_method): The symbol file keeps an internal method hash,
19405         call this to get a MonoDebugMethodInfo from a MonoMethod.
19406
19407         * debug-symfile.[ch]: Removed.
19408
19409 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19410
19411         * image.c (do_mono_image_open): Remove linker version check.
19412
19413 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19414
19415         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19416         wrappers for instance methods.
19417         
19418 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19419
19420         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19421
19422 2002-08-28  Dick Porter  <dick@ximian.com>
19423
19424         * Makefile.am: Export HOST_CC for w32 builds
19425
19426 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19427
19428         * file-io.c process.c: MonoString are null terminated, no
19429         need for mono_string_to_utf16() anymore.
19430
19431 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19432
19433         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19434
19435 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19436
19437         * icall.c, reflection.h: speedup System.MonoType.
19438
19439 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19440
19441         * reflection.c: allow null as the value of a string argument in
19442         custom attributes constructors.
19443
19444 2002-08-27  Martin Baulig  <martin@gnome.org>
19445
19446         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19447         `trampoline_address' field.
19448
19449 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19450
19451         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19452         check (fixes bug #29486) 
19453
19454 2002-08-27  Martin Baulig  <martin@gnome.org>
19455
19456         * debug-mono-symfile.c: Changed the file format in a way that allows us
19457         open it read-only and to use a specially malloced area for all the
19458         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19459         debugging IL code and there is no MCS generated symbol file for it.
19460
19461 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19462
19463         * object.c: added a define for a good string and array
19464         creation speedup (not enabled by default because we need to deal with
19465         the synch stuff).
19466
19467 2002-08-26  Martin Baulig  <martin@gnome.org>
19468
19469         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19470         function to create a dynamic symbol file.  This is used by the
19471         debugger to create a symbol file for IL code on-the-fly.
19472
19473 2002-08-26  Martin Baulig  <martin@gnome.org>
19474
19475         * loader.c (mono_lookup_pinvoke_call): Include the error message
19476         from g_module_error() in the error message.
19477
19478 2002-08-24  Martin Baulig  <martin@gnome.org>
19479
19480         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19481         function to update the symbol file.  The symbol file is mmap()ed
19482         writable, but private.  This allows us to install the symbol file
19483         together with the assembly.
19484
19485 2002-08-24  Martin Baulig  <martin@gnome.org>
19486
19487         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19488         but they can read the new symbol file format which mcs is now creating.
19489
19490         * debug-symfile.c (mono_debug_find_source_location): Moved to
19491         debug-mono-symfile.c; this is now operating on the new symbol file.
19492
19493 2002-08-23  Martin Baulig  <martin@gnome.org>
19494
19495         * debug-helpers.c (mono_method_desc_from_method): New function to get
19496         a MonoMethodDesc from a MonoMethod.
19497
19498 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19499
19500         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19501         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19502
19503 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19504
19505         * string-icalls.[ch]: make helper methods static.
19506
19507 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19508
19509         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19510         types to it and to SetValueInternal.
19511
19512         * object.c: Moved handle_enum label to its proper place. This was the
19513         f... bug! ;-)
19514
19515         This time i compiled mcs and gtk-sharp and they both work.
19516
19517 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19518
19519         * icall.c: reverted partially my previous patch until 
19520         object.c:set_value handles enums correcly.
19521
19522 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19523
19524         * icall.c:
19525         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19526         (ves_icall_System_Environment_get_MachineName): removed warning when
19527         compiling under cygwin.
19528
19529 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19530
19531         * object.c: fixed field_get_value() for reference types.
19532
19533 2002-08-22  Dick Porter  <dick@ximian.com>
19534
19535         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19536         Don't free a buffer while it's still needed.  Patch from Jonathan
19537         Liger <Jonathan.liger@wanadoo.fr>
19538
19539 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19540
19541         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19542         internal call.
19543
19544 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19545
19546         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19547         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19548
19549         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19550         we call unmanaged code which throws exceptions.
19551
19552 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19553
19554         * appdomain.h: added per-domain entry_assembly.
19555         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19556         arguments.
19557         * icall.c: Assembly::GetEntryAssembly icall.
19558         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19559         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19560
19561 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19562
19563         * appdomain.h, gc.c: added mono_domain_finalize ().
19564
19565 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19566
19567         * object.c:
19568         (mono_print_unhandled_exception): changed g_warning by g_printerr
19569         because g_log has a 1024 characters limit (yeah, i got a big stack
19570         trace). Don't print exception name, that should be in ToString 
19571         returned string.
19572
19573 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19574
19575         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19576         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19577
19578 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19579
19580         * object.c:
19581         (mono_print_unhandled_exception): after previous commit, i realized
19582         that MS calls ToString on the exception. I changed this function to
19583         do that. This way we get stack_trace for free.
19584
19585 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19586
19587         * object.c:
19588         (mono_print_unhandled_exception): invoke Message property instead of
19589         getting 'message' field from Exception. Don't allocate memory for
19590         'trace' and 'message' if not needed.
19591
19592 2002-08-18  Dick Porter  <dick@ximian.com>
19593
19594         * unicode.c: Fix asserts to match Encoder.cs checks
19595
19596 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19597
19598         * marshal.c: fix unaligned store issue and a few wrong
19599         opcode argument types.
19600
19601 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19602
19603         * icall.c: added GetUninitializedObjectInternal internal call.
19604
19605 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19606
19607         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19608         to the right domain.
19609
19610 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19611
19612         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19613
19614         * class.c (class_compute_field_layout): set blittable to false for Strings
19615
19616         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19617
19618 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19619
19620         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19621         first chunk of code to create types at runtime. Code to
19622         handle ReflectedType/DeclaringType. Make reflection handles
19623         domain specific.
19624
19625 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19626
19627         * class.c: set correct name in arrays.
19628
19629 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19630
19631         * appdomain.c (mono_domain_transfer_object): make it work with
19632         valuetypes. bug fixes.
19633
19634 2002-08-12  Dick Porter  <dick@ximian.com>
19635
19636         * object.h: Rename some parameters to avoid c++ keywords (Patch
19637         from Joseph Wenninger <kde@jowenn.at>)
19638
19639 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19640
19641         * icall.c: added icall to implement Assembly.GetFile*.
19642
19643 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19644
19645         * reflection.h, reflection.c: code to embed managed resources.
19646
19647 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19648
19649         * class.c: move all the type size stuff into
19650         class_compute_field_layout().
19651
19652 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19653
19654         * class.c: ensure enums have always the correct instance size.
19655         * unicode.c: remove wrong assert.
19656
19657 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19658
19659         * assembly.c: fix mem corruption issue.
19660         * image.h, image.c: added mono_image_get_resource () to access
19661         managed resources.
19662         * icall.c: implemented Assembly.EntryPoint property and some
19663         Managed Resources related internalcalls.
19664
19665
19666 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19667
19668         * image.c, image.h: impemented mono_image_get_entry_point ().
19669         * appdomain.c: use mono_image_get_entry_point.
19670
19671 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19672
19673         * reflection.c: support the object type argument when loading
19674         custom attributes.
19675
19676 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19677
19678         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19679         String as return type.
19680
19681 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19682
19683         * reflection.c: fix encoding of named args for custom attrs to match
19684         the ms implementation. Read them back when instantiating custom
19685         attributes.
19686
19687 2002-08-02  Radek Doulik  <rodo@ximian.com>
19688
19689         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19690         by Dietmar as quick fix
19691         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19692         16 as stack size, used on more places as quick fix before Dietmar
19693         will fix it properly
19694
19695 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19696
19697         * object.h, object.c: added accessors for fields and properties.
19698
19699 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19700
19701         * class.c, class.h: made mono_class_get_field_from_name ()
19702         loop on parent types.
19703         Added mono_class_get_property_from_name ().
19704
19705 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19706
19707         * class.c, class.h: move the code to setup the type vtable in its own
19708         function so that it can be reused also for types created at runtime.
19709         Eliminate the "class" identifier from the header file.
19710         * reflection.c: setup the vtable for enums so that we can create
19711         objects for use in SetConstant ().
19712
19713 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19714
19715         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19716         instead of the delegate itself as this pointer (bug #28383)
19717
19718 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19719
19720         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19721         conversions.
19722
19723 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19724
19725         * loader.c: don't set the pinvoke bit on icalls.
19726
19727 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19728
19729         * debug-helpers.c (mono_method_full_name): only print a number to
19730         indicate wrapper type (so that the output is more readable in traces).
19731
19732 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19733
19734         * class.c (mono_class_init): include method override patch from Paolo
19735
19736 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19737
19738         * icall.c: fixed GetTypeCode().
19739
19740 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19741
19742         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19743         use real delegate invoke function to make it work with multicast
19744         delegates (fix bug# 28291).
19745
19746 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19747
19748         * object.c: load constant strings.
19749
19750 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19751
19752         * reflection.c: no magic numbers.
19753         * tabledefs.h: security action enum.
19754
19755 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19756
19757         * assembly.c: fix possible memory corruption.
19758
19759 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19760
19761         * reflection.h, reflection.c: added support for linking resources.
19762         * verify.c: check we have an updated corlib.
19763
19764 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19765
19766         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19767         string arrays.
19768         (mono_marshal_string_array): null terminate unmanaged string arrays.
19769         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19770
19771 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19772
19773         * icall.c: Type.GetType () can now return also types from the
19774         calling assembly.
19775
19776 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19777
19778         * loader.h, loader.c: stack walking support.
19779         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19780         GetCallingAssembly.
19781
19782 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19783
19784         * marshal.c: added optimisations for blittable types 
19785
19786         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19787         (mono_class_setup_mono_type): set blittable attribute for single
19788         and double.
19789
19790         * marshal.c (mono_string_utf8_to_builder): impl.
19791         (mono_string_builder_to_utf8): impl.
19792         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19793
19794 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19795
19796         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19797         (mono_marshal_get_managed_wrapper): impl. byref types
19798
19799 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19800
19801         * icall.c:
19802         (search_method): don't display debug message. 
19803
19804 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19805
19806         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19807
19808 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19809
19810         * appdomain.c: set the missing filename when throwing exception.
19811
19812 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19813
19814         * metadata.c (mono_type_size): code cleanup
19815         (mono_type_stack_size): removed some test code
19816
19817 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19818
19819         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19820         mono_get_exception_file_not_found now.
19821
19822         * exception.c (mono_exception_from_name_two_strings): New version
19823         that will call a constructor with two string arguments. 
19824         (mono_get_exception_file_not_found): New helper routine, used to
19825         report file-not-found errors.
19826
19827 2002-07-20  Dick Porter  <dick@ximian.com>
19828
19829         * process.h:
19830         * process.c: Pass file handles to CreateProcess
19831         
19832         * icall.c:
19833         * file-io.h:
19834         * file-io.c: Implemented CreatePipe
19835
19836 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19837
19838         * metadata.c (mono_get_param_info): set alignment for value types
19839
19840 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19841
19842         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19843         Constify mono_domain_assembly_open().
19844         * loader.c: handle null namespace in icalls.
19845
19846 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19847
19848         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19849         (emit_str_to_ptr_conv): marshal object as structs
19850
19851         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19852
19853         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19854
19855 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19856
19857         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19858         (mono_marshal_get_native_wrapper): we an now return value types
19859
19860 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19861
19862         * verify.c: more checks implemented.
19863
19864 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19865
19866         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19867         (fix bug #27695)
19868         (mono_marshal_get_native_wrapper): allow byref arguments
19869         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19870         impl. PtrToStringXXX methods
19871         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19872         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19873         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19874         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19875         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19876
19877 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19878
19879         * reflection.c: fix buglet in parsing an assembly name.
19880
19881 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19882
19883         * marshal.c (emit_ptr_to_str_conv): first impl.
19884
19885 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19886
19887         * object.c, class.h: cache the vtable in the class as suggested by
19888         vargaz@freemail.hu (Zoltan Varga).
19889
19890 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19891
19892         * class.h, loader.c: added mono_field_from_token().
19893         * verify.c: first cut of type checking code.
19894
19895 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19896
19897         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19898
19899 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19900
19901         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19902         (fix bug #27782)
19903         (mono_marshal_get_remoting_invoke): impl.
19904         (mono_delegate_begin_invoke): impl.
19905         (mono_mb_emit_save_args): impl.
19906         (mono_delegate_end_invoke): impl.
19907         (mono_marshal_get_delegate_begin_invoke):
19908         (mono_marshal_get_delegate_end_invoke):
19909         (mono_marshal_get_delegate_invoke): generate a special name for
19910         those methods (including the signature) and associate them whith
19911         the delegate class. 
19912
19913 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19914
19915         * reflection.[ch]: 
19916         (mono_reflection_type_from_name): now it has a MonoImage parameter
19917         which is used as the default image to search the type in. If the image
19918         is NULL or getting the type from it fails, it defaults to corlib.
19919
19920         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19921         new parameter.
19922
19923 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19924
19925         * reflection.c: update the parameter table index.
19926
19927 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19928
19929         * domain.c: don't include the mark byte in the string hash.
19930
19931 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19932
19933         * icall.cs: icall for Type.GetTypeCode ().
19934         * verify: a couple of fixes and disabled local initialization checks.
19935
19936 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19937
19938         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19939
19940         * debug-helpers.c (mono_method_full_name): print the type of the
19941         runtime wrapper
19942
19943         * metadata.c (mono_signature_hash): a hash function for signatures
19944         (mono_signature_hash): better hash algorithm
19945
19946         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19947
19948         * debug-helpers.c (mono_method_full_name): this can now generate
19949         method names with signatures
19950
19951         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19952         method dont have this pointers.
19953
19954 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19955
19956         * reflection.c: fixup typebuilder tokens.
19957         * image.c: fix buglet.
19958         * marshal.h: remove whitespace.
19959         * metadata.h, metadata.c: reinstate code that was removed.
19960         * verify.c: handle catch directives and fix another couple of bugs.
19961
19962 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19963
19964         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19965         (mono_marshal_get_native_wrapper): make it comp. with the old code
19966         (mono_marshal_get_native_wrapper): support boolean
19967         (mono_marshal_get_managed_wrapper): support more types
19968
19969 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19970
19971         * class.c (class_compute_field_layout): compute class->blittable attribute.
19972
19973 2002-07-09  Dick Porter  <dick@ximian.com>
19974
19975         * threads.c: Make the thread cleaning up cope with threads that
19976         call ExitThread()
19977
19978 2002-07-08  Radek Doulik  <rodo@ximian.com>
19979
19980         * reflection.c (method_encode_code): use non-translated values to
19981         compute finally_start, this fixes exception handling on ppc, yay!
19982
19983         * decimal.h (struct signscale): fix endianess
19984
19985 2002-07-07  Radek Doulik  <rodo@ximian.com>
19986
19987         * reflection.c: swap box_val and not val
19988
19989 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19990
19991         * reflection.c, reflection.h: handle full assembly info in type name.
19992         Handle Type arguments when loading custom attributes.
19993         * icall.c: updated to use new mono_reflection_type_from_name () method.
19994
19995 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19996
19997         * loader.c:
19998         (method_from_memberref): also print assembly name when method not found.
19999
20000 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20001
20002         * icall.c:
20003         (ves_icall_TypeGetProperties): fixed bug #27473. 
20004
20005 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20006
20007         * reflection.c: display image name and token when cannot find the
20008         .ctor for an attribute.
20009
20010 2002-07-05  Martin Baulig  <martin@gnome.org>
20011
20012         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20013
20014 2002-07-04  Dick Porter  <dick@ximian.com>
20015
20016         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
20017         compile on mingw.  This will cause mingw builds to not wait for
20018         subthreads to terminate after the main thread does.  I've lodged a
20019         bug with the mingw developers for them to wrap OpenThread().
20020
20021 2002-07-03  Dick Porter  <dick@ximian.com>
20022
20023         * threads.c: Store thread IDs instead of handles, because
20024         GetCurrentThread() returns a pseudohandle and therefore stores
20025         useless values.  mono_thread_cleanup() continues checking the
20026         array of threads until it is empty, to cope with subthreads
20027         spawning new threads after the main thread has finished.
20028
20029         * profiler.h:
20030         * profiler.c:
20031         * profiler-private.h: Pass the thread ID to thread profiler
20032         functions, instead of a handle
20033
20034 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20035
20036         * verify.c: fixes to make it more usable.
20037         * pedump.c: added --verify code to verify IL code in an assembly.
20038
20039 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20040
20041         * reflection.c: turn errors into warnings to allow compiling corlib.
20042
20043 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
20044
20045         * reflection.c: add special cases to compile corlib.
20046
20047 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20048
20049         * reflection.c: handle properties with only a set method.
20050
20051 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20052
20053         * opcodes.h: add enum with opcodes in opval order.
20054
20055 2002-07-01  Dick Porter  <dick@ximian.com>
20056         
20057         * object.h:
20058         * object.c (mono_runtime_run_main): Removed unneeded argument
20059
20060 2002-06-28  Martin Baulig  <martin@gnome.org>
20061
20062         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
20063
20064 2002-06-27  Dick Porter  <dick@ximian.com>
20065
20066         * threads.c: Store the handle in both the parent thread and in the
20067         subthread, to minimise the time between starting a new thread and
20068         storing its ID.
20069
20070 2002-06-26  Dick Porter  <dick@ximian.com>
20071
20072         * appdomain.c (mono_runtime_cleanup): Close the socket library
20073         after all the threads have finished, not before
20074
20075 2002-06-26  Martin Baulig  <martin@gnome.org>
20076
20077         * debug-symfile.c (mono_debug_find_source_location): Added
20078         `guint32 *line_number' argument.  If it's not NULL, store the line number
20079         there and return the file name without the line number.
20080
20081 2002-06-25  Dick Porter  <dick@ximian.com>
20082
20083         * icall.c:
20084         * process.h:
20085         * process.c: Process forking and other support functions
20086
20087 2002-06-25  Dick Porter  <dick@ximian.com>
20088
20089         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
20090         things dont happen when the image is closed.
20091         (mono_image_lookup_resource): Walk the resource section looking
20092         for a particular entry
20093
20094         * cil-coff.h: PE resource section decoding
20095
20096 2002-06-25  Dick Porter  <dick@ximian.com>
20097         
20098         * assembly.h:
20099         * assembly.c: 
20100         (mono_assembly_foreach): Accessor functions to walk the list of
20101         loaded assemblies
20102         (mono_assembly_set_main):
20103         (mono_assembly_get_main): Process methods need to know which
20104         assembly is the "main" one
20105
20106         * object.c (mono_runtime_run_main): Record the main assembly
20107
20108         * debug-helpers.c: Fix typo
20109
20110 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
20111
20112         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
20113         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
20114
20115 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20116
20117         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
20118
20119 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
20120
20121         * image.c (do_mono_image_open): Initialize reference count,
20122         otherwise we leak the MonoImage.
20123
20124 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20125
20126         * reflection.c: small tweak to handle self-hosting.
20127
20128 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
20129
20130         * reflection.c: fix type name parse code.
20131
20132 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20133
20134         * reflection.c: break out of the loop.
20135         * image.c: special case corlib.
20136
20137 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20138
20139         * reflection.c: add all the custom attrs at the end to ensure the
20140         ctors have been properly initialized when the attributes are defined
20141         in the current assembly.
20142
20143 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20144
20145         * reflection.c: handle correctly multiple-nested types.
20146
20147 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
20148
20149         * row-indexes.h: fix typos.
20150         * reflection.c: adjust for typos and fix method_def_or_ref
20151         encoding in MethodImpl table.
20152
20153 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20154
20155         * reflection.c: fix entry point patching (thanks Serge!).
20156
20157 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
20158
20159         * verify.c: add check for System.Exception
20160
20161 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20162
20163         * image.c, class.c: minifix for code just c&p'ed.
20164         * reflection.c: warning fix.
20165         * object.h, loader.h, domain.c: load also StringBuilder.
20166
20167 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20168
20169         * marshal.h, marshal.c: some support code to handle complex marshaling.
20170
20171 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20172
20173         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
20174         Better signatures with vtable error dump.
20175
20176 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
20177
20178         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
20179
20180 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
20181
20182         * icall.c (ves_icall_Type_GetField): impl.
20183
20184 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20185
20186         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
20187         to retrieve a marshal description blob for a field or param.
20188
20189 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20190
20191         * reflection.h, reflection.c: change order of nested type emission
20192         to avoid table corruption. The NestedTypes table is sorted.
20193         * icall.c: change order of GetConstructor results to workaround mcs bug.
20194
20195 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20196
20197         * reflection.h, reflection.c: handle field and param marshal
20198         information.
20199
20200 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20201
20202         * icall.c, marshal.c marshal.h: more Marshal class implementation.
20203
20204 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20205
20206         * reflection.c: fix call convention.
20207
20208 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20209
20210         * reflection.h, reflection.c: mono_image_get_memberref_token()
20211         takes a type instead of a class, now. Added
20212         mono_image_get_array_token() to create tokens for the special
20213         multi-dim array methods.
20214
20215 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20216
20217         * assembly.c: handle modules (no assembly table). Split
20218         loading references in its own function.
20219         * class.c: handle moduleref resolution scope.
20220         * image.c, image.h: cache module name in image.
20221
20222 2002-06-07  Martin Baulig  <martin@gnome.org>
20223
20224         * reflection.c (mono_image_get_type_info): Only add a class layout entry
20225         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
20226
20227 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20228
20229         * icall.c: more signature fixes that used uint instead of int.
20230
20231 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20232
20233         * reflection.c: fixed signature of field refs.
20234
20235 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20236
20237         * class.c, reflection.c: handle typerefs of nested types
20238         (both on read and when writing files).
20239
20240 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20241
20242         * icall.c: fix method signatures that tried to workaround the previous
20243         typo, d'oh!
20244
20245 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20246
20247         * debug-helpers.c: fix typo.
20248
20249 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20250
20251         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
20252         rewrote the PE/COFF writing code (our programs are understood by the
20253         ms runtime, now).
20254
20255 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20256
20257         * gc.c, gc.h, icall.c: weakreference support.
20258
20259 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20260
20261         * Makefile.am, mono-config.c: use $(sysconfdir).
20262
20263 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20264
20265         * icall.c: changed default precision of Double.ToString() to 15.
20266         Fixed memory leak. Unified with Single.ToString.
20267
20268 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20269
20270         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20271
20272 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20273
20274         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20275         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20276         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20277         and myself.
20278
20279 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20280
20281         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20282
20283 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20284
20285         * reflection.c, socket-io.c: more compilation fixes.
20286
20287 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20288
20289         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20290         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20291         unicode.c: warning and compiler compatibility fixes.
20292
20293 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20294
20295         * class.h, metadata.c: fixed warnings/compilation errors.
20296
20297 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20298
20299         * Makefile.am, mono-config.c, mono-config.h: configuration file
20300         support routines.
20301         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20302         config file. Export methods to insert and lookup mappings.
20303
20304 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20305
20306         * reflection.c: handle types and boxed objects in custom attr
20307         constructors.
20308
20309 2002-05-30  Martin Baulig  <martin@gnome.org>
20310
20311         * debug-symfile.c
20312         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20313
20314 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20315
20316         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20317         to lookup the implmap row for a P/Invoke method.
20318         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20319         P/Invoke method from the runtime on an as needed basis.
20320
20321 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20322
20323         * metadata.c (mono_metadata_parse_signature): impl.
20324
20325 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20326
20327         * class.c: handle .pack directive.
20328
20329 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20330
20331         * object.c: initialize static fields with RVA data.
20332
20333 2002-05-25  Martin Baulig  <martin@gnome.org>
20334
20335         * debug-symfile.c
20336         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20337
20338 2002-05-24  Martin Baulig  <martin@gnome.org>
20339
20340         * debug-symfile.c
20341         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20342         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20343         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20344
20345 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20346
20347         * object.c: special case string ctros in invoke.
20348         * gc.c: silly whitespace changes.
20349
20350 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20351
20352         * threadpool.[ch]: impl. a threadpool that can
20353         be used by mint and mono.
20354
20355 2002-05-22  Martin Baulig  <martin@gnome.org>
20356
20357         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20358         The first argument is now a `MonoReflectionModuleBuilder *', the return
20359         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20360         `methods' field to get the method builder.  The `token' argument is the
20361         unfixed token.
20362
20363         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20364         invalid characters instead of g_assert_not_reached()ing.  This seems
20365         to be the behaviour of mscorlib.
20366
20367 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20368
20369         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20370         Hestilow to fix bug #25104
20371
20372 2002-05-21  Martin Baulig  <martin@gnome.org>
20373
20374         * debug-symfile.c (mono_debug_find_source_location): New function.
20375         Looks up an IL offset in the line number table and returns the source
20376         location as a string.
20377
20378 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20379
20380         * icall.c:
20381         (mono_double_ToStringImpl): changed %f by %g until we have something
20382         better.
20383
20384 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20385
20386         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20387         parameters first in C#.
20388
20389 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20390
20391         * icall.c, reflection.h: added icall to get info about an event.
20392
20393 2002-05-20  Radek Doulik  <rodo@ximian.com>
20394
20395         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20396         endian
20397         (mono_value_box): don't use memcpy for small sizes on
20398         architectures with unaligned access
20399
20400 2002-05-20  Martin Baulig  <martin@gnome.org>
20401
20402         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20403         if `tb->parent == NULL'.
20404         (mono_reflection_create_internal_class): New function.  This is
20405         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20406         for enum types.
20407
20408         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20409         New interncall.
20410
20411 2002-05-19  Martin Baulig  <martin@gnome.org>
20412
20413         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20414         argument to get the length, don't default to the array length.
20415
20416 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20417
20418         * assembly.c (mono_assembly_setrootdir): New function used to
20419         override the MONO_ASSEMBLIES directory.
20420
20421 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20422
20423         * icall.c: ValueType_GetHashCode() initialize local var.
20424
20425 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20426
20427         * reflection.c: sort custom attributes table.
20428
20429 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20430
20431         * reflection.c: support named args in custom attributes (write support).
20432
20433 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20434
20435         * reflection.c: fix finally position calculation.
20436
20437 2002-05-15  Radek Doulik  <rodo@ximian.com>
20438
20439         * reflection.c: fixed endianess at many places
20440
20441         * icall.c (ves_icall_InitializeArray): comment out debug msg
20442
20443 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20444
20445         * object.c (mono_unhandled_exception): new function to handle
20446         unhandled exceptions.
20447         (mono_unhandled_exception): call the UnhandledException event.
20448         (mono_runtime_delegate_invoke): impl.
20449
20450 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20451
20452         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20453         returns the RVA, not the direct pointer to the data. Handle the case
20454         when the class size is fixed.
20455
20456 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20457
20458         * reflection.c: fix some endianess issues.
20459
20460 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20461
20462         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20463
20464         * threads.c (mono_thread_init): added a callback which is invoked
20465         at thread start.
20466
20467 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20468         
20469         * icall.c: make GetHashCode return non-negative values.
20470
20471 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20472
20473         * object.c, icall.c, gc.c: revert to address-based hashcode.
20474
20475 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20476
20477         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20478
20479 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20480
20481         * icall.c, class.c: special case <Module>.
20482
20483 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20484
20485         * icall.c: fix bug in GetNow().
20486
20487 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20488
20489         * object.c (mono_runtime_class_init): make sure that we call all
20490         static class constructors.
20491
20492 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20493
20494         * reflection.c: sort methodsemantics table.
20495
20496 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20497
20498         * reflection.h, reflection.c: honour init locals setting.
20499
20500 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20501
20502         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20503
20504 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20505
20506         * reflection.c: support ContructorBuilders in attribute blob creation.
20507
20508 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20509
20510         * reflection.c: some changes to build a binary that can be run
20511         directly in windows.
20512
20513 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20514
20515         * loader.c: print a big message when an icall can't be found.
20516
20517 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20518
20519         * string-icalls.c: fix bug 24248.
20520
20521 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20522
20523         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20524         icall.c, reflection.h: separate assembly loading by pathname and by
20525         assembly name. Use the MONO_PATH env var to search for assemblies.
20526
20527 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20528
20529         * assembly.c, image.h: add some support for assemblies
20530         with multiple modules.
20531         * class.c, class.h: export mono_class_from_typeref().
20532         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20533         instead.
20534
20535 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20536
20537         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20538         documentation says (the ECMA one is correct).
20539
20540 2002-05-02  Dick Porter  <dick@ximian.com>
20541
20542         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20543         Don't name the synchronisation mutex.
20544
20545 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20546
20547         * rand.c
20548         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20549         Make the prototypes match.
20550         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20551         Same.
20552
20553         * icall.c
20554         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20555         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20556         all systems have tm.tm_zone, so use strftime() with %Z to print
20557         the timezone abreviation into a temp string.
20558
20559         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20560         rather than mono_array_addr() on a MonoString on Big Endian
20561         machines.
20562
20563 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20564
20565         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20566         fix bug 24041
20567
20568 2002-04-30  Dick Porter  <dick@ximian.com>
20569
20570         * socket-io.c: Cope with SOCKET being an integer rather than a
20571         pointer now.
20572
20573         * threads.c: Added Thread_free_internal, to deal with thread
20574         handle cleanup.  Moved calls to handle_store() and handle_remove()
20575         to start_wrapper(), so each can only be called once.  Allocate
20576         synchronisation blocks with GC_malloc(), and use GC finalisation
20577         to close the handles.
20578
20579         * icall.c: added System.Threading.Thread::Thread_free_internal
20580
20581 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20582
20583         * icall.c: support Environment.Exit, CommandLineArgs().
20584
20585 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20586
20587         * object.c, object.h: added mono_runtime_run_main () and
20588         mono_runtime_get_main_args () for use in System.Environment.
20589
20590 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20591
20592         * gc.c: fix thinko, enable actual finalization since the jit is now
20593         fixed.
20594
20595 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20596
20597         * gc.c, object.c: take into account that an object may be offset wrt the address
20598         returned by GC_malloc().
20599
20600 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20601
20602         * image.c: handle files without entries in the assembly table (modules).
20603
20604 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20605
20606         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20607         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20608         allowed to be null when it's System.Object class setup.
20609
20610 2002-04-27  Martin Baulig  <martin@gnome.org>
20611
20612         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20613         if `tb->parent == NULL' rather than crashing.
20614
20615 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20616
20617         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20618         calling acos() where asin() should have been called.
20619
20620 2002-04-26  Martin Baulig  <martin@gnome.org>
20621
20622         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20623         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20624         there's a subdirectory called `System', but we don't want to read that
20625         subdirectory as an assembly.
20626
20627 2002-04-25  Martin Baulig  <martin@gnome.org>
20628
20629         * debug-symfile.c: Reflect latest MonoString changes.
20630
20631 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20632
20633         * rand.c, rand.h: instance method icalls need to have an explicit
20634         this pointer as first argument in the C implementation.
20635
20636 2002-04-25  Nick Drochak <ndrochak@gol.com>
20637
20638         * icall.c: Fix typo in map for GetNonZeroBytes
20639
20640 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20641
20642         * string-icalls.c : String does now passes unit tests without any 
20643         errors, the following changes has been made:
20644         
20645         Implemented replace methods.
20646         Renaming of methods to (try) follow the standard.
20647         Fixed compare ordinal
20648         Made all memory allocated directly to function instead of via icall function.
20649         Small performance fix in is_in_array function
20650                         
20651  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20652
20653         c (mono_string_Internal_ctor_charp_int_int):
20654         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20655         sindex < 0, throw ArgumentOutOfRangeException instead of
20656         ArgumentNullException.
20657
20658         Added new check for length == 0, however
20659         I need to make it return String.Empty from the C code.
20660         
20661         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20662         that calculate the length for us here.
20663         
20664         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20665         mono_string_new_utf16 with mono_string_new, since value is utf8.
20666
20667 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20668
20669         * object.c: register the object for finalization if needed.
20670         Allocate one more char in the string for the terminating 0 char.
20671
20672 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20673
20674         * class.c, class.h, image.c: check if a type implemenst a destructor.
20675         Use the proper key for array class lookups.
20676         * icall.c: register the icalls in the System.GC class.
20677         * gc.c, gc.h: GC-related functions and icalls.
20678
20679 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20680
20681         * icall.c:
20682         * socket-io.c:
20683         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20684         changed a couple of free () by g_free ().
20685
20686         * decimal.c: one-liner in the comments for decimal2string ().
20687
20688 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20689
20690         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20691
20692 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20693
20694         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20695         * object.c (mono_runtime_invoke_array) : handle null in params
20696
20697 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20698
20699         * string-icalls.c: fixed bug in split (one off bug)
20700
20701 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20702
20703         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20704         * icalls.c: added String::Equals as internal method
20705
20706 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20707
20708         * threads.c: fixed bug in the double interlocked functions
20709
20710 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20711
20712         * threads.c: implemented all of the new interlocked icalls.
20713         * string-icalls.c: fix a bug in insert.
20714         * icalls.c: added the icalls for interlocked, removed old string functions.
20715         
20716 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20717
20718         * loader.c: fix off-by-one error when reading argument names.
20719
20720 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20721
20722         * profiler.c: win32 counter implementation (untested).
20723         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20724         (the latter needs testing and more complete impl. from win32 folks).
20725
20726 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20727
20728         * object.c: mono_array_new_full workaround mono_array_class_get
20729         problem.
20730
20731 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20732
20733         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20734         * object.h (mono_string_chars): Changed casting type.
20735
20736 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20737
20738         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20739                            method signatures to use gunichar2 instead of gint16.
20740
20741 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20742
20743         * object.h, object.c: domain-specific versions of mono_object_new and
20744         mono_array_new.
20745
20746 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20747
20748         * object.c: changed String layout
20749
20750         * string-icalls.c (mono_string_Internal_ctor_chara): added
20751         internal string constructors.
20752
20753 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20754
20755         * threads.c: pass 'this' to the thread start routine.
20756
20757 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20758
20759         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20760         InternalCompareStr don't call twice mono_string_cmp_char for the last
20761         character. Improved performance in mono_string_cmp_char.
20762
20763 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20764
20765         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20766         code into its own library: libmonoruntime.
20767
20768 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20769
20770         * object.h, object.c: changed array format so that szarrays do not
20771         require a bounds structure.
20772         * icall.c, appdomain.c: support for new szarray format.
20773
20774 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20775
20776         * metadata.c: compare also the retuns type when comparing signatures:
20777         we didn't do this as an optimization since really overloaded methods
20778         must differ also in the arguments, but this doesn't work with
20779         low-level IL code (or when using explicit conversion operators: see
20780         bug#23498 for an example).
20781
20782 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20783
20784         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20785
20786 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20787
20788         * icall.c: make MonoType::GetElementType its own icall.
20789
20790 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20791
20792         * icall.c: remove MonoMethod_get_Name().
20793         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20794         object.
20795
20796 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20797
20798         * string-icalls.c: optimized a few methods.
20799
20800 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20801
20802         * icall.c: added all new string internal calls
20803         * string-icalls.c: added, new string internal call implementation.
20804         * object.c: added mono_string_new_size for allocating a string a size
20805
20806 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20807
20808         * object.c (mono_object_isinst): use the same code as in the
20809         optimized x86 version.
20810
20811 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20812
20813         * profiler.c: TSC-based timer code (faster and more accurate).
20814         Not hooked up in configure, yet (set USE_X86TSC to 1).
20815
20816 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20817
20818         * profiler.c, profiler.h: track time spent compiling methods.
20819         * threads.c: track thread creation/destruction.
20820
20821 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20822
20823         * profiler.c, profiler.h, profiler-private.h: profiling interface
20824         and sample implementation. Moved here so that it can be used also by
20825         the jit.
20826
20827 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20828
20829         * reflection.c, reflection.h: keep types and other handles separate in
20830         the hash tables for referred tokens. Add guid for modules.
20831
20832 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20833
20834         * assembly.c: fix bugs found with valgrind.
20835         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20836
20837 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20838
20839         * threads: added icall support for getting current domain for
20840                    the thread.
20841  
20842 2002-04-13  Martin Baulig  <martin@gnome.org>
20843
20844         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20845         (MonoDebugVarInfo): Added `index' field for register based addresses.
20846         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20847         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20848         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20849         `MonoDebugVarInfo *this_var'.
20850
20851         * debug-symfile.c (relocate_variable): New static function to write
20852         a location description for a local variable or method parameter.
20853
20854 2002-04-12  Martin Baulig  <martin@gnome.org>
20855
20856         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20857         stack offset and begin/end scope address of a local variable.
20858         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20859         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20860         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20861
20862         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20863         Added new relocation types for start/end scope of a local variable.
20864
20865 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20866
20867         * object.h: add mono_object_domain() macro.
20868         * reflection.c: handle typespecs.
20869         * icall.c: MonoMethod::get_Name() implementation.
20870
20871 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20872
20873         * icall.c: String::GetHashCode() icall implementation.
20874
20875 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20876
20877         * icall.c: String::IndexOfAny icall.
20878         * object.c, object.h: make array->max_length more useful.
20879         Intrduced mono_object_class() and mono_string_length() macros.
20880
20881 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20882
20883         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20884         instead of g_unichar_isdigit.
20885
20886 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20887
20888         * icall.c: Implement a simple Double.ToString().
20889
20890 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20891
20892         * appdomain.h: only io-layer.h is supposed to be included.
20893         * icall.c: explicitly import environ. Fix warning.
20894
20895 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20896
20897         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20898                 return true even if it's not Daylight Savings time.
20899                 Only return false for the case where the function isn't
20900                 implemented for a plaform (read Windows).
20901
20902 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20903
20904         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20905         data with a mutex.
20906
20907 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20908
20909         * mempool.c (mono_mempool_alloc): only use g_malloc when
20910         absolutely necessary.
20911
20912 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20913
20914         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20915
20916         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20917         (mono_class_proxy_vtable): use domain mempool
20918
20919 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20920
20921         * appdomain.h, appdomain.c: split initialization that requires the
20922         execution engine support into mono_runtime_init().
20923
20924 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20925
20926         * class.c (mono_class_init): don't include vtable inside MonoClass
20927         to save some memory, gather some statistics.
20928         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20929
20930 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20931
20932         * icall.c: internalcall implementation for ValueType.Equals().
20933
20934 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20935
20936         * object.c (mono_message_init): moved 
20937         (mono_runtime_exec_main): new arch. independent impl.
20938         (mono_runtime_invoke_array): new method - like
20939         mono_runtime_invoke, but you can pass an array of objects.
20940         (mono_remoting_invoke): new arch. independent impl.
20941         (mono_message_invoke): new arch. independent impl.
20942         (mono_runtime_class_init): new arch. independent impl.
20943         (mono_runtime_object_init): new arch. independent impl.
20944
20945 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20946
20947         * metadata.c, object.c, reflection.c: documented the exported
20948         functions.
20949
20950 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20951
20952         * icall.c: simpler code to pass the assembly builder data to corlib.
20953         Implement GetNestedTypes() internalcall.
20954
20955 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20956
20957         * class.c: warn if a type can't be loaded.
20958
20959 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20960
20961         * image.h: typedef MonoImageOpenStatus
20962         * types.h: removed unused file
20963         
20964 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20965
20966         * icall.c: Enum_ToObject accepts enum value arguments.
20967
20968 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20969
20970         * class.c: move initialization of properties, events and nested
20971         classes, so that they happen for interfaces, too.
20972
20973 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20974
20975         * icall.c: cleanup some ugly casts in Array_SetValue*.
20976
20977 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20978
20979         * icall.c: the values array fro enums is of the correct type, now.
20980         Implement (correctly) getFullName instead of assQualifiedName for
20981         MonoType.
20982         * reflection.h, reflection.c: added mono_type_get_name ().
20983
20984 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20985
20986         * assembly.c, image.h: for each MonoImage, record from wich assembly
20987         it was loaded.
20988         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20989         Make Type.Assembly work.
20990
20991 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20992
20993         * debug-symfile.h: use char* instead of gpointer to avoid
20994         unnecessary casts.
20995
20996         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20997
20998         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20999         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
21000
21001 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
21002
21003         * icall.c (mono_message_init): impl. (code cleanup)
21004         (ves_icall_InternalExecute): impl. FieldGetter
21005
21006         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
21007         defined we call all (non-static)methods through the vtable. 
21008
21009 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
21010
21011         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
21012         finalizer even though the memory is still referenced (and the chunk of
21013         memory is not freed).
21014
21015 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21016
21017         * assembly.c: fix brokeness.
21018
21019 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
21020
21021         * class.c: kill some warnings. Check explicit interface method
21022         implementation also without considering the namespace.
21023         Load also literal strings in static class data.
21024
21025 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
21026
21027         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
21028         (default_assembly_name_resolver): Make the resolver take the
21029         "base" directory where the assembly was originally defined, so we
21030         can load DLLs that are in the same directory as the assembly that
21031         is being referenced.
21032
21033 2002-03-28  Dick Porter  <dick@ximian.com>
21034
21035         * file-io.h: 
21036         * file-io.c:
21037         * socket-io.c: 
21038         * unicode.h: 
21039         * unicode.c: Warning cleanups
21040
21041 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
21042
21043         * object.h, reflection.h: use the correct type instead of MonoObject.
21044
21045 2002-03-28  Martin Baulig  <martin@gnome.org>
21046
21047         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
21048         (mono_debug_update_symbol_file): Initialize classes if necessary.
21049
21050 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21051
21052         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
21053         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
21054
21055 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
21056
21057         * assembly.h: fix function prototype.
21058         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
21059         * mono-endian.h: use const cast.
21060
21061 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21062
21063         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
21064
21065 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21066
21067         * loader.c: don't assert when a typeref can't be loaded, give
21068         a chance to the runtime to trow an exception instead.
21069         * loader.h: fix warning.
21070
21071 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
21072
21073         * class.c (mono_class_proxy_vtable): added proxy support
21074
21075 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
21076
21077         * icall.c: removed last of PAL calls, added System.Environment
21078         * file-io.h, file-io.c: MonoIO implementation
21079         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
21080
21081 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21082
21083         * appdomain.c: do not use the byte marker in ldstr table lookup.
21084         * debug-helpers.c: allow two ':' to separate class and method name.
21085         * object.c: allocate arrays bounds with the GC, too.
21086         * verify: add a few more checks.
21087
21088 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
21089
21090         * reflection.c: output also literal strings. Allocate parameter data
21091         with GC_malloc() (thanks, Martin, for catching this!).
21092
21093 2002-03-26  Martin Baulig  <martin@gnome.org>
21094
21095         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
21096         include the `this' offset in the `param_offsets'.
21097
21098 2002-03-25  Martin Baulig  <martin@gnome.org>
21099
21100         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
21101         mono_debug_get_class() function to get the classes. Added new
21102         relocation types for arrays and strings.
21103         (mono_debug_get_class): New static function to search in all
21104         referenced assemblies for a metadata token.
21105
21106         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
21107
21108 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21109
21110         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
21111         hold gc-allocated objects. Make the string heap a stream like the
21112         others. Removed duplicated code when writing stream info.
21113         Added asserts to catch possible buffer overflows. Set the sorted map
21114         for tables that need sorting. Added some documentation.
21115
21116 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
21117
21118         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
21119         for interned strings and vtables.
21120
21121 2002-03-24  Martin Baulig  <martin@gnome.org>
21122
21123         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
21124         it in the array since it was created with g_slist_prepend().
21125
21126 2002-03-24  Martin Baulig  <martin@gnome.org>
21127
21128         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
21129         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
21130         (mono_debug_method_from_token): Renamed to
21131         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
21132         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
21133
21134         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
21135         relocation types.
21136
21137         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
21138
21139 2002-03-24  Martin Baulig  <martin@gnome.org>
21140
21141         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
21142         (mono_debug_method_from_token): New func.
21143
21144         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
21145         New interncall, calls mono_debug_local_type_from_signature().
21146         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
21147         calls mono_debug_method_from_token().
21148
21149 2002-03-23  Martin Baulig  <martin@gnome.org>
21150
21151         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
21152         specifies the number of bytes to be converted, not the array size.
21153         Return the number of chars, not the number of bytes.
21154         (ves_icall_iconv_get_chars): The `byteCount' argument
21155         specifies the number of bytes to be converted, not the array size.
21156
21157 2002-03-23  Martin Baulig  <martin@gnome.org>
21158
21159         * reflection.h (MonoReflectionSigHelper): New type.
21160
21161         * reflection.c (mono_reflection_sighelper_get_signature_local),
21162         (mono_reflection_sighelper_get_signature_local): New functions.
21163
21164         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
21165         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
21166         interncalls.
21167
21168 2002-03-23  Martin Baulig  <martin@gnome.org>
21169
21170         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
21171         is_writeable is set.
21172         (mono_raw_buffer_update): New function to write the modified map
21173         back to disk.
21174
21175         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
21176
21177         * debug-symfile.c (mono_debug_update_symbol_file): Call
21178         mono_raw_buffer_update() when done writing.
21179
21180 2002-03-23  Martin Baulig  <martin@gnome.org>
21181
21182         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
21183
21184         * debug-symfile.c: Added support for arguments and local variables.
21185
21186 2002-03-23  Dick Porter  <dick@ximian.com>
21187
21188         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
21189         protected by ifdefs, hence breaking the w32 build.
21190
21191 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21192
21193         * object.c: implement is_interned() the right way.
21194
21195 2002-03-21  Martin Baulig  <martin@gnome.org>
21196
21197         * debug-symfile.[ch]: New files to handle debugging information
21198         files. There's also support to dynamically update these symbol
21199         files to include machine dependent information.
21200
21201 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
21202
21203         * threads.c (mono_thread_create): new function to create thread
21204         from C
21205
21206 2002-03-20  Martin Baulig  <martin@gnome.org>
21207
21208         * icall.c (ves_icall_InternalInvoke): Create a new object if the
21209         method is a constructor.
21210         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
21211         points to ves_icall_InternalInvoke().
21212
21213 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
21214
21215         * file-io.c: Flush shouldn't throw exceptions.
21216
21217 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
21218
21219         * file-io.c: FileStream flush support; FileSetLength now
21220         restores file pointer.
21221
21222 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21223
21224         * class.c: set image for pointer classes.
21225
21226 2002/03/19  Nick Drochak <ndrochak@gol.com>
21227
21228         * sysmath.c: Forgot one.
21229
21230 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
21231
21232         * sysmath.c: Avoid redefining existing names.
21233
21234 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
21235
21236         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
21237         handled by runtime as icall rather than dllimport from libm.so
21238         * file-io.c, file-io.h: fixed handle argument type.
21239
21240 2002-03-18  Dick Porter  <dick@ximian.com>
21241
21242         * reflection.c (mono_image_get_type_info): rename interface to
21243         iface, because of "#define interface struct" on windows.
21244
21245 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
21246
21247         * class.c, class.h: rename and export mono_ptr_class_get().
21248         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
21249         * reflection.c, reflection.h, icall.c: better/saner type name
21250         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
21251         method signatures.
21252
21253 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
21254
21255         * class.c (mono_class_init): removed hardcoded GHC_SLOT
21256
21257         * icall.c (ves_icall_InternalInvoke): impl.
21258
21259 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21260
21261         * reflection.c: output the interface map table, too.
21262
21263 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21264
21265         * class.c (class_compute_field_layout): separate computation of 
21266         static field layout
21267
21268 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21269
21270         * icall.c: added System.Buffer support.
21271         * file-io.c: moved file icalls from PAL to FileStream.
21272
21273 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21274
21275         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21276
21277 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21278
21279         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21280
21281 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21282
21283         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21284
21285 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21286
21287         * debug-helpers.{c,h}: moved here from monograph some useful functions
21288         to locate a method by name/signature in a class or image. Included
21289         also a small and flexible IL disassembler.
21290
21291 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21292
21293         * reflection.c: fixup tokens in methods with small header size, too.
21294
21295 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21296
21297         * object.c (mono_string_to_utf8): remove assert(!error), instead
21298         print a warning. 
21299
21300 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21301
21302         * icall.c: update to the new mono_Array_class_get interface.
21303
21304 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21305
21306         * appdomain.c, object.c: Boehm-GC enable.
21307         * icall.c: make get_data_chunk() support split data requests.
21308         Ensure a class is initialized in more cases. Return only the first
21309         property found in GetProperties() or the compiler gets confused. 
21310         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21311         * reflection.h, reflection.c: add fixup mechanism for field and method
21312         tokens. Initialize assembly->typeref in a single place. Output
21313         properties after events. Support custom attributes for events, too.
21314         Typo fix for paramter custom attrs.
21315
21316 2002-03-07  Martin Baulig  <martin@gnome.org>
21317
21318         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21319
21320 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21321
21322         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21323
21324 2002-03-06  Martin Baulig  <martin@gnome.org>
21325
21326         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21327         non-zero lower bounds. See testcases #F10-#F13.
21328
21329 2002-03-05  Martin Baulig  <martin@gnome.org>
21330
21331         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21332
21333         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21334         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21335         here.
21336         (ves_icall_System_Array_SetValue): Likewise.
21337         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21338         as argument and does the actual work. This function is used when copying a
21339         multi-dimensional array.
21340         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21341         now do all the widening conversions of value types.
21342         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21343
21344 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21345
21346         * class.c: remove some magic numbers and use the smbolic names,
21347         instead. Added init_events() to load event info at class init time.
21348         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21349         and mono_metadata_methods_from_event().
21350         * reflection.h, reflection.c: added support for writing out the evnets
21351         related information.
21352
21353 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21354
21355         * reflection.h, icall.c: use a different method (GetInterfaces)
21356         to gather interface info and add isbyref, isprimitive and
21357         ispointer to the ves_icall_get_type_info() return value.
21358
21359 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21360
21361         * class.h: stared adding support for events.
21362         * icall.c: split find_members implementation. Added debug icall to get
21363         the address of an object.
21364         * reflection.c: handle TypeBuilders in mono_type_get_object().
21365
21366 2002-03-01  Martin Baulig  <martin@gnome.org>
21367
21368         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21369         ArgumentOutOfRangeException(), not an ArgumentException().
21370         (ves_icall_System_Array_GetLowerBound): Likewise.
21371         (ves_icall_System_Array_GetValue): Improved argument checking.
21372         (ves_icall_System_Array_SetValue): Improved argument checking.
21373
21374 2002-03-01  Martin Baulig  <martin@gnome.org>
21375
21376         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21377         called with invalid arguments rather than just dying with g_assert().
21378         (ves_icall_System_Array_SetValue): Likewise.
21379         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21380         raise a NotImplementedException instead.
21381         (ves_icall_System_Array_GetLength): Added argument checking.
21382         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21383
21384 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21385
21386         * object.h (mono_assert): new macros mono_assert and
21387         mono_assert_not_reached
21388
21389 2002-02-28  Martin Baulig  <martin@gnome.org>
21390
21391         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21392         and "System::String::IsInterned" to "System::String::_IsInterned".
21393
21394 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21395
21396         * icall.c: remove hacks for typebuilder. Added icall to create a
21397         modified type from a tybebuilder.
21398         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21399         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21400         to create a backing MonoClass for a TypeBuilder.
21401
21402 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21403
21404         * class.c, class.h: more refactoring of class init.
21405         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21406
21407 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21408
21409         * marshal.c, marshal.h: start of marshaling interface.
21410
21411 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21412
21413         * icall.c: fix order in assembly qualified name icall.
21414
21415 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21416
21417         * class.c: do not free str, since we store it in the hash table.
21418         * reflection.h: add label field to MonoILExceptionInfo.
21419         * reflection.c: handle references to more than one assembly. Handle
21420         case when there isn't a module created in the assembly.
21421
21422 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21423
21424         * class.c: Fix typo. Start refactoring of class init code.
21425
21426 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21427
21428         * appdomain.c: exit with 1 on error.
21429         * class.c: we already have the name in MonoClassField.
21430         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21431         MonoStreamHeader instead of an offset of image->raw_metadata.
21432
21433 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21434
21435         * appdomain.c (mono_init): Be even more descriptive about the error.
21436
21437 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21438
21439         * appdomain.c: give the user an informative message when corlib can't
21440         be loaded.
21441
21442 2002-02-26  Martin Baulig  <martin@gnome.org>
21443
21444         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21445         New icall to get the time zone data.
21446
21447 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * reflection.c: set virtual and raw size of section correctly.
21450         * threads.c: transfer domain information to newly created threads.
21451
21452 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21453
21454         * class.c: when instancing a class in a domain, load the default
21455         vaules for static fields from the constant table. Fix System.Enum to
21456         not be an enum.
21457         * icall.c: implement Object::GetType() internalcall. Implemented
21458         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21459         Fixed checking of binding flags in find_members().
21460         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21461         * reflection.c: handle enumerations when writing to the constant
21462         table. Use a different object cache for types.
21463
21464
21465 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21466
21467         * object.c (mono_object_isinst): fix for arrays
21468
21469         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21470
21471 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21472
21473         * object.c: don't use mprotect ()  and fix intern pool hash table
21474         lookup for big endian systems.
21475
21476 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21477
21478         * icall.c: change type_is_subtype_of () signature.
21479
21480 2002-02-21  Mark Crichton  <crichton@gimp.org>
21481
21482         * rand.c, rand.h: Added random number generator for
21483         System.Security.Cryptography classes.
21484
21485         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21486
21487         * icall.c: Added System.Security.Cryptography calls.
21488
21489 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21490
21491         * class.c, icall.c, metadata.c: better support for pointer types.
21492         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21493         * reflection.c: Add support for getting custom attrs for properties
21494         and simplify some code.
21495
21496 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21497
21498         * icall.c: change getToken () and add custom attribute GetBlob()helper
21499         method.
21500         * reflection.h: add custom attrs array to the reflection builder structures.
21501         * reflection.c: encode and emit custom attributes for all the relevant
21502         reflection objects. Cache fieldref and methodref tokens. Change
21503         mono_image_create_token() interface to take a MonoDynamicAssembly.
21504         More complete custom attributes decoder. Load custom attributes for
21505         Assembly, Field, Method and Constructor objects, too. Make the
21506         returned array an Attribute[] one, not object[]. Added
21507         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21508         custom attribute constructor.
21509
21510 2002-02-20  Dick Porter  <dick@ximian.com>
21511
21512         * icall.c:
21513         * rawbuffer.c:
21514         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21515         problem code out for now).
21516
21517 2002-02-19  Radek Doulik  <rodo@ximian.com>
21518
21519         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21520
21521 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21522
21523         * icall.c: register the GetCustomAttributes method.
21524         * object.c, object.h: add mono_string_new_len ().
21525         * reflection.h, reflection.c: added mono_runtime_invoke(),
21526         mono_install_runtime_invoke(). Added
21527         mono_reflection_get_custom_attrs () to load custom attributes and
21528         create the attribute objects.
21529
21530 2002-02-19  Dick Porter  <dick@ximian.com>
21531         * threads-dummy-types.c:
21532         * threads-dummy-types.h:
21533         * threads-dummy.c:
21534         * threads-dummy.h:
21535         * threads-pthread-types.c:
21536         * threads-pthread-types.h:
21537         * threads-pthread.c:
21538         * threads-pthread.h:  Deleted obsolete files
21539
21540 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21541
21542         * class.c (mono_class_vtable): runtime init the class when we
21543         allocate static class data.
21544
21545         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21546
21547         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21548         and String - but we will need generic marshalling support in the
21549         future. 
21550         (mono_init): set the domain name in a ms compatible way
21551
21552         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21553         String[].
21554
21555 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21556
21557         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21558         for sizes
21559
21560         * appdomain.c (mono_domain_unload): impl.
21561
21562 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21563
21564         * appdomain.c, object.c: fix intern pool implementation.
21565         * class.c: fix alignment code.
21566
21567 2002-02-16  Radek Doulik  <rodo@ximian.com>
21568
21569         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21570         and s2 > s1, just copy lower bytes to be compatible with little
21571         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21572         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21573
21574         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21575         force big_endian to be 1 for big endian machines 
21576         (ves_icall_iconv_new_decoder): ditto
21577
21578 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21579
21580         * socket-io.c (convert_sockopt_level_and_name): If the system
21581         doesn't define SOL_IP or SOL_TCP, get them by hand using
21582         getprotobyname() and caching the values (because this could be a
21583         slow operation).
21584         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21585         Use the appropriate struct when the system does support it. Ie,
21586         not all systems have struct ip_mreqn so use struct ip_mreq when
21587         appropriate.
21588
21589 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21590
21591         * reflection.c: handle finally clauses.
21592
21593 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21594
21595         * socket-io.c: use g_snprintf() instead of snprintf.
21596
21597 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21598
21599         * reflection.c (mono_param_get_objects): Cast second argument to
21600         mono_method_get_param_names to a const char** to silence the
21601         compiler warning.
21602
21603         * appdomain.c (mono_domain_assembly_open): Put parens around the
21604         truth statement in the for-loop.
21605
21606         * unicode.c (iconv_convert): Got rid of a compiler warning about
21607         int i being unused when the system has a new iconv.
21608         (iconv_get_length): Same.
21609
21610         * image.c (load_class_names): Cast the second argument to
21611         g_hash_table_insert() to char* to hush compiler warnings about the
21612         arg being a const.
21613         (mono_image_open): Same here.
21614
21615         * socket-io.c: Don't conditionally include sys/filio.h or
21616         sys/sockio.h here anymore since we now get them from
21617         io-layer/io-layer.h
21618         (inet_pton): If the system doesn't support inet_aton, implement
21619         using inet_addr and also #define INADDR_NONE if it isn't defined
21620         by the system.
21621
21622 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21623
21624         * metadata.c, metadata.h: added function to get packing and size info
21625         of a typedef.
21626         * reflection.h, reflection.c: handle field RVA data. Save info about
21627         the table layout if needed. Assign typedef indexes to all the types
21628         before dumping the info about them to avoid forward reference problems.
21629
21630 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21631
21632         * socket-io.c (convert_sockopt_level_and_name): ifdef
21633         SO_ACCEPTCONN because it is not defined on my system (old debian)
21634
21635 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21636
21637         * opcode.c: use stddef.h to get NULL.
21638
21639 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21640
21641         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21642         for FIONBIO, FIONREAD and SIOCATMARK.
21643         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21644         define INADDR_NONE and besides, inet_addr() is deprecated and
21645         should not be used. Use inet_pton() instead - it also has the
21646         added bonus that it can easily handle IPv6 addresses as well.
21647         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21648
21649 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21650
21651         * decimal.c: remove _MSC_VER conditional.
21652
21653 2002-02-13  Dick Porter  <dick@ximian.com>
21654
21655         * socket-io.c: 
21656         * icall.c: Internal calls for Blocking, Select, Shutdown,
21657         GetSocketOption and SetSocketOption
21658
21659 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21660
21661         * assembly.cs: better resolver: use it instead of some kludgy
21662         code.
21663
21664 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21665
21666         * reflection.c: the best way to speed-up the compiler is to avoid
21667         infinite loops.
21668
21669 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21670
21671         * class.c (mono_class_vtable): changed the object layout
21672         (obj->vtable->class). 
21673         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21674
21675 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21676
21677         * assembly.c: look for assemblies in the assembly dir, too.
21678
21679 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21680
21681         * class.c: fix thinko in mono_class_from_type().
21682
21683 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21684
21685         * exception.h, exception.c: added TypeLoadException.
21686         * object.h, object.c: added mono_array_clone ().
21687         * icall.c: handle throwOnError in AssemblyGetType().
21688         Added Array.Clone().
21689         * opcode.h, opcode.c: use a single value for the opcode val.
21690         Compile fix for non-gcc compilers.
21691
21692 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21693
21694         * opcodes.c, opcodes.h: export interesting info about opcodes.
21695
21696 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21697
21698         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21699         icalls. 
21700
21701         * class.c (class_compute_field_layout): set element_class for enums
21702         (mono_class_create_from_typedef): set element_class for normal classes
21703
21704         * icall.c (ves_icall_System_Enum_get_value): impl.
21705
21706         * class.c (mono_class_create_from_typedef): do not set valuetype
21707         flag for System.ValueType and System.Enum
21708
21709 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21710
21711         * unicode.c (iconv_convert): fix big endian problem.
21712
21713 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21714
21715         * class.c: add asserts if we are ever going to scribble over memory.
21716         * socket-io.c: not all systems have AF_IRDA defined.
21717
21718 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21719
21720         * class.c (class_compute_field_layout): do not consider static
21721         fields to compute alignment
21722
21723 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21724
21725         * appdomain.c (mono_appdomain_get): impl.
21726         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21727
21728 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21729
21730         * icall.c: ignore "file://" prefix when loading an assembly.
21731
21732 2002-01-23  Dick Porter  <dick@ximian.com>
21733
21734         * socket-io.c:
21735         * icall.c:
21736         * Makefile.am: Added socket support
21737
21738 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21739
21740         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21741         code back.  This should return the assemblies that are loaded by
21742         the runtime on behalf of an application domain. 
21743
21744         The current implementation is still broken, it just returns every
21745         assembly loaded, but until we get real applications domain this
21746         will do.
21747
21748 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21749
21750         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21751         AppDomain object.
21752
21753 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21754
21755         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21756         the mono_class_from_name lookup.
21757         (ves_icall_get_parameter_info): ditto.
21758         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21759         method.
21760         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21761
21762 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21763
21764         * class.c: load also nested classes on class init.
21765         System.ValueType instance methods gets passed boxed
21766         values, unless methods in derived classed that get a pointer to the
21767         data.
21768         * icall.c: use better name parsing code in GetType().
21769         * image.c, image.h: add mono_image_loaded ().
21770         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21771         * reflection.c, reflection.h: added mono_reflection_parse_type().
21772
21773 2002-01-22  Veronica De Santis <veron78@interfree.it>
21774
21775         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21776         * threads.c : Added the implementation of internal calls for events
21777         * threads.h : Added prototypes of internal calls for events
21778         
21779 2002-01-21  Radek Doulik  <rodo@ximian.com>
21780
21781         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21782
21783 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21784
21785         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21786         (mono_class_value_size): use min_align
21787
21788 2002-01-20  Dick Porter  <dick@ximian.com>
21789
21790         * threads.h:
21791         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21792         so it compiles on w32.
21793
21794 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21795
21796         * metadata.c (mono_type_stack_size): impl.
21797
21798         * class.c (mono_class_get_field): impl. memberref token
21799
21800 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21801
21802         * icall.h : Added the internal calls mapping for CreateMutex_internal
21803                     and ReleaseMutex_internal.
21804         * threads.h : Added the prototype of mutexes internal calls.
21805         * threads.c : Added the implementations of mutexes internal calls.
21806
21807 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21808
21809         * metaparse.h: removed unused file.
21810         * reflection.c, reflection.h: added stream_data_align () function 
21811         to align data in streams and keep stream aligned. Add support for
21812         exception support in method headers.
21813
21814 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21815
21816         * unicode.c: make iconv_convert () return the number of bytess written
21817         in the output buffer.
21818
21819 2002-01-15  Dick Porter  <dick@ximian.com>
21820         * threads.c: Make the runtime's idea of infinite timeouts coincide
21821         with the class library's
21822
21823         Fix a particularly egregious bug in mono_thread_cleanup(). That
21824         code was so utterly bogus it must have been written on a Monday.
21825
21826 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21827
21828         * reflection.h: add subtypes field to TypeBuilder.
21829         * reflection.c: encode constants for literal fields.
21830         Handle subtypes. Fix user string token (and add a zero byte)
21831         at the end.
21832         
21833 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21834
21835         * class.c (mono_class_init): bug fix: assign slot numbers for
21836         abstract methods.
21837
21838 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21839
21840         * reflection.c: don't try to output a code RVA for abstract methods.
21841         Small fixes for method header format. Output parameter info to the
21842         ParamDef table. Save method overriding info to MethodImpl table.
21843         Fix property support. Allow typedef.extends to be a type in the
21844         building assembly.
21845         * verify.c: fix off-by-one error.
21846
21847 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21848
21849         * class.c: fix mono_class_from_mono_type () for szarray types.
21850         Remove unused cache check in mono_class_from_type_spec().
21851         * icall.c: *type_from_name () functions handle simple arrays and byref.
21852         * reflection.c: handle byref and szarray types. Handle methods without
21853         body (gets P/Invoke compilation working). Handle types and fields in
21854         get_token ().
21855         * reflection.h: add rank to MonoTypeInfo.
21856
21857 2002-01-10  Dick Porter  <dick@ximian.com>
21858
21859         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21860         internal calls
21861
21862 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21863
21864         * icall.c: initialize class in type_from_handle ().
21865         Loop also in parent classes for get_method ().
21866         * reflection.c: properly encode class and valuetype types.
21867         Start on encoding TypeBuilder types. Handle fieldrefs.
21868         Use correct length when registering a user string.
21869         Handle ConstructorBuilder and MonoMethod in get_token ().
21870         Make mono_type_get_object () aware of cached types.
21871         * object.c: back out change to mono_string_new ().
21872
21873 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21874         * object.c: mono_string_new should return a NULL when the string 
21875         passed in is NULL -- not try to deference it.
21876         
21877 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21878
21879         * icall.c: hack to make IsSubType work for TypeBuilders.
21880         * reflection.c: emit constructors before methods.
21881         Retrieve param names in mono_param_get_objects().
21882
21883 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21884
21885         * Makefile.am: fix list of headers and sources so automake 1.5
21886         doesn't complain. Removed \# at end of list.
21887
21888 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21889
21890         * reflection.c: get token for a method ref. Set return type of
21891         constructor to void.
21892         * loader.c: debug message.
21893         * class.c: typo fix.
21894
21895 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21896
21897         * icall.c: fix array init with rank > 1. FindMembers
21898         loops in parent class as well.
21899         * image.c: do not insert nested types in name cache.
21900         * reflection.c: warning fix.
21901         * reflection.h: add override method (for interface impl).
21902
21903 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21904
21905         * metadata.c: fix customattr decoding.
21906
21907 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21908
21909         * rawbuffer.cs: Added native Win32 implementation, avoids using
21910         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21911
21912 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21913
21914         * class.c: make the low-level routines handle the cache.
21915
21916 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21917
21918         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21919
21920 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21921
21922         * class.c: fix mono_array_element_size() for objects.
21923         * class.h, class.c: add properties to MonoClass and load them
21924         at init time.
21925         * icall.c: check with isinst() when assigning a value to an array
21926         instead of requiring the classes to match exactly.
21927         Implemented icall for System.Type::GetType().
21928         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21929         enums. Handle bindingflags when looking for methods and fields.
21930         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21931         and mono_metadata_methods_from_property().
21932         * reflection.h, reflection.c: added structures for propreties,
21933         parameters and enums. Implemented mono_property_get_object() and
21934         mono_param_get_objects().
21935
21936 2001-12-18  Dick Porter  <dick@ximian.com>
21937
21938         * file-io.c: Use mono_string_to_utf16() instead of
21939         mono_string_chars()
21940
21941         * object.c: Added mono_string_to_utf16(), which copies the non
21942         NULL-terminated MonoString into a new double-null-terminated
21943         buffer.
21944
21945 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21946
21947         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21948
21949 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21950
21951         * file-io.c: raise exceptions if handle is invalid.
21952
21953 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21954
21955         * assembly.c: yet another check for mscorlib.
21956         * class.c, class.h: load nesting info for classes.
21957         * icall.c: many new functions to support the Reflection classes.
21958         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21959         * reflection.h, reflection.c: mono_image_create_token(),
21960         mono_assembly_get_object(), mono_type_get_object(),
21961         mono_method_get_object(), mono_field_get_object(): methods to return
21962         objects that parallel the C representation of assemblies, types,
21963         methods, fields.
21964
21965 2001-12-11  Dick Porter  <dick@ximian.com>
21966
21967         * icall.c:
21968         * file-io.c: Internal calls for file IO.
21969
21970 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21971
21972         * tabledefs.h: missing FileAttributes.
21973         * verify.h, verify.c: use is_valid_string () to simplify and check for
21974         valid strings more correctly. Fix warnings and speeling.
21975         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21976         Check code: branches, maxstack, method calls.
21977
21978 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21979
21980         * object.c (mono_object_allocate): removed static, so that the jit
21981         can allocate value types.
21982
21983         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21984
21985 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21986
21987         * class.c: init enum types right away and register the
21988         token->MonoClass map in mono_class_create_from_typedef ().
21989         * verify.h, verify.c: first cut of the verifier.
21990         * pedump.c: add --verify switch to verify metadata tables.
21991         * tabledefs.h: add some missing enums.
21992
21993 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21994
21995         * class.c (mono_install_runtime_class_init): impl.
21996         (mono_class_init): renamed mono_class_metadata_init to
21997         mono_class_init, also removed the metadata_inited flag
21998
21999         * object.c (mono_object_isinst): use faster algorithm
22000
22001 2001-11-30  Radek Doulik  <rodo@ximian.com>
22002
22003         * mono-endian.h: reverted last change
22004         added function prototypes
22005
22006         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
22007         add mono-endian.c back
22008
22009         * mono-endian.c: returned back, as Paolo pointed out, it's needed
22010         for unaligned access, I've mistaked it with endianess. I am
22011         sorry.
22012         (mono_read16): fix reverted endianess
22013         (mono_read64): ditto
22014         (mono_read32): ditto
22015
22016 2001-11-30  Dick Porter  <dick@ximian.com>
22017
22018         * exception.c: Implement mono_exception_from_name()
22019
22020 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22021
22022         * metadata.h, metadata.c: remove params_size and locals_size and their
22023         calculation from the metadata code: they are only usefult to the
22024         interp.
22025
22026 2001-11-29  Radek Doulik  <rodo@ximian.com>
22027
22028         * object.c (mono_ldstr): swap bytes here, it's probably not the
22029         best place, but works for me now, I'll redo it once I know mono
22030         better, also note that I add PROT_WRITE and don't reset back, also
22031         note that it's only affects big endians, so x86 should be OK
22032
22033         * mono-endian.h (read16): use just glib macros for both endians
22034
22035         * mono-endian.c: removed as glib macros are used in in
22036         mono-endian.h so we don't need to care about endianess for read
22037         macros as glib does that for us already
22038
22039 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
22040
22041         * class.h, class.h: take minimum alignment into consideration so
22042         that the fields of a class remain aligned also when in an array.
22043
22044 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22045
22046         * loader.h, loader.c: add mono_method_get_param_names().
22047         * class.c: 0-init class fields.
22048
22049 2001-11-26  Dick Porter  <dick@ximian.com>
22050
22051         * icall.c:
22052         * threads-types.h:
22053         * threads.c: New file that handles System.Threading on all platforms
22054
22055         * object.c: 
22056         * object.h: Remove the synchronisation struct from MonoObject,
22057         replace it with a pointer that gets initialised on demand
22058
22059         * Makefile.am: Replace all the system-specific threading code with
22060         a single file that uses the new wrapper library
22061
22062 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
22063
22064         * class.c, class.h: add mono_install_trampoline() so that the runtime
22065         can register a function to create a trampoline: removes the ugly
22066         requirement that a runtime needed to export arch_create_jit_trampoline.
22067         * object.h, object.c: added mono_install_handler() so that the runtime
22068         can install an handler for exceptions generated in C code (with
22069         mono_raise_exception()). Added C struct for System.Delegate.
22070         * pedump.c: removed arch_create_jit_trampoline.
22071         * reflection.c: some cleanups to allow registering user strings and
22072         later getting a token for methodrefs and fieldrefs before the assembly
22073         is built.
22074         * row-indexes.h: updates and fixes from the new ECMA specs.
22075
22076 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
22077
22078         * class.h, class.c: add enum_basetype field to MonoClass.
22079         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
22080         to get index in the constant table reated to a field, param or
22081         property.
22082         * reflection.h, reflection.c: handle constructors. Set public-key and
22083         version number of the built assembly to 0.
22084         * row-indexes.h: update from new ECMA spec.
22085
22086 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22087
22088         * class.h, class.c: add a max_interface_id to MonoClass.
22089         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
22090         since it's used to do that. Added mono_type_type_from_obj().
22091         Make GetType() return NULL instead of segfaulting if the type was not
22092         found. Handle simple arrays in assQualifiedName.
22093         * object.h: add a struct to represent an Exception.
22094         * reflection.c: output call convention in method signature.
22095         Add code to support P/Invoke methods and fixed offsets for fields.
22096
22097 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
22098
22099         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
22100         the value.
22101         * icall.c: use mono_array_addr instead of array->vector: fixes the
22102         reflection image writing.
22103         * reflection.c: init call convention byte to 0 in method signature.
22104         Encode the property signature. Don't output property-related methods
22105         twice. Really process the properties for a type (don't cast a field to
22106         a property, my mom always told me that).
22107         Fix 64 bit issues in pointer alignment in a different and more
22108         readable way.
22109
22110 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
22111
22112         * loader.h: Removed type class from MonoDefaults, added monotype
22113
22114         * loader.c: Loaded MonoType, removed loading of Type
22115
22116         * icall.c (my_mono_new_object): Now returns a System.MonoType,
22117         and fills in System.Type._impl with a RuntimeTypeHandle rather
22118         than the actual MonoClass *
22119
22120         (ves_icall_type_from_handle): change from type_class to
22121         monotype_class
22122
22123         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
22124         implemented
22125
22126         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
22127         implemented
22128
22129         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
22130
22131         (ves_icall_System_Reflection_Assembly_GetType): implemented
22132
22133         (ves_icall_System_MonoType_assQualifiedName): implemented
22134
22135         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
22136
22137 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
22138
22139         * assembly.c (mono_assembly_open): Implement a cache for the
22140         assemblies. 
22141
22142         (mono_assembly_close): only destroy the assembly when the last
22143         reference is gone.
22144         
22145 2001-11-09  Dick Porter  <dick@ximian.com>
22146
22147         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
22148
22149 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
22150
22151         * class.c (mono_class_metadata_init): bug fix: compute the right slot
22152
22153 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22154
22155         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
22156         from Martin Weindel.
22157         * object.h: add mono_string_chars ().
22158
22159 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
22160
22161         * reflection.c (build_compressed_metadata): Eliminates warnings
22162         and uses 64-bit clean code.
22163
22164         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
22165         (mono_type_equal): Change signature to eliminate warnings.
22166
22167 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22168
22169         * icall.c, loader.c: remove the internalcall array constructors.
22170         Changes to match the new MonoArray structure.
22171         * object.h, object.c: an array object doesn't allocate an extra
22172         vector. Add mono_array_new_full () to create jagged arrays easily.
22173
22174 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22175
22176         * metadata.h, metadata.c: add mono_metadata_field_info () to
22177         retreive all the info about a field from vairous tables.
22178         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
22179         * class.h, class.c: augment MonoClassField with more info.
22180         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
22181         policy and load a field's RVA if needed.
22182
22183 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
22184
22185         * class.c (mono_class_metadata_init): create a trampoline for all
22186         virtual functions instead of actually compiling them.
22187
22188 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
22189
22190         * class.h, class.c: include name in MonoClassField.
22191         * class.c: fix fundamental type of System.Object and System.String.
22192         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
22193         tokens in ldtoken.
22194         * icall.c: remove internalcalls for the Reflection stuff that is now
22195         done in C# code.
22196         * loader.c: mono_field_from_memberref () implementation.
22197         * mono-endian.c: thinko (s/struct/union/g).
22198         * object.c, object.h: make the mono_string_* prototypes actually use
22199         MonoString instead of MonoObject.
22200         * reflection.c, reflection.h: updates for changes in the reflection
22201         code in corlib: we use C structures that map to the actual C# classes.
22202         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
22203         fat method header if needed and use the info from the ILGenerator for
22204         methods. Handle fields in types. Misc fixes.
22205
22206 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
22207
22208         * class.c (mono_class_metadata_init): bug fix: always allocate
22209         space for static class data
22210
22211 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
22212
22213         * class.c (mono_compute_relative_numbering): use relative
22214         numbering to support fast runtime type checks.
22215
22216 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
22217
22218         * class.c (mono_class_create_from_typeref): added debugging output
22219         to print class name when MonoDummy is returned instead of real class
22220
22221 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
22222
22223         * class.c (mono_class_metadata_init): interface offset table now
22224         contains pointers into the vtable - this is more efficient for the jit
22225
22226 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
22227
22228         * class.c (mono_class_metadata_init): use a temporary vtable (the
22229         old algorithm only worked for the interpreter, but not for the jit)
22230
22231 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
22232
22233         * loader.c (method_from_memberref): use mono_class_get to get the
22234         class of an array instead of using System.Array directly.
22235         (mono_get_method): also add MEMBERREF methods to the method cache
22236         which usefull for arrays.
22237
22238 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
22239
22240         * pedump.c (arch_compile_method): added to compute vtable entry
22241
22242         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
22243         number of interfaces.
22244         
22245         * class.h: merged MonoArrayClass into MonoClass
22246
22247         * class.c (mono_class_create_from_typedef): compute the vtable size and
22248         allocate space to include the vtable inside MonoClass
22249         (mono_class_metadata_init): initialize the vtable
22250
22251 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
22252
22253         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
22254         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
22255         * image.c: endian fixes by Laurent Rioux.
22256         * object.h, object.c: rename MonoStringObject to MonoString and
22257         MonoArrayObject to MonoArray. Change some function names to conform to
22258         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
22259         guint16* as first argument, so don't use char*.
22260         Provide macros to do the interesting things on arrays in a portable way.
22261         * threads-pthread.c: updates for the API changes and #include <sched.h>
22262         (required for sched_yield()).
22263         * icall.c: updates for the API changes above.
22264         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
22265         platforms that need them.
22266
22267 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22268
22269         * class.c: set the correct type for all the fundamental
22270         type when loading the class.
22271
22272 2001-10-05  Dick Porter  <dick@ximian.com>
22273
22274         * threads-pthread.c (pthread_mutex_timedlock): Simple
22275         compatibility version for C libraries that lack this call.
22276
22277 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22278
22279         * class.c: MonoTypes stored in MonoClass are stored as
22280         fundamental MonoTypes when the class represents a
22281         fundamental type (System.Int32, ...).
22282         The TypeHandle return by ldtoken is a MonoType*.
22283         * icall.c: ves_icall_get_data_chunk () write out all the
22284         PE/COFF stuff. Implement ves_icall_define_method (),
22285         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22286         * image.c: properly skip unknown streams.
22287         * loader.h, loader.c: add type_class to mono_defaults.
22288         * metadata.c, metadata.h: export compute_size () as
22289         mono_metadata_compute_size () with a better interface.
22290         Typo and C&P fixes.
22291         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22292         * reflection.c, reflection.h: many cleanups, fixes, output method
22293         signatures and headers, typedef and typeref info, compress the metadata
22294         tables, output all the heap streams, cli header etc.
22295         * row-indexes.h: typo fixes.
22296
22297 2001-10-04  Dick Porter  <dick@ximian.com>
22298
22299         * object.h: Add a synchronisation mutex struct to MonoObject
22300
22301         * object.c (mono_new_object): Initialise the object
22302         synchronisation mutexes
22303
22304         * icall.c: System.Threading.Monitor internal calls
22305         
22306         * threads-pthread.h:
22307         * threads-pthread.c: System.Threading.Monitor internal calls
22308
22309         * threads-types.h: New file, includes the system-specific thread
22310         structures
22311         
22312         * threads-pthread-types.h:
22313         * threads-pthread-types.c: New files, handle pthread-specific
22314         synchronisation types
22315
22316         * threads-dummy-types.h: 
22317         * threads-dummy-types.c: New files of dummy support for
22318         thread-specific types
22319
22320         * metadata.c:
22321         * image.c:
22322         * pedump.c: include mono-endian.h not endian.h
22323         
22324         * Makefile.am: More threads files.
22325         Name mono-endian.h not endian.h
22326
22327 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22328
22329         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22330         stuff and implement a few more bits.
22331         * icall.c: a field needs to be dereferenced twice. Do not use the same
22332         name for two variables in the same scope.
22333         * image.c, image.h: cleanups.
22334
22335 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22336
22337         * class.c (mono_class_metadata_init): bug fix: compute the right size
22338
22339 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22340
22341         * icall.c: implemented some of the Reflection internalcalls.
22342         * image.c, image.h: start writing out the PE/COFF image.
22343         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22344         that does the reverse than decode_blob_size ().
22345         * object.c: use mono_metadata_encode_value (). Move here
22346         temporary implementation of mono_string_to_utf8 ().
22347         * rawbuffer.c: make malloc_map static.
22348
22349 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22350
22351         * metadata.c: fix type comparison for arrays.
22352         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22353         Added a couple of new classes to monodefaults.
22354         * icall.c: added a couple of Reflection-related internalcalls.
22355         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22356         Added a byval_arg MonoType to MonoClass.
22357
22358 2001-09-28  Dick Porter  <dick@ximian.com>
22359
22360         * icall.c:
22361         * threads-pthread.h: 
22362         * threads-pthread.c: Implemented internal calls for
22363         LocalDataStoreSlot operations.  Applied mutexes around all shared
22364         data.  Reworked the thread creation and Start() operations to
22365         avoid a race condition.
22366         
22367         * threads-dummy.h:
22368         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22369
22370 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22371
22372         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22373
22374 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22375
22376         * class.c, loader.c: warn and return NULL instead of erroring out.
22377         * icall.c: added System.AppDomain::getCurDomain().
22378         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22379
22380 2001-09-25  Dick Porter  <dick@ximian.com>
22381
22382         * threads-pthread.h:
22383         * threads-pthread.c: Implemented timed thread joining and added
22384         System.Threading.Thread::Join_internal internal call
22385
22386         * icall.c: Added System.Threading.Thread::Join_internal internal call
22387
22388         * threads-dummy.h:
22389         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22390
22391 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22392
22393         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22394         mono_string_intern () to implement the semantics of the ldstr opcode
22395         and the interning of System.Strings.
22396         * icall.c: provide hooks to make String::IsIntern and String::Intern
22397         internalcalls.
22398
22399 2001-09-23  Dick Porter  <dick@ximian.com>
22400
22401         * threads-dummy.c: 
22402         * threads-dummy.h: New files of dummy threading routines
22403
22404         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22405         support code based on system specifics
22406
22407         Rename PTHREAD_LIBS to THREAD_LIBS
22408         
22409 2001-09-23  Dick Porter  <dick@ximian.com>
22410
22411         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22412         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22413         internal calls.
22414         (mono_thread_init): Set up a Thread object instance to return when
22415         the main thread calls Thread.CurrentThread
22416         (mono_thread_cleanup): Wait for all subthreads to exit
22417
22418         * icall.c: New internal calls for System.Threading.Thread::Sleep
22419         (including Schedule) and CurrentThread
22420
22421         * threads.h: New file, to insulate thread-specific stuff from the
22422         rest of the code
22423
22424 2001-09-21  Dick Porter  <dick@ximian.com>
22425
22426         * threads-pthread.h: 
22427         * threads-pthread.c: New file, for handling pthreads-style
22428         threading support.  Start() now starts a new thread and executes
22429         the ThreadStart delegate instance.
22430
22431         * icall.c: Added the internalcall for
22432         System.Threading.Thread::Start_internal
22433
22434         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22435
22436 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22437
22438         * loader.c: work around the different signatures for delegates
22439         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22440
22441 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22442
22443         * class.h, class.c: add mono_class_get_field_from_name ().
22444         * *: Fix C comments and other ANSI C issues.
22445
22446 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22447
22448         * endian.h, assembly.c: fix some endianness issues.
22449
22450 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22451
22452         * loader.h, load.c: add delegate_class to mono_defaults.
22453         Handle runtime provided methods in mono_get_method ().
22454
22455 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22456
22457         * loader.c (mono_get_method): use pinvoke for internal call
22458
22459         * icall.c: use pinvoke for internal call
22460
22461         * loader.c (method_from_memberref): set the method name
22462
22463 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22464
22465         * metadata.c: help the compiler generate better code for
22466         mono_class_from_mono_type ().
22467
22468 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22469
22470         * class.c (mono_class_metadata_init): delayed computing of the
22471         class size to mono_class_metadata_init ()
22472
22473 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22474
22475         * class.c, class.h: add an interfaces member to MonoClass.
22476         * image.c, image.h: add assembly_name field to MonoImage
22477         from the assembly table.
22478         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22479
22480 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22481
22482         * class.c: Handle Array in mono_class_from_mono_type ().
22483         * metadata.c, pedump.c: some endian fixes.
22484
22485 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22486
22487         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22488         * metadata.c: fix small problem introduced with the latest commit.
22489
22490 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22491
22492         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22493         We don't need a MonoMetadata pointer anymore to compare signatures in
22494         mono_metadata_signature_equal (), update callers.
22495         Reduced memory usage an number of allocations for MonoMethodHeader and
22496         MonoMethodSignature.
22497
22498 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22499
22500         * metadata.c: added compare for szarray.
22501
22502 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22503
22504         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22505         and add a couple more types to it and mono_defaults. Give an hint on
22506         classes that need implementing in our corlib and are referenced
22507         in mscorlib.
22508
22509 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22510
22511         * class.h, class.c: keep track if a class is also an Enum.
22512         * loader.c: Implement a couple more types for use in libffi
22513         marshalling. Gives better diagnostics when failing to dlopen
22514         a library. Set method->klass for P/Invoke methods, too.
22515
22516 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22517
22518         * class.c, class.h: add a MonoType this_arg to MonoClass that
22519         represents a pointer to an object of the class' type that
22520         can be used by the interpreter and later the type cache.
22521         Add best guess alignment info for valuetype objects.
22522
22523 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22524
22525         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22526         into MonoType: one less level of indirection and allocation and
22527         simplifies quite a bit of code. Added cache for MonoTypes that are
22528         used frequently, so that we don't need to allocate them all the time.
22529
22530 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22531
22532         * class.c (mono_class_create_from_typedef): System.Enum is also a
22533         value type, although it does not derive from System.ValueType
22534         (maybe a bug in the ms compiler?)
22535
22536         * metadata.c (mono_type_size): return the right size for value types
22537
22538         * loader.c (mono_get_method): only initialize method header if not abstract
22539
22540         * class.c (mono_class_from_mono_type): use mono_default values. 
22541
22542 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22543
22544         * *: use MonoClass pointers instead of <type_tokens>
22545         
22546         * class.h: new flag: metadata_inited.
22547
22548         * class.c (mono_class_metadata_init): impl.
22549         (mono_class_instance_size): impl.
22550         (mono_class_data_size): impl.
22551
22552 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22553
22554         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22555         MonoClass now has the name and name_space fields. 
22556         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22557         mono_get_method () takes and optional MonoClass as argument.
22558         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22559         instead that takes advantage of a map from class names to typedef
22560         tokens in MonoImage.
22561
22562 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22563
22564         * metadata.c: zero is not a valid alignment boundary.
22565         Merge MONO_TYPE_VOID in default decoding code.
22566
22567 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22568
22569         * image.h: merged MonoMetadata into MonoImage
22570
22571         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22572         identify the type of elements.
22573
22574 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22575
22576         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22577         * cil-coff.h: split MonoMSDOSHeader and add size info.
22578         * image.c: add some consistency checks.
22579         * metadata.c: fix row size computation: one programmer
22580         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22581         add explanation for the locator routine.
22582         Fix decoding of size in method header.
22583         
22584 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22585
22586         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22587         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22588         function from gnome-libs.  This uses the right path separator
22589         based on the OS, and also works around a bug in some systems where
22590         a double slash is not allowed. 
22591         (default_assembly_name_resolver): Use g_concat_dir_and_file
22592         (mono_assembly_open): ditto.
22593
22594 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22595
22596         * metadata.c (mono_metadata_signature_equal): impl.
22597
22598         * *: void is now a realy MonoType (instead of using NULL)
22599         
22600         * metadata.c (do_mono_metadata_parse_type): use
22601         mono_metadata_parse_type to parse void value.
22602
22603 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22604
22605         * metadata.c, metadata.h: in the signature and method header store
22606         only the space required for holding the loca vars and incoming arguments.
22607
22608 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22609
22610         * metadata.c (do_mono_metadata_parse_type): treat void like any
22611         other type (instead of assigning NULL);
22612
22613 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22614
22615         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22616
22617 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22618
22619         * image.c (do_mono_image_open): added a cache for arrays.
22620
22621 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22622
22623         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22624         decode a single column from a row in a metadata table and changes
22625         to take advantage of it in the typedef locator (gives a nice speed up).
22626         Store offset info for function params.
22627
22628 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22629
22630         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22631
22632 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22633
22634         * assembly.c: how could mono_assembly_close () had ever worked?
22635         * metadata.c, metadata.h: provide offset info for local vars.
22636         Implement mono_type_size () to take care of alignment as well
22637         as size (it was mono_field_type_size in cli/class.c before).
22638
22639 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22640
22641         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22642
22643         * assembly.h (CORLIB_NAME): set to corlib.dll
22644
22645         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22646
22647 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22648
22649         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22650         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22651         tokentype.h: massive namespace cleanup.
22652
22653 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22654
22655         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22656
22657 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22658
22659         * metadata.c (mono_metadata_free_type): added check for type !=
22660         NULL (void) before calling mono_metadata_free_type()
22661
22662 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22663
22664         * metadata.h, row_indexes.h: added header with enumerations to use
22665         to index in the columns from tables in metadata and to decode coded
22666         tokens: we should start using this instead of embedding magic numbers
22667         all over the code.
22668
22669 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22670
22671         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22672         Move metadata_t info from cli_image_info_t to MonoImage, where
22673         it's easily accessible. Changed all the uses accordingly.
22674         Added the method and class caches to MonoImage.
22675         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22676         and mono_metadata_decode_value () signature to be more consistent
22677         with the other parse functions (and simplify code). Taken advantage
22678         of zero-length array allocation with GCC. Removed reduntant (and
22679         wrong) MonoFieldType struct and use MonoParam instead. Changed
22680         mono_metadata_parse_field_type () to use common code for parsing.
22681         Added mono_metadata_typedef_from_field () and
22682         mono_metadata_typedef_from_method () to lookup a typedef index from a
22683         field or method token.
22684         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22685
22686 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22687
22688         * metadata.c (mono_metadata_parse_field_type): Implement. 
22689         (do_mono_metadata_parse_type): Split engine from
22690         mono_metadata_parse_type, so that we can create smaller structures
22691         for things that just have one pointer to the MonoType (look at
22692         the MonoFieldType)
22693
22694 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22695
22696         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22697         as Jan Gray found out, it is incorrect. 
22698
22699 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22700
22701         * assembly.c: Implement asssembly loading.  This loads an image
22702         and loads all the referenced assemblies.  Come to think of it, we
22703         could always do lazy loading of the assemblies. 
22704
22705         * image.c (mono_image_open): Keep loaded images in a hashtable.
22706
22707         * image.h (MonoImage): Add reference count.
22708
22709 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22710
22711         * assembly.c (mono_assembly_open): Keep track of the file name in
22712         case the assembly has no ASSEMBLY table.
22713
22714         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22715         from get.c here.
22716
22717 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22718
22719         * metadata.c, metadata.h: decode local vars in method header
22720         parse function. Change callers accordingly.
22721
22722 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22723
22724         * metadata.h, cil-coff.h: protect against multiple inclusion.
22725         Added some new structures to hold information decoded from metadata:
22726         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22727         and relevant decoding/free functions.
22728         * metadata.c: implement decoding functions. Add warning for out of bounds
22729         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22730         all the info about a method signature and invocation. Remove check on
22731         uninitialized local var in parse_mh() and fix memory leak.
22732
22733 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22734
22735         * metadata.h: More macros.
22736
22737         * tokentype.h: New file.
22738
22739 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22740
22741         * assembly.c: added a consistency check and initialize
22742         some structures with g_new0().
22743         * metadata.c: fixed a couple more bugs in table size computation
22744         and add other checks for out-of bound access to metadata.
22745
22746 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22747
22748         * metatada.c: fix bugs computing table sizes. Spew a
22749         warning when index in string heap is out of bounds.
22750
22751 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22752
22753         * metadata.h: Add a couple of macros to manipulate tokens. 
22754
22755 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22756
22757         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22758         cli_section_tables).
22759
22760 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22761
22762         * metadata.c (mono_metadata_user_string): New function, provides
22763         access to the UserString heap. 
22764
22765 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22766
22767         * metadata.c: Add inline documentation.
22768
22769 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22770
22771         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22772         files. 
22773
22774 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22775
22776         * typeattr.h: New file, TypeAttribute flags. 
22777
22778 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22779
22780         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22781         mono_assembly_ensure_section): Section loading code.
22782         (load_section_tables): Load the sections.
22783
22784         * mono/metadata/metadata.c (mono_metadata_locate_token,
22785         mono_metadata_locate): Functions to locate the information
22786         definition given a token or a table and an index.
22787         (mono_metadata_compute_table_bases): New.
22788         (compute_size): New function to compute the sizes of the various
22789         tables.
22790
22791         * mono/metadata/metadata.h: Finish listing the different index
22792         types. 
22793
22794         * mono/metadata/pedump.c: Improve to dump new information.
22795
22796 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22797
22798         * mono/metadata/metadata.c: Entered all the tables matching
22799         Beta2. 
22800
22801         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22802
22803
22804