* domain.c, object.c, mono-config.c, object-internals.h: Fixed #82416.
[mono.git] / mono / metadata / ChangeLog
1 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2
3         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
4
5 2007-09-12  Marek Habersack  <mhabersack@novell.com>
6
7         * appdomain.c (mono_runtime_init): do not install postload hooks -
8         tests show that MS.NET doesn't use anything of that sort to
9         trigger the AppDomain.AssemblyResolve event.
10         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
11         made non-static.
12         (mono_runtime_init): init portability helpers here.
13
14         * assembly.c (mono_assembly_load_with_partial_name): if other   
15         attempts fail, trigger the AppDomain.AssemblyResolve event handler
16         to resolve the assembly.
17
18         * domain-internals.h: added mono_try_assembly_resolve and marked
19         it as internal.
20
21 2007-09-11  Jb Evain  <jbevain@novell.com>
22
23         * object-internals.h (MonoReflectionDynamicMethod): add
24         a `MonoReflectionType *owner` field. The owner is used
25         * reflection.c:
26         (mono_reflection_create_dynamic_method): use the owner of the dynamic
27         method as the class declaring the dynamic method.
28         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
29         dynamic method to the declaring type of the methodbuilder.
30
31 2007-09-11  Mark Probst  <mark.probst@gmail.com>
32
33         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
34         rules for calling methods via reflection.
35
36 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
37
38         * reflection.c (resolve_object): Add support for MonoGenericClass. 
39         Inflate MonoType's.
40
41 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
42
43         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
44         provide a managed method that does fast allocations without needing
45         a managed->unmanaged transition. Boehm GC implementation currently
46         enabled for ptrfree objects on sane architectures.
47
48 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
49
50         * marshal.c, marshal.h: exported a couple of useful functions and
51         added mono_mb_get_label () to easily handle backward branches.
52
53 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
54
55         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
56
57 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
58
59         * loader.c (find_method): Fixed the regression introduced while
60         fixing bug #81466.
61
62 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
63
64         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
65         well.
66         
67         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
68         icall.c reflection.c: Pass a MonoGenericContext argument to 
69         mono_lookup_dynamic_token ().
70
71         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
72         #82744.
73         
74 2007-09-09  Robert Jordan  <robertj@gmx.net>
75
76         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
77         for generic methods.
78
79         * object.c (mono_object_get_virtual_method): Handle generic methods.
80         Fixes bug #78882.
81
82         Code is contributed under MIT/X11 license.
83
84 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
85
86         * image.c: fix locking in mono_image_load_file_for_image ().
87
88 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
89
90         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
91         used only as a cache: added an icall to fill it.
92
93 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
94
95         * reflection.h: exposed mono_reflection_free_type_info
96         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
97         since mono_reflection_bind_generic_parameters makes a copy of it.
98         * reflection.c (free_type_info): subinfos should be freed.
99         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
100         made non static.
101         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
102         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
103         this fixes #82695 and #81726.
104    
105
106 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
107
108         * process.h, process.c:  added support for user profile/info in
109           ProcessStartInfo. For now only Windows works.
110
111 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
112
113         * metadata.c: consider the generic arguments when comparing
114         signatures (bug #82614).
115
116 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
117
118         * cil-coff.h, image.c: updated assembly loader to cope with the
119         PE32+ 64 bit file format.
120
121 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
122
123         * assembly.c, class.c, domain.c, loader.c: remove useless
124         inclusion of cil-coff.h.
125
126 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
127
128         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
129         if interface is marked with CoClassAttribute. 
130    
131         Code is contributed under MIT/X11 license.
132
133 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
134
135         * sgen-gc.c: ensure no object from the to space is copied again or finalized
136         if it's seen twice in major collections.
137
138 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
139
140         * sgen-gc.c: big objects are not copied to the gray area, but they
141         need to be considered for scanning, too, if they are brought alive
142         by an object ready for finalizations or a survived one.
143
144 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
145
146         * sgen-gc.c: properly account the number of disappearing links when
147         they are nullified.
148
149 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
150
151         * sgen-gc.c: share the code to scan the registered roots between the
152         different types of collections.
153
154 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
155
156         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
157
158 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
159
160         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
161         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
162
163 2007-08-28  Mark Probst  <mark.probst@gmail.com>
164
165         * security-manager.c (mono_security_manager_get_methods):
166         LinkDemandSecurityException now has 2 arguments instead of 3.
167
168 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
169
170         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
171         platforms which need it.
172
173 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
174
175         * sgen-gc.c: unregister thread data structures with a pthread_key_t
176         dtor.
177
178 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
179
180         * threads.c: free the thread static data on thread exit.
181
182 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
183
184         * class.c: walk the hierarchy to find the generic definition for
185         a class (fixes runtime part of bug #82498).
186
187 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
188
189         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
190         ...
191
192         * image.c (mono_image_close): Here. Hopefully fixes #82510.
193
194 2007-08-24  Mark Probst  <mark.probst@gmail.com>
195
196         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
197
198 2007-08-24  Robert Jordan  <robertj@gmx.net>
199
200         * appdomain.c: don't perform the ':'->';' substitution on Win32.
201
202 2007-08-24  Jb Evain  <jbevain@novell.com>
203
204         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
205         for byref types.
206
207 2007-08-24  Mark Probst  <mark.probst@gmail.com>
208
209         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
210         #82286.
211
212 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
213
214         * assembly.c: Fix a warning.
215         
216 2007-08-23  Marek Habersack  <mhabersack@novell.com>
217
218         * appdomain.c: parse the <runtime> section looking for the probing
219         element with the 'privatePath' attribute, which sets additional
220         directories in which the runtime should look for assemblies.
221
222 2007-08-23  Robert Jordan  <robertj@gmx.net>
223
224         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
225         Fixes #82499.
226
227 2007-08-23  Martin Baulig  <martin@ximian.com>
228
229         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
230         _mono_debug_init_corlib() and remove it from the header file.
231
232 2007-08-23  Martin Baulig  <martin@ximian.com>
233
234         * mono-debug-debugger.c
235         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
236         don't notify the debugger about it.
237
238         * mono-debug-debugger.h
239         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
240
241 2007-08-23  Robert Jordan  <robertj@gmx.net>
242
243         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
244         Code is contributed under MIT/X11 license.
245
246 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
247
248         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
249
250 2007-08-22  Martin Baulig  <martin@ximian.com>
251
252         * mono-debug.c: Store debugging info on a per-domain basis and
253         free it on domain unload.  Add support for unloading symbol files.
254
255         * mono-debug.h
256         (MonoDebugList): New typedef.
257         (MonoSymbolTable):
258         - add `data_tables and `type_table'.
259         - replace 'symbol_files' and `num_symbol_files' with a
260           `MonoDebugList *'.
261         (mono_debug_data_table): Removed.
262         (mono_debug_list_add): New public function.
263         (mono_debug_list_remove): New public function.
264         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
265         (mono_debug_init_2_memory): Renamed into
266         mono_debug_open_image_from_memory().
267         (mono_debug_close_image): New public function.
268         (mono_debug_domain_create): Likewise.
269         (mono_debug_domain_unload): Likewise.
270         (MONO_DEBUGGER_VERSION): Bump to 60.
271
272         * mono-debug-debugger.h
273         (MonoDebuggerEvent):
274         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
275         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
276         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
277         - rename `THREAD_CREATED' and `THREAD_EXITED' into
278           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
279         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
280           meaning.
281         (mono_debugger_add_symbol_file): Removed.
282         (mono_debugger_add_type): Removed.
283         (mono_debugger_lookup_type): Removed.
284         (mono_debugger_lookup_assembly): Removed.
285
286         * domain.c
287         (mono_domain_create): Call mono_debug_domain_create().
288         (mono_init_internal): Call mono_debug_init_corlib().
289
290         * assembly.c
291         (mono_assembly_close): Call mono_debug_close_image().
292
293 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
294
295         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
296         mmap call.
297
298 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
299
300         * sgen-gc.c: ensure section->pin_queue_end is initialized
301         correctly when non pinning objects in the section have been found.
302
303 2007-08-22  Marek Habersack  <mhabersack@novell.com>
304
305         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
306         containing a list of directories separated by ':'. MSDN docs say
307         the directories should be separated with ';'. Part of a bugfix for
308         bug #81446
309
310 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
311
312         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
313         it should MonoType and not MonoClass.
314
315 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
316
317         * culture-info-table.h : regenerated.
318
319 2007-08-20  William Holmes  <billholmes54@gmail.com>
320
321         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
322          to call ReplaceFile Kernel32 on windows or in io-layer.
323         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
324         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
325          as an internal call.
326
327         Code is contributed under MIT/X11 license.
328
329 2007-08-20  Jb Evain  <jbevain@novell.com>
330
331         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
332         and MONO_EXCEPTION_FIELD_ACCESS.
333
334         * debug-helpers.[c|h]: new mono_field_full_name function.
335
336 2007-08-20  Mark Probst  <mark.probst@gmail.com>
337
338         * class.c: Removed class_security_level() and moved it to
339         security-core-clr.c.
340
341         * security-core-clr.c, security-core-clr.h: class_security_level()
342         is now public and renamed to mono_security_core_clr_class_level().
343         It also looks for security attributes in the classes a class is
344         nested in.
345
346 2007-08-20  Mark Probst  <mark.probst@gmail.com>
347
348         * security-core-clr.c, security-core-clr.h: CoreCLR security
349         utility functions.
350
351         * Makefile.am: Added security-core-clr.[ch].
352
353         * security-manager.c, security-manager.h: Functions and enum for
354         setting and getting the security mode.
355
356         * class.c: CoreCLR security checks.
357
358 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
359
360         * icall-def.h, process.c, process.h: implemented icall to get
361         user/system processor times.
362
363 2007-08-17  Mark Probst  <mark.probst@gmail.com>
364
365         * domain.c, threads.c, class-internals.h, domain-internals.h: New
366         reader-lock-free jit_info_table.
367
368 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
369
370         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
371
372         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
373
374         * object-internals.h (MonoException): Add missing _data member.
375
376 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
377
378         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
379         checking that only methods with matching qname or fqname are picked
380         from implemented interfaces.
381
382 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
383
384         * verify.c (do_newarr):added, do type verification of
385         newarr ops, push the right value on the eval stack.
386         * verify.c (mono_method_verify): use do_newarr
387
388
389 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
390
391         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
392         factored the common code into get_boxable_mono_type, which
393         is now using mono_type_get_full, this fixed byref related tests.
394
395 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
396
397         * class.c: added mono_type_get_full, this function has the same
398         behavior of mono_class_get_full but the returned MonoType has
399         all metadata of the associated token in case of a typespec token.
400         * class.c: added mono_type_retrieve_from_typespec, used by 
401         mono_type_get_full to retrieve the token type.
402         * class.c (mono_class_create_from_typespec): changed to use
403         mono_type_retrieve_from_typespec.
404         * class.c (mono_ldtoken): changed to use mono_type_get_full
405         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
406         * class-internals.h: exported mono_type_get_full for internal use.
407
408 2007-08-16  Jb Evain  <jbevain@novell.com>
409
410         * domain.c (supported_runtimes): add entry for
411         the 'moonlight' runtime version.
412
413 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
414
415         * verify.c (mono_method_verify): small typo sliped in.  
416
417 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
418
419         * verify.c (do_unbox_value): added, do type verification of
420         unboxing ops
421         * verify.c (mono_method_verify): use do_unbox_value
422
423
424 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
425
426         * verify.c (dump_stack_value): fixed typo, was printing string
427         instead of object on stack.
428         * verify.c (do_box_value): moved the byref check up as it leads
429         to invalid code and should be done earlier.
430         * verify.c: improved error messages for and ldobj
431
432 2007-08-15  William Holmes  <billholmes54@gmail.com>
433
434         * marshal.c (emit_marshal_custom): Omit the call to 
435           marshal_native_to_managed when calling native to managed 
436           and the argument is specified as an out argument.
437
438         Code is contributed under MIT/X11 license.
439
440 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
441
442         * verify.c: fixed the type checks for generics, function pointers and vectors.
443         Added type verification for ldobj and ldtoken. The verifier
444         would segfault if header or signature of a method contained references
445         to non-existant types.
446
447 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
448
449         * marshal.c (cominterop_get_ccw): Patch from
450         Bill Holmes to no walk up interface hierarchy. 
451         All parent methods should be present in the interface for COM.
452    
453         Code is contributed under MIT/X11 license.
454
455 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
456
457         * marshal.c (emit_marshal_com_interface): Patch from
458         Bill Holmes to handle COM Interfaces as return values
459         for native->managed calls.
460    
461         Code is contributed under MIT/X11 license.
462
463 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
464
465         * marshal.c (cominterop_get_idispatch_for_object): Implement
466         for runtime callable wrappers.
467    
468         Code is contributed under MIT/X11 license.
469
470 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
471
472         * pedump.c (main): changed from mono_init to mono_init_from_assembly
473         so 2.0 types are accessible
474
475
476 2007-08-13  Miguel de Icaza  <miguel@novell.com>
477
478         * domain.c (mono_init_internal): Call mono_assembly_load_friends
479         once we load mscorlib.   Due to the order in which we initialize,
480         the mono_assembly_load_full routine that loads mscorlib did not
481         load friends.   We now load it once we load the
482         mono_defaults.internals_visible_class class. 
483
484         * assembly.c: Expose the mono_load_friend_assemblies method.
485
486 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
487
488         * verify.c: improved the handling of boxing, better
489         type checking for unary ops and conversion. Fix bug
490         regarding managed pointer compatibility checking
491
492 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
493
494         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
495
496         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
497
498 2007-08-09  Raja R Harinath  <rharinath@novell.com>
499
500         * reflection.c (dup_type): Remove.
501         * class.c (dup_type): Remove.
502         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
503         instead of the dodgy 'dup_type'.
504         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
505         handle the case where 'dup_type' needed the second argument.
506
507 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
508
509         * domain.c: Fix a warning.
510
511 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
512
513         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
514         checking that methods with the same fqname are not overridden
515         with a method from an ancestor.
516
517 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
518
519         * threads.c (free_thread_static_data_helper): Avoid a crash if
520         thread->static_data is not yet set.
521
522 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
523
524         * marshal.c: Use correct image when emitting
525         native wrapper for COM calls.
526    
527         Code is contributed under MIT/X11 license.
528
529 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
530
531         * icall-def.h, security.c, security.h :
532           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
533
534 2007-08-07  Martin Baulig  <martin@ximian.com>
535
536         * mono-debug-debugger.h
537         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
538
539         * domain.c (mono_domain_free): Call
540         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
541
542 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
543
544         * verify.c (check_underflow, check_overflow): error message now returns IL offset
545         * verify.c (in_same_block): code should test if either offset is inside the clauses
546         * verify.c (mono_method_verify): push the exception into the eval stack of exception
547         and filter blocks
548
549 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
550
551         * image.c (mono_image_close): Fix a leak.
552
553         * object.c (mono_runtime_invoke_array): Avoid using alloca.
554
555         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
556
557 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
558
559         * domain.c, threads.c, threads-types.h: fix memory retention issue
560         with thread static variables not being cleared on domain unload.
561         Reuse thread static slots after domain unload.
562
563 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
564
565         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
566         nullable type.
567
568         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
569         now done in mono_runtime_invoke_array.
570
571         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
572         receiver is a nullable type.
573
574         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
575         generic parameter.
576
577 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
578
579         * marshal.c: Implement COM Objects as return type for 
580         managed->unmanaged calls. Added Release calls for COM Object
581         out/return values in managed->unmanaged calls.
582
583         Code is contributed under MIT/X11 license.
584
585 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
586
587         * threads.h, threads-type.h: move the hazard pointer declarations
588         to the private header.
589
590 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
591
592         * file-io.c, appdomain.c: memory leak fixes.
593
594 2007-08-02  Dick Porter  <dick@ximian.com>
595
596         * socket-io.c
597         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
598         SO_REUSEADDR setting into io-layer/sockets.c.
599
600 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
601
602         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
603         from Object when called on a generic parameter. Fixes #82211.
604
605 2007-08-01  Dick Porter  <dick@ximian.com>
606
607         * file-io.c (convert_share): Test FileShare values bit-by-bit.
608         Fixes bug 79250 yet again.
609
610 2007-07-30  Martin Baulig  <martin@ximian.com>
611
612         Merged the `debugger-dublin' branch.
613
614         * mono-debug.h
615         (MonoDebugDataTable): New typedef.
616         (MonoDebugMethodAddressList): New typedef.
617         (MonoDebugWrapperData): Removed.
618         (MonoDebugSymbolTable): Removed `current_data_table',
619         `current_data_table_size', `current_data_table_offset'.
620         (MonoDebugDataItemType): Moved into mono-debug.c.
621         (MonoDebugMethodJitInfo): Remove `address'.
622         (mono_debug_data_table): New global variable.
623         (mono_debug_lookup_method_addresses): New public function.
624         (mono_debug_find_method): Take a `MonoMethod *', not a
625         `MonoDebugMethodInfo *'.
626
627         * mono-debug.c: Drop support for the old symbol tables.
628
629 2007-06-28  Martin Baulig  <martin@ximian.com>
630
631         * mono-debug.c (mono_debug_debugger_version): New public variable.
632
633 2007-07-31  William Holmes  <billholmes54@gmail.com>
634
635         * metadata.c Changed mono_type_create_from_typespec to not insert
636           the type into the hash map until after
637           do_mono_metadata_parse_type has completed.
638         Fixes Bug #82194
639         Code is contributed under MIT/X11 license.
640
641 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
642
643         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
644         generic parameter. Fixes #82211.
645
646 2007-07-27  Jb Evain  <jbevain@novell.com>
647
648         * pedump.c (dump_metadata, dump_metadata_header): dump
649         versions contained in the metadata header.
650
651 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
652
653         * threads.c: register small_id_table with the GC.
654
655 2007-07-27  Mark Probst  <mark.probst@gmail.com>
656
657         * threads.c, threads.h, class-internals.h, object-internals.h:
658         Hazard pointers, to be used by lock-free parallel algorithms.
659
660 2007-07-26  Dick Porter  <dick@ximian.com>
661
662         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
663         routine on non-windows platforms, as I've not managed to think of
664         a non-kludgy way of doing this.  Finishes off bug 78739.
665
666 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
667
668         * object.c: properly setup interface_bitmap in proxy vtables.
669
670 2007-07-25  Marek Habersack  <mhabersack@novell.com>
671
672         * appdomain.c (get_shadow_assembly_location): do not use TickCount
673         to create unique shadow copy target directories, use the domain's
674         serial number instead. Each domain gets a unique target directory
675         that way.
676
677         * domain.c (mono_domain_create): added code to increment domain
678         shadow copy serial number and cache the value in the current
679         domain structure.
680
681         * domain-internals.h (struct _MonoDomain): added a new field -
682         shadow_serial to hold the serial number used in generation of
683         shadow-copy directories. This is to make sure that the directory
684         name is unique for each and every domain created. We avoid a race
685         condition with overriding assemblies already in use by other app
686         domains.
687
688 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
689
690         * class.c (mono_bounded_array_class_get): fixed memory leak when 
691         binding generic parameters.
692
693 2007-07-24  Raja R Harinath  <rharinath@novell.com>
694
695         * metadata.c (do_mono_metadata_parse_generic_class): Use
696         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
697         error.
698
699 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
700
701         * loader.c, class-internals.h, reflection.c: removed the per-method
702         generics hashtable: we use the global one through the call of
703         mono_class_inflate_generic_method ().
704
705 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
706
707         * class.c, metadata.c, class-internals.h: introduce yet another
708         generics global cache for inflated methods (fixes 98% of the perf
709         issue in bug #81806).
710
711 2007-07-23  Raja R Harinath  <rharinath@novell.com>
712
713         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
714         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
715         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
716         return a MonoGenericInst containing (a copy) of those types.
717         (mono_metadata_inflate_generic_inst): Update to changes.
718         (mono_metadata_parse_generic_inst): Likewise.
719         (mono_get_shared_generic_inst): Likewise.
720         * reflection.c (mono_class_bind_generic_parameters): Likewise.
721         (mono_reflection_bind_generic_method_parameters): Likewise.
722         * metadata-internals.h: Likewise.
723         * icall.c (free_generic_context): Kill.
724         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
725
726         * reflection.c (reflection_methodbuilder_to_mono_method): Use
727         mono_metadata_type_dup.
728         * marshal.c (mono_mb_create_method): Likewise.
729
730         * metadata.c (mono_metadata_type_dup): Rename from
731         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
732         MonoImage.  Handle a few more cases, esp. when no mempool is given.
733         * marshal.c, metadata-internals.h: Update to changes.
734
735 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
736
737         * class.c: fixed a small leak for array classes and removed warning.
738
739 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
740
741         * loader.c (mono_method_get_param_token): Make this work on generic methods.
742         Return 0x8000000 for return parameters. Fixes #82161.
743
744 2007-07-21  Marek Habersack  <grendello@gmail.com>
745
746         * appdomain.c (get_shadow_assembly_location): append the current
747         ticks value to the path. Avoids overwriting the same assemblies by
748         several threads at the same time.
749
750 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
751         and Raja R Harinath  <rharinath@novell.com>
752
753         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
754         Simplify slightly.
755         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
756         property for testing if a method is a generic method definition.
757
758 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
759
760         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
761
762 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
763
764         * verify.c: used function from private branch, reverted to the one in class.h 
765
766 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
767
768         * verify.c: a typo slipped in and the code wont compile
769
770 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
771
772         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
773         disabled box instruction as it is doing the wrong thing
774         improved stack dump messages, now it is easier to debug type related issues
775
776
777 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
778
779         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
780
781 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
782
783         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
784         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
785         grouped with class and valuetype. This change will simply 
786         the code as it should be handled just like unmanaged pointers.
787
788 2007-07-19  Mark Probst  <mark.probst@gmail.com>
789
790         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
791
792 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
793
794         * verify.c: several stack merge issues fixed, reference comparisons now
795         check the type size. strict type check now works correctly.
796         added more uses of IS_MANAGED_POINTER macro.
797         fixed issues pointed by running the test suite against .net.
798         
799
800 2007-07-19  Mark Probst  <mark.probst@gmail.com>
801
802         * class.c, loader.c, class-internals.h: Removed the
803         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
804         defines.
805
806         * icall.c: Better error checking in some internal reflection
807         methods.
808
809 2007-07-18  William Holmes  <billholmes54@gmail.com>
810
811         * filewatcher.c : removed unused variable 'filename' in 
812           ves_icall_System_IO_FSW_SupportsFSW
813
814 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
815
816         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
817         obsolete, removed.
818
819 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
820
821         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
822         
823         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
824
825 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
826
827         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
828         Implement generics support.
829         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
830
831         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
832         type_args and method_args arguments.
833         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
834         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
835         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
836
837 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
838
839         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
840           It adds a rootimage parameter to mono_reflection_get_type_internal,
841           adds new function mono_reflection_get_type_with_rootimage and use
842           the rootimage to resolve the types instead of the current image
843
844 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
845
846         * culture-info-table.h: Forgot to update after r78304.
847
848 2007-07-13  Raja R Harinath  <rharinath@novell.com>
849
850         * class.c (mono_class_is_open_constructed_type)
851         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
852
853 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
854
855         * class.c (mono_bounded_array_class_get):  method fails if used with
856         an incomplete TypeBuilder enum (no basetype field), fixed it by 
857         avoiding calculating the size for such array as it cannot be instantiated.
858         Fix bug #82015
859
860 2007-07-12  Raja R Harinath  <rharinath@novell.com>
861
862         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
863         field.
864         * metadata.c, reflection.c: Update to changes.
865
866 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
867
868         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
869         mono_class_is_valid_enum, they are used to valide a enum when loading.
870         * reflection.c: used new functions to throw TypeLoadException when and
871         invalid enum is build with TypeBuilder. Fixes #82018
872   
873 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
874
875         * object.c: forgot commit of mono_class_setup_methods () to access
876         iface->methods.
877         * object-internals.h: added a few more handy fields to
878         MonoIMTCheckItem.
879
880 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
881
882         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
883         iface->methods.
884
885 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
886
887         * class-internals.h, object-internals.h, object.c: IMT-based
888         interface invocation core from Massimiliano Mantione
889         (massi@ximian.com) with a reworked arch-specific interface,
890         bsearch implementation and a few bugfixes and memory savings by me.
891
892 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
893
894         * class.c (mono_class_create_from_typedef): mono would segfault if 
895         an enum did not have a __value field. It now throws a TypeLoadException
896         for such cases. Fix bug #82022
897
898 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
899
900         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
901
902 2007-07-09  Mark Probst  <mark.probst@gmail.com>
903
904         * class.c (mono_class_init): If a class is already inited but has
905         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
906
907 2007-07-09  Mark Probst  <mark.probst@gmail.com>
908
909         * class.c: Properly handle the case of an unimplemented interface
910         method.  Fixes: 81673.
911
912 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
913
914         * class-internals.h, object.c: cleanup patch from massi: use
915         MonoVTable->interface_bitmap since the vtable interfaces offset array
916         is going away.
917
918 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
919
920         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
921         GetMDStreamVersion icall instead.
922
923 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
924
925         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
926         not use mono_dl_build_path() with a full library name: makes
927         fallbacks to libgaim and libfam work.
928
929 2007-07-06  William Holmes  <billholmes54@gmail.com>
930
931         * assembly.c: Added a continue statement in probe_for_partial_name when
932          parse_assembly_directory_name fails.  Fixes : 82002
933
934 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
935
936         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
937         and added a verification  for TYPEDBYREF.
938         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
939         make native int interchangeable with int32 and some small cleanup and formating.
940         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
941         handle byref of byref.
942         * verify.c (push_local): handle byref of byref.
943         * verify.c (do_binop): invalid mix of values is unverifiable
944         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
945         added visibility checks
946         * verify.c (field related method): added visibility checks
947         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
948
949 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
950
951         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
952         string.
953
954 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
955
956         * profiler.c (mono_profiler_load): Fix an off-by-one error.
957
958         * marshal.c (emit_marshal_string): When returning a string from managed code,
959         allways make a copy even for unicode strings. Fixes #81990.
960
961 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
962
963         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
964         of byref generic inst types (bug #81997).
965
966 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
967
968         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
969         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
970
971 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
972
973         * marshal.c (emit_marshal_string): Add support for unicode strings in
974         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
975
976 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
977
978         * verify.c: field load/store are now verified, missing only access checks now
979
980 2007-06-28  Martin Baulig  <martin@ximian.com>
981
982         * mono-debug.c (mono_debug_debugger_version): New public variable.
983
984 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
985
986         * locales.c: When constructing DateTimeFormat or NumberFormat for
987         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
988         MonoCultureInfo contructed from the current locale is always
989         read-only and has UseUserOverride set to true. All MonoCultureInfo
990         instances returned for GetCultures have both IsReadOnly and
991         UseUserOverride set to true. Fixes part of bug #81930.
992
993 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
994
995        * icall-def.h: Update System.__ComObject icalls
996        * marshal.c: Avoid managed transition (and object creation)
997        when looking up COM interface in RCW.
998        * marshal.h: Ditto.
999        
1000        Code is contributed under MIT/X11 license.
1001
1002 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
1003
1004         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
1005         to avoid crashes during assembly unloading.
1006
1007 2007-06-22  Raja R Harinath  <rharinath@novell.com>
1008
1009         Fix MethodInfo.IsGenericMethodDefinition
1010         * reflection.c (mono_reflection_bind_generic_method_parameters):
1011         Rearrange code to ensure we always uses a generic method definition.
1012         * class.c (mono_class_inflate_generic_method_full): Set
1013         'generic_container' field only for generic method definitions.
1014         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1015         Use presense of 'generic_container' field as indication of being a
1016         generic method definition.
1017
1018 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1021
1022         * object-internals.h: Reflect changes in the layout of the managed Delegate
1023         class.
1024         
1025         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
1026         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
1027         runtime memory used by the dynamic method. Fixes #77146.
1028
1029 2007-06-21  Dick Porter  <dick@ximian.com>
1030
1031         * file-io.h: 
1032         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
1033         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
1034         81767.
1035
1036 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1037
1038         * reflection.c (method_encode_methodspec): Add a tripwire.
1039         * class.c (inflate_generic_type): The fully open generic type is
1040         not the same as the generic type definition.
1041
1042 2007-06-21  Martin Baulig  <martin@ximian.com>
1043
1044         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
1045
1046         * mono-debug-debugger.h
1047         (MonoDebuggerBreakpointInfo): Removed.
1048         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
1049         (mono_debugger_remove_breakpoint): Likewise.
1050         (mono_debugger_breakpoint_callback): Likewise.
1051         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
1052
1053 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1054
1055         * metadata.c (mono_metadata_lookup_generic_class): The fully open
1056         generic type is not the same as the generic type definition.
1057         * class.c (mono_generic_class_get_class): Likewise.
1058
1059 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
1060
1061         * icall.c: The second argument to 
1062         System.Reflection.MethodBase.GetMethodFromHandleInternalType
1063         is a MonoType not a MonoClass.
1064
1065 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1066
1067         * verify.c: support for function pointers in the verifier
1068
1069 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1070
1071         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
1072
1073 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
1074
1075         * assembly.c: removed Mono.Data.SqliteClient from the list of
1076         forward-compatible assemblies as it breaks the ABI (bug #81899).
1077
1078 2007-06-19  Raja R Harinath  <rharinath@novell.com>
1079
1080         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
1081         lookup/update with the loader lock.
1082         * reflection.c (mono_class_bind_generic_parameters): No need to
1083         protect mono_metadata_lookup_* with the loader lock.
1084         * class.c (inflate_generic_type): Likewise.
1085         
1086         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
1087         on a generic instantiated type.
1088
1089 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
1090
1091         *verify.c: produce meanfull error messages on verification error
1092         *verify.c: fixed some cases of verification errors reported as validation errors
1093         *pedump.c: fixed the error name array, now it shows validation errors properly
1094         *verify.h: fixed the contant that should be used for verification errors
1095
1096 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1097
1098         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1099         for bug #77596, 81858 and 80743 (generics data structures on domain
1100         unload).
1101
1102 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1103
1104         Avoid allocating 'MonoGenericContext' on the heap.
1105         * class-internals (_MonoMethodInflated::context): Make field
1106         inline, not a pointer.
1107         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1108         stack.  Use the context embedded within the inflated method as the
1109         hash key, rather than 'new_context'.
1110         * class.c (inflate_generic_context): Simplify.  Return a struct
1111         rather than allocating on the heap.
1112         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1113         doesn't salt away a copy of the context -- simplifying the
1114         lifetime rules of a 'MonoGenericContext *'.
1115         (mono_method_get_context): Return pointer to embedded context.
1116         (setup_generic_array_ifaces): Allocate temporary context on stack.
1117         * reflection.c (inflate_mono_method): Likewise.
1118         (mono_reflection_bind_generic_method_parameters): Likewise.
1119         Use the context embedded within the inflated method as the hash key.
1120
1121         Avoid a source of allocation of 'MonoGenericContext'.
1122         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1123         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1124         * class.c: Update to changes.
1125         (mono_generic_class_get_context): Simplify drastically.  Now just
1126         returns a pointer to the field.
1127         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1128         argument as a const pointer.
1129         (mono_metadata_generic_context_equal): Likewise.
1130         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1131         Update to changes.
1132
1133 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1134
1135         * verify.c improved the handling of brtrue/brfalse, factored out common code
1136
1137 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1138
1139         Kill MonoGenericMethod.
1140         * class-internals.h (MonoGenericContext::method_inst): Rename from
1141         'gmethod' and convert to a MonoGenericInst.
1142         (MonoGenericMethod): Remove.
1143         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1144         * loader.c (method_from_methodspec): Update to changes.  Use a
1145         MonoGenericContext as the key to the hashtable.
1146         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1147         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1148         (mono_metadata_generic_context_hash): Likewise from
1149         'mono_metadata_generic_method_hash'.  Change hash function.
1150         (mono_metadata_load_generic_params): Update to changes.
1151         (mono_get_shared_generic_method): Remove.
1152         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1153         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1154         (inflate_generic_context): Likewise.
1155         (mono_class_inflate_generic_method_full): Likewise.
1156         (setup_generic_array_ifaces): Likewise.
1157         (mono_class_create_from_typespec): Likewise.
1158         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1159         (method_encode_methodspec): Update callsite.
1160         (reflection_methodbuilder_to_mono_method): Update to changes.
1161         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1162         MonoGenericContext as the key to the hashtable.
1163         (inflate_mono_method): Update to changes.
1164
1165         * class-internals.h (MonoGenericMethod::container): Remove.
1166         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1167
1168 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1169
1170         * profiler-private.h, profiler.c, profiler.h: added API to profile
1171         exception events.
1172
1173 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1174
1175         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1176
1177 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1178
1179         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1180         Fixed overflow and underflow not aborting the verification process.
1181
1182 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1183
1184         * class-internals.h (MonoStats): Added stats entries for dynamic
1185         code allocations.
1186
1187 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1188
1189         * loader.c (mono_free_method): Free header->locals and header->clauses.
1190
1191         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1192         dynamic case.
1193
1194         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1195
1196         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1197
1198 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1199
1200         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1201         the tables.
1202
1203 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1204
1205         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1206
1207 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1208
1209         MonoGenericMethod on a diet
1210         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1211         here ...
1212         (_MonoGenericMethod::reflection_info): ... from here.
1213         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1214         Update to changes.
1215         * reflection.c (inflate_mono_method): Likewise.
1216         (mono_reflection_bind_generic_method_parameters): Likewise.
1217
1218 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1219
1220         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1221         *verify.c: factored long ldarg forms to share code with short forms
1222
1223 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1224
1225         *verify.c: fixed code formating factored some duplicate code
1226         into a new function
1227
1228         *verify.h: fixed binary incompatibility introduced earlier
1229
1230         *pedump.c: fixed formating
1231
1232 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1233
1234         Fix assertion when disassembling Mono.C5.dll
1235         * loader.c (method_from_methodspec): Avoid inflating a method
1236         twice with the same context.  If the methodref is inflated, use
1237         the declaring method instead.
1238
1239         * class.c (mono_class_from_generic_parameter): Fix case similar to
1240         bug #81830 handled below, but for method containers.
1241
1242 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1243
1244         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1245         get_shared_generic_class.  Directly inflate the instance.
1246         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1247         (inflate_generic_class): Delete.
1248         (get_shared_generic_class): Delete.  Move setting of
1249         'cached_class' and 'cached_context' ...
1250         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1251
1252         * metadata.c (mono_metadata_lookup_generic_class): Change
1253         signature to take the components of a MonoGenericClass rather than
1254         an allocated MonoGenericClass.  Change semantics to be intern-like.
1255         * reflection.c (mono_class_bind_generic_parameters): Update to
1256         changes.  Make locking region tighter.
1257         * class.c (inflate_generic_class): Update to changes.
1258         (get_shared_generic_class): Likewise.
1259         * metadata-internals.h: Likewise.
1260
1261         * reflection.c (mono_class_bind_generic_parameters): Take and
1262         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1263         (mono_reflection_bind_generic_parameters): Use
1264         'mono_class_bind_generic_parameters' rather than duplicate the code.
1265         * class.c (mono_bounded_array_class_get): Update to changes.
1266         * object-internals.h: Likewise.
1267
1268         * reflection.c (mono_class_bind_generic_parameters): Only support
1269         parameterizing generic type definitions.  Remove support for other
1270         open types.
1271
1272 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1273
1274         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1275
1276         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1277         in the dynamic case.
1278
1279 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1280
1281         * threads.c: When cleaning up thread, reset the Background bit.
1282         Fixes bug #81720.
1283
1284 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1285
1286        * metadata.c: Move variable declarations to top of scope.
1287        * verify.c: Move variable declarations to top of scope.
1288
1289        Code is contributed under MIT/X11 license.
1290
1291 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1292
1293         * reflection.c (mono_class_bind_generic_parameters): Replace
1294         open-coded loop with mono_metadata_inflate_generic_inst.
1295
1296         * class.c (get_shared_generic_class): Don't call
1297         mono_get_shared_generic_inst.  Use the container's own
1298         'class_inst'.
1299
1300         * metadata.c (mono_metadata_load_generic_params): Move
1301         initialization of 'context' field here from ...
1302         * class.c (mono_class_create_from_typedef): ... here, and ...
1303         * loader.c (mono_get_method_from_token): ... here.
1304
1305         * class.c (get_shared_generic_class): Rename from
1306         mono_get_shared_generic_class and make static.
1307         (mono_get_shared_generic_inst): Move to metadata.c.
1308         * loader.c (mono_get_shared_generic_method): Likewise.
1309         * class-internals.h, metadata-internals.h: Update to changes.
1310
1311         Fix #81830
1312         * class.c (mono_class_from_generic_parameter): Don't assume a
1313         generic container owner exists.  Generic containers from monodis
1314         don't have any.
1315
1316 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1317
1318         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1319         * verify.h: new typedefs to returns the non-verifiable status
1320         * verify.c: initial implementation of generics, stack merging and object compatibility check
1321
1322 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1323
1324         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1325         a MonoInternalHashTable again (fixed bug in internal hash table
1326         code).
1327
1328 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1329
1330         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1331         MonoInternalHashTable again (fixed bug in internal hash table
1332         code).
1333
1334 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1335
1336         * class.c, image.c, class-internals.h, domain.c,
1337         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1338         changes.  Have to figure out what makes them break the SWF
1339         regression.
1340
1341 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1342
1343         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1344         a MonoInternalHashTable now.
1345
1346 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1347
1348         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1349         MonoInternalHashTable now.
1350
1351 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1352
1353         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1354         invoke_impl code.
1355
1356         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1357
1358         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1359         dependent trampoline.
1360
1361         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1362
1363         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1364
1365 2007-05-29  Robert Jordan  <robertj@gmx.net>
1366
1367         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1368
1369 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1370
1371         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1372
1373 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1374
1375        * marshal.c: Fix interface lookup loops for
1376        cominterop_get_com_slot_for_method and 
1377        cominterop_get_method_interface. Only need to lookup
1378        if type is a class, else use interface type method is on.
1379
1380        Code is contributed under MIT/X11 license.
1381
1382 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1383
1384         * reflection.c: HasSecurity can be present even if no specially 
1385         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1386         SecurityAttribute). Fix CAS regression tests on buildbot.
1387
1388 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1389
1390        * appdomain.c: Add configure checks for header files.
1391        * image.c: Add configure checks for header files.
1392        * file-io.c: Add configure checks for header files.
1393        * debug-mono-symfile.c: Add configure checks for header files.
1394        * threadpool.c: Add configure checks for header files.
1395        * console-io.c: Add configure checks for header files.
1396        * profiler.c: Add configure checks for header files.
1397        * rawbuffer.c: Add configure checks for header files.
1398        * icall.c: Add configure checks for header files.
1399        * rand.c: Add configure checks for header files.
1400        * socket-io.c: Add configure checks for header files.
1401
1402        Code is contributed under MIT/X11 license.
1403
1404 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1405
1406         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1407         assertion as it breaks the build.
1408         
1409         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1410
1411         * reflection.c (lookup_custom_attr): Make a copy here too.
1412
1413         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1414         dynamic images.
1415
1416         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1417         images.
1418
1419         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1420         info.
1421
1422 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1423
1424         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1425         (load_cattr_value): Ditto.
1426
1427 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1428
1429         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1430
1431 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1432
1433         * threads.c: In "start_wrapper", set apartment_state to MTA if
1434         apartment_state is Unknown and we're running on 2.0 profile or
1435         higher.
1436         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1437         to main method, then set apartment_state to Unknown on 1.0 profile,
1438         and MTA on 2.0 profile.
1439
1440 2007-05-16  Jb Evain  <jb@nurv.fr>
1441
1442         * class-internals.h (MonoDefaults): Add an attribute_class and
1443           customattribute_data_class.
1444         * domain.c (mono_init_internal): Populate them.
1445         * reflection.c: Use them to remove duplicates. Make a vew
1446         MonoClass variables `static'.
1447
1448 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1449
1450         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1451         step in implementing IMT, so that all isinst checks now can go
1452         through the bitmap.
1453         This was needed because vtables for TransparentProxy need to look
1454         like the vtable of the "target" class, so they need to point to
1455         its interface bitmap directly.
1456
1457         * object.c: inside "mono_class_create_runtime_vtable" and
1458         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1459
1460 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1461
1462         * object-internals.h
1463           culture-info.h : added territory field in MonoCulture and
1464           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1465         * locales.c : fill territory field above too.
1466         * culture-info-table.h : regenerated.
1467
1468 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1469
1470         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1471         Fixes #81599.
1472
1473 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1474
1475         * object.c: Always initialize apartment, even if 
1476         there is no custom attributes on entry point.
1477         
1478         Code is contributed under MIT/X11 license.
1479
1480 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1481
1482         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1483         * metadata.c: If no encoding is set, check for unicode
1484         on class.
1485         
1486         Code is contributed under MIT/X11 license.
1487
1488 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1489
1490         * threads.c: Handle if mono_thread_current returns NULL 
1491         
1492         Code is contributed under MIT/X11 license.
1493
1494 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1495
1496         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1497         in start_wrapper. Added mono_thread_init_apartment_state and
1498         mono_thread_cleanup_apartment_state.
1499         * object.c: Initialize thread apartment state on main thread
1500         by checking for STAThreadAttribute on entry point.
1501         * object-internals.h: Add apartment_state field to MonoThread.
1502         * threads-types.h: Add unmanaged definition of 
1503         System.Threading.ApartmentState, MonoThreadApartmentState.
1504         
1505         Code is contributed under MIT/X11 license.
1506         
1507 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1508
1509         * class.c: Fix windows build.
1510         * class-internals.h: Fix windows build.
1511         
1512         Code is contributed under MIT/X11 license.
1513
1514 2007-05-08  Robert Jordan  <robertj@gmx.net>
1515
1516         * process.c (CreateProcess_internal):
1517         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1518         .CreateNoWindow was specified. Fixes #81496.
1519
1520 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1521
1522         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1523         step in implementing IMT, replaced it with two compact arrays
1524         (interfaces_packed and interface_offsets_packed) and a bitmap that
1525         is used for isinst checks (interface_bitmap).
1526
1527         * class.c: (compare_interface_ids): compare function to pass to
1528         bsearch when looking for an interface with a given id.
1529         (mono_class_interface_offset): reimplemented using bsearch on
1530         interfaces_packed, getting the offset from interface_offsets_packed.
1531         (print_implemented_interfaces): utility debugging function.
1532         (setup_interface_offsets): reworked to initialize interfaces_packed,
1533         interface_offsets_packed and interface_bitmap.
1534
1535         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1536         with uses of interfaces_packed and interface_offsets_packed.
1537
1538 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1539
1540         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1541         mono_class_interface_offset prototype to wrap all accesses to
1542         "MonoClass.interface_offsets".
1543
1544         * class.c: Implemented mono_class_interface_offset, and wrapped all
1545         accesses to "MonoClass.interface_offsets".
1546
1547         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1548         "MonoClass.interface_offsets".
1549
1550 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1551
1552         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1553         GetMethodFromHandle overloads (bug #78637).
1554
1555 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1556
1557         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1558         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1559
1560 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1561
1562         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1563         #81498.
1564
1565         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1566         gracefully.
1567         (mono_custom_attrs_from_index): Ditto.
1568
1569         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1570         Fixes #81501.
1571
1572 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1573
1574         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1575         is now allocated from a mempool.
1576
1577 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1578
1579         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1580         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1581
1582 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1583
1584         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1585         mono_loader_clear_error () too late. Fixes #81463.
1586
1587 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1588
1589         * culture-info-table.h : regenerated.
1590
1591 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1592
1593         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1594         is missing.
1595
1596 2007-04-25  Dick Porter  <dick@ximian.com>
1597
1598         * Makefile.am: Put the mingw enforced-optimisation back into the
1599         PLATFORM_WIN32 section.
1600
1601 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1602
1603         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1604         patch.
1605
1606         * image.c (mono_image_load_module): New API function to load a module reference.
1607
1608         * image.c (load_modules): Load modules lazily. Fixes #80812.
1609
1610         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1611         
1612         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1613
1614         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1615         to mono_image_load_module_dynamic.
1616
1617 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1618
1619         * marshal.c: Fix calling convention for CCW on non-windows
1620         platforms. STDCALL on windows, CDECL everywhere else to work 
1621         with XPCOM and MainWin COM.
1622         
1623         Code is contributed under MIT/X11 license.
1624
1625 2007-04-23  Martin Baulig  <martin@ximian.com>
1626
1627         Fix #80969.
1628
1629         * loader.c
1630         (method_from_memberref): Added `gboolean *used_context' argument.
1631         (mono_get_method_from_token): Likewise.
1632         (mono_get_method_full): Don't insert the method in the cache when
1633         `used_context' is true.
1634
1635 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1636
1637         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1638
1639         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1640         create new MonoTypes for returned types.
1641         * class.c (mono_generic_class_get_class): Export mono-internal.
1642         * class-internals.h: Update to changes.
1643
1644 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1645
1646         * threadpool.c, threadpool.h, icall-def.h: patch from
1647         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1648
1649 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1650
1651         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1652         
1653         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1654
1655         * threads.c (mono_thread_get_stack_bounds): New helper function.
1656
1657         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1658         Correctly compute stack bounds when attaching. Fixes #81394.
1659
1660 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1661
1662         * reflection.c: fix handling of doubles in custom attributes
1663         for the arm-fpa format (bug #81368).
1664
1665 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1666
1667         * reflection.c (assembly_add_win32_resources): Mildly relax an
1668         bounds check to let the end pointer point just past the end of the
1669         allocated buffer.  (may fix #81384)
1670
1671 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1672
1673         * culture-info-table.h : regenerated.
1674
1675 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1676
1677         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1678         the thread is aborted early.
1679
1680 2007-04-05  Dick Porter  <dick@ximian.com>
1681
1682         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1683         FindFirstFile()/FindNextFile() to find entries.  This lets the
1684         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1685         81038.
1686
1687         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1688         the parameters of
1689         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1690
1691 2007-04-04  Martin Baulig  <martin@ximian.com>
1692
1693         * debug-helpers.c
1694         (mono_method_desc_full_match): Add support for nested classes.
1695
1696 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1699
1700 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1701
1702         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1703         waiting for too many threads.
1704
1705 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1706
1707         * environment.c: Fix return value check on uname so we can get the 
1708         executing version on Solaris operating systems.
1709
1710 2007-03-28  Jb Evain  <jbevain@gmail.com>
1711
1712         * class.c (mono_type_get_name_recurse): Complete the
1713         fix for the creation of assembly qualified names for
1714         pointer types. Fixes #81208.
1715
1716 2007-03-27  Dick Porter  <dick@ximian.com>
1717
1718         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1719         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1720         changed.
1721
1722         * threads.c
1723         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1724         the value of ReleaseMutex().
1725
1726 2007-03-27  Dick Porter  <dick@ximian.com>
1727
1728         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1729         in little-endian order, not network endian, so must be converted
1730         to host endian here.  Fixes bug 80593.
1731
1732 2007-03-22  Jb Evain  <jbevain@gmail.com>
1733
1734         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1735         qualified names for pointer types. Fixes #81208.
1736
1737 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1738
1739         * marshal.c: Add support for PreserveSigAttribute. 
1740         
1741         Code is contributed under MIT/X11 license.
1742
1743 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1744
1745         * process.c: Fix endianness issues. Fixes #81126.
1746
1747         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1748         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1749
1750         * image.c (mono_image_lookup_resource): Make this work on big-endian
1751         machines.Change API contract so the caller needs to free the return value.
1752         
1753         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1754         API change.
1755         
1756 2007-03-14  Martin Baulig  <martin@ximian.com>
1757
1758         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1759         mono_type_get_desc() as well.
1760
1761 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1762
1763         * icall.c:  Fix environ access in VS.  
1764         
1765 2007-03-13  Alp Toker  <alp@atoker.com>
1766
1767         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1768         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1769         #63841.
1770
1771 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1772
1773         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1774         circular references among dynamic methods. Fixes #81091.
1775
1776         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1777
1778 2007-03-09  Martin Baulig  <martin@ximian.com>
1779
1780         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1781
1782 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1783
1784         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1785         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1786         
1787         Code is contributed under MIT/X11 license.
1788         
1789 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1790
1791         * loader.c: Reapply patch for bug #79424.
1792
1793 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1794
1795         * metadata.c (mono_type_to_unmanaged): Only convert object to
1796         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1797
1798 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1799
1800         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1801         (and incorrectly set) is_reference field from MonoGenericInst.
1802
1803 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1804
1805         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1806         a little earlier.
1807
1808         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1809
1810         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1811
1812 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1813
1814         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1815         FileOptions.1 value to mean "temporary", map that to
1816         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1817
1818         Fixes 80688
1819
1820 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1821
1822         * appdomain.c: implement MS .Net style shadow copying. Copies of
1823         the assemblies are made in a subdirectory of the dynamic base
1824         directory, the assembly names are preserved.
1825         Copy .mdb and .config files along with the assemblies being shadowed.
1826
1827 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1828
1829         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1830         (emit_marshal_handleref): Ditto.
1831
1832         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1833         on Visual C++. Fixes #80671.
1834
1835 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1836
1837         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1838         for clone operations.
1839
1840 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1841
1842         * marshal.c: Fix warnings.
1843
1844 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1845
1846         * loader.c: allow case-insensitive matching of the dll name
1847         in dllmap handling when prefixed with "i:".
1848
1849 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1850
1851         * threads.c: Fix #ifdef for dummy_apc function for VS.
1852
1853 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1854
1855         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1856
1857 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1858         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1859         giving precedence to the methods with a fully qualified name
1860         (InterfaceName.MethodName) when building the interface sections
1861         of the vtable.
1862
1863 2007-02-16  Dick Porter  <dick@ximian.com>
1864
1865         * threadpool.c (append_job): Fix fast-path array handling, so it's
1866         less likely the array will grow exponentially when the load is
1867         heavy.
1868
1869 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1870
1871         * metadata-internals.h, loader.c: fix dllmap lookup order
1872         for non-function maps, too, and prepare for fallback code.
1873
1874 2007-02-12  Robert Jordan  <robertj@gmx.net>
1875
1876         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1877         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1878         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1879         GlobalFree. Fixes a part of bug #77075.
1880
1881 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1882
1883         * loader.c: implemented typedef parent in field memberref.
1884
1885 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1886
1887         * marshal.c: Fix warnings and remember to call Release on
1888         IUnknown of RCW.
1889         
1890         Code is contributed under MIT/X11 license.
1891
1892 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1893
1894         * class-internals.h: Add MonoHandleRef definition, and
1895         handleref_class to mono_defaults. 
1896
1897         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1898         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1899
1900         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1901         (do nothing on this stage)
1902         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1903         (emit_marshal_handleref): New method, used for argument handling
1904         of HandleRefs. 
1905
1906 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1907
1908         * class.c (mono_class_setup_parent): Lazily init com types.
1909         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1910         init com types.
1911         * object.c (mono_remote_class_vtable): Lazily init com types.
1912         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1913         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1914         * domain-internals.h: Expose mono_init_com_types.
1915         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1916         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1917         Add support for COM Callable Wrapper marshalling.
1918         * marshal.h: Add icall definitions.
1919         * gc.c: Handle freeing of CCWs in finalizer code.
1920         
1921         Code is contributed under MIT/X11 license.
1922
1923 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1924
1925         * reflection.c: changed all the signature encoding code to use
1926         a variable-sized buffer.
1927
1928 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1929
1930         * marshal.c: locking fixes: never take the loader lock
1931         or other runtime locks when holding the marshal lock
1932         (fixes bug#80664).
1933
1934 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1935
1936         * marshal.c: make the delegate function pointer mapping
1937         work for the moving GC.
1938
1939 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1940
1941         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1942         for bug #80618.
1943
1944 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1945
1946         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1947         gmodule.
1948
1949 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1950
1951         * threadpool.c: made the code moving-GC safe.
1952
1953 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1954
1955         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1956         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1957         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1958         warning cleanup.
1959         * reflection.c: warning cleanup, some threading and moving GC fixes.
1960
1961 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1962
1963         * class.c, loader.c: create the needed Set/Get/Address array methods
1964         as well as the .ctors in mono_class_init (), fixes bug #80567.
1965
1966 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1967
1968         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1969         we doesn't decrease its alignment. Should fix the sparc build.
1970
1971 2007-01-24  Dick Porter  <dick@ximian.com>
1972
1973         * socket-io.c
1974         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1975         Create the returned object if we need to ignore an unsupported
1976         socket option.  Fixes a segfault reported by Atsushi.
1977
1978 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1979
1980         * class.c, object.c: restrict GC-tracked fields to
1981         UIntPtr fields used inside corlib, so we provide better
1982         type info to the GC and also allow broken packing as in
1983         bug #80580.
1984
1985 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1986
1987         * sgen-gc.c: removed duplicated function.
1988
1989 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1990
1991         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1992         value that means that the value is not supported, but that we
1993         should not return a failure, but instead report this as a
1994         successful operation.
1995
1996 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1997
1998         Fix tests/bug79956.2.il
1999         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
2000         (mono_generic_class_get_class): If the generic definition in an
2001         enum, copy over other fields related to it.
2002
2003 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
2004
2005         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
2006         genericinst enums (bug #79215).
2007
2008 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
2009         * class.c: Fix bug 80307.
2010
2011 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
2012
2013         * image.c: if the file table is not present, try to load
2014         all the modules, since we don't have info about them
2015         having or not metadata (bug #80517).
2016         * assembly.c: allow mono_assembly_load_references () to
2017         work for netmodules.
2018
2019 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2020
2021         * image.c, metadata-internals.h, object.c: execute module
2022         cctors when running on the 2 runtime if present (bug #80487).
2023
2024 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2025
2026         * icall.c: optimized InitializeArray() on bigendian.
2027
2028 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
2029
2030         * icall.c: fix for the broken ARM FPA double format.
2031
2032 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2033
2034         * icall.c: handle endian issues for r4 and r8 types, too, in
2035         the InitializeArray() icall.
2036
2037 2007-01-15  Miguel de Icaza  <miguel@novell.com>
2038
2039         * loader.c (mono_loader_error_prepare_exception): Clear the error
2040         once we have extracted the information from it, do this before we
2041         call into the JIT's class loading mechanisms.
2042
2043         * object.c (mono_class_create_runtime_vtable): Do not clear the
2044         loader error before calling mono_class_get_exception_for_failure
2045         as the loader error is needed inside
2046         mono_class_get_exception_for_failure to throw the error (thinko).
2047
2048         Fixes #80521
2049         
2050 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2051
2052         * reflection.c: align fields rva data so it's faster to load at
2053         runtime.
2054
2055 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2056
2057         Prepare to simplify GenericMethod handling.
2058         * class-internals.h (mono_method_get_context): New accessor function.
2059         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
2060         rather than directly accessing '->context' field.
2061
2062         * class-internals.h (_MonoGenericParam.method): Move ...
2063         (_MonoGenericContainer): ... here.  Add into union with klass field.
2064         * class.c, icall.c, loader.c, metadata.c, reflection.c:
2065         Update to changes.
2066
2067 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
2068
2069         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
2070         the wrapper type enum and reduce relocations.
2071
2072 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2073
2074         * reflection.c (inflate_mono_method): Reuse method instantiation
2075         from the generic method, if available.
2076
2077 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2078
2079         * marshal.c (emit_marshal_variant): Fix conv_arg
2080         type in last commit, based on whether parameter is byref.
2081         
2082 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2083
2084         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
2085         marshalling.
2086         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
2087         MONO_TYPE_OBJECT back for VARIANT support.
2088
2089 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2090
2091         * marshal.c, marshal.h, icall-def.h: Implement 
2092         Marshal.ReAllocCoTaskMem.
2093
2094 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
2095
2096         * marshal.c: memory retention fixes: use the proper
2097         image cache for runtime_invoke method lookups.
2098
2099 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2100
2101         * mempool.c: added code to help debug mempool allocations.
2102
2103 2007-01-11  Dick Porter  <dick@ximian.com>
2104
2105         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2106         support (experimenting with faking it with IP_MTU_DISCOVER for
2107         systems that don't have IP_DONTFRAGMENT.)
2108         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2109         icall.
2110
2111         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2112
2113         * socket-io.h: Add new fields to MonoSocketAsyncResult
2114         corresponding to the new ones in Socket.cs.
2115
2116 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2117
2118         Fix IronPython regression mentioned in #80249
2119         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2120         'cached_context' field, since it may have been initialized as a
2121         side-effect of metadata parsing.
2122
2123         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2124         (_MonoGenericClass.cached_class): Move here and rename from lone
2125         remaining field of ...
2126         (_MonoInflatedGenericClass): ... this.  Remove.
2127         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2128         to changes.
2129
2130         Fix mcs/tests/test-128.cs regression.
2131         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2132         2007-01-10 change below.
2133         [MONO_TYPE_OBJECT]: Recurse into array case.
2134
2135 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2136
2137         * class-internals.h (mono_get_inflated_generic_class): Remove.
2138         * class.c (mono_get_inflated_generic_class): Remove.
2139         (mono_generic_class_get_class): Rename from
2140         mono_class_create_generic.
2141         (mono_class_from_mono_type) [GENERICINST]: Use it.
2142         * reflection.c, metadata.c: Update to changes.  Use
2143         'mono_class_from_mono_type'.
2144
2145 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2146
2147         * reflection.c: use passed type when encoding an array element
2148         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2149
2150 2007-01-09  Robert Jordan  <robertj@gmx.net>
2151
2152         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2153         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2154         Fixes bug #80392.
2155
2156 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2157
2158         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2159
2160         * object.c (set_value): Avoid aliasing between type->data.klass
2161         and type->data.generic_class.
2162
2163         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2164
2165 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2166
2167         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2168         between type->data.klass and type->data.generic_class.
2169
2170 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2171
2172         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2173         value in out parameters.
2174
2175 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2176
2177         Simplify invariant for MonoGenericClass::klass field.
2178         * class.c (mono_class_create_generic): Verify 'klass' is null.
2179         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2180         initialize 'klass' field.
2181
2182 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2183
2184         Ongoing work to avoid redundant data and simplify invariants.
2185         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2186         'generic_class', and change type to a GenericInst.
2187         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2188         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2189
2190 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2191
2192         * class.c : skip io-layer under PLATFORM_WIN32.
2193
2194 2007-01-03  Tor Lillqvist  <tml@novell.com>
2195
2196         Fix #80305: In a bundled executable, look in the bundled exe
2197         assembly to determine the runtime version. Add the possibility to
2198         bundle also the machine.config file.
2199         
2200         * assembly.c (mono_assembly_open_from_bundle): Make
2201         non-static. Allow being called even if we have no bundled
2202         assemblies, and return NULL right away in that case.
2203
2204         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2205         here.
2206
2207         * domain.c (app_config_parse): Take an assembly exe file name as
2208         parameter instead of a config file name. Check for a bundled
2209         config file for that assembly by calling
2210         mono_config_string_for_assembly_file() (see below) before looking
2211         for one in the file system.
2212         (get_runtimes_from_exe): Corrsponding change to call of
2213         app_config_parse().
2214         (get_runtimes_from_exe): Check for bundled assembly exe file first
2215         by calling mono_assembly_open_from_bundle(). If no bundled
2216         assembly exe file is found, call mono_image_open() as before to
2217         look it up in the file system.
2218
2219         * mono-config.c: Add variable bundled_machinec_onfig.
2220         (mono_config_string_for_assembly_file): New function.
2221         (mono_config_for_assembly): Move code snippet that looks for a
2222         bundled assembly .config file into the above new function. Call
2223         it.
2224         (mono_register_machine_config, mono_get_machine_config): New
2225         functions to set and retrieve
2226
2227         * assembly.h: Declare mono_register_machine_config().
2228
2229         * mono-config.h: Declare mono_get_machine_config() and
2230         mono_config_string_for_assembly_file().
2231
2232         * icall.c: No declaration of environ necessary on Win32. It is
2233         declared (as a macro expanding to a function call) in stdlib.h.
2234         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2235         New internal mono function. Returns the value of
2236         mono_get_machine_config() as a Mono string.
2237
2238         * icall-def.h: Add get_bundled_machine_config().
2239
2240 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2241
2242         Remove redundant field
2243         * class-internals.h (_MonoGenericContext.container): Remove field.
2244         * loader.c (mono_method_get_signature_full): Don't parse a
2245         "container" for a signature parse when the signature is inflated
2246         immediately.
2247         (method_from_methodspec): Likewise, for a generic_inst.
2248         * class.c, metadata.c, reflection.c: Update to changes.
2249
2250 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2251
2252         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2253         'cached_context', and change semantics -- it starts off NULL, and
2254         is initialized on demand.
2255         * class.c (mono_generic_class_get_context): New accessor to
2256         replace 'context' field accesses.
2257         (mono_class_get_context): New helper.
2258         (*): Update to changes.
2259         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2260
2261 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2262
2263         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2264         before the memcpy.   Fixes Marshal2 regression.
2265
2266 2007-01-02  Jb Evain  <jbevain@gmail.com>
2267
2268         * blob.h: add a MONO_TYPE_ENUM definition
2269         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2270         fix the encoding of arrays of enums in custom attributes.
2271
2272         Fixes #79666.
2273
2274 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2275
2276         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2277         string is null terminated, but only cut the string short if it
2278         overflows the buffer.   
2279         
2280         (mono_string_to_byvalstr): Also fix this routine.   The code here
2281         was not properly terminating a string (it was only terminated
2282         because of the previous catch-all memset). 
2283
2284         I left the memset, because I do not know if applications expect
2285         the runtime to clear this region. 
2286
2287         Fixes #79944.
2288
2289         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2290         Clear the error before returning to unmanaged code to prevent the
2291         runtime from being confused later on (fixes  80420).
2292         (ves_icall_type_from_name): Always call mono_loader_clear_error
2293         after parsing a type that could have failed.
2294         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2295
2296         * loader.c (mono_loader_clear_error): Fix indentation.
2297
2298 2006-12-28  Martin Baulig  <martin@ximian.com>
2299
2300         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2301
2302 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2303
2304         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2305         getting a token for an EnumBuilder.
2306
2307 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2308
2309         * reflection.c: be more careful in case resource generation
2310         fails to create the data array.
2311
2312 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2313
2314         * sgen-gc.c: write barrier for clone and fix unregister handles.
2315
2316 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2317
2318         * reflection.c: some fixes needed in the generics code for the moving GC.
2319
2320 2006-12-22  Robert Jordan  <robertj@gmx.net>
2321
2322         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2323         account. Fixes bug #80299.
2324
2325 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2326
2327         Fix WaitHandle usage in delegates.
2328         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2329         * object.c (mono_wait_handle_new): Use the property set method to
2330         initialize the handle.
2331         (mono_wait_handle_get_handle): New.
2332         * threadpool.c (mono_async_invoke): Use it.
2333         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2334         Likewise.
2335         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2336
2337 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2338
2339         * marshal.c (emit_marshal): Call emit_marshal_variant and
2340         emit_marshal_com_interface when applicable.
2341         (emit_marshal_variant, emit_marshal_com_interface): Add
2342         methods for this case and remove if's from emit_marshal_object.
2343         
2344 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2345
2346         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2347
2348 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2349
2350         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2351         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2352         and GlobalFree on Windows. Remove FIXME.
2353
2354 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2355
2356         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2357         implementation for managed objects.
2358
2359 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2360
2361         * object.c: implemented code to be used for checking
2362         that no reference field overlaps with non-references.
2363
2364 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2365
2366         * threadpool.c: fix queue code to be compatible with the
2367         moving GC.
2368
2369 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2370
2371         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2372         in structures by throwing ArgumentNullException.
2373
2374         (emit_marshal_safehandle): Also when they are null parameters.
2375
2376         (emit_marshal_safehandle): Add support for ref
2377         SafeHandles parameters
2378
2379 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2380
2381         * profiler.c: updated to use the mono-dl API instead of
2382         gmodule.
2383
2384 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2385
2386         * profiler.c: updated to use the mono-dl dynamic loading
2387         API instead of gmodule.
2388
2389 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2390
2391         * profiler.c: use readlink, older versions of glib don't have
2392         g_file_read_link ().
2393
2394 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2395
2396         * profiler.c: try to detect the path to mono if libc fails to provide
2397         a useful name (bug #80286).
2398
2399 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2400
2401         Fix #80242
2402         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2403         instance, use the generic type definition instead.
2404         (ves_icall_Type_GetNestedTypes): Likewise.
2405         * class.c (mono_class_create_generic): Always set the
2406         nested_classes of a generic instance to NULL, even if the generic
2407         type definition has nested types.
2408
2409 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2410
2411         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2412         and fix on Linux.
2413         
2414 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2415
2416         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2417         my arguments were in the wrong order.   I also fixed the Windows
2418         version which seems to have had the same issue.
2419
2420         (mono_free_bstr): On Unix, this is g_free.
2421         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2422         conversions (for the tests in corlib to pass).
2423
2424 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2425
2426         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2427         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2428         exception if a ref SafeHandle in a struct has changed).
2429         
2430         (emit_struct_conv): Do not perform layout checks for classes
2431         derived from SafeHandle, as those are specially handled. 
2432
2433         (emit_object_to_ptr_conv): Add support for
2434         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2435
2436         (emit_marshal_safehandle): Implement conversion of return values
2437         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2438         
2439         * threads.c: WaitHandle now is compiled with two different handles
2440         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2441         for 2.0.
2442         
2443         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2444         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2445         these routines to cope with both kinds of fields.
2446
2447 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2448
2449         * metadata.c (mono_type_to_unmanaged): Handle the case where
2450         type->data.klass is a SafeHandle, and in that case, return the
2451         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2452         MONO_MARSHAL_CONV_SAFEHANDLE. 
2453
2454 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2455
2456         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2457         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2458         calling emit_marshal_object.
2459
2460         (emit_marshal_safehandle): Implement marshalling of
2461         SafeHandle parameters (no ref support yet).
2462
2463         (MarshalAction): Document the defines as I implement
2464         them for SafeHandle.
2465
2466         (emit_marshal_object): indentation police.
2467
2468         * class-internals.h: Define MonoSafeHandle.
2469         Add safehandle_class to MonoDefaults type.
2470
2471         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2472         list of classes to check for fields. 
2473
2474         * domain.c (mono_init_internal): Add SafeHandle to the list of
2475         mono_defaults loaded.
2476
2477 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2478
2479         Fix #80253
2480         * reflection.c (mono_reflection_bind_generic_parameters): If the
2481         generic type definition is a type builder, ensure that it is fully
2482         initialized before instantiating it.  Kill some dead code.
2483
2484 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2485
2486         * object.c: clear the loader_error () before loading
2487         more metadata stuff (bug #80258).
2488
2489 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2490
2491         * icall.c, icall-defs.h: type modifiers icalls for
2492         parameters and properties.
2493
2494 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2495
2496         * object.c, icall.c: fixed warnings.
2497
2498 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2499
2500         * marshal.c: fixed a couple of leaks and coding style in a few places.
2501
2502 2006-12-08  Dick Porter  <dick@ximian.com>
2503
2504         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2505         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2506         80173.
2507
2508 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2509
2510         * process.c: ProcessStartInfo may have only filename set and
2511         arguments can be NULL.
2512
2513 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2514
2515         * icall.c: fix leak found by Robert Jordan.
2516
2517 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2518
2519         * marshal.c, marshal.h: generate managed method to access an element
2520         of a multi-dimensional array.
2521
2522 2006-11-30  Paolo Molaro (lupus@ximian.com)
2523
2524         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2525
2526 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2527
2528         * icall.c: back out GetFields () fix until the serialization code is
2529         fixed to not depend on the incorrect behaviour.
2530
2531 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2532
2533         * profiler.c: provide defaults if none are set.
2534
2535 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2536
2537         * Makefile.am, attrdefs.h: new public header file with
2538         constants for attributes for use by embedders.
2539
2540 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2541
2542         * icall.c: GetFields () fix for bug #80064.
2543
2544 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2545
2546         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2547         removed long unused icalls.
2548
2549 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2550   
2551         * marshal.c: 
2552                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2553                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2554                 can be generated without a delegate class.
2555                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2556         
2557         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2558
2559 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2560
2561         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2562         #80069.
2563
2564 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2565
2566         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2567         icall-def.h: added icalls needed by System.GC.
2568
2569 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2570
2571         * loader.c: ensure the class in catch clauses is handled
2572         correctly for generics methods (fixes bug#79980).
2573
2574 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2575
2576         * monitor.h, monitor.c: added mono_locks_dump () function
2577         to help debug deadlocks involving managed locks.
2578
2579 2006-11-13  Dick Porter  <dick@ximian.com>
2580
2581         * file-io.c (get_file_attributes): If the file is a symlink try
2582         and get the stat data for the target, but also add the
2583         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2584         the specs for the windows symlink support, but will probably have
2585         to be reworked when I have test data from a vista machine.  Fixes
2586         bug 79887.
2587
2588 2006-11-13  Dick Porter  <dick@ximian.com>
2589
2590         * gc.c (mono_domain_finalize): 
2591         * marshal.c (mono_delegate_begin_invoke): 
2592         * threadpool.c (socket_io_init, mono_thread_pool_init)
2593         (mono_thread_pool_finish): 
2594         * monitor.c (mono_monitor_try_enter_internal): 
2595         * threads.c (mono_thread_resume, mono_thread_init)
2596         (mono_thread_suspend_all_other_threads)
2597         (mono_thread_execute_interruption): 
2598         * appdomain.c (mono_domain_unload): Check for NULL error returns
2599         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2600         75733.
2601
2602 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2603
2604         * process.c
2605         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2606         Only close the handle if the value of the handle is not
2607         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2608         robust.
2609
2610         Improvement for #75733, so that we do not run into this problem. 
2611
2612         
2613         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2614         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2615         internal variables.  Fixes #79462 
2616         
2617
2618 2006-11-09  Dick Porter  <dick@ximian.com>
2619
2620         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2621         Use poll() not select().  Fixes bug 79397.
2622
2623 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2624
2625         Fix #79872
2626         * assembly.c (mono_assembly_load_from_full): Check that the given
2627         image has an assembly manifest.
2628
2629 2006-11-09  Ankit Jain  <jankit@novell.com>
2630
2631         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2632         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2633         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2634
2635 2006-11-07  Dick Porter  <dick@ximian.com>
2636
2637         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2638         Put the old resolver behaviour back for pre-2.0 profiles.
2639
2640 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2641
2642         * threadpool.c: precise GC and locking fixes.
2643
2644 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2645
2646         * class.c: don't load types that have an explicit unaligned
2647         managed reference. Provide better info in the TypeLoad exception.
2648         Part of the fix for bug #79744.
2649         * object.c: use the correct check for class type load issues.
2650
2651 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2652
2653         * class.c: enforce alignment of fields with managed references
2654         even when Pack=1 is forced by the user (bug #77788).
2655
2656 2006-11-03  Dick Porter  <dick@ximian.com>
2657
2658         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2659         If the address reverse lookup fails, return it as the hostname
2660         anyway.  Fixes bug 79721.
2661
2662 2006-11-03  Dick Porter  <dick@ximian.com>
2663
2664         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2665         Fix build on Windows.
2666
2667 2006-11-02  Dick Porter  <dick@ximian.com>
2668
2669         * icall-def.h: 
2670         * object-internals.h: 
2671         * exception.c (mono_get_exception_thread_interrupted): 
2672         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2673         Fixes bug 74525.
2674
2675         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2676         Check for pending Thread.Interrupt.
2677
2678 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2679         * loader.c: Fixed bug 79684.
2680
2681 2006-10-27  Dick Porter  <dick@ximian.com>
2682
2683         * file-io.c (get_file_attributes): Force symlinks to directories
2684         to be returned as a regular file.  Fixes bug 79733.
2685 2006-10-26  Dick Porter  <dick@ximian.com>
2686
2687         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2688         CreateFile to open a directory then we need to set the
2689         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2690
2691 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2692
2693         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2694         friends.
2695
2696 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2697
2698         * sgengc.c: small cleanup of timer code.
2699
2700 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2701
2702         * sgen-gc.c: fix some warnings and start adding support for
2703         complete object removal on domain unload.
2704
2705 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2706
2707         * assembly.c: build_assembly_name should not consider a version
2708         number without build or revision number invalid. Fixes bug #79715.
2709
2710 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2711
2712         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2713         call kernel32 function OutputDebugString directly.
2714         
2715         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2716         
2717 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2718
2719         * reflection.c: small cleanup, using a function to insert a MonoString
2720         in the string heap.
2721
2722 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2723
2724         * reflection.c: moving GC fixes.
2725
2726 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2727
2728         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2729         all the objects with finalizers belonging to an unloading appdomain.
2730
2731 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2732
2733         * sgen-gc.c: added ability to allocate even when the nursery is fully
2734         pinned and fixed a couple of bugs.
2735
2736 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2737
2738         * threads.h: Revert the last change for now.
2739
2740         * threads.h (mono_thread_get_pending_exception): Rename this to
2741         mono_thread_get_undeniable_exception ().
2742
2743 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2744
2745         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2746         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2747         when fname does not refer to valid assembly. This result in a more
2748         meaningful error message.
2749         * exception.c: added mono_get_exception_bad_image_format2 which 
2750         constructs a BadImageFormatException using the ctor taking a custom
2751         message and the file name. Passing in a NULL msg results in a default
2752         message.
2753         * exception.h: define mono_get_exception_bad_image_format2 function.
2754         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2755         when file name pointed to an invalid IL image. Use 
2756         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2757         as this results in a more meaningful error message.
2758
2759 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2760
2761         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2762         #79465.
2763
2764 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2765
2766         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2767         consistency with the other _size functions.
2768         (mono_type_stack_size): Ditto.
2769
2770         * class.c object.c icall.c: Fix warnings caused by the above change.
2771
2772         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2773
2774         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2775
2776         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2777
2778 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2779
2780         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2781         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2782         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2783         threadpool.h, threads-types.h: mark more internal functions.
2784
2785 2006-10-11  Dick Porter  <dick@ximian.com>
2786
2787         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2788         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2789         reproduce the bug even before applying the fix.)
2790
2791 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2792
2793         * reflection.c: allow retrieving attributes for arguments in generic
2794         methods (bug #79241).
2795
2796 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2797
2798         * debug-mono-symfile.c: properly check fopen () result (found by
2799         coverity).
2800
2801 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2802
2803         * reflection.c: make error message clearer and fixed two
2804         issuelets found by Coverity.
2805
2806 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2807
2808         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2809
2810 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2811
2812         * object-internals.h, gc-internal.h, profiler-private.h:
2813         mark internal functions.
2814
2815 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2816
2817         * reflection.c: put data in the text section.
2818         * icall.c: recognize more types in type_from_typename ().
2819         * process.c, marshal.c: added some GC FIXMEs.
2820
2821 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2822
2823         * loader.c: check for NULL before initializing.
2824
2825 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2826
2827         * gc.c (finalizer_thread): Use a non-alertable wait here.
2828
2829         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2830         until the correct solution is found.
2831
2832 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2833
2834         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2835         modules with no metadata. Fixes #79596.
2836
2837         * image.c (load_metadata_ptrs): Put back the error message when
2838         the #- heap is encountered since the support is not complete yet.
2839
2840 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2841
2842         * gc.c: do not allow the user to SuppressFinalize () a
2843         delegate because it would leak the trampoline if present.
2844
2845 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2846
2847         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2848         PropertyPtr table.
2849
2850 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2851
2852         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2853
2854         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2855
2856         * row-indexes.h: Add definitions for *Ptr tables.
2857
2858         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2859
2860         * metadata.c (mono_metadata_translate_token_index): New helper function to
2861         translate table indexes used in uncompressed metadata.
2862         (mono_metadata_decode_table_row): Ditto.
2863         (mono_metadata_decode_table_row_col): Ditto.
2864
2865         * metadata.c: Add table schema for *Ptr tables.
2866
2867         * class.c loader.c: Use the new helper function to access the affected metadata
2868         tables.
2869         
2870         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2871         #38532.
2872         
2873 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2874
2875         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2876         sequences which can be unbounded in size. Fixes #79583.
2877
2878 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2879
2880         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2881         static initialization.
2882
2883         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2884
2885         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2886
2887         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2888
2889         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2890         ctor fails, i.e. throw the same exception on subsequent accesses.
2891         
2892 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2893
2894         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2895         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2896         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2897         Handle marshalling of interfaces and VARIANTs contained in structs.
2898         
2899         Code is contributed under MIT/X11 license.
2900         
2901 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2902
2903         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2904         
2905         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2906         mempool.
2907
2908 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2909
2910         * console-io.c: ignore previous SIGINT handler.
2911
2912 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2913
2914         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2915         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2916         #79460, #79461, #79485.
2917
2918         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2919
2920         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2921         #79217.
2922
2923 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2924
2925         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2926         could be generated from it.
2927
2928 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2929
2930         * rand.c: fix read loop to correctly handle EINTR.
2931
2932 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2933
2934         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2935         internal calls are defined to keep methods closer to the declaring
2936         type and allow a significant reduction in runtime relocations and
2937         memory usage.
2938
2939 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2940
2941         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2942         exception message to have FileNotFoundException use the default
2943         assembly load error message. Fixes bug #79426.
2944         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2945
2946 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2947
2948         * threadpool.c: (start_thread_or_queue) use the root domain when
2949         creating the thread instead of the async object one.
2950
2951 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2952
2953         * class.c, object.c, class-internals.h, reflection.c:
2954         for arrays, store element_size inside MonoClass (speedup
2955         for array object creation).
2956
2957 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2958
2959         * icall.c: fixed CodeBase to use the file name and not the module
2960         name (bug #79365).
2961
2962 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2963
2964         * mono-debug.c, mono-debug.h: export find_method as
2965         mono_debug_find_method ().
2966
2967 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2968
2969         * debug-helpers.c, class-internals.h: added a few functions useful
2970         when debugging under gdb.
2971
2972 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2973
2974         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2975         characters that need special handling.
2976
2977 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2978
2979         * mono-config.c: make the os/cpu specification more flexible,
2980         allowing lists and negation.
2981
2982 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2983
2984         * marshal.c: COM Interop fixes. Handle case where method->klass.
2985         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2986         calling convention on non-windows platforms. This is for
2987         compatibility with XPCOM and MainWin COM.
2988         
2989         Code is contributed under MIT/X11 license.
2990         
2991
2992 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2993
2994         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2995         correctly. Fixes #79217.
2996
2997         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2998
2999 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
3000
3001         * mono-config.c: allow both an os and cpu attribute for dllmap
3002         and dllentry elemnets to enable a single config file to be used
3003         for multiple architectures.
3004
3005 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
3006
3007         * loader.c: MonoLoaderError was cleared too soon on load failure.
3008         Fixes bug #79424.
3009
3010 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
3011
3012         * icall.c: use the defining class vtable when accessing a
3013         static field, not a pobblibly derived class.
3014
3015 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * icall.c string-icalls.c: Remove references to unicode.h.
3018
3019         * unicode.h unicode.c Makefile.am: Remove these unused source files.
3020
3021         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
3022
3023         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
3024         indicating the image where custom marshaller types should be looked up.
3025         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
3026         custom marshallers, instead of corlib. Fixes #79425.
3027
3028 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
3029
3030         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
3031
3032 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
3033
3034         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
3035         Implement Environment.ProcessorCount.
3036         
3037         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
3038         Implement Environment.ProcessorCount.
3039         
3040         * icall.c: 
3041         Add Environment.ProcessorCount icall.
3042         
3043         Patch by Jason McFall.
3044
3045 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3046
3047         * assembly.c: don't append .exe/.dll when the filename already contains
3048         one of those extensions.
3049
3050 2006-09-12  Martin Baulig  <martin@ximian.com>
3051
3052         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
3053         to array interfaces.
3054
3055 2006-09-11  Martin Baulig  <martin@ximian.com>
3056
3057         * reflection.c (mono_image_build_metadata): Create the
3058         MethodImpl's after emitting all types and methods, so we don't
3059         need another fixup pass for them.
3060
3061 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
3062
3063         * class.c (mono_class_from_name_case): Fix regression introduced by the last
3064         change.
3065
3066 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
3067
3068         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
3069         unload.
3070
3071 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
3072
3073         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
3074         args is not set. Fixes #78926.
3075
3076 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
3077
3078         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
3079
3080         * image.c (load_class_names): Move this to class.c, and rename it to 
3081         'mono_image_init_name_cache'.
3082         (load_modules): Fix a warning.
3083
3084         * class.c icall.c image.c: Initialize image->name_cache lazily.
3085
3086         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
3087         on its name using information in the AOT file.
3088
3089         * class.c (mono_class_from_name): Use the new hook function.
3090
3091 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
3092
3093         * reflection.c (mono_param_get_objects): Handle enum default parameter values
3094         correctly.
3095
3096         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
3097         Fixes #79289.
3098         
3099 2006-09-06  Martin Baulig  <martin@ximian.com>
3100
3101         * icall.c (mono_lookup_internal_call): Small fix.
3102
3103 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3104
3105         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3106         double g_free.
3107
3108 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3109
3110         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3111         when --debug is specified.
3112
3113 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3114
3115         * class.c (setup_generic_array_ifaces): Fix a warning.
3116
3117 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3118
3119         * Temporarily remove the patch to assemly.c that checks the
3120         assembly versions as it breaks our gacutil.
3121
3122 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3123
3124         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3125
3126         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3127         a net 1.0 runtime.
3128
3129         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3130         created using the default ctor. Fixes #79152.
3131         (mono_string_builder_to_utf16): Ditto.
3132
3133 2006-09-01  Martin Baulig  <martin@ximian.com>
3134
3135         Fix handling of the generic array interfaces.
3136
3137         * class-internals.h
3138         (MonoDefaults): Removed `generic_array_class' and added
3139         `generic_ilist' class.
3140
3141         * class.c
3142         (mono_bounded_array_class_get): Add the new generic array interfaces.
3143         (setup_generic_array_ifaces): New static method; create vtable
3144         entries for each method in the generic array interfaces.
3145
3146         * metadata.c
3147         (select_container): Allow "parent-less" generic methods.
3148
3149         * marshal.c
3150         (mono_marshal_get_generic_array_helper): New public method.
3151
3152         * icall.c
3153         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3154         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3155         moved the interncall into System.Array.
3156
3157 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3158
3159         A few more cases of avoiding work on types with ->byref set.
3160         Has the real fix for #79238
3161         * icall.c (is_generic_parameter): New helper.
3162         (ves_icall_Type_GetGenericParameterPosition): Use it.
3163         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3164         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3165         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3166         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3167         reference types.
3168         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3169         reference types.
3170         (ves_icall_Type_get_IsGenericInstance): Likewise.
3171         (ves_icall_Type_get_IsGenericType): Likewise.
3172
3173 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3174
3175         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3176         class if possible.
3177
3178         * mempool.h (mono_mempool_get_allocated): New helper function.
3179
3180         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3181         change.
3182
3183         * mempool.c: Fix warnings and the calculation of stats.
3184
3185         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3186
3187         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3188
3189         * loader.c (mono_get_method_from_token): Update method_count stat.
3190
3191         * class-internals.h (MonoStats): Add some stats.
3192
3193 2006-08-31 Robert Jordan  <robertj@gmx.net>
3194
3195         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3196         with managed variants.
3197         All code is contributed under the MIT/X11 license.
3198         
3199 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3200
3201         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3202         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3203
3204         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3205
3206         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3207         with cycles in classes.
3208
3209         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3210
3211         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3212         missing a [MarshalAs] directive. Fixes #79203.
3213
3214         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3215         klass->marshal_info. Fixes #79217.
3216
3217 2006-08-30  Martin Baulig  <martin@ximian.com>
3218
3219         Committing a patch from Joachim Ante <joe@otee.dk>:
3220         Add support for binary data symbol stores.
3221
3222         * debug-mono-symfile.c
3223         (mono_debug_open_mono_symbol_file): Renamed into
3224         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3225         arguments.
3226
3227         * mono-debug.c
3228         (mono_debug_open_image): Added `raw_contents' and `size' args.
3229         (mono_debug_init_2_memory): New public function.
3230
3231 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3232
3233         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3234
3235 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3236
3237         * appdomain.c: implement support for ShadowCopyFiles.
3238
3239 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3240
3241         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3242         when value is NULL (and should remove CID #51).
3243
3244 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3245
3246         * image.c: moved 2 functions to ../utils.
3247
3248 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3249
3250         * gc.c: cope with the target object of a GC handle being NULL
3251         (bug #78877).
3252
3253 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3254
3255         * class.c: recursively check parent's explicit implementations
3256         of interface methods (fixes bug #79125).
3257
3258 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3259
3260         * filewatcher.c: Avoid warnings when building, do not redefine
3261         constants that are defined.
3262
3263         Remove warnings.
3264
3265 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3266
3267         * image.c: don't fail when the link points to an absolute path.
3268
3269 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3270
3271         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3272         Fix CID #3.
3273
3274 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3275
3276         * image.c (full_path): A new method used to obtain the actual path
3277         of an assembly even in the presence of symbolic links.  
3278
3279         This is necessary for the case where we are running a binary that
3280         has been GACed, but we are using the "published" path name
3281         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3282         file in the GAC.
3283
3284         This was the source of the failure for the `xsp' command with the
3285         recent AppDomain changes, as far as the runtime was concerned,
3286         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3287         $prefix/mono/gac/blah/version/blah.exe.
3288
3289         (do_mono_image_open): use full path
3290
3291 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3292
3293         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3294
3295 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3296
3297         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3298         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3299
3300 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3301
3302         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3303         small structures. Fixes #78990.
3304
3305 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3306
3307         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3308
3309         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3310
3311 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3312
3313         * appdomain.c:
3314         * marshal.c: don't load all the assemblies from a domain into newly
3315         created ones. The new domains might have different rules and load
3316         assemblies from different locations. Fixes bug #76757.
3317
3318         Patch by Lluis. Conflicts resolved by Brian Crowell.
3319
3320 2006-08-16  Alp Toker  <alp@atoker.com>
3321
3322         * socket-io.c: First half of the fix for #79084.
3323         Set sa_size to the length of the content, not that of the struct.
3324         Don't add NULL suffix to the content, this should be done in
3325         managed code if needed.
3326
3327 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3328
3329         Fix part of #79012
3330         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3331         mono_metadata_parse_type returns NULL.
3332
3333 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3334
3335         * normalization-tables.h : new file for string normalization data.
3336         * locales.c, locales.h, icall.c :
3337           added load_normalization_resource() for string normalization,
3338           and icall as well.
3339         * Makefile.am : added normalization-tables.h to the sources.
3340
3341 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3342
3343         * marshal.c: Add more helper functions to reduce code duplication and use them
3344         everywhere.
3345
3346 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3347
3348         * marshal.c: Fix non-x86 stdcall warnings.
3349         
3350         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3351         them everywhere.
3352
3353 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3354
3355         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3356         type check on multi-dimensional arrays. Fixes #79000.
3357
3358 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3359
3360         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3361         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3362         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3363         * class-internals.h: add is_com_object to class structure.
3364         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3365         null checks to COM object marshalling. Fix .ctor call on RCW.
3366         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3367         
3368         All code is contributed under the MIT/X11 license.
3369
3370 2006-08-09  Dick Porter  <dick@ximian.com>
3371
3372         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3373         racing mono_monitor_allocator_lock() somewhere, so don't delete
3374         the critical section for now.  Found by running and exiting
3375         monodevelop.
3376
3377 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3378
3379         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3380         (ves_icall_System_ComObject_FindInterface): Ditto.
3381         (ves_icall_System_ComObject_CacheInterface): Ditto.
3382
3383         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3384         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3385
3386 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3387
3388         * threadpool.c: treat pipes from process asynchronous reads as sockets
3389         when reading from them, so we get select/poll or epoll to wait for
3390         data.
3391
3392 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3393
3394         * loader.c: Fix a typo (CID #233) in the null check.
3395
3396 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3397
3398         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3399         Hopefully fixes #78949.
3400         
3401         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3402         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3403         bytes. Fixes #78972.
3404
3405 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3406
3407         * filewatcher.c: we need to set errno here.
3408
3409 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3410
3411         * filewatcher.c: let Win32Exception get the error value.
3412
3413 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3414
3415         * filewatcher.c: translate errno into win32 errors for Win32Exception
3416         to know what happened.
3417
3418 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3419
3420         * threadpool.c: Fix more warnings.
3421
3422         * assembly.c (search_loaded): Fix warnings.
3423
3424         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3425         (mono_async_invoke): Ditto.
3426
3427 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3428
3429         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3430         entries for __ComObject type in addition to ComImport types.
3431         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3432         about hash table.
3433         
3434         All code is contributed under the MIT/X11 license.
3435
3436 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3437
3438         * image.c: avoid tentative loading of modulerefs that contain
3439         no metadata (P/Invoke library names).
3440
3441 2006-07-28  Dick Porter  <dick@ximian.com>
3442
3443         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3444         mono_loader_lock() somewhere, so don't delete the critical section
3445         for now.  Found by running and exiting monodevelop.
3446
3447 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3448
3449         * filewatcher.c: define the inotify syscalls when we're building on
3450         linux and have sys/syscall.h. The build system might not have support
3451         for inotify but the target system might have it.
3452
3453 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3454
3455         * domain.c: Documentation updates.
3456
3457         * loader.c (mono_free_method): Do not release the method
3458         information if we are being profiled, as profilers will use this
3459         information at shut down to present some data to the user.
3460
3461         This is needed so that the profiler does not crash, as the
3462         profiler tends to keep MonoMethods around, and they might become
3463         invalid if we free these.
3464
3465         (mono_get_method_constrained): Return the original CIL stream
3466         method as well, so verification can be performed against it.
3467
3468 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3469
3470         * filewatcher.[ch]: support for inotify file system watcher.
3471         * icall.c: add new internal calls for the inotify file system watcher.
3472
3473 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3474
3475         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3476         #78888.
3477
3478 2006-07-20  Dick Porter  <dick@ximian.com>
3479
3480         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3481         warning.
3482
3483 2006-07-20  Dick Porter  <dick@ximian.com>
3484
3485         * threads.c (start_wrapper): Do the thread cleanup while we still
3486         hold a reference to its object.  Fixes bug 78123.
3487
3488 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3489
3490         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3491         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3492           "managed-to-managed".
3493         * icall.c: Redirect string constructors that take sbyte* to
3494           ves_icall_System_String_ctor_RedirectToCreateString.
3495         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3496           to CreateString () methods with matching signature.
3497         * reflection.c: Use original security informations for
3498           MONO_WRAPPER_MANAGED_TO_MANAGED.
3499         * security-manager.c: Use original security informations for
3500           MONO_WRAPPER_MANAGED_TO_MANAGED.
3501         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3502           that is a placeholder and only its address should be used.
3503         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3504           that is a placeholder and only its address should be used.
3505
3506 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3507
3508         Begin implementing COM Interop.
3509         * appdomain.c: Increment corlib version.
3510         * class.c: Set ComImport classes' parent to __ComObject.
3511         * loader.c: Mark cominterop methods as such.
3512         * domain.c: Add __ComObject class to MonoDefaults structure.
3513         * image.c: Add 2 hashtables to the image for COM Interop related methods
3514         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3515         using the mempool allocator
3516         
3517         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3518         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3519         declaration for mono_metadata_type_dup_mp.
3520         
3521         * debug-helpers.c: Added strings for two additional wrapper types
3522         * object.c: Create proxy objects for ComImport classes
3523         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3524         and added __ComObject class to MonoDefaults structure.
3525         
3526         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3527         MonoComInteropProxy and MonoComObject.
3528         
3529         * marshal.c: Added support for COM Interop
3530         (signature_cominterop): Converts managed signature to corresponding
3531         unmanaged COM signature.
3532         (cominterop_get_function_pointer): gets unmanaged function pointer via
3533         COM object vtable
3534         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3535         (cominterop_get_method_interface): returns interface type that method is defined on
3536         (mono_mb_emit_cominterop_call): emits native call to function pointer
3537         gotten from vtable
3538         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3539         that matches signature of unmanaged function.
3540         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3541         (cominterop_get_invoke): forwards call from proxy to __ComObject
3542         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3543         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3544         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3545         
3546         * marshal.h: Added Marshal icall declarations.
3547         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3548         so we can access them in finalizer
3549         
3550 2006-07-14  Dick Porter  <dick@ximian.com>
3551
3552         * object.c (mono_type_initialization_cleanup): Fix a race
3553         condition by temporarily commenting out the critical section
3554         deletion.
3555
3556 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3557
3558         * reflection.c (create_custom_attr): Fix some warnings.
3559         (create_custom_attr_data): Ditto.
3560         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3561         types. Fixes #78855.
3562
3563 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3566
3567         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3568
3569 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3570
3571         * reflection.c (resolve_object): Add support for DynamicMethod.
3572
3573         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3574         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3575
3576 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3577
3578         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3579         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3580
3581 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3582
3583         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3584         Fixes #77888.
3585
3586 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3587
3588         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3589         slightly: remove a shadow local variable.
3590
3591 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3592
3593         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3594         definition that introduces the virtual function slot.
3595         Also fix Coverity #105.
3596
3597 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3598
3599         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3600         for dynamic assemblies. Fixes #78724.
3601
3602 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3603
3604         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3605         Fixes #78722.
3606
3607 2006-06-21  Martin Baulig  <martin@ximian.com>
3608
3609         * reflection.c
3610         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3611         fixes #76484.
3612
3613 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3614
3615         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3616
3617 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3618
3619         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3620         nor TYPEREFs.
3621         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3622         Inflate result if necessary.
3623         (mono_class_get_full): Remove old version.  Rename from
3624         'mono_class_get' and add 'context' argument.  Pass it to
3625         ..._create_from_typespec.
3626         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3627         (mono_ldtoken): Revert change below.
3628
3629 2006-06-20  Martin Baulig  <martin@ximian.com>
3630
3631         * class.c (mono_ldtoken): Don't pass the generic context to
3632         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3633
3634 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3635
3636         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3637         and later freeing it. Fixes #78638.
3638
3639 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3640
3641         * icall.c (mono_class_get_throw): Revert over-zealous error
3642         throwing, the caller for mono_class_get_throw will cope with
3643         errors when classes are not properly initialized already.
3644
3645         The code still copes with loader exceptions though.
3646
3647         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3648         
3649 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3650
3651         Fixes the `make run1' version of RuntimeAbort (to be commited,
3652         source is in Bugzilla).
3653         
3654         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3655         FALSE on class loading failure instead of returning true.
3656
3657         * class.c (mono_class_create_from_typedef): It is possible for
3658         mono_metadata_interfaces_from_typedef_full to fail if a class is
3659         not found, cope with this.
3660         
3661
3662 2006-06-14  Dick Porter  <dick@ximian.com>
3663
3664         * socket-io.c: 
3665         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3666         4.1.1
3667
3668 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3669
3670         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3671
3672 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3673
3674         * icall.c: Another fix for building mono in Visual Studio.
3675
3676 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3677
3678         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3679         
3680 2006-06-09  Martin Baulig  <martin@ximian.com>
3681
3682         * debug-mono-symfile.c: Put this back and really fix it this
3683         time. Sorry for all the trouble.
3684
3685 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3686
3687         * icall.c (mono_class_get_throw): Fix a warning.
3688         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3689         ReflectionTypeLoadException if needed. Fixes #78606.
3690
3691         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3692         (mono_class_init): Ditto.
3693
3694         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3695         ref_only exceptions.
3696         (mono_loader_clear_error): Make this work even if there is no error.
3697
3698 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3699
3700         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3701         Marshal.GetComSlotForMethodInfo using internal call.
3702
3703 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3704
3705         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3706         a function for signalling it.
3707
3708         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3709         a referenced assembly is not found.
3710
3711         * loader.c (mono_loader_error_prepare_exception): Add support for 
3712         LOADER_ERROR_ASSEMBLY. Fix formatting.
3713
3714 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3715
3716         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3717         for VARIANT marshalling on windows and increment corlib version
3718         since Variant struct was added.
3719
3720 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3721
3722         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3723         stack trace line information:
3724
3725         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3726         (Martin) when looking up B which is between A and C, return A not C.
3727
3728         Bug is #78573.
3729
3730         Thanks to Alexander Olk for tracking this down.
3731
3732 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3733
3734         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3735         
3736         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3737         avoid clobbering its value.
3738         (mono_string_to_lpstr): Fix a warning on windows.
3739
3740 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3741
3742         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3743
3744         * reflection.c loader.c: Removed references to 'dummy' flag.
3745
3746         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3747
3748         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3749         it gets GC tracking.
3750
3751         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3752         GC tracking.
3753         
3754         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3755
3756         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3757
3758         * appdomain.c: Bump corlib version.
3759
3760 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3761
3762         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3763         CEE_STIND_REF when working with object references.
3764
3765 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3766
3767         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3768         Fixes #78539.
3769
3770 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3771
3772         * loader.c (method_from_memberref): Fix argument value for
3773         mono_loader_set_error_method_load (I was passing the MonoClass
3774         instead of the class name char *).
3775
3776 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3777
3778         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3779         CEE_STIND_REF when working with object references.
3780
3781 2006-05-30  Martin Baulig  <martin@ximian.com>
3782
3783         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3784         mono_method_full_name() change and replace the ':' with a '.'
3785         here.
3786
3787 2006-05-30  Martin Baulig  <martin@ximian.com>
3788
3789         * debug-mono-symfile.c
3790         (mono_debug_symfile_lookup_location): Fix the algorithm:
3791         when looking up B which is between A and C, return A not C.
3792
3793 2006-05-29  Martin Baulig  <martin@ximian.com>
3794
3795         * mono-debug.h
3796         (MonoDebugMethodInfo): Make the typedef public.
3797         (MonoDebugSourceLocation): New public struct.
3798
3799         * mono-debug.c
3800         (mono_debug_source_location_from_address): Removed.
3801         (mono_debug_source_location_from_il_offset): Removed.
3802         (mono_debug_il_offset_from_address): Removed.
3803         (mono_debug_address_from_il_offset): Removed.
3804         (mono_debug_lookup_method): New public function.
3805         (mono_debug_lookup_source_location): New public function; replaces
3806         the old mono_debug_source_location_from_*() functions; see the
3807         inline documentation.
3808         (mono_debug_free_source_location): New public function.
3809         (mono_debug_print_stack_frame): New public function; see the
3810         inline documentation.
3811
3812         * debug-mono-symfile.c
3813         (mono_debug_find_source_location): Renamed into
3814         mono_debug_symfile_lookup_location(); only take a
3815         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3816         documentation.
3817         (mono_debug_find_method): Renamed into
3818         mono_debug_symfile_lookup_method().
3819
3820 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3821
3822         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3823         returned by mono_image_open_full ().
3824
3825         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3826         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3827         #78517.
3828
3829         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3830         #78518.
3831
3832 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3833
3834         * class.c (mono_class_from_typeref): handle missing images
3835         earlier, deals with bug #78418.   Refactor code; 
3836
3837         Fix a warning introduced in my previous commit (some stale code
3838         from before I revisited my patch).
3839
3840         * class.c (mono_class_create_from_typedef): On failure, remove the
3841         class from the MonoImage->class_cache as the class is not
3842         initialized;   Fixes the leak pointed out by Paolo.
3843
3844 2006-05-25  Dick Porter  <dick@ximian.com>
3845
3846         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3847         DeleteCriticalSections until I figure out which one may still be
3848         sometimes locked when mono_thread_cleanup is called.
3849
3850 2006-05-24  Dick Porter  <dick@ximian.com>
3851
3852         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3853         of mono_thread_manage and back into its own function, so it can be
3854         called after the finalizer thread has finished.
3855
3856         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3857
3858 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3859
3860         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3861         Fixes #78495.
3862
3863         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3864         with non-blittable elements.
3865         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3866
3867 2006-05-24  Martin Baulig  <martin@ximian.com>
3868
3869         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3870         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3871
3872         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3873         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3874         `mono_debugger_event_handler' to NULL.
3875
3876 2006-05-24  Martin Baulig  <martin@ximian.com>
3877
3878         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3879
3880 2006-05-24  Martin Baulig  <martin@ximian.com>
3881
3882         * mono-debug-debugger.h
3883         (mono_debugger_create_notification_function): Added
3884         `MonoCodeManager *' argument.
3885
3886 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3887
3888         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3889
3890 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3891
3892         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3893         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3894         implementation.
3895
3896 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3897
3898         * icall.c: precise GC support: objects can't be stored in unmanaged
3899         memory anymore, even if they are kept alive by other references: since
3900         they can move the GC needs to be able to always find them.
3901
3902 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3903
3904         * object.c: precise GC support for static fields. Support
3905         for moving GCs: write barriers and pinned allocation for interned
3906         strings.
3907
3908 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3909
3910         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3911         structure.
3912
3913 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3914
3915         * class.c, gc.c: sgen and precise GC updates.
3916
3917 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3918
3919         * marshal.h, marshal.c: added write barrier wrapper and precise type
3920         fixes.
3921
3922 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3923
3924         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3925         support.
3926
3927 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3928
3929         * reflection.c: precise and sgen GC updates.
3930
3931 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3932
3933         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3934
3935 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3936
3937         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3938
3939 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3940
3941         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3942         MONO_TYPE_OBJECT. Fixes #78462.
3943
3944 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3945
3946         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3947         and blittable types.
3948
3949 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3950
3951         * class.c (mono_class_get_exception_for_failure): Implement parts
3952         of a TODO: if the loader error is set (instead of the class
3953         error), we return a Loader exception that can be properly thrown
3954         elsewhere.
3955
3956         This was exposed by some Winforms 2.0 code that I tried to run
3957         (Atsushi pointed me to it).
3958
3959 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3960
3961         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3962         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3963         
3964         * marshal.c (emit_marshal_vtype): Add limited support for 
3965         UnmanagedType.LPStruct. Fixes #78427.
3966
3967         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3968         Applied a patch from kangaroo to fix #77523.
3969
3970 2006-05-17  Martin Baulig  <martin@ximian.com>
3971
3972         * threads.c
3973         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3974         (debugger_thread_created): Removed.
3975         (debugger_thread_exited): Removed.
3976
3977 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3978
3979         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3980
3981         * object-internals.h (MonoReflectionResource): Sync with managed version.
3982
3983 2006-05-12  Wade Berrier <wberrier@novell.com>
3984
3985         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3986
3987 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3988
3989         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3990         functions try to allocate from the image mempool.
3991
3992 2006-05-12  Dick Porter  <dick@ximian.com>
3993
3994         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3995
3996 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3997
3998         * object.c: The FieldGetter and FieldSetter methods require the full
3999         name of the class, not only the name. Fixes bug #78277.
4000
4001 2006-05-11  Miguel de Icaza  <miguel@novell.com>
4002
4003         * loader.c (method_from_memberref): Do not pass the NULL klass to
4004         mono_loader_set_error_() methods.  Pass the non-NULL value
4005         (class). 
4006
4007 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
4008
4009         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
4010         (mono_assembly_close): Null out assembly->image->references after freeing it.
4011
4012         * image.c (mono_image_close): Free image->references.
4013         
4014         * reflection.c (mono_image_basic_init): Fix a small memory leak.
4015
4016 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4017
4018         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
4019         before checking if it's NULL (g_assert).
4020
4021 2006-05-10  Martin Baulig  <martin@ximian.com>
4022
4023         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
4024         I thought I already killed that two months ago, but now it somehow reappeared.
4025
4026 2006-05-10  Martin Baulig  <martin@ximian.com>
4027
4028         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
4029
4030 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
4031
4032         * reflection.c: Allocate memory for dynamically created methods in the image
4033         mempools.
4034
4035 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4036
4037         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
4038         don't use the ad pointer before checking if it's NULL (g_assert).
4039
4040 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
4041
4042         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
4043         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
4044
4045         * marshal.c: Allocate all signatures from mempools.
4046
4047         * marshal.c: Allocate some more signatures from mempools.
4048
4049 2006-05-09  Miguel de Icaza  <miguel@novell.com>
4050
4051         * object.c (mono_load_remote_field): The code used to provide a
4052         temporary variable for returning results if the user did not
4053         provide a result pointer.  But our temporary variable was allocted
4054         on the satck.
4055
4056         Fix calling code to always pass a result area.   Coverity ID 103.
4057
4058 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
4059
4060         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
4061         value, not the old. Fixes #78312.
4062         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
4063
4064         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
4065         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
4066         per-image cache.
4067
4068         * assembly.c (mono_assembly_close): Free image->references.
4069
4070         * assembly.c (mono_assembly_names_equal): Fix a warning.
4071         (mono_assemblies_cleanup): Cleanup more global data.
4072
4073         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
4074
4075         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
4076         ptr_cache and image->modules.
4077
4078         * image.c (mono_image_init): Allocate array_cache lazily.
4079         
4080 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4081
4082         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
4083         behavior was changed recently and has bad side effects.
4084
4085 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
4086
4087         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
4088         
4089         * assembly.c (mono_assembly_close): Remove a debug printf.
4090
4091         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
4092
4093         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
4094         to also allow for temporary references between mono_image_open ()/close ().
4095
4096         * domain.c (get_runtimes_from_exe): Add a FIXME.        
4097
4098 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4099
4100         * marshal.c: Fix support for dynamic methods.
4101
4102         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4103
4104         * marshal.c (mono_marshal_cleanup): New cleanup function.
4105
4106         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4107         image mempools.
4108
4109         * class.c (mono_class_init): Fix leaking class->nested_classes.
4110
4111         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4112
4113         * image.c (mono_image_init): Initialize the new cashes.
4114
4115         * image.c (mono_image_close): Destroy the new cashes.
4116
4117         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4118
4119         * mempool.c (mono_mempool_strdup): New helper function.
4120
4121         * class-internals.h: Add prototype for mono_loader_unlock ().
4122
4123         * domain.c (mono_jit_info_table_find): Fix a warning.
4124         (mono_debugger_check_runtime_version): Ditto.
4125
4126         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4127         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4128         functions to these modules.
4129
4130         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4131         metadata modules.
4132         
4133         * marshal.c (mono_free_bstr): Fix a warning.
4134
4135         * assembly.c (mono_assembly_open_full): Fix another small leak.
4136
4137         * object.c: Fix some unload leaks in the remoting code.
4138
4139         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4140         function.
4141
4142         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4143
4144         * reflection.c: Fix some unload leaks in dynamic assemblies.
4145
4146 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4147
4148         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4149         * marshal.h: Add BSTR support on Win32
4150         * icall.c: Add BSTR icalls
4151         * metadata.h: Add BSTR enums
4152
4153 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4154
4155         Work to catch the crash from #76795 and turn it into an
4156         exception.   As I stubbed out pieces of the VisualBasic support,
4157         I found a number of places where the code was failing and I added
4158         checks to those places. 
4159         
4160         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4161         function return a status code.  If we fail to parse the signature
4162         from mono_metadata_parse_generic_inst, return FALSE.
4163
4164         * loader.c (mono_get_method_from_token): If we fail to load the
4165         method (mono_class_get) return NULL.   
4166
4167         * (method_from_memberref): Return NULL if we are unable to parse
4168         the method signature
4169
4170         (mono_loader_error_prepare_exception): Since we now use the
4171         loader_error flag internally to stop processing, and obtaining
4172         exceptions that might be thrown will walk this code path the
4173         proper way of going from a MonoLoaderError into a
4174         MonoException was convoluted.   This new routine encapsulates the
4175         process of turning the error into an exception and *clearing* the
4176         error afterwards.
4177         
4178 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4179
4180         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4181         with missing assemblies), and to cope with:
4182
4183                 * Missing fieldref from a non-existing assembly.
4184                 * Missing methodref from a non-existing assembly.
4185
4186         The first batch of work to address *some* of the issues from 76661.
4187         
4188         * object.c (mono_class_create_runtime_vtable): If we fail to
4189         initialize the class raise the exception here. 
4190
4191         * metadata.c (mono_class_get_overrides_full): If any methods fail
4192         to load return the failure to the caller.
4193
4194         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4195         flagging assemblies that failed to load.   
4196
4197         Do not crash if we are unable to load the assembly.
4198
4199         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4200         assemblies. 
4201
4202         * loader.c (mono_loader_set_error_type_load): Change the
4203         convention to always pass unallocated strings, so we make our own
4204         copies (I know our own code had duplicated strings before, but
4205         this keeps the normal conventions).
4206         (method_from_memberref): Call mono_loader_set_error_method_load
4207         for all possible failures of loading the class. 
4208         Remove assert, turn into a loader error.
4209
4210         (mono_loader_error_to_exception): Move this routine from mini
4211         (mini_loader_error_to_exception) there was no need to have that in
4212         mini. 
4213
4214         * class.c (mono_class_from_typeref): If we were not able to load
4215         the assembly with mono_assembly_load_reference, call the
4216         mono_loader_set_error_type_load to register the problem.
4217
4218         (mono_class_setup_fields): If we fail to load the type from
4219         mono_metadata_parse_type_full, call mono_class_set_failure and
4220         break from the loop.
4221
4222         If class->exception_type is set, we do not layout the fields as
4223         that might crash the runtime, and instead return (from breaking
4224         from the previous loop).
4225
4226         (mono_class_setup_vtable): This now returns a boolean indicating
4227         whether the table was properly setup.   The decision is driven by
4228         mono_class_get_overrides_full which might run into non-existing
4229         methods. 
4230         
4231         (mono_class_init): Returns TRUE on success or FALSE if there was a
4232         problem in loading the type (incorrect assemblies, missing
4233         assemblies, methods, etc).
4234
4235         When we call mono_class_setup_fields we also check for a potential
4236         error inside this call (either a class exception or a general
4237         loader exception).
4238
4239         (mono_class_create_from_typedef): If the parent fails to load
4240         (calling mono_class_get_full) return NULL.
4241         
4242         ** Important **
4243
4244         calls to mono_metadata_parse_type_full should be checked
4245         everywhere and set the mono_class_set_failure
4246         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4247
4248         The current patch checks the places where my manually constructed
4249         tests show the errors are showing up, but we should do it
4250         everywhere. 
4251
4252         ** Important2 **
4253
4254         mono_class_init return values should be tested everywhere, like
4255         the previous case this is something that we should audit
4256         everywhere and not only on the cases exposed by the tests I
4257         created. 
4258
4259 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4260
4261         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4262         boolean parameter and instead pass the information on `options'
4263         parameter (FileOptions).
4264
4265         * icall.c: Register the new signature for MonoIO.Open.
4266
4267         * debug-helpers.c (dis_one): Trying to understand how coverity
4268         works.  Fix Run 5, item 78.
4269
4270 2006-04-26  Dick Porter  <dick@ximian.com>
4271
4272         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4273         dereference.
4274
4275 2006-04-25  Martin Baulig  <martin@ximian.com>
4276
4277         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4278
4279         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4280         debugger_thread_created().
4281         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4282         special way.
4283         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4284         (mono_debugger_finalize_threads): New function; undo the effects
4285         of mono_debugger_init_threads().
4286         (mono_debugger_create_all_threads): Removed.
4287
4288 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4289
4290         * image.c (mono_image_close): Tidy up trace messages.
4291
4292         * assembly.c (mono_assembly_close): Ditto.
4293
4294         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4295         no longer references an already freed assembly. Fixes #78168.
4296
4297 2006-04-21  Dick Porter  <dick@ximian.com>
4298
4299         * threads.c (mono_thread_detach): Fix reference counting when
4300         detaching threads.
4301
4302 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4303
4304         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4305         #78155.
4306
4307 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4308
4309         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4310         (mono_type_to_stind): Ditto.
4311
4312         * marshal.c: Use the new helper functions to simplify code.
4313
4314         * image.c (mono_image_close): Add some code for help debug assembly unloading
4315         problems.
4316
4317         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4318         image mempool.
4319
4320         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4321         assembly was already loaded in another appdomain. Fixes #78083.
4322
4323 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4324
4325         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4326         referenced assemblies.
4327         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4328
4329         * domain.c (mono_domain_free): Add a trace message.
4330
4331         * appdomain.c (add_assemblies_to_domain): Ditto.        
4332
4333         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4334         field.  
4335
4336 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4337
4338         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4339
4340 2006-04-12  Martin Baulig  <martin@ximian.com>
4341
4342         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4343         `USE_INCLUDED_LIBGC'.   
4344
4345 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4346
4347         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4348         the patch contains ../ and a small directory name later. Hopefully fixes
4349         #78035.
4350
4351 2006-04-10  Martin Baulig  <martin@ximian.com>
4352
4353         Clean up the debugger's thread-handling code.
4354
4355         The debugger's thread-handling code has been moved from
4356         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4357         over the `threads' hash, keep track of exiting threads and also
4358         use proper locking.
4359
4360         We can now debug XSP and XSP based applications with the debugger.
4361
4362         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4363
4364         * threads.h
4365         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4366         (mono_install_thread_callbacks): Likewise.      
4367
4368         * threads.c (mono_thread_callbacks): Removed.
4369         (debugger_thread_created, debugger_thread_exited): New static functions.
4370         (start_wrapper): Call debugger_thread_created().
4371         (thread_cleanup): Call debugger_thread_exited().
4372         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4373         (mono_debugger_init_threads): New public function.
4374         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4375         iterate directly over the `threads' hash and also use proper locking.
4376
4377         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4378
4379         * mono-debug-debugger.h
4380         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4381
4382 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4383
4384         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4385         argument type=array. Fixes #78057.
4386
4387 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4388
4389         * culture-info-table.h : regenerated. Fixed bug #69652.
4390
4391 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4392
4393         * loader.c metadata.c: Reapply a variant r59116.
4394         
4395         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4396
4397         * class.c (mono_class_setup_interface_offsets): New internal function.
4398
4399         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4400         interfaces too. Fixes #77398.
4401
4402         * reflection.c (encode_cattr_value): Add support for 
4403         parameter type=object, argument type=array.
4404         (load_cattr_value): Ditto. Fixes #77916.
4405
4406         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4407         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4408
4409         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4410         a byval char array and CharSet is Ansi.
4411
4412         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4413
4414 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4415
4416         * metadata.c: Add some locking comments.
4417         
4418         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4419         mempool.
4420         (mono_metadata_free_method_signature): Don't free the signature itself.
4421
4422         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4423
4424         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4425         reference the same MonoImage.
4426         (mono_assembly_load_from_full): Add an assert.
4427
4428 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4429
4430         * image.c (mono_image_close): Don't put the image we are about to free into the
4431         loaded_images_guid_hash.
4432
4433         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4434         to reduce code duplication.
4435
4436         * marshal.c: Register the native functions called by this module as icalls, to
4437         somewhat centralize the creation of MonoMethodSignature's.
4438
4439         * loader.c (mono_method_signature): Add a cache for method signatures.
4440
4441         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4442         the parameter attributes of a method.
4443         (mono_metadata_parse_method_signature_full): Refactored the computation of
4444         parameter attributes into a separate function. Also avoid one allocation in
4445         most cases.
4446
4447         * assembly.c (mono_assembly_close): Ditto.
4448
4449         * image.c (mono_image_close): Log trace messages with INFO level.
4450
4451         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4452
4453         * image.c reflection.c: Correct reference counting of image modules.
4454         
4455         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4456         of this function from the image mempool.
4457         
4458         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4459         to allow more cached types to be used.
4460
4461         * mono-debug.c (mono_debug_add_method): Appled patch from
4462         David S. Miller  <davem@sunset.davemloft.net>: Access 
4463         minfo->lexical_blocks[] entry elements using read32().
4464
4465 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4466
4467         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4468         methods as it is allocated from the mempool.
4469
4470         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4471         image mempool.
4472
4473         * metadata-internals.h: Add comments describing the reference counting scheme
4474         used for MonoImage and MonoAssembly.
4475
4476         * image.c assembly.c reflection.c: Rework reference counting of images and 
4477         assemblies so they are freed when the runtime is shut down. Free some 
4478         additional memory structures when an image is unloaded.
4479         
4480 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4481
4482         * class.c loader.c reflection.c: Allocate more data structures in
4483         the image mempool.
4484
4485 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4486
4487         * icall.c
4488         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4489         build on pre glib 2.4 systems.
4490
4491 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4492
4493         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4494
4495         * icall.c: Fix some warnings.
4496
4497 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4498
4499         * culture-info-table.h : regenerated.
4500
4501 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4502
4503         * threads.c, object-internals.h, verify.c: changed the culture caching
4504         code to use a normal MonoArray for storage so the GC can keep track of
4505         them easily. Fixed bits of the cache logic, too and simplified the
4506         code.
4507
4508 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4509
4510         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4511         thread for non-Boehm GCs.
4512
4513 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4514
4515         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4516         needed to keep track of the data for static fields.
4517
4518 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4519
4520         Fix #75172
4521         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4522         for interface classes.  Use 'num_methods' instead.
4523         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4524         before using '->vtable_size' field.
4525
4526 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4527
4528         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4529         doesn't contain managed pointers, so use a normal hashtable.
4530
4531 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4532
4533         * reflection.c, class-internals.h, domain.c: fixed handling of types
4534         used as values for objects in custom attributes (bug #77915):
4535
4536 2006-03-24  Martin Baulig  <martin@ximian.com>
4537
4538         * class.c (mono_class_setup_fields): Added support for generic
4539         instances; fixes #77580.
4540
4541 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4542
4543         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4544
4545 2006-03-24  Dick Porter  <dick@ximian.com>
4546
4547         * file-io.c (get_file_attributes): More stat macro breakage.
4548         Fixes bug 77759.
4549
4550 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4551
4552         * profiler.c: added the file=filename option in the default profiler
4553         to output the profile data to filename.
4554
4555 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4556
4557         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4558         bug #77877.
4559
4560 2006-03-22  Martin Baulig  <martin@ximian.com>
4561
4562         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4563         allocated `MonoClassField *' in `fb->handle'.
4564
4565 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4566
4567         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4568         allocate interface ID to save memory and allow better ID reuse on
4569         appdomain unload. setup_generic_vtable () removal from Martin.
4570
4571 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4572
4573         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4574         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4575         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4576         write barriers for reference stores with managed objects accessed with
4577         C structures in the runtime and in embedding programs.
4578
4579 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4580
4581         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4582         'interface_id' and 'max_interface_id' fields of MonoClasses
4583         representing open generic types.
4584
4585 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4586
4587         * object.h, object.c, icall.c: added functions to deal with
4588         storing valuetypes that contain references in managed objects.
4589         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4590         fixes and comments around uses of mono_array_addr ().
4591
4592 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4593
4594         * object.h, icall.c, monitor.c: object.GetHashCode ()
4595         implementation that supports the moving garbage collector.
4596
4597 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4598
4599         * icall.c, threads-types.h, threads.c: implemented finalizer for
4600         LocalDataStoreSlot.
4601
4602 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4603
4604         * metadata.c (mono_type_size): Add a fixme.
4605         (mono_type_stack_size): Ditto.
4606
4607         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4608         'type_forwarders' field.
4609
4610         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4611         attribute from net 2.0.
4612
4613         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4614         from class.c.
4615
4616         * class.c (mono_class_setup_fields): Fix a warning.
4617         
4618         * class.c (mono_class_from_name): Add support for assemblyref entries
4619         in the EXPORTEDTYPE table.
4620
4621         * reflection.c: Add support for handling type forwarders under net 2.0.
4622
4623         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4624         
4625 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4626
4627         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4628         overwriting entries in ModuleBuild->types, also clean up the code
4629         a little. Fixes #77774.
4630
4631 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4632
4633         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4634         load friend assembly info when present.
4635
4636 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4637
4638         Fix crasher on gtest-158.cs.
4639         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4640         the return value if the MonoClass we want is yet in an
4641         inconsistent state.
4642         * class.c (mono_class_create_from_typedef): Add an comment
4643         explaining an order dependency between mono_class_setup_parent and
4644         mono_class_setup_mono_type.
4645
4646 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4647
4648         * class.c: documentation updates and events bug fix.
4649
4650 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4651
4652         * class.c: some cleanup, locking fixes.
4653
4654 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4655
4656         * class.c: fix the generics code to setup nested
4657         type info to the instantiated type (bug #77770).
4658
4659 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4660
4661         * marshal.c: fixed a few type correctness issues.
4662
4663 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4664
4665         * loader.c: the Set/Get/Addrtess array methods should be public.
4666
4667 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4668
4669         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4670         
4671         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4672         info->wrapper.
4673
4674 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4675
4676         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4677
4678         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4679
4680         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4681         (mono_mempool_alloc0): Ditto.
4682
4683 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4684
4685         * socket-io.c:
4686         (create_object_from_sockaddr): it was allocating 4 extra bytes
4687         for the AF_UNIX data. Fixes bug #77747.
4688
4689 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4690
4691         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4692
4693 2006-03-09  Dick Porter  <dick@ximian.com>
4694
4695         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4696         Fixes bug 76966 again.
4697
4698 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4699
4700         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4701         names from r57532
4702         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4703
4704 2006-03-07  Martin Baulig  <martin@ximian.com>
4705
4706         * object.c
4707         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4708
4709 2006-03-07  Martin Baulig  <martin@ximian.com>
4710
4711         * class.c
4712         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4713         regression introduced in r56970; see gtest-252.cs.
4714
4715         * loader.c (mono_get_method_constrained): Correctly handle generic
4716         methods; see gtest-253.cs.
4717
4718 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4719
4720         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4721
4722 2006-03-04  Martin Baulig  <martin@ximian.com>
4723
4724         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4725         compute the parent type at runtime, just like we're already doing
4726         it for interfaces.
4727
4728         * reflection.c
4729         (mono_reflection_bind_generic_parameters): Don't compute the
4730         parent type anymore.
4731
4732         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4733
4734 2006-03-04  Martin Baulig  <martin@ximian.com>
4735
4736         * mono-debug-debugger.h
4737         (mono_debugger_create_notification_function): Allocate memory at
4738         runtime and return a pointer to it.
4739
4740 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4741
4742         * assembly.c: Fix windows build.
4743         
4744         * assembly.c: Fix build.
4745
4746         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4747
4748         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4749         
4750 2006-03-03  Dick Porter  <dick@ximian.com>
4751
4752         * process.c
4753         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4754         Check parameters before dereferencing them.  Fixes Aaron's part of
4755         bug 77393.
4756
4757 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4758
4759         Fix performance regression.
4760         * loader.c (find_method_in_class): Add 'from_class' argument.
4761         Rename 'klass' argument to 'in_class'.  The signature is compared
4762         against the method in 'in_class', and the corresponding method is
4763         returned from 'from_class'.
4764         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4765         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4766         type definition and generic instantiation in parallel.
4767         (mono_get_method_constrained): Update to changes.
4768
4769 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4770
4771         * threads.c: make sure the domain is correct, too when doing
4772         mono_thread_attach ().
4773
4774 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4775
4776         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4777         windows. Fixes #77683.
4778
4779 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4780
4781         * object.h, *: introduced specific way to set elements of an array
4782         of references to be used as write barrier. Still need to audit the
4783         uses of mono_array_addr.
4784
4785 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4786
4787         * object-internals.h: New field to cache the assmebly name, patch
4788         from Tambet Ingo (tambet@ximian.com)
4789
4790 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4791
4792         * decimal.h, class-internals.h, metadata-internals.h,
4793         file-io.h: mark a few function declarations as internal, to
4794         reduce the number of PLT entries.
4795
4796 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4797
4798         * file-io.c: fix typo in warning message.
4799
4800 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4801
4802         * loader.c: on unix, lookup the "*A" version of a function
4803         if charset is auto as a second option before failing.
4804
4805 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4806
4807         * class.h (mono_class_inflate_generic_method): Revert to two
4808         argument version.
4809         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4810         (mono_class_inflate_generic_method_full): Add.
4811         * class.c (mono_class_inflate_generic_method_full): Rename from
4812         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4813         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4814         * loader.c, reflection.c: Update to changes.
4815
4816 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4817
4818         * icall.c: const fixes and small improvements.
4819
4820 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4821
4822         * threadpool.c: for asynchronous connect(), enable the same workaround
4823         for BSD 6 as for the Mac. Fixes bug #77637.
4824
4825 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4826
4827         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4828         formatted classes. Fixes #77524.
4829
4830 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4831
4832         * class.c (inflate_generic_type): Add a couple more
4833         micro-optimizations.
4834         (inflate_generic_context): Don't use the 'gmethod' from
4835         'inflate_with'.
4836         (mono_class_inflate_generic_method): If the method has generic
4837         parameters, but the passed-in context doesn't have a 'gmethod',
4838         create one.  Use the possibly simplified generic instantiation
4839         from the declaring class instead of the one passed in.
4840
4841 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4842
4843         Make generic method signature and method header handling lazy.
4844         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4845         (inflate_generic_header): Likewise.
4846         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4847         parameter to avoid inflating types.
4848         (mono_get_inflated_method): Empty out.
4849         * class.h (mono_class_inflate_generic_method): Update to changes.
4850         * loader.c (mono_get_method_from_token): Don't parse signature for
4851         generic methods, nor methods of generic classes.
4852         (mono_method_signature): Rename from 'mono_method_signature'.
4853         Inflate signature on demand.
4854         (mono_method_get_header): Inflate method header on demand.
4855         * reflection.c: Update to changes.
4856
4857 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4858
4859         * metadata.c (mono_metadata_inflate_generic_inst): If the
4860         instantiation is closed, don't bother expanding it in the new
4861         context.
4862         * class.c (inflate_generic_class): If the generic instantiation
4863         doesn't change after inflation, return the argument itself.
4864         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4865         Add bounds checks.
4866         (inflate_generic_context): If neither the generic class nor the
4867         generic method instantiations change, return the original context.
4868         * reflection.c (mono_method_get_object): Do
4869         'mono_get_inflated_method' before accessing the ->klass field.
4870         (inflate_mono_method): Don't create a MonoGenericMethod unless
4871         necessary.
4872         (inflate_method): Don't pass a constructed type as the declaring
4873         type of a methodbuilder.
4874
4875 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4876
4877         * object.c: fix memory overwrite.
4878
4879 2006-02-22  Dick Porter  <dick@ximian.com>
4880
4881         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4882         it doesn't work any more.
4883         (mono_threads_request_thread_dump): Fix unused variable warnings.
4884
4885 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4886
4887         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4888         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4889         the public header file.
4890
4891 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4892
4893         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4894
4895 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4896
4897         * class-internals.h, object.c: reduce the size of MonoVTable
4898         and store the interface_offsets array at negative offsets.
4899
4900 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4901
4902         * metadata.c: tweak table descriptors data structures to reduce
4903         size and runtime relocations.
4904
4905 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4906
4907         * marshal.c: fix some types and opcodes to be type-safe
4908         in marshaling wrappers.
4909
4910 2006-02-21  Ankit Jain  <jankit@novell.com>
4911
4912         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4913
4914 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4915
4916         * metadata.c (get_constraints): Relax debugging checks for monodis.
4917
4918 2006-02-21  Ankit Jain  <jankit@novell.com>
4919
4920         * metadata.c (mono_metadata_load_generic_params): Move the code
4921         checking for ambiguous generic params from here to mono/dis/get.c
4922         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4923
4924 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4925
4926         Fix assertion triggered when compiling nemerle.
4927         * class.c (mono_get_shared_generic_inst): Rename from
4928         get_shared_inst and make non-static.
4929         * loader.c (mono_get_shared_generic_method): New.  Used to create
4930         the MonoGenericContext-equivalent of a MonoGenericContainer.
4931         (mono_get_method_from_token): Initialize the 'context' field of
4932         the created MonoGenericContainer.
4933         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4934         * metadata.c (get_constraints): Add sanity check.
4935         * class-internals.h: Add new internal methods.
4936
4937         * reflection.c (verify_safe_for_managed_space): New sanity check.
4938         Currently checks that owner-less generic parameters aren't allowed
4939         in managed space.
4940         (mono_type_get_object): Use it.
4941         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4942         that are now in mono_type_get_object.
4943         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4944
4945 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4946
4947         * metadata.c (mono_type_create_from_typespec): Rename from
4948         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4949         argument and caching of types in the generic container.
4950         (unwrap_arrays, find_generic_param): Remove.
4951         * metadata-internals.h: Update.
4952         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4953
4954 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4955
4956         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4957
4958         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4959         return values. Fixes #77581.
4960
4961         * class.c (mono_fnptr_class_get): Switch name and name_space.
4962
4963         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4964         classes and add support for [In, Out] attributes.
4965         (mono_marshal_free_asany): Ditto. Fixes #77524.
4966
4967 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4968
4969         * class.c (mono_class_from_generic_parameter): Make more robust to
4970         incomplete MonoGenericContainers from monodis.
4971
4972 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4973
4974         * class-internals.h: added some more exception types.
4975         * class.c, metadata.c: added a few checks to handle missing
4976         types.
4977
4978 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4979
4980         Use owner-less generic-params some more.
4981         * class.c (my_mono_class_from_generic_parameter): Remove.
4982         (mono_class_from_generic_parameter): Handle null image,
4983         param->name and param->owner.
4984         (mono_class_from_mono_type): Update.
4985         (mono_class_create_from_typespec): Remove 'container' parameter.
4986         If that parameter is non-null, the result is always inflated by
4987         'mono_class_get_full' anyway.
4988         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4989         parameter.
4990         (mono_class_get_full): Update.
4991
4992         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4993         instance is not open, don't bother inflating.
4994         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4995         parse metadata for inflated classes.
4996         (_mono_class_get): Change GenericContext* parameter to
4997         GenericContainer*.
4998         (mono_class_create_from_typespec): Likewise.  Simplify, and
4999         implement trivially.  All the cases are handled in
5000         mono_class_from_mono_type.  Don't inflate returned class.
5001         (mono_class_get_full): Delegate GENERICINST optimization to
5002         inflate_generic_type.
5003         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
5004
5005 2006-02-16  Dick Porter  <dick@ximian.com>
5006
5007         * socket-io.c (create_object_from_sockaddr): Fix typo.
5008         (create_sockaddr_from_object): Check array lengths before
5009         potentially accessing items off the end.
5010         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
5011         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
5012         (ves_icall_System_Net_Sockets_Socket_Send_internal)
5013         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
5014         length checks to avoid wraparound overflows.
5015         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
5016         contents of the array of sockets
5017         (hostent_to_IPHostEntry2)
5018         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
5019         Check return value of inet_ntop ().
5020         (addrinfo_to_IPHostEntry): Fix typo
5021
5022 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5023
5024         Type metadata parsing doesn't use generic-instantiation information.
5025         * metadata.c (mono_metadata_parse_array_full): Change
5026         MonoGenericContext* parameter to MonoGenericContainer*.
5027         (mono_metadata_parse_type_full): Likewise.
5028         (mono_type_create_from_typespec_full): Likewise.
5029         (mono_metadata_parse_mh_full): Likewise.
5030         (mono_metadata_parse_generic_inst): Likewise.
5031         (do_mono_metadata_parse_generic_class): Likewise.
5032         (do_mono_metadata_parse_type): Likewise.
5033         * metadata-internals.h: Update to changes.
5034         * class.c (mono_class_find_enum_basetype): Likewise.
5035         (mono_class_setup_fields): Likewise.
5036         (mono_class_create_from_typespec): Likewise.
5037         * loader.c (method_from_methodspec): Likewise.
5038         (mono_get_method_from_token): Likewise.
5039         (mono_method_get_header): Likewise.
5040
5041 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5042
5043         * marshal.c: handle additional GENERICINST case (patch from
5044         Thong Nguyen <tum@veridicus.com>).
5045         Fix a few cases where LDIND_I/STIND_I was used for references.
5046
5047 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5048
5049         * reflection.c (mono_reflection_get_token): Remove unused variable.
5050
5051 2006-02-16  Martin Baulig  <martin@ximian.com>
5052
5053         * reflection.c (mono_reflection_get_token): Add support for fields
5054         in instantiated generic types.
5055
5056         * icall.c
5057         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
5058
5059 2006-02-15  Martin Baulig  <martin@ximian.com>
5060
5061         * icall.c
5062         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
5063         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
5064         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
5065         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
5066
5067 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5068
5069         * class.c, metadata.c, metadata.h, object.c, icall.c,
5070         marshal.c: changed mono_type_get_underlying_type () to do
5071         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
5072         Fixed handling of instantiated generic valuetypes (bug #75479).
5073
5074 2006-02-15  Raja R Harinath  <rharinath@novell.com>
5075
5076         * metadata.c (mono_metadata_decode_signed_value): Simplify.
5077         Delegate to mono_metadata_decode_value, and work on the returned value.
5078
5079         * icall.c (ves_icall_MonoType_GetGenericArguments):
5080         Add consistency check here too.
5081         
5082 2006-02-15  Ankit Jain  <jankit@novell.com>
5083
5084         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
5085         char/short etc.
5086
5087 2006-02-15  Ankit Jain  <jankit@novell.com>
5088
5089         * metadata.c (mono_metadata_decode_signed_value): New function to decode
5090         signed values, used only for representing lower bounds of arrays.
5091         (mono_metadata_parse_array_full): Use new
5092         mono_metadata_decode_signed_value to decode lower bounds.
5093
5094 2006-02-14  Martin Baulig  <martin@ximian.com>
5095
5096         * reflection.c
5097         (mono_reflection_get_token): Support "MonoGenericMethod" and
5098         "MonoGenericCMethod" and allow generic instances / methods.
5099
5100 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5103         to obtain the terminal size using an ioctl.
5104
5105         * object.c (mono_nullable_init): Revert this as nullable reference
5106         types are not valid.
5107         (mono_nullable_box): Ditto.
5108
5109 2006-02-09  Dick Porter  <dick@ximian.com>
5110
5111         * threads.c (mono_thread_detach): Drop a reference to the thread
5112         we're detaching.
5113
5114 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5115
5116         * object.c (mono_nullable_init): Handle nullable reference types.
5117         (mono_nullable_box): Ditto. Fixes #77446.
5118
5119 2006-02-07  Martin Baulig  <martin@ximian.com>
5120
5121         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5122
5123 2006-02-07  Ankit Jain  <jankit@novell.com>
5124
5125         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5126         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5127         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5128         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5129         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5130         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5131
5132 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5133
5134         * class.c (mono_class_create_generic): Set type_token as well.
5135
5136         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5137         compatible with MS.
5138
5139 2006-02-02  Martin Baulig  <martin@ximian.com>
5140
5141         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5142         has never been used so far.
5143
5144 2006-02-02  Martin Baulig  <martin@ximian.com>
5145
5146         * mono-debug-debugger.h: Changed comment at the top of this file;
5147         the header is not installed, but it's safe to #include it from
5148         within the JIT.
5149
5150         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5151         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5152
5153 2006-02-02  Martin Baulig  <martin@ximian.com>
5154
5155         * mono-debug.h
5156         (MonoSymbolTable): Removed the `metadata_info' field.
5157
5158         * mono-debug.c
5159         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5160
5161         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5162         (mono_debugger_add_builtin_types): Removed.
5163         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5164         (mono_debugger_create_notification_function): We now operate on a
5165         pre-allocated area; take a `gpointer' and return `void'.
5166
5167         * mono-debug-debugger.c
5168         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5169         (mono_debugger_add_builtin_types): Removed.
5170
5171 2006-02-02  Martin Baulig  <martin@ximian.com>
5172
5173         * threads.c (mono_debugger_create_all_threads): New public method.
5174
5175 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5176
5177         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5178         breaks on several platforms.
5179
5180 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5181
5182         * assembly.c: the VS.NET build doesn't supply default values for
5183         MONO_ASSEMBLIES and MONO_CFG_DIR.
5184
5185 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5186
5187         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5188         helper function.
5189
5190         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5191
5192         * loader.c (method_from_memberref): Fix a warning.
5193
5194         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5195
5196         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5197         with explicit layout. Fixes #77433.
5198
5199 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5200
5201         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5202         max_interface_id is initialized before using it. Fixes #77398.
5203         (ves_icall_Type_GetInterfaces): Ditto.
5204
5205 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5206
5207         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5208         allocate memory for parameter attributes when parsing memberref
5209         signatures.
5210         * loader.c (mono_loader_set_error_method_load): Don't warn.
5211         (method_from_memberref): Ensure MissingMethodException gets thrown
5212         if method is not found.  Make warning more informative.
5213
5214 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5215
5216         Fix #77397
5217         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5218         return true if is byref.
5219         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5220         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5221         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5222
5223 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5224
5225         Fix tests/find-method.2.il
5226         * loader.c (find_method, find_method_in_class): Remove is_inflated
5227         argument.  Revert 2006-01-18 change.
5228         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5229         is generic, search for method in its generic definition.
5230         * class.c (mono_class_setup_vtable_general): Print generic
5231         arguments of generic types in debugging printf.
5232
5233 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5234
5235         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5236
5237         * threads.c (mono_threads_request_thread_dump): New helper function.
5238
5239 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5240
5241         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5242
5243 2006-01-25  Ankit Jain  <jankit@novell.com>
5244
5245         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5246         move definition to ..
5247         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5248         
5249 2006-01-25  Ankit Jain  <jankit@novell.com>
5250             Raja R Harinath  <rharinath@novell.com>
5251
5252         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5253         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5254         as necessary.
5255
5256 2006-01-25  Martin Baulig  <martin@ximian.com>
5257
5258         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5259         `MonoDebuggerThread' into debug-debugger.c.
5260
5261 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5262
5263         * profiler.c: fix printing of data.
5264
5265 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5266
5267         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5268           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5269
5270 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5271
5272         * object.c: fix deadlock related to string interning.
5273
5274 2006-01-23  Martin Baulig  <martin@ximian.com>
5275
5276         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5277
5278         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5279
5280 2006-01-23  Martin Baulig  <martin@ximian.com>
5281
5282         * mono-debug.h: Moved the prototypes of some functions which are
5283         used by the JIT here from mono-debug-debugger.h.
5284
5285 2006-01-21  Martin Baulig  <martin@ximian.com>
5286
5287         * Makefile.am: Don't install mono-debug-debugger.h.
5288
5289 2006-01-21  Martin Baulig  <martin@ximian.com>
5290
5291         * mono-debug-debugger.h: Enforce the private status of this header
5292         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5293         Moved some stuff from mono-debugger-jit-wrapper.h here.
5294
5295 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5296
5297         * class.c (mono_class_from_typeref): Add a sanity test to help
5298         catch lack of assembly load/search hooks.
5299
5300 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5301
5302         * marshal.c (emit_struct_conv): Relax the fields with same offset
5303         check even more. Fixes #77230.
5304
5305 2006-01-18  Martin Baulig  <martin@ximian.com>
5306
5307         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5308         argument; if false, we compare the uninstantiated signatures.
5309         (method_from_memberref): Compare the uninstantiated signatures;
5310         fixes #76417.
5311
5312 2006-01-18  Robert Jordan  <robertj@gmx.net>
5313
5314         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5315         Clear the weak link. Fixes bug #77170.
5316
5317         * gc.c (mono_gchandle_free):
5318         Reflect *-gc.c changes (tiny optimization).
5319
5320 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5321
5322         * metadata.c (mono_metadata_signature_dup): Applied patch from
5323         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5324         Fixes #77288.
5325
5326 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5327
5328         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5329         marshalling from native to managed code. Fixes #77230.
5330
5331 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5332
5333         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5334         connect. Fixes bug #77020.
5335
5336 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5337
5338         * class.c: fixed id assignement for nested interfaces (bug #77275).
5339         Added also better info for --print-vtable debugging.
5340
5341 2006-01-12  Martin Baulig  <martin@ximian.com>
5342
5343         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5344         interfaces on-the-fly; fixes #76625.
5345
5346         * class-internals.h
5347         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5348         don't need that anymore.
5349
5350 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5351
5352         * socket-io.c
5353         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5354         To avoid initing the nested_classes when not needed I turned the
5355         PeerCredData as a toplevel internal class, as it has to be shared
5356         anyways. 
5357
5358         Fixes the CASA issue.
5359
5360 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5361
5362         * domain.c: Accessors for MonoJitInfo
5363
5364         * profiler-private.h: Add jitinfo to the end jit hook
5365
5366         * profiler.[ch]: Define new hooks, called after jitting which give
5367         the MonoJitInfo that was compiled
5368
5369 2006-01-10  Martin Baulig  <martin@ximian.com>
5370
5371         * class.c (mono_class_setup_events): Add support for generic
5372         classes; fixes #76440.
5373
5374 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5375
5376         Fix #77160.
5377         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5378         on passed-in method.
5379
5380 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5381
5382         * object.c (mono_runtime_invoke_array): Add Nullable support.
5383
5384         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5385
5386 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5387
5388         * file-io.c: Don't consider sockets as directory and avoid an endless
5389         loop. Fix bug #76966.
5390
5391 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5392
5393         * object.c (mono_nullable_init): New helper function.
5394         (mono_nullable_box): Ditto.
5395
5396         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5397
5398         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5399
5400         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5401         
5402 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5403
5404         * class.c (mono_class_is_assignable_from): Make T assignable to 
5405         Nullable<T>.
5406
5407 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5408
5409         * appdomain.c: Bump corlib version to 46.
5410         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5411         serialization purpose) and changed ves_icall_System_Reflection_
5412         Assembly_get_code_base signature to accept a boolean (to escape, or 
5413         not, the assembly code base).
5414
5415 2005-12-23  Dick Porter  <dick@ximian.com>
5416
5417         * icall.c: 
5418         * threads-types.h: 
5419         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5420         CreateEvent icall now returns "created" boolean parameter.
5421
5422 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5423
5424         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5425         #76967.
5426
5427         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5428         when attr_klass is an interface. Fixes #77045.
5429
5430 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5431
5432         * marshal.c (emit_struct_conv): Fix previous patch.
5433         
5434         * marshal.c (emit_struct_conv): Add a check for fields with the same
5435         offset.
5436
5437 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5438
5439         Fix regression in Mono.C5.
5440         * class.c (mono_class_create_generic): If 'klass' is an interface
5441         set up the interface offsets.
5442         (mono_class_is_assignable_from): Don't throw away generic arguments.
5443
5444 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5445
5446         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5447         type parameters.
5448
5449 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5450
5451         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5452         dead store.
5453         (do_mono_metadata_parse_generic_class): Don't pass the current
5454         generic context when parsing the type being instantiated: it
5455         cannot use it, anyway.
5456
5457         * loader.c (method_from_memberref): Don't inflate a signature if
5458         it doesn't contain any type parameters.
5459
5460 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5461
5462         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5463
5464 2005-12-14  Martin Baulig  <martin@ximian.com>
5465
5466         * class.c
5467         (mono_type_get_name_recurse): Don't return null for type
5468         parameters and open generic classes.
5469         (mono_class_setup_methods): Don't exclude generic instances.
5470         (mono_get_unique_iid): Use different IDs for different
5471         instantiations of the same generic type.
5472         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5473         open generic instances; create a normal vtable for closed generic
5474         instances.
5475         (mono_class_setup_vtable_general): We're now also called for
5476         closed generic instances.
5477
5478         * reflection.c
5479         (mono_reflection_bind_generic_parameters): Correctly use
5480         mono_metadata_lookup_generic_inst() everywhere.
5481
5482 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5483
5484         * object.c (mono_class_create_runtime_vtable): Call 
5485         mono_class_setup_vtable ().
5486
5487         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5488         function.
5489         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5490         #76959.
5491
5492         * loader.c (mono_loader_set_error_type_load): Print the type load
5493         warnings to the console so they are more visible to the user.
5494         (mono_loader_set_error_method_load): Ditto.
5495
5496         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5497         is still broken.
5498         
5499         * reflection.c (ensure_runtime_vtable): Fix build.
5500
5501         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5502         doesn't work in all cases.
5503
5504 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5505
5506         * object.c (mono_array_new_full): Treat a single dimensional array
5507         with 0 lower bounds as an szarray. Fixes #76973.
5508
5509         * reflection.c (custom_attr_visible): Really fix this.
5510
5511 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5512
5513         * reflection.c (custom_attr_visible): Allow nested public attributes
5514         as well.
5515
5516         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5517         interface check.
5518
5519 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5520
5521         * class.c (set_generic_param_owner): Delete.
5522         (mono_class_create_from_typedef): Don't set ->owner field of
5523         generic parameters to "param containers" of enclosing classes.
5524         * reflection.c (mono_reflection_initialize_generic_parameter):
5525         Likewise.
5526
5527 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5528
5529         * reflection.c (custom_attr_visible): Fix build.
5530
5531 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5532
5533         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5534         private attributes.
5535         
5536         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5537         handling of null parameter defaults.
5538
5539 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5540
5541         * class.c (mono_class_from_generic_parameter): Don't set
5542         klass->generic_container.
5543         (my_mono_class_from_generic_parameter): Likewise.
5544
5545 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5546
5547         * reflection.c (load_public_key): Fix a warning.
5548         (method_encode_code): Fix unaligned accesses.
5549
5550 2005-12-07  Martin Baulig  <martin@ximian.com>
5551
5552         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5553
5554         * reflection.c
5555         (write_generic_param_entry): Encode our custom attrs.
5556
5557         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5558
5559 2005-12-07  Martin Baulig  <martin@ximian.com>
5560
5561         * reflection.c (encode_new_constraint): Removed; we don't use the
5562         `NewConstraintAttribute' anymore.
5563
5564 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5565
5566         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5567         not fire a TypeResolve event when Assembly.GetType () is called.
5568
5569 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5570
5571         Beginning of support for nullable types in the runtime. Parts of
5572         this patch are from Martin.
5573
5574         * appdomain.c (MONO_CORLIB_VERSION): Bump
5575
5576         * domain.c (mono_init_internal): get the nullable type
5577
5578         * class.c (mono_class_is_nullable): New method
5579         (mono_class_get_nullable_param): New mehod
5580         (mono_class_create_generic): In types T? set cast_class to T
5581
5582         * class-internals.h (MonoDefaults): new nullable default class
5583         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5584         new methods.
5585
5586 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5587
5588         * metadata.c (select_container): New.  Refactor code to select the
5589         appropriate GenericContainer given the type of generic parameter
5590         we are looking for.
5591         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5592         not a MonoGenericContext.  Use select_container.  Update parameters.
5593         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5594         and MONO_TYPE_MVAR.
5595         (unwrap_arrays): Remove duplicate tests.
5596         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5597         generic instantiated class to find any arguments that are generic
5598         parameters.
5599         (mono_type_create_from_typespec_full): Use find_generic_param to
5600         avoid evicting some generic instantiations from the typespec
5601         cache.
5602
5603 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5604
5605         * reflection.c: fixed writing of doubles on ARM FPA.
5606
5607 2005-12-02  Robert Jordan  <robertj@gmx.net>
5608
5609         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5610
5611 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5612
5613         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5614         least on SUSE 10 they are not the same (on debian, they are just the
5615         same thing).
5616
5617 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5618
5619         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5620         DeclaringType for VARs and MVARs.
5621         * class.c (set_generic_param_owner): Fix initialization of owner
5622         fields.
5623
5624 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5625
5626         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5627
5628 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5629
5630         * threadpool.c: workaround for a bug that shows up on the Mac:
5631         select()+connect() on a blocking socket is not like it should
5632         be, so we proceed to connect() in that case, wasting the I/O
5633         threadpool thread until connect succeedes. Fixes bug #75436.
5634
5635 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5636
5637         * threadpool.c: fix typo when setting file descriptor states.
5638
5639 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5640
5641         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5642         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5643         create a temporary signature container.
5644         (mono_metadata_parse_generic_param): Update to changes.
5645         (mono_type_create_from_typespec_full): Update to changes.
5646         * loader.c (method_from_memberref): Don't use a
5647         MonoGenericContainer while parsing a memberref signature.
5648         (method_from_methodspec): Remove dead-store of the 'container'
5649         variable.  It's overwritten before use.
5650
5651         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5652         checks tighter.
5653         (mono_metadata_parse_generic_param): Likewise.
5654         * loader.c (find_method_in_class): Does not need a
5655         MonoGenericContainer.  Use 'mono_method_signature' rather than
5656         'mono_method_signature_full'.
5657         (find_method, mono_get_method_constrained, method_from_memberref):
5658         Update to changes.
5659
5660         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5661         owner-less generic-parameters are never evicted from the typespec
5662         cache.
5663
5664         * loader.c (method_from_memberref): Don't use the current context
5665         when parsing signatures.
5666         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5667
5668         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5669         side-effects in g_assert.
5670         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5671         that we don't potentially lose information.
5672
5673 2005-11-26  Dick Porter  <dick@ximian.com>
5674
5675         * icall.c:
5676         * threads.c: icalls to implement basic (ie, not named)
5677         System.Threading.Semaphore.
5678
5679 2005-11-24  Dick Porter  <dick@ximian.com>
5680
5681         * process.c
5682         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5683         Use GetProcessId() if it's available.
5684
5685 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5686
5687         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5688
5689 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5690             Ankit Jain  <jankit@novell.com>
5691
5692         * loader.c (mono_get_method_from_token): Initialize 'method' field
5693         of all generic parameters before parsing the signature.  Remove
5694         code that "fixed"-up MVAR references.
5695
5696 2005-11-23  Ankit Jain  <jankit@novell.com>
5697
5698         * metadata.c (mono_metadata_has_generic_params):
5699         (mono_metadata_load_generic_param_constraints):
5700         (mono_metadata_load_generic_params): Move duplicate code ...
5701         (mono_metadata_get_generic_param_row): ... here. Returns the
5702         first row-id in GenericParam table for a given owner (token).
5703         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5704         prototype.
5705
5706 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5707             Ankit Jain  <jankit@novell.com>
5708
5709         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5710         comparing VARs too.
5711         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5712         type->data.generic_param only if the type is an MVAR.
5713         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5714         leak owner-less VARs and MVARs into managed space.
5715
5716 2005-11-21  Martin Baulig  <martin@ximian.com>
5717
5718         * class-internals.h
5719         (MonoMethod): Moved the `generic_container' here from
5720         `MonoMethodNormal' since we now also need it for
5721         `MonoMethodPInvoke';
5722         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5723         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5724         an union containing both `MonoMethodNormal' and
5725         `MonoMethodPInvoke'.
5726
5727         * loader.c
5728         (mono_get_method_from_token): Allow implementing generic methods
5729         as interncalls.
5730
5731         * threads.c
5732         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5733         icall.
5734
5735 2005-11-17  Dick Porter  <dick@ximian.com>
5736
5737         * icall.c: 
5738         * process.h: 
5739         * process.c: Split the Process Start_internal icall into
5740         ShellExecuteEx_internal and CreateProcess_internal, which are
5741         called depending on whether UseShellExecute is true.  Fixes bug
5742         76670.
5743
5744         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5745
5746 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5747
5748         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5749         'msize' parameters, use the information in 'mspec' instead.
5750         (emit_object_to_ptr_conv): Ditto.
5751
5752         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5753         fields out of order. Fixes #76733.
5754
5755 2005-11-17  Ankit Jain  <jankit@novell.com>
5756
5757         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5758
5759 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5760
5761         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5762           bug #76575.
5763
5764 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5765
5766         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5767         for types with non-auto layout. Fixes #76717.
5768
5769 2005-11-16  Ankit Jain  <jankit@novell.com>
5770
5771         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5772         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5773         if generic_context is null.
5774           (mono_metadata_generic_param_equal): param->owner can be null.
5775           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5776         null.
5777
5778 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5779
5780         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5781         the correct value.
5782
5783 2005-11-15  Martin Baulig  <martin@ximian.com>
5784
5785         * object.c (set_value): Use mono_class_from_mono_type() instead of
5786         the hack for generic instances; fixes #76136.
5787
5788 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5789
5790         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5791         fields.
5792
5793         * image.c (load_metadata_ptrs): Initialize the new fields.
5794
5795         * reflection.c (create_dynamic_mono_image): Ditto.
5796
5797         * reflection.c (build_compressed_metadata): Use the new fields.
5798
5799         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5800         icall.
5801
5802         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5803         icall.
5804         
5805 2005-11-15  Ankit Jain  <jankit@novell.com>
5806             Raja R Harinath  <harinath@gmail.com>
5807
5808         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5809         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5810         new per-generic_container cache if the cached MonoType's context matches
5811         the current context.
5812           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5813         to the expected context.
5814           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5815
5816 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5817
5818         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5819         we changed the signature of an icall.
5820         * icall.c: Modify to mono_double_ParseImpl return true/false 
5821         depending on the success, instead of throwing the exception. This will
5822         help us in Double.TryParse methods.
5823         
5824 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5825
5826         * marshal.c (emit_marshal_object): Throw an exception when
5827         marshalling 'object' instead of crashing. Fixes #76696.
5828
5829 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5830
5831         * class-internals.h: Add prototype for mono_type_get_full_name ().
5832
5833 2005-11-11  Dick Porter  <dick@ximian.com>
5834
5835         * threads.c (mono_thread_manage): Make sure the main thread has
5836         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5837
5838 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5839
5840         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5841         console about the missing type.
5842         (mono_loader_set_error_method_load): Ditto.
5843
5844 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5845
5846         * mono-config.c (mono_get_config_dir): Set the system defaults if
5847         none is specified.
5848
5849         * assembly.c (mono_set_dirs): New API entry point to set the
5850         assembly and the config directory in one call
5851
5852 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5853
5854         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5855         the ftnptr was created from a delegate in a domain other than the
5856         current domain. Fixes #75377.
5857
5858         * exception.h exception.c: Add mono_get_exception_not_supported ().
5859
5860 2005-11-08  Martin Baulig  <martin@ximian.com>
5861
5862         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5863
5864 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5865
5866         * security-manager.h: Added definitions to deal with strongname key 
5867         pairs bigger (and smaller) than 1024 bits.
5868         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5869         adjust wrt the public key length being used.
5870
5871 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5872
5873         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5874           Windows build (r51396-51397).
5875
5876 2005-11-03  Martin Baulig  <martin@ximian.com>
5877
5878         * class.c (mono_class_setup_vtable_general): Also add generic
5879         methods to the vtable; fixes #76581.
5880
5881 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5882
5883         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5884         sure that we lookup GetString method from the System.Text.Encoding
5885         class, not the derived class or we get an empty method.
5886
5887         Fixed class #76612.
5888
5889 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5890
5891         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5892         if it has been previously set (embedders). 
5893
5894         Make mono_set_rootdir available also on Unix.
5895
5896 005-10-24  Robert Jordan  <robertj@gmx.net>
5897
5898         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5899
5900 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5901
5902         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5903         only calls which are made to native code use this flag.
5904
5905         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5906
5907 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5908
5909         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5910         Add support for FieldBuilders.
5911
5912 2005-10-29  Martin Baulig  <martin@ximian.com>
5913
5914         * mono-debug.c
5915         (mono_debug_using_mono_debugger): New public method; returns
5916         whether we're running inside the debugger.
5917
5918 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5919
5920         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5921         for Method/Constructor/FieldBuilders.
5922
5923 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5924
5925         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5926         and fields as well.
5927
5928 2005-10-26  Martin Baulig  <martin@ximian.com>
5929
5930         * mono-debug-debugger.c
5931         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5932
5933 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5934
5935         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5936         integer to isspace.
5937
5938 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5939
5940         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5941         when passing valuetypes byref. Fixes #76502.
5942
5943 2005-10-19  Jackson Harper  <jackson@ximian.com>
5944
5945         * profiler.c: Don't put a . in front of types that are not in a
5946         namespace.
5947
5948 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5949
5950         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5951
5952 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5953
5954         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5955         #76436.
5956         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5957
5958 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5959
5960         * assembly.c metadata-internals.h icall.c: Define an additional
5961         parameter for mono_assembly_name_parse_full, so we can avoid creating
5962         S.R.AssemblyName.Version when no version info wasn't passed.
5963         
5964 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5965
5966         * class.c (mono_type_get_full_name): Reimplement method that was
5967         removed. 
5968
5969         * image.c: Some docs
5970
5971 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5972
5973         * profiler.c (output_newobj_profile): Fix printing of Total memory
5974         on x86.
5975
5976 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5977
5978         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5979
5980 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5981
5982         * threads.c: remove debug output.
5983
5984 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5985
5986         * threads.c (mono_thread_manage): Fix crashes if more than 64
5987         threads need to be aborted. Hopefully fixes #75899.
5988
5989         * assembly.c (mono_stringify_assembly_name): New helper function.
5990
5991         * class.c: Use mono_stringify_assembly_name instead of the similar
5992         static function.
5993
5994         * assembly.h assembly.c: Add support for calling a postload search 
5995         hook if an assembly cannot be loaded.
5996
5997         * appdomain.c: Register new search hooks which call the AssemblyResolve
5998         events in AppDomain. Fixes #75231
5999
6000 2005-10-07  Martin Baulig  <martin@ximian.com>
6001
6002         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
6003         methods without debug info.
6004
6005 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
6006
6007         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
6008         wrappers.
6009
6010 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6011
6012         * file-io.c: now that we return symlinks, use lstat and, when the file
6013         is a symbolic link, stat, to get the file attributes. Also avoid the
6014         conversion to/from utf16/external.
6015
6016 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
6017
6018         * class.c (mono_class_layout_fields): Compute klass->has_references
6019         correctly if an embedded valuetype is not yet initialized. Fixes
6020         #76331.
6021
6022 2005-10-04  Martin Baulig  <martin@ximian.com>
6023
6024         * metadata.c
6025         (mono_metadata_load_generic_param_constraints): New public
6026         function; splitted the constraints loading out from
6027         mono_metadata_load_generic_params().
6028
6029         * class.c (mono_class_create_from_typedef): Call
6030         mono_metadata_load_generic_param_constraints() after setting up
6031         the type and creating our parent; fixes #75329.
6032
6033 2005-10-04  Martin Baulig  <martin@ximian.com>
6034
6035         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
6036         non-dynamic parent classes.
6037
6038 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6039
6040         * file-io.c : win32 build fix (ETXTBSY seems not found).
6041
6042 2005-10-04  Martin Baulig  <martin@ximian.com>
6043
6044         * reflection.c
6045         (mono_image_get_methodspec_token): Make the cache actually work;
6046         fixes #75974.
6047
6048 2005-10-04  Martin Baulig  <martin@ximian.com>
6049
6050         * class.c (mono_class_name_from_token): Removed the unneccessary
6051         `MonoGenericContext *' argument.
6052
6053 2005-10-04  Martin Baulig  <martin@ximian.com>
6054
6055         * loader.c
6056         (method_from_methodspec): Make the caching work again; fixes the
6057         performance regression from #76262.
6058
6059 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6060
6061         * file-io.c:
6062         * file-io.h:
6063         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
6064         GetFileSystemEntries that performs the same work but without going
6065         into io-layer, locking, etc.
6066
6067 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
6068
6069         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
6070         ThreadState_Stopped as well. Fixes #76047.
6071
6072 2005-09-29  Martin Baulig  <martin@ximian.com>
6073
6074         * class.c
6075         (inflate_generic_context): If the new context has a `gmethod', set
6076         its `container' that that gmethod's `container'.
6077
6078         * metadata.c
6079         (mono_metadata_parse_generic_param): Simplify things;
6080         `generic_container = generic_context->container;' is just fine.
6081
6082         * loader.c (method_from_methodspec): Code cleanups.
6083
6084 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
6085
6086         * decimal.c: fix warning (and let gcc generate correct
6087         code on ARM with optimizations).
6088
6089 2005-09-28  Martin Baulig  <martin@ximian.com>
6090
6091         * loader.c
6092         (method_from_memberref): Added `MonoGenericContext *class_context'
6093         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
6094         (method_from_methodspec): If we're a memberref, use the enclosing
6095         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
6096
6097 2005-09-28  Martin Baulig  <martin@ximian.com>
6098
6099         * object.c (mono_runtime_invoke_array): Added support for
6100         MONO_TYPE_GENERICINST; fixes #75917.
6101
6102 2005-09-27  Martin Baulig  <martin@ximian.com>
6103
6104         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6105         `k->byval_arg.type' to determine the actual type.
6106
6107         * loader.c (method_from_methodspec): Removed some hacks.
6108
6109 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6110
6111         * class-internals.h (mono_field_is_deleted): Do the test for
6112         rtspecialname before we check the actual name of the field. This
6113         prevents us from dereferencing a pointer into the string table,
6114         saving us from accessing a few pages
6115
6116         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6117         macros. This will allow a deadlock debugger to easily be plugged
6118         in.
6119
6120 2005-09-27  Martin Baulig  <martin@ximian.com>
6121
6122         * loader.c (method_from_methodspec): Create a "signature"
6123         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6124
6125 2005-09-27  Martin Baulig  <martin@ximian.com>
6126
6127         * class.c
6128         (inflate_generic_class): Correctly set the new context's
6129         container.
6130
6131         * loader.c
6132         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6133         instead of a `MonoGenericContext *'.
6134         (mono_method_signature_full): Take a `MonoGenericContainer *'
6135         instead of a `MonoGenericContext *'.
6136
6137         * metadata.c
6138         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6139         instead of a `MonoGenericContext *'.
6140         (mono_metadata_parse_method_signature_full): Likewise.
6141
6142 2005-09-26  Martin Baulig  <martin@ximian.com>
6143
6144         * class.c
6145         (mono_class_from_generic_parameter): Set `klass->generic_container'
6146         (mono_class_from_generic_parameter): Likewise.
6147         (mono_bounded_array_class_get): We inherit the generic container
6148         from the element class.
6149
6150         * loader.c
6151         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6152         argument rather than computing it here.
6153         (method_from_memberref): Correctly set the generic context before
6154         parsing the signature.  Fixes #75681.
6155
6156 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6157
6158         * object.c (mono_class_has_special_static_fields): Fix warnings.
6159
6160 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6161
6162         * assembly.c: Add parse_public_key function, to
6163         par the public keys. Also added mono_assembly_name_parse_full,
6164         to define it the parsed key should be freed or not.
6165         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6166         to parse a long format assembly name.
6167         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6168         private, since calling it to preserve the key requires
6169         freeing it manually.
6170         
6171 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6172
6173         * locales.c : removed HAVE_ICU part.
6174
6175 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6176
6177         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6178         field_is_special_static if the klass has no special static fields.
6179
6180         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6181         (MonoCachedClassInfo): Likewise.
6182
6183         * object.c (mono_class_has_special_static_fields): New helper function.
6184
6185 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6186
6187         * class.c (mono_class_create_from_typedef): Don't call 
6188         interfaces_from_typedef_full for enums.
6189         (mono_class_create_from_typedef): Compute the base types of enums directly
6190         without calling mono_class_setup_fields ().
6191         (mono_class_find_enum_basetype): New helper function.
6192
6193         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6194         one place inside the string heap.
6195         
6196 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6197
6198         * class.c: locking fixes, code cleanups, some docs added.
6199         Allocate some data structures in the image mempool.
6200
6201 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6204         the example code.
6205         
6206 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6207
6208         * class-internals.h, class.c, reflection.c: reduce memory taken by
6209         MonoClass.
6210
6211 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6212
6213         * metadata.c, metadata.h, loader.h: documentation updates, code and
6214         API cleanups.
6215
6216 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6217
6218         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6219         the example code.
6220
6221         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6222         page faults caused by the runtime while reading metadata.
6223
6224 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6225
6226         * socket-io.c: the field names were changed 3 months ago and no one
6227         realized until bug #76077 got filed!
6228
6229 2005-09-20  Martin Baulig  <martin@ximian.com>
6230
6231         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6232
6233 2005-09-20  Martin Baulig  <martin@ximian.com>
6234
6235         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6236         write the rank into the class entry.
6237
6238 2005-09-20  Martin Baulig  <martin@ximian.com>
6239
6240         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6241
6242 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6243
6244         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6245
6246         * icall.c (custom_attrs_defined_internal): New icall.
6247
6248         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6249         function.
6250         (mono_custom_attrs_construct_by_type): New helper function.
6251
6252 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6253
6254         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6255         terminate the resulting string. Fixes #76123.
6256
6257 2005-09-16  Martin Baulig  <martin@ximian.com>
6258
6259         * mono-debug.c
6260         (mono_debug_add_method): Ignore inflated methods for the moment.
6261
6262 2005-09-14  Martin Baulig  <martin@ximian.com>
6263
6264         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6265
6266 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6267
6268         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6269         return a success/failure indication.
6270         (mono_metadata_interfaces_from_typedef_full): Ditto.
6271         (get_constraints): Ditto.
6272
6273 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6274
6275         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6276         
6277         * marshal.c (emit_marshal_array): Add support for returning string
6278         arrays from delegates. Fixes #76063.
6279
6280         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6281
6282 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6283
6284         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6285         icall.
6286
6287 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6288
6289         * reflection.c icall.c: Fix after mono_get_exception_type_load
6290         signature change.
6291
6292         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6293         (mono_assembly_load_reference): Use the new helper.
6294
6295         * class-internals.h (MonoLoaderError): New structure containing 
6296         information about type loading errors.
6297
6298         * class-internals.h loader.c: Add APIs to store per-thread loader
6299         error information.
6300
6301         * loader.c class.c: Set the loader error if needed.
6302
6303         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6304
6305 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6306
6307         * decimal.c: fixed to handle the broken ARM fp format.
6308
6309 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6310
6311         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6312         broken.
6313
6314 2005-09-06  Martin Baulig  <martin@ximian.com>
6315
6316         * domain.c (supported_runtimes): Added v2.0.50727.
6317
6318 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6319
6320         * culture-info.h: reduce the size of some structures.
6321
6322 2005-09-05  Martin Baulig  <martin@ximian.com>
6323
6324         Reflect latest API changes in the August CTP.
6325
6326         * icall.c
6327         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6328         ("MonoType.HasGenericArguments"): Removed.
6329         ("MonoMethod.BindGenericParameters"): Renamed to
6330         "MakeGenericMethod".
6331         ("MethodBuilder.BindGenericParameters"): Renamed to
6332         "MakeGenericMethod".    
6333
6334 2005-09-05  Martin Baulig  <martin@ximian.com>
6335
6336         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6337
6338 2005-09-05  Martin Baulig  <martin@ximian.com>
6339
6340         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6341
6342         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6343         generic_container is non-NULL.
6344
6345 2005-09-05  Martin Baulig  <martin@ximian.com>
6346
6347         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6348
6349         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6350
6351 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6352
6353         * reflection.c (encode_locals,
6354         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6355         for large generic types.
6356
6357 2005-09-05  Martin Baulig  <martin@ximian.com>
6358
6359         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6360
6361         * class.c (mono_dup_array_type): New public method.
6362         (mono_metadata_signature_deep_dup): New public method.
6363         (dup_type): Correctly duplicate array and function types.
6364
6365 2005-09-05  Martin Baulig  <martin@ximian.com>
6366
6367         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6368
6369         * reflection.c (get_default_param_value_blobs): Handle generic types
6370         and generic methods.
6371
6372 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6373
6374         * class.c: Fixed error reporting (method/class were inversed) for 
6375         inheritance demands.
6376         * security-manager.c|h: Added the AppDomain when calling the managed
6377         System.Security.SecurityManager.InheritanceDemand method.
6378
6379 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6380
6381         * reflection.c (encode_marshal_blob): 'marshaltype' and
6382         'marshaltyperef' are alternate sources for the custom marshaler
6383         name.
6384
6385 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6386
6387         * class.c: fix creation of array classes with rank == 1
6388         (patch by Ankit Jain <jankit@novell.com>).
6389
6390 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6391
6392         * object.c: fix check for creating the bound data for arrays vs
6393         szarrays.
6394
6395 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6396
6397         * object.c: configuration file name is now based on the executable name,
6398         not the image name. Fixes bug #75931.
6399
6400 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6401
6402         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6403         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6404
6405 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6406
6407         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6408
6409 2005-08-24  Ankit Jain  <jankit@novell.com>
6410             Raja R Harinath  <rharinath@novell.com>
6411
6412         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6413           called by it recursively.
6414           (mono_class_init): Remove special case in pending_init handling, since it's
6415           superseded by the fix to mono_class_from_typeref.
6416
6417 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6418
6419         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6420         BROKEN_THREAD_START stuff.
6421
6422 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6423
6424         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6425         trampoline.
6426
6427         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6428         
6429         * object.c (mono_delegate_ctor): Replace the original function address with
6430         a delegate trampoline.
6431
6432 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6433
6434         * icall.c: add boolean argument to base64_to_byte_array and 
6435         InternalFromBase64String to control whether a whitespace-only string
6436         is allowed (or should casue a FormatException to be thrown). We need
6437         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6438         to match the MS behaviour in both profiles.
6439         * appdomain.c: Bump corlib version.
6440
6441 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6442
6443         This patch implements a big portion of publisher policy
6444         support, used to bind assembly versions and redirect
6445         one assembly from version A to version B.
6446
6447         * assembly.c:
6448         New GSList loaded_assembly_bindings, for storing the cached
6449         assembly bindings.
6450         (assembly_binding_maps_name): New static function for checking if a 
6451         assembly binding information maps an assembly name.
6452         (mono_assembly_binding_info_free): New function for freeing
6453         assembly binding information resources.
6454         (get_publisher_policy_info): New static function for retrieving 
6455         assembly binding information from a MonoImage.
6456         (compare_versions): New static function for comparing an assembly
6457         binding information data and the version of an assembly name.
6458         (check_policy_versions): New static function for checking if an
6459         assembly binding info mapping an assembly name is valid for it.
6460         (mono_assembly_load_publisher_policy): New static function for
6461         loading the 'policy.major.minor.MyAssembly' image for an assembly
6462         with an assembly name 'aname'.
6463         (mono_assembly_bind_version): New static function for updating
6464         assembly redirection.
6465         (mono_assembly_apply_binding): New static function for applying
6466         assembly binding.
6467         (search_binding_loaded): New static function for searching 
6468         loaded assembly binding infos in the cache domain.
6469         (mono_assembly_load_full): Don't apply assembly binding for
6470         reflection only assemblies.
6471
6472         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6473         which contains information about assembly binding. Also
6474         declare signature for mono_config_parse_publisher_policy ()
6475         function, used to retrieve pub policy info.
6476         
6477         * mono-config.c:
6478         (publisher_policy_start): New static function used to parse publisher 
6479         policy config files.
6480         (publisher_policy_parser): New static MonoParseHandler containing 
6481         the functions used when parsing config files.
6482         (mono_config_parse_publisher_policy): New function for parsing
6483         publisher policy files.
6484         
6485 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6486
6487         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6488
6489         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6490
6491         * object.c (mono_get_addr_from_ftnptr): New helper function.
6492
6493         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6494
6495         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6496
6497 2005-08-19  Dick Porter  <dick@ximian.com>
6498
6499         * threads.c, threads.h, appdomain.c, appdomain.h,
6500         profiler-private.h, monitor.c, object.c, object-internals.h,
6501         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6502         store the thread ID, so it can hold a 64 bit value if needed.
6503
6504 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6505
6506         * reflection.c (mono_reflection_create_dynamic_method): Store the
6507         handle class into the method references as well so ldtoken works in
6508         dynamic methods.
6509
6510         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6511         types.
6512
6513 2005-08-19  Ankit Jain <jankit@novell.com>
6514
6515         Fix #75847.
6516         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6517           here rather than using the method signature of a arbitrary function
6518           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6519           two arguments.
6520           Hack done with Harinath.
6521
6522 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6523
6524         * threadpool.c: disable printing stack traces when we get a exception
6525         in a threadpool thread. I need to do more testing to figure out which
6526         cases actually print this. Fixes bug #75828.
6527
6528 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6529
6530         * icall.c: there might be ignored whitespace after the last '='. This
6531         fixes length computation and bug #75840.
6532
6533 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6534
6535         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6536         well. Fixes #75809.
6537
6538         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6539         #75784.
6540         
6541         * reflection.c (create_custom_attr_data): Ditto.
6542
6543 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6544
6545         * locales.c, culture-info.h : removed RegionLCIDMap.
6546         * culture-info-tables.h : regenerated.
6547
6548 2005-08-16  Martin Baulig  <martin@ximian.com>
6549
6550         * class.c (mono_type_get_name_recurse): Small fix.
6551
6552 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6553
6554         * locales.c : indentation fixie.
6555
6556 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6557
6558         * object-internals.h,
6559           locales.h,
6560           locales.c,
6561           culture-info.h,
6562           icall.c : added RegionInfo table support.
6563         * culture-info-table.h : regenerated for region support.
6564
6565 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6566
6567         * reflection.c (resolve_object): handle all kinds of MonoMethod
6568         including generic ones
6569
6570 2005-08-12  Ankit Jain <jankit@novell.com>
6571
6572         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6573           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6574
6575 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6576
6577         * process.c: Don't close a thread handle when it's NULL. This is a
6578         workaround for bug #75733.
6579
6580 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6581
6582         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6583
6584 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6585
6586         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6587
6588 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6589
6590         * threadpool.c: if a work item in the thread pool has a callback that
6591         catches a exception, don't propagate it after invoking the callback.
6592         Fixes bug #75336.
6593
6594 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6595
6596         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6597
6598         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6599
6600         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6601
6602         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6603
6604 2005-08-03  Ankit Jain  <jankit@novell.com>
6605
6606         Fix #75683.
6607         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6608           PInvoke calling convention is 0.
6609
6610 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6611
6612         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6613         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6614
6615 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6616
6617         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6618         to handle threads not started by the GC (patch by Michael Meeks
6619         <michael.meeks@novell.com>).
6620
6621 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6622
6623         * reflection.c: Make buffer used in emitting types larger for some
6624         big generic types (patch by Michal Moskal).
6625
6626 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6627
6628         * mono-debug.c: Fix some (not all) alignment problems.
6629
6630 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6631
6632         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6633         Invoke mono_image_load_from_data_full passing the refonly
6634         parameter.
6635
6636         * assembly.c
6637         (mono_assembly_open_from_bundle): Add the refonly argument, 
6638         in order to pass it to other methods it calls to.
6639         (do_mono_assembly_open): Add the refonly argument, in order 
6640         to pass it to other methods it calls to.
6641         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6642         the refonly parameter to it.
6643
6644         * image.c: Add loaded_images_refonly_hash and
6645         loaded_images_refonly_guid_hash to cache the reflection
6646         only loaded images.
6647         (mono_images_init): Initialize the hash tables used for
6648         caching the reflection only images.
6649         (load_modules): Invoke mono_image_open_full passing the refonly
6650         parameter to load the modules the correct way.
6651         (build_guid_table): Add the refonly argument, to re-build the 
6652         correct hash table.
6653         (do_mono_image_open): Added the refonly argument, in order to
6654         define it for the loaded image.
6655         (mono_image_loaded_full): New function, which receives an
6656         additional parameter to look for the image in the refonly or
6657         non-refonly section.
6658         (mono_image_loaded): Updated, using mono_image_loaded_full.
6659         (mono_image_loaded_by_guid_full): The same case that happens
6660         with mono_image_loaded_full.
6661         (mono_image_loaded_by_guid): Likewise.
6662         (register_image): Use the ref_only variable inside MonoImage
6663         to decide in which hash table store the current image.
6664         (mono_image_open_from_data_full): Rename
6665         mono_image_open_from_data to mono_image_open_from_data_full,
6666         adding the refonly argument, to define the ref_only variable 
6667         inside MonoImage.
6668         (mono_image_open_from_data): Return 
6669         mono_image_open_from_data_full.
6670         (mono_image_open_full): Rename mono_image_open to
6671         mono_image_open_full, receiving the new refonly argument,
6672         to pass it to inner methods.
6673         (mono_pe_file_open): Update this function, to open
6674         a MonoImage as a non-refonly image.
6675         (mono_image_close): Use the refonly variable inside
6676         MonoImage to remove the image from the correct caches.
6677
6678         * image.h: Add the signatures of mono_image_open_full,
6679         mono_image_open_from_data_full, mono_image_loaded_full,
6680         mono_image_loaded_by_guid_full.
6681
6682         * metadata-internals.h: Add the ref_only field to 
6683         MonoImage.
6684         
6685 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6686
6687         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6688         Fix the last behavior, which used to load the assemblies and
6689         extract MonoReflectionAssemblyName information, instead of
6690         extract it from the metadata tables. Needed for Reflection
6691         Only assemblies.
6692         
6693 2005-07-29  Martin Baulig  <martin@ximian.com>
6694
6695         * mono-debug-debugger.c
6696         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6697         not initialized.
6698
6699         * mono-debug.c
6700         (mono_debug_address_from_il_offset): Check whether we have
6701         debugging support before attempting to take the lock.
6702         (mono_debug_source_location_from_address): Likewise.
6703         (mono_debug_source_location_from_il_offset): Likewise.
6704         (mono_debug_il_offset_from_address): Likewise.
6705         (mono_debug_address_from_il_offset): Likewise.
6706
6707 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6708
6709         * class.c (mono_class_from_name_case): Add support for dynamic images.
6710         Fixes #75650.
6711
6712         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6713         for #75479.
6714
6715 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6716         
6717         * reflection.c (mono_method_get_object): Fix warning.
6718
6719 2005-07-28  Martin Baulig  <martin@ximian.com>
6720
6721         * mono-debug.c
6722         (mono_debug_add_wrapper): Also write the wrapper type.
6723
6724 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6725
6726         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6727         
6728         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6729         data indicates the class has none.
6730
6731 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6732
6733         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6734         loader lock with the debugger lock. Prevents deadlocks for beagle.
6735
6736         Beagle can now run on an smp box for a weekend without any
6737         issues. Woohoo!
6738
6739 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6740
6741         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6742         in a module. Fixes #75629.
6743
6744 2005-07-26  Martin Baulig  <martin@ximian.com>
6745
6746         * mono-debug.c (mono_debug_add_wrapper): New static method.
6747         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6748         interncall or a wrapper.
6749
6750         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6751         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6752         (MONO_DEBUGGER_VERSION): Bump to 51.
6753
6754         * mono-debug-debugger.c
6755         (mono_debugger_add_type): Removed this empty function.
6756         (mono_debugger_add_method): Likewise.
6757
6758 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6759
6760         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6761         before accessing method->slot.
6762
6763 2005-07-21  Jb Evain  <jbevain@gmail.com>
6764
6765         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6766         Fixes #75010.
6767
6768 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6769
6770         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6771         #75587.
6772
6773 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6774
6775         * image.h image.c: Add mono_image_get_guid () API function.
6776
6777 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6778
6779         There were issues when multiple threads tried to load
6780         assemblies. A deadlock was created between assemblies_mutex and
6781         mono_domain_assemblies_lock. This fixes the issue by making the
6782         assembly ref counting be lock free. See bug 75586.
6783         
6784         * image.c (mono_image_close): The add ref function here was using
6785         Interlocked operations while the unref was using a mutex and a
6786         --. I don't think this was ever a bug that would be exposed in a
6787         non-pendantic way (ie, by an embedder doing a ref on one thread
6788         and an unref on another), but for the sake of correctness, this is
6789         now Interlocked.
6790
6791         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6792         (mono_assembly_load_reference): Call mono_assembly_addref rather
6793         than touching the refcount ourselves.
6794         (mono_assembly_close): Use InterlockedDecrement to unref the
6795         assembly. Don't acquire the lock unless it is actually needed.
6796
6797 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6798
6799         * class.c (mono_class_layout_fields): Fix calculation of has_references
6800         for generic types.
6801
6802 2005-07-12  Martin Baulig  <martin@ximian.com>
6803
6804         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6805
6806         * metadata.c
6807         (mono_type_hash): Provide better hashing for generic instances.
6808         (mono_generic_inst_hash): Improve hashing.
6809         (mono_generic_class_hash): Likewise.
6810
6811         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6812         generic instances.
6813
6814 2005-07-12  Martin Baulig  <martin@ximian.com>
6815
6816         * reflection.c (mono_reflection_create_runtime_class): Remove the
6817         hack for generic type definitions and non-`Run' assemblies.
6818         (mono_reflection_bind_generic_parameters): Also use
6819         `klass->wastypebuilder' to check for TypeBuilders.
6820
6821 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6822
6823         * class.c (mono_class_layout_fields): Fix calculation of has_references
6824         for generic types.
6825
6826         * class.c (inflate_generic_class): Fix a leak.
6827         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6828         for generic types.
6829
6830 2005-07-11  Martin Baulig  <martin@ximian.com>
6831
6832         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6833         on error.
6834
6835 2005-07-11  Martin Baulig  <martin@ximian.com>
6836
6837         * loader.c (find_method): Also lookup in
6838         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6839
6840 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6841
6842         * appdomain.c (mono_domain_unload): Don't free the error message
6843         before passing it to mono_get_exception_...
6844
6845         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6846         
6847 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6848
6849         * threads.c: try to better guess an available RT signal (bug #75387).
6850
6851 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6852
6853         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6854         and CACHE_OBJECT.
6855
6856 2005-07-07  Martin Baulig  <martin@ximian.com>
6857
6858         * class.c (mono_type_get_name_full): Return NULL for
6859         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6860         fixes #75408.
6861
6862 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6863
6864         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6865         exit the appdomain as well being aborted.
6866
6867         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6868         change back to the root domain after calling managed code. This enables
6869         appdomains using threadpools to be unloaded.
6870
6871 2005-07-07  Martin Baulig  <martin@ximian.com>
6872
6873         * class-internals.h
6874         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6875         into `MonoDynamicGenericClass' since we only need it for dynamic
6876         types.
6877
6878         * reflection.c (mono_class_bind_generic_parameters): We don't need
6879         to compute the `parent' here.
6880
6881 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6882
6883         * culture-info-table.h : regenerated.
6884
6885 2005-07-06  Martin Baulig  <martin@ximian.com>
6886
6887         * icall.c
6888         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6889
6890         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6891
6892 2005-07-06  Martin Baulig  <martin@ximian.com>
6893
6894         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6895         we're doing a signature-only comparision; fixes #74945.
6896
6897 2005-07-06  Martin Baulig  <martin@ximian.com>
6898
6899         * class-internals.h (MonoGenericClass): Moved some things out into
6900         a new `MonoInflatedGenericClass' type.  
6901         (MonoInflatedGenericClass): New type; the `klass' of a
6902         `MonoGenericClass' is now computed lazyly in
6903         mono_get_inflated_generic_class().      
6904
6905         * class.c (mono_get_inflated_generic_class): New public function.
6906         (mono_class_inflate_generic_method): Removed the unused
6907         `MonoClass *' argument.
6908         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6909         all the methods.
6910         (mono_class_create_generic): Make this static and merge it with
6911         mono_class_create_generic_2(); we're now called automatically from
6912         mono_get_inflated_generic_class().
6913
6914         * loader.c (mono_method_signature): Call
6915         mono_get_inflated_method() here.
6916
6917 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6918
6919         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6920         type of fields with RVA.
6921
6922         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6923         for this pseudo class.
6924         (my_mono_class_from_generic_parameter): Likewise.
6925         (mono_class_init): Allow interfaces to have cctors.
6926
6927 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6928
6929         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6930         lazily for AOT methods.
6931
6932 2005-07-05  Martin Baulig  <martin@ximian.com>
6933
6934         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6935         returns FALSE for a successful match, not TRUE.
6936
6937 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6938
6939         * loader.c (mono_method_get_index): Optimize this a bit.
6940
6941 2005-07-04  Martin Baulig  <martin@ximian.com>
6942
6943         * class.c
6944         (class_compute_field_layout): Move the check for generic type
6945         definitions into mono_class_layout_fields().  Fixes #74684.
6946         (mono_class_from_generic_parameter): Correctly compute
6947         `klass->parent'; fixes #75457.
6948
6949         * reflection.c (register_assembly, register_module): Make sure
6950         `domain->rejobject_hash' is already created.
6951
6952 2005-07-02  Martin Baulig  <martin@ximian.com>
6953
6954         * class-internals.h
6955         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6956         `MonoDynamicGenericClass'.      
6957
6958 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6959
6960         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6961         returned by a field getter is null, since null is a valid value.
6962
6963 2005-07-01  Martin Baulig  <martin@ximian.com>
6964
6965         * reflection.c (mono_reflection_generic_class_initialize): Update
6966         the `dgclass->fields [i].parent' to the correct class.
6967         (mono_image_get_fieldref_token): Use the declaring type, not the
6968         reflected type.
6969
6970 2005-07-01  Martin Baulig  <martin@ximian.com>
6971
6972         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6973
6974 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6975
6976         * threads.c (thread_cleanup): assert that thread != NULL
6977         (wait_for_tids_or_state_change): We were using the wrong variable
6978         when accessing wait->threads. `i' was always out of the bounds of
6979         the array.
6980
6981 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6982
6983         * loader.c: map user32 and kernel32 to libMonoSupportW
6984
6985 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6986
6987         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6988
6989 2005-06-28  Martin Baulig  <martin@ximian.com>
6990
6991         * loader.c (method_from_methodspec): Fix #75334.
6992
6993 2005-06-28  Martin Baulig  <martin@ximian.com>
6994
6995         Fix #74953 - Arrays now implement the generic IList<T> interface
6996         on the 2.0 platform.
6997
6998         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6999
7000         * reflection.c (mono_class_bind_generic_parameters): New public
7001         function; similar to mono_reflection_bind_generic_parameters(),
7002         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
7003
7004         * domain.c (mono_init_internal): Try to initialize.
7005         `mono_defaults.generic_array_class' here; this'll only succeed if
7006         we're using the 2.0 corlib.
7007
7008         * icall.c
7009         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
7010         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
7011         (mono_lookup_internal_call): Added support for nested classes.
7012
7013         * loader.c
7014         (mono_get_method_from_token): Set `result->signature->pinvoke' if
7015         we're an interncall and have generic arguments.
7016
7017         * class.c
7018         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
7019         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
7020         instance of System.Array.InternalArray<T> for arrays, so they
7021         implement the generic IList<T> interface.
7022
7023 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
7024
7025         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
7026         (chastamar@yahoo.com). Fixes #75374.    
7027
7028 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
7029
7030         * culture-info-table.h: regenerated.
7031
7032 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7033
7034         * icall.c: handle spaces correctly for base64 strings.
7035
7036 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
7037
7038         * *.c: Kill some warnings.
7039
7040 2005-06-23  Duncan Mak  <duncan@novell.com>
7041
7042         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
7043         that this builds on Solaris 10 (x86).
7044
7045 2005-06-23  Martin Baulig  <martin@ximian.com>
7046
7047         * class.c
7048         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
7049         generic type definitions.
7050
7051 2005-06-23  Martin Baulig  <martin@ximian.com>
7052
7053         Fix #75331.
7054
7055         * metadata.c (mono_class_get_overrides): Renamed to
7056         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
7057         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
7058         pass it to mono_get_method_full().
7059
7060 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
7061
7062         * reflection.c (mono_reflection_create_runtime_class): take the
7063         mono_domain_lock in this method. Prevents deadlocks
7064
7065 2005-06-22  Martin Baulig  <martin@ximian.com>
7066
7067         * loader.c (method_from_methodspec): Fix #75330.
7068
7069 2005-06-22  Martin Baulig  <martin@ximian.com>
7070
7071         * reflection.c (type_get_qualified_name): Use
7072         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
7073         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
7074         argument; use it if we don't have an assembly name.
7075
7076 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
7077
7078         * object.c: In mono_message_init, set "copy out" flag for in
7079         parameters with the [Out] flag.
7080
7081 2005-06-21  Martin Baulig  <martin@ximian.com>
7082
7083         * class.c
7084         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
7085         and MONO_TYPE_PTR.
7086
7087 2005-06-21  Martin Baulig  <martin@ximian.com>
7088
7089         * class.c (mono_class_init): Don't initialize `class->fields' for
7090         generic instances since they're initialized again in
7091         compute_field_layout(). 
7092         (compute_field_layout): Set the field's `generic_info' here; fix
7093         #75320. 
7094
7095 2005-06-21  Martin Baulig  <martin@ximian.com>
7096
7097         * class-internals.h
7098         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7099
7100         * metadata.c (mono_metadata_generic_method_equal): Also
7101         distinguish the `generic_class'; fixes #75334.
7102
7103 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7104
7105         * domain.c:
7106         * appdomain.c:
7107         * domain-internals.h:
7108         * reflection.c: 'domain_assemblies' field is now protected by its own
7109         lock. Don't call into managed code to run the AssemblyLoad event if we
7110         now there are no registered delegates for it.
7111
7112 2005-06-20  Martin Baulig  <martin@ximian.com>
7113
7114         * class.c (mono_class_is_assignable_from): Use a custom version of
7115         mono_class_has_parent() to make things work for generic instances;
7116         fix #75300.
7117
7118 2005-06-20  Martin Baulig  <martin@ximian.com>
7119
7120         * loader.c (method_from_methodspec): Apply a patch from
7121         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7122
7123 2005-06-20  Martin Baulig  <martin@ximian.com>
7124
7125         * class.c (mono_class_init): Reverted Zoltan's last change; it
7126         breaks generics.
7127
7128 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7129
7130         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7131
7132 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7133
7134         * socket-io.c: fix the index in the socket array for writable/error
7135         sockets. Fixes bug #75306.
7136
7137 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7138
7139         * class.c (mono_class_init): Allow interfaces to have static ctors.
7140
7141 2005-06-17  Martin Baulig  <martin@ximian.com>
7142
7143         * loader.c (method_from_methodspec): Use `context->container' when
7144         parsing the `gmethod->inst'.
7145
7146 2005-06-17  Martin Baulig  <martin@ximian.com>
7147
7148         * class.c (mono_type_get_name_recurse): Don't add the assembly
7149         name for type arguments.
7150
7151 2005-06-15  Martin Baulig  <martin@ximian.com>
7152
7153         * reflection.c (mono_image_get_inflated_method_token): Encode
7154         correct klass; fixes #75260.
7155
7156 2005-06-13 Michal Moskal <malekith@nemerle.org>
7157
7158         * icall.c: Make GetCorrespondingMethod/Constructor take
7159         MonoReflectionMethod method not MonoMethod. Removed
7160         MonoType.GetCorrespondingField, and make
7161         MonoGenericType.GetCorrespondingField take name not
7162         MonoClassField.
7163
7164 2005-06-13  Michal Moskal <malekith@nemerle.org>
7165
7166         * reflection.c (field_encode_signature, encode_locals):
7167          Make sizes of buffers for types larger (for big generic types).
7168          (create_generic_typespec,
7169          mono_reflection_sighelper_get_signature_local,
7170          mono_reflection_sighelper_get_signature_field):
7171          Add asserts for too small buffers.
7172
7173 2005-06-15  Martin Baulig  <martin@ximian.com>
7174
7175         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7176         if our parent is not a dynamic type.
7177
7178 2005-06-15  Martin Baulig  <martin@ximian.com>
7179
7180         * class-internals.h (MonoTypeNameFormat): New enum.
7181
7182         * class.c
7183         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7184         (mono_type_get_full_name): Removed.
7185         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7186         argument instead of the boolean's.
7187
7188         * icall.c (ves_icall_System_MonoType_getFullName):
7189         Added `gboolean assembly_qualified'.    
7190
7191         * reflection.h
7192         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7193
7194         * reflection.c (mono_reflection_parse_type): Parse the new type
7195         name format.
7196
7197 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7198
7199         * icall.c: no need to convert from utf16 to utf8 and then back again
7200         after the call to GetLogicalDrives.
7201
7202 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7203
7204         * icall.c: frombase64. Fix problems exposed by new tests.
7205
7206 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7207
7208         * icall.c: added internal calls for converting char [] and strings in
7209         base64 into byte [].
7210
7211 2005-06-10  Martin Baulig  <martin@ximian.com>
7212
7213         * class.c (mono_class_create_generic_2): Read the nested classes
7214         from the metadata rather than from `gklass->nested_classes' since
7215         `gklass' might not be initialized yet.
7216
7217 2005-06-09  Duncan Mak  <duncan@novell.com>
7218
7219         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7220         all public headers. Fixes #74919.
7221
7222 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7223
7224         * domain.c: The key for proxy_vtable_hash is now a pointer
7225         array. Added new GHashFunc and GCompareFunc functions for this.
7226
7227         * class.h: The list of interfaces in MonoRemoteClass is known in
7228         advance and can't grow (we create a new MonoRemoteClass if needed),
7229         so now the interface array can be allocated together with
7230         MonoRemoteClass.
7231         
7232         * object.c: Added a new method create_remote_class_key.
7233         Fixed mono_remote_class so it does not depend on
7234         mono_upgrade_remote_class.
7235         Removed extend_interface_array.
7236         Added new method clone_remote_class(), which makes a copy of a remote
7237         class and adds a new interface or class to it.
7238         mono_upgrade_remote_class() now creates a new remote class (or gets
7239         it from the cache) if an vtable upgrade is needed. In this way
7240         we make sure that other objects sharing the same remote class
7241         don't get the new vtable with unwanted interfaces.
7242         
7243         * object-internals.h:
7244         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7245         
7246         * marshal.c: Track changes in mono_upgrade_remote_class().
7247
7248 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7249         * icall.c: Add runtime methods for obtaining members of inflated
7250         class, which were created from supplied non-inflated members. It
7251         is used in internal Get{Method,Constructor,Field} methods in
7252         System.Type
7253
7254 2005-06-09  Martin Baulig  <martin@ximian.com>
7255
7256         * reflection.c
7257         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7258
7259 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7260         * reflection.c (mono_image_basic_init): Define
7261         Version in MonoDynamicAssembly. 
7262         
7263 2005-06-08  Martin Baulig  <martin@ximian.com>
7264
7265         Fix #75136.
7266
7267         * loader.c
7268         (mono_method_signature_full): New public method; takes a
7269         `MonoGenericContext *'.
7270         (find_method): Use mono_method_signature_full() and pass the
7271         klass'es context to it.
7272
7273         * class.c (mono_class_is_inflated_method): Use
7274         mono_method_signature_full() and pass the context to it.
7275
7276 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7277
7278         * object.c: add proper locking in mono_remote_class_vtable(),
7279         fixes possible memory corruption.
7280
7281 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7282
7283         * marshal.c (mono_remoting_marshal_init): set
7284         initialized after initialization.
7285
7286 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7287
7288         * locales.c : hush.
7289
7290 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7291
7292         * object.c (extend_interface_array): fix really silly
7293         memory corrupting / comparison bug.
7294
7295 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7296
7297         * reflection.c: Functions added to support the creation
7298         of CustomAttributeData, which includes Attribute data
7299         used by ReflectionOnly methods.
7300
7301         * reflection.h:  mono_reflection_get_custom_attrs_data and
7302          mono_custom_attrs_data_construct added (functions exposed).
7303
7304          * icall.c: Added mono_reflection_get_custom_attrs_data
7305          as icall.
7306         
7307 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7308
7309         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7310         lupus's request.
7311
7312 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7313
7314         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7315
7316         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7317         dynamic DllImportAttribute.
7318
7319         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7320         dynamic DllImportAttribute.
7321
7322         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7323         Fixes #75162.
7324
7325 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7326
7327         * threads.c: avoid segfault when an unstarted thread is aborted.
7328
7329 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7330
7331         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7332         Returns the name and version of the runtime for reporting.
7333
7334 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7335
7336         * appdomain.c: bump corlib version.
7337         * object-internals.h: new field in MonoReflectionAssembly.
7338
7339 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7340
7341         * object-internals.h: Carlos forgot to add this field.
7342
7343 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7344
7345         * icall.c: Added create_version to create instances
7346         of Version of MonoReflectionAssemblyName. This change helps
7347         the AssemblyName tests to keep running fine.
7348         
7349 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7350   
7351         * object.c (mono_method_return_message_restore): A somehow less
7352         intrusive fix for #75138.
7353
7354 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7355
7356         * object.c (mono_method_return_message_restore): Fix computation
7357         of expected number of out args.
7358
7359 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7360
7361         * reflection.c (mono_image_get_method_info): Fix the case when the
7362         charset is empty.
7363
7364 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7365
7366         * object.c: Added missing null check in
7367           mono_method_return_message_restore.
7368
7369 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7370
7371         * reflection.c (mono_image_get_method_info): Handle the case when
7372         dllentry is empty.
7373
7374 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7375
7376         * object.c: When creating the vtable for a proxy, take into account
7377         all inherited interfaces, not only the ones registered in
7378         iclass->interfaces. This fixs bug #74996.
7379         Also, in mono_method_return_message_restore, verify that the array
7380         of out args has the expected lengh.
7381
7382 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7383
7384         * socket-io.c: update the timeout in Poll when the call is interrupte.
7385
7386 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7387
7388         * socket-io.c: support abort/suspend in Select_internal after last
7389         change.
7390
7391 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7392
7393         * threadpool.c: remove warning.
7394
7395 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7396
7397         * icall.c:
7398         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7399         removing the 1024 limit from select(). Runtime part of the fix for
7400         bug #71203.
7401
7402 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7403
7404         * socket-io.c: when resolving the addresses for the same
7405         host returned by gethostname(), get the local IPs from the interface
7406         list. Loopback addresses are discarded if the are interfaces up with
7407         non-loopback ones. Fixes bug #63265.
7408
7409 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7410
7411         * appdomain.c, verify.c, object-internals.h, reflection.c:
7412         bumped corlib number to 36, and added new extra_flags field
7413         to ReflectionMethodBuilder and friends.  Fixes #75060.
7414
7415 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7416
7417         * gc.c: register a new weak link only if the object is non-null
7418         (fixes bug#75047).
7419
7420 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7421
7422         * culture-info.h : short time pattern too.
7423
7424 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7425
7426         * culture-info.h : expand long time pattern string length.
7427
7428 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7429
7430         * culture-info-table.h : update (more French date format; #72788).
7431
7432 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7433
7434         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7435         the method is static. Fixes #75029.
7436
7437 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7438
7439         * reflection.c: Update the table_idx field of method builders after
7440         saving the module, since it can change. This is a workaround for
7441         bug #74914. 
7442
7443 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7444
7445         * culture-info-table.h : update (additional French date format).
7446
7447 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7448
7449         * icall.c (ves_icall_type_Equals): Revert last change.
7450         
7451         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7452
7453         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7454
7455 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7456
7457         * class-internals.h: Added executioncontext_class field to 
7458         MonoDefaults structure.
7459         * domain.c: Cache System.Threading.ExecutionContext class in 
7460         mono_defaults.
7461         * object.c: Capture the ExecutionContext for asynchroneous calls in
7462          mono_async_result_new.
7463         * object-internals.h: Added execution_context and original_context 
7464         fields to MonoAsyncResult. Added execution_context to MonoThread.
7465         * security-manager.c|.h: Added mono_get_context_capture_method to 
7466         return the capture method (if required by the security manager or by
7467         the framework version used).
7468         * threadpool.c: Apply capture (if present) ExecutionContext in 
7469         mono_async_invoke and revert to original context after it completes.
7470
7471 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7472
7473         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7474
7475 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7476
7477         * culture-info-table.h : zh-CHT related workaround.
7478
7479 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7480
7481         * marshal.c (emit_marshal_custom): Add some error checking and call the
7482         methods in the ICustomMarshaler interface. Fixes #74875.
7483         
7484         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7485         native->managed wrappers.
7486
7487 2005-05-12  Martin Baulig  <martin@ximian.com>
7488
7489         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7490         here and use the loader lock.
7491
7492         * mono-debug.c: Properly lock when the debugger is not attached.
7493         (mono_debug_init): Release the initial lock if we're not running
7494         in the debugger.
7495
7496 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7497
7498         * marshal.c (emit_marshal_custom): Pass through NULL values without
7499         calling the custom marshalling routines.
7500
7501         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7502         conversion in structures. Fixes #74882.
7503
7504 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7505
7506         * culture-info-table.h : zh-* cultures were missing.
7507
7508 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7509
7510         * threads.c: Added a new event background_change_event which is signaled
7511         when a thread changes its background mode.
7512         Moved here several checks previously done in managed code. The checks
7513         require the thread lock, and using the thread lock in managed code
7514         can result in deadlocks.
7515         Merged Start_internal and Thread_internal into a single method. Now 
7516         Thread_internal does all work of creating and starting a thread.
7517         Added icalls for setting and getting the state of the object. Moved from
7518         managed code to avoid locking there.
7519         Added wait_for_tids_or_state_change() which is called instad of
7520         wait_for_tids when waiting for non-backround threads to end. This method
7521         will return if one of the threads ends or the background_change_event
7522         is signaled.
7523         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7524         the background mode. This method signals the background_change_event
7525         event.
7526         * icall.c:
7527         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7528         removed Start_internal.
7529         
7530 2005-05-11  Martin Baulig  <martin@ximian.com>
7531
7532         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7533         to order of some fields to get proper alignment on 64-bit machines.
7534
7535 2005-05-11  Martin Baulig  <martin@ximian.com>
7536
7537         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7538         changes as they're broken and completely fuck up the debugger.
7539
7540         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7541
7542 2005-05-10  Martin Baulig  <martin@ximian.com>
7543
7544         * reflection.c (mono_reflection_generic_class_initialize): Don't
7545         call mono_class_setup_parent() here.
7546
7547 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7548
7549         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7550         send/receive timeout use an integer in milliseconds. We were using a
7551         struct timeval.
7552
7553 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7554
7555         * locales.c:
7556         (internal_get_cultures): reserve the first slot of the array for the
7557         InvariantCulture, which will be filled in managed code.
7558
7559 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7560
7561         * reflection.c (mono_image_fill_module_table): Initialize the
7562         GENERATION field as well.
7563
7564 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7565
7566         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7567         Monitor.Enter on the object.
7568
7569 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7570
7571         * threads.c: Enable the wait for running threads when exiting.
7572         * icall.c: Suspend all threads before exiting.
7573
7574 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7575
7576         * assembly.c (mono_assembly_load_reference): Fix warning.
7577
7578 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7579
7580         * threadpool.c: changed the default number of threads per cpu. From now
7581         on, the default will be 20 + (5 * number of cpus) instead of 50.
7582
7583 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7584
7585         * loader.c (mono_method_get_signature_full): Add locking here.
7586
7587 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7588
7589         * appdomain.c: Moved methods for parsing and freeing assembly
7590         names to assembly.c.
7591         * assembly.c, domain-internals.h: Created public methods for parsing
7592         assembly names. Fixed mono_assembly_load_with_partial_name:
7593         it now finds the best match, taking into account the version,
7594         token and culture specified in the partial name. Also return
7595         the latest version if no version information is specified.
7596
7597 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7598
7599         * threadpool.c: replace check for SocketAsyncCall class.
7600
7601 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7602
7603         * threadpool-internals.h:
7604         * Makefile.am: added threadpool-internals.h
7605
7606         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7607         that happen in threadpool threads (tested on MS).
7608         (mono_thread_pool_remove_socket): new function that dispatch any pending
7609         AIO call on a socket that is closing. By now only epoll really needs it,
7610         as select/poll wake up when the socket closes.
7611
7612
7613         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7614
7615 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7616
7617         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7618
7619 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7620
7621         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7622
7623 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7624
7625         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7626         has an abort request, convert it into a suspend request.
7627
7628 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7629
7630         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7631         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7632         is not supported yet.
7633
7634 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7635
7636         * image.c: register assemblies loaded from data (bundles) in the loaded
7637         assemblies hash. Fixes bug #74772.
7638
7639 2005-04-29  Martin Baulig  <martin@ximian.com>
7640
7641         * class.c (mono_type_get_name_recurse): Update to the new naming
7642         schema from the latest .NET 2.x beta2.
7643         (mono_class_setup_vtable_general): If we're a generic instance,
7644         copy the vtable from our generic type definition and inflate all
7645         the methods in it.
7646
7647         * loader.c (find_method): Update to the new naming schema from the
7648         latest .NET 2.x beta2.
7649
7650 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7651
7652         * class.c (mono_class_init): Add a mono_loader_unlock to the
7653         #74734 fix.
7654
7655 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7656
7657         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7658         suspend_all_other_threads () call for the time being, since it can hang.
7659
7660         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7661         the background threads to exit, since it can also hang.
7662
7663         * class.c (mono_class_init): Applied patch from Ankit Jain 
7664         (radical@gmail.com). Avoid pending init errors when a field refers
7665         to a nested class using a typeref. Fixes #74734.
7666
7667         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7668         this for dynamic modules.
7669
7670 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7671
7672         * threads.c: don't wait for threads that are in the process of aborting
7673         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7674         and waiting for background threads to finish. This makes xsp and
7675         mod-mono-server exit without random length delays and/or hangs.
7676
7677 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7678
7679         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7680
7681 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7682
7683         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7684         dynamic types to prevent infinite loops. Fixes #74727.
7685
7686         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7687         ..._is_assignable_to.
7688
7689 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7690
7691         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7692
7693 2005-04-25  Martin Baulig  <martin@ximian.com>
7694
7695         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7696
7697         * domain.c
7698         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7699
7700         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7701
7702         * reflection.c (build_compressed_metadata): Set metadata header
7703         version to 2.0.
7704
7705 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7706
7707         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7708         number into an integral and a decimal part. Fixes #70473.
7709
7710         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7711
7712 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7713
7714         * culture-info-table.h : reflected the latest locale-builder output.
7715
7716 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7717
7718         * threadpool.c: check for SuspendRequested too when deciding if
7719         mono_thread_interruption_checkpoint should be called.
7720
7721 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7722
7723         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7724         * threads.c: remove interruption_mutex and use Interlocked instead. When
7725         suspending all the threads, wait for all the suspended events at once.
7726         If we're shutting down and get an APC that is going to be queued,
7727         call mono_thread_execute_interruption immediately, as the thread might
7728         be sleeping on a pthread condition or mutex.
7729
7730         * icall.c: call mono_runtime_set_shutting_down before suspending the
7731         threads.
7732
7733         Fixes bug #74693. And now xsp is happier when exiting.
7734
7735 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7736
7737         * loader.c (mono_stack_walk): Fix #74690.
7738
7739 2005-04-22  Martin Baulig  <martin@ximian.com>
7740
7741         * mono-debug.h (MonoDebugMethodJitInfo): Added
7742         `MonoDebugMethodJitInfo *jit'.
7743
7744         * mono-debug.c (mono_debug_read_method): Cache the
7745         MonoDebugMethodJitInfo in `address->jit'.
7746         (mono_debug_free_method_jit_info): New public method.
7747
7748 2005-04-22  Martin Baulig  <martin@ximian.com>
7749
7750         * class.c (mono_class_is_assignable_from): Disallow
7751         type parameter -> interface.
7752
7753 2005-04-21  Dick Porter  <dick@ximian.com>
7754
7755         * threads.c (mono_thread_create): Turn an assertion into an error.
7756
7757 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7758
7759         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7760         
7761         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7762         Fix some gcc 4.0 warnings.
7763
7764 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7765
7766         * file-io.c: fix alt dir separator char on unix systems
7767         and cleanup (fixes bug #71214).
7768
7769 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7770
7771         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7772         a call to a remote domain, since the method may be an
7773         interface method in the client domain. This fixes bug #74192.
7774
7775 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7776
7777         * threadpool.c: recv/send are now performed before going back to managed
7778         code to save one transition.
7779
7780 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7781
7782         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7783
7784         * metadata/threadpool.c: removed hack to workaround the bug above.
7785
7786         Fixes bug #74618.
7787
7788 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7789
7790         * reflection.c reflection.h: Fix handling of parameter defaults in
7791         dynamic methods. Also fixes handling of parameter attributes.
7792         Fixes #74609.
7793
7794         * mono-debug.c (mono_debug_close_image): Fix warning.
7795
7796 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7797
7798         * socket-io.h: replaced old unused field with new 'blocking'.
7799         * threadpool.c: restore socket blocking state on windows(tm).
7800
7801 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7802
7803         * icall.c: don't return the codebase in the AssemblyName[] returned by
7804         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7805         * object-internals.h: Removed FIXME (fields were presents) and fixed
7806         versioncompat declaration.
7807
7808 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7809
7810         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7811         not closed, so don't cleanup when it happens.
7812
7813 2005-04-13  Chris Toshok  <toshok@ximian.com>
7814
7815         * mono-debug-debugger.h: change prototype for
7816         mono_debugger_lookup_type.
7817
7818         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7819         this function, although it should probably be named
7820         mono_debugger_init_type.
7821
7822 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7823
7824         * threadpool.c: fix non-AIO case.
7825
7826 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7827
7828         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7829         the built-in profiler to measure just JIT compilation times.
7830
7831 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7832
7833         * threadpool.c: the epollfd might be closed by another thread at
7834         any time, so ignore EBADF at treat it as a "we're closing" sign.
7835
7836 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7837
7838         * threadpool.c: release the semaphores with a count equals to the number
7839         of working threads in both IO and regular pools. Fixed typo that messed
7840         up the count of IO pool threads. Don't initialize the pipe handles if
7841         we're using epoll.
7842
7843 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7844
7845         * threadpool.c: some systems don't like a NULL when deleting the socket
7846         from epoll.
7847
7848 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7849
7850         * threadpool.c: fix semaphore allocation.
7851
7852 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7853
7854         * threadpool.c: added epoll() based implementation for asynchronous IO
7855         that is used instead of the default poll() when available.
7856         It can be disabled by setting MONO_DISABLE_AIO.
7857
7858 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7859
7860         * threadpool.c: windows needs 'closesocket' and instead of returning
7861         0 when the stream is closed while in select, it returns -1. Fixes bug
7862         #74573.
7863
7864 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7865
7866         * class.c (class_compute_field_layout): Fix the regression caused by
7867         the previous try.
7868
7869 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7870
7871         * threadpool.c: separate pool for socket async. IO.
7872         * threadpool.h: mono_max_worker_threads is not a global any more.
7873
7874 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7875
7876         * class.c (class_compute_field_layout): Fix #74549.
7877
7878 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7879
7880         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7881         use 2 connected sockets instead.
7882
7883 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7884
7885         * mono-config.c: Add new entry point for mkbundle
7886         mono_config_parse_memory. 
7887
7888 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7889
7890         * threadpool.c: removed another unused function.
7891
7892 2005-04-08  Ankit Jain  <radical@corewars.org>
7893
7894         * reflection.c (get_default_param_value_blobs): Add 'types'
7895         parameter to get the types encoded in the constant table.
7896         (mono_param_get_objects): Use the type from the constant table,
7897         not the type of the parameter, when creating default values.
7898         Handle null default values correctly.
7899
7900 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7901
7902         * file-io.c:
7903         * file-io.h:
7904         * threadpool.c:
7905         * threadpool.h:
7906         * icall.c:
7907         * socket-io.c: removed dead code for async IO.
7908
7909 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7910
7911         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7912
7913         * threadpool.c: intercept socket async. calls and pass them to a thread
7914         that is polling and dispatching the job items to the threadpool as
7915         socket become ready. Fixes bugs #71217, #71933.
7916
7917         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7918         between char and short/ushort arrays.
7919
7920         * socket-io.c: remove dead code.
7921
7922 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7923
7924         * locales.c,
7925           icall.c : removed InternalToUpper_Comp() and
7926           InternalToLower_Comp().
7927
7928 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7929
7930         * char-conversions.h : The tables were incorrectly generated. Should
7931           be generated against invariant culture.
7932
7933 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7934
7935         * object.c (mono_runtime_invoke_array): Fix return value when 
7936         passing pre-created valuetype objects to ctors.
7937
7938         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7939         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7940         Fixes #74338.
7941
7942 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7943
7944         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7945         only used with --security and hides the wrong corlib version error.
7946
7947 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7948
7949         * class.c: Changed mono_class_name_from_token so that types
7950         outside of a namespace don't have an initial period.  Improved
7951         the g_warning message used in _mono_class_get when loading
7952         fails.
7953         * assembly.c: In mono_assembly_load_reference, when an assembly
7954         can't be found, "No such file or directory" is misleading and
7955         unhelpful because a few paths were checked for the presence of
7956         the assembly.  When that happens (ENOENT), display a nicer
7957         message indicating the directories that were searched.  In all
7958         cases, the warning is made easier to read for non-hackers.
7959
7960 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7961
7962         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7963         project/solution.
7964         * appdomain.h|domain.c: Removed inline from functions.
7965         * appdomain.c: Reduced warnings when compiling on windows.
7966         * icall.c: Fixed output_debug declaration to gunichar2*.
7967         * mono-config.c: Reduced warnings when compiling on windows.
7968         * rand.c: Added missing "windows.h". Added missing return value.
7969         * rawbuffer.c: Added missing winsock2.h for windows.
7970         * sysmath.h: Added mono-compiler.h header to allow/ease 
7971         compilation with non-GCC compilers.
7972         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7973         Removed cast warnings.
7974
7975         Adapted from the work of J Lothian (for VC6).
7976
7977 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7978
7979         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7980         from default_path.
7981
7982 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7983
7984         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7985         the 2.0 profile.
7986
7987 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7988
7989         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7990         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7991         stuff, and it would probably use $(prefix)/share rather than
7992         $(prefix)/lib.
7993
7994 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7995
7996         * console-io.c: added 2 includes that might be missing.
7997
7998 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7999
8000         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
8001         profile.
8002
8003         * reflection.c (create_custom_attr): Allocate the params array using
8004         alloca so it gets GC tracking.
8005
8006 2005-03-23  Chris Toshok  <toshok@ximian.com>
8007
8008         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
8009         out some spew.
8010
8011 2005-03-24  Raja R Harinath  <rharinath@novell.com>
8012
8013         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
8014         changes to pick up any changes in prefix, etc.
8015
8016 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8017
8018         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
8019         
8020         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
8021         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
8022
8023 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8024
8025         * class-internals.h object-internals.h class.c reflection.c: Extend the
8026         mono_lookup_dynamic_token () function to return the class of the
8027         token as well. 
8028
8029         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
8030         well. Fixes #73848.
8031
8032 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
8033
8034         * security-manager.c: Skip inheritance checks for intra-corlib
8035         class inheritance and method overrides. This skips a lot of checks
8036         and (anyway) permissions cannot work until corlib is loaded.
8037
8038 2005-03-23  Martin Baulig  <martin@ximian.com>
8039
8040         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
8041         MONO_TYPE_GENERICINST.  
8042
8043 2005-03-23  Martin Baulig  <martin@ximian.com>
8044
8045         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
8046
8047 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8048
8049         * class.c: added locking comments to some functions.
8050         Cache the interface offsets arrays (saves about 20 KB
8051         of runtime memory in a typical app).
8052         Reduce the time overhead in mono_class_setup_supertypes ().
8053
8054 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
8055
8056         * icall.c: speedup and fix leaks in GetMethodsByName and
8057         GetPropertiesByName.
8058
8059 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8060
8061         * reflection.c: some locking fixes.
8062
8063 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8064
8065         * metadata.c: added missing break in case statement.
8066
8067 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
8068
8069         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8070         typedbyref return values. Fixes #73941.
8071
8072 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
8073
8074         * security-manager.c|h: Added demandunmanaged method and 
8075         suppressunmanagedcodesecurity class to MonoSecurityManager.
8076         Renamed aptc class to allowpartiallytrustedcallers.
8077
8078 2005-03-17  Martin Baulig  <martin@ximian.com>
8079
8080         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
8081
8082 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8083
8084         * file-io.c: disabled file async. IO using aio_*. It uses the
8085         threadpool now. Workaround for bug #73718.
8086
8087 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8088
8089         * assembly.h, mono-config.c: added code to deal with bundled configs
8090         for bundled assemblies.
8091
8092 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
8093
8094         * *.c, private.h: cleanup, removing old private.h header file.
8095
8096 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
8097
8098         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8099         and throw_on_unmappable_char attributes.
8100
8101 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8102
8103         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8104         _ProcessName_internal.
8105
8106 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8107
8108         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8109         #73631.
8110
8111         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8112         are no longer used.
8113
8114 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8115
8116         * object.c (compute_class_bitmap): Add support for generics. Fixes
8117         #73527.
8118
8119 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8120
8121         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8122
8123 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8124
8125         * filewatcher.c: commented out the code for windows watcher, as we don't
8126         use it (we use the managed implementation instead).
8127
8128 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8129
8130         * object-internals.h (MonoThread): Remove 'unused1' field.
8131
8132         * appdomain.c: Bump corlib version.
8133
8134         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8135
8136         * reflection.c (mono_reflection_create_runtime_class): Remove the
8137         AssemblyBuilder.Save optimization since it causes too many problems.
8138
8139 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8140
8141         * exception.c|h: Added mono_get_exception_reflection_type_load to
8142         create a ReflectionTypeLoadException object.
8143         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8144         to return NULL is a InheritanceDemand fails during reflection. Updated
8145         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8146         ReflectionTypeLoadException if an InheritanceDemand fails during 
8147         reflection. Added icall mapping for GetLinkDemandSecurity.
8148         * security-manager.c|h: Added ves_icall_System_Security_
8149         SecurityManager_GetLinkDemandSecurity internal call to return the
8150         class and methods permissions set for a LinkDemand. Removed unused
8151         fields in MonoSecurityManager.
8152
8153 2005-03-10  Martin Baulig  <martin@ximian.com>
8154
8155         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8156         it's a generic instance.
8157
8158 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8159
8160         * reflection.c (mono_get_object_from_blob): Applied patch from
8161         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8162
8163         * class.c (mono_class_is_assignable_from): Another try at fixing 
8164         #73469 without breaking anything.
8165
8166 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8167
8168         * class.c: (mono_class_is_assignable_from): Revert the last changes
8169         since they don't work with generics.
8170         
8171         * class.c (mono_class_is_assignable_from): Fix build bustage.
8172
8173         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8174         the managed IsAssignableFrom method. Fixes #73469.
8175
8176         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8177         function.
8178
8179 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8180
8181         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8182         memory when the remoting callback does not sets the out arguments.
8183         Fixes #73007.
8184
8185         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8186         by mistake.
8187
8188         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8189
8190         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8191
8192         * appdomain.c: Bump corlib version.
8193
8194 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8195
8196         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8197         function.
8198
8199         * threads.c (mono_thread_attach): Detect threads which are not started
8200         by the GC pthread wrappers.
8201
8202 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8203
8204         * icall.c: Added new icall for RNG.
8205         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8206         single handle on Linux to access /dev/urandom and fix #73183.
8207
8208 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8209
8210         * object.c: setting the new vtable in a transparent proxy object must
8211         not change the GC descriptor.
8212
8213 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8214
8215         * object.c: fixed compilation without GCJ support.
8216         * reflection.c: for runtime-created types ensure klass->has_references
8217         is correct (bug #73215).
8218
8219 2005-03-02  Martin Baulig  <martin@ximian.com>
8220
8221         * class.c (mono_class_is_assignable_from): Make this work if
8222         `oklass' is a generic instance; fixes #72831.
8223
8224 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8225
8226         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8227         with hasthis set.
8228         
8229         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8230
8231         * marshal.c: Reorganize native->managed marshalling code to also use
8232         the emit_marshal_... functions.
8233
8234 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8235
8236         * object.c: typed allocs have issues with bitmap sizes > 30,
8237         so check for max_set >= 30.
8238
8239 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8240
8241         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8242         managed code. Fixes #73012.
8243
8244         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8245
8246         * metadata.c reflection.c: Load/Emit elem_mult as well.
8247         
8248         * metadata.h (MonoMarshalSpec): Add comment.
8249
8250         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8251
8252         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8253         num_elem to -1 if not given.
8254
8255         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8256
8257         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8258         given values.
8259
8260 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8261
8262         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8263
8264 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8265
8266         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8267
8268         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8269
8270 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8271
8272         * object.c: generalized the reference bitmap creation
8273         and added hooks for the new GC.
8274         * class-internals.c: removed the gc_bitmap field from MonoClass.
8275
8276 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8277
8278         * domain.c: help the compiler to produce better code
8279         in mono_jit_info_table_find ().
8280
8281 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8282
8283         * object.c: make all allocations look typed.
8284
8285 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8286
8287         * socket-io.c: load Mono.Posix if it's not loaded already
8288         (fixes bug#73033).
8289
8290 2005-02-24  Martin Baulig  <martin@ximian.com>
8291
8292         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8293         * reflection.c (dup_type): Likewise.
8294
8295 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8296
8297         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8298         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8299
8300 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8301
8302         * domain.c, threads.c, object-internals.h: make the critical thread
8303         local vars use the fast access mode (even when we're compiled in
8304         a lib). Provide accessors to be used by the jit during codegen.
8305
8306 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8307
8308         * appdomain.c: Changed hook functios behavior to include
8309         support for the reflection only assemblies. Some icalls were changed
8310         to support the mentioned assemblies too. Signatures of static methods
8311         try_assembly_resolve and real_load now have an additional parameter:
8312         refonly.
8313
8314         * assembly.c: General changes to mono_assembly_ methods to support
8315         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8316         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8317         suffix, to support an additional gbool parameter to specify whether
8318         the assembli is reflection only or not. Created some new hook functions 
8319         to add support for reflection only assemblies. Signatures of static 
8320         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8321         have now an additional parameter: refonly.
8322
8323         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8324         indicating whether the assembly is reflection only or not.
8325
8326         * exception.c: Add mono_get_exception_invalid_operation.
8327
8328         * icall.c: Throw an InvalidOperationException when trying to invoke
8329         a property/method/event, or trying to set/get the value of a field.
8330         Also add an icall to retrieve the ref_only flag to the
8331         MonoReflectionAssembly.
8332
8333 2005-02-23  Chris Toshok  <toshok@ximian.com>
8334
8335         Part of fix for #72827.
8336         * mono-debug.c (mono_debug_add_method): add lexical block data to
8337         the info we write.  Kind of a hack at the moment - we copy the
8338         lexical block info from the MonoDebugMethodInfo to the
8339         MonoDebugMethodJitInfo here, before writing it.
8340         (mono_debug_read_method): read the lexical block info.
8341
8342         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8343
8344         * debug-mono-symfile.h: add lexical block support.
8345
8346         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8347         support.
8348
8349 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8350
8351         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8352
8353         * object.c (mono_runtime_free_method): Call mono_free_method () and
8354         put the TODOs there.
8355
8356         * loader.c (mono_free_method): Free up most memory allocated for 
8357         dynamic methods.
8358
8359 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8360
8361         * reflection.c: properly flag a Type argument to a
8362         named custom attr value (bug #72248).
8363
8364 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8365
8366         * reflection.c: reduce code duplication in named custom
8367         attribute encoding.
8368
8369 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8370
8371         * reflection.c: properly encode custom attrs of type object
8372         (bug #72649).
8373
8374 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8375
8376         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8377
8378 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8379
8380         * socket-io.c: load System.dll if it's not loaded already
8381         (bug #72850 and #70477).
8382
8383 2005-02-21  Martin Baulig  <martin@ximian.com>
8384
8385         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8386         generic instances.
8387
8388 2005-02-21  Martin Baulig  <martin@ximian.com>
8389
8390         * reflection.c (mono_image_build_metadata): We also need to
8391         "fixup" the MethodImpl table after we computed the final method
8392         indices.  Call fixup_methodimpl() to do that.
8393         (fixup_methodimpl): New private method.
8394
8395 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8396
8397         * assembly.c: special case mscorlib.dll (bug#72536),
8398         patch from Carlos Alberto Cortez.
8399
8400 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8401
8402         * threads-types.h threads.c: Fix build bustage.
8403
8404         * threads.c: Use a union for long<->double conversions.
8405
8406         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8407         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8408
8409         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8410         containing the checkpoint call with NOT_TAKEN.
8411         
8412         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8413         checkpoint before pushing the arguments, so they won't have to be
8414         spilled to stack.
8415
8416 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8417
8418         * domain.c, assembly.c, domain-internals.h: make some data
8419         const and relocation-free.
8420
8421 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8422
8423         * object.c, appdomain.c, class-internals.h: introduce the
8424         MonoClassRuntimeInfo structure to hold the info needed to
8425         use a class at runtime. Made mono_class_vtable() lock-free
8426         for all the appdomains.
8427
8428 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8429
8430         * metadata-internals.h, image.c: introduce a per-image mempool to
8431         be used for memory that has the same lifetime as the image.
8432
8433 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8434
8435         * domain.c: In mono_init_internal(), instead of selecting the first
8436         runtime version supported by an executable, get a list of all
8437         supported versions and select the one for which an mscorlib exists
8438         (since even if the runtime supports a given version, it doesn't mean
8439         that the framework for that version is installed).
8440         Modified get_runtimes_from_exe to support this behavior.
8441         In supported_runtimes, added information about additional system
8442         assembly versions.
8443         
8444         * assembly.c: Added support for more than one system assembly version
8445         per runtime version. Updated the assembly list.
8446         In mono_assembly_remap_version, removed the initial version check,
8447         since we don't know to which version we need to compare until we
8448         get the version set on which the assembly is based.
8449         Moved the code for loading corlib into the new method
8450         mono_assembly_load_corlib(), so it can be used by the initialization
8451         code.
8452         
8453         * domain-internals.h: Updated data structures and added declaration
8454         for mono_assembly_load_corlib.
8455
8456 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8457
8458         * reflection.c (resolve_object): Fix the creation of the signature in 
8459         the SignatureHelper case.
8460
8461         * assembly.c (mono_assembly_remap_version): Fix binary search.
8462         
8463 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8464  
8465         * class.c: Added inheritance check when a method is overloaded (from a
8466         virtual method or when implementing an interface) and when a class is
8467         inherited. Added functions to set a failure for a class and to 
8468         retreive the exception from a failure.
8469         * class-internals.h: Added fields to MonoClass to keep the exception
8470         information status for inheritance (or other exceptions) to be thrown
8471         later (i.e. not at load time).
8472         * object.c: Throw the inheritance SecurityException when a type is to 
8473         be created with either class or method inheritance violations.
8474         * reflection.c|h: Fix when getting declsec from a class. Removed 
8475         unrequired code for class. Improved sanity in parameter naming.
8476         * security-manager.c|h: Added functions to check for class and method
8477         inheritance.
8478
8479 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8480
8481         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8482         and has_finalize in dynamic types as well.
8483
8484 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8485
8486         * culture-info-table.h : fixed currency format for en-GB (and so on).
8487
8488 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8489
8490         * gc.c: ensure the GC handles never have 0 as a value.
8491
8492 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8493
8494         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8495         a pointer to a struct to unmanaged code. Fixes #72625.
8496
8497 2005-02-16  Martin Baulig  <martin@ximian.com>
8498
8499         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8500
8501 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8502
8503         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8504
8505 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8506
8507         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8508
8509         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8510         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8511         etc. Fixes #71471.
8512
8513         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8514
8515         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8516
8517 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8518
8519         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8520         changes to make the current context a field in MonoThread.
8521
8522 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8523
8524         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8525         the last change.
8526         
8527         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8528         extracted from mono_marshal_get_native_wrapper.
8529
8530         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8531         to create wrappers around native functions.
8532
8533         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8534         delegates for arbitrary function pointers. Fixes #71472.
8535
8536 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8537
8538         * threads.c: cleaned up the code a little.
8539
8540 2005-02-15  Martin Baulig  <martin@ximian.com>
8541
8542         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8543         the data table.
8544
8545         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8546         allocate larger chunks if needed.
8547
8548 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8549
8550         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8551         in by mistake.
8552
8553 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8554
8555         * domain.c: keep the domains in an array and ensure the domain ids
8556         are kept small, so they can be used as indexes to domain-specific data
8557         with a small memory overhead.
8558
8559 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8560
8561         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8562
8563 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8564
8565         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8566
8567 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8568
8569         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8570
8571         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8572         values.
8573
8574         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8575         
8576 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8577
8578         * domain-internals.h: add the hashtable here.
8579
8580         * class-internals.h: Remove `info' from MonoMethod
8581
8582         * domain.c: Add a new hashtable, jit_trampoline_hash
8583
8584 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8585
8586         * object.c: don't set the value of static fields
8587         (fixes bug#72494).
8588
8589 2005-02-11  Martin Baulig  <martin@ximian.com>
8590
8591         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8592         (mono_debug_add_method): Silently ignore the method if it's too big.
8593         (mono_debug_add_type): Likewise.
8594
8595 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8596
8597         * threads.c, appdomain.c: remove #ifdefs from the code.
8598
8599 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8600
8601         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8602         common security informations. This allows us to stay in unmanaged code
8603         when doing LinkDemand and it's special cases (except for the first 
8604         time for initialization). The flags a very much used with --security.
8605         * reflection.c|h: Added code to get declarative security attributes 
8606         for LinkDemand and InheritanceDemand. This required to refactor the
8607         existing code for Demand.
8608         * security-manager.c|h: Added new method fields for the special cases
8609         of LinkDemand.
8610
8611 2005-02-10  Martin Baulig  <martin@ximian.com>
8612
8613         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8614         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8615
8616 2005-02-10  Martin Baulig  <martin@ximian.com>
8617
8618         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8619         debugging code; this is almost a complete rewrite.
8620
8621         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8622
8623 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8624
8625         * domain.c, object.h: expose mono_string_equal () and 
8626         mono_string_hash ().
8627         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8628         it's implemented in managed code.
8629
8630 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8631
8632         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8633         lo leak objects between appdomains.
8634
8635 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8636
8637         * assembly.c: old compilers compilation fix from 
8638         robertj@gmx.net (Robert Jordan).
8639
8640 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8641
8642         * class-internals.h: Little reminder for the future.
8643
8644         * debug-helpers.c: Fix up wrapper_type_names
8645
8646 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8647
8648         * image.c, metadata-internals.h: when loading an image from a file,
8649         mmap all of it and use the same codepaths as when using a
8650         in-memory image: the code is simpler and we use less memory
8651         (both writable and readonly).
8652
8653 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8654
8655         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8656         API to alloc runtime data structures that need to be tracked by the
8657         GC and contain pointers.
8658         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8659         make the code more readable and eventually use a different GC.
8660
8661 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8662
8663         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8664         for out arguments.
8665         
8666 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8667
8668         * object.c: In release_type_locks(), don't release the cctor lock
8669         if it has already been released. This fixes a crash in the
8670         thread5 test.
8671
8672 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8673
8674         * gc.c, marshal.c, icall.c: register a delegate for finalization
8675         only when the native function pointer has been allocated for it.
8676
8677 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8678
8679         * object.c: cleaned up some code, allocate objects that are
8680         pointer free with the atomic malloc variant. Allocate memory
8681         for static data from the mempool if it's pointer-free.
8682         Allocate the bounds array at the end of the array data, when needed.
8683         * object-internals.h, object.h: move a private function in a private
8684         header.
8685         * class.c: handle missing case in tracking references in fields.
8686
8687 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8688
8689         * class.c, class-internals.h: keep track if a type has
8690         reference fields in either the instance or static fields.
8691
8692 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8693
8694         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8695         and renamed to MonoRuntimeInfo. Added fields to store the expected
8696         framework assembly version. Changed mono_get_framework_version and
8697         mono_get_runtime_version for a single mono_get_runtime_info method.
8698         
8699         * assembly.c: Added method to remap system assembly versions to the
8700         current executing runtime version. Removed old mapping code.
8701         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8702         
8703         * icall.c, reflection.c: Track api changes.
8704
8705 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8706
8707         * loader.c (method_from_memberref): Improve error reporting,
8708         produce the class name instead of the typeref/typedef index. 
8709
8710 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8711
8712         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8713
8714 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8715
8716         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8717         stdcall and charset name mangling.  Reorganize the code and add
8718         some tracing stuff.
8719
8720 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8721
8722         * monodiet.c: More iters!
8723
8724         * marshal.c: Iter usage.
8725
8726         * icall.c: Iter usage.
8727
8728         * object.c: Use iters.
8729
8730         * debug-helpers.c: More iters
8731
8732 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8733
8734         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8735         under win32.
8736
8737 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8738
8739         * mono-debug-debugger.c: use iters
8740
8741         * class.c, class-internals.h: mono_class_setup_events is static
8742         now
8743
8744         * All callers: use iters
8745
8746 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8747
8748         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8749         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8750
8751 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8752
8753         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8754
8755         * marshal.h: Add prototypes for ldfld/stfld_remote.
8756
8757         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8758         this is called during startup.
8759         
8760 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8761
8762         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8763         MonoThreadsSync struct private in monitor.c. Changed the way
8764         MonoThreadsSync is allocated so it's faster and there is no
8765         need to keep track of it with a finalizer and it uses less memory.
8766         This also finally allows us to allocate mono objects as ptrfree when
8767         there are no reference fields.
8768
8769 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8770
8771         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8772         disappearing link to the GC interface and use them to simplify
8773         the gchandles code.
8774
8775 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8776
8777         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8778         stfld_remote which call mono_load/store_field_new. This allows methods
8779         calling ldfld/stfld wrappers to be AOTed.
8780
8781         * console-io.c: Include sys/filio.h under solaris.
8782         
8783         * console-io.c: Include curses.h if needed correctly.
8784
8785 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8786         
8787         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8788         method->klass as well.
8789
8790         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8791
8792         * class.c (mono_class_init): Switch on lazy initialization of 
8793         methods.
8794
8795         * class.c (mono_class_get_finalizer): Handle the case when the 
8796         finalizer is inherited.
8797
8798 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8799
8800         * console-io.c: <curses.h> is needed by term.h on solaris.
8801
8802 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8803
8804         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8805         mono_class_setup_properties where possible. Remove this ftn from
8806         the header file, and make it static.
8807
8808 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8809
8810         * loader.c: Add missing setup_... call.
8811
8812         * class.c: Add missing setup_... calls.
8813
8814         * class.c (mono_class_init): Switch on lazy initialization of 
8815         the generic vtable.
8816         
8817         * class.c (mono_class_init): Fix generics broken by the recent changes.
8818
8819         * monodiet.c (handle_type): Add missing setup_... calls.
8820
8821         * class.c: Back out garbage in previous patch.
8822         
8823         * class.c: Add missing setup_... calls.
8824
8825         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8826         mono_class_setup_methods () if possible.
8827
8828         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8829
8830         * class-internals.h (MonoCachedClassInfo): New structure.
8831
8832         * class.c: Initialize properties and events fields of MonoClass lazily.
8833
8834         * class.c: Add infrastructure for lazily initializing the methods and
8835         vtable fields of MonoClass. Not yet used.
8836
8837         * class.c (mono_class_get_finalizer): New helper function.
8838
8839         * class.c: Add infrastructure for loading some class related data from
8840         an AOT file.
8841
8842         * object.c: Add infrastructure for initializing the vtable from data
8843         in the AOT file.
8844
8845         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8846
8847         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8848         appropriate initialization function before accessing parts of the
8849         MonoClass structure.
8850
8851         * marshal.c: Fix warnings.
8852         
8853         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8854
8855         * mono-debug-debugger.c (get_exception_message): Use 
8856         mono_class_get_method_from_name_flags ().
8857
8858 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8859
8860         * reflection.c, appdomain.c: Replace a few manual searches that
8861         Zoltan missed. (Paolo approved this part of my initial patch).
8862
8863 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8864
8865         * profiler.c: disable recording statistical events at report time.
8866
8867 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8868
8869         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8870         to byteswap arrays of enum values, too (bug #72080).
8871
8872 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8873
8874         * appdomain.c (set_domain_search_path): Allow this to be called if
8875         domain->setup is not yet set.
8876
8877         * loader.c (mono_method_get_index): New helper function.
8878
8879         * loader.c reflection.c: Use mono_method_get_index ().
8880
8881         * class.c (mono_class_get_method_from_name_flags): New helper method.
8882
8883         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8884         this.
8885
8886         * class.c (mono_class_get_cctor): New helper method.
8887
8888         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8889         mono_class_get_method () to look up methods.
8890
8891 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8892
8893         * console-io.c: Fix the build, this should work on Windows.
8894
8895 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8896
8897         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8898         be set to null to keep things valid
8899
8900 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8901
8902         * icall.c: added Console 2.0 icalls.
8903         * Makefile.am: added console-io.[ch]
8904         * console-io.[ch]: internal calls for Console 2.0 API.
8905
8906 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8907
8908         * class.c: make sure we consider all the interfaces
8909         when calculating max_interface_id (bug found by
8910         Jeroen Frijters running ikvm).
8911
8912 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8913
8914         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8915         valuetype fields to null.
8916
8917         * object.c (set_value): Ditto. Fixes #71669.    
8918
8919 2005-01-31  Martin Baulig  <martin@ximian.com>
8920
8921         * metadata.c (mono_metadata_has_generic_params): New public
8922         function; checks whether something is a generic method.
8923
8924 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8925
8926         * appdomain.c: fix infinite recursion when adding assemblies.
8927
8928 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8929
8930         * object.c: Fix small typo to return all items for Environment.
8931         GetCommandLineArgs.
8932
8933 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8934
8935         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8936         reflection.c: more domain and assembly-unload related fixes
8937         and memory leaks plugs.
8938
8939 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8940
8941         * 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.
8942
8943 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8944
8945         * loader.c (mono_method_signature): Make this method lazy
8946         (mono_get_method_from_token): Don't computate the signature here.
8947
8948         Doing this saves quite a bit of memory. I got 90 kb on starting up
8949         monodoc. It should also save some disk reads on startup.
8950
8951         * *: MonoMethod->signature might be NULL now. You *MUST* use
8952         mono_method_signature.
8953
8954 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8955
8956         * object.c (mono_runtime_get_main_args): Return an array from the
8957         current domain here. Fixes #71938.
8958
8959 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8960
8961         * monitor.c: formatting changes to comply with the
8962         mono coding style and remove #ifdefs from the code.
8963
8964 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8965
8966         * metadata.c, private.h: remove some unneeded data
8967         and use a more compact representation for table schemas.
8968
8969 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8970
8971         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8972         to get a better distribution in hash tables.
8973         * *.c: use mono_aligned_addr_hash() where appropriate.
8974         * assembly.c: make var static.
8975
8976 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8977
8978         * domain-internals.h: Put MonoJitInfo on a diet.
8979
8980         * domain.c: Fix a warning.
8981
8982 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8983
8984         * gc.c: rework the gc handles code to reuse handles
8985         when freed.
8986
8987 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8988
8989         * domain.c: fixed long standing bug in mono_string_equal() which
8990         was brought to light with the ldstr changes.
8991
8992 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8993
8994         * reflection.c: Remove warning by adding missing include for marshal.h
8995
8996 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8997
8998         * domain.c, object.c: change the ldstr_table to hold
8999         MonoString* as keys: makes the runtime isinterned lookup
9000         faster and simplifies memory management.
9001
9002 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9003  
9004         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
9005         possible to add imperative security checks before calling the icall.
9006         * reflection.c: Return security attributes on the original MonoMethod
9007         (and not the wrapped one). This fix permissions on icalls.
9008
9009 2005-01-25  Dick Porter  <dick@ximian.com>
9010
9011         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
9012         the check for mktime() support actually test the mktime() return
9013         value.  "Fixes" bug 71682, though the output is still different to
9014         MS.
9015
9016 2005-01-25  Martin Baulig  <martin@ximian.com>
9017
9018         * class.c (mono_class_is_assignable_from): Make this work for
9019         generic instances.
9020
9021 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
9022
9023         * marshal.c (mono_string_utf8_to_builder)
9024         (mono_string_builder_to_utf16): We might not have ownership of the
9025         string. In thise case, we need to create a new buffer.
9026
9027         * object-internals.h (mono_stringbuilder_capacity): sb->str might
9028         be null, in which case, use the default capacity.
9029
9030 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9031
9032         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
9033         GC events to the profiler.
9034
9035 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9036
9037         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
9038         if you don't want the GC to run.
9039
9040 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
9041
9042         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
9043         start providing a GC API and keeping different implementations in
9044         their own file.
9045         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
9046
9047 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
9048
9049         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
9050         mmap rather than allocating a huge buffer.
9051         (mono_debug_close_mono_symbol_file): Free the buffer allocated
9052         above.
9053
9054 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9055
9056         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
9057         and CheckExecutionRights.
9058         * reflection.c|h: Keep the index of the declarative security to be 
9059         used, instead of the pointer, when AOT compiler is used. Also add 
9060         class initialization when requesting demands.
9061         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
9062         CheckExecutionRights. Both properties are now FALSE by default, and
9063         unmodifiable, unless the --security option is used.
9064
9065 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9066
9067         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
9068         reflection.c: properly refcount images and assemblies, many leaks fixed.
9069
9070 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9071
9072         * threadpool.c: increase the timeout for threads in the thread pool to
9073         10s.  Fixes bug #67159.
9074
9075 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
9076
9077         * class-internals.h: Sun's compiler insists on explicit
9078         signed on bit fields to handle then correctly.
9079
9080 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
9081
9082         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
9083         Make the size of the array fit only the number of invalid path
9084         chars that we have.
9085
9086         * class.c (_mono_class_get): Improve the error reporting when a
9087         class referenced is not found, to assist debugging. 
9088
9089 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
9090
9091         * threads.c: fix off-by-one error.
9092         * domain.c: free data allocated in the domain.
9093
9094 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9095
9096         * reflection.c (mono_method_body_get_object): Fill out exception info
9097         as well.
9098
9099         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9100         structure.
9101         
9102 2005-01-19  Martin Baulig  <martin@ximian.com>
9103
9104         * loader.c (mono_get_method_constrained): Make this work again.
9105
9106 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9107
9108         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9109         guint16 to match the managed side.
9110
9111         * reflection.c (mono_reflection_body_get_object): Fill out local
9112         variables array.
9113
9114         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9115         as well.
9116
9117         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9118         'local_var_sig_token'.
9119
9120 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9121
9122         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9123         System.Drawing.
9124
9125         * reflection.c (mono_method_body_get_object): Handle abstract and
9126         runtime methods.
9127
9128 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9129
9130         * marshal.c, loader.c, class-internals.h, reflection.c:
9131         store the emthod data for a wrapper in an array instead of a list.
9132
9133 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9134
9135         * marshal.c: change the code to allocate memory more
9136         conservatively for method wrappers.
9137
9138 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9139
9140         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9141         fields from MonoClass to the marshal info structure where they belong.
9142
9143 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9144
9145         * class.c, object.c, class-internals.h, marshal.c: rearrange
9146         some fields and tweak some types to lower memory usage.
9147
9148 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9149
9150         * threads.c (signal_thread_state_change): Handle the case when the
9151         target thread is the current thread.
9152
9153         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9154
9155         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9156         emit_ptr_to_object_conv. 
9157
9158         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9159         marshalling. Fixes #71352.
9160
9161 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9162
9163         * metadata.h, blob.h: move table enum to blob.h so it can be included
9164         in any header.
9165         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9166         cut the size of MonoImage/MonoDynamicImage.
9167
9168 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9169
9170         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9171
9172 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9173
9174         * reflection.c, reflection.h, icall.c: add a function to check
9175         if an attribute type is defined for a metadata object.
9176
9177 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9178
9179         * object-internals.h: Added some needed fields from StringBuilder class.
9180         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9181
9182 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9183
9184         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9185         threads before shutting down the runtime.
9186
9187         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9188
9189 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9190
9191         * object-internal.h, threads.c: implement stacksize and 
9192         parameterized thread start functionality (requires
9193         matching corlib). Marked broken code for later removal.
9194
9195 2005-01-12  Martin Baulig  <martin@ximian.com>
9196
9197         * class-internals.h (MonoGenericClass): Moved the `initialized'
9198         flag to MonoDynamicGenericClass, removed `init_pending'.
9199         (MonoGenericInst): Added `is_reference' flag.
9200
9201 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9202
9203         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9204         inside the MSDOS header. Fixes #71201.
9205
9206         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9207         gc thread.
9208         (mono_domain_finalize): Ditto.
9209
9210 2005-01-12  Martin Baulig  <martin@ximian.com>
9211
9212         * class.c (mono_get_shared_generic_class): Use the cache for
9213         non-dynamic generic classes.
9214
9215         * class-internals.h (mono_class_create_generic_2): Removed
9216         function prototype, this function is now static inside class.c.
9217
9218         * class.c (mono_class_create_generic_2): Made this static, only
9219         call it from mono_class_init() and mono_class_setup_parent().
9220         (collect_implemented_interfaces_aux): Call mono_class_init() on
9221         the interfaces we collect.
9222         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9223
9224 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9225
9226         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9227         it a real thread handle.
9228
9229         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9230         MonoJitExceptionInfo, since each catch clause needs its own variable.
9231         
9232 2005-01-11  Dick Porter  <dick@ximian.com>
9233
9234         * image.c (mono_pe_file_open): New variant on mono_image_open()
9235         that does not set up the CLI metadata; used for FileVersionInfo so
9236         it can get the data for windows binaries too.
9237         
9238         * process.c (process_read_string_block): Don't read off the end of
9239         the StringTable block.
9240
9241         These both fix bug 70766.
9242
9243 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9244
9245         * gc.c: set some fields to NULL at GC cleanup time.
9246         * threads.c: if we quit the main thread, call exit ().
9247
9248 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9249
9250         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9251
9252 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9253
9254         * threads.h, threads.c, object.c: added accessor and settor for
9255         main_thread. Handle it specially when exiting from it: wait
9256         for other foreground threads to exit.
9257
9258 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9259
9260         * process.c, verify.c: remove some bloat.
9261
9262 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9263
9264         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9265         the calling convention to cdecl under win32.
9266
9267 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9268
9269         * object.c (mono_object_get_size): New function to get the size of
9270         an object instance.
9271
9272         * profiler.c (simple_allocation): Use above.
9273
9274 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9275
9276         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9277         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9278         get an appdomain by it's id and we can't assume the root's id is 0).
9279         * domain-internals.h: Change the function prototype to match.
9280         * icall.c: Change the icall table for AppDomain.
9281
9282 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9283
9284         * locales.c (string_invariant_compare_char): Only compute
9285         GUnicodeTypes in the case where we need them.  Test for ordinality
9286         first and return if so.
9287
9288         From the commit:
9289
9290                 /*
9291                  * FIXME: here we must use the information from c1type and c2type
9292                  * to find out the proper collation, even on the InvariantCulture, the
9293                  * sorting is not done by computing the unicode values, but their
9294                  * actual sort order.
9295                  */
9296
9297 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9298
9299         * loader.c: for P/Invoke methods, allow the "Internal" shared
9300         library name to refer to the calling process symbol namespace.
9301
9302 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9303
9304         * Makefile.am: Add the security manager to the build.
9305         * security-manager.c|h: New. Initialization of the security manager.
9306
9307 2005-01-07  Dick Porter  <dick@ximian.com>
9308
9309         * threads.c: 
9310         * monitor.c: Update thread state during Monitor and WaitHandle
9311         waits.  Fixes bug 71031.
9312
9313 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9314
9315         * reflection.c (property_encode_signature): Correctly handle when the
9316         property has no methods.
9317
9318 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9319
9320         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9321         
9322         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9323         fields from mb, not rmb. Fixes #71017.
9324
9325         * marshal.c (emit_ptr_to_str_conv): Add support for 
9326         ByValTStr -> string conversion. Fixes #71015.
9327
9328         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9329
9330         * mempool.c (mono_mempool_contains_addr): New helper function.
9331
9332 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9333
9334         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9335         HasSematics encoded fields.
9336         
9337         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9338         invalid string marshalling.
9339
9340         * metadata.c: Fix warnings.
9341         
9342 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9343
9344         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9345         profiler support.
9346
9347 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9348
9349         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9350         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9351         tests.
9352
9353 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9354
9355         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9356         so methods containing these can be AOTed.
9357
9358 2005-01-03  Martin Baulig  <martin@ximian.com>
9359
9360         * loader.c (find_method): Removed the hack for generic instances.
9361         (method_from_memberref): If our parent is a generic instance, pass
9362         its generic type definition to find_method() and then inflate the
9363         method.
9364         (mono_get_method_constrained): Pass the generic type definition to
9365         find_method() and inflate the method later.
9366
9367         * class-internals.h (MonoStats): Added `generic_class_count'.
9368
9369         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9370         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9371
9372         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9373         generic type definitions.
9374
9375 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9376
9377         * loader.c icall.c: Fix warnings.
9378
9379 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9380
9381         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9382         blittable types. Fixes #70864.
9383
9384 2004-12-29  Martin Baulig  <martin@ximian.com>
9385
9386         * icall.c
9387         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9388
9389         * reflection.c (mono_method_get_object): Create a
9390         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9391         call mono_get_inflated_method().
9392
9393         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9394
9395 2004-12-27  Martin Baulig  <martin@ximian.com>
9396
9397         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9398         (MonoMethodInflated): Added `inflated' field.
9399
9400         * class.c (mono_class_inflate_generic_method): Don't really
9401         inflate the method here; just set the `is_inflated' flag in the
9402         MonoMethod.
9403         (mono_class_get_inflated_method): Actually inflate the method here
9404         if it's not already inflated; we use the MonoMethodInflated's new
9405         `inflated' field as a cache.
9406
9407 2004-12-26  Martin Baulig  <martin@ximian.com>
9408
9409         * class.c
9410         (inflate_generic_class): Moved some code out of inflate_generic_type().
9411         (mono_class_inflate_generic_method): If we're already inflated,
9412         inflate the context and use the declaring method; ie. make sure
9413         the declaring method of an inflated method is always the generic
9414         method definition.
9415         (mono_class_create_from_typedef): Create
9416         `class->generic_container->context->gclass'.
9417
9418 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9419
9420         * metadata-internals.h, marshal.c, reflection.c: More
9421         MonoGHashTable->GHashTable.
9422
9423         * domain-internals.h, class.c: Change MonoGHashTable's into
9424         GHashTables for some cases where no gc stuff is used
9425
9426         All users: update apis
9427
9428 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9429
9430         * metadata.c (builtin_types): Make this `const'. Makes this get
9431         put into the shareable section.
9432         (mono_metadata_init): Casts to make gcc happy.
9433
9434 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9435
9436         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9437
9438 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9439
9440         * icall.c: Added an internal call to retrieve the position and length
9441         of assembly-level declarative security attributes (RequestMinimum, 
9442         RequestOptional and RequestRefuse). This is used by the Assembly class
9443         to re-create the corresponding permission sets.
9444
9445 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9446
9447         * marshal.c: fix the stelemref wrapper to be type correct
9448         (and faster).
9449
9450 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9451
9452         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9453         to do key & 0x7fffffff. Hashtable already does this. It just
9454         results in longer code.
9455
9456 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9457
9458         * appdomain.c: Bump corlib version.
9459         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9460         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9461         * reflection.c|h: Add functions to get declarative security infos
9462         (blob position and length) for assemblies, classes and methods.
9463
9464 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9465
9466         * reflection.c: sort the constant table (bug #70693).
9467
9468 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9469
9470         * object-internals.h, threads.c, domain.c: add accessors for
9471         the MonoThread and MonoDomain tls keys.
9472
9473 2004-12-18  Martin Baulig  <martin@ximian.com>
9474
9475         * class.c (inflate_generic_type): If we're inflating a generic
9476         instance, set `ngclass->context->container = context->container';
9477         ie. the container we inflated into.
9478
9479         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9480         inflate_generic_type() changes.
9481
9482 2004-12-17  Martin Baulig  <martin@ximian.com>
9483
9484         * class-internals.h
9485         (MonoGenericClass): Replaced `MonoType *generic_type' with
9486         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9487         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9488         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9489
9490 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9491
9492         * exception.c (mono_exception_from_token): New helper function.
9493
9494 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9495
9496         * assembly.c (mono_assembly_load_with_partial_name): Call 
9497         mono_assembly_loaded before invoking the preload hooks. Fixes
9498         #70564.
9499
9500         * object-internals.h (MonoThread): Change culture_info and 
9501         ui_culture_info into an array.
9502
9503         * threads.c: Cache culture info objects from more than one appdomain.
9504
9505         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9506         current UI culture.
9507
9508 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9509
9510         * threads.h threads.c appdomain.c: Clear the culture_info field of
9511         all threads during unloading if they point to an object in the dying
9512         appdomain.
9513
9514 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9515
9516         * culture-info.h (TextInfoEntry): New struct
9517         * object-internals.h: sync with managed
9518         * locales.c: fill the `text_info_data' field
9519         * culture-info-tables.h: update
9520
9521 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9522
9523         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9524         collector.
9525
9526 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9527
9528         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9529         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9530
9531 2004-12-12  Martin Baulig  <martin@ximian.com>
9532
9533         * mono-debug-debugger.c (write_type): If we're an enum and the
9534         builtin types have already been initialized, call mono_class_init().
9535
9536 2004-12-11  Martin Baulig  <martin@ximian.com>
9537
9538         * metadata.c (mono_metadata_load_generic_params): Added
9539         `MonoGenericContainer *parent_container' argument; automatically
9540         compute `container->is_method'; pass the correct owner to
9541         get_constraints().      
9542
9543         * reflection.c (compare_genericparam): Sort the GenericParam table
9544         according to increasing owners. 
9545
9546 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9547
9548         * profiler.c: allow disabling the default profiler.
9549
9550 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9551
9552         * decimal.c, icall.c: allow disabling System.Decimal support.
9553
9554 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9555
9556         * reflection.c: Add support for null attribute arguments.
9557
9558 2004-12-09  Martin Baulig  <martin@ximian.com>
9559
9560         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9561         names to get rid of compiler warnings.
9562
9563 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9564
9565         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9566         mono_marshal_load_type_info (). Fixes #69625.
9567         (mono_marshal_get_ptr_to_struct): Likewise.
9568
9569 2004-12-08  Martin Baulig  <martin@ximian.com>
9570
9571         * mono-debug.h: Bumped version number to 47.
9572
9573         * mono-debug-debugger.c
9574         (mono_debugger_event_handler, mono_debugger_event): Take two
9575         guint64 arguments insteed of a gpointer and a guint32.  
9576
9577 2004-12-08  Martin Baulig  <martin@ximian.com>
9578
9579         * debug-mono-symfile.h
9580         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9581         `address' to `native_offset'.
9582
9583 2004-12-08  Martin Baulig  <martin@ximian.com>
9584
9585         * class.c (mono_class_create_from_typespec): Only inflate if we
9586         either have `context->gclass' or `context->gmethod'.
9587
9588 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9589
9590         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9591
9592         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9593
9594         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9595
9596         * reflection.c (mono_assembly_get_object): Remove the workaround put
9597         in for the release.
9598         
9599         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9600
9601         * appdomain.c: Bump corlib version.
9602
9603         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9604         be visible in other appdomains.
9605
9606 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9607
9608         * threads.c: Interlocked inc and dec for longs were messed up,
9609         use a KISS based impl for this. Fixes 70234
9610
9611 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9612
9613         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9614
9615 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9616
9617         * icall.c: fix to follow policy not to allow struct
9618         arguments in icalls.
9619
9620 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9621
9622         * process.c: make the patch that handles spaces in file paths work
9623         on mono/windows too.
9624
9625 2004-12-06  Martin Baulig  <martin@ximian.com>
9626
9627         * class.c (mono_class_create_generic): Call
9628         mono_class_setup_supertypes() if we're dynamic.
9629         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9630
9631 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9632
9633         * object-internals.h: Add new fields to MonoThread.
9634
9635         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9636
9637         * icall.c threads-types.h threads.c: Add new icalls.
9638
9639         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9640
9641         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9642         managed side.
9643
9644         * appdomain.c: Bump corlib version.
9645
9646         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9647         internal assemblies. Fixes #69181.
9648
9649 2004-12-05  Martin Baulig  <martin@ximian.com>
9650
9651         * class.c (mono_class_inflate_generic_signature): Make this a
9652         no-op if `context' is NULL or we don't have any type parameters;
9653         also copy `sentinelpos'.        
9654
9655 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9656
9657         * image.c: Add unbox_wrapper_cache.
9658
9659         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9660
9661         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9662         function generator.
9663         
9664         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9665         Fixes #70173.
9666
9667         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9668         
9669 2004-12-04  Martin Baulig  <martin@ximian.com>
9670
9671         * loader.c (mono_method_get_signature_full): New public function;
9672         like mono_method_get_signature(), but with an additional
9673         `MonoGenericContext *' argument.
9674
9675         * class.c (mono_class_inflate_generic_signature): Formerly known
9676         as inflate_generic_signature(); make this public.
9677
9678 2004-12-04  Martin Baulig  <martin@ximian.com>
9679
9680         * metadata.c
9681         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9682         instead of a `MonoGenericContainer *'.  
9683         (mono_metadata_parse_array_full): Likewise.
9684         (mono_metadata_parse_signature_full): Likewise.
9685         (mono_metadata_parse_method_signature_full): Likewise.
9686         (mono_metadata_parse_generic_inst): Likewise.
9687         (mono_metadata_parse_generic_param): Likewise.
9688         (mono_metadata_parse_mh_full): Likewise.
9689         (mono_type_create_from_typespec_full): Likewise.
9690
9691 2004-12-03  Martin Baulig  <martin@ximian.com>
9692
9693         * class-internals.h (MonoGenericContainer): Replaced the
9694         `MonoGenericContext * pointer with a `MonoGenericContext'
9695         structure and made it the first element.
9696
9697 2004-12-03  Martin Baulig  <martin@ximian.com>
9698
9699         * class.c
9700         (inflate_generic_type): Set the `context->container' when creating
9701         a new MonoGenericContext.
9702         (mono_class_inflate_generic_method): Likewise.
9703         (mono_class_create_from_typespec): Just use `context->container'
9704         to get the container.
9705
9706         * loader.c (method_from_methodspec): Set `context->parent' from
9707         `context->container' - and if that's a method container, use its
9708         parent.  Also set the `context->container' when creating a new
9709         MonoGenericContext.
9710         (mono_get_method_from_token): Use just `context->container' to get
9711         the container.
9712
9713         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9714         `gclass->context->container'.
9715
9716         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9717         the `context->container' when creating a new MonoGenericContext.
9718
9719 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9720
9721         * reflection.c (compare_genericparam): Sort params with identical
9722         owner by their number. Fixes gen-111 on sparc.
9723
9724 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9725
9726         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9727         around the domain changes.
9728
9729         * appdomain.c (mono_domain_unload): Handle the case when the thread
9730         calling Unload is itself being aborted during unloading. Fixes #70022.
9731
9732         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9733
9734         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9735         checkpoint_func as an icall so it gets a wrapper.
9736         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9737         in the cross-appdomain wrappers too.
9738
9739         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9740
9741         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9742
9743         * reflection.c: Fix some memory leaks.
9744         
9745 2004-12-02  Martin Baulig  <martin@ximian.com>
9746
9747         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9748
9749         * metadata.c (generic_class_cache): New static hashtable.
9750         (mono_metadata_lookup_generic_class): New public method.
9751
9752 2004-12-02  Martin Baulig  <martin@ximian.com>
9753
9754         * class.c (mono_class_create_from_typedef): Call
9755         mono_class_setup_parent() and mono_class_create_mono_type() before
9756         parsing the interfaces.
9757
9758 2004-12-02  Martin Baulig  <martin@ximian.com>
9759
9760         * metadata.c (generic_inst_cache): New static hashtable.
9761         (mono_metadata_lookup_generic_inst): New public function.
9762         (mono_metadata_inflate_generic_inst): New public function.
9763         (mono_metadata_parse_generic_inst): New public function.
9764         (do_mono_metadata_parse_generic_class): Use the new
9765         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9766         since this'll also use the cache.
9767
9768         * reflection.c (mono_reflection_bind_generic_method_parameters):
9769         Use mono_metadata_lookup_generic_inst() to use the new cache.
9770
9771         * class.c (inflate_mono_type): Use
9772         mono_metadata_inflate_generic_inst() to inflate a generic
9773         instance; this'll also use the new cache.
9774
9775         * loader.c (method_from_methodspec): Use
9776         mono_metadata_parse_generic_inst() and
9777         mono_metadata_inflate_generic_inst() rather than parsing it
9778         manually, so we can use the new cache.
9779
9780 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9781
9782         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9783         the wait times out.
9784
9785 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9786
9787         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9788         iter->args based on whether parameters are passed in registers (i.e.
9789         MONO_ARCH_REGPARMS is defined)
9790
9791 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9792
9793         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9794         the exception message. Fixes #70070.
9795         (method_from_methodspec): Fix warnings.
9796
9797 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9798
9799         * process.c: (complete_path) return the path quoted
9800
9801 2004-12-01  Martin Baulig  <martin@ximian.com>
9802
9803         * class-internals.h (MonoGenericInst): New structure.
9804         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9805         `is_open' with `MonoGenericInst *inst'.
9806         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9807         `is_open' with `MonoGenericInst *inst'.
9808
9809 2004-11-30  Martin Baulig  <martin@ximian.com>
9810
9811         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9812
9813         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9814         to `generic_class_cache'.
9815
9816         * metadata.c
9817         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9818         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9819         (mono_generic_inst_is_valuetype): Renamed to
9820         mono_generic_class_is_valuetype().
9821
9822         * class-internals.h
9823         (MonoGenericInst): Renamed to MonoGenericClass.
9824         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9825         (MonoClass): Renamed `generic_inst' to `generic_class'.
9826         (MonoGenericContext): Renamed `ginst' to `gclass'.
9827
9828         * object-internals.h
9829         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9830
9831         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9832         mono_reflection_generic_class_initialize().
9833
9834         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9835         now known as "System.Reflection.MonoGenericClass".
9836         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9837
9838 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9839
9840         * class-internals.h: Added a flag field to MonoClass to cache the
9841         declarative security attributes actions associated with the class.
9842         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9843         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9844         applicable to the JITted method.
9845         * reflection.c|h: Added functions to extract (as flags) which security
9846         actions are available (declaratively) for a method, class or assembly.
9847         * metadata.c|h: Added functions to search the declarative security
9848         table in the metadata.
9849         
9850 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9851
9852         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9853         EXPORTEDTYPES are already in the class name cache, so there is no
9854         need to add extra code here to look at them. Just removes a bit of
9855         cruft.
9856
9857         (ves_icall_System_Environment_get_TickCount): No need for #if
9858         WINDOWS. We already have the code in io-layer.
9859
9860 2004-11-28  Martin Baulig  <martin@ximian.com>
9861
9862         * loader.c
9863         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9864         Fixes gen-112.cs.
9865
9866 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9867
9868         * assembly.c (do_mono_assembly_open): Instead of having a
9869         conditional WITH_BUNDLE, incorporate support for bundles here, by
9870         having a global `bundles' variable holding a pointer to the actual
9871         bundles. 
9872
9873         (mono_register_bundled_assemblies): New API call used by the
9874         bundle code. 
9875
9876         See mkbundle.1 for details.
9877         
9878 2004-11-27  Martin Baulig  <martin@ximian.com>
9879
9880         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9881         the vtable for generic methods.
9882
9883 2004-11-26  Martin Baulig  <martin@ximian.com>
9884
9885         * metadata.c
9886         (mono_metadata_generic_method_hash): New public function.
9887         (mono_metadata_generic_method_equal): Likewise.
9888
9889         * class-internals.h
9890         (MonoGenericContainer): Added `GHashTable *method_hash'.
9891
9892         * reflection.c (ReflectionMethodBuilder): Added
9893         `MonoGenericContainer *generic_container'.
9894         (reflection_methodbuilder_to_mono_method): Don't create a new
9895         MonoGenericContainer each time we're called.
9896         (mono_reflection_bind_generic_method_parameters): Use
9897         `container->method_hash' to cache the results so we don't create a
9898         different method if we're called several times with the same
9899         arguments.
9900
9901         * loader.c (method_from_methodspec): Use the new
9902         `container->method_hash' here, too.
9903
9904 2004-11-26  Martin Baulig  <martin@ximian.com>
9905
9906         * class.c (inflate_generic_signature): Correctly compute
9907         `res->has_type_parameters'.
9908         (mono_class_vtable): Use the `has_type_parameters' flag to
9909         determine whether we're a generic method.
9910
9911         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9912
9913 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9914
9915         * object.c (mono_runtime_run_main): Fix a small memory leak.
9916
9917 2004-11-25  Martin Baulig  <martin@ximian.com>
9918
9919         * class.c (set_generic_param_owner): Fixed the loop.
9920
9921 2004-11-25  Martin Baulig  <martin@ximian.com>
9922
9923         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9924         generic methods.
9925
9926 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9927
9928         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9929         names. Fixes #69787.
9930
9931 2004-11-24  Martin Baulig  <martin@ximian.com>
9932
9933         * class.c (mono_class_create_generic_2): If we don't have a
9934         `ginst->parent', inflate `gklass->parent' to get our parent.
9935
9936 2004-11-24  Martin Baulig  <martin@ximian.com>
9937
9938         * reflection.c (compare_genericparam): Correctly sort the
9939         GenericParam table; fixes #69779.
9940
9941 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9942
9943         * reflection.c: When writing a PE file, don't create a huge
9944         buffer in memory. Just write the arrays we have to the file.
9945         This reduces memory usage.
9946
9947         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9948         globally.
9949
9950 2004-11-17  Martin Baulig  <martin@ximian.com>
9951
9952         * class.c (mono_class_init): Don't setup `class->parent' for
9953         dynamic instances; moved this to mono_class_generic_2().
9954         (mono_class_create_generic): Also set `klass->inited' for dynamic
9955         generic instances.
9956         (mono_class_create_generic_2): Don't do anything for dynamic
9957         generic instances.  Set `klass->parent' here and also call
9958         mono_class_setup_parent() here. 
9959
9960         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9961         `MonoType *parent' argument; set `ginst->parent' before calling
9962         mono_class_create_generic_2(), so we set the correct parent.
9963
9964 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9965
9966         * reflection.c: allow getting attributes from ModuleBuilder
9967         (used by ikvm).
9968
9969 2004-11-17  Martin Baulig  <martin@ximian.com>
9970
9971         * class.c (mono_class_create_from_typedef): If a type parameter is
9972         inherited from an outer class, set its owner to that class.
9973
9974 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9975
9976         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9977           for (int*) written size. This fixes bug #69592.
9978
9979 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9980
9981         * icall.c: Added IsAuthenticodePresnet internal call.
9982         * image.c|h: New function that check a MonoImage for an Authenticode
9983         signature in the certificate PE data directory.
9984         * security.c|h: New internal call to ask the runtime if an 
9985         Authenticode signature seems referenced in the PE header.
9986
9987 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9988
9989         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9990
9991         * reflection.c (mono_image_create_pefile): Free the assembly streams
9992         after writing out the assembly file.
9993
9994         * object.c (mono_runtime_run_main): Fix small memory leak.
9995
9996         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9997         property access modifiers. Fixes #69389.
9998
9999 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
10000
10001         * domain.c, object.c, object-internals.h, domain-internals.h,
10002         object.h, marshal.c: keep dynamic code info per domain.
10003
10004 2004-11-15  Martin Baulig  <martin@ximian.com>
10005
10006         * class.c (mono_type_get_name_recurse): Put type arguments in
10007         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
10008         see bug #68387.
10009
10010 2004-11-15  Martin Baulig  <martin@ximian.com>
10011
10012         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
10013         (mono_class_setup_vtable): When computing `the_cname' for a
10014         generic instance, don't include the namespace since we'd otherwise
10015         add it twice.
10016
10017 2004-11-15  Martin Baulig  <martin@ximian.com>
10018
10019         * class.c (mono_class_create_generic): Changed return type to void.
10020         (mono_class_create_generic_2): New public function; setup
10021         `class->method', `class->field' and `class->interfaces' here
10022         instead of in mono_class_init().
10023
10024         * class.h (mono_class_create_generic): Moved to class-internals.h.
10025
10026 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
10027
10028         * reflection.c (mono_image_create_pefile): take a file HANDLE.
10029         rather than writing to memory, write to this file. Right now,
10030         we are just writting into a buffer, and copying that. However
10031         we can avoid the buffer later.
10032
10033         (mono_dynamic_stream_reset): new function
10034
10035         * icall.c, object-internals.h: update for the above.
10036
10037 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
10038
10039         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
10040         have been using gc'd memory. First it is slower, unlikely
10041         the comment in the source code said, secondly, it increases
10042         our footprint to do it in the gc.
10043
10044         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
10045         the method so that it does not have to copy to managed code.
10046
10047 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
10048
10049         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
10050
10051 2004-11-12  Martin Baulig  <martin@localhost>
10052
10053         * reflection.c (mono_image_create_token): Allow generic method
10054         definitions here, since they may appear in an `.override'; see
10055         gen-98/gen-99 for an example.
10056
10057 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
10058
10059         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
10060         #69365.
10061
10062         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
10063         descriptive.
10064
10065 2004-11-11  Martin Baulig  <martin@ximian.com>
10066
10067         * class.c (mono_class_setup_vtable): In an explicit interface
10068         implementation, the method name now includes the arity.
10069
10070 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
10071
10072         * object.c (mono_array_full_copy): Fix warning.
10073
10074 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
10075
10076         * appdomain.c: Removed look_for_method_by_name(). Use the new method
10077         mono_class_get_method_from_name() instead.
10078         
10079         * class-internals.h: Added two new types of wrappers. 
10080         Added MonoRemotingTarget enum. Added new trampoline function type, which
10081         takes an additional MonoRemotingTarget value as parameter, so it is
10082         possible to request a trampoline for a specific target.
10083         
10084         * class.c: Added new mono_class_get_method_from_name() method.
10085         
10086         * class.h: In MonoRemoteClass, we can have now to vtables, one for
10087         general remoting sinks and one specific for cross domain calls.
10088         
10089         * debug-helpers.c: Added new wrapper names.
10090         
10091         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
10092         of a remote class.
10093         
10094         * image.c: Porperly delete value objects form the remoting invoke hashtable.
10095         
10096         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
10097         with several other methods (mono_marshal_get_xappdomain_dispatch,
10098         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10099         and others) can generate a fast remoting wrapper for cross domain calls.
10100         More information can be found in docs/remoting.
10101         Other changes: Removed mono_find_method_by_name, and used
10102         mono_class_get_method_from_name instead.
10103         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10104         is stored in the remoting invoke hashtable.
10105         
10106         * marshal.h: published the new method for getting the xdomain wrapper,
10107         and also added a method for getting the adequate wrapper for a given
10108         method and target.
10109         
10110         * object-internals.h, object.c: Added a couple of methods for capying and
10111         cloning arrays.
10112         Modified mono_install_remoting_trampoline, which takes the new remoting
10113         trampoline that has a remoting target as parameter.
10114         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10115         will return the most suitable vtable for the target.
10116         Added mono_remote_class_vtable, which returns the vtable of a remote class
10117         (which can be the normal remoting vtable or the xdomain vtable).
10118         
10119         * threads.c: the xdomain invoke and dispatch wrappers must also be
10120         protected against interruptions.
10121
10122 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10123
10124         * icall.c: use memmove in BlockCopyInternal when the source and
10125         destination arrays are the same.
10126
10127 2004-11-09  Martin Baulig  <martin@ximian.com>
10128
10129         * class-internals.h (MonoGenericContainer): Removed `method' and
10130         `signature', replaced them with `is_method' and `is_signature'
10131         flags.  Added `context'.
10132
10133         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10134         instead of a `MonoGenericContainer *'.
10135
10136         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10137         for dynamic type parameters.
10138         (mono_metadata_load_generic_params): Setup `container->context'.
10139
10140         * reflection.c (mono_reflection_setup_generic_class): Setup
10141         `tb->generic_container->context'.
10142         (do_mono_reflection_bind_generic_parameters): Use
10143         mono_class_inflate_generic_type() to correctly inflate types,
10144         rather than using our own hack just for MONO_TYPE_VAR.
10145
10146 2004-11-09  Martin Baulig  <martin@ximian.com>
10147
10148         * class.c (mono_class_inflate_generic_method): Small fix; don't
10149         crash here.
10150
10151         * icall.c
10152         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10153         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10154         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10155         (ves_icall_Type_BindGenericParameters): Likewise.
10156         (ves_icall_Type_get_IsGenericInstance): Likewise.
10157         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10158         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10159         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10160         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10161
10162 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10163
10164         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10165         assembly versions and public key tokens. Fixes #69113.
10166
10167 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10168
10169         * metadata.c: fix bug introduced with the type cache changes
10170         on 2004-11-06.
10171
10172 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10173
10174         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10175         the MonoClass pointer instead of the token in exception clauses.
10176         * reflection.c: updates for the above and make the code not depend
10177         on the structure of MonoExceptionClause.
10178
10179 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10180
10181         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10182         Add support for dynamic assemblies. Fixes #69114.
10183
10184         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10185
10186 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10187
10188         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10189         since most only those methods use it. the code member of
10190         MonoMethodPInvoke was dead, so that can be removed too. Also,
10191         remove inline_count (again, not used), and move slot so that it
10192         can share bits with some other flags. This saves 8 bytes in the
10193         structure and gives us about 50 kb back for mcs helloworld.cs
10194
10195         * *.[ch]: Do naming changes for the above.
10196
10197         * loader.c (mono_method_get_header): Lazily init the header
10198         on first access.
10199         (mono_get_method_from_token): don't init the header here
10200         (mono_free_method): the header may never be allocated
10201
10202         Overall, this saves 150 kb of unmanaged allocations
10203         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10204         memory at runtime.
10205         
10206         * loader.c, loader.h (mono_method_get_header): new accessor.
10207
10208         * *.[ch]: use the above method. Prepares us to lazily load
10209         the header.
10210
10211         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10212         three warnings, which are actual bugs (see 69206).
10213
10214         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10215         unused. Saves a cool 4 bytes / method.
10216
10217 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10218
10219         * metadata.c (builtin_types): Add types for System.Object here.
10220         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10221         for a class or valuetype from klass->this_arg or klass->byval_arg.
10222
10223         On mcs for a hello world, this gets us down from 21836 MonoType's
10224         to 14560.
10225
10226         (mono_metadata_free_type): Account for the above change.
10227
10228 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10229
10230         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10231         exception instead of asserting if name is null.
10232         (ves_icall_System_AppDomain_GetData): Ditto.
10233
10234 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10235
10236         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10237         EnumBuilder.
10238
10239         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10240         Return NULL when the domain does not have entry_assembly set.
10241
10242         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10243         Add a 'resource_modules' argument.
10244         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10245
10246         * reflection.c (mono_reflection_create_runtime_class): Move setting
10247         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10248         for enums too.
10249
10250         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10251         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10252         Throw an ArgumentNullException if 'ptr' is null.
10253
10254         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10255         assemblies here. Fixes #69020.
10256
10257 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10258
10259         * reflection.c (build_compressed_metadata): Fix the previous patch for
10260         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10261         the stack.
10262
10263 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10264
10265         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10266         the cultures is false. Fixes #69090.
10267
10268         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10269         detected by valgrind.
10270         
10271         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10272         TypeResolve multiple times for the same type. Fixes #65577.
10273
10274 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10275
10276         * marshal.c: Avoid using ldftn to call managed functions. It is
10277         much slower than just a call.
10278
10279         * reflection.c (mono_module_get_object): free the basename we
10280         allocate here from glib.
10281         
10282         * reflection.c (ensure_runtime_vtable): make sure to free
10283         overrides.  Also, we were allocating an array of MonoMethod not an
10284         array of MonoMethod*.
10285
10286         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10287
10288         * image.c (mono_image_close): free image->guid here.
10289
10290 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10291
10292         * reflection.c: Fix some spec conformance issues with the PE file
10293         structures so mcs compiled apps run on the Net 2.0 beta.
10294
10295 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10296
10297         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10298         Implement this. Fixes #67264.
10299
10300         * debug-helpers.h debug-helpers.c marshal.c: Move 
10301         mono_find_method_by_name to debug-helpers.c.
10302
10303 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10304
10305         * object.c (mono_release_type_locks): type_initialization_hash is
10306         a GHashTable.
10307
10308         * reflection.c object.c object-internals.h: Fix warnings.
10309
10310         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10311         without accessors. Fixes #61561.
10312
10313         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10314         application base from the root domain if not set. Fixes #65641.
10315         (mono_runtime_init): Fix warning.
10316
10317 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10318
10319         * appdomain.c: call mono_thread_pool_init.
10320         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10321         of worker threads based on the number of CPUs and the environment
10322         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10323         for non-windows (windows) systems.
10324
10325 2004-10-27  Chris Toshok  <toshok@ximian.com>
10326
10327         * mono-debug-debugger.c (write_class): don't call mono_class_init
10328         here, as even with the check for (!klass->init_pending), we get
10329         into a situation where we're hitting cycles in class
10330         initialization.  Fixes #68816.
10331
10332 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10333
10334         * image.c: Avoid overwriting values in the loaded_images_hash when an
10335         assembly is loaded multiple times. Fixes #61152.
10336
10337         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10338         so multiple satellite assemblies for the same name can be loaded.
10339         Fixes #68259.
10340
10341         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10342         not NULL.
10343
10344         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10345         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10346
10347         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10348         pending finalizers are not invoked after the appdomain has been 
10349         unloaded. Fixes #67862.
10350
10351 2004-10-22  Martin Baulig  <martin@ximian.com>
10352
10353         * mono-debug-debugger.c
10354         (mono_debugger_runtime_invoke): Don't box valuetypes.
10355
10356 2004-10-22  Chris Toshok  <toshok@ximian.com>
10357
10358         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10359         don't hide private methods.
10360
10361 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10362
10363         * icall.c: Allows the runtime to "share" (when known) the public key
10364         token of an assembly. This avoid the need to recalculate the token 
10365         (from the public key) in managed code.
10366
10367 2004-10-21  Chris Toshok  <toshok@ximian.com>
10368
10369         * debug-helpers.c (append_class_name): argh, revert last patch.
10370         
10371 2004-10-21  Chris Toshok  <toshok@ximian.com>
10372
10373         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10374         not '/', so that it matches what the debugger uses to look up
10375         methods.
10376
10377 2004-10-21  Martin Baulig  <martin@ximian.com>
10378
10379         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10380         public method; this is called each time an exception is thrown and
10381         allows the debugger to use exception catch points.
10382
10383 2004-10-21  Martin Baulig  <martin@ximian.com>
10384
10385         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10386         the stack pointer and the exception object in some struct and pass
10387         that to the debugger.
10388
10389 2004-10-21  Chris Toshok  <toshok@ximian.com>
10390
10391         * mono-debug-debugger.c (do_write_class): add instance/static
10392         event support.  We don't expose "raise" or "other" yet.
10393         (event_is_static): new method.
10394
10395 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10396
10397         * mono-debug-debugger.c
10398         (mono_debugger_handle_exception): Remove
10399         bogus return value for fussy compilers.
10400
10401 2004-10-20  Martin Baulig  <martin@ximian.com>
10402
10403         * mono-debug-debugger.c
10404         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10405         (mono_debugger_handled_exception): Likewise.
10406
10407 2004-10-20  Martin Baulig  <martin@ximian.com>
10408
10409         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10410         MONO_DEBUGGER_EVENT_EXCEPTION.
10411
10412         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10413         public function to send the debugger a notification for an
10414         exception and inform it about a catch/finally clause.
10415
10416 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10417
10418         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10419         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10420         fix 2.95 build. 
10421
10422         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10423
10424 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10425
10426         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10427         marshalled as [In,Out]. Fixes #58325.
10428
10429 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10430
10431         * reflection.c (mono_method_body_get_object): Implement some fields.
10432
10433 2004-10-12  Martin Baulig  <martin@ximian.com>
10434
10435         * reflection.c (mono_reflection_bind_generic_parameters): Small
10436         fix, correctly retrieve our parent from a generic instance.
10437
10438 2004-10-12  Martin Baulig  <martin@ximian.com>
10439
10440         * metadata.c (mono_metadata_generic_param_equal): We always have
10441         an owner.
10442
10443         * class.c
10444         (mono_class_from_generic_parameter): We need to have an owner.
10445         (my_mono_class_from_generic_parameter): Likewise.
10446
10447         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10448         mono_reflection_create_generic_class() and added a new
10449         mono_reflection_setup_generic_class().  
10450         (mono_reflection_initialize_generic_param): If we're a nested
10451         generic type and inherited from the containing class, set our
10452         owner to the outer class.
10453
10454 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10455
10456         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10457
10458         * reflection.c (mono_method_body_get_object): New function to create
10459         a MethodBody object.
10460
10461         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10462
10463 2004-10-11  Martin Baulig  <martin@ximian.com>
10464
10465         * metadata.c (_mono_metadata_type_equal): Renamed to
10466         do_mono_metadata_type_equal() and made static.
10467
10468 2004-10-11  Martin Baulig  <martin@ximian.com>
10469
10470         * appdomain.c: Bump corlib version number to 28.
10471
10472 2004-10-10  Martin Baulig  <martin@ximian.com>
10473
10474         * class-internals.h
10475         (MonoGenericInst): Added `MonoGenericContainer *container'.
10476         (MonoGenericMethod): Likewise.
10477         (MonoGenericContext): Likewise.
10478         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10479
10480         * metadata.c
10481         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10482         (do_mono_metadata_parse_generic_inst): Likewise.
10483         (mono_metadata_parse_type_full): New public method.  This is the actual
10484         mono_metadata_parse_type() implementation - with an additional
10485         `MonoGenericContainer *' argument.
10486         (mono_metadata_parse_array_full): Likewise.
10487         (mono_metadata_parse_signature_full): Likewise.
10488         (mono_metadata_parse_method_signature_full): Likewise.
10489         (mono_metadata_parse_mh_full): Likewise.
10490         (mono_type_create_from_typespec): Likewise.
10491         (mono_metadata_interfaces_from_typedef_full): New public method;
10492         this is similar to the other _full() methods, but we take a
10493         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10494         (mono_metadata_parse_generic_param): Take an additional
10495         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10496         from that container.
10497         (mono_metadata_generic_param_equal): New static method to compare
10498         two type parameters.
10499         (_mono_metadata_type_equal): New static method; takes an
10500         additional `gboolean signature_only' argument - if true, we don't
10501         compare the owners of generic parameters.
10502         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10503         with a TRUE argument - do a signature-only comparision.
10504
10505         * loader.c: Use the new _full() methods and pass the
10506         MonoGenericContainer to them.
10507
10508         * object-internals.h (MonoReflectionTypeBuilder): Added
10509         `MonoGenericContainer *generic_container' field.
10510         (MonoReflectionMethodBuilder): Likewise.
10511
10512 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10513
10514         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10515         case initial images of dynamic assemblies.
10516
10517         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10518
10519         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10520
10521         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10522         length of event->other array.
10523         (typebuilder_setup_events): Ditto.
10524
10525         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10526         'assembly_by_name' and add an 'assemblies' list.
10527
10528         * assembly.h assembly.c: Add a new search hook for determining whenever
10529         an assembly is already loaded. Use this instead of searching in the
10530         loaded_assemblies list.
10531
10532         * domain.c appdomain.c: Implement the new search hook so loaded 
10533         assemblies are now scoped by appdomain. Fixes #67727.
10534
10535 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10536
10537         * threads.c (mono_thread_attach): Initialize synch_lock field so
10538         mono_thread_detach works again.
10539
10540         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10541         'lib' too. Fixes #63130.
10542
10543 2004-10-06  Jackson Harper  <jackson@ximian.com>
10544
10545         * culture-info-tables.h: regenerated.
10546
10547 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10548
10549         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10550         implemented by other interfaces in the result. Fixes #65764.
10551         
10552         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10553         Handle unloadable modules without crashing.
10554
10555         * image.c (load_modules): Revert the previous patch since modules must
10556         have a fixed index inside the array.
10557         
10558         * image.c (load_modules): Don't include native modules in the modules
10559         array.
10560
10561 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10562
10563         * reflection.h: Add param_defaults field.
10564
10565         * reflection.c: Add support for parameter defaults in dynamic methods.
10566         Fixes #64595.
10567
10568         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10569         an empty string when a type has no namespace. Fixes #64230.
10570
10571 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10572
10573         * tabledefs.h: Added "internal" security actions to support non-CAS
10574         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10575         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10576
10577 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10578
10579         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10580         constructor of abstract class. Fixes #61689.
10581
10582 2004-10-04  Martin Baulig  <martin@ximian.com>
10583
10584         * class-internals.h (MonoGenericContainer): New type.
10585         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10586         `MonoGenericContainer *generic_container'.
10587         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10588         `MonoGenericContainer *generic_container'.
10589
10590         * metadata.c (mono_metadata_load_generic_params): Return a
10591         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10592         removed the `num' argument.
10593
10594 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10595
10596         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10597         for dynamic images.
10598
10599         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10600         machine fields.
10601
10602         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10603
10604         * reflection.c: Save pe_kind and machine values into the generated
10605         image file.
10606
10607         * appdomain.c: Bump corlib version number.
10608
10609         * object-internals.h: Reorganize layout of LocalBuilder.
10610
10611         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10612         New helper function.
10613
10614         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10615         created MonoType for dynamic types. Fixes #66180.
10616
10617 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10618
10619         * threadpool.c: the ares hashtable needs a critical section around it.
10620         this prevents some nasty segfaults
10621
10622 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10623
10624         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10625         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10626         bug 67324).
10627         
10628 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10629
10630         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10631         
10632 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10633
10634         * image.c: Always canonicalize image file names, to avoid loading
10635         the same assembly twice when referenced using a relative path.
10636
10637 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10638
10639         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10640
10641         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10642
10643         * marshal.c: Fix warnings.
10644
10645 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10646
10647         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10648         attempting to marshal the delegate_trampoline as the method_addr.
10649         This patch has a static hashtable of marshalled delegates so that 
10650         we can map delegate_trampoline addresses back to delegates.  This
10651         allows a delegate passed to managed code to be passed back into native
10652         code.  Fixes #67039
10653
10654 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10655
10656         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10657
10658         * reflection.c (method_encode_code): Align method headers properly.
10659         Fixes #66025.
10660
10661 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10662
10663         * marshal.c: In the runtime invoke wrapper, reset the abort
10664         exception if it is cached. This avoids the automatic rethrowal of 
10665         the exception after the catch of the wrapper. Also check for pending
10666         interruptions before calling the managed method. This is done using
10667         the new method emit_thread_force_interrupt_checkpoint, since the
10668         normal checkpoint method is ignored when running the invoke wrapper.
10669         * object.c: If the abort exception is rethrown, set the abort_exc
10670         field of the thread, so it will be rethrown aftere every catch.
10671         * threadpool.c: Only run an interruption checkpoint if what has been
10672         requested is a stop of the thread (aborts will be ignored).
10673         * threads.c: By default, a thread will now never be interrumped while
10674         running the runtime invoke wrapper (this ensures that runtime_invoke
10675         will always return to the caller if an exception pointer is provided).
10676         There is a new special method mono_thread_force_interruption_checkpoint()
10677         to force an interruption checkpoint even if running a protected
10678         wrapper, which is used by the same runtime invoke wrapper to do a check
10679         at a safe point.
10680
10681 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10682
10683         * object.c, object-internals.h: Implemented mono_release_type_locks,
10684         which releases the cctor locks held by a thread.
10685         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10686         by a thread. Added mono_thread_exit() method to be used to safely stop
10687         a thread.
10688
10689 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10690
10691         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10692         Move null check before dereference.  Avoid indexing beyond the end
10693         of the 'modules' array.
10694
10695 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10696
10697         * metadata-internals.h (MonoImage): Add module_count field.
10698         * image.c (load_modules): Set image->module_count.
10699         (mono_image_load_file_for_image): Use image->module_count.
10700         * reflection.c (mono_image_load_module): Append to image->modules array 
10701         of dynamic assembly.
10702         (mono_module_get_object): Fix loop to actually increment index.
10703         Use image->module_count.
10704         * assembly.c (mono_assembly_load_references): Use image->module_count.
10705         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10706         Likewise.
10707
10708 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10709
10710         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10711         Avoid assert on generic types.
10712
10713 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10714
10715         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10716
10717         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10718
10719         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10720         function to convert a MarshalSpec structure to its managed counterpart.
10721
10722         * reflection.c: Fix warnings.
10723         
10724         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10725         field.
10726
10727         * icall.c (mono_create_icall_signature): Fix build.
10728
10729 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10730
10731         * icall.c: Add MakePointType icall.
10732
10733         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10734         warnings.
10735
10736 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10737
10738         * threadpool.c: reuse allocated slots in the queue.
10739
10740 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10741
10742         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10743
10744         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10745
10746         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10747         previous change.
10748
10749         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10750         ThrowOnUnmappableChar.
10751
10752         * icall.c (ves_icall_Type_GetPacking): New icall.
10753
10754 2004-09-24  Martin Baulig  <martin@ximian.com>
10755
10756         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10757
10758 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10759
10760         * appdomain.c:
10761         (mono_domain_set): allow setting a domain that is being unloaded.
10762         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10763         being unloaded.
10764
10765 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10766
10767         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10768         the GetCustomAttributes icall.
10769
10770 2004-09-23  Martin Baulig  <martin@ximian.com>
10771
10772         * object-internals.h (MonoReflectionGenericParam): Replaced
10773         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10774         with `guint32 attrs'.
10775
10776 2004-09-23  Martin Baulig  <martin@ximian.com>
10777
10778         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10779
10780 2004-09-23  Martin Baulig  <martin@ximian.com>
10781
10782         * object-internals.h (GenericParameterAttributes): New enum.
10783
10784 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10785
10786         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10787         
10788         * class.c (init_events): Fill out event->other field.
10789
10790         * class.c: Fix warnings.
10791
10792         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10793
10794 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10795
10796         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10797         walk which doesn't supply the IL offset.
10798
10799 2004-09-22  Martin Baulig  <martin@ximian.com>
10800
10801         * reflection.c (mono_reflection_setup_internal_class): If we're
10802         System.ValueType, System.Object or System.Enum, set
10803         `klass->instance_size' and create the vtable.
10804         (mono_reflection_create_internal_class): If we're an enum type,
10805         get the base class from our current corlib.
10806
10807 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10808
10809         * reflection.h (MonoResolveTokenError): New type.
10810
10811         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10812         icall.
10813
10814         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10815
10816 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10817
10818         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10819         Support also calling constructors, but only for already allocated objects.
10820
10821 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10822
10823         * reflection.c (type_get_qualified_name): If the klass is null
10824         return the typename to avoid a NullRefEx.
10825         (encode_cattr_value): Get the qualified name of the boxed type,
10826         not the underlying enumtype.  Fixes #62984.
10827
10828 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10829
10830         * marshal.c: Fix problems with previous checkin.
10831
10832 2004-09-21    <vargaz@freemail.hu>
10833
10834         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10835         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10836
10837         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10838
10839 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10840
10841         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10842         should only return a type for pointers, arrays, and passbyref types.
10843         Fixes bug #63841.
10844
10845 2004-09-21  Martin Baulig  <martin@ximian.com>
10846
10847         * domain.c (mono_debugger_check_runtime_version): New public
10848         function.
10849
10850         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10851
10852 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10853
10854         * reflection.c: Added missing sort to the declarative security 
10855         attributes table. MS implementation stops seeing the attributes if the
10856         token number regress in the table (as shown by ildasm and permview).
10857
10858 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10859
10860         * object-internals.h (MonoReflectionModule): Add 'token' field.
10861         
10862         * reflection.c (mono_reflection_get_token): Add support for Module
10863         and Assembly.
10864         (mono_module_get_object): Set 'token' field.
10865         (mono_module_file_get_object): Set 'token' field.
10866
10867         * icall.c: Add new Assembly and Module icalls.
10868
10869         * appdomain.c: Bump corlib version.
10870
10871 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10872
10873         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10874         tokens of metadata objects.
10875
10876         * reflection.h reflection.c (mono_reflection_get_token): New function
10877         to obtain the token of a metadata object.
10878
10879         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10880
10881 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10882
10883         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10884         
10885         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10886
10887 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10888
10889         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10890         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10891         AssemblyBuilder to access the permissions set in the class lib.
10892         * reflection.c: Added security attributes encoding step in 
10893         mono_image_build_metadata.
10894         * tabledefs.h: Added new security actions defined in 2.0:
10895         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10896
10897 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10898
10899         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10900         macro parameter.
10901
10902 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10903  
10904         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10905           finalized. There where random SIGSEVs at program termination, when
10906           an object being finalized was trying to do a string comparison and
10907           the current culture was already finalized.
10908  
10909 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10910
10911         * threads.c: call thread_cleanup before finishing the thread if we get
10912         there.
10913
10914 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10915
10916         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10917         assemblies from the parent. Fixes #65665.
10918
10919 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10920
10921         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10922         modifiers.
10923
10924 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10925
10926         * reflection.h: add prototype for mono_get_dbnull_object
10927         * reflection.c: add prototypes for get_default_param_value_blobs 
10928         and mono_get_object_from_blob for fussier compilers
10929
10930 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10931  
10932         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10933         false deadlock checks in class initialization.
10934  
10935 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10936
10937         * image.c (mono_image_addref): Fix comment.
10938
10939         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10940         possible.
10941
10942 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10943
10944         * reflection.c (mono_param_get_objects): Modified to return
10945         ParameterInfo.DefaultValue object.
10946
10947         (get_default_param_value_blobs):
10948         (mono_get_object_from_blob):
10949         (mono_get_dbnull_object): New helper routines. 
10950
10951         * object.c (mono_get_constant_value_from_blob): New helper routine
10952         carved out from get_default_field_value ()
10953
10954         * object-internals.h (mono_get_constant_value_from_blob): Added
10955         function declaration.
10956
10957 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10958
10959         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10960         referenced assemblies. Fixes #62135.
10961
10962         * exception.h exception.c (mono_get_exception_file_not_found2): New
10963         helper function.
10964
10965 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10966
10967         * class.h class.c: Add mono_type_get_underlying_type ().
10968
10969 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10970
10971         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10972         Fix GetTypes() to support dynamically created assemblies.
10973
10974 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10975
10976         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10977         
10978         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10979         previous patch.
10980
10981         * reflection.h reflection.c loader.c: Allow dynamic construction of
10982         pinvoke methods. Fixes #65571.
10983         
10984         * reflection.c (mono_reflection_get_type): Revert previous change since
10985         it causes regressions.
10986
10987 2004-09-08  Martin Baulig  <martin@ximian.com>
10988
10989         * class.c (class_compute_field_layout): Don't call
10990         mono_class_layout_fields() for open generic instances.
10991
10992 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10993         * threads.c appdomain.c: fix typo in GC macro
10994
10995 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10996
10997         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10998         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10999
11000 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
11001
11002         * image.c (mono_image_close): Applied patch from 
11003         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
11004         assembly is loaded multiple times from data.
11005         
11006         * image.c (mono_image_open): Fix warning.
11007
11008 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11009
11010         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
11011         once. Fixes #58334.
11012         
11013         * reflection.c (mono_reflection_create_runtime_class): Initialize
11014         klass->nested_classes. Fixes #61224.
11015
11016 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11017
11018         * threads.c: sched_yield() on exit, to allow threads to quit.
11019
11020 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11021
11022         * object.c (mono_unhandled_exception): Remove leftover debug code.
11023
11024 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
11025
11026         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
11027
11028 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11029
11030         * marshal.c (emit_marshal_array): Really null terminate string arrays.
11031         
11032         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
11033
11034 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11035
11036         * marshal.c (emit_marshal_array): Null terminate string arrays.
11037         
11038         * marshal.c (raise_auto_layout_exception): Fix warning.
11039
11040         * reflection.c (mono_param_get_objects): Initialize the default value
11041         with DBNull.Value, not null. Fixes #62123.
11042
11043 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
11044
11045         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
11046         throw an exception with a cute explanation.
11047
11048 2004-09-06  Dick Porter  <dick@ximian.com>
11049
11050         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
11051         Close the new process's thread handle, as we don't use it.  The
11052         handle stays around forever otherwise.
11053
11054 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11055
11056         * object.c (arith_overflow): Fix warning.
11057
11058         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
11059         calling conventions in method refs. Fixes #65352.
11060
11061         * reflection.c: Fix warnings.
11062
11063 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11064
11065         * icall.c: Add a new icall for Array.Clear
11066
11067 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11068
11069         * object.c: When allocating an array, we have to throw
11070         an overflow exception if any of the lengths are < 0.
11071
11072 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11073
11074         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
11075         properly. Also move implementation of string array marshalling to 
11076         managed code. Fixes #42316.
11077
11078 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11079
11080         * assembly.c: provide more information when loading an assembly fails.
11081
11082 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11083
11084         * filewatcher.c: don't expect the development fam package to be
11085         installed.
11086
11087 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
11088
11089         * marshal.c: Make a copy of the signature cookie since it will be
11090         freed by the caller.
11091         
11092         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
11093
11094         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
11095
11096         * metadata.c (mono_metadata_free_marshal_spec): New function to free
11097         marshal specs.
11098
11099         * marshal.c: More refactoring.
11100         
11101         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11102         smaller functions.
11103
11104 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11105
11106         * object.c: In mono_message_invoke, fill the output parameter array after
11107           calling the managed method (it was done before the call). This fixes
11108           bug #59299.
11109
11110 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11111
11112         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11113         as well.
11114
11115 2004-09-02  Martin Baulig  <martin@ximian.com>
11116
11117         * class.c (mono_class_instance_size): Don't allow generic type
11118         definitions or open generic instances.
11119         (mono_class_array_element_size): If we're a value type, call
11120         mono_class_instance_size() on the original class.
11121
11122         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11123         handle generic instances.
11124
11125         * mono-debug-debugger.c (write_type): Handle generic instances
11126         like classes.
11127
11128 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11129
11130         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11131         the allocation request fails. Fixes #65089.
11132
11133         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11134         
11135         * object.c (mono_runtime_free_method): New function to free a dynamic
11136         method.
11137
11138         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11139         delegate trampoline.
11140
11141         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11142         with hasthis as dynamic,
11143
11144         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11145
11146         * domain.c (mono_jit_info_table_remove): New function to remove an
11147         entry from the jit info table.
11148
11149         * class-internals.h (MonoMethod): Add 'dynamic' field.
11150
11151         * loader.c: Fix warnings.
11152
11153 2004-09-01  Martin Baulig  <martin@ximian.com>
11154
11155         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11156         instead of mono_debugger_lock() because the latter one is a no-op
11157         unless running in the debugger.
11158
11159 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11160
11161         * class.c (class_compute_field_layout): Classes with auto-layout or
11162         reference fields are not blittable.
11163         
11164 2004-09-01  Dick Porter  <dick@ximian.com>
11165
11166         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11167         mono_image_get_filename() to get the assembly location.
11168
11169         * icall.c:
11170         * metadata.h: Fix compile warnings
11171
11172 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11173
11174         * class.c (class_compute_field_layout): System.Object is blittable.
11175
11176         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11177         as in/out. Fixes #59909.
11178
11179 2004-09-01  Martin Baulig  <martin@ximian.com>
11180
11181         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11182         mono_metadata_generic_inst_is_valuetype() if we're a generic
11183         instance to check whether our underlying type is a reference type.
11184
11185 2004-09-01  Martin Baulig  <martin@ximian.com>
11186
11187         * metadata.c (mono_type_size): If we're a generic instance, call
11188         mono_class_value_size() for value types.
11189
11190 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11191
11192         * marshal.c: Implement more custom marshalling functionality. Fixes
11193         #64915.
11194
11195 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11196
11197         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11198
11199 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11200
11201         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11202
11203         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11204
11205         * icall.c: Fix some warnings.
11206
11207         * threads.c (abort_appdomain_thread): Fix unref errors.
11208         (mono_thread_current): Fix THREAD_DEBUG define.
11209
11210 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11211
11212         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11213
11214         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11215
11216 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11217
11218         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11219         string arrays.
11220
11221 2004-08-28  Martin Baulig  <martin@ximian.com>
11222
11223         * metadata.c
11224         (mono_metadata_generic_inst_is_valuetype): New public function.
11225
11226         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11227         mono_metadata_generic_inst_is_valuetype() if we're a generic
11228         instance to check whether our underlying type is a valuetype.
11229
11230 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11231
11232         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11233         #63768.
11234
11235 2004-08-25  Martin Baulig  <martin@ximian.com>
11236
11237         * loader.c (mono_get_method_from_token): Abstract methods can also
11238         be generic and thus have type parameters.
11239
11240         * metadata-internals.h
11241         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11242
11243         * reflection.c (mono_image_get_generic_param_info): Don't create a
11244         metadata row, just add an entry to the `gen_params' array.
11245         (build_compressed_metadata): Sort the `gen_params' array and then
11246         actually create the metadata.
11247
11248 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11249
11250         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11251
11252 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11253
11254         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11255
11256 2004-08-24  Martin Baulig  <martin@ximian.com>
11257
11258         * class.cs (mono_class_is_subclass_of): Like an interface, a
11259         generic instance also derives from System.Object.
11260
11261 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11262
11263         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11264         custom modifiers to be in any order. Fixes #61990.
11265
11266 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11267
11268         * object.c: Register mono_object_new_fast icall.
11269         
11270         * object.c (mono_class_get_allocation_ftn): Return to calling
11271         mono_object_new_fast, since it seems faster to compute the object 
11272         size in unmanaged code than passing it as a parameter.
11273
11274         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11275
11276         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11277         this function with Boehm as the oom handler, so we don't have to check
11278         the result of GC_malloc.
11279
11280         * object.c: Remove checks for oom.
11281
11282         * object.h object.c (mono_class_get_allocation_ftn): New function to
11283         return the icall which can be used to allocate an instance of a given
11284         class. 
11285
11286         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11287
11288         * class-internals.h: Add 'enabled' field.
11289
11290 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11291
11292         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11293
11294 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11295         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11296         value 0x0010.
11297
11298 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11299
11300         * appdomain.c: use the Tls function for appdomain too,
11301         at Zoltan's request. Actually return in mono_context_get
11302
11303         * appdomain.c, profiler.c, threads.c: use __thread
11304
11305 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11306
11307         * appdomain.c threads.c: Call GC_CreateThread on windows.
11308
11309         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11310         multiple libraries since this don't work on windows.
11311
11312 2004-08-18  Martin Baulig  <martin@ximian.com>
11313
11314         * class-internals.h
11315         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11316         MonoMethodHeader.
11317
11318         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11319         MonoMethodNormal since we also need it for abstract and interface
11320         methods.
11321
11322         * reflection.c
11323         (build_compressed_metadata): Sort the GenericParam table.
11324         (mono_image_create_token): Added `gboolean create_methodspec'
11325         argument; this is false when generating a MethodImpl token.
11326         (reflection_methodbuilder_to_mono_method): Abstract and interface
11327         methods may also have generic parameters.
11328
11329 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11330
11331         * appdomain.c: thread local alloc
11332
11333 2004-08-17  Martin Baulig  <martin@ximian.com>
11334
11335         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11336
11337         * icall.c
11338         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11339         argument.
11340
11341         * class.c (mono_type_get_full_name): New public function.
11342         (mono_type_get_name): Don't include the type arguments.
11343
11344 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11345
11346         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11347         for inclusion into the mono executable.
11348
11349 2004-08-16  Martin Baulig  <martin@ximian.com>
11350
11351         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11352         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11353
11354 2004-08-14  Martin Baulig  <martin@ximian.com>
11355
11356         * class.c (dup_type): Also copy the `byref' field.
11357
11358 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11359
11360         * reflection.c (create_dynamic_mono_image): Revert the last change 
11361         since it breaks bootstrap.
11362
11363 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11364
11365         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11366
11367         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11368         not free them with g_free.
11369
11370 2004-08-11  Martin Baulig  <martin@ximian.com>
11371
11372         * reflection.c (mono_reflection_setup_internal_class): Also call
11373         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11374
11375 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11376
11377         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11378         called during default (first) AppDomain creation. Keep track of
11379         Evidence when loading assemblies.
11380
11381 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11382
11383         * opcodes.c, opcodes.h: reduce runtime relocations.
11384
11385 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11386
11387         * culture-info.h, locales.c: fixes and chages to sue the new
11388         optimized format of the locale data.
11389         * culture-info-tables.h: regenerated.
11390
11391 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11392         
11393         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11394
11395 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11396
11397         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11398         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11399         * domain-internals.h: icall declaration.
11400         * icall.c: icall registration.
11401         * object-internals.h: New fields in MonoAssembly for CAS.
11402
11403 2004-08-05  Duncan Mak  <duncan@ximian.com>
11404
11405         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11406         CEE_LDELEM_ANY.
11407
11408 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11409
11410         * reflection.c: fix to deal with object[] arrays in custom ctors
11411         (bug #62550).
11412
11413 2004-08-05  Martin Baulig  <martin@ximian.com>
11414
11415         * class.c (mono_class_array_element_size): Added support for
11416         generic instances and correctly handle "recursive" types.
11417
11418 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11419
11420         * assembly.c: Fix warnings.
11421
11422 2004-08-04  Martin Baulig  <martin@ximian.com>
11423
11424         * class.c
11425         (mono_type_get_name_recurse): Added `gboolean include_arity'
11426         argument specifying whether or not we should include the generic
11427         arity in the type name.
11428         (_mono_type_get_name): New static function.
11429         (mono_class_setup_vtable): If we're a generic instance, don't
11430         include the generic arity in the names of explicit method
11431         implementations.        
11432
11433 2004-08-03  Martin Baulig  <martin@ximian.com>
11434
11435         * class.c (mono_type_get_name_recurse): Enclose the generic type
11436         arguments in `<', '>'.
11437
11438 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11439
11440         * gc.c: make GC warning messages use the trace API, they are just
11441         noise to most of the users.
11442
11443 2004-08-03  Martin Baulig  <martin@ximian.com>
11444
11445         * debug-mono-symfile.c (read_string): Correctly read the string.
11446
11447 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11448
11449         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11450         
11451         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11452         icalls.
11453         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11454
11455 2004-07-30  Martin Baulig  <martin@ximian.com>
11456
11457         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11458         Reflect latest symbol writer changes.   
11459
11460 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11461
11462         * object.c: always create an object if null is passed
11463         to Invoke() where a valuetype is expected.
11464
11465 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11466
11467         * marshal.c (mono_marshal_init): make managed
11468         signatures match native ones better for 64bits.
11469
11470 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11471
11472         * appdomain.c: hack to build correctly the private bin path on windows.
11473         Fixes bug #61991.
11474
11475 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11476
11477         * assembly.c: Load mscorlib from the correct framework directory
11478           (mono/<version>/mscorlib.dll).
11479         * appdomain.h: Added prototypes for new functions.
11480         * internals.h: Added some prototypes.
11481         * domain.c: When initializing the runtime, get from the executable and
11482           the configuration files the runtime version that the app supports.
11483           Added support methods for reading app.exe.config. Added list of versions
11484           supported by the JIT. Added two new methods: mono_init_from_assembly,
11485           which initializes the runtime and determines the required version from
11486           the provided exe file, and mono_init_version, which initializes
11487           the runtime using the provided version.
11488         * icall.c: Get machine.config from version-specific directory.
11489         * reflection.c: When generating an image, embed the version number
11490           of the current runtime.
11491
11492 2004-07-28  Dick Porter  <dick@ximian.com>
11493
11494         * socket-io.c
11495         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11496         returned sockaddr size before creating the remote address object.
11497         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11498         61608.
11499
11500 2004-07-28  Dick Porter  <dick@ximian.com>
11501
11502         * locales.c (string_invariant_compare_char): Fix invariant char
11503         compares between upper and lower cases.  Fixes bug 61458.
11504
11505 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11506         
11507         * marshal.c: actually cache stelem.ref wrappers.
11508         
11509 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11510
11511         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11512         sections and remove the mono_cli_rva_map () function.
11513
11514 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11515
11516         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11517         by Geoff Norton (<gnorton@customerdna.com>).
11518
11519 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11520
11521         * class.c: fix class loads for pointer types (typeof(int) !=
11522         typeof(int*)).
11523
11524 2004-07-27  Martin Baulig  <martin@ximian.com>
11525
11526         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11527         reading the debugging information from an external ".mdb" file.
11528
11529 2004-07-24  Martin Baulig  <martin@ximian.com>
11530
11531         * reflection.c (mono_image_get_type_info): Only write a class
11532         layout entry if we actually have a size or a packing size.
11533
11534 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11535
11536         * reflection.c (type_get_fully_qualified_name): 
11537         insert cast to get type checking of ?: with non-gcc compilers
11538
11539 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11540
11541         * rand.c: use g_getenv for both lookups of
11542         MONO_EGD_SOCKET
11543
11544 2004-07-17  Martin Baulig  <martin@ximian.com>
11545
11546         * reflection.c (mono_reflection_bind_generic_method_parameters):
11547         Set `gmethod->reflection_info'.
11548
11549 2004-07-17  Martin Baulig  <martin@ximian.com>
11550
11551         * class.c (mono_class_create_from_typedef): Insert the newly
11552         created class into the hash table before computing the interfaces
11553         since we could be called recursively.
11554
11555 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11556
11557         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11558         function to implement stelem.ref in managed code
11559         * class-internals.h, debug-helpers.c: a new wrapper type
11560         for the above.
11561
11562 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11563
11564         * gc.c: allow GC handles to work even when no GC is compiled in.
11565         Fix part of bug #61134 (GetAddrOfPinnedObject).
11566
11567 2004-07-13  Peter Williams  <peter@newton.cx>
11568  
11569         * process.c (complete_path): Make sure we don't attempt to execute
11570         directories.
11571  
11572 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11573
11574         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11575           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11576           and will add/subtract the hour if needed
11577
11578 2004-07-12  Martin Baulig  <martin@ximian.com>
11579
11580         * reflection.c (mono_field_get_object): If we have
11581         `field->generic_info', take the attributes from
11582         `field->generic_info->generic_type'.    
11583
11584 2004-07-12  Martin Baulig  <martin@ximian.com>
11585
11586         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11587         This function must be called before initializing the runtime.
11588         (mono_debug_init_1): New function; call this after initializing
11589         the runtime, but before loading the assembly.  It tells the
11590         debugger to load corlib and the builtin types.
11591
11592         * mono-debug-debugger.c: Did some larger changes in the debugging
11593         code; support recursive class declarations, make sure we actually
11594         add all classes.
11595
11596 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11597
11598         * debug-helpers.c: undo my previous patch and fixed the real issue in
11599         ../mini/exceptions-x86.c
11600
11601 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11602
11603         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11604         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11605         called from other .cctors.
11606
11607 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11608
11609         * loader.c: Removed the mono_loader_wine_init hack now that we are
11610         doing a managed version of Windows.Forms.
11611
11612 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11613
11614         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11615         threadpool.c, threads.c: remove static data from rootset.
11616
11617 2004-07-09  Dick Porter  <dick@ximian.com>
11618
11619         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11620         Don't do any more processing if the matched length was 0.  It was
11621         increasing the size of the string before.  Fixes bug 61167.
11622
11623 2004-07-09  Dick Porter  <dick@ximian.com>
11624
11625         * socket-io.h:
11626         * socket-io.c
11627         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11628         Add support for SO_PEERCRED if its available.
11629
11630 2004-07-09  Peter Bartok <pbartok@novell.com>
11631         * loader.c: winelib.exe.so error message is now only displayed if
11632         MONO_DEBUG is set. To help us avoid questions when people are trying
11633         out the new Managed.Windows.Forms.
11634
11635 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11636
11637         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11638         for isinst and castclass wrappers.
11639
11640         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11641         to libmetadata from the JIT, so they could be used by the marshalling
11642         code and the interpreter.
11643
11644         * marshal.c: Register marshalling related JIT icalls here instead of
11645         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11646         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11647
11648         * metadata.h: Remove unneeded marshalling conversions.
11649
11650         * opcodes.c: Update for new opcodes.
11651         
11652 2004-07-08  Martin Baulig  <martin@ximian.com>
11653
11654         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11655         (mono_debug_get_domain_data): Make this function static.
11656
11657 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11658
11659         * gc.c, object.h: add nice GC handle API for embedders.
11660
11661 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11662
11663         * reflection.c: more changes for the new api
11664
11665         * object.c: When we reflect on a field w/ a constant value, it
11666         will not have a memory location, so we must access metadata. Also,
11667         allow easier reading of strings so that we can read them from
11668         the constant data.
11669
11670         * class.c (mono_class_layout_fields): no need for literal fields here.
11671
11672         * class-internals.h: api changes for const fields
11673
11674         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11675
11676 2004-07-06  Martin Baulig  <martin@ximian.com>
11677
11678         * mono-debug.h: Increment version number to 44.
11679
11680         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11681         now a gpointer, rewrote this whole method.
11682
11683         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11684         function.  Add information about the wrapper in a new "misc table".
11685
11686         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11687         for the new misc table.
11688
11689 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11690
11691         * metadata-internals.h image.c: Add a cache for helper signatures.
11692
11693         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11694
11695 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11696
11697         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11698         delegates from a delegate. Fixes #61033.
11699         
11700         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11701         marshalling of stringbuilder arrays. Fixes #59900.
11702
11703 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11704
11705         * icall.c: Add EnumBuilder:setup_enum_type icall.
11706
11707 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11708
11709         * icall.c: Added a new icall for the property version of
11710         OffsetOfStringData.
11711
11712 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11713
11714         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11715         it has a constant size across platforms.
11716
11717         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11718         stack trace.
11719
11720 2004-06-29  Martin Baulig  <martin@ximian.com>
11721
11722         * mono-debug.c (mono_debug_add_method): Protect the whole function
11723         in mono_debugger_lock(), not just parts of it.
11724
11725 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11726
11727         * reflection.c: make sure padding bytes in heaps are zeroed.
11728
11729 2004-06-24  David Waite  <mass@akuma.org>
11730
11731         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11732         image.c, loader.c, locales.c, marshal.c, metadata.c,
11733         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11734         string-icalls.c, threads.c: change to C90-style comments from C99 /
11735         C++ -style
11736
11737 2004-06-24  Dick Porter  <dick@ximian.com>
11738
11739         * threads.c
11740         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11741         return createdNew.  Fixes bug 60412.
11742
11743         * threads-types.h: 
11744         * icall.c: Add createdNew parameter to CreateMutex icall
11745
11746 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11747
11748         * reflection.c, object-internals.h: save default value in params.
11749
11750 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11751
11752         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11753         no need to build a new path combining that with the application base.
11754         Fixes bug #60442.
11755
11756 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11757
11758         * reflection.c: fixed minor standard compliance issues.
11759
11760 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11761
11762         * reflection.c: fixed issue with encoding some custom attributes
11763         (arrays in properties and fields, bug #60411).
11764
11765 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11766
11767         * reflection.c: fix start address when copying the public key token.
11768
11769 2004-06-23  Martin Baulig  <martin@ximian.com>
11770
11771         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11772         the `exc' object in a static object to put it into the GC's root set.
11773
11774 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11775
11776         * reflection.c: make mono_reflection_setup_internal_class ()
11777         callable a second time to setup a new parent class.
11778
11779 2004-06-23  Dick Porter  <dick@ximian.com>
11780
11781         * threads.c: Check for WAIT_IO_COMPLETION return values.
11782
11783 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11784
11785         * appdomain.c: Removed the g_free on the public key token. Now copy 
11786         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11787         * assembly.c: Added public key token string value when loading 
11788         assemblies. Fix bug #60439.
11789         * icall.c: Added missing informations (like public key) in 
11790         GetReferencedAssemblies. Fix #60519.
11791         * image.h: Changed definition for public key token from const char*
11792         public_tok_value to guchar public_key_token [17];
11793         * reflection.c: Updated for changes to public key token.
11794
11795 2004-06-22  Lluis Sanchez Gual
11796
11797         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11798         for the field in base classes.
11799
11800 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11801
11802         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11803         mark headers as not supported, they are installed only for use by the
11804         debugger.
11805
11806 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11807
11808         * *.c, *.h: avoid namespace pollution in public headers.
11809
11810 2004-06-21  Martin Baulig  <martin@ximian.com>
11811
11812         * exception.c (mono_get_exception_security): It's in
11813         "System.Security", not in "System".
11814
11815         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11816         the exception classes.
11817
11818 2004-06-21  Martin Baulig  <martin@ximian.com>
11819
11820         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11821         Protect the exception object from being finalized.
11822
11823 2004-06-21  Martin Baulig  <martin@ximian.com>
11824
11825         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11826         public function.
11827
11828 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11829
11830         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11831         if it was not loaded before. Fix parts of #60439.
11832
11833 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11834
11835         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11836         code that was broken since Ben's change: wrappers are now
11837         dependent on the method signature only again.
11838
11839 2004-06-21  Martin Baulig  <martin@ximian.com>
11840
11841         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11842         added interface support.
11843
11844 2004-06-21  Martin Baulig  <martin@ximian.com>
11845
11846         * class.c (mono_vtable_get_static_field_data): New public method.
11847
11848 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11849
11850         * filewatcher.c : Windows build fix to be compliant with API changes.
11851
11852 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11853
11854         * class.h, class.c: more accessors.
11855         * metadata.h, metadata.c: prepare for hiding MonoType and
11856         MonoMethodSignature: people should use the accessors from now on
11857         outside of the tree.
11858
11859 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11860
11861         * *.c, *.h: more API cleanups.
11862
11863 2004-06-18  Jackson Harper  <jackson@ximian.com>
11864
11865         * assembly.c: Trace loading assemblies.
11866         * loader.c: Trace loading native libraries.
11867         * mono-config.c: Trace loading config files.
11868         
11869 2004-06-18  Dick Porter  <dick@ximian.com>
11870
11871         * locales.c: Tell ICU the lengths of strings, it can cope with
11872         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11873
11874 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11875
11876         * image.c: swapped name/filename;
11877
11878 2004-06-18  Martin Baulig  <martin@ximian.com>
11879
11880         * mono-debug-debugger.c (write_class): Write the parent class at
11881         the end of the header.
11882
11883 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11884
11885         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11886
11887 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11888
11889         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11890         (bundle_obj): New conditional define.
11891         (BUILT_SOURCES): Remove.
11892         ($(bundle_srcs)): Make parallel-make safe.
11893         (libmonoruntime_la_LIBADD): Make unconditional.
11894         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11895         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11896
11897 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11898
11899         * culture-info-tables.h: It was inconsistent with the latest
11900           supp info files.
11901
11902 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11903
11904         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11905         be loaded.
11906
11907         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11908         with gcc 2.95.
11909
11910 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11911
11912         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11913         cleaned up public header threads.h.
11914
11915 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11916
11917         * Makefile.am, *.c, *.h: more API cleanups.
11918
11919 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11920
11921         * Makefile.am: removed monosn from compilation.
11922         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11923         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11924         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11925         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11926         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11927         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11928
11929 2004-06-15  Jackson Harper  <jackson@ximian.com>
11930
11931         * assembly.c: Make locales lower case when searching the GAC for
11932         assemblies. gacutil will always make locales lowercase when
11933         installing so this effectively makes them case insensitive.
11934         
11935 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11936
11937         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11938         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11939           parameter which allows to choose whether the wait can be interrupted or 
11940           not. Also added the method mono_monitor_enter(), which locks the monitor
11941           using an infinite wait and without allowing interruption.
11942           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11943           interrupted.
11944         * object.h: Added new fields in MonoThread. suspend_event holds the event
11945           used to susped/resume the thread. synch_lock is the lock object to use for
11946           modifying the thread state.
11947         * threads.c: Use the new synch_lock object for locking, instead of "this",
11948           which can generate deadlocks.
11949           Moved thread state change in Thread.Sleep and Thread.Join from managed
11950           to unmanaged code. This avoids a deadlock when the thread was suspended
11951           just after acquiring the thread lock.
11952           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11953           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11954           which is not fully implemented in the io-layer.
11955         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11956
11957 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11958
11959         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11960         threads-types.h: more API cleanups.
11961
11962 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11963
11964         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11965         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11966         threadpool.c, threads.c: first pass at the exported API cleanup.
11967
11968 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11969
11970         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11971
11972 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11973
11974         * icall.c: added internalGetHome.
11975
11976 2004-06-14  Dick Porter  <dick@ximian.com>
11977
11978         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11979         possible to return successfully when '.' or '..' were the only
11980         entries in a directory, but were skipped.  The MonoIOStat was not
11981         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11982         Fixes bug 59574.
11983
11984 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11985
11986         * reflection.c: make binaries run on .Net 1.1 by default.
11987
11988 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11989
11990         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11991
11992 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11993
11994         * marshal.c: keep track of struct size with explicit layout
11995         (bug #59979).
11996
11997 2004-06-12  Martin Baulig  <martin@ximian.com>
11998
11999         * mono-debug-debugger.c: Comment out a debugging g_message().
12000
12001 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12002
12003         * reflection.c, reflection.h: do not free custom attrs that are cached.
12004         * icall.c: use braces to make code clearer.
12005
12006 2004-06-11  Martin Baulig  <martin@ximian.com>
12007
12008         * class.h (MonoInflatedField): New type.
12009         (MonoClassField): Replaced `MonoType *generic_type' with
12010         `MonoInflatedField *generic_info'.
12011
12012         * icall.c
12013         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
12014
12015 2004-06-11  Martin Baulig  <martin@ximian.com>
12016
12017         * reflection.c (mono_image_create_method_token): Correctly encode
12018         varargs methods.
12019
12020 2004-06-11  Martin Baulig  <martin@ximian.com>
12021
12022         * metadata.c (mono_metadata_parse_method_signature): When parsing
12023         a MethodDef which has VarArgs, also set sentinelpos if we don't
12024         have any parameters.
12025
12026 2004-06-11  Martin Baulig  <martin@ximian.com>
12027
12028         * verify.c (mono_method_verify): In CEE_CALL, use
12029         mono_method_get_signature() to get the method's signature, unless
12030         we're a PInvoke method.
12031
12032 2004-06-10  Jackson Harper  <jackson@ximian.com>
12033
12034         * assembly.c: Use <path>/lib/mono/gac for the extra paths
12035         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
12036         logical name as the supplied path is just a prefix to the gac not
12037         the direct path to it.
12038         
12039 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
12040
12041         * reflection.c: make the token for a created method match
12042         the token of the MethodBuilder it was created from
12043         (IKVM requires this behaviour now).
12044
12045 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
12046
12047         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
12048         reflection.c, socket-io.c: leak fixes.
12049
12050 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
12051
12052         * icall.c: handle sentinel pos in vararg methods in position different
12053         from 0.
12054
12055 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12056
12057         * culture-info-tables.h: freshly generated.
12058
12059 2004-06-09  Martin Baulig  <martin@ximian.com>
12060
12061         * loader.c (mono_get_method_constrained): Call `mono_class_init
12062         (constrained_class)'.   
12063
12064 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
12065
12066         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
12067         any methods. Fixes #59629.
12068
12069 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12070
12071         * culture-info-tables.h: reflecting locale-builder updates.
12072
12073 2004-06-08  Dick Porter  <dick@ximian.com>
12074
12075         * object.h:
12076         * locales.c: Fixed compile warnings, including a real bug in
12077         CompareInfo_internal_compare.
12078         
12079 2004-06-08  Dick Porter  <dick@ximian.com>
12080
12081         * locales.c
12082         (ves_icall_System_Globalization_CompareInfo_internal_index):
12083         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12084         Double-check the resuls of usearches, because ICU currently
12085         ignores most of the collator settings here.  Fixes bug 59720.
12086         
12087 2004-06-08  Dick Porter  <dick@ximian.com>
12088
12089         * locales.c
12090         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12091         Fix memory leak and segfault-causing typo.  No idea how this one
12092         lasted so long without being noticed.
12093
12094 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
12095
12096         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
12097         any methods. Fixes #59629.
12098
12099 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12100
12101         * assembly.c:
12102         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12103         own the critical section before). Removed dead code (that's done
12104         in the preload hook).
12105
12106         (mono_assembly_load_with_partial_name): call the preload hook.
12107
12108 2004-06-08  Martin Baulig  <martin@ximian.com>
12109
12110         * metadata.c (mono_metadata_signature_alloc): Default
12111         `sentinelpos' to -1.
12112
12113         * reflection.c (mono_image_get_array_token): Likewise.
12114
12115 2004-06-08  Martin Baulig  <martin@ximian.com>
12116
12117         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12118
12119         * metadata.c (mono_metadata_parse_method_signature): When parsing
12120         a MethodDef which has VarArgs, set sentinelpos.
12121
12122         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12123         `gint16' since we're using -1 for non-varargs methods.
12124
12125         * reflection.c
12126         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12127         (method_encode_signature): Added varargs support.
12128         (method_builder_encode_signature): Likewise.
12129         (mono_image_get_varargs_method_token): New static method.
12130         (mono_image_create_method_token): New public method; this is
12131         called via an icall instead of mono_image_create_token() when
12132         calling a varargs method.       
12133
12134 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12135
12136         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12137
12138 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12139
12140         * culture-info-tables.h : Reflecting the latest locale-builder that
12141           fixed empty array representation ({} to {0}).
12142
12143 2004-06-07  Jackson Harper  <jackson@ximian.com>
12144
12145         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12146         looking up extra gac paths. This allows MONO_GAC_PATH to act
12147         exactly like a prefix.
12148         
12149 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12150
12151         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12152         type name before modifying it. Fixes #59405.
12153
12154 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12155
12156         * culture-info.h: added fields for "all datetime patterns".
12157         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12158           _construct_datetime_format ()): fill xxx_patterns fields.
12159         * object.h: added fields for "all datetime patterns" to
12160           MonoDateTimeFormatInfo.
12161         * culture-info-tables.h: reflecting locale-builder updates.
12162
12163 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12164
12165         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12166         the event has no add and remove methods. Fixes #59629.
12167
12168 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12169
12170         * object.c: Fixed possible integer overflow when allocating large
12171         strings.
12172
12173 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12174
12175         * culture-info-tables.h: reflecting locale-builder updates.
12176
12177 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12178
12179         * culture-info-tables.h: reflecting locale-builder updates.
12180
12181 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12182
12183         * culture-info-tables.h: reflecting locale-builder updates.
12184
12185 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12186
12187         * threads.c: Made Thread.Sleep abortable.
12188
12189 2004-06-02  Martin Baulig  <martin@ximian.com>
12190
12191         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12192
12193         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12194
12195 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12196
12197         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12198
12199 2004-05-30  Jackson Harper  <jackson@ximian.com>
12200
12201         * reflection.c: Do not hardcode assembly versions or public key
12202         tokens anymore. All of this except the corlib section was dead
12203         code anyways.
12204         
12205 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12206
12207         * object.c (mono_runtime_invoke_array): Automatically create boxed
12208         objects for byref valuetypes if needed. Fixes #59300.
12209         
12210         * object.c (mono_method_return_message_restore): Handle 
12211         MONO_TYPE_OBJECT as well.
12212
12213 2004-05-28  Jackson Harper  <jackson@ximian.com>
12214
12215         * reflection.c: The modified type encoding was causing build
12216         problems. Reverted for now.
12217         
12218 2004-05-28  Jackson Harper  <jackson@ximian.com>
12219
12220         * reflection.c/h: Take an assembly ref so that we dont create
12221         fully qualified names when encoding types in the same assembly as
12222         the custom attribute being emitted.
12223         * appdomain.c: Increment version number.
12224         
12225 2004-05-26  Duncan Mak  <duncan@ximian.com>
12226
12227         * icall.c
12228         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12229         Set the full version number (major, minor, build, revision).
12230
12231 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12232
12233         * marshal.c (emit_struct_conv): increment src/dst after blit
12234         (mono_marshal_get_managed_wrapper,
12235         mono_marshal_get_native_wrapper): make sure we have marshalling
12236         info before marshalling params (info computation affects
12237         blittable)
12238
12239         * class.c (class_compute_field_layout): correctly deal with
12240         blittable
12241         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12242         value types (as per what windows dows by default)
12243         (mono_class_setup_mono_type): System.ValueType is blittable
12244         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12245         blittable
12246
12247         * marshal.c (mono_marshal_load_type_info): flag types  as
12248         non-blittable if the native layout doesn't match the managed
12249         layout
12250
12251 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12252
12253         * appdomain.c: don't add stuff in the private search path that is
12254         above the application base. If application base is not set, there's
12255         no private search path.
12256
12257 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12258
12259         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12260         byref struct arguments in native->managed marshalling.
12261
12262 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12263
12264         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12265         cache methods using signature (special case for methods
12266         that are value type or string class)
12267         
12268         * image.c (mono_image_close): clean up allocated GSList's
12269         in runtime_invoke_cache.
12270
12271 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12272
12273         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12274         there's no MONO_CFG_DIR environment variable defined.
12275
12276 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12277
12278         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12279
12280 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12281
12282         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12283           is interrumped.
12284         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12285           before waiting for it, and call CloseHandle after the wait to unref it.
12286           This will make sure that handles are not disposed too early.
12287
12288 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12289
12290         * appdomain.c:
12291         * appdomain.h:
12292         * icall.c: removed
12293         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12294         needed now.
12295
12296         * object.c: se the application_base only for the domain that runs
12297         Main. Fixes bug #59216,
12298
12299 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12300
12301         * appdomain.c:
12302         * object.c: only the domain in which Main is run have
12303         SetupInformation.ConfigurationFile set, so moved a few lines from
12304         appdomain.c to object.c.
12305
12306 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12307
12308         * appdomain.c: we tried to load [name].(dll|exe), but according
12309         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12310         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12311         There's a test case attached to bug #58922.
12312
12313 2004-05-27  Dick Porter  <dick@ximian.com>
12314
12315         * icall.c:
12316         * file-io.c: Implemented icalls for locking and unlocking regions
12317         in a file.
12318         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12319         FALSE on error (fixes both compiler warning and real bug.)
12320
12321 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12322
12323         * culture-info-tables.h: reflecting locale-builder updates.
12324
12325           (Added missing ChangeLog entry for 05/26)
12326
12327 2004-05-27  Jackson Harper  <jackson@ximian.com>
12328
12329         * locales.c: Fix some cut and paste errors.
12330         
12331 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12332
12333         * mono-config.c: set the correct path for config. directory on windows.
12334
12335 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12336
12337         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12338           on win32.
12339
12340 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12341
12342         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12343         from pinvoke functions.
12344         
12345         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12346
12347 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12348
12349         * culture-info-tables.h: reflecting locale-builder updates.
12350
12351 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12352
12353         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12354         #59086.
12355
12356 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12357
12358         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12359         * icall.c: Modified icalls for RNG.
12360         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12361         Windows (CryptoAPI).
12362
12363 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12364
12365         * locales.c: Fix build.
12366
12367 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12368
12369         * culture-info-tables.h: reflecting locale-builder updates.
12370
12371 2004-05-25  Jackson Harper  <jackson@ximian.com>
12372
12373         * locales.c: When creating the current culture use the $LANGs
12374         specific culture. So DateTimeFormat and NumberFormat entries are created.
12375         
12376 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12377
12378         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12379         a char array as parameter.
12380
12381 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12382
12383         * image.c: In mono_image_open(), always use an absolute path name to
12384           look for already loaded images.
12385
12386 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12387
12388         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12389         missing in the windows build (like older cygwin include files).
12390
12391 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12392
12393         * icall.c: Fixed check for possible integer overflow in Buffer_
12394         BlockCopy icall. Replaced comments style // by /* */.
12395
12396 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12397
12398         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12399         
12400         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12401         check after MONO_VTADDR. Fixes pinvoke2.exe.
12402
12403         * marshal.h marshal.c metadata.h: Add beginnings of support for
12404         ftnptr -> delegate marshalling.
12405
12406 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12407
12408         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12409         * threads.c: Fix warnings.
12410
12411 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12412
12413         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12414         * icall.c: Registered icalls for Suspend and Resume.
12415         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12416           Thread.Abort.
12417         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12418         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12419         * process.c: Use WaitForSingleObjectEx.
12420         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12421           checkpoints.
12422         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12423           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12424           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12425           background threads. Added basic support for Abort in Windows.
12426           Start new threads using a managed delegate invoke wrapper. This wrapper
12427           has an interruption checkpoint that is needed since an interruption
12428           can be requested before the thread leaves the unmanaged code that starts 
12429           the thread.
12430         * marshal.c: Added interruption checkpoint after every native call, and
12431           also before managed calls for wrappers called from unmanaged code to
12432           go into managed code.
12433         * object.h: Added new field in MonoThread to keep track of interruption
12434           requests.
12435
12436 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12437
12438         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12439         calls.
12440
12441 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12442
12443         * appdomain.c:
12444         * assembly.c:
12445         * gc.c:
12446         * locales.c:
12447         * mono-config.c:
12448         * rand.c: getenv -> g_getenv (windows!)
12449
12450         * process.c: complete_path is also used on non-windows platforms.
12451
12452 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12453
12454         * icall.c: new signature for Process_Start.
12455
12456         * process.[ch]: new signature for Process_Start. If we're on windows
12457         and UseShellExecute is false, we have to search for the program by
12458         ourselves if we don't get a full path.
12459
12460 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12461
12462         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12463         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12464
12465 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12466
12467         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12468         Fixes bug #58373.
12469
12470 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12471
12472         * process.c: use double quotes to quote program name and arguments on
12473         windows. Fixes bug #58575.
12474
12475 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12476
12477         * file-io.c: don't return "." and ".." when using windows Find*File.
12478
12479 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12480
12481         * marshal.c: Don't pass wrappers to message init because method 
12482         addressed used to lookup metadata. part of remoting[2|3] fix.
12483
12484 2004-05-15  Jackson Harper  <jackson@ximian.com>
12485
12486         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12487         path is essentially the same as MONO_PATH except that it points to
12488         GACs instead of lib directories.
12489         * loader.h: The user gac is gone so we dont need function to
12490         enable/disable it.
12491         * mono-config.c: user gac option is now gone.
12492         
12493 2004-05-15  Jackson Harper  <jackson@ximian.com>
12494
12495         * culture-info.h: Make defines more consistent, add calendar data
12496         to the culture info table.
12497         * culture-info-tables.h: Add basic calendar data. Basically
12498         everyone gets default gregorian until all the data is
12499         updated.
12500         * locales.c: Use the new consistent defines. Set calendar data for
12501         culture info objects.
12502         * object.h: add a field for calendar data to CultureInfo
12503         
12504 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12505
12506         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12507         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12508         a signature.
12509         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12510         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12511         an extra param that is the pointer of the method to invoke. The IL for
12512         the invoke method is no longer specific to the method, but to the
12513         signature of the method. Thus, we can share the same code for multiple
12514         methods. This reduces the number of methods that have to be compiled.
12515
12516 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12517
12518         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12519
12520         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12521
12522         * icall.c: Optimize Buffer.BlockCopy.
12523
12524 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12525
12526         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12527         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12528         quote). Changed them to "MMMM yyyy".
12529
12530 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12531
12532         * rand.c
12533         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12534
12535 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12536
12537         * reflection.h: Updated after changes to managed structures.
12538
12539         * appdomain.c: Bump corlib version.
12540
12541 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12542
12543         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12544         windows.
12545
12546 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12547
12548         * Makefile.am: link to ../os/libmonoos.la on windows.
12549
12550         * assembly.c:
12551                 -If MONO_DEBUG, warn about non-existing directories in
12552                 MONO_PATH.
12553                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12554                 compile time variable.
12555                 -Removed init_default_path and call mono_set_rootdir from
12556                 libmonoos.a instead (windows only).
12557
12558         * assembly.h: declare mono_assembly_getrootdir().
12559
12560         * domain.c:
12561         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12562
12563         * loader.c: s/getenv/g_getenv/
12564
12565 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12566
12567         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12568
12569         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12570
12571         * metadata.h: Add new marshalling conversions.
12572
12573         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12574         function.
12575
12576         * reflection.c (mono_reflection_get_type): Lookup the type in all
12577         modules of a multi-module assembly. Fixes #58291.
12578
12579 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12580
12581         * threads.c: Before aborting a background, set the StopRequested
12582         state.  This avoids throwing the Abort exception.
12583         In mono_thread_manage, don't continue with the shutdown until all
12584         aborted threads have actually stopped.
12585
12586 2004-05-10  Jackson Harper  <jackson@ximian.com>
12587
12588         * locales.c: Remove the modifier from culture names.
12589         
12590 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12591
12592         * Makefile.am: monosn is not installed any more. It has been deprecated
12593         in favor of sn.
12594
12595 2004-05-07  Jackson Harper  <jackson@ximian.com>
12596
12597         * locales.c
12598         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12599         Fix array construction, add bailout if the length is 0.
12600
12601 2004-05-07  Dick Porter  <dick@ximian.com>
12602
12603         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12604         machine doesn't have a DNS entry.  Patch by Urs Muff
12605         (umuff@quark.com), fixes bug 57928.
12606
12607 2004-05-06  Jackson Harper  <jackson@ximian.com>
12608
12609         * reflection.c: Handle null PublicTokens properly. alloc mem for
12610         assembly names culture so we dont crash when freeing it.
12611         
12612 2004-05-06  Jackson Harper  <jackson@ximian.com>
12613
12614         * assembly.c: Check the usergac when loading with partial names.
12615         
12616 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12617
12618         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12619         does nothing for now (not required for Linux/Windows) but the class
12620         library can call it (and a newer or modified runtime could need it).
12621         * icall.c: Registred icall.
12622
12623 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12624
12625         * loader.c: prints a message on module loading error we set MONO_DEBUG
12626         environment variable.
12627
12628 2004-05-05  Jackson Harper  <jackson@ximian.com>
12629
12630         * appdomain.c: Handle PublicKeyToken=null properly.
12631         
12632 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12633
12634         * environment.c|h: Added icall ves_icall_System_Environment_
12635         GetOSVersionString to get the current OS version as a string.
12636         * icall.c: Registred icall.
12637
12638 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12639
12640         * object.c: in mono_object_get_virtual_method(), take into account that
12641         non-virtual methods don't have a slot in the vtable. Check needed when
12642         the object is a proxy.
12643
12644 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12645
12646         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12647         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12648
12649         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12650
12651         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12652         passed when a valuetype is expected.
12653
12654         * object.c (mono_unhandled_exception): Only set the exit code if the
12655         exception happens in the main thread. Fixes thread5.exe.
12656
12657         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12658         invalid names. Fixes #58047.
12659
12660 2004-05-03  Jackson Harper  <jackson@ximian.com>
12661
12662         * assembly.c: This line was committed accidently and is unneeded.
12663         
12664 2004-05-03  Jackson Harper  <jackson@ximian.com>
12665
12666         * icall.c: Add new icall for Assembly::LoadWithPartialName
12667         * assembly.c/.h: new function that probes the GAC to load partial
12668         assembly names by Paolo Molaro.
12669         
12670 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12671
12672         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12673         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12674         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12675         full type name.
12676
12677 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12678
12679         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12680         * reflection.c: fix bug when parsing a full type name and Version is not
12681         the last thing in the string.
12682
12683 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12684
12685         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12686         crashes when it is freed.
12687
12688 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12689
12690         * assembly.c: print the compat warning to stderr.
12691
12692 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12693
12694         * assembly.c (mono_assembly_load_references): Add a compatibility
12695         hack to run old applications that might be still referencing the
12696         3300-based assemblies, only do this for System.xxx.
12697
12698 2004-05-01  Jackson Harper  <jackson@ximian.com>
12699
12700         * appdomain.c: If the culture is neutral we set it to "".
12701         
12702 2004-04-29  Jackson Harper  <jackson@ximian.com>
12703
12704         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12705
12706 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12707  
12708         * string-icalls.c: added low overhead function for copying chars
12709         * icall.c: added needed icall for the above function
12710  
12711 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12712
12713         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12714         Environment.GetLogicalDrives.
12715
12716 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12717
12718         * rand.c: try and talk to egd or prngd
12719         for random bytes if opening devices fail.
12720
12721 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12722
12723         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12724         alignment for the type using the native alignment of its members 
12725         instead of using klass->min_align.
12726
12727         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12728
12729 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12730
12731         * file-io.c:
12732         * socket-io.c: added check for sys/aio.h.
12733
12734 2004-04-28  Dick Porter  <dick@ximian.com>
12735
12736         * threads.c: Don't abort a thread thats already aborting, when
12737         terminating everything.
12738
12739 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12740
12741         * icall.c: added 2 new async calls for Socket.
12742
12743         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12744         IO on *nix systems.
12745
12746         * threadpool.c: removed unused variable.
12747
12748 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12749
12750         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12751
12752 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12753
12754         * locales.c: put back string_invariant_tolower () and
12755         string_invariant_toupper ().
12756
12757 2004-04-26 David Waite <mass@akuma.org>
12758
12759         * file-io.h:
12760         * socket-io.h:
12761         * threads.h:
12762         * unicode.h: remove comma from end of enumeration declarations
12763
12764 2004-04-26 David Waite <mass@akuma.org>
12765
12766         * debug-mono-symfile.h:
12767         * decimal.c:
12768         * mono_debug.h:
12769         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12770
12771
12772 2004-04-26  Jackson Harper  <jackson@ximian.com>
12773
12774         * appdomain.c: Increment version number.
12775         
12776 2004-04-26  Jackson Harper  <jackson@ximian.com>
12777
12778         * appdomain.c: Set assembly references public token value when
12779         PublicKeyToken is specified, not the hash_value. Free public token
12780         values when free assembly name data. Previously the public key
12781         token was hex decoded, however we are using hex encoded public key
12782         tokens, so this is not neccasary.
12783         * assembly.c: Lookup assemblies in the gac if their public token
12784         value is set. Add function to allow enabling user gac
12785         lookups. Specify whether or not the assembly was loaded from the
12786         GAC. Compare full assembly names when checking the cache for
12787         assemblies (Temporarily disabled see comment in code). Remove
12788         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12789         specifies trace-loader they get extra info to stdout on the
12790         loading of assemblies.
12791         * image.h: Add a field for an assembly references public token
12792         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12793         whether an assembly has been loaded from the GAC.
12794         * image.c: Remove a corlib -> mscorlib name mapping.
12795         * loader.h: Add function to enable/disable the user gac.
12796         * mono-config.c: Check if the usergac is enabled in the config
12797         file.
12798         * icall.c: New icall to determine whether or not an assembly has
12799         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12800         * tabldefs.h: Add constant for assemblyref flag that specifies a
12801         full public key is used instead of a public token.
12802         * reflection.c: Remove mscorlib -> corlib mappings. Set
12803         PublicTokenValue instead of hash value. This value is a hex
12804         string so it does not need to be expanded.
12805
12806 2004-04-26  Martin Baulig  <martin@ximian.com>
12807
12808         * mono-debug-debugger.c (mono_debugger_initialize): Set
12809         `mono_debugger_initialized' before calling mono_debug_lock().
12810
12811 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12812
12813         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12814           InternalToUpper/InternalToLower.
12815         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12816           removed invariant culture shortcut.  This is now done in managed code.
12817         * locales.c: (string_invariant_toupper/tolower) removed.
12818
12819 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12820
12821         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12822         Added Poll internal call.
12823
12824         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12825         call for Poll. Select was too heavy for polling a single socket.
12826
12827         * threadpool.[ch]: added mono_threadpool_cleanup.
12828         * threads.c: use it. Don't use Thread_Abort on windows.
12829
12830 2004-04-23  Martin Baulig  <martin@ximian.com>
12831
12832         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12833
12834 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12835
12836         * icall.c: Registred new icalls for key pair protection and added an
12837         icall for Environment.GetFolderPath on Windows.
12838         * security.c|h: Added new icalls for key pair protection.
12839
12840 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12841
12842         * socket-io.c: don't display the non-supported family warning for known
12843         families. Now this is not displayed on windows when checking support
12844         for IPv4/IPv6.
12845
12846 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12847
12848         * class.c: don't display the layout warning for static fields.
12849
12850 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12851
12852         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12853         * locales.c, locales.h: Added new icalls for culture-specific
12854         Char.ToLower and Char.ToUpper.
12855
12856 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12857
12858         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12859         by David Waite.
12860
12861 2004-04-20  Martin Baulig  <martin@ximian.com>
12862
12863         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12864         of the type name before passing it to mono_reflection_type_from_name().
12865
12866 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12867
12868         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12869         encodings here. Fixes #56965.
12870
12871 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12872
12873         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12874         fix test on strstr result not that I can see anything that
12875         relies on the result.
12876
12877 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12878
12879         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12880         Fixes #57081.
12881
12882         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12883
12884         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12885         function to determine which marshalling to use for strings. Fixes
12886         #56965.
12887
12888         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12889
12890         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12891
12892 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12893
12894         * icall.c: #include mono-config.h
12895
12896 2004-04-15  Jackson Harper  <jackson@ximian.com>
12897
12898         * culture-info-tables.h: Fix date formats for en-US culture.
12899         
12900 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12901
12902         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12903         ThreadPool.SetMinThreads.
12904         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12905         ThreadPool.SetMinThreads.
12906
12907 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12908
12909         * mono-config.c: also load the .config file in the directory
12910         where the assembly was found.
12911
12912 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12913
12914         * assembly.c: load per-assembly config files.
12915         * icall.c: decrapified code to get the config dir and moved to
12916         mono-config.c.
12917         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12918         per-assembly config files. When doing a dll map lookup give precedence
12919         to the per-assembly data.
12920
12921 2004-04-14  Martin Baulig  <martin@ximian.com>
12922
12923         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12924         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12925         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12926
12927         * mono-debugger-debugger.c: While the debugger is locked, remember
12928         whether the symbol tables have changes and send one single
12929         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12930
12931 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12932
12933         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12934
12935         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12936         function.
12937
12938         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12939         account when marshalling string arrays. Fixes #56965.
12940
12941 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12942
12943         * icall.c: Add new icalls mapping for security.
12944         * security.c|h: Add internal calls for WindowsIdentity,
12945         WindowsImpersonationContext and WindowsPrincipal.
12946
12947 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12948
12949         * class.c: Added comment to ensure the System.MonoDummy class
12950         is removed when no longer necessary
12951
12952 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12953
12954         * appdomain.c: Pass arguments to the bootstraping exceptions to
12955         minimize JITed methods at boot
12956
12957         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12958         second string to be null.
12959
12960         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12961         Change the protocol to minimize the JIT methods at startup.  Now
12962         it Returns the internal codepage, if the value of "int_code_page"
12963         is 1 at entry, and we can not compute a suitable code page
12964         number, returns the code page as a string.
12965
12966 2004-04-13  Jackson Harper  <jackson@ximian.com>
12967
12968         * culture-info-tables.h: Fix number of decimal digits for all
12969         english locales.
12970
12971 2004-04-13  Jackson Harper  <jackson@ximian.com>
12972
12973         * icall.c: Clairfy out of sync error message. It is not always
12974         your corlib that is out of sync.
12975
12976 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12977
12978         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12979         properties when only the set accessor is overriden. Fixes #55874.
12980
12981 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12982
12983         * assembly.c (mono_assembly_load_references): Make this thread safe.
12984         Fixes #56327.
12985
12986 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12987
12988         * monosn.c: Add missing initialization calls.
12989
12990 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12991
12992         * locales.c:
12993         ves_icall_System_Globalization_CultureInfo_construct_number_format
12994         Fix g_assert so it compiles on fussier compilers re int/ptr
12995         mismatch
12996
12997 2004-04-08  Dick Porter  <dick@ximian.com>
12998
12999         * socket-io.h:
13000         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
13001         53992.  Also rearrange the code so that the internal calls return
13002         an error value and exceptions are thrown from managed code.
13003
13004         * icall.c: Add type info to the socket icalls.
13005
13006 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13007
13008         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
13009         owes me a beer.
13010
13011 2004-04-07  Martin Baulig  <martin@ximian.com>
13012
13013         * class.c (mono_class_from_generic_parameter): Don't default
13014         `klass->parent' to `mono_defaults.object_type'.
13015
13016 2004-04-07  Martin Baulig  <martin@ximian.com>
13017
13018         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13019         `param->pklass->reflection_info'.       
13020
13021 2004-04-07  Jackson Harper  <jackson@ximian.com>
13022
13023         * culture-info-tables.h: Fix date separator symbol.
13024         
13025 2004-04-07  Martin Baulig  <martin@ximian.com>
13026
13027         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
13028         from System.Type to System.MonoType.
13029
13030 2004-04-07  Martin Baulig  <martin@ximian.com>
13031
13032         * reflection.h
13033         (MonoReflectionGenericParam): Added `has_reference_type' and
13034         `has_value_type' fields.
13035
13036         * reflection.c (mono_image_get_generic_param_info): Encode the
13037         correct flags if we have the `class' or `struct' constraint.
13038
13039 2004-04-07  Martin Baulig  <martin@ximian.com>
13040
13041         * reflection.h
13042         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
13043
13044 2004-04-07  Jackson Harper  <jackson@ximian.com>
13045
13046         * appdomain.c: Revert extra patches, just wanted to bump the
13047         version number.
13048         
13049 2004-04-07  Jackson Harper  <jackson@ximian.com>
13050
13051         * Makefile.am: Add culture-info private headers.
13052         * icall.c: Add new icalls for contructing locales.
13053         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
13054         * locales.h: Declare new culture info construction methods.
13055         * object.h: Add new fields used to avoid the CultureMap to
13056         MonoCultureInfo.
13057         * culture-info.h: Definition of structs used in the culture info
13058         tables.
13059         * culture-info-tables.h: Autogenerated tables that contain culture
13060         info data. This file was generated with the locale-builder tool.
13061         * appdomain.c: Incement corlib version number.
13062         
13063 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
13064
13065         * appdomain.c: (mono_runtime_init) move mono_thread_init
13066         to before mono_object_new calls so critical sections
13067         are initialized before use.
13068
13069 2004-04-07  Martin Baulig  <martin@ximian.com>
13070
13071         * icall.c
13072         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
13073         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
13074         (ves_icall_MonoGenericParam_initialize): Removed.
13075         (monogenericparam_icalls): Removed.
13076         (generictypeparambuilder_icalls): Added new table for
13077         System.Reflection.Emit.GenericTypeParameterBuilder.
13078
13079         * reflection.c
13080         (mono_reflection_define_generic_parameter): Removed.
13081         (mono_reflection_initialize_generic_parameter): This is now called
13082         from GenericTypeParameterBuilder's .ctor.
13083
13084 2004-04-06  Martin Baulig  <martin@ximian.com>
13085
13086         * class.c (mono_class_init): Don't inflate nested classes in a
13087         generic instance.
13088         (mono_type_get_name_recurse): Include the generic arguments for
13089         generic instances and generic type declarations.
13090         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
13091         (_mono_class_get_instantiation_name): Removed.
13092         (mono_class_create_generic): Always use `gklass->name' as our name.
13093
13094         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
13095
13096         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
13097         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
13098         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13099         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13100         closed generic methods here.
13101
13102         * reflection.c
13103         (mono_reflection_generic_inst_get_nested_types): Removed.
13104         (inflate_mono_method): Copy the generic parameters from the
13105         MonoMethodHeader into out MonoGenericMethod.
13106
13107 2004-04-06  Martin Baulig  <martin@ximian.com>
13108
13109         * row-indexes.h
13110         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13111
13112         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13113
13114         * reflection.c (build_compressed_metadata): If we have any entries
13115         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13116         set the header version to 1.1.
13117
13118 2004-04-06  Martin Baulig  <martin@ximian.com>
13119
13120         * class.c (mono_class_init): If we're a generic instance,
13121         initialize our nested classes, too.
13122         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13123         suffix. 
13124
13125 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13126
13127         * process.c: quote the argument passed to the shell on windows.
13128
13129 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13130
13131         * threads.c (mono_alloc_special_static_data): Allow this to be
13132         called during startup.
13133
13134 2004-04-02  Martin Baulig  <martin@ximian.com>
13135
13136         * icall.c
13137         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13138
13139 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13140
13141         * icall.c: Fix build.
13142
13143 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13144
13145         * Makefile.am: Added security.c|h.
13146         * icall.c: Added icall for get_UserName;
13147         * security.c: New file for security related icalls. Added function
13148         get_UserName for System.Environment (fix #56144).
13149         * security.h: New. Header file for security.c
13150
13151 2004-04-02  Dick Porter  <dick@ximian.com>
13152
13153         * icall.c: Deleted the icalls that were obsoleted some time ago
13154         by the ICU string code, and which were mixed into the icall
13155         rearranging.  Fixes bug 55969.
13156
13157         * string-icalls.h: 
13158         * string-icalls.c: Deleted the code that those icalls reference.
13159
13160 2004-04-01  Martin Baulig  <martin@ximian.com>
13161
13162         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13163
13164         * class.c (mono_class_from_generic_parameter): Don't set 
13165         TYPE_ATTRIBUTE_INTERFACE.
13166         (my_mono_class_from_generic_parameter): Likewise.
13167
13168 2004-04-01  Martin Baulig  <martin@ximian.com>
13169
13170         * loader.c (find_method): Added an optional `MonoClass *ic'
13171         argument to search in a specific interface.
13172         (mono_get_method_constrained): New public function.
13173
13174 2004-04-01  Martin Baulig  <martin@ximian.com>
13175
13176         * reflection.c (mono_image_get_generic_field_token): Use the
13177         `handleref' cache here.
13178
13179 2004-04-01  Martin Baulig  <martin@ximian.com>
13180
13181         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13182
13183         * reflection.c (create_generic_typespec): Use the `typespec' hash
13184         here, not the `typeref' one.    
13185
13186 2004-04-01  Martin Baulig  <martin@ximian.com>
13187
13188         * class.c (mono_class_inflate_generic_type): Moved the
13189         functionality into a new static inflate_generic_type() which
13190         returns NULL if it didn't do anything.  Only increment the
13191         `mono_stats.inflated_type_count' if we actually inflated
13192         something.
13193         (mono_class_get_full): Check the classes type to see whether we
13194         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13195
13196 2004-04-01  Jackson Harper  <jackson@ximian.com>
13197
13198         * reflection.c: Set culture for assembly references.
13199         
13200 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13201
13202         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13203
13204 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13205
13206         * assembly.c:
13207         (do_mono_assembly_open): the critical section also covers
13208         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13209
13210 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13211
13212         * threads.c:
13213         (mono_manage_threads): abort the background threads when finishing.
13214         Fixes bug #47232.
13215
13216 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13217
13218         * gc.c: only close the done_event handle if there was no timeout.
13219         C-ified comments.
13220
13221 2004-03-30  Martin Baulig  <martin@ximian.com>
13222
13223         * icall.c (icall_entries): It's called "System.Activator", not
13224         "System.Activation".    
13225
13226 2004-03-30  Martin Baulig  <martin@ximian.com>
13227
13228         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13229         (mono_class_create_from_typespec): Likewise.
13230
13231 2004-03-30  Martin Baulig  <martin@ximian.com>
13232
13233         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13234         `has_ctor_constraint' and `initialized'.
13235
13236 2004-03-30  Martin Baulig  <martin@ximian.com>
13237
13238         * reflection.c (encode_new_constraint): New static function to add
13239         the constructor constraint attribute to a type parameter.
13240         (encode_constraints): Call encode_new_constraint() if necessary.
13241
13242         * reflection.h
13243         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13244
13245         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13246         
13247 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13248
13249         * reflection.c, icall.c: add support for pinning variables. 
13250
13251 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13252
13253         * marshal.c (mono_marshal_get_managed_wrapper):
13254         init bool local with zero rather than null.
13255
13256 2004-03-29  Martin Baulig  <martin@ximian.com>
13257
13258         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13259         the "official" behavior here.
13260         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13261
13262 2004-03-29  Martin Baulig  <martin@ximian.com>
13263
13264         * icall.c: Reflect latest API changes.
13265
13266 2004-03-29  Martin Baulig  <martin@ximian.com>
13267
13268         * loader.c (mono_get_method_from_token): Also call
13269         mono_metadata_load_generic_params () for abstract and interface
13270         methods; replace the type arguments in the method signature with
13271         the ones which are loaded from the metadata.
13272
13273 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13274
13275         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13276         of the lock is not the current thread. MS.NET don't do it, in spite of
13277         what the documentation says. See bug #56157.
13278
13279 2004-03-28  Martin Baulig  <martin@ximian.com>
13280
13281         * class.c (mono_class_init): Don't call init_properties() and
13282         init_events() for generic instances; set `prop->parent' when
13283         inflating properties.
13284
13285         * reflection.c (mono_generic_inst_get_object): Call
13286         `mono_class_init (ginst->klass)'.
13287         (mono_type_get_object): Only create a MonoGenericInst if your
13288         generic type is a TypeBuilder.
13289         (do_mono_reflection_bind_generic_parameters): Only set
13290         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13291
13292 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13293
13294         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13295         Fixes #56091.
13296
13297 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13298
13299         * icall.c: added Kill_internal icall.
13300         * process.[ch]: added Kill_internal icall.
13301
13302 2004-03-25  Martin Baulig  <martin@ximian.com>
13303
13304         * class.h (MonoStats): Added `generic_instance_count',
13305         `inflated_method_count', `inflated_type_count' and
13306         `generics_metadata_size'.       
13307
13308 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13309
13310         * reflection.c: no warnings now.
13311
13312 2004-03-25  Martin Baulig  <martin@ximian.com>
13313
13314         * class.c (mono_class_get_full): New public function; does a
13315         mono_class_get(), but also takes a `MonoGenericContext *'.
13316
13317         * loader.c (mono_field_from_memberref): Renamed to
13318         `field_from_memberref', made static and added `MonoGenericContext *'
13319         argument.
13320         (mono_field_from_token): Added `MonoGenericInst *' argument.
13321         (method_from_memberef): Likewise.
13322         (mono_get_method_from_token): Likewise.
13323         (mono_get_method_full): New public function; does a
13324         mono_get_method(), but also takes a `MonoGenericContext *'.
13325
13326         * verify.c (mono_method_verify): Get the method's generic context
13327         and pass it to mono_field_from_token(), mono_get_method_full() and
13328         mono_class_get_full().
13329
13330 2004-03-25  Martin Baulig  <martin@ximian.com>
13331
13332         * class.c (mono_class_inflate_generic_type): Take a
13333         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13334         `MonoGenericMethod *'.
13335
13336 2004-03-25  Martin Baulig  <martin@ximian.com>
13337
13338         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13339         instead of the MonoGenericMethod here.
13340
13341 2004-03-25  Martin Baulig  <martin@ximian.com>
13342
13343         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13344         each time we create a new MonoGenericInst, we also create a new
13345         context which points back to us.
13346
13347         * class.c (inflate_method): Use `ginst->context' instead of
13348         creating a new context.
13349
13350         * loader.c (method_from_memberref): Use
13351         `klass->generic_inst->context' instead of creating a new context.
13352
13353 2004-03-25  Martin Baulig  <martin@ximian.com>
13354
13355         * class.h (MonoGenericContext): New struct.
13356         (MonoGenericMethod): Removed `generic_inst'.
13357
13358         * class.c (mono_class_inflate_generic_method): Take a
13359         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13360
13361 2004-03-25  Martin Baulig  <martin@ximian.com>
13362
13363         * loader.h (MonoMethodInflated): New typedef.
13364
13365         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13366         `generic_param_count' consume just 30 bits, added `is_inflated'
13367         and `has_type_parameters' flags (one bit each).
13368
13369         * class.c (mono_class_inflate_generic_method): Create a
13370         MonoMethodInflated instead of a MonoMethodNormal and set
13371         `is_inflated' in the method signature.
13372
13373         * class.h (MonoGenericMethod): Removed `generic_method'.
13374
13375 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13376
13377         * image.c: Make sure the name of a MonoImage is always an absolute path.
13378           This fixes bug #54415.
13379
13380 2004-03-24  Martin Baulig  <martin@ximian.com>
13381
13382         * class.c (mono_class_setup_vtable): If we're a generic instance,
13383         use our generic type's vtable size.
13384
13385 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13386
13387         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13388         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13389         problems.
13390
13391 2004-03-23  Martin Baulig  <martin@ximian.com>
13392
13393         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13394         `MonoEvent *events'.
13395
13396         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13397         (typebuilder_icalls): Added "get_event_info"; calls
13398         mono_reflection_event_builder_get_event_info(). 
13399
13400         * reflection.c (mono_reflection_generic_inst_initialize): Added
13401         `MonoArray *events'.
13402         (mono_reflection_event_builder_get_event_info): New function.
13403
13404 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13405
13406         * object.h: add mono_type_initialization_init
13407
13408         * object.c (mono_runtime_class_init): 
13409         implement class constructor synchronization rules
13410         to cope with threading issues.  
13411         add mono_type_initialization_init
13412
13413         * appdomain.c (mono_runtime_init): call 
13414         mono_type_initialization_init
13415
13416         * class.h: removing initializing field from MonoVTable
13417
13418 2004-03-23  Martin Baulig  <martin@ximian.com>
13419
13420         * class.c (my_mono_class_from_generic_parameter): Use
13421         `param->name' if it's not NULL. 
13422
13423 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13424
13425         * class.c: do not insert non-virtual methods in the vtable.
13426         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13427         that means the method is non-virtual. This never would have
13428         happened before.
13429
13430 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13431
13432         * profiler.c: Added lock for accessing coverage_hash.
13433
13434 2004-03-22  Martin Baulig  <martin@ximian.com>
13435
13436         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13437         `method->method->signature->generic_param_count != 0' to make it
13438         work for interface methods.
13439
13440 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13441
13442         * process.c: quote the string passed to the shell using g_shell_quote.
13443
13444 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13445
13446         * threads.c:
13447         (mono_threads_manage): don't remove the finalizer thread and self
13448         from the threads hash table so that mono_thread_manage can be called
13449         more than once.
13450
13451 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13452
13453         * process.c: quote the arguments when UseShellExecute is true. Fixes
13454         bug #55790.
13455
13456 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13457
13458         * threads.c: set mono_thread_detach as a cleanup routine for every
13459         thread. This way it's always executed upon thread termination, either
13460         aborted or finished normally. No more xsp hangs!
13461
13462 2004-03-17  Martin Baulig  <martin@ximian.com>
13463
13464         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13465         `int count_nested' and a `MonoType **nested'.
13466
13467         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13468         most of the functionality into a new static
13469         do_mono_reflection_bind_generic_parameters() and don't take a
13470         `MonoType *nested_in' argument any more.  Don't compute nested
13471         types here.
13472         (mono_reflection_generic_inst_get_nested_types): New public method
13473         to get nested types.
13474
13475         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13476         we're a nested class.
13477
13478         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13479         mono_reflection_generic_inst_get_nested_types() to compute the
13480         nested types.
13481
13482 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13483
13484         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13485         descriptive error message under windows.
13486         
13487 2004-03-17  Martin Baulig  <martin@ximian.com>
13488
13489         * class.c (dup_type): Added `const MonoType *original' argument;
13490         copy the attrs from the original type.
13491
13492 2004-03-17  Martin Baulig  <martin@ximian.com>
13493
13494         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13495         `m->generic_inst_cache' here.
13496
13497 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13498
13499         * exception.h exception.c: Add stack_overflow_exception.
13500
13501 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13502
13503         * threadpool.c:
13504         (overlapped_callback): call SetEvent *after* invoking the callback.
13505         No need to call CloseHandle.
13506
13507 2004-03-16  Martin Baulig  <martin@ximian.com>
13508
13509         * reflection.c (mono_image_get_fieldref_token): Take a
13510         `MonoReflectionField *' instead of a `MonoClassField *' and a
13511         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13512
13513 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13514
13515         * appdomain.c: don't add the culture to the filename we're looking for
13516         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13517
13518 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13519
13520         * locales.c: don't ignore symbols when doing case insensitive compares.
13521         Thanks Dick! Fixes bug #54046.
13522
13523         * threads.c: surround 'threads' usage with enter/leave in
13524         mono_thread_manage.
13525
13526 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13527
13528         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13529         implicitly marshalled as [Out]. Fixes #55450.
13530
13531         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13532         an exception.
13533
13534 2004-03-16  Martin Baulig  <martin@ximian.com>
13535
13536         * class.c (mono_class_from_generic_parameter): Use the actual
13537         parameter name. 
13538
13539 2004-03-16  Martin Baulig  <martin@ximian.com>
13540
13541         * reflection.c (type_get_signature_size): New static function.
13542         Compues the size of the type in a method signature.
13543         (method_get_signature_size): New static function; calls
13544         type_get_signature_size() to compute the actual size of the
13545         method's signature.
13546         (method_encode_signature): Use method_get_signature_size() to get
13547         the signature's size rather than using `nparams * 10'.
13548
13549 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13550
13551         * file-io.h: define here WapiOverlapped on windows. I don't want the
13552         regular OVERLAPPED one.
13553
13554         * file-io.c:
13555         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13556         Disabling AIO on windows.
13557
13558 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13559
13560         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13561         bug #55385.
13562
13563 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13564
13565         * appdomain.c: upgraded corlib version.
13566
13567         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13568         and BeginWrite. Allow opening files for asynchrnous operations.
13569
13570         * file-io.h: new struct that maps FileStreamAsyncResult.
13571         * icall.c: added new icalls.
13572         * process.[ch]: support setting child process environment variables
13573         and use the SHELL or COMSPEC when UseShellExecute is true.
13574
13575         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13576         callback for async. IO is here and also BindHandle.
13577
13578         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13579         from here.
13580
13581 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13582
13583         * reflection.c (create_custom_attr): Allow len == 0.
13584
13585         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13586         computation on big-endian machines.
13587
13588 2004-03-13  Martin Baulig  <martin@ximian.com>
13589
13590         * class.h (MonoGenericInst): Added `int count_ifaces'.
13591
13592         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13593         `ginst->count_ifaces' instead `klass->interface_count' since we
13594         may get called before the vtable is created.
13595
13596         * loader.c (mono_method_get_param_names): If we're a generic
13597         instance, return and don't initialize the class.
13598
13599         * reflection.c (mono_reflection_setup_generic_class): Don't call
13600         ensure_runtime_vtable().
13601         (mono_reflection_bind_generic_parameters): Set
13602         `ginst->count_ifaces'.
13603
13604 2004-03-11  Jackson Harper <jackson@ximian.com>
13605
13606         * icall.c:
13607         * unicode.c:
13608         * unicode.h: Remove unused System.Char icalls.
13609         
13610 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13611
13612         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13613         code when we P/Invoke the first library in Windows.Forms, instead
13614         of when we first open the assembly.
13615
13616         * assembly.c: Drop the lookup from here.
13617
13618 2004-03-10  Martin Baulig  <martin@ximian.com>
13619
13620         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13621         class for properties, fields and events.  Finally fixes #54945.
13622
13623 2004-03-10  Martin Baulig  <martin@ximian.com>
13624
13625         * metadata.c (mono_metadata_class_equal): New static function;
13626         checks whether two generic instances or two generic parameters are
13627         equal.
13628         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13629         compare classes.        
13630
13631 2004-03-10  Martin Baulig  <martin@ximian.com>
13632
13633         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13634
13635         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13636         argument and write it into the `reflection_info' field.
13637
13638         * icall.c
13639         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13640         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13641
13642 2004-03-09  Jackson Harper  <jackson@ximian.com>
13643
13644         * char-conversions.h: use 8 bits for numeric data its all we need
13645         * icall.c: numeric data is only 8 bits now.
13646
13647 2004-03-09  Martin Baulig  <martin@ximian.com>
13648
13649         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13650
13651         * class.c (init_properties, init_events): Initialize the new
13652         `parent' field.
13653
13654         * reflection.c (typebuilder_setup_properties): Likewise.
13655         (typebuilder_setup_events): Likewise.
13656
13657         * reflection.h (MonoEventInfo): Replaced `parent with
13658         `declaring_type' and `reflected_type'.
13659
13660         * icall.c (ves_icall_get_property_info): Distinguish between
13661         declaring and reflected type.
13662         (ves_icall_get_event_info): Likewise.
13663
13664 2004-03-09  Martin Baulig  <martin@ximian.com>
13665
13666         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13667         (ves_icall_Type_GetField): Correctly set field->klass.
13668
13669 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13670
13671         * loader.h: Fix warning.
13672
13673 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13674
13675         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13676         library routine if present.  Notice that it will still continue
13677         executing even if its missing, for those working on the Gtk#
13678         edition of Windows.Forms.
13679
13680         * assembly.c (do_mono_assembly_open): If loading the
13681         System.Windows.Forms call mono_loader_wini_init.
13682
13683 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13684
13685         * class.h: Added MonoRemoteClass struct.
13686         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13687         function for MonoStrings.
13688         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13689         Added internal call for getting the proxy type.
13690         * marshal.c: Get the type of transparent proxies from its remote_class.
13691         Added methods that generate the IL for type checks and casts:
13692         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13693         mono_marshal_get_proxy_cancast.
13694         * marshal.h: Declaration of the previous new methods.
13695         * object.c: Added new moethods for creating and updating MonoRemoteClass
13696         instances: mono_remote_class, mono_upgrade_remote_class, 
13697         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13698         * verify.c: FIx transparent_proxy_fields layout.
13699         * appdomain.c: Bump corlib version.
13700
13701 2004-03-04  Jackson Harper  <jackson@ximian.com>
13702
13703         * icall.c: Add icall to access char conversion tables.
13704         * char-conversions.h: Character conversion tables.
13705         * Makefile.am: Add char-conversions.h private header file.
13706         
13707 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13708
13709         * appdomain.c (unload_thread_main): Increase unloading timeout to
13710         10 sec as a temporary workaround for Nant problems.
13711
13712 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13713
13714         * gc.c: Add checks for GC_enable and GC_disable.
13715
13716         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13717         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13718         (bug #54988).
13719         
13720 2004-02-27  Martin Baulig  <martin@ximian.com>
13721
13722         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13723         `MonoReflectionType *' instead of a `MonoType *'.
13724
13725 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13726
13727         * gc.c (run_finalize): Avoid finalizing the object representing the
13728         finalizer thread.
13729         (finalizer_thread): Fix warning.
13730
13731 2004-02-25  Martin Baulig  <martin@ximian.com>
13732
13733         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13734         argument for nested types.
13735         (mono_class_create_generic): Added support for nested generictypes.
13736
13737         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13738         `GList *nested'.
13739
13740         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13741
13742         * reflection.c (method_encode_signature): Increase the minimum
13743         value of `size' from 10 to 11.
13744         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13745         and `MonoType **types' arguments instead of the `MonoArray
13746         *types'; added `MonoType *nested_in'.  Recursively instantiate
13747         nested classes. 
13748
13749 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13750
13751         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13752         stack_overflow_ex members which are used by exception handling.
13753
13754         * appdomain.c (mono_runtime_init): Initialize the new members.
13755
13756         * gc.c (mono_gc_enable): New helper function.
13757         * gc.c (mono_gc_disable): New helper function.
13758
13759 2004-02-23  Martin Baulig  <martin@ximian.com>
13760
13761         * icall.c: I must have been really stupid - make it actually work
13762         this time ;-)
13763
13764 2004-02-23  Martin Baulig  <martin@ximian.com>
13765
13766         * loader.c (method_from_memberref): Only inflate the method if
13767         it's in another klass.
13768
13769 2004-02-23  Martin Baulig  <martin@ximian.com>
13770
13771         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13772         (mono_class_init): If we're a generic instance and an interface,
13773         compute `class->interface_id'; also create `class->interfaces'
13774         here and inflate them.
13775
13776         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13777         `ginst->is_open'.
13778         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13779
13780         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13781
13782 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13783
13784         * reflection.c (method_encode_code): Improved the error message
13785         generated by the exception.
13786
13787 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13788
13789         * icall.c: Martin did not do what he said in the ChangeLog for
13790         2004-02-18, but put back the changes for properties and events.
13791         Commenting those changes out again and adding comment to bug #54518.
13792         
13793         * process.c: removed warning.
13794
13795 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13796
13797         * marshal.c (emit_struct_conv): Print an error message instead of
13798         asserting when a type does not have the StructLayout attribute.
13799
13800 2004-02-20  Martin Baulig  <martin@ximian.com>
13801
13802         * reflection.c (mono_type_get_object): Also use the cache for
13803         generic instances.
13804         (mono_reflection_bind_generic_parameters): Always compute
13805         `ginst->ifaces'.        
13806
13807 2004-02-20  Martin Baulig  <martin@ximian.com>
13808
13809         * class.h (MonoGenericMethod): Removed `klass'.
13810
13811         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13812         *klass' argument.
13813
13814 2004-02-20  Martin Baulig  <martin@ximian.com>
13815
13816         * reflection.c (method_encode_methodspec): Actually use the
13817         uninflated signature for the memberref.
13818
13819 2004-02-20  Martin Baulig  <martin@ximian.com>
13820
13821         * class.h (MonoGenericMethod): Removed `declaring'.
13822
13823         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13824         is NULL, compute it here.
13825
13826 2004-02-20  Martin Baulig  <martin@ximian.com>
13827
13828         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13829
13830         * metadata.c (mono_metadata_generic_inst_hash): New method.
13831         (mono_metadata_generic_inst_equal): New method.
13832
13833         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13834         `klass->image->generic_inst_cache' cache to avoid creating
13835         duplicate MonoGenericInst's.
13836
13837         * class.c (mono_class_inflate_generic_type): Use the cache.
13838
13839 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13840
13841         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13842
13843 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13844
13845         * icall.c: added Socket.WSAIoctl icall.
13846
13847         * socket-io.[ch]: implemented
13848         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13849
13850 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13851
13852         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13853
13854 2004-02-18  Urs C Muff  <umuff@quark.com>
13855
13856         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13857         this work on PPC and other big-endian architectures.
13858
13859         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13860         fields with an underscore to make sure they're only accessed by
13861         the read32() macro.
13862
13863 2004-02-18  Martin Baulig  <martin@ximian.com>
13864
13865         * icall.c: Put the klass->refclass changes back for methods and
13866         fields, but not for properties and events.  We're currently not
13867         distinguishing between DeclaringType and ReflectedType for
13868         properties and events, that's what caused the regressions.
13869
13870 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13871
13872         * object.c:
13873         (mono_async_result_new): the handle can be NULL.
13874
13875         * threadpool.c: Use an event instead of a semaphore, don't initialize
13876         it until needed. This saves quite a few semaphores from being created
13877         when using the threadpool.
13878
13879 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13880
13881         * object.c (mono_string_is_interned_lookup): Fix interning of long
13882         strings. Fixes #54473.
13883
13884         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13885
13886         * icall.c: Revert the klass->refclass changes since they introduce
13887         regressions (bug #54518).
13888
13889 2004-02-18  Martin Baulig  <martin@ximian.com>
13890
13891         * class.c (mono_class_init): If we're a generic instance and don't
13892         come from a TypeBuilder, inflate our members here.
13893         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13894         (mono_class_create_generic): New public method.
13895         (mono_class_initialize_generic): Removed.
13896         (get_instantiation_name): Renamed to
13897         _mono_class_get_instantiation_name() and made it public.
13898
13899 2004-02-18  Martin Baulig  <martin@ximian.com>
13900
13901         * class.c (mono_class_inflate_generic_type): Clear the new
13902         instance's `nginst->klass' when inflating a generic instance.
13903         (mono_class_is_subclass_of): Added (basic) support for generic
13904         instances.
13905
13906 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13907
13908         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13909         MonoMempool to hold compiled native code.
13910
13911 2004-02-17  Martin Baulig  <martin@ximian.com>
13912
13913         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13914         `properties'.
13915
13916         * reflection.c (mono_reflection_generic_inst_initialize): Added
13917         `MonoArray *properties' argument.
13918
13919         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13920
13921 2004-02-17  Martin Baulig  <martin@ximian.com>
13922
13923         * icall.c (ves_icall_Type_GetFields): Renamed to
13924         ves_icall_Type_GetFields_internal() and added a
13925         `MonoReflectionType *rtype' argument; pass it to
13926         mono_field_get_object() to set the field's "reflected" type.
13927         (ves_icall_Type_GetConstructors): Likewise.
13928         (ves_icall_Type_GetEvents): Likewise.
13929         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13930         argument; pass it to mono_method_get_object() to set the method's
13931         "reflected" type.       
13932
13933 2004-02-17  Martin Baulig  <martin@ximian.com>
13934
13935         * class.h (MonoDynamicGenericInst): New type.
13936         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13937
13938         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13939         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13940         (ves_icall_MonoGenericInst_GetFields): New interncall.
13941
13942         * class.c (mono_class_from_generic): Don't call
13943         mono_class_initialize_generic() if this is a dynamic instance;
13944         ie. it's being created from a TypeBuilder.
13945         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13946         `class->byval_arg.type'.
13947
13948         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13949         to `inflate_method' and made static.
13950         (mono_reflection_inflate_field): Removed.
13951         (mono_reflection_generic_inst_initialize): New public method.
13952
13953         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13954         `ctors' and `fields'; added `initialized'.
13955
13956 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13957
13958         * debug-helpers.c (mono_method_full_name): Fix output for empty
13959         namespaces.
13960
13961 2004-02-12  Martin Baulig  <martin@ximian.com>
13962
13963         * class.h (MonoClassField): Added `MonoType *generic_type'.
13964
13965         * reflection.c (mono_image_get_fieldref_token): Added support for
13966         instantiated generic types.
13967         (field_encode_inflated_field): Removed.
13968         (mono_image_get_inflated_field_token): Removed.
13969         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13970
13971         * reflection.h (MonoReflectionInflatedField): Removed.
13972
13973 2004-02-12  Martin Baulig  <martin@ximian.com>
13974
13975         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13976         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13977
13978         * reflection.c (mono_image_get_methodspec_token): Take a
13979         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13980         (mono_image_create_token): Check whether we have a
13981         `method->signature->gen_method' and call
13982         mono_image_get_methodspec_token() if appropriate.
13983         (inflated_method_get_object): Removed.
13984         (mono_reflection_bind_generic_method_parameters): Return a
13985         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13986         (mono_reflection_inflate_method_or_ctor): Likewise.
13987
13988         * reflection.h (MonoReflectionInflatedMethod): Removed.
13989
13990 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13991
13992         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13993         for custom valuetype marshalling.
13994
13995         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13996
13997 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13998
13999         * icall.c: fixed WSAGetLastError_internal name.
14000
14001 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
14002
14003         * threads.c (mono_thread_attach): Allow this to be called multiple
14004         times for a thread.
14005         
14006         * threads.c (build_wait_tids): Do not wait for ourselves.
14007
14008         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
14009         appdomain list is empty.
14010
14011         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
14012         memory returned by mono_string_builder_to_utf16, since it points into
14013         managed memory. Thanks to Bernie Solomon for noticing this.
14014
14015         * icall.c: Add AppDomainSetup icalls.
14016
14017         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
14018
14019         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
14020         types.
14021
14022         * reflection.c (reflection_methodbuilder_to_mono_method): Save
14023         custom attributes to the method_aux struct. Also fix array indexes etc.
14024
14025         * loader.c (mono_method_get_param_names): Make dynamic case work again.
14026         
14027 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
14028
14029         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
14030         (both static and runtime) and reduce startup time.
14031
14032 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
14033
14034         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
14035         AsAny marshalling conversion instead of crashing.
14036
14037         * marshal.c: Fix warnings.
14038
14039 2004-02-09  Martin Baulig  <martin@ximian.com>
14040
14041         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
14042
14043         * reflection.h (MonoReflectionInflatedMethod): Removed the
14044         `declaring' field, it's now in the unmanaged MonoGenericMethod.
14045
14046         * reflection.c (method_encode_methodspec): Removed the `method'
14047         argument; we get it from `gmethod->declaring'.
14048         (inflated_method_get_object): Removed the `declaring' argument.
14049
14050 2004-02-09  Martin Baulig  <martin@ximian.com>
14051
14052         * class.h (MonoGenericMethod): New type.
14053         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
14054         `generic_method'.
14055
14056         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
14057         a `MonoGenericMethod *gen_method' one.
14058
14059         * class.c (mono_class_inflate_generic_type): Take an additional
14060         `MonoGenericMethod * argument.  This is only non-NULL if we're
14061         inflating types for a generic method.   
14062         (mono_class_inflate_generic_signature): Renamed to
14063         inflate_generic_signature() and made static; take a
14064         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14065         (inflate_generic_header): Take a `MonoGenericMethod *' argument
14066         instead of a `MonoGenericInst *' one.
14067         (mono_class_inflate_generic_method): Likewise.
14068
14069         * reflection.c (encode_generic_method_sig): Take a
14070         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14071         (method_encode_methodspec): Likewise.
14072         (inflated_method_get_object): Likewise. 
14073
14074         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
14075         field with a `MonoGenericMethod *gmethod' one.  
14076
14077 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
14078
14079         * class.h (mono_class_has_parent): add parens to expansion
14080         so you can ! this.
14081
14082 2004-02-08  Martin Baulig  <martin@ximian.com>
14083
14084         * image.h (MonoImage): Removed `generics_cache'.
14085
14086         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
14087         instead of a `MonoType *' argument; removed the `inflate_methods'
14088         argument.  Don't inflate methods here.
14089
14090         * loader.c (find_method): If it's a generic instance, call
14091         mono_class_init() on the `sclass->generic_inst->generic_type'.
14092
14093         * metadata.c (mono_type_size): Make this work on uninitialized
14094         generic instances; call it on the `ginst->generic_type's class.
14095
14096         * reflection.c (mono_reflection_bind_generic_parameters): Call
14097         mono_class_from_generic() to create the `ginst->klass'.
14098
14099 2004-02-08  Martin Baulig  <martin@ximian.com>
14100
14101         * class.h (MonoClass): Changed type of `generic_inst' from
14102         `MonoType *' to `MonoGenericInst *'.
14103
14104 2004-02-08  Martin Baulig  <martin@ximian.com>
14105
14106         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14107         mono_type_get_object(), this is now creating a `MonoGenericInst'
14108         for MONO_TYPE_GENERICINST.
14109         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14110         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14111
14112         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14113         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14114         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14115         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14116         and reflected type.
14117
14118         * reflection.h (MonoReflectionInflatedMethod): Removed
14119         `declaring_type' and `reflected_type'.
14120
14121 2004-02-08  Martin Baulig  <martin@ximian.com>
14122
14123         * class.h (MonoGenericInst): Added `MonoType *parent' and
14124         `MonoType **ifaces'.
14125
14126         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14127         `parent' and `interfaces'.
14128
14129         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14130         `MonoType *' argument and return a `MonoType *'.
14131
14132         * icall.c
14133         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14134         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14135
14136 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14137
14138         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14139         valuetype marshalling.
14140
14141 2004-02-06  Martin Baulig  <martin@ximian.com>
14142
14143         * class.c
14144         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14145         (my_mono_class_from_generic_parameter): Likewise.
14146
14147 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14148
14149         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14150         contents of the symbol files lazily.
14151
14152         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14153
14154         * threads.h threads.c icall.c: New icalls for getting and setting the
14155         threads name.
14156
14157 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14158
14159         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14160         Raise an exception when the domain is not found.
14161
14162 2004-02-03  Martin Baulig  <martin@ximian.com>
14163
14164         * reflection.c (mono_image_get_methodspec_token): Use the
14165         uninflated signature; fixes gen-33.
14166
14167 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14168
14169         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14170         the finalizer code can use thread functionality.
14171
14172         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14173         the finalizer thread.
14174
14175         * threads.c: Make some functions more robust.
14176
14177         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14178
14179         * metadata.h: Add new marshalling conventions.
14180
14181         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14182         stringbuilder marshalling. Fixes #53700.
14183
14184         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14185
14186         * reflection.c (mono_image_get_type_info): Save declarative security
14187         info.
14188
14189         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14190         unmanaged fields as well.
14191
14192         * appdomain.c: Bump corlib version.
14193
14194 2004-02-01  Martin Baulig  <martin@ximian.com>
14195
14196         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14197         method type arguments.  
14198
14199 2004-01-30  Duncan Mak  <duncan@ximian.com>
14200
14201         * marshal.h: Add prototype for
14202         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14203         and
14204         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14205         fix the build.
14206
14207 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14208
14209         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14210         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14211
14212 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14213
14214         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14215         custom marshalling of valuetypes.
14216
14217         * marshal.c: Fix some warnings.
14218
14219 2004-01-29  Martin Baulig  <martin@ximian.com>
14220
14221         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14222         for generic method parameters.
14223
14224         * reflection.c (method_encode_methodspec): Write the uninflated
14225         signature into the methodspec table.
14226         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14227         is always the uninflated method.
14228         (reflection_methodbuilder_to_mono_method): Copy the generic
14229         parameters from the MethodBuilder into `header->gen_params'.
14230
14231 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14232
14233         * class.c (mono_class_from_generic_parameter): Fix warning.
14234
14235 2004-01-27  Martin Baulig  <martin@ximian.com>
14236
14237         * class.c (mono_class_from_generic_parameter): Don't create
14238         `klass->methods' here.  
14239
14240 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14241
14242         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14243         extension since it does not work with libraries named lib<FOO>.dll.so.
14244
14245 2004-01-25  Martin Baulig  <martin@ximian.com>
14246
14247         * class.c (mono_class_inflate_generic_type): Added support for
14248         MONO_TYPE_GENERICINST.
14249
14250         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14251         inflate methods on open constructed types.      
14252
14253 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14254
14255         * object.c: fire ProcessExit event in the root AppDomain after running
14256         Main. Fixes bug #53299.
14257
14258 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14259
14260         * socket-io.c: include the new socket-wrappers.h header.
14261         Use the wrappers instead of the unix socket functions to make the code
14262         more clear.
14263
14264 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14265
14266         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14267
14268         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14269         Fixes #22532.
14270
14271 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14272
14273         * reflection.c (mono_image_create_pefile): Handle the case when the
14274         entry point is not a MethodBuilder.
14275
14276         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14277         field to ReflectionMethod since it is not allways a builder.
14278
14279         * reflection.c (type_get_fully_qualified_name): New helper function to
14280         return the fully qualified name of a type.
14281
14282         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14283         type name for custom marshallers.
14284
14285         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14286
14287         * class.c (mono_class_setup_vtable): If a parent class already 
14288         implements an interface, use the implementing methods from that class.
14289         Fixes #53148.
14290
14291 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14292
14293         * threadpool.c: just return instead of ExitThread to allow for thread
14294         clean up earlier.
14295
14296 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14297
14298         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14299         when closing resource modules.
14300
14301         * reflection.c (mono_image_create_pefile): Handle the case when the
14302         entry point is not a MethodBuilder.
14303
14304         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14305         field to ReflectionMethod since it is not allways a builder.
14306
14307 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14308
14309         * marshal.c (mono_marshal_get_managed_wrapper): 
14310         mono_marshal_alloc takes native int so CONV_I
14311         the arg for 64bits.
14312
14313 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14314
14315         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14316         tokens in the cattr table. Fixes #53108.
14317
14318 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14319
14320         * loader.c: don't trim ".dll" before looking up in the config file.
14321         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14322
14323 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14324
14325         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14326         Return the module which contains the resource as well.
14327         (ves_icall_System_Reflection_Module_Close): New icall.
14328
14329         * appdomain.c: Bump corlib version number.
14330
14331         * image.c (mono_image_addref): New public function.
14332
14333         * assembly.c: Call mono_image_addref.
14334
14335         * reflection.c (mono_module_get_object): Increase reference count of 
14336         the image.
14337
14338         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14339         Fixes #22532.
14340
14341         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14342         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14343         proper exceptions on DllImport problems.
14344
14345 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14346
14347         * class.c, metadata.c: eliminate CSIZE macro.
14348
14349 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14350
14351         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14352         * object.h: Added async_callback field in MonoAsyncResult.
14353         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14354         * verify.c: Added async_callback in MonoAsyncResult layout.
14355
14356 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14357
14358         * reflection.c (mono_reflection_get_custom_attrs): Add support
14359         for Modules.
14360
14361 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14362
14363         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14364         marshalling.
14365         (mono_marshal_method_from_wrapper): Add null pointer check.
14366
14367 2004-01-16  Martin Baulig  <martin@ximian.com>
14368
14369         * debug-mono-symfile.h: Set version number to 36 and reflect
14370         latest symbol writer changes.
14371
14372 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14373
14374         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14375         multi-dimensional arrays.
14376         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14377         (mono_class_from_mono_type): Use bounded_array_class_get.
14378         
14379         * class.c (mono_bounded_array_class_get): New function which takes
14380         a 'bounded' bool argument to distinguish vectors from one dimensional
14381         arrays.
14382
14383         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14384         bounded_array_class_get if the array has bounds.
14385
14386         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14387         Search modules loaded using AssemblyBuilder:AddModule as well.
14388
14389 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14390
14391         * appdomain.c: increased corlib version.
14392         * filewatcher.c: removed g_print.
14393         * icall.c:
14394         (get_property_info): only allocate what is actually requested.
14395         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14396
14397 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14398
14399         * Makefile.am: added filewatcher.[ch]
14400         * filewatcher.[ch]: FileSystemWatcher runtime support.
14401         * icall.c: added new FSW icalls.
14402
14403 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14404
14405         * string-icalls.c: fix stringbuilder regression as suggested by
14406         Iain McCoy <iain@mccoy.id.au>.
14407
14408 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14409
14410         * process.c (process_read_stringtable_block): Recognize '007f' as
14411         a language neutral stringtable block.
14412
14413 2004-01-12  Patrik Torstensson
14414
14415         * object.h (MonoStringBuilder) : Changed layout to support our
14416         new stringbuilder class.
14417         * marshal.c: Change marshalling to support the new layout of 
14418         string builder.
14419         * appdomain.c: increased version number because new layout of
14420         string builder.
14421
14422 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14423
14424         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14425         assembly name as an string instead of an AssemblyName, since it is
14426         easier to extract info from it.
14427
14428         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14429         the culture subdirectories too. Fixes #52231.
14430
14431 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14432
14433         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14434         It takes 2 new parameters with an optional name for the method to look
14435         for and case ignoring info.
14436
14437         * threadpool.c: removed unused variable.
14438
14439 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14440
14441         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14442         It takes 2 new parameters with an optional name for the property to look
14443         for and case ignoring info.
14444         Fixes bug #52753.
14445
14446 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14447
14448         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14449         Fix #52451.
14450
14451 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14452
14453         * appdomain.c:
14454         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14455         Fixes bug #52630.
14456
14457 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14458
14459         * reflection.c: Add support for more than one unmanaged resource.
14460
14461         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14462         in field->def_value, as done in all other cases.
14463
14464         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14465         TypeBuilders.
14466
14467         * reflection.c (mono_reflection_create_runtime_class): Remove 
14468         errorneous assignment to klass->element_class, since it is already
14469         done in mono_reflection_setup_internal_class.
14470
14471 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14472
14473         * gc.c: added missing LeaveCriticalSection.
14474         * icall.c: indented a couple of lines.
14475         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14476         if we call EndInvoke inside a callback. Fixes bug #52601.
14477
14478 2004-01-07  Martin Baulig  <martin@ximian.com>
14479
14480         * mono-debug-debugger.h
14481         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14482
14483 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14484
14485         * appdomain.c: Use messages in NotImplementedException.
14486
14487         * exception.c (mono_get_exception_not_implemented): Now this takes
14488         a message argument.
14489
14490         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14491         exception instead of g_asserting an aborting when something is not
14492         implemented.
14493
14494         Add some inline docs.
14495
14496 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14497
14498         * reflection.h: Update after changes to object layout.
14499
14500         * reflection.c: Implement saving of unmanaged aka win32 resources.
14501
14502         * appdomain.c: Bump version number.
14503
14504         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14505         Handle missing domains gracefully.
14506
14507 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14508
14509         * file-io.c : On Windows, there are much more invalid_path_chars.
14510
14511 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14512
14513         * class.h, object.c: prepare for GetType () speedup.
14514
14515 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14516
14517         * profiler.c: workaround for --profile null reference exception on
14518           cygwin. Patch by Patrik Torstensson.
14519
14520 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14521
14522         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14523         make work for unaligned access.
14524
14525 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14526
14527         * class.c: small cleanup (class->fields [i] -> field).
14528         * image.c: check address of metadata is valid.
14529
14530 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14531
14532         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14533         search the list of loaded assemblies.
14534
14535         * reflection.c (mono_reflection_type_from_name): Use 
14536         mono_assembly_loaded instead of mono_image_loaded.
14537
14538         * reflection.c: Fix warnings.
14539
14540 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14541
14542         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14543         is dynamic. This is needed since an assembly can contain both dynamic and
14544         non-dynamic images.
14545
14546         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14547         assembly->dynamic.
14548
14549         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14550
14551         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14552         to store modules loaded using AddModule.
14553
14554         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14555         on Modules.
14556
14557         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14558
14559         * reflection.c (mono_image_fill_export_table_from_module): New function to
14560         fill out the EXPORTEDTYPES table from a module.
14561
14562         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14563         into a separate function. Also handle loaded non-dynamic modules.
14564
14565         * reflection.c (mono_image_basic_init): Fix memory allocation.
14566
14567         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14568
14569         * assembly.c (mono_assembly_load_references): Make this public.
14570
14571 2003-12-19  Martin Baulig  <martin@ximian.com>
14572
14573         * class.c (mono_class_initialize_generic): Made this static, take
14574         a `MonoGenericInst *' instead of a `MonoClass *'.
14575         (mono_class_from_generic): Call mono_class_initialize_generic()
14576         unless we're already initialized or being called from
14577         do_mono_metadata_parse_generic_inst().
14578
14579         * class.h (MonoGenericInst): Added `initialized' and
14580         `init_pending' flags.
14581
14582         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14583         `mono_class_init (gklass)' or mono_class_initialize_generic()
14584         here; set `generic_inst->init_pending' while parsing the
14585         `type_argv'.
14586
14587 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14588
14589         * locales.c: include string.h for memxxx prototypes
14590
14591 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14592
14593         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14594         constructor when accessing literal fields.
14595
14596 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14597
14598         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14599
14600         * reflection.c (assembly_add_resource_manifest): New function to fill
14601         the MANIFESTRESOURCE table.
14602
14603         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14604
14605         * reflection.h: Update to changes in class layout.
14606
14607         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14608         Reenable call to mono_runtime_is_shutting_down ().
14609
14610         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14611         determine if the runtime is shutting down.
14612
14613 2003-12-16  Jackson Harper <jackson@ximian.com>
14614
14615         * icall.c: comment out call to mono_runtime_is_shutting_down to
14616         fix build.
14617         
14618 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14619
14620         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14621         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14622
14623 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14624
14625         * reflection.c: move definition of swap_with_size
14626         to before its first call
14627
14628 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14629
14630         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14631
14632         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14633         icall.
14634
14635         * object.c: Fix warnings.
14636
14637         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14638         members if FlattenHierarchy is set.
14639
14640         * reflection.c (mono_image_add_decl_security): New function to emit
14641         declarative security.
14642
14643         * reflection.h reflection.c: Add support for declarative security.
14644
14645         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14646         
14647 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14648
14649         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14650         
14651         * appdomain.c verify.c: Moved corlib version checking into its own
14652         function in appdomain.c since it needs to create vtables etc.
14653
14654 2003-12-13  Patrik Torstensson <p@rxc.se>
14655
14656         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14657         instead of unwrapped server.
14658
14659 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14660
14661         * verify.c (check_corlib): Fix field index.
14662
14663 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14666         GetGacPath icall.
14667
14668 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14669
14670         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14671         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14672         cope with sizeof(size_t) != sizeof(guint32).
14673
14674 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14675
14676         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14677         in case of failure.
14678
14679 2003-12-10  Mark Crichton <crichton@gimp.org>
14680
14681         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14682         in managed code.
14683
14684         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14685
14686 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14687
14688         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14689         marked as deleted.
14690
14691 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14692
14693         * verify.c (check_corlib): Handle the case when the version field is 
14694         initialized by a static constructor.
14695
14696 2003-12-08  Patrik Torstensson  <p@rxc.se>
14697
14698     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14699
14700 2003-12-08  Martin Baulig  <martin@ximian.com>
14701
14702         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14703         a MonoReflectionGenericParameter, also take the parameter index
14704         and name as arguments.
14705         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14706         (ves_icall_MonoGenericParam_initialize): New interncall.
14707         (ves_icall_Type_make_byref_type): New interncall.
14708
14709         * reflection.h (MonoReflectionGenericParam): Derive from
14710         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14711         `index' fields.
14712
14713         * reflection.c (mono_reflection_define_generic_parameter): Create
14714         and return a new MonoReflectionGenericParam; don't initialize the
14715         constraints here.
14716         (mono_reflection_initialize_generic_parameter): New public method;
14717         initializes the constraints and creates the `param->pklass'.
14718
14719 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14720
14721         * reflection.h reflection.c: Use the new fields 'num_types', 
14722         'num_fields' and 'num_methods' to track the number of types etc.
14723
14724         * verify.c (check_corlib): Check corlib version number.
14725
14726 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14727
14728         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14729         function works on all methods.
14730
14731 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14732
14733         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14734         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14735         the custom_type_info flag of the transparent proxy.
14736         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14737         objects that supports IRemotingTypeInfo.
14738         * object.h: Added custom_type_info field in transparent proxy.
14739
14740 2003-12-06  Martin Baulig  <martin@ximian.com>
14741
14742         * class.c (mono_class_create_from_generic): Removed.
14743         (mono_class_from_generic): Check `ginst->klass' before doing
14744         anything else.  This is important to fully support "recursive"
14745         generic types.
14746
14747         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14748         empty `generic_inst->klass' before doing anything else.
14749
14750 2003-12-06  Dick Porter  <dick@ximian.com>
14751
14752         * verify.c: 
14753         * object.h:
14754         * icall.c:
14755         * locales.c: Use C structs to access class fields.  Don't do a
14756         conversion between MonoString and UChar because both are
14757         platform-endian UTF-16.  Compare now takes startindex and count
14758         parameters.  Add a char overload for IndexOf.  Speed up the
14759         invariant string IndexOf.
14760
14761 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14762
14763         * Makefile.am (monosn_LDADD): Fix parallel build.
14764
14765 2003-12-04  Martin Baulig  <martin@ximian.com>
14766
14767         * icall.c
14768         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14769         (ves_icall_Type_make_array_type): New interncall.       
14770
14771 2003-12-04  Martin Baulig  <martin@ximian.com>
14772
14773         * locales.c: also change it in the !HAVE_ICU case.
14774
14775 2003-12-04  Dick Porter  <dick@ximian.com>
14776
14777         * icall.c:
14778         * locales.c: construct_compareinfo is now in CompareInfo, not
14779         CultureInfo.
14780
14781 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14782
14783         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14784         image->files array.
14785
14786         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14787         table as well.
14788
14789         * assembly.c (mono_assembly_load_references): Only load references
14790         once.
14791
14792         * class.c (mono_class_from_name): Avoid linear search of the 
14793         EXPORTEDTYPE table.
14794
14795         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14796
14797 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14798
14799         * image.h (MonoImage): Add 'field_cache' field.
14800
14801         * loader.c (mono_field_from_token): Cache field lookups.
14802         
14803         * reflection.c (mono_module_get_object): Fix name property.
14804
14805         * icall.c (ves_icall_get_enum_info): Update after changes to 
14806         mono_metadata_get_constant_index ().
14807
14808         * icall.c: Get rid of get_type_info icall, use a separate icall for
14809         each type property to avoid needless memory allocations. Fixes #51514.
14810
14811         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14812         to avoid needless binary searches.
14813
14814         * class.c (class_compute_field_layout): Move the initialization of
14815         field->def_value to mono_class_vtable ().
14816
14817         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14818         non-corlib types.
14819
14820         * object.c (mono_object_allocate): Make it inline.
14821
14822         * object.c (mono_object_allocate_spec): Make it inline.
14823         
14824 2003-12-02  Dick Porter  <dick@ximian.com>
14825
14826         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14827         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14828
14829 2003-12-01  Dick Porter  <dick@ximian.com>
14830
14831         * threads.c: Fix signature and call in CreateMutex and
14832         CreateEvent.
14833
14834 2003-12-01  Dick Porter  <dick@ximian.com>
14835
14836         * icall.c: 
14837         * locales.c: Implement string compares and searching
14838
14839         * object.h: Add extra Thread field
14840
14841 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14842
14843         * reflection.c (fixup_method): Add support for MonoCMethod.
14844
14845 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14846
14847         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14848
14849         * reflection.c (assembly_name_to_aname): Allow extra characters in
14850         assembly names. Fixes #51468.
14851
14852 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14853
14854         * exception.c (mono_exception_from_name_domain): New helper function.
14855
14856         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14857         exception object in the correct domain.
14858
14859         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14860         formatting + make a copy a the input data.
14861
14862         * loader.c (mono_get_method_from_token): Methods which contain
14863         native code do not have entries in the ImplMap.
14864
14865         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14866         Thanks to Gonzalo for spotting this.
14867         
14868         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14869         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14870
14871         * assembly.h (mono_assembly_load_from): Split the second part of 
14872         assembly loading into a new public function.
14873
14874         * exception.h (mono_get_exception_bad_image_format): New function.
14875
14876 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14877
14878         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14879         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14880         
14881         * icall.c: Add new icall for creating dynamic methods.
14882
14883         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14884
14885         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14886
14887         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14888         create a dynamic method.
14889
14890         * reflection.c (resolve_object): New helper function.
14891
14892         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14893         which manipulate it so they can also work on dynamic methods.
14894
14895         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14896         creating the MonoReflectionMethodAux structure if it is not needed.
14897         
14898         * reflection.h verify.c: Update after changes to object layout.
14899
14900         * reflection.c (method_builder_encode_signature): Fix compilation on
14901         gcc 2.95.x.
14902
14903 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14904
14905         * appdomain.h: Added support for context static fields. Added static_data
14906           field to MonoAppContext and renamed thread_static_fields to a more
14907           generic special_static_fields in MonoAppDomain, since it can now contain
14908           context static fields.
14909         * domain.c: Updated hashtable name.
14910         * object.c: Replaced field_is_thread_static() for a more generic
14911           field_is_special_static() which also checks for context static attribute.
14912           In mono_class_vtable(), added support for static context fields.
14913         * threads.c: Changed methods that manage thread static fields to more
14914           generic methods so they can be reused both for thread and context static
14915           data.
14916         * threads.h: Declared some new methods.
14917
14918 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14919
14920         * reflection.h: Update after changes to the managed types.
14921
14922         * reflection.c (encode_custom_modifiers): New helper function.
14923
14924         * reflection.c (method_encode_signature): Emit custom modifiers.
14925
14926         * reflection.c (field_encode_signature): Emit custom modifiers.
14927
14928 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14929
14930         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14931
14932         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14933         implementation.
14934
14935         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14936         icall.
14937
14938         * object.c (mono_field_get_value_object): New function.
14939
14940         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14941         specific.
14942
14943 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14944
14945         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14946         return a preallocated out-of-memory exception instance.
14947
14948         * object.c (out_of_memory): Use the new function.
14949
14950         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14951         flag is before the custom modifiers. Fixes #49802.
14952
14953 2003-11-16  Martin Baulig  <martin@ximian.com>
14954
14955         * class.c (mono_class_is_open_constructed_type): Implemented the
14956         MONO_TYPE_GENERICINST case.
14957
14958 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14959
14960         * assembly.c (mono_assembly_fill_assembly_name): New function to
14961         fill out the MonoAssemblyName structure.
14962         (mono_assembly_open): Use the new function.
14963
14964         * icall.c (fill_reflection_assembly_name): New helper function.
14965
14966         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14967         new function.
14968
14969         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14970
14971 2003-11-15  Martin Baulig  <martin@ximian.com>
14972
14973         * class.c (mono_class_is_open_constructed_type): New public
14974         function; checks whether a type is an open constructed type,
14975         ie. whether it still contains type parameters.
14976         (mono_class_inflate_generic_type): If we're a type parameter and
14977         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14978         type.
14979
14980         * class.h (MonoGenericInst): Added `guint32 is_open'.
14981
14982         * loader.c (method_from_methodspec): Check whether we're an open
14983         or closed constructed type and set `ginst->is_open'.
14984
14985         * reflection.c (mono_reflection_bind_generic_parameters): Check
14986         whether we're an open or closed constructed type and set
14987         `ginst->is_open'.
14988         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14989         from open constructed types.
14990
14991 2003-11-15  Martin Baulig  <martin@ximian.com>
14992
14993         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14994         a generic instance (instead of a generic type declaration) with
14995         unbound generic parameters, bind them to our actual types.
14996
14997 2003-11-14  Martin Baulig  <martin@ximian.com>
14998
14999         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
15000
15001         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15002         an interface type, populate `res->interfaces' with instantiated
15003         versions of all the interfaces we inherit.
15004
15005 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
15006
15007         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
15008         when MONO_PATH is set but doesn't contain the install dir.
15009
15010 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15011
15012         * icall.c:
15013         (ves_icall_Type_GetInterfaces): don't return an interface twice when
15014         it's also implemented in base classes. Fixes bug #50927.
15015
15016 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
15017
15018         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
15019         if this method is called from a finalizer. Fixes #50913.
15020
15021 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
15022
15023         * threads.c: Implement VolatileRead/VolatileWrite
15024
15025         * icall.c: Add new icalls for VolatileRead/VolatileWrite
15026
15027 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15028
15029         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
15030         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
15031         2.95.3.
15032
15033         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
15034         from Peter Ross (pro@missioncriticalit.com).
15035         
15036 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
15037
15038         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
15039
15040 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15041
15042         * assembly.c (mono_assembly_load_references): Disable check because it
15043         triggers on older corlibs which lots of people have.
15044
15045 2003-11-12  Jackson Harper  <jackson@ximian.com>
15046
15047         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
15048         load corlib.dll if mscorlib.dll is not found.
15049         * assembly.h: Remove corlib name define.
15050         * class.c:
15051         * domain.c:
15052         * image.c: Change corlib name to mscorlib.
15053         
15054 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15055
15056         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
15057
15058 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
15059
15060         * appdomain.h: Added loader_optimization here to sync with the C#
15061         code, and add disallow_binding_redirects field.
15062
15063 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15064
15065         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
15066
15067         * reflection.c (mono_image_build_metadata): Fix crash on modules
15068         with no types.
15069
15070         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
15071
15072         * icall.c (ves_icall_get_method_info): Return callingConvention as
15073         well.
15074
15075         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
15076         namespaces from the EXPORTEDTYPE table as well.
15077
15078         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
15079         from all modules inside the assembly.
15080         
15081 2003-11-11  Martin Baulig  <martin@ximian.com>
15082
15083         * reflection.c (mono_reflection_bind_generic_parameters): Make
15084         this work for interfaces.
15085
15086 2003-11-11  Martin Baulig  <martin@ximian.com>
15087
15088         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
15089
15090 2003-11-11  Martin Baulig  <martin@ximian.com>
15091
15092         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
15093         "MonoInflatedMethod" and "MonoInflatedCtor".
15094
15095 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15096
15097         * reflection.c (resolution_scope_from_image): Use the assembly table
15098         from the manifest module, since other modules don't have it.
15099
15100         * debug-helpers.c (mono_type_full_name): New helper function.
15101
15102         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15103
15104         * image.c (mono_image_load_file_for_image): New public function which
15105         is a replacement for the load_file_for_image in class.c.
15106
15107         * assembly.c (mono_assembly_load_module): A wrapper for the function
15108         above which does assembly association and reference loading too.
15109
15110         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15111
15112 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15113
15114         * appdomain.c: not all of the attributes for the full assembly name
15115         are required and the order doesn't matter. Fixes bug #50787.
15116
15117 2003-11-10  Dick Porter  <dick@ximian.com>
15118
15119         * locales.c: Use platform-endian UTF16
15120
15121 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15122
15123         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15124         
15125 2003-11-10  Martin Baulig  <martin@ximian.com>
15126
15127         * metadata.c
15128         (mono_metadata_load_generic_params): Make this actually work.
15129
15130         * reflection.c (mono_reflection_bind_generic_parameters): If our
15131         parent is a generic instance, pass all the `types' to it, no
15132         matter whether it has the same number of type parameters or not.
15133
15134 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15135
15136         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15137
15138         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15139         assignment code to this function so it gets called recursively for all
15140         modules.
15141
15142         * image.c (load_modules): Remove the assembly assignment since it is
15143         now done by mono_assembly_load_references.
15144         
15145         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15146         Add 'module' argument.
15147         (mono_module_get_types): New helper function.
15148         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15149
15150 2003-11-08  Martin Baulig  <martin@ximian.com>
15151
15152         * class.c (mono_class_inflate_generic_method): Interface method
15153         don't have a header.
15154
15155         * reflection.c (mono_image_get_methodspec_token): Take an
15156         additional `MonoGenericInst *' argument instead of reading it from
15157         the header; this is necessary to support interfaces.
15158         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15159         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15160         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15161         argument.
15162
15163         * reflection.h (MonoReflectionInflatedMethod): Added
15164         `MonoGenericInst *ginst'.
15165
15166 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15167
15168         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15169
15170 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15171
15172         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15173
15174 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15175
15176         * reflection.c 
15177         (reflection_methodbuilder_from_method_builder):
15178         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15179         initialize a ReflectionMethodBuilder structure.
15180         (mono_image_get_methodbuilder_token):
15181         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15182         tokens which point to types in another module inside the same assembly.
15183
15184         * reflection.c: Use the new helper functions.
15185         
15186         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15187
15188         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15189         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15190
15191         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15192         neccesary.
15193
15194         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15195         current module. Emit the manifest only for the main module.
15196
15197         * reflection.c (mono_image_create_token): Add assertion when a 
15198         memberref needs to be created.
15199
15200         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15201
15202         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15203         larger buffer for the custom attribute blob. Fixes #50637.
15204         
15205 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15206
15207         * threadpool.c: notify listener on async processing handles after
15208         invoking the async callback. Thanks to Zoltan.
15209
15210 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15211
15212         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15213         avoid code duplication.
15214
15215         * reflection.h (MonoDynamicImage): New type which is currently unused,
15216         but will be used through the ref.emit code in place of 
15217         MonoDynamicAssembly.
15218
15219         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15220         object layout.
15221
15222         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15223         a MonoDynamicImage instead of just a MonoImage.
15224         
15225         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15226         icalls to ModuleBuilder but keep their semantics, so they will work
15227         with moduleb->assemblyb. This will change later.
15228         
15229 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15230
15231         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15232         object layout.
15233
15234         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15235         main module, since it is now done by the managed code.
15236
15237 2003-11-03  Martin Baulig  <martin@ximian.com>
15238
15239         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15240         `ginst->klass' here.
15241         (method_encode_methodspec): Don't use the `ginst->generic_method's
15242         klass if it's a generic instance, use `ginst->klass' in this case.
15243
15244 2003-11-03  Martin Baulig  <martin@ximian.com>
15245
15246         * reflection.c (mono_image_get_generic_method_param_info):
15247         Removed, use mono_image_get_generic_param_info() instead.
15248         (mono_image_get_type_info): Write the GenericParam table before
15249         the Method table.  This is neccessary because in the GenericParam
15250         table, type parameters of the class (ie. '!0' etc.) must come
15251         before the ones from its generic methods (ie. '!!0' etc).
15252
15253 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15254
15255         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15256
15257 2003-11-02  Martin Baulig  <martin@ximian.com>
15258
15259         * reflection.c (create_generic_typespec): Take a
15260         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15261         the generic parameters from it.
15262
15263 2003-11-02  Martin Baulig  <martin@ximian.com>
15264
15265         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15266         instead of a `MonoClassField *' since we just need the type.
15267         (create_generic_typespec): New static function.  Creates a
15268         TypeSpec token for a generic type declaration.
15269         (mono_image_get_generic_field_token): New static function.
15270         (mono_image_create_token): If we're a FieldBuilder in a generic
15271         type declaration, call mono_image_get_generic_field_token() to get
15272         the token.
15273
15274 2003-11-02  Martin Baulig  <martin@ximian.com>
15275
15276         * reflection.h
15277         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15278         `MonoReflectionGenericInst *declaring_type' and
15279         `MonoReflectionGenericInst *reflected_type' fields.
15280
15281         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15282         `MonoReflectionGenericInst *declaring_type' and a
15283         `MonoReflectionGenericInst *reflected_type' argument instead of a
15284         single `MonoReflectionGenericInst *type' one.  Set
15285         `res->declaring_type' and `res->reflected_type' from them.
15286         (mono_reflection_inflate_field): Likewise.      
15287
15288 2003-11-02  Martin Baulig  <martin@ximian.com>
15289
15290         * class.c (mono_class_setup_vtable): Don't store generic methods
15291         in the vtable.  
15292
15293 2003-11-02  Martin Baulig  <martin@ximian.com>
15294
15295         * reflection.h (MonoReflectionGenericInst): Added
15296         `MonoReflectionType *declaring_type'.
15297
15298         * reflection.c (mono_reflection_bind_generic_parameters): Use
15299         `if (tb->parent)' instead of `klass->parent'.
15300
15301 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15302
15303         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15304         with an empty ASSEMBLY table.
15305
15306         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15307         variable in the inner and outer loops.
15308
15309 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15310
15311         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15312         argument.
15313
15314         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15315         
15316         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15317         icalls. Instead, do everything in managed code. This is needed since
15318         it is hard to restore the original domain etc. in unmanaged code in the
15319         presence of undeniable exceptions.
15320
15321         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15322         New icalls to push and pop appdomain refs.
15323
15324 2003-10-31  Martin Baulig  <martin@ximian.com>
15325
15326         * class.c (inflate_generic_type): Renamed to
15327         mono_class_inflate_generic_type() and made it public.
15328
15329         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15330         New interncall.
15331
15332         * loader.c (mono_field_from_memberref): Also set the retklass for
15333         typespecs.
15334
15335         * fielder.c (mono_image_get_inflated_field_token): New static
15336         method; creates a metadata token for an inflated field.
15337         (mono_image_create_token, fixup_method): Added support for
15338         "MonoInflatedField".
15339         (fieldbuilder_to_mono_class_field): New static function.
15340         (mono_reflection_inflate_field): New public function.
15341
15342         * reflection.h
15343         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15344         (MonoReflectionInflatedField): New typedef.     
15345
15346 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15347
15348         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15349         for Solaris and other platforms without s6_addr16
15350
15351 2003-10-30  Martin Baulig  <martin@ximian.com>
15352
15353         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15354         argument instead of two.
15355         (mono_class_inflate_generic_signature): Likewise.
15356         (inflate_generic_header): Likewise.
15357         (mono_class_inflate_generic_method): Likewise.  In addition, if
15358         `ginst->klass' is set, it becomes the new `method->klass'.
15359
15360         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15361         field.
15362
15363         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15364         first byte. [FIXME]
15365         (method_encode_methodspec): If we have generic parameters, create
15366         a MethodSpec instead of a MethodRef.
15367         (fixup_method): Added support for "MonoInflatedMethod" and
15368         "MonoInflatedCtor".
15369         (mono_image_create_token): Added support for "MonoInflatedMethod"
15370         and "MonoInflatedCtor".
15371         (inflated_method_get_object): New static function; returns a
15372         managed "System.Reflection.MonoInflatedMethod" object.
15373         (mono_reflection_bind_generic_method_parameters): Return a
15374         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15375         (mono_reflection_inflate_method_or_ctor): Likewise.
15376         (mono_image_get_generic_method_param_info): Initialize unused
15377         fields to zero.
15378         (mono_image_get_generic_param_info): Likewise.
15379
15380         * reflection.h (MonoReflectionInflatedMethod): New public
15381         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15382         "S.R.MonoInflatedCtor" classes.
15383
15384         * loader.c (method_from_memberref): If we're a TypeSpec and it
15385         resolves to a generic instance, inflate the method.
15386
15387 2003-10-28  Dick Porter  <dick@ximian.com>
15388
15389         * object.c (mono_runtime_run_main): Convert command-line arguments
15390         into utf8, falling back to the user's locale encoding to do so.
15391
15392 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15393
15394         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15395         at this time.
15396
15397         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15398
15399         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15400         up icalls at method definition time. Partially fixes #33569.
15401
15402 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15403
15404         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15405         marshalling of arrays. Fixes #50116.
15406
15407         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15408
15409         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15410         points to a vtable in the dying appdomain.
15411
15412         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15413         listeners into unmanaged code inside the lock.
15414
15415         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15416         domains and add some comments.
15417
15418 2003-10-25  Martin Baulig  <martin@ximian.com>
15419
15420         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15421
15422         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15423
15424         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15425         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15426         currently parsing.  Create the generic class and store it in
15427         `generic_inst->klass' before parsing the type arguments.  This is
15428         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15429         for an example.
15430         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15431         to support recursive typespec entries.
15432
15433         * class.c (mono_class_setup_parent): If our parent is a generic
15434         instance, we may get called before it has its name set.
15435         (mono_class_from_generic): Splitted into
15436         mono_class_create_from_generic() and mono_class_initialize_generic().
15437
15438 2003-10-25  Martin Baulig  <martin@ximian.com>
15439
15440         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15441         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15442         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15443         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15444
15445         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15446         (create_typespec): Likewise.
15447         (mono_reflection_bind_generic_parameters): Return a
15448         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15449         (mono_reflection_inflate_method_or_ctor): New public function.
15450
15451         * reflection.h (MonoReflectionGenericInst): New typedef.        
15452
15453 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15454
15455         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15456         inside the domain lock. Fixes #49993.
15457         
15458         * object.c (mono_class_vtable): When typed allocation is used, 
15459         allocate vtables in the GC heap instead of in the mempool, since the
15460         vtables contain GC descriptors which are used by the collector even
15461         after the domain owning the mempool is unloaded.
15462
15463         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15464
15465         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15466         reflect what it does. Also invalidate mempools instead of freeing
15467         them if a define is set.
15468
15469         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15470         of the appdomain.
15471         
15472         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15473         hold the finalizable objects in this domain.
15474
15475         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15476         appdomain.
15477
15478         * appdomain.c (mono_domain_set): New function to set the current
15479         appdomain, but only if it is not being unloaded.
15480
15481         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15482         appdomain which is being unloaded.
15483         
15484         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15485         unloading of the root appdomain.
15486
15487         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15488         icall to execute a method in another appdomain. Intended as a 
15489         replacement for InternalSetDomain, which can confuse the code 
15490         generation in the JIT.
15491
15492         * appdomain.c (mono_domain_is_unloading): New function to determine
15493         whenever an appdomain is unloading.
15494
15495         * appdomain.c (mono_domain_unload): New function to correctly unload
15496         an appdomain.
15497
15498         * assembly.c (mono_assembly_load_references): Check that an assembly
15499         does not references itself.
15500
15501         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15502         domain manually, it asks the finalizer thread to do it, then waits for
15503         the result. Also added a timeout.
15504
15505         * icall.c: Register the new icalls.
15506
15507         * threads.h threads.c: Export the mono_gc_stop_world and 
15508         mono_gc_start_world functions.
15509         
15510         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15511         function to fill out the mempool with 0x2a.
15512
15513 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15514
15515         * reflection.h (MonoReflectionMethodAux): New structure to store
15516         information which is rarely used, thus is not in the MonoMethod
15517         structure.
15518
15519         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15520         store the aux info.
15521
15522         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15523         and marshalling info into the aux structure.
15524
15525         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15526         from the aux structure.
15527
15528         * loader.c (mono_method_get_param_names): Retrieve the param names from
15529         the aux structure.
15530         
15531 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15532
15533         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15534         warning.
15535
15536 2003-10-21  Dick Porter  <dick@ximian.com>
15537
15538         * socket-io.c
15539         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15540         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15541
15542 2003-10-21  Martin Baulig  <martin@ximian.com>
15543
15544         * reflection.c (mono_reflection_bind_generic_parameters):
15545         `klass->parent' is NULL for interfaces.
15546
15547 2003-10-21  Martin Baulig  <martin@ximian.com>
15548
15549         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15550
15551 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15552
15553         * exception.c (mono_exception_from_name_msg): New helper function for
15554         creating exceptions and initializing their message field.
15555
15556         * exception.c: Simplify functions using the new helper.
15557
15558         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15559         New function.
15560
15561         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15562         mono_raise_exception, since otherwise gcc doesn't generate the function
15563         epilog for raise_exception, confusing the stack unwinding in the JIT.
15564         Fixes #45043.
15565
15566         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15567         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15568         Fixes #49499.
15569
15570 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15571
15572         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15573         utf8.
15574
15575 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15576
15577         * icall.c: Removed GetUninitializedObject method because
15578           AllocateUninitializedClassInstance does the same.
15579
15580 2003-10-18  Martin Baulig  <martin@ximian.com>
15581
15582         * class.c (inflate_generic_signature): Renamed to
15583         mono_class_inflate_generic_signature() and made it public.
15584         (my_mono_class_from_generic_parameter): New static function; if we
15585         don't already have the generic parameter's MonoClass, create a
15586         very simple one which is just used internally in the runtime and
15587         not passed back to managed code.
15588
15589         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15590
15591         * metadata.h (MonoMethodSignature): Moved the
15592         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15593         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15594
15595         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15596         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15597         interncall on the MonoMethod class, not on MethodInfo.
15598         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15599         calling mono_reflection_bind_generic_method_parameters() directly.
15600
15601         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15602         return the already computed `method->signature'.
15603         (method_from_methodspec): New static function to load a method
15604         from a MethodSpec entry.
15605         (mono_get_method_from_token): Call the new method_from_methodspec()
15606         for MethodSpec tokens.  
15607         (mono_get_method_from_token): If we're a generic method, load the
15608         type parameters.
15609
15610         * reflection.c (mono_image_get_memberref_token): Allow
15611         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15612         table.
15613         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15614         (mono_image_create_token): First check whether it's a generic
15615         method (so we'd need to create a MethodSpec), then do the other
15616         two alternatives.
15617         (mono_reflection_bind_generic_method_parameters): Return a
15618         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15619         called directly from the interncall.
15620
15621 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15622
15623         * reflection.c (load_public_key): Move loading of the public key
15624         into managed code.
15625
15626         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15627
15628         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15629         fields.
15630
15631         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15632         culture, hash_alg and public_key. Fixes #49555.
15633
15634 2003-10-17  Martin Baulig  <martin@ximian.com>
15635
15636         * class.h (MonoGenericInst): Moved this declaration here and added
15637         `MonoMethod *generic_method'.
15638
15639         * icall.c
15640         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15641         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15642
15643         * metadata.c (mono_metadata_type_equal): Two types of
15644         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15645         index; ie. don't compare the address of the `MonoGenericParam'
15646         structure.
15647         (mono_metadata_load_generic_params): Removed the `MonoMethod
15648         *method' argument.
15649
15650         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15651         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15652
15653         * reflection.c (method_encode_signature): Encode the number of
15654         generic parameters.
15655         (encode_generic_method_sig): New static function.
15656         (method_encode_methodspec): New static function; creates an entry
15657         in the MethodSpec table for a generic method.
15658         (mono_image_get_methodspec_token): New static function.
15659         (mono_image_create_token): Call mono_image_get_methodspec_token()
15660         for generic methods.
15661         (mono_reflection_bind_generic_method_parameters): New public
15662         function.  Instantiates a generic method.
15663
15664 2003-10-16  Martin Baulig  <martin@ximian.com>
15665
15666         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15667         *gen_params' here from MonoMethodHeader.
15668
15669         * metadata.c (mono_metadata_parse_method_signature): If we have
15670         generic parameters, initialize `method->gen_params' and then set
15671         the correct `type->data.generic_param' in all the parameters.
15672
15673 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15674
15675         * threads.c (mono_threads_get_default_stacksize): New function to 
15676         return the default stacksize.
15677
15678         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15679         termination of the finalizer thread, since the previous method had
15680         race conditions. Fixes #49628.
15681
15682         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15683         as for the other managed threads.
15684
15685 2003-10-16  Martin Baulig  <martin@ximian.com>
15686
15687         * class.c (inflate_generic_signature): Copy `generic_param_count'
15688         and `gen_params'.
15689
15690         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15691         New interncall.
15692
15693         * metadata.c (mono_metadata_parse_method_signature): Actually set
15694         the `method->generic_param_count' here.
15695         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15696
15697 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15698
15699         * object.h: Add a new field to TypedRef to simplify the implementation
15700         of the REFANY opcodes in the JIT.
15701
15702         * icall.c: Make use of the new field.
15703
15704         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15705         dynamically.
15706
15707 2003-10-15  Martin Baulig  <martin@ximian.com>
15708
15709         * class.c (mono_class_from_gen_param): Renamed to
15710         mono_class_from_generic_parameter() and moved most of the
15711         functionality from mono_reflection_define_generic_parameter()
15712         here; ie. we create a "real" class here.
15713         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15714         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15715         previously been called.
15716
15717         * class.h (MonoGenericParam): Moved the declaration of this struct
15718         here from metadata.h and added `MonoMethod *method'.
15719
15720         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15721         interncall.
15722
15723         * loader.c (mono_get_method_from_token): If we have any generic
15724         parameters, call mono_metadata_load_generic_params() to read them
15725         from the MONO_TABLE_GENERICPAR.
15726
15727         * metadata.c (mono_metadata_load_generic_params): Added
15728         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15729
15730         * metadata.h (MonoMethodSignature): Replaced
15731         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15732         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15733
15734         * reflection.c (mono_reflection_define_generic_parameter): Moved
15735         most of the functionality into the new
15736         mono_class_from_generic_parameter(); set the `method' field if
15737         we're a method parameter.       
15738
15739 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15740
15741         * marshal.c (emit_struct_conv): if native size is 0
15742         emit no code.
15743
15744 2003-10-14  Martin Baulig  <martin@ximian.com>
15745
15746         * icall.c: The generics API has changed in the spec since it was
15747         added to System.Type; these modifications make it match the spec
15748         again.
15749         (ves_icall_Type_GetGenericParameters): Renamed to
15750         `ves_icall_Type_GetGenericArguments'.
15751         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15752         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15753         `ves_icall_MonoType_get_HasGenericArguments'.
15754         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15755         `ves_icall_MonoType_get_IsGenericParameter'.
15756         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15757         this is no interncall anymore.
15758         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15759         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15760
15761 2003-10-14  Martin Baulig  <martin@ximian.com>
15762
15763         * reflection.c (mono_reflection_bind_generic_parameters): Also
15764         inflate generic methods if we're reading the class from IL.
15765
15766 2003-10-13  Martin Baulig  <martin@ximian.com>
15767
15768         * reflection.c (mono_reflection_define_generic_parameter): This
15769         method isn't called directly from the icall anymore; take a
15770         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15771         method generic parameters.
15772         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15773         (method_builder_encode_signature): Encode generic parameters.
15774         (mono_image_get_method_info): Write generic params to the
15775         MONO_TABLE_GENERICPARAM table.
15776
15777         * reflection.h (MonoReflectionMethodBuilder): Added
15778         `MonoArray *generic_params'.
15779
15780         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15781
15782         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15783         wrapper for mono_reflection_define_generic_parameter().
15784         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15785
15786 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15787
15788         * marshal.h: Add missing function to fix build.
15789
15790         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15791         the SetLastError pinvoke attribute.
15792
15793         * marshal.c (mono_marshal_set_last_error): New helper function called
15794         by the generated code.
15795         
15796         * marshal.c (mono_mb_emit_branch): New helper function.
15797
15798         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15799
15800         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15801         classes as parameters and return values of delegates. Fixes #29256. 
15802
15803 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15804
15805         * locales.c: use gint32 in non HAVE_ICU case
15806
15807 2003-10-11  Martin Baulig  <martin@ximian.com>
15808
15809         * mono-debug.c (mono_debug_add_method): Added a workaround for
15810         bug #48591.
15811
15812 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15813
15814         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15815         delegates passed to native code must use the STDCALL calling 
15816         convention. Fixes #35987.
15817
15818 2003-10-10  Martin Baulig  <martin@ximian.com>
15819
15820         * class.c (inflate_generic_type): If we're inflating for a generic
15821         type instance (and not for a generic method), return
15822         MONO_TYPE_MVAR unchanged.
15823
15824 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15825
15826         * string-icalls.c: Join ignores null strings in the source array.
15827         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15828         * threads.c: GetAvailableTheads is slightly more accurate.
15829
15830 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15831
15832         * threads.h threads.c : add mono_threads_set_default_stacksize
15833         and pass default to CreateThread calls.
15834
15835 2003-10-09  Dick Porter  <dick@ximian.com>
15836
15837         * icall.c:
15838         * locales.h:
15839         * locales.c: Internal calls for constructing CultureInfo and
15840         related objects from libicu (if its available.)
15841
15842 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15843
15844         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15845
15846 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15847
15848         * threadpool.c: added an argument to async_invoke_thread that is the
15849         item to process, pass the MonoAsyncResult to the thread start function
15850         when creating a new thread. This way we don't need to acquire any lock
15851         when we're creating a new thread. Readded a semaphore for faster
15852         response times (instead of that Sleep i added).
15853
15854 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15855
15856         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15857         get daylight change dates better on Windows, fix handling
15858         of platforms without tm_gmtoff.
15859
15860 2003-10-06  Martin Baulig  <martin@ximian.com>
15861
15862         * class.c (inflate_generic_method): Renamed to
15863         mono_class_inflate_generic_method() and made public.
15864         (mono_class_init): Don't inflate the generic methods here.
15865         (mono_class_from_generic): Added `gboolean inflate_methods'
15866         argument.  Inflate the methods here.
15867
15868         * loader.c (mono_method_get_param_names): Ignore instances of
15869         generic types for the moment.
15870
15871         * reflection.c (fixup_method): Added support for inflated methods.
15872         (mono_image_create_token): Use mono_image_get_methodref_token()
15873         for inflated methods.
15874         (mono_custom_attrs_from_param): Ignore instances of generic types
15875         for the moment.
15876         (mono_reflection_bind_generic_parameters): New public function.
15877         Moved all the functionality from
15878         ves_icall_Type_BindGenericParameters() here and added support for
15879         dynamic types.
15880         (mono_reflection_define_generic_parameter): Initialize
15881         `klass->methods' here.
15882
15883         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15884         functionality into mono_reflection_define_generic_parameter().
15885         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15886         TypeBuilder, return that TypeBuilder.
15887
15888 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15889
15890         * appdomain.c: removed mono_delegate_semaphore.
15891
15892         * threadpool.c:
15893         (mono_thread_pool_add): moved hash table creation inside and the thread 
15894         creation outside of the critical region.
15895         (mono_thread_pool_finish): removed obsolete code.
15896         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15897         continue or exit the thread depending on the queue.
15898
15899 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15900
15901         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15902         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15903         handle more bool marshalling options
15904
15905 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15906
15907         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15908         arrays of structs. Also add a more descriptive error message when
15909         a structure member is marshalled as LPArray.
15910
15911 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15912
15913         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15914         marshalling arrays of complex types. Fixes #29098. Also remove an
15915         usused and incomplete function.
15916
15917 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15918
15919         * gc.c: report heap_size - free_bytes as total memory allocated
15920         (bug#49362).
15921
15922 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15923
15924         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15925         fix timezone handling problems on Windows.
15926         
15927         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15928         asserts when the year is outside the range handled by ms the functions.
15929
15930         * class.c (setup_interface_offsets): If the class is an interface,
15931         fill out its interface_offsets slot.
15932
15933 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15934
15935         * threadpool.c: mark threadpool threads as background.
15936
15937 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15938
15939         * decimal.c - define DECINLINE to nothing if not using GCC
15940
15941 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15942
15943         * assembly.c: More refcount fixes.
15944
15945 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15946
15947         * string-icalls.c: if we're not trimming, return the same string.
15948         When not splitting, don't create a new string.
15949
15950 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15951
15952         * image.c:
15953         (mono_image_open): increment the ref_count inside the critical section.
15954
15955 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15956
15957         * image.c (mono_image_open): Fix reference counting bug.
15958
15959 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15960
15961         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15962         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15963         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15964         mono_lookup_pinvoke_call throws.        
15965
15966 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15967
15968         * reflection.c (mono_reflection_parse_type): Fix #49114.
15969
15970         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15971         temporary workaround for cygwin header problem.
15972
15973         * object.c (mono_object_isinst): Synchronize this with the code
15974         generated by the JIT for casts.
15975
15976 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15977
15978         * reflection.c (encode_type): Fix #38332.
15979
15980 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15981
15982         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15983         the original method from the wrapper method.
15984
15985 2003-09-25  Martin Baulig  <martin@ximian.com>
15986
15987         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15988         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15989         (ves_icall_Type_get_IsGenericInstance): New interncall.
15990
15991 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15992
15993         * object.c: fix cast warning in big endian code.
15994
15995 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15996
15997         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15998         
15999 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16000
16001         * assembly.c: don't call check_env from mono_assembly_load. It's
16002         already done once in mono_assemblies_init and may cause headaches when
16003         multiple threads are loading assemblies.
16004
16005 2003-09-19  Martin Baulig  <martin@ximian.com>
16006
16007         * reflection.c (mono_reflection_define_generic_parameter): Don't
16008         allocate `klass->methods', set `klass->flags' to
16009         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
16010
16011 2003-09-18  Martin Baulig  <martin@ximian.com>
16012
16013         * class.c (mono_class_init): Don't create `class->methods' if it's
16014         already initialized.
16015
16016         * metadata.c (mono_metadata_load_generic_params): Make this
16017         actually work.
16018
16019         * reflection.c (mono_reflection_define_generic_parameter): Set
16020         parent class and interfaces from the constraints.
16021
16022         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
16023         to keep this struct in sync with the declaration in TypeBuilder.cs.
16024
16025 2003-09-17  Martin Baulig  <martin@ximian.com>
16026
16027         * metadata.h (MonoType): Replaced the data's `int type_param'
16028         field with `MonoGenericParam *generic_param'.
16029         (MonoGenericParam): Added `MonoClass *klass'.
16030
16031         * class.c (mono_class_from_gen_param): Removed the
16032         `MonoImage *image' and `int type_num' arguments.
16033
16034         * metadata.c (mono_metadata_parse_generic_param): New static
16035         method; creates a MonoGenericParam which just contains the index.
16036         (do_mono_metadata_parse_type): Call
16037         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
16038         MONO_TYPE_MVAR.
16039
16040         * reflection.c (mono_image_typedef_or_ref): Generic type
16041         parameters may be in the same assembly, but never use a typedef
16042         for them.
16043         (mono_reflection_define_generic_parameter): We're now creating a
16044         "real" class for the type parameter; it's now safe to call
16045         mono_class_from_mono_type() on the class'es type, it'll do the
16046         right thing.
16047
16048 2003-09-16  Martin Baulig  <martin@ximian.com>
16049
16050         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
16051         `symfile->range_entry_size' and `symfile->class_entry_size' here;
16052         the `symfile' data structure must be fully initialized before it
16053         gets added to the table.
16054
16055 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
16056
16057         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
16058
16059         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
16060         class init trampolines.
16061
16062 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
16063
16064         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
16065         to the built-in profiler to turn off time and allocation profiling
16066         respectively.
16067
16068 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
16069
16070         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
16071         g_direct_equal.
16072
16073         * debug-helpers.c (mono_method_full_name): Print the wrapper type
16074         in human readable form.
16075
16076 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
16077
16078         * reflection.c icall.c: Fixed warnings.
16079
16080         * image.c (load_class_names): Use a temporary hash table to hold the
16081         namespaces in order to avoid doing many string comparisons.
16082
16083         * image.h: Fix typo.
16084
16085         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
16086         Pass NULL instead of g_direct_equal to the GHashTable constructor 
16087         since the NULL case is short-circuited inside g_hash_table_lookup, 
16088         leading to better performance.  
16089
16090         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
16091         obtain the first custom attribute for a given index. Depends on the
16092         CustomAttribute table being sorted by the parent field.
16093
16094         * reflection.c (mono_custom_attrs_from_index): Use the new function 
16095         for better performance.
16096
16097 2003-09-07  Martin Baulig  <martin@ximian.com>
16098
16099         * class.c (mono_class_init): If we're a generic instance, inflate
16100         all our methods instead of loading them from the image.
16101         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16102
16103 2003-09-07  Martin Baulig  <martin@ximian.com>
16104
16105         * mono-debug-debugger.c: Added support for constructors.
16106
16107 2003-09-06  Martin Baulig  <martin@ximian.com>
16108
16109         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16110         New interncall.
16111
16112         * reflection.c (mono_reflection_setup_generic_class): Call
16113         ensure_runtime_vtable() to create the vtable.
16114
16115 2003-09-05  Martin Baulig  <martin@ximian.com>
16116
16117         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16118         MONO_TYPE_MVAR.
16119
16120 2003-09-04  Martin Baulig  <martin@ximian.com>
16121
16122         * reflection.c (mono_reflection_define_generic_parameter): Generic
16123         parameters start with zero.
16124
16125 2003-09-04  Martin Baulig  <martin@ximian.com>
16126
16127         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16128
16129         * reflection.h (MonoReflectionGenericParam): New typedef.
16130         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16131         the generic parameters from the managed TypeBuilder.
16132
16133         * reflection.c (mono_reflection_define_generic_parameter): New function.
16134         (mono_reflection_create_runtime_class): Encode generic parameters.
16135         (mono_reflection_setup_generic_class): New function; this is
16136         called after adding adding all generic params to the TypeBuilder.
16137         (encode_type): Added MONO_TYPE_VAR.
16138
16139 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16140
16141         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16142         here from the JIT.
16143
16144         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16145         load hook.
16146
16147 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16148
16149         * reflection.h reflection.c class.h class.c: Delete duplicate 
16150         definition of mono_type_get_name () from reflection.c and export the
16151         one in class.c.
16152
16153         * class.c: Class loading fixes from Bernie Solomon 
16154         (bernard@ugsolutions.com).
16155
16156         * reflection.c: Endianness fixes from Bernie Solomon 
16157         (bernard@ugsolutions.com).
16158         
16159 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16160
16161         * assembly.h assembly.c: Define a file format version for AOT
16162         libraries.
16163         
16164         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16165
16166         * appdomain.h (MonoJitInfo): New field to determine whenever the
16167         code is domain neutral.
16168         
16169 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16170
16171         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16172
16173 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16174
16175         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16176         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16177         Avoid caching the result since strings must be domain specific. Fixes
16178         #48050.
16179
16180 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16181
16182         * marshal.c (mono_marshal_init): Make this callable multiple times
16183         since it is hard to find a correct place to call it.
16184
16185         * object.c (mono_runtime_class_init): Execute static constructors in
16186         the correct appdomain.
16187
16188         * image.c (build_guid_table): Handle the case when multiple images have
16189         the same GUID.
16190
16191 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16192
16193         * icall.c: added a couple of icalls for System.Web.
16194
16195 2003-08-28  Martin Baulig  <martin@ximian.com>
16196
16197         * icall.c (ves_icall_Type_BindGenericParameters): Use
16198         `klass->generic_inst' instead of `&klass->byval_arg' in the
16199         mono_type_get_object() call.  The returned type must be
16200         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16201
16202 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16203
16204         * NOTES: New file.
16205
16206         * object.c (mono_class_proxy_vtable): Make it thread safe.
16207
16208         * pedump.c: Fix warning.
16209
16210         * object.c appdomain.h: Get rid of metadata_section. 
16211         It is no longer needed and it was causing deadlocks with domain->lock.
16212
16213         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16214
16215 2003-08-26  Martin Baulig  <martin@ximian.com>
16216
16217         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16218
16219 2003-08-26  Martin Baulig  <martin@ximian.com>
16220
16221         * pedump.c (main): Call mono_metadata_init(),
16222         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16223         and mono_loader_init().
16224
16225 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16226
16227         * loader.h: Add missing include to fix build.
16228
16229         * image.h: mono_image_load_references is no more.
16230
16231         * assembly.c: Reworked assembly loading to make it really thread safe.
16232         After these changes, the assembly returned by mono_assembly_open is
16233         fully initialized, i.e. all its references assemblies are loaded.
16234
16235         * assembly.c (mono_image_load_references): Renamed to 
16236         mono_assembly_load_references, and made private, since clients no
16237         longer need to call it.
16238
16239         * class.c: Removed calls to mono_assembly_load_references, since it was
16240         a source of deadlocks.
16241
16242         * loader.h loader.c class.h class.c: Protect data structures using a 
16243         new lock, the loader lock.
16244
16245         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16246         GPtrArrays only when needed.
16247
16248         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16249         into empty structures by mcs. Fixes pinvoke7.cs.
16250         
16251         * domain.c (mono_init): Call a new initialization function.
16252
16253         * appdomain.c (mono_runtime_init): Call the new initializer function
16254         of the marshal module.
16255
16256         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16257         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16258
16259         * marshal.h marshal.c: Added locks around the wrapper caches to make
16260         this module thread safe.
16261
16262         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16263         this argument. Fixes pinvoke1.exe.
16264
16265 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16266
16267         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16268         enumeration of values. Removed fields to store remote call output values in
16269         MonoAsyncResult. Not needed any more.
16270         * object.c: Initialize call_type and async_result fields in mono_message_init.
16271         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16272         dispatching the message.
16273         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16274         async call to finish. To do it use a message with EndInvoke call type.
16275
16276 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16277
16278         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16279         determines whenever a method has marshalling info.
16280
16281 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16282
16283         * assembly.c: fix the build on windows.
16284
16285 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16286
16287         * object.cs: Fixed bug #47785.
16288
16289 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16290
16291         * string-icalls.c (StringReplace): If their are no occurances of
16292         the old string found return a reference to the supplied
16293         string. This saves some memory and matches MS behavoir.
16294         
16295 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16296
16297         * socket-io.c: fixed compilation for systems that define AF_INET6
16298         and don't define SOL_IP/SOL_IPV6.
16299
16300 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16301
16302         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16303         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16304
16305         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16306
16307         * domain.c: Make this module thread safe.
16308
16309         * domain.c (mono_init): Call new initialization function.
16310
16311         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16312         reference types too. Fixes #38812.
16313
16314         * image.c (mono_image_init): Fixed warnings.
16315
16316         * class.c (mono_class_from_typeref): Handle assembly load failure
16317         correctly.
16318
16319         * appdomain.c (add_assemblies_to_domain): Handle the case when
16320         the references of an assembly are not yet loaded.
16321
16322         * metadata.c image.c assembly.c: Moved initialization of global
16323         variables to a separate function called at startup since lazy 
16324         initialization of these variables is not thread safe.
16325         
16326         * image.c assembly.c: Made this module thread safe by adding locks in 
16327         the appropriate places.
16328
16329         * domain.c (mono_init): Call the new initialization functions of the
16330         three modules.
16331
16332 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16333
16334         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16335           make a direct call. It is proxy's work to make the call asynchronous.
16336           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16337           the return values.
16338         * object.cs: mono_method_call_message_new(): read AsyncResult and
16339           state object from parameters list, if this info is requested.
16340         * object.h: Added fields to store remote call output values in
16341           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16342
16343 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16344
16345         * object.h: add needed fields to MonoThread.
16346         * threads.c, threads.h: allow registering a function to cleanup data
16347         allocated per thread by the JIT.
16348
16349 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16350
16351         * loader.h: portability fix by Bernie Solomon
16352         * <bernard@ugsolutions.com>.
16353
16354 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16355
16356         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16357         return a MonoArray. This simplifies the code and also ensures that
16358         the cache allways contains an object reference as a value.
16359
16360         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16361         function.
16362
16363 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16364
16365         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16366         fixes a problem with byte ordering when getting the address family for
16367         a socket.
16368
16369 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16370
16371         * .cvsignore: Added monosn.
16372
16373         * reflection.h reflection.c loader.c: Added support for parameter
16374         marshalling to dynamically created types. Fixes #47295.
16375
16376 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16377
16378         * rand.c: remove useless warnings.
16379
16380 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16381
16382         * class.c: implemented ldtoken for methods and fieldrefs.
16383
16384 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16385
16386         * threadpool.c: when mono_async_invoke was called, no one took care of
16387         monitoring the queue. So if the method invoked took some time and we
16388         got new async invoke requests after 500 ms (the thread created waited
16389         that long in WaitForSingleObject), the new async invoke was not called
16390         until the previous one finished.
16391
16392         This is fixed now. Thanks to Totte for helping with it.
16393
16394 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16395
16396         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16397
16398 2003-08-11  Martin Baulig  <martin@ximian.com>
16399
16400         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16401
16402 2003-08-06  Martin Baulig  <martin@ximian.com>
16403
16404         * mono-debug-debugger.c: Added support for static fields,
16405         properties and methods.
16406
16407 2003-08-06  Martin Baulig  <martin@ximian.com>
16408
16409         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16410         make this work for applications with multiple application domains.
16411
16412 2003-08-04  Martin Baulig  <martin@ximian.com>
16413
16414         * mono-debug-debugger.c: Completely reworked the type support; the
16415         most important thing is that we're now just using one single
16416         `MonoType' instance per type.
16417
16418 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16419
16420         * mono-endian.h, mono-endian.c, icall.c: Added icall
16421         ves_icall_System_Double_AssertEndianity to assert double word endianity
16422         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16423
16424 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16425
16426         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16427         support, icalls and fixes.
16428
16429 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16430
16431         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16432         classes that are a punctuation character in .NET is not the same a
16433         g_unichar_ispunct.
16434
16435 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16436
16437         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16438
16439 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16440
16441         * icall.c: Add new MemCopy internalcall.
16442         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16443         Simplified code; It is not necessary to handle all the cases here,
16444         as the C# code takes care of it.  Only handle the case of the name
16445         resource embedded into the assembly.
16446
16447         Changed signature to return the data pointer and the size of the
16448         data. 
16449
16450 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16451
16452         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16453         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16454
16455 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16456
16457         * socket-io.c: ignore EINTR error in select.
16458
16459 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16460
16461         * class.h, class.c: removed unused subclasses field in MonoClass.
16462
16463 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16464
16465         * icall.c: improve fix of get_base_definition(). If the parent class
16466           doesn't have the mehod, look at the parent of the parent.
16467         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16468           to check if a parameter is an in or out parameter
16469           (PARAM_ATTRIBUTE_IN is not set by default).
16470           mono_method_return_message_restore(): Use mono_class_value_size to
16471           get the size of a value type. mono_type_stack_size (parameterType)
16472           does not return the correct value if parameterType is byRef.
16473           mono_load_remote_field(), mono_load_remote_field_new(),
16474           mono_store_remote_field(), mono_store_remote_field_new():
16475           raise exception if the remote call returns an exception.
16476
16477 2003-07-28  Martin Baulig  <martin@ximian.com>
16478
16479         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16480         method.  This is a wrapper around mono_runtime_invoke() which
16481         boxes the instance object if neccessary.
16482
16483 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16484
16485         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16486         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16487
16488 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16489
16490         * icall.c: disable mcs bug workaround.
16491
16492 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16493
16494         * object.c (mono_runtime_class_init): Take the metadata_section
16495         mutex before obtaining the domain mutex.
16496
16497         * appdomain.h: Added definition of metadata_section mutex here. 
16498
16499         * object.c: define metadata_mutex here.
16500
16501 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16502
16503         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16504         fixed.
16505
16506 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16507
16508         * reflection.c: Fix bug #46669
16509
16510 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16511
16512         * exception.c:
16513         * exception.h:
16514         * icall.c:
16515         * object.h: fill in the type name for TypeLoadException.
16516
16517 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16518
16519         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16520         relationship between TypeBuilders while compiling corlib) and bug
16521         45993 (Array types returned from the runtime while compiling
16522         corlib were from the loaded corlib).
16523
16524 2003-07-22  Martin Baulig  <martin@ximian.com>
16525
16526         * mono-debug-debugger.c: Reworked the type support a bit more;
16527         distinguish between types and classes.
16528
16529 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16530
16531         * icall.c: add IsArrayImpl icall.
16532
16533 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16534
16535         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16536         initializing real_size only once. Also fix bug #46602.
16537
16538 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16539
16540         * object.c: Renamed mono_metadata_section to metadata_section.
16541
16542 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16543
16544         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16545           empty array if the type is an array. Fixed.
16546           ves_icall_MonoMethod_get_base_definition: if the base method
16547           is abstract, get the MethodInfo from the list of methods of
16548           the class.
16549         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16550           and it was 1-based. Fixed in mono_param_get_objects.
16551
16552 2003-07-20  Martin Baulig  <martin@ximian.com>
16553
16554         * mono-debug.h: Set version number to 31.
16555         (mono_debug_init): Added `MonoDomain *' argument.
16556
16557         * mono-debug-debugger.c: Reworked the type support; explicitly
16558         tell the debugger about builtin types; pass the `klass' address to
16559         the debugger.
16560
16561 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16562
16563         * image.c: Allow new metadata tables to be loaded without a
16564         warning. Also update the warning message to give the new constant value.
16565                 
16566 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16567
16568         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16569         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16570         array type representation changes.
16571
16572 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16573
16574         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16575         on Environment.Exit () call.
16576
16577 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16578
16579         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16580         requires a matching corlib.
16581
16582 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16583
16584         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16585           Committed again without the CRs.
16586         
16587 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16588
16589         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16590           getting it from the "this" socket instance. Did not work
16591           if the socket is a subclass of Socket.
16592           Also fixed bug #35371.
16593
16594 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16595
16596         * metadata.c: fixed size for TypedByRef.
16597         * loader.c: when searching for a method, consider the vararg amrker.
16598         * unicode.c, decimal.c: constify some arrays.
16599
16600 2003-07-15  Dick Porter  <dick@ximian.com>
16601
16602         * socket-io.c: Fixed compilation for gcc < 3.2.
16603
16604         Fixed compilation for machines that don't have AF_INET6 (thanks to
16605         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16606
16607         Fixed compile warnings.
16608         
16609         Fixed formatting and line endings.
16610
16611 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16612
16613         * socket-io.h:
16614         * socket-io.c: Added IPv6 support.
16615
16616 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16617
16618         * class.c (mono_class_is_assignable_from): New function to implement
16619         the is_assignable_from logic. Used by mono_object_isinst, 
16620         Type::IsAssignableFrom () and the interpreter.
16621
16622         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16623         Object, even interfaces.
16624         
16625         * object.c (mono_object_isinst): Implement in terms of 
16626         is_assignable_from.
16627
16628         * icall.c (ves_icall_type_is_assignable_from): New icall.
16629
16630 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16631
16632         * domain.c (foreach_domain): fix compiler warning.
16633
16634 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16635
16636         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16637         not available on all plattforms
16638
16639 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16640
16641         * image.h image.c: Store the metadata version string in MonoImage.
16642         * icall.c: New icall to retrieve the image version.
16643         * reflection.c (create_dynamic_image): Fill in the image version field
16644         * reflection.c (build_compressed_metadata): Use the image version
16645         from the image structure.
16646
16647 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16648
16649         * appdomain.c: modified comment.
16650         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16651         That will be its last iteration when mono_gc_cleanup is called from
16652         mono_runtime_cleanup and before the domain is unloaded.
16653
16654         Fixes bug #45962.
16655
16656 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16657
16658         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16659         attributes.
16660
16661 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16662
16663         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16664         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16665         Bernie Solomon <bernard@ugsolutions.com>.
16666
16667 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16668
16669         * object.c, object.h: provide mono_object_new_fast() for faster
16670         allocation in some special cases.
16671
16672 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16673
16674         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16675         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16676
16677 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16678
16679         * threadpool.c: fix leaks.
16680
16681 2003-07-01  Dick Porter  <dick@ximian.com>
16682
16683         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16684         using MonoGHashTables.  Fixes threadpool bug posted to list.
16685
16686 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16687
16688         * image.h, image.c: added support to load an assembly from a byte array.
16689         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16690         assembly bundle support.
16691
16692 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16693
16694         * threadpool.c (mono_thread_pool_add): keep a reference to the
16695         AsyncResult to prevent GC
16696
16697 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16698
16699         * class.c: leak fix.
16700
16701 2003-06-25  Dick Porter  <dick@ximian.com>
16702
16703         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16704         for the async object, the WaitHandle object will close the handle.
16705         Fixes bug 45321.
16706
16707 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16708
16709         * class.c: in mono_array_class_get (), lookup from the hash with the
16710         same type we insert: this works around a bug in
16711         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16712         lluis. The real fix will have to wait for after the release.
16713
16714 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16715
16716         * icall.c: fix memory leak when getting type members.
16717
16718 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16719
16720         * reflection.c: added more pubtoken special cases.
16721
16722 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16723
16724         * class.c: handle field offset correctly when class size
16725         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16726
16727 2003-06-20  Martin Baulig  <martin@ximian.com>
16728
16729         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16730         *image' field.
16731
16732 2003-06-20  Martin Baulig  <martin@ximian.com>
16733
16734         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16735
16736 2003-06-20  Martin Baulig  <martin@ximian.com>
16737
16738         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16739         just distinguish between variables in registers and variables at
16740         an offset relative to a register.
16741
16742 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16743
16744         * icall.c: #ifdef out latest changes until mcs is fixed.
16745
16746 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16747
16748         * icall.c: return members in metadata order.
16749
16750 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16751
16752         * icall.c: avoid infinite loop in GetTimeZoneData.
16753
16754 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16755
16756         * icall.c: added Marshal.Prelink/All icalls.
16757
16758 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16759
16760         * object.c, object.h: fix warnings and do some overflow checking
16761         when creating arrays.
16762
16763 2003-06-17  Dick Porter  <dick@ximian.com>
16764
16765         * file-io.h:
16766         * file-io.c: File attributes need to be tweaked slightly when
16767         passed from the managed to the w32 world.
16768
16769 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16770         * profiler.h profiler-private.h profiler.c: Rework last patch
16771         based on suggestion by Paolo.
16772         
16773 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16774
16775         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16776         instruction level coverage data collection.
16777         * profiler.h profiler.c (: Added new callback function which can be
16778         used by the profiler to limit which functions should have coverage
16779         instrumentation.
16780         * profiler.c (mono_profiler_load): Call g_module_build_path to
16781         generate the file name of the profiler library.
16782
16783 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16784
16785         * profiler.c, profiler.h, profiler-private.h: added basic block 
16786         coverage profiling API.
16787
16788 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16789
16790         * reflection.c (mono_reflection_create_runtime_class): Add support
16791         for events in dynamically generated code.
16792
16793         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16794         not allocated.
16795
16796 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16797
16798         * icall.c: when getting timezone info, return reasonable values if we
16799         can't get the actual data.
16800
16801 2003-06-14  Dick Porter  <dick@ximian.com>
16802
16803         * threads.c (start_wrapper): Remove the reference to the thread
16804         object in the TLS data, so the thread object can be finalized.
16805         This won't be reached if the thread threw an uncaught exception,
16806         so those thread handles will stay referenced :-( (This is due to
16807         missing support for scanning thread-specific data in the Boehm GC
16808         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16809
16810 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16811
16812         * reflection.c: ensure streams and tables are first allocated with
16813         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16814
16815 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16816
16817         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16818
16819 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16820
16821         * reflection.c (mono_reflection_create_runtime_class): Add support for
16822         properties to dynamically created classes.
16823         * reflection.c: Fix a few places where non-MonoObjects were inserted
16824         into the tokens hashtable.
16825
16826 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16827
16828         * object.c: some support to handle out of memory exceptions.
16829
16830 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16831
16832         * marshal.c (mono_marshal_get_native_wrapper): support reference
16833         return types
16834
16835 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16836
16837         * object.h, object.c: more portability stuff from Bernie Solomon.
16838         Unexport mono_object_allocate(). Added mono_object_unbox ().
16839         Set exitcode when an unhandled exception is thrown.
16840
16841 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16842
16843         * marshal.c (mono_marshal_get_native_wrapper): use custom
16844         marshaler for return types.
16845
16846 2003-06-10  Dick Porter  <dick@ximian.com>
16847
16848         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16849         ip_mreq is available
16850
16851 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16852
16853         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16854         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16855         by Bernie Solomon <bernard@ugsolutions.com>.
16856
16857 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16858
16859         * gc.c (mono_gc_init): Avoid error message on shutdown when
16860         GC_DONT_GC=1 is used.
16861
16862         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16863         New icall to return the GUID of a module.
16864
16865 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16866
16867         * class.c: ensure instance size always includes the parent's size
16868         even whem class size is set explicitly (fixes bug#44294).
16869
16870 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16871
16872         * profiler.h, profiler.c: made the simple profiler thread-safe,
16873         get more accurate timing info. Allow the loading of an
16874         externally-developed profiler module.
16875
16876 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16877
16878         * marshal.c (mono_marshal_get_native_wrapper): improved
16879         class/byref arguments.
16880         (mono_marshal_get_native_wrapper): better string marshaling support.
16881
16882 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16883
16884         * class.c: ensure .pack and .size are handled correctly and
16885         simplified layout of static fields.
16886
16887 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16888
16889         * appdomain.c
16890         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16891
16892         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16893         current directory (fix bug 44008)
16894
16895 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16896
16897         * marshal.c (mono_marshal_get_native_wrapper): started support for
16898         custom marshalers.
16899         (mono_delegate_to_ftnptr): consider marshalling specifications
16900
16901 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16902
16903         * reflection.c, reflection.h: emit custom marshal info.
16904
16905 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16906
16907         * object.c: free the GError.
16908         * icall.c: added CloseEvent_internal.
16909         * threads.[ch]:
16910         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16911         call.
16912
16913 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16914
16915         * loader.c (mono_method_get_signature): Add support for dynamic
16916         assemblies.
16917
16918 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16919
16920         * reflection.c: fixed bug #43905.
16921
16922 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16923
16924         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16925         handling TypedReference and ArgIterator.
16926         * loader.c, loader.h: added function to get signature at call site.
16927
16928 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16929
16930         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16931         data readonly. Buglets and warning fixes. Some MethodSpec support.
16932
16933 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16934
16935         * class.h, class.c, object.c: remove relative numbering support.
16936
16937 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16938
16939         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16940         free the string, until we get a chance to fix Gtk#
16941
16942 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16943
16944         * marshal.c: revert last patch.
16945
16946 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16947
16948         * icall.c: updates for new mono_class_vtable() not calling
16949         the type constructor anymore.
16950
16951 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16952
16953         * object.h, object.c: separate vtable creation from type
16954         initialization. Make running the .cctor thread safe.
16955
16956 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16957
16958         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16959
16960 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16961
16962         * loader.c (mono_get_method): consider calling convention
16963
16964 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16965
16966         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16967         to return the invisible global type for a module.
16968
16969         * reflection.c (mono_image_build_metadata): Emit global fields too.
16970
16971 2003-05-20  Peter Williams  <peterw@ximian.com>
16972
16973         * loader.c (mono_lookup_internal_call): Add a few newlines.
16974
16975 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16976
16977         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16978         literal strings.
16979
16980         * appdomain.c (set_domain_search_path): Recalculate search path when
16981         AppDomainSetup.PrivateBinPath changes.
16982
16983         * object.c (mono_class_compute_gc_descriptor): It turns out some
16984         parts of the class libs (like System.Thread) holds pointers to
16985         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16986         to treat native int a pointer type here.
16987         
16988 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16989
16990         * appdomain.h, domain.c: add hashtable for jump target resolution.
16991
16992 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16993
16994         * reflection.h reflection.c icall.c: Added new icalls 
16995         GetManifestResourceInfoInternal, GetModulesInternal and support
16996         infrastructure.
16997
16998 2003-05-16  Dick Porter  <dick@ximian.com>
16999
17000         * icall.c:
17001         * file-io.h:
17002         * file-io.c: Implement System.IO.MonoIO::GetTempPath
17003
17004 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
17005
17006         * object.c: mono_store_remote_field: little fix to previous patch.
17007
17008 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17009
17010         * class.c: add constructors to array classes.
17011         * icall.c: special case array construction for InternalInvoke (),
17012
17013 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
17014
17015         * class.h class.c reflection.c object.c: Added support for field
17016         defaults in dynamically generated classes.
17017
17018 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
17019
17020         * reflection.c: properly encode charset for ddlimport.
17021
17022 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
17023
17024         * threads.c: allow compiling without GC.
17025
17026 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17027
17028         * appdomain.h, object.c, object.h, threads.c, threads.h: added
17029         handling of thread static data.
17030
17031 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17032
17033         * reflection.h, reflection.c: added mono_custom_attrs_free ().
17034
17035 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
17036
17037         * class.c (mono_array_class_get): always set the serializable flags
17038         (mono_array_class_get): always set the SEALED attribute for array types
17039
17040 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
17041
17042         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
17043         attributes (fix for bug 42021).
17044
17045 2003-05-12  Dick Porter  <dick@ximian.com>
17046
17047         * gc.c: Don't run finalizers when the finalizer thread is
17048         finishing up, because the default domain has already been
17049         destroyed.
17050
17051 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
17052
17053         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
17054         value is null, we should throw an exception.   This is slightly
17055         different than the other conventions used for the constructor.
17056
17057 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17058
17059         * socket-io.c: fixed windows build.
17060
17061 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17062
17063         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
17064
17065 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
17066
17067         * object.c (mono_string_new_wrapper): Compatibility fix for MS
17068         compilers.
17069
17070 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
17071
17072         * class.c (mono_class_layout_fields): Add experimental GC aware
17073         auto layout facility. Requires class library changes to work correctly.
17074
17075         (mono_class_setup_vtable): Avoid overriding explicit interface
17076         method implementations. Fixes iface3.exe test.
17077
17078         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
17079         object reference.
17080         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
17081         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
17082
17083         * metadata.h: Add new type classification macro which determines
17084         whenever the type holds an object reference.
17085
17086 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
17087
17088         * marshal.c (mono_marshal_get_native_wrapper): cleanups
17089
17090 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
17091
17092         * gc.c (finalizer_thread): Work around a GC bug.
17093
17094 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
17095
17096         * marshal.c (emit_struct_conv): allow unions
17097
17098         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17099
17100 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17101
17102         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17103
17104 2003-05-06  Martin Baulig  <martin@ximian.com>
17105
17106         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17107
17108 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17109
17110         * socket-io.c:
17111         (Select_internal): allow NULLs, don't create arrays if not needed.
17112         Coupled with Socket.cs changes.
17113
17114         * threadpool.c:
17115         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17116         register a finalizer for it that will close the semaphore handle. This
17117         fixes the leak and make Lupus' test run with > 4080 loops.
17118
17119 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17120
17121         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17122         Jerome Laban (bug #42287)
17123
17124 2003-05-02  Martin Baulig  <martin@ximian.com>
17125
17126         * debug-mono-symfile.h
17127         (MonoSymbolFile): Moved declaration into mono-debug.h.
17128         (MonoDebugMethodJitInfo): Likewise.
17129         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17130         argument.
17131         (_mono_debug_address_from_il_offset): Take a
17132         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17133
17134         * mono-debug.h
17135         (MonoDebugDomainData): New struct.
17136         (mono_debug_get_domain_data): New function.
17137         (mono_debug_add_method): Take an additional `MonoDomain *'
17138         argument.
17139         (mono_debug_source_location_from_address): Likewise.
17140         (mono_debug_il_offset_from_address): Likewise.
17141         (mono_debug_address_from_il_offset): Likewise.
17142
17143 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17144
17145         * reflection.c: one more check for null type in custom attrs.
17146
17147 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17148
17149         * reflection.c: avoid warning (comparison is always false due to limited
17150         range of data type).
17151
17152 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17153
17154         * icall.c: throw an exception in Type.GetField if the argument 'name'
17155         is NULL.
17156
17157 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17158
17159         * reflection.c: fixed handling of enums in named arguments to custom
17160         attributes (bug #42123).
17161
17162 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17163
17164         * reflection.c: use the right array element type and handle
17165         a null for a Type argument, too.
17166
17167 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17168
17169         * reflection.c: handle arrays as arguments to custom attributes.
17170
17171 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17172
17173         * reflection.c: handle a string value in a custom attr
17174         ctor that takes an object.
17175
17176 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17177
17178         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17179         (fix bug #42063)
17180
17181 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17182
17183         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17184
17185 2003-04-27  Martin Baulig  <martin@ximian.com>
17186
17187         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17188         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17189         MONO_DEBUGGER_EVENT_BREAKPOINT.
17190         (mono_breakpoint_trampoline_code): Removed.
17191         (mono_debugger_event_handler): The last argument is now a
17192         `guint32'.
17193         (mono_debugger_insert_breakpoint_full): Removed the
17194         `use_trampoline' argument.
17195         (mono_debugger_method_has_breakpoint): Likewise.
17196         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17197         mono_debugger_breakpoint_callback(); take the method and
17198         breakpoint number as arguments.
17199
17200 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17201
17202         * metadata.c: fix off by one when loading parameters attributes.
17203
17204 2003-04-24  Martin Baulig  <martin@ximian.com>
17205
17206         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17207
17208 2003-04-24  Martin Baulig  <martin@ximian.com>
17209
17210         * mono-debug-debugger.c: Moved all code which interacts with the
17211         Mono Debugger here.
17212
17213         * debug-mono-symfile.c: This code now just deals with the symbol
17214         file itself, the debugger code is now in mono-debug-debugger.c.
17215
17216 2003-04-23  Martin Baulig  <martin@ximian.com>
17217
17218         * mono-debug.c (mono_debug_source_location_from_il_offset):
17219         New method; like mono_debug_source_location_from_address(), but
17220         takes an IL offset instead of a machine address.
17221
17222 2003-04-23  Martin Baulig  <martin@ximian.com>
17223
17224         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17225         `line' field; this is now computed by the debugger.
17226
17227 2003-04-23  Martin Baulig  <martin@ximian.com>
17228
17229         * mono-debug.[ch]: New files.  This is the new debugging interface.
17230
17231         * mono-debug-debugger.[ch]: New files.  Moved all code which
17232         interacts with the Mono Debugger here.
17233
17234 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17235
17236         * domain.c (mono_init): initialize mono_defaults.monitor_class
17237
17238 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17239
17240         * reflection.c (method_encode_code): Add a spicy exception to help
17241         future compiler authors.
17242
17243 2003-04-21  Martin Baulig  <martin@ximian.com>
17244
17245         * icall.c
17246         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17247         Make this work with relative pathnames; g_filename_to_uri() needs
17248         an absolute filename.
17249
17250 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17251
17252         * icall.c: Track name changes in Object and ValueType.
17253
17254 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17255
17256         * metadata.c (mono_type_stack_size): size should be a multiple of
17257         sizeof (gpointer)
17258
17259 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17260
17261         * gc.c:
17262         (internal_domain_finalize): moved into mono_domain_finalize. No need
17263         to create another thread because the finalizers will be run in the
17264         finalizer thread.
17265         
17266         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17267         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17268         to be run (MS does this too).
17269
17270 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17271
17272         * object.c (mono_class_compute_gc_descriptor): Update comment.
17273
17274         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17275
17276         * image.h: Add synchronized wrapper cache.
17277
17278         * image.c (do_mono_image_open): Initialize cache.
17279
17280         * reflection.c (create_dynamic_mono_image): Initialize cache.
17281
17282 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17283
17284         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17285         ves_icall_System_Buffer_ByteLengthInternal.
17286
17287 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17288
17289         * reflection.c: setup klass->nested_in earlier. Allow
17290         a dash in the assembly name.
17291
17292 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17293
17294         * metadata.c (mono_type_to_unmanaged): dont access
17295         type->data.klass for MONO_TYPE_OBJECT
17296         (mono_type_to_unmanaged): consider System.Delegate class
17297
17298 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17299
17300         * class.c: just setup supertypes in the proper place instead of
17301         initializing the full element class for arrays.
17302
17303 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17304
17305         * class.c: ensure the element class of arrays is initialized.
17306         Setup the supertype info for array classes, too.
17307
17308 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17309
17310         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17311
17312 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17313
17314         * Makefile.am: re-added -m option when running cygpath. This way,
17315         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17316         separator.
17317         * mono-config.c: same codepath for locating mono config file for WIN32
17318         and the rest.
17319         * assembly.c: if mono_assembly_setrootdir is called, don't override
17320         the value set.
17321
17322 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17323
17324         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17325         MONO_ASSEMBLIES variable.
17326
17327 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17328
17329         * icall.c: added Assembly::GetNamespaces() icall.
17330
17331 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17332
17333         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17334
17335 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17336
17337         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17338         * object.c: fixed bug in the construction of vtable for proxies
17339
17340 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17341
17342         * object.c (mono_array_new): Mark mono_array_new as an icall.
17343
17344 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17345
17346         * class.c: fixed test for public method when overriding interfaces.
17347         Closes bug #40970.
17348
17349 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17350
17351         * appdomain.h, domain.c: added mono_domain_foreach() to
17352         be able to access the currently loaded appdomains.
17353         * object.c: make string interning work across sppdomains.
17354         Mark some functions for use as icalls.
17355
17356 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17357
17358         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17359
17360         * reflection.h reflection.c: Allocate long living data using 
17361         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17362
17363         * reflection.c: Double the allocation size in streams instead of
17364         increasing it, to prevent unneccesary copying on large assemblies.
17365         
17366         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17367         creation if the assembly does not have the Run flag set.
17368
17369 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17370
17371         * class.h: avoid the C++ keywords in header files (Jerome Laban
17372         spotted and fixed this).
17373
17374 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17375
17376         * object.c:
17377         (mono_unhandled_exception): fill in the arguments for the
17378         UnhandledException event. Only trigger that event for the default
17379         domain (as MS does).
17380
17381 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17382
17383         * object.c: Improve typed allocation stuff based on suggestions from
17384         Paolo. Also turn it on if the GC library supports it.
17385
17386 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17387
17388         * object.c object.h class.h: Added experimental typed allocation
17389         facility using the interfaces in gc_gcj.h.
17390
17391         * os/gc_wrapper.h: Added new include files.
17392         
17393 2003-04-03  Martin Baulig  <martin@ximian.com>
17394
17395         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17396         which is not yet enabled by default.
17397
17398         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17399         functions.
17400         (mono_gc_lock, mono_gc_unlock): New static functions.
17401
17402         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17403         functions; stop/start the world for the garbage collector.  This
17404         is using the windows API; we need to complete the SuspendThread()/
17405         ResumeThread() implementation in the io-layer to make this work on Unix.
17406         (mono_gc_push_all_stacks): New public function; tells the garbage
17407         collector about the stack pointers from all managed threads.
17408
17409 2003-04-03  Martin Baulig  <martin@ximian.com>
17410
17411         * object.h (MonoThread): Added `gpointer stack_ptr'.
17412
17413         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17414
17415 2003-04-03  Martin Baulig  <martin@ximian.com>
17416
17417         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17418
17419 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17420
17421         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17422         field.last.
17423
17424 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17425
17426         * loader.c (mono_lookup_internal_call): Report the corlib that is
17427         out of sync.
17428
17429 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17430
17431         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17432         System.DBNull (it's class not valuetype).
17433
17434 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17435
17436         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17437         if the array method was already assigned a token (fixes bug#40646).
17438
17439 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17440
17441         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17442         if no assembly is given.
17443
17444 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17445
17446         * metadata.h: Added the new tables.
17447
17448         * row-indexes.h: Added definitions for new tables.
17449
17450         * metadata.c: Add schemas for new tables, and add support for
17451         computing the sizes of them.
17452
17453         * class.c: Update for handling the new type cases.
17454
17455 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17456
17457         * metadata.h (MONO_TYPE_IS_VOID): new macro
17458
17459 2003-03-31  Martin Baulig  <martin@ximian.com>
17460
17461         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17462
17463         * threads.c (mono_thread_new_init): Call `thread_created' in the
17464         mono_thread_callbacks.
17465
17466 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17467
17468         * loader.h: added marshalbyrefobject_class to mono_defaults
17469         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17470         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17471           generation of output parameters.
17472           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17473         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17474           contextbound and the target object belongs to the context of the caller.
17475         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17476         * object.c: Implemented support for interfaces and abstract classes
17477           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17478           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17479
17480 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17481
17482         * class.h class.c (mono_class_is_subclass_of): New function.
17483         
17484         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17485         routines for most common case (calls from ArrayList::ToArray).
17486
17487         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17488         routine so programs which call Environment::Exit() can be profiled.
17489
17490         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17491         Added MONO_ARCH_SAVE_REGS.
17492
17493         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17494
17495 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17496
17497         * blob.h: Add a couple of new MonoType types definitions.
17498
17499         * tabledefs.h: Add a couple of new call convs.
17500
17501 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17502
17503         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17504         the layout of the class.
17505
17506         * reflection.c (alloc_table): double the size on overflow to avoid
17507         unnecessary copying.
17508
17509         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17510         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17511         null so it can be garbage collected.
17512         
17513 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17514
17515         * reflection.c (mono_reflection_get_type): Return the resolved type
17516         only if it is in the assembly we searched.
17517
17518         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17519
17520         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17521         method.
17522
17523 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17524
17525         * appdomain.c:
17526         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17527         the right one is 'file:///blah', but MS allows it.
17528         * assembly.c:
17529         (mono_assembly_open): allow 'file://blah'
17530
17531         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17532
17533 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17534
17535         * socket-io.c: fixes bug #40310.
17536
17537 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17538
17539         * reflection.c (mono_reflection_parse_type): handle deeply nested
17540         types correctly.
17541
17542         * reflection.c (mono_image_create_token): Use unique token values
17543         since they will be put into a hash table.
17544
17545         * class.c (mono_class_setup_vtable): If a method occurs in more than
17546         one place in the vtable, and it gets overriden, then change the
17547         other occurances too.
17548
17549         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17550         object as return type.
17551
17552 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17553
17554         * icall.c: Deleted "ToString" implementation for double and float
17555         because they are full implemented in managed code.
17556
17557 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17558
17559         * reflection.c, reflection.h: implemented and exported functions
17560         to retrieve info about custom attributes.
17561
17562 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17563
17564         * appdomain.c: moved Uri handling to assembly.c
17565         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17566         work when using a file Uri in *nix and windows.
17567
17568         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17569         GetReferencedAssemblies.
17570
17571 2003-03-18  Dick Porter  <dick@ximian.com>
17572
17573         * icall.c: Rename a couple of internal calls
17574
17575         * threads.c: Set the thread state to Stopped when a thread exits.
17576         Fixes bug 39377.
17577
17578 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17579
17580         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17581         New icall.
17582
17583         * object.c (mono_class_vtable): fix warning.
17584
17585 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17586
17587         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17588
17589         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17590         memory.
17591         (method_encode_clauses): Create exception info structures in the right
17592         order.
17593         (mono_reflection_setup_internal_class): Initialize supertypes field.
17594
17595         * class.c object.c: Handle interfaces which implement other interfaces 
17596         correctly.
17597
17598         * class.h class.c: Move the supertypes array initialization code into 
17599         a separate function so it can be used for dynamic types too. Also call
17600         it earlier, in mono_class_init(), since it can be used before the
17601         type is initialized.
17602
17603 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17604
17605         * Makefile.am:
17606         * assembly.c:
17607         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17608
17609         * appdomain.c:
17610         * appdomain.h:
17611         * marshal.c:
17612         * object.c: remove warnings.
17613
17614 2003-03-13  Martin Baulig  <martin@ximian.com>
17615
17616         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17617         (MonoDebugLexicalBlockEntry): New types.
17618
17619         * debug-mono-symfile.c
17620         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17621
17622 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17623
17624         * process.c: ret can be any non-zero value accroding to MS doc.
17625
17626 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17627
17628         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17629         fixing a warning for a miss-used prototype, would have cause
17630         random memory corruption.
17631
17632 2003-03-07  Martin Baulig  <martin@ximian.com>
17633
17634         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17635         getting really annoying ....
17636
17637 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17638
17639         * reflection.c (fixup_method): added support for array methods.
17640
17641 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17642
17643         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17644         (pointed out by Michael Adams).
17645
17646 2003-03-04  Dick Porter  <dick@ximian.com>
17647
17648         * icall.c: Temporarily reverted the Double and Single ToString()
17649         change, because it broke nunit.
17650
17651 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17652
17653         * object.h, threads.h: make include files compatible with C++
17654         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17655
17656 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17657
17658         * icall.c: Erased ToString helper functions for Double and Single.
17659         Now, that implementations ar all in managed code (Double and Single
17660         Formatters).
17661
17662 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17663
17664         * appdomain.c: Added method for initializing the default context of
17665         a domain. Added internal call for getting the default context.
17666         * appdomain.h: Added context variable in MonoDomain struct.
17667         * domain.c: mono_domain_set also sets the default context of the domain
17668         * icall.c: Mapped internal method InternalGetDefaultContext.
17669         * object.c: mono_object_get_virtual_method returns always a remoting
17670         wrapper if the object is a transparent proxy.
17671         mono_runtime_invoke_array: when creating an object by calling the
17672         constructor, if the created object is a proxy, then the constructor should
17673         be called using the a remoting wrapper.
17674
17675 2003-03-03  Dick Porter  <dick@ximian.com>
17676
17677         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17678         variable so it compiles on solaris.  Problem spotted by
17679         Christopher Taylor <ct@cs.clemson.edu>
17680
17681 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17682
17683         * appdomain.c:
17684         (get_info_from_assembly_name): don't leak value.
17685
17686         * icall.c:
17687         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17688         result.
17689
17690 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17691
17692         * assembly.c: export mono_image_load_references ().
17693         * class.c: handle function pointers. mono_class_from_name() now
17694         supports nested type names directly.
17695
17696 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17697
17698         * reflection.h reflection.c: Encode already created dynamic methods 
17699         and fields correctly as a DEF instead of a REF.
17700
17701         * reflection.c: Get rid of the force_ref argument to 
17702         mono_image_typedef_or_ref since it was wrong in the first place.
17703
17704         * string-icalls.c: add error checking to string constructors according
17705         to the MSDN docs.
17706
17707         * reflection.c: Emit types in the order their TypeBuilders were 
17708         created. Previously, a new table index was assigned to each type before
17709         the tables were emitted. This was wrong because the signature blob
17710         might already refer to a type by its original table index.
17711
17712 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17713
17714         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17715         change.
17716         
17717 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17718
17719         * Makefile.am: make assemblies dir have \ instead of / on windows.
17720
17721 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17722
17723         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17724         iterate over the NESTEDCLASS table using a linear search since the
17725         table is not guaranteed to be sorted by the secondary key.
17726
17727         * class.c (mono_class_create_from_typedef): fixed up call to
17728         mono_metadata_nesting_typedef.
17729         
17730 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17731
17732         * marshal.c (mono_string_to_byvalstr): clear the memory as
17733         suggested by Jerome Laban <jlaban@wanadoo.fr>
17734
17735 2003-02-26  Dick Porter  <dick@ximian.com>
17736
17737         * process.c: Cope with padding in .rsrc blocks
17738
17739 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17740
17741         * metadata.h: reverted the filter_len change, it breaks reflection
17742         
17743 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17744
17745         * metadata.h: added a new field to store the filter_len
17746         
17747
17748 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17749
17750         * reflection.c: handle custom attributes for types and members
17751         created with Reflection.Emit (bug#38422).
17752
17753 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17754
17755         * reflection.c: define RTSpecialName automatically for constructors for
17756         compatibility with MS.NET.
17757
17758         * reflection.c (mono_reflection_create_runtime_class): initialize
17759         nested_in field of dynamically created classes.
17760
17761 2003-02-22  Martin Baulig  <martin@ximian.com>
17762
17763         * debug-mono-symfile.h: Incremented version number.
17764
17765 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17766
17767         * object.h icall.c process.c: fix warnings.
17768
17769 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17770
17771         * appdomain.h appdomain.c:
17772         (mono_domain_try_type_resolve): split the 
17773         name_or_tb argument into a name and a tb argument.
17774         (mono_domain_has_type_resolve): new function to check whenever the
17775         application has registered a TypeResolve event handler.
17776         
17777         * icall.c reflection.h reflection.c: move the type resolve logic into
17778         mono_reflection_get_type () so it will be invoked when 
17779         Assembly::GetType () is called.
17780
17781         * reflection.c:
17782         (mono_reflection_get_type): renamed to get_type_internal.
17783         (mono_reflection_get_type): fixed type name generation so it works 
17784         for nested types too.
17785         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17786         costly type name generation if there is no resolve event handler.
17787
17788 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17789
17790         * class.c, image.c: load exported types from file references.
17791
17792 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17793
17794         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17795           used to cache the managed methods used to create proxies and make 
17796           remote invocation of methods.
17797         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17798           to be remotely created.
17799         * object.c: Modified the method mono_class_vtable(). It now initializes 
17800           the remote flag of the vtable. Modified mono_object_new_specific(), 
17801           so now it checks the remote flag.
17802         * icall.c: Added a couple of internal methods, one for enabling instance 
17803           creation interception for a type, and one for creating objects bypassing
17804           the remote check.
17805
17806 2003-02-18  Martin Baulig  <martin@ximian.com>
17807
17808         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17809         New interncall to get a method's metadata token.
17810
17811         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17812         New interncall for the debugger.
17813
17814 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17815
17816         * class.c (mono_class_setup_vtable): allocate supertype array
17817
17818 2003-02-18  Martin Baulig  <martin@ximian.com>
17819
17820         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17821
17822 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17823
17824         * reflection.c:
17825         (assembly_name_to_aname): jump over unknown properties (i've found
17826         something like: 'type, assembly, version=xxx, custom=null, public...',
17827         so now will ignore custom=null and still get the rest of the values).
17828
17829 2003-02-17  Dick Porter  <dick@ximian.com>
17830
17831         * threads.c: Have Thread.Start() wait for a semaphore to signal
17832         that the thread has set up all its local data.  This fixes bug
17833         34323, where Abort() raced the new thread's TLS data.
17834
17835         Also removes the handle_store() call from start_wrapper, because
17836         threads are now always created suspended and there is no longer a
17837         race between the parent and child threads to store the info.
17838
17839 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17840
17841         * image.c: explain the #- heap issue in a message, hopefully
17842         avoiding FAQs on mono-list.
17843
17844 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17845
17846         * icall.c:
17847         (GetEntryAssembly): if the domain has not invoked
17848         AppDomain.ExecuteAssembly yet, return the assembly of the default
17849         AppDomain.
17850
17851 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17852
17853         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17854
17855 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17856
17857         * metadata.c, reflection.c: simple speedup to type hash
17858         and equals code.
17859
17860 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17861
17862         * image.c, image.h, class.c, assembly.c: move module loading
17863         to MonoImage. When loading metadata, consider alignemnet from
17864         the start of metadata, not from the metadata address in memory.
17865
17866 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17867
17868         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17869         AssemblyBuilder objects. Factored out custom attribute creation into
17870         a separate function.
17871         (create_custom_attr): new function to create custom attributes.
17872
17873 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17874
17875         * Makefile.am: Got tired of typing the full pathname to pedump.
17876         Until there is another option, am installing this.
17877
17878 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17879
17880         * class.c (class_compute_field_layout): always set field->parent 
17881         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17882
17883 2003-02-11  Dick Porter  <dick@ximian.com>
17884
17885         * threads-types.h:
17886         * monitor.c: Rewrote Monitor, making lock much faster and
17887         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17888         creates them as needed.
17889
17890         * exception.c: Added SynchronizationLockException
17891
17892         * threads.c: Deleted old Monitor implementation.  The new one is
17893         in a new file.
17894
17895 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17896
17897         * class.c: handled TypedReference type code. Set the correct size for
17898         class data. Setup interface_offsets for interface classes, too.
17899
17900 2003-02-09  Martin Baulig  <martin@ximian.com>
17901
17902         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17903
17904 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17905
17906         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17907         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17908         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17909         * verify.c: check for code that runs after the end of the method.
17910
17911 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17912
17913         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17914         "System.Math::Round2".
17915         * sysmath.h: Added Floor, Round and Round2 definitions.
17916         * sysmath.c: Modified certain functions that were not 100% compliant
17917         with MS.NET (math precision) and added the implementation of Floor,
17918         Round and Round2.
17919
17920 2003-02-07  Martin Baulig  <martin@ximian.com>
17921
17922         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17923
17924 2003-02-07  Martin Baulig  <martin@ximian.com>
17925
17926         * debug-mono-symfile.c: Reflected latest symwriter changes.
17927         (mono_debug_create_mono_symbol_file): Removed.
17928         (mono_debug_open_mono_symbol_file): Take an argument which
17929         specifies whether to create a dynamic symbol file.
17930
17931 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17932
17933         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17934
17935 2003-02-05  Martin Baulig  <martin@ximian.com>
17936
17937         * reflection.c (mono_image_build_metadata): Make this public,
17938         protect it against being called multiple times, don't create
17939         resources and don't build the compressed metadata here.
17940         (mono_image_create_pefile): Do this here.
17941
17942         * icall.c
17943         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17944
17945 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17946
17947         * socket-io.c: fixed bug #36322.
17948
17949 2003-02-06  Piers Haken <piersh@friskit.com>
17950
17951         * appdomain.[ch]:
17952         * class.h:
17953         * debug-mono-symfile.c:
17954         * icall.c:
17955         * loader.c:
17956         * mono-config.c:
17957         * monosn.c:
17958         * reflection.c:
17959         * socket-io.c: warning cleanups
17960
17961 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17962
17963         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17964         function. works like remoting invoke, but does a check for the Proxy first.
17965
17966 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17967
17968         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17969
17970 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17971
17972         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17973         array of pointers.
17974         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17975         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17976
17977         * object.c (mono_store_remote_field_new): used by the new jit
17978         instead of mono_store_remote_field
17979         (mono_load_remote_field_new): used by the new jit
17980         instead of mono_load_remote_field
17981
17982 2003-02-05  Patrik Torstensson
17983
17984         * appdomain.c: changed unload to take the domain id instead
17985         of domain
17986         
17987         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17988
17989
17990 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17991
17992         * appdomain.c: don't look for assemblies in ApplicationBase if
17993         PrivateBinPathProbe is set.
17994
17995 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17996
17997         * object.c: make the first argument in main_args contain the absolute
17998         path to the assembly. Fixes bug #37511.
17999
18000 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18001
18002         * icall.c: get correct UTC offset for countries not using daylight
18003         time saving. Fixes bug #30030.
18004
18005 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18006
18007         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
18008         and 1 are the family).
18009
18010 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
18011
18012         * icall.c (ves_icall_InternalExecute): removed wrong assertion
18013
18014         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
18015
18016 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
18017
18018         * reflection.c: added support for SignatureHelper tokens, which is
18019         needed by the Calli opcode.
18020
18021         * reflection.h: track changes to SignatureHelper class.
18022
18023         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
18024
18025 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18026
18027         * appdomain.c: fixed loading assemblies from PrivateBinPath.
18028
18029 2003-02-03  Patrik Torstensson
18030         * appdomain.[c|h], domain.c : 
18031          - Added support for getting a domain via domain id
18032          - Support for setting and getting domain from System.AppDomain 
18033            (used in cross appdomain channel)
18034          - Added support for get/set for a MonoAppContext on a thread 
18035            (Context class in System.Runtime.Remoting.Contexts),
18036          - Removed hack in Get/SetData and ExecuteAssembly.
18037         
18038         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
18039         the managed world to get control when a proxy is created.
18040
18041         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
18042         
18043 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
18044
18045         * icall.c
18046         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18047         Populate the codebase field as well.
18048
18049 2003-02-02  Martin Baulig  <martin@ximian.com>
18050
18051         * debug-mono-symfile.c
18052         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
18053         (mono_debug_symfile_add_method): Allow interncalls.
18054
18055 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18056
18057         * icall.c: throw parse exception if strtod fails or the string is empty.
18058
18059 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
18060
18061         * marshal.c: handle object type separately from defined
18062         class types.
18063
18064 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
18065
18066         * marshal.c: handle NATIVE_LPSTR for strings when it's
18067         explicitly specified.
18068
18069 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
18070
18071         * reflection.c, reflection.h, icall.c: setup the reflection
18072         handle cache for ModuleBuilders and AssemblyBuilders.
18073
18074 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
18075
18076         * reflection.c (reflection_methodbuilder_to_mono_method): set
18077         pinvoke flag
18078
18079 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18080
18081         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
18082
18083 2003-01-29  Dick Porter  <dick@ximian.com>
18084
18085         * threads.c: No need for the fake_thread kludge now that Thread
18086         doesn't run a class constructor
18087         
18088 2003-01-29  Dick Porter  <dick@ximian.com>
18089
18090         * threads.c: Use g_direct_hash instead of the rather bogus
18091         g_int_hash
18092
18093 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
18094
18095         * marshal.c (mono_marshal_get_native_wrapper): add check for null
18096         (fix pinvoke12.exe)
18097         (mono_marshal_get_struct_to_ptr): generate valid IL code
18098         (mono_marshal_get_ptr_to_struct): generate valid IL code
18099         (*): correctly set sig->pinvoke, we need to memdup the signature
18100         to do that
18101
18102 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18103
18104         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18105         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18106
18107 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18108
18109         * profiler.c: provide more callers information.
18110
18111 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18112
18113         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18114
18115         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18116
18117         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18118
18119 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18120
18121         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18122         exception instead of going into an infinite loop on dates which it 
18123         can't yet handle.
18124
18125         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18126         out-of-range exception if needed.
18127
18128         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18129         an implementation for an interface method and to override an inherited
18130         method at the same time. 
18131         Imagine a scenario when a virtual method is used to override a
18132         virtual abstract method in a parent class, and this same method 
18133         provides an implementation for an method inherited from an interface. 
18134         In this case, the interface resolution code will set im->slot, which 
18135         means that the virtual method override pass will skip this method 
18136         which means a pointer to the abstract method inherited from the parent
18137         will remain in the vtable of this non-abstract class.
18138
18139         * class.c: (mono_class_setup_vtable): continue search for a real 
18140         method if only an abstract method is found.     
18141
18142 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18143
18144         * reflection.c: add size to encoding for ByValStr and ByValArray
18145         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18146
18147 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18148
18149         * class.c (mono_class_setup_vtable): pass the override info as an
18150         argument.
18151
18152         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18153         correctly.
18154         
18155         * reflection.c (ensure_runtime_vtable); add support for method 
18156         overrides.
18157         
18158 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18159
18160         * reflection.c (resolution_scope_from_image): Hack to work to work with
18161         dynamic assemblies.
18162
18163         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18164         added a 'force_ref' argument to force this function to allways return 
18165         a TypeRef. This is needed by mono_image_get_memberref_token ().
18166         
18167 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18168
18169         * reflection.c (mono_image_get_type_info): interfaces really don't have
18170         a parent.
18171
18172         * reflection.c (mono_image_basic_init): fill out missing fields of
18173         image structure.
18174
18175         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18176         dynamic assemblies. This is required so dynamic assemblies show up in
18177         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18178         Type::GetType() etc. This is consistent with MS behaviour.
18179
18180         * image.c image.h reflection.c: add newly created classes to the name 
18181         cache so mono_class_get () will find them.      
18182
18183 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18184
18185         First part of changes to get IKVM.NET running under mono.
18186         
18187         * appdomain.h, appdomain.c: added new function 
18188         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18189         This function will call AppDomain::DoTypeResolve to do the actual work.
18190
18191         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18192         moved existing code dealing with dynamic tokens to a new function 
18193         called mono_reflection_lookup_dynamic_token (). This function will 
18194         raise TypeResolve events when appropriate. Since reflection.c is not 
18195         part of libmetadata, a new hook function called 
18196         mono_lookup_dynamic_token() is added to class.c which will call this.
18197
18198         * assembly.h assembly.c: make the invoke_load_hook function public,
18199         so it can be called for dynamic assemblies.
18200
18201         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18202
18203         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18204         type isn't found.
18205
18206         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18207         MonoGHashTable, since it contains pointers to objects which the GC 
18208         needs to track.
18209
18210         * assembly.c (search_loaded): remove unused variable.
18211         
18212 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18213
18214         * object.c: fixed issue exposed by gcc-generated IL programs
18215         that use RVA data for pointers.
18216
18217 2003-01-25  Martin Baulig  <martin@ximian.com>
18218
18219         * threads.c (start_wrapper): Moved the initialization of
18220         `start_func' above the mono_new_thread_init() call to which we
18221         pass it as argument.
18222
18223 2003-01-24  Martin Baulig  <martin@ximian.com>
18224
18225         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18226         the MonoThread pointer.
18227
18228 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18229
18230         * icall.c: Rename `PowImpl' to Pow.
18231
18232 2003-01-23  Dick Porter  <dick@ximian.com>
18233
18234         * threads.c (start_wrapper): Create a Thread object if needed, so
18235         the Main() thread can do the class initialisation in a subthread
18236         that has been set up to allow managed code execution.
18237
18238         Pass the thread ID instead of the MonoThread pointer to the thread
18239         start and attach callbacks.  This change is required, because the
18240         jit thread start callback must be called _before_ the Thread
18241         object can be created.
18242         
18243         (mono_thread_init): Removed much object creation code that is no
18244         longer needed.  No managed code is called from here now.
18245
18246         * object.c (mono_runtime_exec_managed_code): Create a subthread
18247         for Main, and call back to the runtime to use it.
18248         Set the exit code when Main exits.
18249
18250         * gc.c: Make sure domain finalisation happens in a subthread.
18251         Re-enable threaded GC, fixing bug 31333 (again).
18252
18253         * environment.c: System.Environment internall calls (so far just
18254         ExitCode is here, the others are still in icall.c)
18255
18256         * appdomain.c (mono_runtime_cleanup): All threads running managed
18257         code should have finished before mono_runtime_cleanup() is
18258         reached, so no need to clean up threads.
18259
18260 2003-01-22  Martin Baulig  <martin@ximian.com>
18261
18262         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18263         `gpointer func' arguments.      
18264         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18265         but added `MonoThread *thread' argument.
18266         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18267
18268         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18269         and pass it to the mono_thread_start_cb callback.
18270         (mono_install_thread_callbacks): New public function to install a
18271         set of callbacks which are set by the debugger.
18272         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18273
18274 2003-01-22  Martin Baulig  <martin@ximian.com>
18275
18276         * Makefile.am: Install debug-mono-symfile.h.
18277
18278 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18279
18280         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18281
18282 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18283
18284         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18285         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18286         (mono_array_class_get): correctly set access levels of arrays
18287
18288 2003-01-20      Patrik Torstensson
18289         * image.h (MonoAssemblyName): changed major, minor, build, revision
18290         from signed to unsigned.
18291
18292 2003-01-20  sean kasun <skasun@azstarnet.com>
18293
18294         * reflection.c (load_cattr_value): Now this handles
18295         MONO_TYPE_SZARRAY.  Fixes bug #35629
18296
18297 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18298
18299         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18300         integer value
18301
18302 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18303
18304         * decimal.c: fixed bug #26056.
18305
18306 2003-01-17  Martin Baulig  <martin@ximian.com>
18307
18308         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18309
18310 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18311
18312         * exception.[ch]:
18313         (mono_get_exception_type_initialization): new function.
18314
18315         * object.c: throw a TypeInitializationException when an exception is
18316         thrown invoking the class constructor.
18317
18318 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * reflection.c: fixed attribute reading.
18321
18322 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18323
18324         * icall.c:
18325         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18326         provided, look for the type in the calling assembly and then in
18327         mscorlib; if the assembly name is provided, only try that one.
18328
18329 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18330
18331         * object.c: register the vtable before there is a chance it's
18332         queried again recursively.
18333
18334 2003-01-13  Duncan Mak  <duncan@ximian.com>
18335
18336         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18337         gc-internal.h. 
18338         
18339 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18340
18341         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18342
18343 2003-01-11  Martin Baulig  <martin@ximian.com>
18344
18345         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18346         this to 20 for the release.
18347
18348 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18349
18350         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18351
18352         * loader.c (mono_method_get_marshal_info): bug fix
18353
18354         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18355         structures with explicit layout
18356
18357 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18358
18359         * profiler.c: made the output more readable (and sorted). 
18360         Added caller information for the allocation profiler.
18361
18362 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18363
18364         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18365
18366 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18367
18368         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18369         to get value types.
18370         
18371 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18372
18373         * object.c, profiler.h, profiler.c, profiler-private.h:
18374         Added object allocation profiler.
18375
18376 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18377
18378         * reflection.h, reflection.c: handle global methods.
18379         Compress blob entries.
18380
18381 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18382
18383         * marshal.c: fix compilation.
18384
18385 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18386
18387         * loader.c (mono_method_get_marshal_info): impl.
18388
18389         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18390
18391 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18392
18393         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18394         for reference types.
18395
18396 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18397
18398         * loader.c: fixed off by one error in loaded parameter names.
18399
18400 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18401
18402         * marshal.c (mono_marshal_get_icall_wrapper): like
18403         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18404         instead of a MonoMethod.
18405
18406 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18407
18408         * decimal.c: fixed bug #36537.
18409
18410 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18411
18412         * marshal.c: throw a missing method exception if a
18413         P/Invoke method is not found.
18414
18415 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18416
18417         * icall.c: allow a null this for constructors.
18418
18419 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18420
18421         * icall.c: raise the proper exceptions if the arguments to the
18422         internal Invoke are incorrect.
18423
18424 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18425
18426         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18427
18428 2003-01-03  Martin Baulig  <martin@ximian.com>
18429
18430         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18431
18432 2002-12-31  Martin Baulig  <martin@ximian.com>
18433
18434         * debug-mono-symfile.c: Completely rewrote the type section.
18435         Instead of using individual malloc()ed fields, we use one big
18436         continuous memory area and offsets into this area.
18437         See the comments in the source code for details.
18438
18439 2002-12-30  Martin Baulig  <martin@ximian.com>
18440
18441         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18442
18443 2002-12-30  Martin Baulig  <martin@ximian.com>
18444
18445         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18446         line number table in this data blob instead of using an external
18447         pointer.
18448
18449 2002-12-28  Martin Baulig  <martin@ximian.com>
18450
18451         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18452
18453 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18454
18455         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18456         as a boxed return type.
18457
18458 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18459
18460         * appdomain.c
18461         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18462         g_build_filename to properly get separators on the filename created.
18463
18464         * object.h: Small change, introduce MonoMarshalByRefObject to
18465         track the layout of that structure in the C# universe as we make
18466         changes there.
18467
18468 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18469
18470         * object.c: removed assert to allow static fields on interfaces.
18471         * loader.c: a TypeSpec may be used for any type, not just arrays.
18472
18473 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18474
18475         * class.c, class.h: added mono_class_array_element_size ().
18476         Ignore static methods in interfaces.
18477
18478 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18479
18480         * threads.c: fixed the build under cygwin.
18481
18482 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18483
18484         * reflection.c: handle nullref constants. Allocate keys for
18485         reflection handles with the GC.
18486
18487 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18488
18489         * threads.c, threads.h: added mono_thread_get_abort_signal()
18490         to get a suitable signal for thread abort.
18491
18492 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18493
18494         * metadata.c: fix handling of ExportedType table.
18495
18496 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18497
18498         * icall.c: added WriteWindowsDebugString internal call.
18499
18500 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18501
18502         * reflection.h: added fields to match C# implementation.
18503
18504 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18505
18506         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18507
18508 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18509
18510         * gc.h, gc-internal.h: Rename header for GC internal calls to
18511         gc-internal.h from gc.h as to not clash with Boehm GC having its
18512         header installed as <gc.h> in outside include paths.
18513         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18514         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18515
18516 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18517
18518         * icall.c: assign minor, build and revision in FillName.
18519
18520 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18521
18522         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18523         Added support for running code generated by Reflection.Emit.
18524
18525 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18526
18527         * appdomain.c: check for NULL argument in LoadFrom.
18528
18529 2002-12-10  Dick Porter  <dick@ximian.com>
18530
18531         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18532
18533 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18534
18535         * appdomain.c: fix buglet when building exe file name.  Handle full
18536         assembly name (needed after latest changes to AssemblyName).
18537         * image.c:
18538         (mono_image_close): free some hashtables.
18539
18540 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18541
18542         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18543         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18544         on some systems (redhat 7.3) 
18545
18546 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18547
18548         * threads.c: delete the critical section of a sync block,
18549         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18550
18551 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18552
18553         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18554
18555 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18556
18557         * appdomain.[ch]: handle the assembly preload event to try loading the
18558         assemblies using the paths we have in the current domain.
18559
18560         * assembly.[ch]: created an assembly preload hook that is called to try
18561         loading the assembly by other means that the ones provided here.
18562
18563         * domain.c: initialize the domain search path.
18564
18565         From now on, assemblies (TODO: except corlib and System) are loaded
18566         according to these rules when using mono_assembly_load ():
18567
18568                 1. It tries to load the assembly from the ApplicationBase
18569                 of the current domain appending .dll and .exe (TODO: have to
18570                 try loading from name/name.dll and name/name.exe).
18571
18572                 2. It tries the search path specified in PrivateBinPath for the
18573                 current domain (if any).
18574
18575                 3. Previous behavior.
18576
18577 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18578
18579         * icall.c: implemented GetInterfaceMap() related icall.
18580         * domain.c, loader.h: load MethodInfo in mono_defaults.
18581
18582 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18583
18584         * gc.c: disable the finalizer thread for now, untill all the issues
18585         with it are resolved.
18586
18587 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18588
18589         * string-icalls.c: handle embedded nulls in string ctor when the
18590         length is specified.
18591
18592 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18593
18594         * class.c: look for explicit interface implementation in parent
18595         classes, too.
18596
18597 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18598
18599         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18600
18601 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18602
18603         * gc.c: protect handles with a critical section.
18604
18605 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18606
18607         * icall.c:
18608         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18609         parameters. If no assembly specified, try getting the type from all
18610         the assemblies in the current domain, else, load the assembly and get
18611         the type from it.
18612
18613 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18614
18615         * marshal.c: applied patch from Aleksey Demakov that fixes
18616         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18617
18618 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18619
18620         * icall.c: fixed get_location.
18621
18622 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18623
18624         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18625         declarations to make it work with older gcc. 
18626
18627         * loader.c (mono_get_method): set signature->pinvoke for native calls
18628
18629 2002-11-20  Dick Porter  <dick@ximian.com>
18630
18631         * threads.c (mono_thread_init): Set the main thread's handle
18632
18633 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18634
18635         * gc.c: allow compilation without GC support. Changed to match the
18636         mono coding style.
18637
18638 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18639
18640         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18641
18642 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18643
18644         * reflection.c: set a public key token on the core assemblies.
18645
18646 2002-11-18  Dick Porter  <dick@ximian.com>
18647
18648         * threads.c: Split out some thread initialisation so that other
18649         files can set the start callback function.
18650
18651         * gc.c: Run finalisers in a separate thread, to avoid stack
18652         overflow.  Fixes bug 31333.
18653
18654         * appdomain.c: Set up GC finalisation thread.
18655
18656         * reflection.c: 
18657         * object.c: 
18658         * domain.c: Use gc.h macros for GC_malloc
18659         
18660 2002-11-15  Dick Porter  <dick@ximian.com>
18661
18662         * threadpool.c: 
18663         * threads.c:
18664         * appdomain.c: Removed mono_runtime_init_with_attach(),
18665         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18666         merging the extra parameter with the existing function.  Removed
18667         unneeded code in mono_thread_attach().
18668
18669 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18670
18671         * image.c (mono_image_loaded_by_guid): a method to get loaded
18672         images by guid. 
18673         (load_metadata_ptrs): we store the guid as string.
18674
18675 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18676
18677         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18678
18679         * metadata.c (mono_guid_to_string): imported method form Zoltan
18680         Varga (slightly modified)
18681
18682         * assembly.c (mono_assembly_open): load precompiled code
18683
18684         * loader.h (MonoMethod): we store the method token for use in the
18685         aot compiler. 
18686
18687 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18688
18689         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18690         the hook function called when an assembly is loaded.
18691         
18692         * domain.c: Modified file.
18693         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18694
18695         Fixes bug #33196.
18696
18697 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18698
18699         * reflection.c: Map PEFileKind to the value expected by the WinNT
18700         image loader. 
18701
18702 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18703
18704         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18705         Read until the buffer is filled completely.
18706
18707 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18708
18709         * icall.c: implemented MonoType.InternalGetEvent ().
18710
18711 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18712
18713         * appdomain.c: implemented InitAppDomainSetup. Delayed
18714         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18715         the entry_assembly.
18716
18717         * assembly.c: base_dir is now an absolute path ending with
18718         G_DIR_SEPARATOR.
18719
18720         * icall.c: modified get_location according to the above changes.
18721
18722         * object.c: init AppDomain.SetupInformation for the default domain after
18723         we have the entry assembly.
18724
18725         * domain.c: when unloading a domain, setup = NULL.
18726
18727 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18728
18729         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18730
18731 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18732
18733         * object.h, object.c: introduced mono_object_get_virtual_method ()
18734         to lookup the method invoked on an object when a callvirt is done on
18735         a method.
18736         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18737
18738 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18739
18740         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18741         current domain when loaded an assembly and failed to load it.
18742
18743         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18744
18745 2002-10-31  Dick Porter  <dick@ximian.com>
18746
18747         * icall.c: 
18748         * file-io.h: 
18749         * file-io.c: Return the error status in a parameter, as the
18750         GetLastError() value has long since been blown away if we try and
18751         look it up in a subsequent internal call invocation.  Delete the
18752         GetLastError() internal call, because it's useless.
18753
18754 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18755
18756         * class.[ch]: added cast_class to fix bug 29517
18757
18758 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18759
18760         * marshal.c: create valid IL code in the filter clause:
18761         the new JIT is less forgiving:-)
18762
18763 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18764
18765         * icall.c: removed get_property internal call.
18766
18767 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18768
18769         * appdomain.h domain.c: Added an ID to appdomains.
18770         
18771         * threads.c threads.h icall.c: Implement icall
18772         Thread:GetDomainID(), and remove unused icall 
18773         CurrentThreadDomain_internal.
18774
18775 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18776
18777         * icall.c: Don't recurse through the base types in GetConstructor.
18778         Fixes bug #32063. 
18779
18780 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18781
18782         * mempool.h, mempool.c: added mono_mempool_empty() and
18783         mono_mempool_stats().
18784
18785 2002-10-23  Dick Porter  <dick@ximian.com>
18786
18787         * file-io.c: 
18788         * file-io.h: 
18789         * icall.c: Added MonoIO.GetFileType internal call
18790
18791 2002-10-17  Dick Porter  <dick@ximian.com>
18792
18793         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18794         delegate semaphore before waiting for all threads to finish,
18795         because new threads can also call async delegates.  Fixes bug
18796         32004.
18797
18798         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18799         of 3 seconds, in case another async job is queued.  (This part is
18800         needed because the bug fix reintroduced the 3s exit lag.)  This
18801         makes the mono_runtime_shutdown flag superfluous.
18802
18803 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18804
18805         * reflection.c: include ehader size in method section headers.
18806         Really check for suplicated modules entries.
18807
18808 2002-10-17  Martin Baulig  <martin@gnome.org>
18809
18810         * debug-mono-symfile.c: Added back support for locals.
18811
18812 2002-10-14  Martin Baulig  <martin@gnome.org>
18813
18814         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18815         MONO_TYPE_VOID.
18816
18817 2002-10-14  Martin Baulig  <martin@gnome.org>
18818
18819         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18820         mono_class_get() instead of looking in the class cache. 
18821
18822 2002-10-13  Martin Baulig  <martin@gnome.org>
18823
18824         * debug-mono-symfile.c: Set version number to 28, include the
18825         signature in method names.
18826
18827 2002-10-13  Martin Baulig  <martin@gnome.org>
18828
18829         * debug-mono-symfile.h: Set version number to 27.
18830
18831 2002-10-11  Martin Baulig  <martin@gnome.org>
18832
18833         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18834
18835 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18836
18837         * metadata.c, metadata.h: added helper function to allocate signatures.
18838
18839 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18840
18841         * icall.c: added internal call to get the location of machine.config.
18842
18843 2002-10-08  Martin Baulig  <martin@gnome.org>
18844
18845         * debug-mono-symfile.c: Ignore classes with a pending init for the
18846         moment.
18847
18848 2002-10-03  Dick Porter  <dick@ximian.com>
18849
18850         * threads.c: Freebsd pthread_t is a pointer
18851
18852 2002-10-03  Dick Porter  <dick@ximian.com>
18853
18854         * socket-io.c: Implemented GetHostName_internal
18855
18856 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18857
18858         * mono-config.c:
18859         (mono_config_parse_file): don't leak the text.
18860
18861 2002-10-02  Martin Baulig  <martin@gnome.org>
18862
18863         * debug-mono-symfile.c: Added support for methods.
18864
18865 2002-10-01  Martin Baulig  <martin@gnome.org>
18866
18867         * debug-mono-symfile.c: Don't emit methods and line numbers for
18868         the dynamic symbol file, just write the type table.  We can easily
18869         have an external helper program which creates a symbol file for an
18870         IL file.        
18871
18872 2002-10-01  Dick Porter  <dick@ximian.com>
18873
18874         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18875         Only add the handle to the cleanup array when we're about to
18876         launch the thread.  Bug 31425 deadlocked when the test was run on
18877         mono under w32.
18878
18879 2002-10-01  Martin Baulig  <martin@gnome.org>
18880
18881         * debug-mono-symfile.c: Added support for properties.
18882
18883 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18884
18885         * reflection.c: unaligned store fix from Mark Crichton
18886         <crichton@gimp.org>.
18887
18888 2002-09-27  Martin Baulig  <martin@gnome.org>
18889
18890         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18891         New interncall.
18892
18893 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18894
18895         * assembly.h, assembly.c: use a sane API to hook into the assembly
18896         loading process instead of a useless special-purpouse hack
18897         (ngen needs a hook, too, for example).
18898
18899 2002-09-27  Dick Porter  <dick@ximian.com>
18900
18901         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18902         io-layer can set up some process handle info.  Not needed on w32,
18903         but doesn't hurt either.
18904
18905         * process.c: Pass the program name in the second parameter to
18906         CreateProcess, so the path is searched.  Include the working
18907         directory. Implemented process name, process enumeration, and some
18908         process detail internal calls.
18909         
18910         * icall.c: Added internal calls for process lookup, and some
18911         process details
18912
18913 2002-09-26  Martin Baulig  <martin@gnome.org>
18914
18915         * assembly.c (mono_install_open_assembly_hook): New global
18916         function to install a function to be invoked each time a new
18917         assembly is loaded.
18918         (mono_assembly_open): Run this callback function if set.
18919
18920         * debug-mono-symfile.c: Put back line numbers for the dynamic
18921         symbol file and also record the .il file as source file.  This
18922         allows us to install the temporary symbol file as `file.dbg' just
18923         like a compiler-generated one.
18924
18925 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18926
18927         * Corrected typo in gc.c (BOHEM vs BOEHM).
18928
18929 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18930
18931         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18932         GetProperties. Also avoid calling g_slist_length in GetProperties and
18933         GetMethods.
18934
18935 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18936
18937         * reflection.c: avoid unaligned stores (bug spotted by
18938         Mark Crichton  <crichton@gimp.org>).
18939
18940 2002-09-25  Martin Baulig  <martin@gnome.org>
18941
18942         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18943         instead of guint64 for addresses and added prologue/epilogue info.
18944
18945 2002-09-25  Martin Baulig  <martin@gnome.org>
18946
18947         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18948         store line number info.  For the dynamic symbol file, we only need
18949         to provide the JIT generated dynamic line number info for the dynamic
18950         symbol file.
18951
18952 2002-09-25  Martin Baulig  <martin@gnome.org>
18953
18954         * debug-mono-symfile.h: Incremented version number.
18955
18956 2002-09-24  Martin Baulig  <martin@gnome.org>
18957
18958         * class.c (mono_debugger_class_init_func): New global function
18959         pointer variable.
18960         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18961         call it.
18962
18963         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18964         function.  This is called via the mono_debugger_class_init_func
18965         hook to add all types to the dynamic type table.
18966         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18967         from its metadata token.
18968
18969         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18970         New interncall for the debugger.
18971
18972 2002-09-24  Nick Drochak <ndrochak@gol.com>
18973
18974         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18975         before using it in case it is null.
18976         
18977 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18978
18979         * metadata.c: allow custom modifiers in local var signatures
18980         (bug spotted by Zoltan Varga).
18981
18982 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18983
18984         * class.c: deal with the <Module> class that may have a NULL vtable.
18985         Eliminate warnings.
18986
18987 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18988
18989         * image.c, image.h: more strong name helpers.
18990         * monosn.c: more work: convert pem keys to cryptoapi format.
18991
18992 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18993
18994         * string-icalls.c: speedup IndexOf.
18995
18996 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18997
18998         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18999
19000 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * icall.c: cleanup: use mono_object_domain ().
19003
19004 2002-09-23  Martin Baulig  <martin@gnome.org>
19005
19006         * debug-mono-symfile.c: Improved type support.
19007
19008 2002-09-22  Martin Baulig  <martin@gnome.org>
19009
19010         * debug-mono-symfile.c: Added support for reference types and strings.
19011
19012 2002-09-22  Martin Baulig  <martin@gnome.org>
19013
19014         * debug-mono-symfile.c: Started to work on the type table.
19015
19016 2002-09-21  Martin Baulig  <martin@gnome.org>
19017
19018         * debug-mono-symfile.c: Largely reworked the symbol table format.
19019         The symbol table is now incrementally updated each time a new
19020         method is added.  We're now also using our own magic and version
19021         so that you don't need to recompile all your classes if the
19022         dynamic table changes.
19023         (mono_debug_update_mono_symbol_file): Removed.
19024         (mono_debug_symfile_add_method): New function to add a method.
19025
19026 2002-09-21  Martin Baulig  <martin@gnome.org>
19027
19028         * icall.c
19029         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
19030         New interncall.
19031
19032         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
19033         New interncall to get a method from its metadata token.
19034
19035 2002-09-21  Martin Baulig  <martin@gnome.org>
19036
19037         * debug-mono-symfile.c: Create type table.
19038
19039 2002-09-20  Martin Baulig  <martin@gnome.org>
19040
19041         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
19042
19043 2002-09-20  Martin Baulig  <martin@gnome.org>
19044
19045         * debug-mono-symfile.c: Provide information about params and locals.
19046
19047 2002-09-20  Martin Baulig  <martin@gnome.org>
19048
19049         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
19050         New interncall.
19051
19052         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
19053         interncall to get a method from its metadata token.
19054
19055 2002-09-20  Martin Baulig  <martin@gnome.org>
19056
19057         * debug-mono-symfile.c: Added a few checks for method->header
19058         being non-NULL.  This should never happen, but for the moment
19059         let's use a g_warning() rather than a g_assert().
19060
19061 2002-09-19  Mark Crichton  <crichton@gimp.org>
19062
19063         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
19064         even if support for it isn't present.  Added an #ifdef to fix this.
19065
19066         * socket-io.c: Added checks back for Solaris support.
19067
19068 2002-09-19  Martin Baulig  <martin@gnome.org>
19069
19070         * debug-mono-symfile.c (read_string, write_string): Reflect latest
19071         changes in the symbol file format.
19072
19073 2002-09-18  Martin Baulig  <martin@gnome.org>
19074
19075         * debug-mono-symfile.c: Set version number to 21.
19076
19077 2002-09-18  Dick Porter  <dick@ximian.com>
19078
19079         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
19080         on netbsd.  Fixes bug 30051.
19081
19082 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19083
19084         * reflection.c:
19085         (set_version_from_string): little fix.
19086
19087 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19088
19089         * monosn.c, Makefile.am: added strong name utility.
19090         * reflection.h, reflection.c: implemented delayed signing,
19091         locale, version and hash id assembly attributes.
19092
19093 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19094
19095         * loader.c, metadata.c: load param attributes in signatures.
19096
19097 2002-09-16  Martin Baulig  <martin@gnome.org>
19098
19099         * debug-mono-symfile.c: Added string table with all method names.
19100
19101 2002-09-14  Martin Baulig  <martin@gnome.org>
19102
19103         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19104         fast method lookup.
19105
19106 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19107
19108         * reflection.c: record the public key token of referenced assemblies.
19109
19110 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * image.c, image.h: added functions to get the strong name and the
19113         public key of an assembly.
19114         * pedump.c: use them.
19115
19116 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19117
19118         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19119
19120 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19121
19122         * marshal.c (mono_marshal_get_managed_wrapper): Added
19123         MONO_TYPE_BOOLEAN 
19124
19125 2002-09-11  Martin Baulig  <martin@gnome.org>
19126
19127         * gc.c: Call GC_unregister_disappearing_link() on all links when
19128         finalizing them, this is necessary to aviod a crash in boehm's
19129         finalize handler.
19130
19131 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19132
19133         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19134         nick@chemlab.org.
19135
19136 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19137
19138         * icall.c: implemented MonoType::Module.
19139         * reflection.c, reflection.h: mono_module_get_object () from
19140         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19141
19142 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19143
19144         * icall.c: ignore overridden methods in GetMethods ().
19145         Fix for FieldInfo::SetValue().
19146         * object.c: handle float/double in runtime invoke.
19147
19148 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19149
19150         * object.c: allow a constructor to be called again on an object.
19151
19152 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19153
19154         * class.h, class.c: move field layout code to it's own function and
19155         export it. Get an interface id earlier. Move fields in MonoClass
19156         so they are more cache friendly and align the bitfields.
19157         * loader.c: temporary handle get_param_names() for a runtime method.
19158         * reflection.c, reflection.h: more code to handle runtime creation of
19159         types.
19160
19161 2002-09-09  Martin Baulig  <martin@gnome.org>
19162
19163         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19164         signature with the pinvoke field being set for the actual call.
19165
19166 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19167
19168         * icall.c: removed some unused icalls. Start of map of glib charsets
19169         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19170
19171 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19172
19173         * debug-helpers.c: break infinite loop (found and fixed by
19174         Holger Arnold <harnold@gmx.de>).
19175
19176 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19177
19178         * icall.c: target may be null in create_delegate.
19179
19180 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19181
19182         * marshal.c: handle a boolean return type.
19183
19184 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19185
19186         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19187
19188 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19189
19190         * gc.c: fix weakreferences.
19191
19192 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19193
19194         * icall.c: added icall to get default codepage.
19195
19196 2002-09-03  Dick Porter  <dick@ximian.com>
19197
19198         * threads.h: 
19199         * threads.c: Use MonoThread instead of MonoObject where
19200         apropriate.
19201
19202         Store running thread objects in a hash table, so that we have all
19203         the info to hand when waiting for them to finish
19204         (means we don't need OpenThread() any more, so mingw builds should
19205         be fully functional again.)
19206
19207         * verify.c:
19208         * object.h: Added thread ID to MonoThread
19209
19210 2002-09-03  Martin Baulig  <martin@gnome.org>
19211
19212         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19213
19214 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19215
19216         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19217
19218 2002-09-03  Martin Baulig  <martin@gnome.org>
19219
19220         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19221         argument to store the end address of the disassembled instruction.
19222
19223         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19224         here from debug-symfile.h.
19225         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19226         JIT into this struct.
19227         (MonoSymbolFile): Added `char *image_file' field.
19228         (MonoDebugGetMethodFunc): Removed.
19229         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19230         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19231         (mono_debug_find_method): New method.
19232
19233         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19234         create a full symbol file.
19235         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19236         and static symbol files.
19237         (mono_debug_find_method): The symbol file keeps an internal method hash,
19238         call this to get a MonoDebugMethodInfo from a MonoMethod.
19239
19240         * debug-symfile.[ch]: Removed.
19241
19242 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19243
19244         * image.c (do_mono_image_open): Remove linker version check.
19245
19246 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19247
19248         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19249         wrappers for instance methods.
19250         
19251 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19252
19253         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19254
19255 2002-08-28  Dick Porter  <dick@ximian.com>
19256
19257         * Makefile.am: Export HOST_CC for w32 builds
19258
19259 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19260
19261         * file-io.c process.c: MonoString are null terminated, no
19262         need for mono_string_to_utf16() anymore.
19263
19264 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19265
19266         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19267
19268 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19269
19270         * icall.c, reflection.h: speedup System.MonoType.
19271
19272 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19273
19274         * reflection.c: allow null as the value of a string argument in
19275         custom attributes constructors.
19276
19277 2002-08-27  Martin Baulig  <martin@gnome.org>
19278
19279         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19280         `trampoline_address' field.
19281
19282 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19283
19284         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19285         check (fixes bug #29486) 
19286
19287 2002-08-27  Martin Baulig  <martin@gnome.org>
19288
19289         * debug-mono-symfile.c: Changed the file format in a way that allows us
19290         open it read-only and to use a specially malloced area for all the
19291         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19292         debugging IL code and there is no MCS generated symbol file for it.
19293
19294 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19295
19296         * object.c: added a define for a good string and array
19297         creation speedup (not enabled by default because we need to deal with
19298         the synch stuff).
19299
19300 2002-08-26  Martin Baulig  <martin@gnome.org>
19301
19302         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19303         function to create a dynamic symbol file.  This is used by the
19304         debugger to create a symbol file for IL code on-the-fly.
19305
19306 2002-08-26  Martin Baulig  <martin@gnome.org>
19307
19308         * loader.c (mono_lookup_pinvoke_call): Include the error message
19309         from g_module_error() in the error message.
19310
19311 2002-08-24  Martin Baulig  <martin@gnome.org>
19312
19313         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19314         function to update the symbol file.  The symbol file is mmap()ed
19315         writable, but private.  This allows us to install the symbol file
19316         together with the assembly.
19317
19318 2002-08-24  Martin Baulig  <martin@gnome.org>
19319
19320         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19321         but they can read the new symbol file format which mcs is now creating.
19322
19323         * debug-symfile.c (mono_debug_find_source_location): Moved to
19324         debug-mono-symfile.c; this is now operating on the new symbol file.
19325
19326 2002-08-23  Martin Baulig  <martin@gnome.org>
19327
19328         * debug-helpers.c (mono_method_desc_from_method): New function to get
19329         a MonoMethodDesc from a MonoMethod.
19330
19331 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19332
19333         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19334         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19335
19336 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19337
19338         * string-icalls.[ch]: make helper methods static.
19339
19340 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19341
19342         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19343         types to it and to SetValueInternal.
19344
19345         * object.c: Moved handle_enum label to its proper place. This was the
19346         f... bug! ;-)
19347
19348         This time i compiled mcs and gtk-sharp and they both work.
19349
19350 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19351
19352         * icall.c: reverted partially my previous patch until 
19353         object.c:set_value handles enums correcly.
19354
19355 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19356
19357         * icall.c:
19358         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19359         (ves_icall_System_Environment_get_MachineName): removed warning when
19360         compiling under cygwin.
19361
19362 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19363
19364         * object.c: fixed field_get_value() for reference types.
19365
19366 2002-08-22  Dick Porter  <dick@ximian.com>
19367
19368         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19369         Don't free a buffer while it's still needed.  Patch from Jonathan
19370         Liger <Jonathan.liger@wanadoo.fr>
19371
19372 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19373
19374         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19375         internal call.
19376
19377 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19378
19379         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19380         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19381
19382         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19383         we call unmanaged code which throws exceptions.
19384
19385 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19386
19387         * appdomain.h: added per-domain entry_assembly.
19388         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19389         arguments.
19390         * icall.c: Assembly::GetEntryAssembly icall.
19391         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19392         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19393
19394 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19395
19396         * appdomain.h, gc.c: added mono_domain_finalize ().
19397
19398 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19399
19400         * object.c:
19401         (mono_print_unhandled_exception): changed g_warning by g_printerr
19402         because g_log has a 1024 characters limit (yeah, i got a big stack
19403         trace). Don't print exception name, that should be in ToString 
19404         returned string.
19405
19406 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19407
19408         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19409         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19410
19411 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19412
19413         * object.c:
19414         (mono_print_unhandled_exception): after previous commit, i realized
19415         that MS calls ToString on the exception. I changed this function to
19416         do that. This way we get stack_trace for free.
19417
19418 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19419
19420         * object.c:
19421         (mono_print_unhandled_exception): invoke Message property instead of
19422         getting 'message' field from Exception. Don't allocate memory for
19423         'trace' and 'message' if not needed.
19424
19425 2002-08-18  Dick Porter  <dick@ximian.com>
19426
19427         * unicode.c: Fix asserts to match Encoder.cs checks
19428
19429 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19430
19431         * marshal.c: fix unaligned store issue and a few wrong
19432         opcode argument types.
19433
19434 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19435
19436         * icall.c: added GetUninitializedObjectInternal internal call.
19437
19438 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19439
19440         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19441         to the right domain.
19442
19443 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19444
19445         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19446
19447         * class.c (class_compute_field_layout): set blittable to false for Strings
19448
19449         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19450
19451 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19452
19453         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19454         first chunk of code to create types at runtime. Code to
19455         handle ReflectedType/DeclaringType. Make reflection handles
19456         domain specific.
19457
19458 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19459
19460         * class.c: set correct name in arrays.
19461
19462 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19463
19464         * appdomain.c (mono_domain_transfer_object): make it work with
19465         valuetypes. bug fixes.
19466
19467 2002-08-12  Dick Porter  <dick@ximian.com>
19468
19469         * object.h: Rename some parameters to avoid c++ keywords (Patch
19470         from Joseph Wenninger <kde@jowenn.at>)
19471
19472 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19473
19474         * icall.c: added icall to implement Assembly.GetFile*.
19475
19476 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19477
19478         * reflection.h, reflection.c: code to embed managed resources.
19479
19480 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19481
19482         * class.c: move all the type size stuff into
19483         class_compute_field_layout().
19484
19485 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * class.c: ensure enums have always the correct instance size.
19488         * unicode.c: remove wrong assert.
19489
19490 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19491
19492         * assembly.c: fix mem corruption issue.
19493         * image.h, image.c: added mono_image_get_resource () to access
19494         managed resources.
19495         * icall.c: implemented Assembly.EntryPoint property and some
19496         Managed Resources related internalcalls.
19497
19498
19499 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * image.c, image.h: impemented mono_image_get_entry_point ().
19502         * appdomain.c: use mono_image_get_entry_point.
19503
19504 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19505
19506         * reflection.c: support the object type argument when loading
19507         custom attributes.
19508
19509 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19510
19511         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19512         String as return type.
19513
19514 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19515
19516         * reflection.c: fix encoding of named args for custom attrs to match
19517         the ms implementation. Read them back when instantiating custom
19518         attributes.
19519
19520 2002-08-02  Radek Doulik  <rodo@ximian.com>
19521
19522         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19523         by Dietmar as quick fix
19524         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19525         16 as stack size, used on more places as quick fix before Dietmar
19526         will fix it properly
19527
19528 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19529
19530         * object.h, object.c: added accessors for fields and properties.
19531
19532 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19533
19534         * class.c, class.h: made mono_class_get_field_from_name ()
19535         loop on parent types.
19536         Added mono_class_get_property_from_name ().
19537
19538 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19539
19540         * class.c, class.h: move the code to setup the type vtable in its own
19541         function so that it can be reused also for types created at runtime.
19542         Eliminate the "class" identifier from the header file.
19543         * reflection.c: setup the vtable for enums so that we can create
19544         objects for use in SetConstant ().
19545
19546 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19547
19548         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19549         instead of the delegate itself as this pointer (bug #28383)
19550
19551 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19552
19553         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19554         conversions.
19555
19556 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19557
19558         * loader.c: don't set the pinvoke bit on icalls.
19559
19560 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19561
19562         * debug-helpers.c (mono_method_full_name): only print a number to
19563         indicate wrapper type (so that the output is more readable in traces).
19564
19565 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19566
19567         * class.c (mono_class_init): include method override patch from Paolo
19568
19569 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19570
19571         * icall.c: fixed GetTypeCode().
19572
19573 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19574
19575         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19576         use real delegate invoke function to make it work with multicast
19577         delegates (fix bug# 28291).
19578
19579 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19580
19581         * object.c: load constant strings.
19582
19583 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19584
19585         * reflection.c: no magic numbers.
19586         * tabledefs.h: security action enum.
19587
19588 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19589
19590         * assembly.c: fix possible memory corruption.
19591
19592 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19593
19594         * reflection.h, reflection.c: added support for linking resources.
19595         * verify.c: check we have an updated corlib.
19596
19597 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19598
19599         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19600         string arrays.
19601         (mono_marshal_string_array): null terminate unmanaged string arrays.
19602         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19603
19604 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19605
19606         * icall.c: Type.GetType () can now return also types from the
19607         calling assembly.
19608
19609 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19610
19611         * loader.h, loader.c: stack walking support.
19612         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19613         GetCallingAssembly.
19614
19615 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19616
19617         * marshal.c: added optimisations for blittable types 
19618
19619         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19620         (mono_class_setup_mono_type): set blittable attribute for single
19621         and double.
19622
19623         * marshal.c (mono_string_utf8_to_builder): impl.
19624         (mono_string_builder_to_utf8): impl.
19625         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19626
19627 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19628
19629         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19630         (mono_marshal_get_managed_wrapper): impl. byref types
19631
19632 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19633
19634         * icall.c:
19635         (search_method): don't display debug message. 
19636
19637 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19638
19639         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19640
19641 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19642
19643         * appdomain.c: set the missing filename when throwing exception.
19644
19645 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19646
19647         * metadata.c (mono_type_size): code cleanup
19648         (mono_type_stack_size): removed some test code
19649
19650 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19651
19652         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19653         mono_get_exception_file_not_found now.
19654
19655         * exception.c (mono_exception_from_name_two_strings): New version
19656         that will call a constructor with two string arguments. 
19657         (mono_get_exception_file_not_found): New helper routine, used to
19658         report file-not-found errors.
19659
19660 2002-07-20  Dick Porter  <dick@ximian.com>
19661
19662         * process.h:
19663         * process.c: Pass file handles to CreateProcess
19664         
19665         * icall.c:
19666         * file-io.h:
19667         * file-io.c: Implemented CreatePipe
19668
19669 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19670
19671         * metadata.c (mono_get_param_info): set alignment for value types
19672
19673 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19674
19675         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19676         Constify mono_domain_assembly_open().
19677         * loader.c: handle null namespace in icalls.
19678
19679 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19680
19681         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19682         (emit_str_to_ptr_conv): marshal object as structs
19683
19684         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19685
19686         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19687
19688 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19689
19690         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19691         (mono_marshal_get_native_wrapper): we an now return value types
19692
19693 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19694
19695         * verify.c: more checks implemented.
19696
19697 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19698
19699         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19700         (fix bug #27695)
19701         (mono_marshal_get_native_wrapper): allow byref arguments
19702         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19703         impl. PtrToStringXXX methods
19704         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19705         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19706         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19707         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19708         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19709
19710 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19711
19712         * reflection.c: fix buglet in parsing an assembly name.
19713
19714 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19715
19716         * marshal.c (emit_ptr_to_str_conv): first impl.
19717
19718 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19719
19720         * object.c, class.h: cache the vtable in the class as suggested by
19721         vargaz@freemail.hu (Zoltan Varga).
19722
19723 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19724
19725         * class.h, loader.c: added mono_field_from_token().
19726         * verify.c: first cut of type checking code.
19727
19728 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19729
19730         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19731
19732 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19733
19734         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19735         (fix bug #27782)
19736         (mono_marshal_get_remoting_invoke): impl.
19737         (mono_delegate_begin_invoke): impl.
19738         (mono_mb_emit_save_args): impl.
19739         (mono_delegate_end_invoke): impl.
19740         (mono_marshal_get_delegate_begin_invoke):
19741         (mono_marshal_get_delegate_end_invoke):
19742         (mono_marshal_get_delegate_invoke): generate a special name for
19743         those methods (including the signature) and associate them whith
19744         the delegate class. 
19745
19746 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19747
19748         * reflection.[ch]: 
19749         (mono_reflection_type_from_name): now it has a MonoImage parameter
19750         which is used as the default image to search the type in. If the image
19751         is NULL or getting the type from it fails, it defaults to corlib.
19752
19753         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19754         new parameter.
19755
19756 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19757
19758         * reflection.c: update the parameter table index.
19759
19760 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19761
19762         * domain.c: don't include the mark byte in the string hash.
19763
19764 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19765
19766         * icall.cs: icall for Type.GetTypeCode ().
19767         * verify: a couple of fixes and disabled local initialization checks.
19768
19769 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19770
19771         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19772
19773         * debug-helpers.c (mono_method_full_name): print the type of the
19774         runtime wrapper
19775
19776         * metadata.c (mono_signature_hash): a hash function for signatures
19777         (mono_signature_hash): better hash algorithm
19778
19779         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19780
19781         * debug-helpers.c (mono_method_full_name): this can now generate
19782         method names with signatures
19783
19784         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19785         method dont have this pointers.
19786
19787 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19788
19789         * reflection.c: fixup typebuilder tokens.
19790         * image.c: fix buglet.
19791         * marshal.h: remove whitespace.
19792         * metadata.h, metadata.c: reinstate code that was removed.
19793         * verify.c: handle catch directives and fix another couple of bugs.
19794
19795 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19796
19797         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19798         (mono_marshal_get_native_wrapper): make it comp. with the old code
19799         (mono_marshal_get_native_wrapper): support boolean
19800         (mono_marshal_get_managed_wrapper): support more types
19801
19802 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19803
19804         * class.c (class_compute_field_layout): compute class->blittable attribute.
19805
19806 2002-07-09  Dick Porter  <dick@ximian.com>
19807
19808         * threads.c: Make the thread cleaning up cope with threads that
19809         call ExitThread()
19810
19811 2002-07-08  Radek Doulik  <rodo@ximian.com>
19812
19813         * reflection.c (method_encode_code): use non-translated values to
19814         compute finally_start, this fixes exception handling on ppc, yay!
19815
19816         * decimal.h (struct signscale): fix endianess
19817
19818 2002-07-07  Radek Doulik  <rodo@ximian.com>
19819
19820         * reflection.c: swap box_val and not val
19821
19822 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19823
19824         * reflection.c, reflection.h: handle full assembly info in type name.
19825         Handle Type arguments when loading custom attributes.
19826         * icall.c: updated to use new mono_reflection_type_from_name () method.
19827
19828 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19829
19830         * loader.c:
19831         (method_from_memberref): also print assembly name when method not found.
19832
19833 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19834
19835         * icall.c:
19836         (ves_icall_TypeGetProperties): fixed bug #27473. 
19837
19838 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19839
19840         * reflection.c: display image name and token when cannot find the
19841         .ctor for an attribute.
19842
19843 2002-07-05  Martin Baulig  <martin@gnome.org>
19844
19845         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19846
19847 2002-07-04  Dick Porter  <dick@ximian.com>
19848
19849         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19850         compile on mingw.  This will cause mingw builds to not wait for
19851         subthreads to terminate after the main thread does.  I've lodged a
19852         bug with the mingw developers for them to wrap OpenThread().
19853
19854 2002-07-03  Dick Porter  <dick@ximian.com>
19855
19856         * threads.c: Store thread IDs instead of handles, because
19857         GetCurrentThread() returns a pseudohandle and therefore stores
19858         useless values.  mono_thread_cleanup() continues checking the
19859         array of threads until it is empty, to cope with subthreads
19860         spawning new threads after the main thread has finished.
19861
19862         * profiler.h:
19863         * profiler.c:
19864         * profiler-private.h: Pass the thread ID to thread profiler
19865         functions, instead of a handle
19866
19867 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19868
19869         * verify.c: fixes to make it more usable.
19870         * pedump.c: added --verify code to verify IL code in an assembly.
19871
19872 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19873
19874         * reflection.c: turn errors into warnings to allow compiling corlib.
19875
19876 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19877
19878         * reflection.c: add special cases to compile corlib.
19879
19880 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19881
19882         * reflection.c: handle properties with only a set method.
19883
19884 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19885
19886         * opcodes.h: add enum with opcodes in opval order.
19887
19888 2002-07-01  Dick Porter  <dick@ximian.com>
19889         
19890         * object.h:
19891         * object.c (mono_runtime_run_main): Removed unneeded argument
19892
19893 2002-06-28  Martin Baulig  <martin@gnome.org>
19894
19895         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19896
19897 2002-06-27  Dick Porter  <dick@ximian.com>
19898
19899         * threads.c: Store the handle in both the parent thread and in the
19900         subthread, to minimise the time between starting a new thread and
19901         storing its ID.
19902
19903 2002-06-26  Dick Porter  <dick@ximian.com>
19904
19905         * appdomain.c (mono_runtime_cleanup): Close the socket library
19906         after all the threads have finished, not before
19907
19908 2002-06-26  Martin Baulig  <martin@gnome.org>
19909
19910         * debug-symfile.c (mono_debug_find_source_location): Added
19911         `guint32 *line_number' argument.  If it's not NULL, store the line number
19912         there and return the file name without the line number.
19913
19914 2002-06-25  Dick Porter  <dick@ximian.com>
19915
19916         * icall.c:
19917         * process.h:
19918         * process.c: Process forking and other support functions
19919
19920 2002-06-25  Dick Porter  <dick@ximian.com>
19921
19922         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19923         things dont happen when the image is closed.
19924         (mono_image_lookup_resource): Walk the resource section looking
19925         for a particular entry
19926
19927         * cil-coff.h: PE resource section decoding
19928
19929 2002-06-25  Dick Porter  <dick@ximian.com>
19930         
19931         * assembly.h:
19932         * assembly.c: 
19933         (mono_assembly_foreach): Accessor functions to walk the list of
19934         loaded assemblies
19935         (mono_assembly_set_main):
19936         (mono_assembly_get_main): Process methods need to know which
19937         assembly is the "main" one
19938
19939         * object.c (mono_runtime_run_main): Record the main assembly
19940
19941         * debug-helpers.c: Fix typo
19942
19943 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19944
19945         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19946         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19947
19948 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19949
19950         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19951
19952 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19953
19954         * image.c (do_mono_image_open): Initialize reference count,
19955         otherwise we leak the MonoImage.
19956
19957 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19958
19959         * reflection.c: small tweak to handle self-hosting.
19960
19961 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19962
19963         * reflection.c: fix type name parse code.
19964
19965 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19966
19967         * reflection.c: break out of the loop.
19968         * image.c: special case corlib.
19969
19970 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19971
19972         * reflection.c: add all the custom attrs at the end to ensure the
19973         ctors have been properly initialized when the attributes are defined
19974         in the current assembly.
19975
19976 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19977
19978         * reflection.c: handle correctly multiple-nested types.
19979
19980 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19981
19982         * row-indexes.h: fix typos.
19983         * reflection.c: adjust for typos and fix method_def_or_ref
19984         encoding in MethodImpl table.
19985
19986 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19987
19988         * reflection.c: fix entry point patching (thanks Serge!).
19989
19990 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19991
19992         * verify.c: add check for System.Exception
19993
19994 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19995
19996         * image.c, class.c: minifix for code just c&p'ed.
19997         * reflection.c: warning fix.
19998         * object.h, loader.h, domain.c: load also StringBuilder.
19999
20000 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20001
20002         * marshal.h, marshal.c: some support code to handle complex marshaling.
20003
20004 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20005
20006         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
20007         Better signatures with vtable error dump.
20008
20009 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
20010
20011         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
20012
20013 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
20014
20015         * icall.c (ves_icall_Type_GetField): impl.
20016
20017 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20018
20019         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
20020         to retrieve a marshal description blob for a field or param.
20021
20022 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20023
20024         * reflection.h, reflection.c: change order of nested type emission
20025         to avoid table corruption. The NestedTypes table is sorted.
20026         * icall.c: change order of GetConstructor results to workaround mcs bug.
20027
20028 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20029
20030         * reflection.h, reflection.c: handle field and param marshal
20031         information.
20032
20033 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20034
20035         * icall.c, marshal.c marshal.h: more Marshal class implementation.
20036
20037 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20038
20039         * reflection.c: fix call convention.
20040
20041 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20042
20043         * reflection.h, reflection.c: mono_image_get_memberref_token()
20044         takes a type instead of a class, now. Added
20045         mono_image_get_array_token() to create tokens for the special
20046         multi-dim array methods.
20047
20048 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20049
20050         * assembly.c: handle modules (no assembly table). Split
20051         loading references in its own function.
20052         * class.c: handle moduleref resolution scope.
20053         * image.c, image.h: cache module name in image.
20054
20055 2002-06-07  Martin Baulig  <martin@gnome.org>
20056
20057         * reflection.c (mono_image_get_type_info): Only add a class layout entry
20058         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
20059
20060 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20061
20062         * icall.c: more signature fixes that used uint instead of int.
20063
20064 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20065
20066         * reflection.c: fixed signature of field refs.
20067
20068 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20069
20070         * class.c, reflection.c: handle typerefs of nested types
20071         (both on read and when writing files).
20072
20073 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20074
20075         * icall.c: fix method signatures that tried to workaround the previous
20076         typo, d'oh!
20077
20078 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20079
20080         * debug-helpers.c: fix typo.
20081
20082 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20083
20084         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
20085         rewrote the PE/COFF writing code (our programs are understood by the
20086         ms runtime, now).
20087
20088 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20089
20090         * gc.c, gc.h, icall.c: weakreference support.
20091
20092 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20093
20094         * Makefile.am, mono-config.c: use $(sysconfdir).
20095
20096 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20097
20098         * icall.c: changed default precision of Double.ToString() to 15.
20099         Fixed memory leak. Unified with Single.ToString.
20100
20101 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20102
20103         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20104
20105 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20106
20107         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20108         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20109         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20110         and myself.
20111
20112 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20113
20114         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20115
20116 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20117
20118         * reflection.c, socket-io.c: more compilation fixes.
20119
20120 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20121
20122         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20123         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20124         unicode.c: warning and compiler compatibility fixes.
20125
20126 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20127
20128         * class.h, metadata.c: fixed warnings/compilation errors.
20129
20130 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20131
20132         * Makefile.am, mono-config.c, mono-config.h: configuration file
20133         support routines.
20134         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20135         config file. Export methods to insert and lookup mappings.
20136
20137 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20138
20139         * reflection.c: handle types and boxed objects in custom attr
20140         constructors.
20141
20142 2002-05-30  Martin Baulig  <martin@gnome.org>
20143
20144         * debug-symfile.c
20145         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20146
20147 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20148
20149         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20150         to lookup the implmap row for a P/Invoke method.
20151         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20152         P/Invoke method from the runtime on an as needed basis.
20153
20154 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20155
20156         * metadata.c (mono_metadata_parse_signature): impl.
20157
20158 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20159
20160         * class.c: handle .pack directive.
20161
20162 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20163
20164         * object.c: initialize static fields with RVA data.
20165
20166 2002-05-25  Martin Baulig  <martin@gnome.org>
20167
20168         * debug-symfile.c
20169         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20170
20171 2002-05-24  Martin Baulig  <martin@gnome.org>
20172
20173         * debug-symfile.c
20174         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20175         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20176         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20177
20178 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20179
20180         * object.c: special case string ctros in invoke.
20181         * gc.c: silly whitespace changes.
20182
20183 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20184
20185         * threadpool.[ch]: impl. a threadpool that can
20186         be used by mint and mono.
20187
20188 2002-05-22  Martin Baulig  <martin@gnome.org>
20189
20190         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20191         The first argument is now a `MonoReflectionModuleBuilder *', the return
20192         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20193         `methods' field to get the method builder.  The `token' argument is the
20194         unfixed token.
20195
20196         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20197         invalid characters instead of g_assert_not_reached()ing.  This seems
20198         to be the behaviour of mscorlib.
20199
20200 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20201
20202         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20203         Hestilow to fix bug #25104
20204
20205 2002-05-21  Martin Baulig  <martin@gnome.org>
20206
20207         * debug-symfile.c (mono_debug_find_source_location): New function.
20208         Looks up an IL offset in the line number table and returns the source
20209         location as a string.
20210
20211 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20212
20213         * icall.c:
20214         (mono_double_ToStringImpl): changed %f by %g until we have something
20215         better.
20216
20217 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20218
20219         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20220         parameters first in C#.
20221
20222 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20223
20224         * icall.c, reflection.h: added icall to get info about an event.
20225
20226 2002-05-20  Radek Doulik  <rodo@ximian.com>
20227
20228         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20229         endian
20230         (mono_value_box): don't use memcpy for small sizes on
20231         architectures with unaligned access
20232
20233 2002-05-20  Martin Baulig  <martin@gnome.org>
20234
20235         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20236         if `tb->parent == NULL'.
20237         (mono_reflection_create_internal_class): New function.  This is
20238         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20239         for enum types.
20240
20241         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20242         New interncall.
20243
20244 2002-05-19  Martin Baulig  <martin@gnome.org>
20245
20246         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20247         argument to get the length, don't default to the array length.
20248
20249 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20250
20251         * assembly.c (mono_assembly_setrootdir): New function used to
20252         override the MONO_ASSEMBLIES directory.
20253
20254 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20255
20256         * icall.c: ValueType_GetHashCode() initialize local var.
20257
20258 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20259
20260         * reflection.c: sort custom attributes table.
20261
20262 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20263
20264         * reflection.c: support named args in custom attributes (write support).
20265
20266 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20267
20268         * reflection.c: fix finally position calculation.
20269
20270 2002-05-15  Radek Doulik  <rodo@ximian.com>
20271
20272         * reflection.c: fixed endianess at many places
20273
20274         * icall.c (ves_icall_InitializeArray): comment out debug msg
20275
20276 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20277
20278         * object.c (mono_unhandled_exception): new function to handle
20279         unhandled exceptions.
20280         (mono_unhandled_exception): call the UnhandledException event.
20281         (mono_runtime_delegate_invoke): impl.
20282
20283 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20284
20285         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20286         returns the RVA, not the direct pointer to the data. Handle the case
20287         when the class size is fixed.
20288
20289 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20290
20291         * reflection.c: fix some endianess issues.
20292
20293 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20294
20295         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20296
20297         * threads.c (mono_thread_init): added a callback which is invoked
20298         at thread start.
20299
20300 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20301         
20302         * icall.c: make GetHashCode return non-negative values.
20303
20304 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20305
20306         * object.c, icall.c, gc.c: revert to address-based hashcode.
20307
20308 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20309
20310         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20311
20312 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20313
20314         * icall.c, class.c: special case <Module>.
20315
20316 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20317
20318         * icall.c: fix bug in GetNow().
20319
20320 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20321
20322         * object.c (mono_runtime_class_init): make sure that we call all
20323         static class constructors.
20324
20325 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20326
20327         * reflection.c: sort methodsemantics table.
20328
20329 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20330
20331         * reflection.h, reflection.c: honour init locals setting.
20332
20333 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20334
20335         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20336
20337 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20338
20339         * reflection.c: support ContructorBuilders in attribute blob creation.
20340
20341 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20342
20343         * reflection.c: some changes to build a binary that can be run
20344         directly in windows.
20345
20346 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20347
20348         * loader.c: print a big message when an icall can't be found.
20349
20350 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20351
20352         * string-icalls.c: fix bug 24248.
20353
20354 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20355
20356         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20357         icall.c, reflection.h: separate assembly loading by pathname and by
20358         assembly name. Use the MONO_PATH env var to search for assemblies.
20359
20360 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20361
20362         * assembly.c, image.h: add some support for assemblies
20363         with multiple modules.
20364         * class.c, class.h: export mono_class_from_typeref().
20365         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20366         instead.
20367
20368 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20369
20370         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20371         documentation says (the ECMA one is correct).
20372
20373 2002-05-02  Dick Porter  <dick@ximian.com>
20374
20375         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20376         Don't name the synchronisation mutex.
20377
20378 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20379
20380         * rand.c
20381         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20382         Make the prototypes match.
20383         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20384         Same.
20385
20386         * icall.c
20387         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20388         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20389         all systems have tm.tm_zone, so use strftime() with %Z to print
20390         the timezone abreviation into a temp string.
20391
20392         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20393         rather than mono_array_addr() on a MonoString on Big Endian
20394         machines.
20395
20396 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20397
20398         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20399         fix bug 24041
20400
20401 2002-04-30  Dick Porter  <dick@ximian.com>
20402
20403         * socket-io.c: Cope with SOCKET being an integer rather than a
20404         pointer now.
20405
20406         * threads.c: Added Thread_free_internal, to deal with thread
20407         handle cleanup.  Moved calls to handle_store() and handle_remove()
20408         to start_wrapper(), so each can only be called once.  Allocate
20409         synchronisation blocks with GC_malloc(), and use GC finalisation
20410         to close the handles.
20411
20412         * icall.c: added System.Threading.Thread::Thread_free_internal
20413
20414 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20415
20416         * icall.c: support Environment.Exit, CommandLineArgs().
20417
20418 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20419
20420         * object.c, object.h: added mono_runtime_run_main () and
20421         mono_runtime_get_main_args () for use in System.Environment.
20422
20423 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20424
20425         * gc.c: fix thinko, enable actual finalization since the jit is now
20426         fixed.
20427
20428 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20429
20430         * gc.c, object.c: take into account that an object may be offset wrt the address
20431         returned by GC_malloc().
20432
20433 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20434
20435         * image.c: handle files without entries in the assembly table (modules).
20436
20437 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20438
20439         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20440         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20441         allowed to be null when it's System.Object class setup.
20442
20443 2002-04-27  Martin Baulig  <martin@gnome.org>
20444
20445         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20446         if `tb->parent == NULL' rather than crashing.
20447
20448 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20449
20450         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20451         calling acos() where asin() should have been called.
20452
20453 2002-04-26  Martin Baulig  <martin@gnome.org>
20454
20455         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20456         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20457         there's a subdirectory called `System', but we don't want to read that
20458         subdirectory as an assembly.
20459
20460 2002-04-25  Martin Baulig  <martin@gnome.org>
20461
20462         * debug-symfile.c: Reflect latest MonoString changes.
20463
20464 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20465
20466         * rand.c, rand.h: instance method icalls need to have an explicit
20467         this pointer as first argument in the C implementation.
20468
20469 2002-04-25  Nick Drochak <ndrochak@gol.com>
20470
20471         * icall.c: Fix typo in map for GetNonZeroBytes
20472
20473 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20474
20475         * string-icalls.c : String does now passes unit tests without any 
20476         errors, the following changes has been made:
20477         
20478         Implemented replace methods.
20479         Renaming of methods to (try) follow the standard.
20480         Fixed compare ordinal
20481         Made all memory allocated directly to function instead of via icall function.
20482         Small performance fix in is_in_array function
20483                         
20484  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20485
20486         c (mono_string_Internal_ctor_charp_int_int):
20487         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20488         sindex < 0, throw ArgumentOutOfRangeException instead of
20489         ArgumentNullException.
20490
20491         Added new check for length == 0, however
20492         I need to make it return String.Empty from the C code.
20493         
20494         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20495         that calculate the length for us here.
20496         
20497         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20498         mono_string_new_utf16 with mono_string_new, since value is utf8.
20499
20500 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20501
20502         * object.c: register the object for finalization if needed.
20503         Allocate one more char in the string for the terminating 0 char.
20504
20505 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20506
20507         * class.c, class.h, image.c: check if a type implemenst a destructor.
20508         Use the proper key for array class lookups.
20509         * icall.c: register the icalls in the System.GC class.
20510         * gc.c, gc.h: GC-related functions and icalls.
20511
20512 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20513
20514         * icall.c:
20515         * socket-io.c:
20516         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20517         changed a couple of free () by g_free ().
20518
20519         * decimal.c: one-liner in the comments for decimal2string ().
20520
20521 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20522
20523         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20524
20525 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20526
20527         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20528         * object.c (mono_runtime_invoke_array) : handle null in params
20529
20530 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20531
20532         * string-icalls.c: fixed bug in split (one off bug)
20533
20534 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20535
20536         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20537         * icalls.c: added String::Equals as internal method
20538
20539 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20540
20541         * threads.c: fixed bug in the double interlocked functions
20542
20543 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20544
20545         * threads.c: implemented all of the new interlocked icalls.
20546         * string-icalls.c: fix a bug in insert.
20547         * icalls.c: added the icalls for interlocked, removed old string functions.
20548         
20549 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20550
20551         * loader.c: fix off-by-one error when reading argument names.
20552
20553 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20554
20555         * profiler.c: win32 counter implementation (untested).
20556         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20557         (the latter needs testing and more complete impl. from win32 folks).
20558
20559 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20560
20561         * object.c: mono_array_new_full workaround mono_array_class_get
20562         problem.
20563
20564 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20565
20566         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20567         * object.h (mono_string_chars): Changed casting type.
20568
20569 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20570
20571         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20572                            method signatures to use gunichar2 instead of gint16.
20573
20574 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20575
20576         * object.h, object.c: domain-specific versions of mono_object_new and
20577         mono_array_new.
20578
20579 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20580
20581         * object.c: changed String layout
20582
20583         * string-icalls.c (mono_string_Internal_ctor_chara): added
20584         internal string constructors.
20585
20586 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20587
20588         * threads.c: pass 'this' to the thread start routine.
20589
20590 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20591
20592         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20593         InternalCompareStr don't call twice mono_string_cmp_char for the last
20594         character. Improved performance in mono_string_cmp_char.
20595
20596 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20597
20598         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20599         code into its own library: libmonoruntime.
20600
20601 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20602
20603         * object.h, object.c: changed array format so that szarrays do not
20604         require a bounds structure.
20605         * icall.c, appdomain.c: support for new szarray format.
20606
20607 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20608
20609         * metadata.c: compare also the retuns type when comparing signatures:
20610         we didn't do this as an optimization since really overloaded methods
20611         must differ also in the arguments, but this doesn't work with
20612         low-level IL code (or when using explicit conversion operators: see
20613         bug#23498 for an example).
20614
20615 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20616
20617         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20618
20619 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20620
20621         * icall.c: make MonoType::GetElementType its own icall.
20622
20623 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20624
20625         * icall.c: remove MonoMethod_get_Name().
20626         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20627         object.
20628
20629 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20630
20631         * string-icalls.c: optimized a few methods.
20632
20633 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20634
20635         * icall.c: added all new string internal calls
20636         * string-icalls.c: added, new string internal call implementation.
20637         * object.c: added mono_string_new_size for allocating a string a size
20638
20639 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20640
20641         * object.c (mono_object_isinst): use the same code as in the
20642         optimized x86 version.
20643
20644 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20645
20646         * profiler.c: TSC-based timer code (faster and more accurate).
20647         Not hooked up in configure, yet (set USE_X86TSC to 1).
20648
20649 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20650
20651         * profiler.c, profiler.h: track time spent compiling methods.
20652         * threads.c: track thread creation/destruction.
20653
20654 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20655
20656         * profiler.c, profiler.h, profiler-private.h: profiling interface
20657         and sample implementation. Moved here so that it can be used also by
20658         the jit.
20659
20660 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20661
20662         * reflection.c, reflection.h: keep types and other handles separate in
20663         the hash tables for referred tokens. Add guid for modules.
20664
20665 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20666
20667         * assembly.c: fix bugs found with valgrind.
20668         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20669
20670 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20671
20672         * threads: added icall support for getting current domain for
20673                    the thread.
20674  
20675 2002-04-13  Martin Baulig  <martin@gnome.org>
20676
20677         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20678         (MonoDebugVarInfo): Added `index' field for register based addresses.
20679         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20680         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20681         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20682         `MonoDebugVarInfo *this_var'.
20683
20684         * debug-symfile.c (relocate_variable): New static function to write
20685         a location description for a local variable or method parameter.
20686
20687 2002-04-12  Martin Baulig  <martin@gnome.org>
20688
20689         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20690         stack offset and begin/end scope address of a local variable.
20691         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20692         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20693         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20694
20695         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20696         Added new relocation types for start/end scope of a local variable.
20697
20698 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20699
20700         * object.h: add mono_object_domain() macro.
20701         * reflection.c: handle typespecs.
20702         * icall.c: MonoMethod::get_Name() implementation.
20703
20704 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20705
20706         * icall.c: String::GetHashCode() icall implementation.
20707
20708 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20709
20710         * icall.c: String::IndexOfAny icall.
20711         * object.c, object.h: make array->max_length more useful.
20712         Intrduced mono_object_class() and mono_string_length() macros.
20713
20714 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20715
20716         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20717         instead of g_unichar_isdigit.
20718
20719 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20720
20721         * icall.c: Implement a simple Double.ToString().
20722
20723 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20724
20725         * appdomain.h: only io-layer.h is supposed to be included.
20726         * icall.c: explicitly import environ. Fix warning.
20727
20728 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20729
20730         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20731                 return true even if it's not Daylight Savings time.
20732                 Only return false for the case where the function isn't
20733                 implemented for a plaform (read Windows).
20734
20735 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20736
20737         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20738         data with a mutex.
20739
20740 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20741
20742         * mempool.c (mono_mempool_alloc): only use g_malloc when
20743         absolutely necessary.
20744
20745 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20746
20747         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20748
20749         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20750         (mono_class_proxy_vtable): use domain mempool
20751
20752 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20753
20754         * appdomain.h, appdomain.c: split initialization that requires the
20755         execution engine support into mono_runtime_init().
20756
20757 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20758
20759         * class.c (mono_class_init): don't include vtable inside MonoClass
20760         to save some memory, gather some statistics.
20761         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20762
20763 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20764
20765         * icall.c: internalcall implementation for ValueType.Equals().
20766
20767 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20768
20769         * object.c (mono_message_init): moved 
20770         (mono_runtime_exec_main): new arch. independent impl.
20771         (mono_runtime_invoke_array): new method - like
20772         mono_runtime_invoke, but you can pass an array of objects.
20773         (mono_remoting_invoke): new arch. independent impl.
20774         (mono_message_invoke): new arch. independent impl.
20775         (mono_runtime_class_init): new arch. independent impl.
20776         (mono_runtime_object_init): new arch. independent impl.
20777
20778 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20779
20780         * metadata.c, object.c, reflection.c: documented the exported
20781         functions.
20782
20783 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20784
20785         * icall.c: simpler code to pass the assembly builder data to corlib.
20786         Implement GetNestedTypes() internalcall.
20787
20788 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20789
20790         * class.c: warn if a type can't be loaded.
20791
20792 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20793
20794         * image.h: typedef MonoImageOpenStatus
20795         * types.h: removed unused file
20796         
20797 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20798
20799         * icall.c: Enum_ToObject accepts enum value arguments.
20800
20801 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20802
20803         * class.c: move initialization of properties, events and nested
20804         classes, so that they happen for interfaces, too.
20805
20806 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20807
20808         * icall.c: cleanup some ugly casts in Array_SetValue*.
20809
20810 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20811
20812         * icall.c: the values array fro enums is of the correct type, now.
20813         Implement (correctly) getFullName instead of assQualifiedName for
20814         MonoType.
20815         * reflection.h, reflection.c: added mono_type_get_name ().
20816
20817 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20818
20819         * assembly.c, image.h: for each MonoImage, record from wich assembly
20820         it was loaded.
20821         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20822         Make Type.Assembly work.
20823
20824 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20825
20826         * debug-symfile.h: use char* instead of gpointer to avoid
20827         unnecessary casts.
20828
20829         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20830
20831         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20832         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20833
20834 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20835
20836         * icall.c (mono_message_init): impl. (code cleanup)
20837         (ves_icall_InternalExecute): impl. FieldGetter
20838
20839         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20840         defined we call all (non-static)methods through the vtable. 
20841
20842 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20843
20844         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20845         finalizer even though the memory is still referenced (and the chunk of
20846         memory is not freed).
20847
20848 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20849
20850         * assembly.c: fix brokeness.
20851
20852 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20853
20854         * class.c: kill some warnings. Check explicit interface method
20855         implementation also without considering the namespace.
20856         Load also literal strings in static class data.
20857
20858 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20859
20860         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20861         (default_assembly_name_resolver): Make the resolver take the
20862         "base" directory where the assembly was originally defined, so we
20863         can load DLLs that are in the same directory as the assembly that
20864         is being referenced.
20865
20866 2002-03-28  Dick Porter  <dick@ximian.com>
20867
20868         * file-io.h: 
20869         * file-io.c:
20870         * socket-io.c: 
20871         * unicode.h: 
20872         * unicode.c: Warning cleanups
20873
20874 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20875
20876         * object.h, reflection.h: use the correct type instead of MonoObject.
20877
20878 2002-03-28  Martin Baulig  <martin@gnome.org>
20879
20880         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20881         (mono_debug_update_symbol_file): Initialize classes if necessary.
20882
20883 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20884
20885         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20886         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20887
20888 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20889
20890         * assembly.h: fix function prototype.
20891         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20892         * mono-endian.h: use const cast.
20893
20894 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20895
20896         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20897
20898 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20899
20900         * loader.c: don't assert when a typeref can't be loaded, give
20901         a chance to the runtime to trow an exception instead.
20902         * loader.h: fix warning.
20903
20904 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20905
20906         * class.c (mono_class_proxy_vtable): added proxy support
20907
20908 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20909
20910         * icall.c: removed last of PAL calls, added System.Environment
20911         * file-io.h, file-io.c: MonoIO implementation
20912         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20913
20914 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20915
20916         * appdomain.c: do not use the byte marker in ldstr table lookup.
20917         * debug-helpers.c: allow two ':' to separate class and method name.
20918         * object.c: allocate arrays bounds with the GC, too.
20919         * verify: add a few more checks.
20920
20921 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20922
20923         * reflection.c: output also literal strings. Allocate parameter data
20924         with GC_malloc() (thanks, Martin, for catching this!).
20925
20926 2002-03-26  Martin Baulig  <martin@gnome.org>
20927
20928         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20929         include the `this' offset in the `param_offsets'.
20930
20931 2002-03-25  Martin Baulig  <martin@gnome.org>
20932
20933         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20934         mono_debug_get_class() function to get the classes. Added new
20935         relocation types for arrays and strings.
20936         (mono_debug_get_class): New static function to search in all
20937         referenced assemblies for a metadata token.
20938
20939         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20940
20941 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20942
20943         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20944         hold gc-allocated objects. Make the string heap a stream like the
20945         others. Removed duplicated code when writing stream info.
20946         Added asserts to catch possible buffer overflows. Set the sorted map
20947         for tables that need sorting. Added some documentation.
20948
20949 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20950
20951         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20952         for interned strings and vtables.
20953
20954 2002-03-24  Martin Baulig  <martin@gnome.org>
20955
20956         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20957         it in the array since it was created with g_slist_prepend().
20958
20959 2002-03-24  Martin Baulig  <martin@gnome.org>
20960
20961         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20962         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20963         (mono_debug_method_from_token): Renamed to
20964         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20965         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20966
20967         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20968         relocation types.
20969
20970         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20971
20972 2002-03-24  Martin Baulig  <martin@gnome.org>
20973
20974         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20975         (mono_debug_method_from_token): New func.
20976
20977         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20978         New interncall, calls mono_debug_local_type_from_signature().
20979         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20980         calls mono_debug_method_from_token().
20981
20982 2002-03-23  Martin Baulig  <martin@gnome.org>
20983
20984         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20985         specifies the number of bytes to be converted, not the array size.
20986         Return the number of chars, not the number of bytes.
20987         (ves_icall_iconv_get_chars): The `byteCount' argument
20988         specifies the number of bytes to be converted, not the array size.
20989
20990 2002-03-23  Martin Baulig  <martin@gnome.org>
20991
20992         * reflection.h (MonoReflectionSigHelper): New type.
20993
20994         * reflection.c (mono_reflection_sighelper_get_signature_local),
20995         (mono_reflection_sighelper_get_signature_local): New functions.
20996
20997         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20998         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20999         interncalls.
21000
21001 2002-03-23  Martin Baulig  <martin@gnome.org>
21002
21003         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
21004         is_writeable is set.
21005         (mono_raw_buffer_update): New function to write the modified map
21006         back to disk.
21007
21008         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
21009
21010         * debug-symfile.c (mono_debug_update_symbol_file): Call
21011         mono_raw_buffer_update() when done writing.
21012
21013 2002-03-23  Martin Baulig  <martin@gnome.org>
21014
21015         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
21016
21017         * debug-symfile.c: Added support for arguments and local variables.
21018
21019 2002-03-23  Dick Porter  <dick@ximian.com>
21020
21021         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
21022         protected by ifdefs, hence breaking the w32 build.
21023
21024 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21025
21026         * object.c: implement is_interned() the right way.
21027
21028 2002-03-21  Martin Baulig  <martin@gnome.org>
21029
21030         * debug-symfile.[ch]: New files to handle debugging information
21031         files. There's also support to dynamically update these symbol
21032         files to include machine dependent information.
21033
21034 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
21035
21036         * threads.c (mono_thread_create): new function to create thread
21037         from C
21038
21039 2002-03-20  Martin Baulig  <martin@gnome.org>
21040
21041         * icall.c (ves_icall_InternalInvoke): Create a new object if the
21042         method is a constructor.
21043         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
21044         points to ves_icall_InternalInvoke().
21045
21046 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
21047
21048         * file-io.c: Flush shouldn't throw exceptions.
21049
21050 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
21051
21052         * file-io.c: FileStream flush support; FileSetLength now
21053         restores file pointer.
21054
21055 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21056
21057         * class.c: set image for pointer classes.
21058
21059 2002/03/19  Nick Drochak <ndrochak@gol.com>
21060
21061         * sysmath.c: Forgot one.
21062
21063 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
21064
21065         * sysmath.c: Avoid redefining existing names.
21066
21067 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
21068
21069         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
21070         handled by runtime as icall rather than dllimport from libm.so
21071         * file-io.c, file-io.h: fixed handle argument type.
21072
21073 2002-03-18  Dick Porter  <dick@ximian.com>
21074
21075         * reflection.c (mono_image_get_type_info): rename interface to
21076         iface, because of "#define interface struct" on windows.
21077
21078 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
21079
21080         * class.c, class.h: rename and export mono_ptr_class_get().
21081         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
21082         * reflection.c, reflection.h, icall.c: better/saner type name
21083         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
21084         method signatures.
21085
21086 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
21087
21088         * class.c (mono_class_init): removed hardcoded GHC_SLOT
21089
21090         * icall.c (ves_icall_InternalInvoke): impl.
21091
21092 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21093
21094         * reflection.c: output the interface map table, too.
21095
21096 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21097
21098         * class.c (class_compute_field_layout): separate computation of 
21099         static field layout
21100
21101 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21102
21103         * icall.c: added System.Buffer support.
21104         * file-io.c: moved file icalls from PAL to FileStream.
21105
21106 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21107
21108         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21109
21110 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21111
21112         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21113
21114 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21115
21116         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21117
21118 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21119
21120         * debug-helpers.{c,h}: moved here from monograph some useful functions
21121         to locate a method by name/signature in a class or image. Included
21122         also a small and flexible IL disassembler.
21123
21124 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21125
21126         * reflection.c: fixup tokens in methods with small header size, too.
21127
21128 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21129
21130         * object.c (mono_string_to_utf8): remove assert(!error), instead
21131         print a warning. 
21132
21133 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21134
21135         * icall.c: update to the new mono_Array_class_get interface.
21136
21137 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21138
21139         * appdomain.c, object.c: Boehm-GC enable.
21140         * icall.c: make get_data_chunk() support split data requests.
21141         Ensure a class is initialized in more cases. Return only the first
21142         property found in GetProperties() or the compiler gets confused. 
21143         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21144         * reflection.h, reflection.c: add fixup mechanism for field and method
21145         tokens. Initialize assembly->typeref in a single place. Output
21146         properties after events. Support custom attributes for events, too.
21147         Typo fix for paramter custom attrs.
21148
21149 2002-03-07  Martin Baulig  <martin@gnome.org>
21150
21151         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21152
21153 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21154
21155         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21156
21157 2002-03-06  Martin Baulig  <martin@gnome.org>
21158
21159         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21160         non-zero lower bounds. See testcases #F10-#F13.
21161
21162 2002-03-05  Martin Baulig  <martin@gnome.org>
21163
21164         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21165
21166         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21167         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21168         here.
21169         (ves_icall_System_Array_SetValue): Likewise.
21170         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21171         as argument and does the actual work. This function is used when copying a
21172         multi-dimensional array.
21173         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21174         now do all the widening conversions of value types.
21175         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21176
21177 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21178
21179         * class.c: remove some magic numbers and use the smbolic names,
21180         instead. Added init_events() to load event info at class init time.
21181         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21182         and mono_metadata_methods_from_event().
21183         * reflection.h, reflection.c: added support for writing out the evnets
21184         related information.
21185
21186 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21187
21188         * reflection.h, icall.c: use a different method (GetInterfaces)
21189         to gather interface info and add isbyref, isprimitive and
21190         ispointer to the ves_icall_get_type_info() return value.
21191
21192 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21193
21194         * class.h: stared adding support for events.
21195         * icall.c: split find_members implementation. Added debug icall to get
21196         the address of an object.
21197         * reflection.c: handle TypeBuilders in mono_type_get_object().
21198
21199 2002-03-01  Martin Baulig  <martin@gnome.org>
21200
21201         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21202         ArgumentOutOfRangeException(), not an ArgumentException().
21203         (ves_icall_System_Array_GetLowerBound): Likewise.
21204         (ves_icall_System_Array_GetValue): Improved argument checking.
21205         (ves_icall_System_Array_SetValue): Improved argument checking.
21206
21207 2002-03-01  Martin Baulig  <martin@gnome.org>
21208
21209         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21210         called with invalid arguments rather than just dying with g_assert().
21211         (ves_icall_System_Array_SetValue): Likewise.
21212         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21213         raise a NotImplementedException instead.
21214         (ves_icall_System_Array_GetLength): Added argument checking.
21215         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21216
21217 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21218
21219         * object.h (mono_assert): new macros mono_assert and
21220         mono_assert_not_reached
21221
21222 2002-02-28  Martin Baulig  <martin@gnome.org>
21223
21224         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21225         and "System::String::IsInterned" to "System::String::_IsInterned".
21226
21227 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21228
21229         * icall.c: remove hacks for typebuilder. Added icall to create a
21230         modified type from a tybebuilder.
21231         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21232         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21233         to create a backing MonoClass for a TypeBuilder.
21234
21235 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21236
21237         * class.c, class.h: more refactoring of class init.
21238         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21239
21240 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21241
21242         * marshal.c, marshal.h: start of marshaling interface.
21243
21244 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21245
21246         * icall.c: fix order in assembly qualified name icall.
21247
21248 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21249
21250         * class.c: do not free str, since we store it in the hash table.
21251         * reflection.h: add label field to MonoILExceptionInfo.
21252         * reflection.c: handle references to more than one assembly. Handle
21253         case when there isn't a module created in the assembly.
21254
21255 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21256
21257         * class.c: Fix typo. Start refactoring of class init code.
21258
21259 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21260
21261         * appdomain.c: exit with 1 on error.
21262         * class.c: we already have the name in MonoClassField.
21263         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21264         MonoStreamHeader instead of an offset of image->raw_metadata.
21265
21266 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21267
21268         * appdomain.c (mono_init): Be even more descriptive about the error.
21269
21270 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21271
21272         * appdomain.c: give the user an informative message when corlib can't
21273         be loaded.
21274
21275 2002-02-26  Martin Baulig  <martin@gnome.org>
21276
21277         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21278         New icall to get the time zone data.
21279
21280 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21281
21282         * reflection.c: set virtual and raw size of section correctly.
21283         * threads.c: transfer domain information to newly created threads.
21284
21285 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21286
21287         * class.c: when instancing a class in a domain, load the default
21288         vaules for static fields from the constant table. Fix System.Enum to
21289         not be an enum.
21290         * icall.c: implement Object::GetType() internalcall. Implemented
21291         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21292         Fixed checking of binding flags in find_members().
21293         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21294         * reflection.c: handle enumerations when writing to the constant
21295         table. Use a different object cache for types.
21296
21297
21298 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21299
21300         * object.c (mono_object_isinst): fix for arrays
21301
21302         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21303
21304 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21305
21306         * object.c: don't use mprotect ()  and fix intern pool hash table
21307         lookup for big endian systems.
21308
21309 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21310
21311         * icall.c: change type_is_subtype_of () signature.
21312
21313 2002-02-21  Mark Crichton  <crichton@gimp.org>
21314
21315         * rand.c, rand.h: Added random number generator for
21316         System.Security.Cryptography classes.
21317
21318         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21319
21320         * icall.c: Added System.Security.Cryptography calls.
21321
21322 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21323
21324         * class.c, icall.c, metadata.c: better support for pointer types.
21325         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21326         * reflection.c: Add support for getting custom attrs for properties
21327         and simplify some code.
21328
21329 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21330
21331         * icall.c: change getToken () and add custom attribute GetBlob()helper
21332         method.
21333         * reflection.h: add custom attrs array to the reflection builder structures.
21334         * reflection.c: encode and emit custom attributes for all the relevant
21335         reflection objects. Cache fieldref and methodref tokens. Change
21336         mono_image_create_token() interface to take a MonoDynamicAssembly.
21337         More complete custom attributes decoder. Load custom attributes for
21338         Assembly, Field, Method and Constructor objects, too. Make the
21339         returned array an Attribute[] one, not object[]. Added
21340         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21341         custom attribute constructor.
21342
21343 2002-02-20  Dick Porter  <dick@ximian.com>
21344
21345         * icall.c:
21346         * rawbuffer.c:
21347         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21348         problem code out for now).
21349
21350 2002-02-19  Radek Doulik  <rodo@ximian.com>
21351
21352         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21353
21354 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21355
21356         * icall.c: register the GetCustomAttributes method.
21357         * object.c, object.h: add mono_string_new_len ().
21358         * reflection.h, reflection.c: added mono_runtime_invoke(),
21359         mono_install_runtime_invoke(). Added
21360         mono_reflection_get_custom_attrs () to load custom attributes and
21361         create the attribute objects.
21362
21363 2002-02-19  Dick Porter  <dick@ximian.com>
21364         * threads-dummy-types.c:
21365         * threads-dummy-types.h:
21366         * threads-dummy.c:
21367         * threads-dummy.h:
21368         * threads-pthread-types.c:
21369         * threads-pthread-types.h:
21370         * threads-pthread.c:
21371         * threads-pthread.h:  Deleted obsolete files
21372
21373 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21374
21375         * class.c (mono_class_vtable): runtime init the class when we
21376         allocate static class data.
21377
21378         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21379
21380         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21381         and String - but we will need generic marshalling support in the
21382         future. 
21383         (mono_init): set the domain name in a ms compatible way
21384
21385         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21386         String[].
21387
21388 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21389
21390         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21391         for sizes
21392
21393         * appdomain.c (mono_domain_unload): impl.
21394
21395 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21396
21397         * appdomain.c, object.c: fix intern pool implementation.
21398         * class.c: fix alignment code.
21399
21400 2002-02-16  Radek Doulik  <rodo@ximian.com>
21401
21402         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21403         and s2 > s1, just copy lower bytes to be compatible with little
21404         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21405         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21406
21407         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21408         force big_endian to be 1 for big endian machines 
21409         (ves_icall_iconv_new_decoder): ditto
21410
21411 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21412
21413         * socket-io.c (convert_sockopt_level_and_name): If the system
21414         doesn't define SOL_IP or SOL_TCP, get them by hand using
21415         getprotobyname() and caching the values (because this could be a
21416         slow operation).
21417         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21418         Use the appropriate struct when the system does support it. Ie,
21419         not all systems have struct ip_mreqn so use struct ip_mreq when
21420         appropriate.
21421
21422 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21423
21424         * reflection.c: handle finally clauses.
21425
21426 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21427
21428         * socket-io.c: use g_snprintf() instead of snprintf.
21429
21430 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21431
21432         * reflection.c (mono_param_get_objects): Cast second argument to
21433         mono_method_get_param_names to a const char** to silence the
21434         compiler warning.
21435
21436         * appdomain.c (mono_domain_assembly_open): Put parens around the
21437         truth statement in the for-loop.
21438
21439         * unicode.c (iconv_convert): Got rid of a compiler warning about
21440         int i being unused when the system has a new iconv.
21441         (iconv_get_length): Same.
21442
21443         * image.c (load_class_names): Cast the second argument to
21444         g_hash_table_insert() to char* to hush compiler warnings about the
21445         arg being a const.
21446         (mono_image_open): Same here.
21447
21448         * socket-io.c: Don't conditionally include sys/filio.h or
21449         sys/sockio.h here anymore since we now get them from
21450         io-layer/io-layer.h
21451         (inet_pton): If the system doesn't support inet_aton, implement
21452         using inet_addr and also #define INADDR_NONE if it isn't defined
21453         by the system.
21454
21455 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21456
21457         * metadata.c, metadata.h: added function to get packing and size info
21458         of a typedef.
21459         * reflection.h, reflection.c: handle field RVA data. Save info about
21460         the table layout if needed. Assign typedef indexes to all the types
21461         before dumping the info about them to avoid forward reference problems.
21462
21463 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21464
21465         * socket-io.c (convert_sockopt_level_and_name): ifdef
21466         SO_ACCEPTCONN because it is not defined on my system (old debian)
21467
21468 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21469
21470         * opcode.c: use stddef.h to get NULL.
21471
21472 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21473
21474         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21475         for FIONBIO, FIONREAD and SIOCATMARK.
21476         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21477         define INADDR_NONE and besides, inet_addr() is deprecated and
21478         should not be used. Use inet_pton() instead - it also has the
21479         added bonus that it can easily handle IPv6 addresses as well.
21480         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21481
21482 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21483
21484         * decimal.c: remove _MSC_VER conditional.
21485
21486 2002-02-13  Dick Porter  <dick@ximian.com>
21487
21488         * socket-io.c: 
21489         * icall.c: Internal calls for Blocking, Select, Shutdown,
21490         GetSocketOption and SetSocketOption
21491
21492 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21493
21494         * assembly.cs: better resolver: use it instead of some kludgy
21495         code.
21496
21497 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21498
21499         * reflection.c: the best way to speed-up the compiler is to avoid
21500         infinite loops.
21501
21502 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21503
21504         * class.c (mono_class_vtable): changed the object layout
21505         (obj->vtable->class). 
21506         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21507
21508 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21509
21510         * assembly.c: look for assemblies in the assembly dir, too.
21511
21512 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21513
21514         * class.c: fix thinko in mono_class_from_type().
21515
21516 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21517
21518         * exception.h, exception.c: added TypeLoadException.
21519         * object.h, object.c: added mono_array_clone ().
21520         * icall.c: handle throwOnError in AssemblyGetType().
21521         Added Array.Clone().
21522         * opcode.h, opcode.c: use a single value for the opcode val.
21523         Compile fix for non-gcc compilers.
21524
21525 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21526
21527         * opcodes.c, opcodes.h: export interesting info about opcodes.
21528
21529 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21530
21531         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21532         icalls. 
21533
21534         * class.c (class_compute_field_layout): set element_class for enums
21535         (mono_class_create_from_typedef): set element_class for normal classes
21536
21537         * icall.c (ves_icall_System_Enum_get_value): impl.
21538
21539         * class.c (mono_class_create_from_typedef): do not set valuetype
21540         flag for System.ValueType and System.Enum
21541
21542 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21543
21544         * unicode.c (iconv_convert): fix big endian problem.
21545
21546 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21547
21548         * class.c: add asserts if we are ever going to scribble over memory.
21549         * socket-io.c: not all systems have AF_IRDA defined.
21550
21551 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21552
21553         * class.c (class_compute_field_layout): do not consider static
21554         fields to compute alignment
21555
21556 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21557
21558         * appdomain.c (mono_appdomain_get): impl.
21559         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21560
21561 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21562
21563         * icall.c: ignore "file://" prefix when loading an assembly.
21564
21565 2002-01-23  Dick Porter  <dick@ximian.com>
21566
21567         * socket-io.c:
21568         * icall.c:
21569         * Makefile.am: Added socket support
21570
21571 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21572
21573         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21574         code back.  This should return the assemblies that are loaded by
21575         the runtime on behalf of an application domain. 
21576
21577         The current implementation is still broken, it just returns every
21578         assembly loaded, but until we get real applications domain this
21579         will do.
21580
21581 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21582
21583         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21584         AppDomain object.
21585
21586 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21587
21588         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21589         the mono_class_from_name lookup.
21590         (ves_icall_get_parameter_info): ditto.
21591         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21592         method.
21593         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21594
21595 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21596
21597         * class.c: load also nested classes on class init.
21598         System.ValueType instance methods gets passed boxed
21599         values, unless methods in derived classed that get a pointer to the
21600         data.
21601         * icall.c: use better name parsing code in GetType().
21602         * image.c, image.h: add mono_image_loaded ().
21603         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21604         * reflection.c, reflection.h: added mono_reflection_parse_type().
21605
21606 2002-01-22  Veronica De Santis <veron78@interfree.it>
21607
21608         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21609         * threads.c : Added the implementation of internal calls for events
21610         * threads.h : Added prototypes of internal calls for events
21611         
21612 2002-01-21  Radek Doulik  <rodo@ximian.com>
21613
21614         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21615
21616 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21617
21618         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21619         (mono_class_value_size): use min_align
21620
21621 2002-01-20  Dick Porter  <dick@ximian.com>
21622
21623         * threads.h:
21624         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21625         so it compiles on w32.
21626
21627 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21628
21629         * metadata.c (mono_type_stack_size): impl.
21630
21631         * class.c (mono_class_get_field): impl. memberref token
21632
21633 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21634
21635         * icall.h : Added the internal calls mapping for CreateMutex_internal
21636                     and ReleaseMutex_internal.
21637         * threads.h : Added the prototype of mutexes internal calls.
21638         * threads.c : Added the implementations of mutexes internal calls.
21639
21640 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21641
21642         * metaparse.h: removed unused file.
21643         * reflection.c, reflection.h: added stream_data_align () function 
21644         to align data in streams and keep stream aligned. Add support for
21645         exception support in method headers.
21646
21647 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21648
21649         * unicode.c: make iconv_convert () return the number of bytess written
21650         in the output buffer.
21651
21652 2002-01-15  Dick Porter  <dick@ximian.com>
21653         * threads.c: Make the runtime's idea of infinite timeouts coincide
21654         with the class library's
21655
21656         Fix a particularly egregious bug in mono_thread_cleanup(). That
21657         code was so utterly bogus it must have been written on a Monday.
21658
21659 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21660
21661         * reflection.h: add subtypes field to TypeBuilder.
21662         * reflection.c: encode constants for literal fields.
21663         Handle subtypes. Fix user string token (and add a zero byte)
21664         at the end.
21665         
21666 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21667
21668         * class.c (mono_class_init): bug fix: assign slot numbers for
21669         abstract methods.
21670
21671 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21672
21673         * reflection.c: don't try to output a code RVA for abstract methods.
21674         Small fixes for method header format. Output parameter info to the
21675         ParamDef table. Save method overriding info to MethodImpl table.
21676         Fix property support. Allow typedef.extends to be a type in the
21677         building assembly.
21678         * verify.c: fix off-by-one error.
21679
21680 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21681
21682         * class.c: fix mono_class_from_mono_type () for szarray types.
21683         Remove unused cache check in mono_class_from_type_spec().
21684         * icall.c: *type_from_name () functions handle simple arrays and byref.
21685         * reflection.c: handle byref and szarray types. Handle methods without
21686         body (gets P/Invoke compilation working). Handle types and fields in
21687         get_token ().
21688         * reflection.h: add rank to MonoTypeInfo.
21689
21690 2002-01-10  Dick Porter  <dick@ximian.com>
21691
21692         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21693         internal calls
21694
21695 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21696
21697         * icall.c: initialize class in type_from_handle ().
21698         Loop also in parent classes for get_method ().
21699         * reflection.c: properly encode class and valuetype types.
21700         Start on encoding TypeBuilder types. Handle fieldrefs.
21701         Use correct length when registering a user string.
21702         Handle ConstructorBuilder and MonoMethod in get_token ().
21703         Make mono_type_get_object () aware of cached types.
21704         * object.c: back out change to mono_string_new ().
21705
21706 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21707         * object.c: mono_string_new should return a NULL when the string 
21708         passed in is NULL -- not try to deference it.
21709         
21710 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21711
21712         * icall.c: hack to make IsSubType work for TypeBuilders.
21713         * reflection.c: emit constructors before methods.
21714         Retrieve param names in mono_param_get_objects().
21715
21716 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21717
21718         * Makefile.am: fix list of headers and sources so automake 1.5
21719         doesn't complain. Removed \# at end of list.
21720
21721 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21722
21723         * reflection.c: get token for a method ref. Set return type of
21724         constructor to void.
21725         * loader.c: debug message.
21726         * class.c: typo fix.
21727
21728 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21729
21730         * icall.c: fix array init with rank > 1. FindMembers
21731         loops in parent class as well.
21732         * image.c: do not insert nested types in name cache.
21733         * reflection.c: warning fix.
21734         * reflection.h: add override method (for interface impl).
21735
21736 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21737
21738         * metadata.c: fix customattr decoding.
21739
21740 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21741
21742         * rawbuffer.cs: Added native Win32 implementation, avoids using
21743         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21744
21745 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21746
21747         * class.c: make the low-level routines handle the cache.
21748
21749 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21750
21751         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21752
21753 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21754
21755         * class.c: fix mono_array_element_size() for objects.
21756         * class.h, class.c: add properties to MonoClass and load them
21757         at init time.
21758         * icall.c: check with isinst() when assigning a value to an array
21759         instead of requiring the classes to match exactly.
21760         Implemented icall for System.Type::GetType().
21761         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21762         enums. Handle bindingflags when looking for methods and fields.
21763         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21764         and mono_metadata_methods_from_property().
21765         * reflection.h, reflection.c: added structures for propreties,
21766         parameters and enums. Implemented mono_property_get_object() and
21767         mono_param_get_objects().
21768
21769 2001-12-18  Dick Porter  <dick@ximian.com>
21770
21771         * file-io.c: Use mono_string_to_utf16() instead of
21772         mono_string_chars()
21773
21774         * object.c: Added mono_string_to_utf16(), which copies the non
21775         NULL-terminated MonoString into a new double-null-terminated
21776         buffer.
21777
21778 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21779
21780         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21781
21782 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21783
21784         * file-io.c: raise exceptions if handle is invalid.
21785
21786 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21787
21788         * assembly.c: yet another check for mscorlib.
21789         * class.c, class.h: load nesting info for classes.
21790         * icall.c: many new functions to support the Reflection classes.
21791         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21792         * reflection.h, reflection.c: mono_image_create_token(),
21793         mono_assembly_get_object(), mono_type_get_object(),
21794         mono_method_get_object(), mono_field_get_object(): methods to return
21795         objects that parallel the C representation of assemblies, types,
21796         methods, fields.
21797
21798 2001-12-11  Dick Porter  <dick@ximian.com>
21799
21800         * icall.c:
21801         * file-io.c: Internal calls for file IO.
21802
21803 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21804
21805         * tabledefs.h: missing FileAttributes.
21806         * verify.h, verify.c: use is_valid_string () to simplify and check for
21807         valid strings more correctly. Fix warnings and speeling.
21808         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21809         Check code: branches, maxstack, method calls.
21810
21811 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21812
21813         * object.c (mono_object_allocate): removed static, so that the jit
21814         can allocate value types.
21815
21816         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21817
21818 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21819
21820         * class.c: init enum types right away and register the
21821         token->MonoClass map in mono_class_create_from_typedef ().
21822         * verify.h, verify.c: first cut of the verifier.
21823         * pedump.c: add --verify switch to verify metadata tables.
21824         * tabledefs.h: add some missing enums.
21825
21826 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21827
21828         * class.c (mono_install_runtime_class_init): impl.
21829         (mono_class_init): renamed mono_class_metadata_init to
21830         mono_class_init, also removed the metadata_inited flag
21831
21832         * object.c (mono_object_isinst): use faster algorithm
21833
21834 2001-11-30  Radek Doulik  <rodo@ximian.com>
21835
21836         * mono-endian.h: reverted last change
21837         added function prototypes
21838
21839         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21840         add mono-endian.c back
21841
21842         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21843         for unaligned access, I've mistaked it with endianess. I am
21844         sorry.
21845         (mono_read16): fix reverted endianess
21846         (mono_read64): ditto
21847         (mono_read32): ditto
21848
21849 2001-11-30  Dick Porter  <dick@ximian.com>
21850
21851         * exception.c: Implement mono_exception_from_name()
21852
21853 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21854
21855         * metadata.h, metadata.c: remove params_size and locals_size and their
21856         calculation from the metadata code: they are only usefult to the
21857         interp.
21858
21859 2001-11-29  Radek Doulik  <rodo@ximian.com>
21860
21861         * object.c (mono_ldstr): swap bytes here, it's probably not the
21862         best place, but works for me now, I'll redo it once I know mono
21863         better, also note that I add PROT_WRITE and don't reset back, also
21864         note that it's only affects big endians, so x86 should be OK
21865
21866         * mono-endian.h (read16): use just glib macros for both endians
21867
21868         * mono-endian.c: removed as glib macros are used in in
21869         mono-endian.h so we don't need to care about endianess for read
21870         macros as glib does that for us already
21871
21872 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21873
21874         * class.h, class.h: take minimum alignment into consideration so
21875         that the fields of a class remain aligned also when in an array.
21876
21877 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21878
21879         * loader.h, loader.c: add mono_method_get_param_names().
21880         * class.c: 0-init class fields.
21881
21882 2001-11-26  Dick Porter  <dick@ximian.com>
21883
21884         * icall.c:
21885         * threads-types.h:
21886         * threads.c: New file that handles System.Threading on all platforms
21887
21888         * object.c: 
21889         * object.h: Remove the synchronisation struct from MonoObject,
21890         replace it with a pointer that gets initialised on demand
21891
21892         * Makefile.am: Replace all the system-specific threading code with
21893         a single file that uses the new wrapper library
21894
21895 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21896
21897         * class.c, class.h: add mono_install_trampoline() so that the runtime
21898         can register a function to create a trampoline: removes the ugly
21899         requirement that a runtime needed to export arch_create_jit_trampoline.
21900         * object.h, object.c: added mono_install_handler() so that the runtime
21901         can install an handler for exceptions generated in C code (with
21902         mono_raise_exception()). Added C struct for System.Delegate.
21903         * pedump.c: removed arch_create_jit_trampoline.
21904         * reflection.c: some cleanups to allow registering user strings and
21905         later getting a token for methodrefs and fieldrefs before the assembly
21906         is built.
21907         * row-indexes.h: updates and fixes from the new ECMA specs.
21908
21909 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21910
21911         * class.h, class.c: add enum_basetype field to MonoClass.
21912         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21913         to get index in the constant table reated to a field, param or
21914         property.
21915         * reflection.h, reflection.c: handle constructors. Set public-key and
21916         version number of the built assembly to 0.
21917         * row-indexes.h: update from new ECMA spec.
21918
21919 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21920
21921         * class.h, class.c: add a max_interface_id to MonoClass.
21922         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21923         since it's used to do that. Added mono_type_type_from_obj().
21924         Make GetType() return NULL instead of segfaulting if the type was not
21925         found. Handle simple arrays in assQualifiedName.
21926         * object.h: add a struct to represent an Exception.
21927         * reflection.c: output call convention in method signature.
21928         Add code to support P/Invoke methods and fixed offsets for fields.
21929
21930 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21931
21932         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21933         the value.
21934         * icall.c: use mono_array_addr instead of array->vector: fixes the
21935         reflection image writing.
21936         * reflection.c: init call convention byte to 0 in method signature.
21937         Encode the property signature. Don't output property-related methods
21938         twice. Really process the properties for a type (don't cast a field to
21939         a property, my mom always told me that).
21940         Fix 64 bit issues in pointer alignment in a different and more
21941         readable way.
21942
21943 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21944
21945         * loader.h: Removed type class from MonoDefaults, added monotype
21946
21947         * loader.c: Loaded MonoType, removed loading of Type
21948
21949         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21950         and fills in System.Type._impl with a RuntimeTypeHandle rather
21951         than the actual MonoClass *
21952
21953         (ves_icall_type_from_handle): change from type_class to
21954         monotype_class
21955
21956         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21957         implemented
21958
21959         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21960         implemented
21961
21962         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21963
21964         (ves_icall_System_Reflection_Assembly_GetType): implemented
21965
21966         (ves_icall_System_MonoType_assQualifiedName): implemented
21967
21968         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21969
21970 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21971
21972         * assembly.c (mono_assembly_open): Implement a cache for the
21973         assemblies. 
21974
21975         (mono_assembly_close): only destroy the assembly when the last
21976         reference is gone.
21977         
21978 2001-11-09  Dick Porter  <dick@ximian.com>
21979
21980         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21981
21982 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21983
21984         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21985
21986 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21987
21988         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21989         from Martin Weindel.
21990         * object.h: add mono_string_chars ().
21991
21992 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21993
21994         * reflection.c (build_compressed_metadata): Eliminates warnings
21995         and uses 64-bit clean code.
21996
21997         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21998         (mono_type_equal): Change signature to eliminate warnings.
21999
22000 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22001
22002         * icall.c, loader.c: remove the internalcall array constructors.
22003         Changes to match the new MonoArray structure.
22004         * object.h, object.c: an array object doesn't allocate an extra
22005         vector. Add mono_array_new_full () to create jagged arrays easily.
22006
22007 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22008
22009         * metadata.h, metadata.c: add mono_metadata_field_info () to
22010         retreive all the info about a field from vairous tables.
22011         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
22012         * class.h, class.c: augment MonoClassField with more info.
22013         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
22014         policy and load a field's RVA if needed.
22015
22016 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
22017
22018         * class.c (mono_class_metadata_init): create a trampoline for all
22019         virtual functions instead of actually compiling them.
22020
22021 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
22022
22023         * class.h, class.c: include name in MonoClassField.
22024         * class.c: fix fundamental type of System.Object and System.String.
22025         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
22026         tokens in ldtoken.
22027         * icall.c: remove internalcalls for the Reflection stuff that is now
22028         done in C# code.
22029         * loader.c: mono_field_from_memberref () implementation.
22030         * mono-endian.c: thinko (s/struct/union/g).
22031         * object.c, object.h: make the mono_string_* prototypes actually use
22032         MonoString instead of MonoObject.
22033         * reflection.c, reflection.h: updates for changes in the reflection
22034         code in corlib: we use C structures that map to the actual C# classes.
22035         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
22036         fat method header if needed and use the info from the ILGenerator for
22037         methods. Handle fields in types. Misc fixes.
22038
22039 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
22040
22041         * class.c (mono_class_metadata_init): bug fix: always allocate
22042         space for static class data
22043
22044 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
22045
22046         * class.c (mono_compute_relative_numbering): use relative
22047         numbering to support fast runtime type checks.
22048
22049 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
22050
22051         * class.c (mono_class_create_from_typeref): added debugging output
22052         to print class name when MonoDummy is returned instead of real class
22053
22054 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
22055
22056         * class.c (mono_class_metadata_init): interface offset table now
22057         contains pointers into the vtable - this is more efficient for the jit
22058
22059 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
22060
22061         * class.c (mono_class_metadata_init): use a temporary vtable (the
22062         old algorithm only worked for the interpreter, but not for the jit)
22063
22064 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
22065
22066         * loader.c (method_from_memberref): use mono_class_get to get the
22067         class of an array instead of using System.Array directly.
22068         (mono_get_method): also add MEMBERREF methods to the method cache
22069         which usefull for arrays.
22070
22071 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
22072
22073         * pedump.c (arch_compile_method): added to compute vtable entry
22074
22075         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
22076         number of interfaces.
22077         
22078         * class.h: merged MonoArrayClass into MonoClass
22079
22080         * class.c (mono_class_create_from_typedef): compute the vtable size and
22081         allocate space to include the vtable inside MonoClass
22082         (mono_class_metadata_init): initialize the vtable
22083
22084 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
22085
22086         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
22087         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
22088         * image.c: endian fixes by Laurent Rioux.
22089         * object.h, object.c: rename MonoStringObject to MonoString and
22090         MonoArrayObject to MonoArray. Change some function names to conform to
22091         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
22092         guint16* as first argument, so don't use char*.
22093         Provide macros to do the interesting things on arrays in a portable way.
22094         * threads-pthread.c: updates for the API changes and #include <sched.h>
22095         (required for sched_yield()).
22096         * icall.c: updates for the API changes above.
22097         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
22098         platforms that need them.
22099
22100 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22101
22102         * class.c: set the correct type for all the fundamental
22103         type when loading the class.
22104
22105 2001-10-05  Dick Porter  <dick@ximian.com>
22106
22107         * threads-pthread.c (pthread_mutex_timedlock): Simple
22108         compatibility version for C libraries that lack this call.
22109
22110 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22111
22112         * class.c: MonoTypes stored in MonoClass are stored as
22113         fundamental MonoTypes when the class represents a
22114         fundamental type (System.Int32, ...).
22115         The TypeHandle return by ldtoken is a MonoType*.
22116         * icall.c: ves_icall_get_data_chunk () write out all the
22117         PE/COFF stuff. Implement ves_icall_define_method (),
22118         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22119         * image.c: properly skip unknown streams.
22120         * loader.h, loader.c: add type_class to mono_defaults.
22121         * metadata.c, metadata.h: export compute_size () as
22122         mono_metadata_compute_size () with a better interface.
22123         Typo and C&P fixes.
22124         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22125         * reflection.c, reflection.h: many cleanups, fixes, output method
22126         signatures and headers, typedef and typeref info, compress the metadata
22127         tables, output all the heap streams, cli header etc.
22128         * row-indexes.h: typo fixes.
22129
22130 2001-10-04  Dick Porter  <dick@ximian.com>
22131
22132         * object.h: Add a synchronisation mutex struct to MonoObject
22133
22134         * object.c (mono_new_object): Initialise the object
22135         synchronisation mutexes
22136
22137         * icall.c: System.Threading.Monitor internal calls
22138         
22139         * threads-pthread.h:
22140         * threads-pthread.c: System.Threading.Monitor internal calls
22141
22142         * threads-types.h: New file, includes the system-specific thread
22143         structures
22144         
22145         * threads-pthread-types.h:
22146         * threads-pthread-types.c: New files, handle pthread-specific
22147         synchronisation types
22148
22149         * threads-dummy-types.h: 
22150         * threads-dummy-types.c: New files of dummy support for
22151         thread-specific types
22152
22153         * metadata.c:
22154         * image.c:
22155         * pedump.c: include mono-endian.h not endian.h
22156         
22157         * Makefile.am: More threads files.
22158         Name mono-endian.h not endian.h
22159
22160 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22161
22162         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22163         stuff and implement a few more bits.
22164         * icall.c: a field needs to be dereferenced twice. Do not use the same
22165         name for two variables in the same scope.
22166         * image.c, image.h: cleanups.
22167
22168 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22169
22170         * class.c (mono_class_metadata_init): bug fix: compute the right size
22171
22172 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22173
22174         * icall.c: implemented some of the Reflection internalcalls.
22175         * image.c, image.h: start writing out the PE/COFF image.
22176         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22177         that does the reverse than decode_blob_size ().
22178         * object.c: use mono_metadata_encode_value (). Move here
22179         temporary implementation of mono_string_to_utf8 ().
22180         * rawbuffer.c: make malloc_map static.
22181
22182 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22183
22184         * metadata.c: fix type comparison for arrays.
22185         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22186         Added a couple of new classes to monodefaults.
22187         * icall.c: added a couple of Reflection-related internalcalls.
22188         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22189         Added a byval_arg MonoType to MonoClass.
22190
22191 2001-09-28  Dick Porter  <dick@ximian.com>
22192
22193         * icall.c:
22194         * threads-pthread.h: 
22195         * threads-pthread.c: Implemented internal calls for
22196         LocalDataStoreSlot operations.  Applied mutexes around all shared
22197         data.  Reworked the thread creation and Start() operations to
22198         avoid a race condition.
22199         
22200         * threads-dummy.h:
22201         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22202
22203 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22204
22205         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22206
22207 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22208
22209         * class.c, loader.c: warn and return NULL instead of erroring out.
22210         * icall.c: added System.AppDomain::getCurDomain().
22211         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22212
22213 2001-09-25  Dick Porter  <dick@ximian.com>
22214
22215         * threads-pthread.h:
22216         * threads-pthread.c: Implemented timed thread joining and added
22217         System.Threading.Thread::Join_internal internal call
22218
22219         * icall.c: Added System.Threading.Thread::Join_internal internal call
22220
22221         * threads-dummy.h:
22222         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22223
22224 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22225
22226         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22227         mono_string_intern () to implement the semantics of the ldstr opcode
22228         and the interning of System.Strings.
22229         * icall.c: provide hooks to make String::IsIntern and String::Intern
22230         internalcalls.
22231
22232 2001-09-23  Dick Porter  <dick@ximian.com>
22233
22234         * threads-dummy.c: 
22235         * threads-dummy.h: New files of dummy threading routines
22236
22237         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22238         support code based on system specifics
22239
22240         Rename PTHREAD_LIBS to THREAD_LIBS
22241         
22242 2001-09-23  Dick Porter  <dick@ximian.com>
22243
22244         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22245         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22246         internal calls.
22247         (mono_thread_init): Set up a Thread object instance to return when
22248         the main thread calls Thread.CurrentThread
22249         (mono_thread_cleanup): Wait for all subthreads to exit
22250
22251         * icall.c: New internal calls for System.Threading.Thread::Sleep
22252         (including Schedule) and CurrentThread
22253
22254         * threads.h: New file, to insulate thread-specific stuff from the
22255         rest of the code
22256
22257 2001-09-21  Dick Porter  <dick@ximian.com>
22258
22259         * threads-pthread.h: 
22260         * threads-pthread.c: New file, for handling pthreads-style
22261         threading support.  Start() now starts a new thread and executes
22262         the ThreadStart delegate instance.
22263
22264         * icall.c: Added the internalcall for
22265         System.Threading.Thread::Start_internal
22266
22267         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22268
22269 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22270
22271         * loader.c: work around the different signatures for delegates
22272         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22273
22274 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22275
22276         * class.h, class.c: add mono_class_get_field_from_name ().
22277         * *: Fix C comments and other ANSI C issues.
22278
22279 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22280
22281         * endian.h, assembly.c: fix some endianness issues.
22282
22283 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22284
22285         * loader.h, load.c: add delegate_class to mono_defaults.
22286         Handle runtime provided methods in mono_get_method ().
22287
22288 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22289
22290         * loader.c (mono_get_method): use pinvoke for internal call
22291
22292         * icall.c: use pinvoke for internal call
22293
22294         * loader.c (method_from_memberref): set the method name
22295
22296 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22297
22298         * metadata.c: help the compiler generate better code for
22299         mono_class_from_mono_type ().
22300
22301 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22302
22303         * class.c (mono_class_metadata_init): delayed computing of the
22304         class size to mono_class_metadata_init ()
22305
22306 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22307
22308         * class.c, class.h: add an interfaces member to MonoClass.
22309         * image.c, image.h: add assembly_name field to MonoImage
22310         from the assembly table.
22311         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22312
22313 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22314
22315         * class.c: Handle Array in mono_class_from_mono_type ().
22316         * metadata.c, pedump.c: some endian fixes.
22317
22318 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22319
22320         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22321         * metadata.c: fix small problem introduced with the latest commit.
22322
22323 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22324
22325         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22326         We don't need a MonoMetadata pointer anymore to compare signatures in
22327         mono_metadata_signature_equal (), update callers.
22328         Reduced memory usage an number of allocations for MonoMethodHeader and
22329         MonoMethodSignature.
22330
22331 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22332
22333         * metadata.c: added compare for szarray.
22334
22335 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22336
22337         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22338         and add a couple more types to it and mono_defaults. Give an hint on
22339         classes that need implementing in our corlib and are referenced
22340         in mscorlib.
22341
22342 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22343
22344         * class.h, class.c: keep track if a class is also an Enum.
22345         * loader.c: Implement a couple more types for use in libffi
22346         marshalling. Gives better diagnostics when failing to dlopen
22347         a library. Set method->klass for P/Invoke methods, too.
22348
22349 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22350
22351         * class.c, class.h: add a MonoType this_arg to MonoClass that
22352         represents a pointer to an object of the class' type that
22353         can be used by the interpreter and later the type cache.
22354         Add best guess alignment info for valuetype objects.
22355
22356 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22357
22358         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22359         into MonoType: one less level of indirection and allocation and
22360         simplifies quite a bit of code. Added cache for MonoTypes that are
22361         used frequently, so that we don't need to allocate them all the time.
22362
22363 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22364
22365         * class.c (mono_class_create_from_typedef): System.Enum is also a
22366         value type, although it does not derive from System.ValueType
22367         (maybe a bug in the ms compiler?)
22368
22369         * metadata.c (mono_type_size): return the right size for value types
22370
22371         * loader.c (mono_get_method): only initialize method header if not abstract
22372
22373         * class.c (mono_class_from_mono_type): use mono_default values. 
22374
22375 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22376
22377         * *: use MonoClass pointers instead of <type_tokens>
22378         
22379         * class.h: new flag: metadata_inited.
22380
22381         * class.c (mono_class_metadata_init): impl.
22382         (mono_class_instance_size): impl.
22383         (mono_class_data_size): impl.
22384
22385 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22386
22387         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22388         MonoClass now has the name and name_space fields. 
22389         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22390         mono_get_method () takes and optional MonoClass as argument.
22391         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22392         instead that takes advantage of a map from class names to typedef
22393         tokens in MonoImage.
22394
22395 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22396
22397         * metadata.c: zero is not a valid alignment boundary.
22398         Merge MONO_TYPE_VOID in default decoding code.
22399
22400 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22401
22402         * image.h: merged MonoMetadata into MonoImage
22403
22404         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22405         identify the type of elements.
22406
22407 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22408
22409         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22410         * cil-coff.h: split MonoMSDOSHeader and add size info.
22411         * image.c: add some consistency checks.
22412         * metadata.c: fix row size computation: one programmer
22413         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22414         add explanation for the locator routine.
22415         Fix decoding of size in method header.
22416         
22417 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22418
22419         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22420         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22421         function from gnome-libs.  This uses the right path separator
22422         based on the OS, and also works around a bug in some systems where
22423         a double slash is not allowed. 
22424         (default_assembly_name_resolver): Use g_concat_dir_and_file
22425         (mono_assembly_open): ditto.
22426
22427 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22428
22429         * metadata.c (mono_metadata_signature_equal): impl.
22430
22431         * *: void is now a realy MonoType (instead of using NULL)
22432         
22433         * metadata.c (do_mono_metadata_parse_type): use
22434         mono_metadata_parse_type to parse void value.
22435
22436 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22437
22438         * metadata.c, metadata.h: in the signature and method header store
22439         only the space required for holding the loca vars and incoming arguments.
22440
22441 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22442
22443         * metadata.c (do_mono_metadata_parse_type): treat void like any
22444         other type (instead of assigning NULL);
22445
22446 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22447
22448         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22449
22450 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22451
22452         * image.c (do_mono_image_open): added a cache for arrays.
22453
22454 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22455
22456         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22457         decode a single column from a row in a metadata table and changes
22458         to take advantage of it in the typedef locator (gives a nice speed up).
22459         Store offset info for function params.
22460
22461 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22462
22463         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22464
22465 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22466
22467         * assembly.c: how could mono_assembly_close () had ever worked?
22468         * metadata.c, metadata.h: provide offset info for local vars.
22469         Implement mono_type_size () to take care of alignment as well
22470         as size (it was mono_field_type_size in cli/class.c before).
22471
22472 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22473
22474         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22475
22476         * assembly.h (CORLIB_NAME): set to corlib.dll
22477
22478         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22479
22480 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22481
22482         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22483         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22484         tokentype.h: massive namespace cleanup.
22485
22486 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22487
22488         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22489
22490 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22491
22492         * metadata.c (mono_metadata_free_type): added check for type !=
22493         NULL (void) before calling mono_metadata_free_type()
22494
22495 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22496
22497         * metadata.h, row_indexes.h: added header with enumerations to use
22498         to index in the columns from tables in metadata and to decode coded
22499         tokens: we should start using this instead of embedding magic numbers
22500         all over the code.
22501
22502 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22503
22504         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22505         Move metadata_t info from cli_image_info_t to MonoImage, where
22506         it's easily accessible. Changed all the uses accordingly.
22507         Added the method and class caches to MonoImage.
22508         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22509         and mono_metadata_decode_value () signature to be more consistent
22510         with the other parse functions (and simplify code). Taken advantage
22511         of zero-length array allocation with GCC. Removed reduntant (and
22512         wrong) MonoFieldType struct and use MonoParam instead. Changed
22513         mono_metadata_parse_field_type () to use common code for parsing.
22514         Added mono_metadata_typedef_from_field () and
22515         mono_metadata_typedef_from_method () to lookup a typedef index from a
22516         field or method token.
22517         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22518
22519 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22520
22521         * metadata.c (mono_metadata_parse_field_type): Implement. 
22522         (do_mono_metadata_parse_type): Split engine from
22523         mono_metadata_parse_type, so that we can create smaller structures
22524         for things that just have one pointer to the MonoType (look at
22525         the MonoFieldType)
22526
22527 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22528
22529         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22530         as Jan Gray found out, it is incorrect. 
22531
22532 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22533
22534         * assembly.c: Implement asssembly loading.  This loads an image
22535         and loads all the referenced assemblies.  Come to think of it, we
22536         could always do lazy loading of the assemblies. 
22537
22538         * image.c (mono_image_open): Keep loaded images in a hashtable.
22539
22540         * image.h (MonoImage): Add reference count.
22541
22542 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22543
22544         * assembly.c (mono_assembly_open): Keep track of the file name in
22545         case the assembly has no ASSEMBLY table.
22546
22547         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22548         from get.c here.
22549
22550 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22551
22552         * metadata.c, metadata.h: decode local vars in method header
22553         parse function. Change callers accordingly.
22554
22555 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22556
22557         * metadata.h, cil-coff.h: protect against multiple inclusion.
22558         Added some new structures to hold information decoded from metadata:
22559         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22560         and relevant decoding/free functions.
22561         * metadata.c: implement decoding functions. Add warning for out of bounds
22562         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22563         all the info about a method signature and invocation. Remove check on
22564         uninitialized local var in parse_mh() and fix memory leak.
22565
22566 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22567
22568         * metadata.h: More macros.
22569
22570         * tokentype.h: New file.
22571
22572 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22573
22574         * assembly.c: added a consistency check and initialize
22575         some structures with g_new0().
22576         * metadata.c: fixed a couple more bugs in table size computation
22577         and add other checks for out-of bound access to metadata.
22578
22579 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22580
22581         * metatada.c: fix bugs computing table sizes. Spew a
22582         warning when index in string heap is out of bounds.
22583
22584 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22585
22586         * metadata.h: Add a couple of macros to manipulate tokens. 
22587
22588 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22589
22590         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22591         cli_section_tables).
22592
22593 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22594
22595         * metadata.c (mono_metadata_user_string): New function, provides
22596         access to the UserString heap. 
22597
22598 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22599
22600         * metadata.c: Add inline documentation.
22601
22602 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22603
22604         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22605         files. 
22606
22607 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22608
22609         * typeattr.h: New file, TypeAttribute flags. 
22610
22611 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22612
22613         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22614         mono_assembly_ensure_section): Section loading code.
22615         (load_section_tables): Load the sections.
22616
22617         * mono/metadata/metadata.c (mono_metadata_locate_token,
22618         mono_metadata_locate): Functions to locate the information
22619         definition given a token or a table and an index.
22620         (mono_metadata_compute_table_bases): New.
22621         (compute_size): New function to compute the sizes of the various
22622         tables.
22623
22624         * mono/metadata/metadata.h: Finish listing the different index
22625         types. 
22626
22627         * mono/metadata/pedump.c: Improve to dump new information.
22628
22629 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22630
22631         * mono/metadata/metadata.c: Entered all the tables matching
22632         Beta2. 
22633
22634         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22635
22636
22637