2007-08-30 Dick Porter <dick@ximian.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-08-30  Dick Porter  <dick@ximian.com>
2
3         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
4         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
5         81646.
6
7         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
8         instead of a monitor lock.  This means that monitor_try_enter and
9         co can set the thread state safely.
10         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11         thread_interrupt_requested, so interrupt actually works.
12
13         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
15         state accessor function
16
17 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
18
19         * cil-coff.h, image.c: updated assembly loader to cope with the
20         PE32+ 64 bit file format.
21
22 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
23
24         * assembly.c, class.c, domain.c, loader.c: remove useless
25         inclusion of cil-coff.h.
26
27 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
28
29         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
30         if interface is marked with CoClassAttribute. 
31    
32         Code is contributed under MIT/X11 license.
33
34 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
35
36         * sgen-gc.c: ensure no object from the to space is copied again or finalized
37         if it's seen twice in major collections.
38
39 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
40
41         * sgen-gc.c: big objects are not copied to the gray area, but they
42         need to be considered for scanning, too, if they are brought alive
43         by an object ready for finalizations or a survived one.
44
45 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
46
47         * sgen-gc.c: properly account the number of disappearing links when
48         they are nullified.
49
50 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
51
52         * sgen-gc.c: share the code to scan the registered roots between the
53         different types of collections.
54
55 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
56
57         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
58
59 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
60
61         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
62         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
63
64 2007-08-28  Mark Probst  <mark.probst@gmail.com>
65
66         * security-manager.c (mono_security_manager_get_methods):
67         LinkDemandSecurityException now has 2 arguments instead of 3.
68
69 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
70
71         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
72         platforms which need it.
73
74 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
75
76         * sgen-gc.c: unregister thread data structures with a pthread_key_t
77         dtor.
78
79 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
80
81         * threads.c: free the thread static data on thread exit.
82
83 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
84
85         * class.c: walk the hierarchy to find the generic definition for
86         a class (fixes runtime part of bug #82498).
87
88 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
89
90         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
91         ...
92
93         * image.c (mono_image_close): Here. Hopefully fixes #82510.
94
95 2007-08-24  Mark Probst  <mark.probst@gmail.com>
96
97         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
98
99 2007-08-24  Robert Jordan  <robertj@gmx.net>
100
101         * appdomain.c: don't perform the ':'->';' substitution on Win32.
102
103 2007-08-24  Jb Evain  <jbevain@novell.com>
104
105         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
106         for byref types.
107
108 2007-08-24  Mark Probst  <mark.probst@gmail.com>
109
110         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
111         #82286.
112
113 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
114
115         * assembly.c: Fix a warning.
116         
117 2007-08-23  Marek Habersack  <mhabersack@novell.com>
118
119         * appdomain.c: parse the <runtime> section looking for the probing
120         element with the 'privatePath' attribute, which sets additional
121         directories in which the runtime should look for assemblies.
122
123 2007-08-23  Robert Jordan  <robertj@gmx.net>
124
125         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
126         Fixes #82499.
127
128 2007-08-23  Martin Baulig  <martin@ximian.com>
129
130         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
131         _mono_debug_init_corlib() and remove it from the header file.
132
133 2007-08-23  Martin Baulig  <martin@ximian.com>
134
135         * mono-debug-debugger.c
136         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
137         don't notify the debugger about it.
138
139         * mono-debug-debugger.h
140         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
141
142 2007-08-23  Robert Jordan  <robertj@gmx.net>
143
144         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
145         Code is contributed under MIT/X11 license.
146
147 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
148
149         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
150
151 2007-08-22  Martin Baulig  <martin@ximian.com>
152
153         * mono-debug.c: Store debugging info on a per-domain basis and
154         free it on domain unload.  Add support for unloading symbol files.
155
156         * mono-debug.h
157         (MonoDebugList): New typedef.
158         (MonoSymbolTable):
159         - add `data_tables and `type_table'.
160         - replace 'symbol_files' and `num_symbol_files' with a
161           `MonoDebugList *'.
162         (mono_debug_data_table): Removed.
163         (mono_debug_list_add): New public function.
164         (mono_debug_list_remove): New public function.
165         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
166         (mono_debug_init_2_memory): Renamed into
167         mono_debug_open_image_from_memory().
168         (mono_debug_close_image): New public function.
169         (mono_debug_domain_create): Likewise.
170         (mono_debug_domain_unload): Likewise.
171         (MONO_DEBUGGER_VERSION): Bump to 60.
172
173         * mono-debug-debugger.h
174         (MonoDebuggerEvent):
175         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
176         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
177         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
178         - rename `THREAD_CREATED' and `THREAD_EXITED' into
179           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
180         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
181           meaning.
182         (mono_debugger_add_symbol_file): Removed.
183         (mono_debugger_add_type): Removed.
184         (mono_debugger_lookup_type): Removed.
185         (mono_debugger_lookup_assembly): Removed.
186
187         * domain.c
188         (mono_domain_create): Call mono_debug_domain_create().
189         (mono_init_internal): Call mono_debug_init_corlib().
190
191         * assembly.c
192         (mono_assembly_close): Call mono_debug_close_image().
193
194 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
195
196         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
197         mmap call.
198
199 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
200
201         * sgen-gc.c: ensure section->pin_queue_end is initialized
202         correctly when non pinning objects in the section have been found.
203
204 2007-08-22  Marek Habersack  <mhabersack@novell.com>
205
206         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
207         containing a list of directories separated by ':'. MSDN docs say
208         the directories should be separated with ';'. Part of a bugfix for
209         bug #81446
210
211 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
212
213         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
214         it should MonoType and not MonoClass.
215
216 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
217
218         * culture-info-table.h : regenerated.
219
220 2007-08-20  William Holmes  <billholmes54@gmail.com>
221
222         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
223          to call ReplaceFile Kernel32 on windows or in io-layer.
224         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
225         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
226          as an internal call.
227
228         Code is contributed under MIT/X11 license.
229
230 2007-08-20  Jb Evain  <jbevain@novell.com>
231
232         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
233         and MONO_EXCEPTION_FIELD_ACCESS.
234
235         * debug-helpers.[c|h]: new mono_field_full_name function.
236
237 2007-08-20  Mark Probst  <mark.probst@gmail.com>
238
239         * class.c: Removed class_security_level() and moved it to
240         security-core-clr.c.
241
242         * security-core-clr.c, security-core-clr.h: class_security_level()
243         is now public and renamed to mono_security_core_clr_class_level().
244         It also looks for security attributes in the classes a class is
245         nested in.
246
247 2007-08-20  Mark Probst  <mark.probst@gmail.com>
248
249         * security-core-clr.c, security-core-clr.h: CoreCLR security
250         utility functions.
251
252         * Makefile.am: Added security-core-clr.[ch].
253
254         * security-manager.c, security-manager.h: Functions and enum for
255         setting and getting the security mode.
256
257         * class.c: CoreCLR security checks.
258
259 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
260
261         * icall-def.h, process.c, process.h: implemented icall to get
262         user/system processor times.
263
264 2007-08-17  Mark Probst  <mark.probst@gmail.com>
265
266         * domain.c, threads.c, class-internals.h, domain-internals.h: New
267         reader-lock-free jit_info_table.
268
269 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
270
271         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
272
273         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
274
275         * object-internals.h (MonoException): Add missing _data member.
276
277 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
278
279         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
280         checking that only methods with matching qname or fqname are picked
281         from implemented interfaces.
282
283 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
284
285         * verify.c (do_newarr):added, do type verification of
286         newarr ops, push the right value on the eval stack.
287         * verify.c (mono_method_verify): use do_newarr
288
289
290 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
291
292         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
293         factored the common code into get_boxable_mono_type, which
294         is now using mono_type_get_full, this fixed byref related tests.
295
296 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
297
298         * class.c: added mono_type_get_full, this function has the same
299         behavior of mono_class_get_full but the returned MonoType has
300         all metadata of the associated token in case of a typespec token.
301         * class.c: added mono_type_retrieve_from_typespec, used by 
302         mono_type_get_full to retrieve the token type.
303         * class.c (mono_class_create_from_typespec): changed to use
304         mono_type_retrieve_from_typespec.
305         * class.c (mono_ldtoken): changed to use mono_type_get_full
306         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
307         * class-internals.h: exported mono_type_get_full for internal use.
308
309 2007-08-16  Jb Evain  <jbevain@novell.com>
310
311         * domain.c (supported_runtimes): add entry for
312         the 'moonlight' runtime version.
313
314 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
315
316         * verify.c (mono_method_verify): small typo sliped in.  
317
318 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
319
320         * verify.c (do_unbox_value): added, do type verification of
321         unboxing ops
322         * verify.c (mono_method_verify): use do_unbox_value
323
324
325 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
326
327         * verify.c (dump_stack_value): fixed typo, was printing string
328         instead of object on stack.
329         * verify.c (do_box_value): moved the byref check up as it leads
330         to invalid code and should be done earlier.
331         * verify.c: improved error messages for and ldobj
332
333 2007-08-15  William Holmes  <billholmes54@gmail.com>
334
335         * marshal.c (emit_marshal_custom): Omit the call to 
336           marshal_native_to_managed when calling native to managed 
337           and the argument is specified as an out argument.
338
339         Code is contributed under MIT/X11 license.
340
341 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
342
343         * verify.c: fixed the type checks for generics, function pointers and vectors.
344         Added type verification for ldobj and ldtoken. The verifier
345         would segfault if header or signature of a method contained references
346         to non-existant types.
347
348 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
349
350         * marshal.c (cominterop_get_ccw): Patch from
351         Bill Holmes to no walk up interface hierarchy. 
352         All parent methods should be present in the interface for COM.
353    
354         Code is contributed under MIT/X11 license.
355
356 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
357
358         * marshal.c (emit_marshal_com_interface): Patch from
359         Bill Holmes to handle COM Interfaces as return values
360         for native->managed calls.
361    
362         Code is contributed under MIT/X11 license.
363
364 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
365
366         * marshal.c (cominterop_get_idispatch_for_object): Implement
367         for runtime callable wrappers.
368    
369         Code is contributed under MIT/X11 license.
370
371 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
372
373         * pedump.c (main): changed from mono_init to mono_init_from_assembly
374         so 2.0 types are accessible
375
376
377 2007-08-13  Miguel de Icaza  <miguel@novell.com>
378
379         * domain.c (mono_init_internal): Call mono_assembly_load_friends
380         once we load mscorlib.   Due to the order in which we initialize,
381         the mono_assembly_load_full routine that loads mscorlib did not
382         load friends.   We now load it once we load the
383         mono_defaults.internals_visible_class class. 
384
385         * assembly.c: Expose the mono_load_friend_assemblies method.
386
387 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
388
389         * verify.c: improved the handling of boxing, better
390         type checking for unary ops and conversion. Fix bug
391         regarding managed pointer compatibility checking
392
393 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
394
395         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
396
397         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
398
399 2007-08-09  Raja R Harinath  <rharinath@novell.com>
400
401         * reflection.c (dup_type): Remove.
402         * class.c (dup_type): Remove.
403         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
404         instead of the dodgy 'dup_type'.
405         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
406         handle the case where 'dup_type' needed the second argument.
407
408 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
409
410         * domain.c: Fix a warning.
411
412 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
413
414         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
415         checking that methods with the same fqname are not overridden
416         with a method from an ancestor.
417
418 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
419
420         * threads.c (free_thread_static_data_helper): Avoid a crash if
421         thread->static_data is not yet set.
422
423 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
424
425         * marshal.c: Use correct image when emitting
426         native wrapper for COM calls.
427    
428         Code is contributed under MIT/X11 license.
429
430 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
431
432         * icall-def.h, security.c, security.h :
433           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
434
435 2007-08-07  Martin Baulig  <martin@ximian.com>
436
437         * mono-debug-debugger.h
438         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
439
440         * domain.c (mono_domain_free): Call
441         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
442
443 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
444
445         * verify.c (check_underflow, check_overflow): error message now returns IL offset
446         * verify.c (in_same_block): code should test if either offset is inside the clauses
447         * verify.c (mono_method_verify): push the exception into the eval stack of exception
448         and filter blocks
449
450 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
451
452         * image.c (mono_image_close): Fix a leak.
453
454         * object.c (mono_runtime_invoke_array): Avoid using alloca.
455
456         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
457
458 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
459
460         * domain.c, threads.c, threads-types.h: fix memory retention issue
461         with thread static variables not being cleared on domain unload.
462         Reuse thread static slots after domain unload.
463
464 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
465
466         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
467         nullable type.
468
469         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
470         now done in mono_runtime_invoke_array.
471
472         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
473         receiver is a nullable type.
474
475         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
476         generic parameter.
477
478 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
479
480         * marshal.c: Implement COM Objects as return type for 
481         managed->unmanaged calls. Added Release calls for COM Object
482         out/return values in managed->unmanaged calls.
483
484         Code is contributed under MIT/X11 license.
485
486 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
487
488         * threads.h, threads-type.h: move the hazard pointer declarations
489         to the private header.
490
491 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
492
493         * file-io.c, appdomain.c: memory leak fixes.
494
495 2007-08-02  Dick Porter  <dick@ximian.com>
496
497         * socket-io.c
498         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
499         SO_REUSEADDR setting into io-layer/sockets.c.
500
501 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
502
503         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
504         from Object when called on a generic parameter. Fixes #82211.
505
506 2007-08-01  Dick Porter  <dick@ximian.com>
507
508         * file-io.c (convert_share): Test FileShare values bit-by-bit.
509         Fixes bug 79250 yet again.
510
511 2007-07-30  Martin Baulig  <martin@ximian.com>
512
513         Merged the `debugger-dublin' branch.
514
515         * mono-debug.h
516         (MonoDebugDataTable): New typedef.
517         (MonoDebugMethodAddressList): New typedef.
518         (MonoDebugWrapperData): Removed.
519         (MonoDebugSymbolTable): Removed `current_data_table',
520         `current_data_table_size', `current_data_table_offset'.
521         (MonoDebugDataItemType): Moved into mono-debug.c.
522         (MonoDebugMethodJitInfo): Remove `address'.
523         (mono_debug_data_table): New global variable.
524         (mono_debug_lookup_method_addresses): New public function.
525         (mono_debug_find_method): Take a `MonoMethod *', not a
526         `MonoDebugMethodInfo *'.
527
528         * mono-debug.c: Drop support for the old symbol tables.
529
530 2007-06-28  Martin Baulig  <martin@ximian.com>
531
532         * mono-debug.c (mono_debug_debugger_version): New public variable.
533
534 2007-07-31  William Holmes  <billholmes54@gmail.com>
535
536         * metadata.c Changed mono_type_create_from_typespec to not insert
537           the type into the hash map until after
538           do_mono_metadata_parse_type has completed.
539         Fixes Bug #82194
540         Code is contributed under MIT/X11 license.
541
542 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
543
544         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
545         generic parameter. Fixes #82211.
546
547 2007-07-27  Jb Evain  <jbevain@novell.com>
548
549         * pedump.c (dump_metadata, dump_metadata_header): dump
550         versions contained in the metadata header.
551
552 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
553
554         * threads.c: register small_id_table with the GC.
555
556 2007-07-27  Mark Probst  <mark.probst@gmail.com>
557
558         * threads.c, threads.h, class-internals.h, object-internals.h:
559         Hazard pointers, to be used by lock-free parallel algorithms.
560
561 2007-07-26  Dick Porter  <dick@ximian.com>
562
563         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
564         routine on non-windows platforms, as I've not managed to think of
565         a non-kludgy way of doing this.  Finishes off bug 78739.
566
567 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
568
569         * object.c: properly setup interface_bitmap in proxy vtables.
570
571 2007-07-25  Marek Habersack  <mhabersack@novell.com>
572
573         * appdomain.c (get_shadow_assembly_location): do not use TickCount
574         to create unique shadow copy target directories, use the domain's
575         serial number instead. Each domain gets a unique target directory
576         that way.
577
578         * domain.c (mono_domain_create): added code to increment domain
579         shadow copy serial number and cache the value in the current
580         domain structure.
581
582         * domain-internals.h (struct _MonoDomain): added a new field -
583         shadow_serial to hold the serial number used in generation of
584         shadow-copy directories. This is to make sure that the directory
585         name is unique for each and every domain created. We avoid a race
586         condition with overriding assemblies already in use by other app
587         domains.
588
589 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
590
591         * class.c (mono_bounded_array_class_get): fixed memory leak when 
592         binding generic parameters.
593
594 2007-07-24  Raja R Harinath  <rharinath@novell.com>
595
596         * metadata.c (do_mono_metadata_parse_generic_class): Use
597         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
598         error.
599
600 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
601
602         * loader.c, class-internals.h, reflection.c: removed the per-method
603         generics hashtable: we use the global one through the call of
604         mono_class_inflate_generic_method ().
605
606 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
607
608         * class.c, metadata.c, class-internals.h: introduce yet another
609         generics global cache for inflated methods (fixes 98% of the perf
610         issue in bug #81806).
611
612 2007-07-23  Raja R Harinath  <rharinath@novell.com>
613
614         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
615         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
616         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
617         return a MonoGenericInst containing (a copy) of those types.
618         (mono_metadata_inflate_generic_inst): Update to changes.
619         (mono_metadata_parse_generic_inst): Likewise.
620         (mono_get_shared_generic_inst): Likewise.
621         * reflection.c (mono_class_bind_generic_parameters): Likewise.
622         (mono_reflection_bind_generic_method_parameters): Likewise.
623         * metadata-internals.h: Likewise.
624         * icall.c (free_generic_context): Kill.
625         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
626
627         * reflection.c (reflection_methodbuilder_to_mono_method): Use
628         mono_metadata_type_dup.
629         * marshal.c (mono_mb_create_method): Likewise.
630
631         * metadata.c (mono_metadata_type_dup): Rename from
632         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
633         MonoImage.  Handle a few more cases, esp. when no mempool is given.
634         * marshal.c, metadata-internals.h: Update to changes.
635
636 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
637
638         * class.c: fixed a small leak for array classes and removed warning.
639
640 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
641
642         * loader.c (mono_method_get_param_token): Make this work on generic methods.
643         Return 0x8000000 for return parameters. Fixes #82161.
644
645 2007-07-21  Marek Habersack  <grendello@gmail.com>
646
647         * appdomain.c (get_shadow_assembly_location): append the current
648         ticks value to the path. Avoids overwriting the same assemblies by
649         several threads at the same time.
650
651 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
652         and Raja R Harinath  <rharinath@novell.com>
653
654         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
655         Simplify slightly.
656         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
657         property for testing if a method is a generic method definition.
658
659 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
660
661         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
662
663 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
664
665         * verify.c: used function from private branch, reverted to the one in class.h 
666
667 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
668
669         * verify.c: a typo slipped in and the code wont compile
670
671 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
672
673         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
674         disabled box instruction as it is doing the wrong thing
675         improved stack dump messages, now it is easier to debug type related issues
676
677
678 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
679
680         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
681
682 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
683
684         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
685         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
686         grouped with class and valuetype. This change will simply 
687         the code as it should be handled just like unmanaged pointers.
688
689 2007-07-19  Mark Probst  <mark.probst@gmail.com>
690
691         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
692
693 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
694
695         * verify.c: several stack merge issues fixed, reference comparisons now
696         check the type size. strict type check now works correctly.
697         added more uses of IS_MANAGED_POINTER macro.
698         fixed issues pointed by running the test suite against .net.
699         
700
701 2007-07-19  Mark Probst  <mark.probst@gmail.com>
702
703         * class.c, loader.c, class-internals.h: Removed the
704         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
705         defines.
706
707         * icall.c: Better error checking in some internal reflection
708         methods.
709
710 2007-07-18  William Holmes  <billholmes54@gmail.com>
711
712         * filewatcher.c : removed unused variable 'filename' in 
713           ves_icall_System_IO_FSW_SupportsFSW
714
715 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
716
717         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
718         obsolete, removed.
719
720 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
721
722         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
723         
724         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
725
726 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
727
728         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
729         Implement generics support.
730         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
731
732         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
733         type_args and method_args arguments.
734         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
735         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
736         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
737
738 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
739
740         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
741           It adds a rootimage parameter to mono_reflection_get_type_internal,
742           adds new function mono_reflection_get_type_with_rootimage and use
743           the rootimage to resolve the types instead of the current image
744
745 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
746
747         * culture-info-table.h: Forgot to update after r78304.
748
749 2007-07-13  Raja R Harinath  <rharinath@novell.com>
750
751         * class.c (mono_class_is_open_constructed_type)
752         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
753
754 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
755
756         * class.c (mono_bounded_array_class_get):  method fails if used with
757         an incomplete TypeBuilder enum (no basetype field), fixed it by 
758         avoiding calculating the size for such array as it cannot be instantiated.
759         Fix bug #82015
760
761 2007-07-12  Raja R Harinath  <rharinath@novell.com>
762
763         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
764         field.
765         * metadata.c, reflection.c: Update to changes.
766
767 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
768
769         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
770         mono_class_is_valid_enum, they are used to valide a enum when loading.
771         * reflection.c: used new functions to throw TypeLoadException when and
772         invalid enum is build with TypeBuilder. Fixes #82018
773   
774 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
775
776         * object.c: forgot commit of mono_class_setup_methods () to access
777         iface->methods.
778         * object-internals.h: added a few more handy fields to
779         MonoIMTCheckItem.
780
781 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
782
783         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
784         iface->methods.
785
786 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
787
788         * class-internals.h, object-internals.h, object.c: IMT-based
789         interface invocation core from Massimiliano Mantione
790         (massi@ximian.com) with a reworked arch-specific interface,
791         bsearch implementation and a few bugfixes and memory savings by me.
792
793 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
794
795         * class.c (mono_class_create_from_typedef): mono would segfault if 
796         an enum did not have a __value field. It now throws a TypeLoadException
797         for such cases. Fix bug #82022
798
799 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
800
801         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
802
803 2007-07-09  Mark Probst  <mark.probst@gmail.com>
804
805         * class.c (mono_class_init): If a class is already inited but has
806         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
807
808 2007-07-09  Mark Probst  <mark.probst@gmail.com>
809
810         * class.c: Properly handle the case of an unimplemented interface
811         method.  Fixes: 81673.
812
813 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
814
815         * class-internals.h, object.c: cleanup patch from massi: use
816         MonoVTable->interface_bitmap since the vtable interfaces offset array
817         is going away.
818
819 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
820
821         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
822         GetMDStreamVersion icall instead.
823
824 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
825
826         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
827         not use mono_dl_build_path() with a full library name: makes
828         fallbacks to libgaim and libfam work.
829
830 2007-07-06  William Holmes  <billholmes54@gmail.com>
831
832         * assembly.c: Added a continue statement in probe_for_partial_name when
833          parse_assembly_directory_name fails.  Fixes : 82002
834
835 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
836
837         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
838         and added a verification  for TYPEDBYREF.
839         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
840         make native int interchangeable with int32 and some small cleanup and formating.
841         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
842         handle byref of byref.
843         * verify.c (push_local): handle byref of byref.
844         * verify.c (do_binop): invalid mix of values is unverifiable
845         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
846         added visibility checks
847         * verify.c (field related method): added visibility checks
848         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
849
850 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
851
852         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
853         string.
854
855 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
856
857         * profiler.c (mono_profiler_load): Fix an off-by-one error.
858
859         * marshal.c (emit_marshal_string): When returning a string from managed code,
860         allways make a copy even for unicode strings. Fixes #81990.
861
862 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
863
864         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
865         of byref generic inst types (bug #81997).
866
867 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
870         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
871
872 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
873
874         * marshal.c (emit_marshal_string): Add support for unicode strings in
875         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
876
877 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
878
879         * verify.c: field load/store are now verified, missing only access checks now
880
881 2007-06-28  Martin Baulig  <martin@ximian.com>
882
883         * mono-debug.c (mono_debug_debugger_version): New public variable.
884
885 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
886
887         * locales.c: When constructing DateTimeFormat or NumberFormat for
888         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
889         MonoCultureInfo contructed from the current locale is always
890         read-only and has UseUserOverride set to true. All MonoCultureInfo
891         instances returned for GetCultures have both IsReadOnly and
892         UseUserOverride set to true. Fixes part of bug #81930.
893
894 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
895
896        * icall-def.h: Update System.__ComObject icalls
897        * marshal.c: Avoid managed transition (and object creation)
898        when looking up COM interface in RCW.
899        * marshal.h: Ditto.
900        
901        Code is contributed under MIT/X11 license.
902
903 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
904
905         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
906         to avoid crashes during assembly unloading.
907
908 2007-06-22  Raja R Harinath  <rharinath@novell.com>
909
910         Fix MethodInfo.IsGenericMethodDefinition
911         * reflection.c (mono_reflection_bind_generic_method_parameters):
912         Rearrange code to ensure we always uses a generic method definition.
913         * class.c (mono_class_inflate_generic_method_full): Set
914         'generic_container' field only for generic method definitions.
915         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
916         Use presense of 'generic_container' field as indication of being a
917         generic method definition.
918
919 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
920
921         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
922
923         * object-internals.h: Reflect changes in the layout of the managed Delegate
924         class.
925         
926         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
927         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
928         runtime memory used by the dynamic method. Fixes #77146.
929
930 2007-06-21  Dick Porter  <dick@ximian.com>
931
932         * file-io.h: 
933         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
934         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
935         81767.
936
937 2007-06-21  Raja R Harinath  <rharinath@novell.com>
938
939         * reflection.c (method_encode_methodspec): Add a tripwire.
940         * class.c (inflate_generic_type): The fully open generic type is
941         not the same as the generic type definition.
942
943 2007-06-21  Martin Baulig  <martin@ximian.com>
944
945         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
946
947         * mono-debug-debugger.h
948         (MonoDebuggerBreakpointInfo): Removed.
949         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
950         (mono_debugger_remove_breakpoint): Likewise.
951         (mono_debugger_breakpoint_callback): Likewise.
952         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
953
954 2007-06-21  Raja R Harinath  <rharinath@novell.com>
955
956         * metadata.c (mono_metadata_lookup_generic_class): The fully open
957         generic type is not the same as the generic type definition.
958         * class.c (mono_generic_class_get_class): Likewise.
959
960 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
961
962         * icall.c: The second argument to 
963         System.Reflection.MethodBase.GetMethodFromHandleInternalType
964         is a MonoType not a MonoClass.
965
966 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
967
968         * verify.c: support for function pointers in the verifier
969
970 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
971
972         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
973
974 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
975
976         * assembly.c: removed Mono.Data.SqliteClient from the list of
977         forward-compatible assemblies as it breaks the ABI (bug #81899).
978
979 2007-06-19  Raja R Harinath  <rharinath@novell.com>
980
981         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
982         lookup/update with the loader lock.
983         * reflection.c (mono_class_bind_generic_parameters): No need to
984         protect mono_metadata_lookup_* with the loader lock.
985         * class.c (inflate_generic_type): Likewise.
986         
987         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
988         on a generic instantiated type.
989
990 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
991
992         *verify.c: produce meanfull error messages on verification error
993         *verify.c: fixed some cases of verification errors reported as validation errors
994         *pedump.c: fixed the error name array, now it shows validation errors properly
995         *verify.h: fixed the contant that should be used for verification errors
996
997 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
998
999         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1000         for bug #77596, 81858 and 80743 (generics data structures on domain
1001         unload).
1002
1003 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1004
1005         Avoid allocating 'MonoGenericContext' on the heap.
1006         * class-internals (_MonoMethodInflated::context): Make field
1007         inline, not a pointer.
1008         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1009         stack.  Use the context embedded within the inflated method as the
1010         hash key, rather than 'new_context'.
1011         * class.c (inflate_generic_context): Simplify.  Return a struct
1012         rather than allocating on the heap.
1013         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1014         doesn't salt away a copy of the context -- simplifying the
1015         lifetime rules of a 'MonoGenericContext *'.
1016         (mono_method_get_context): Return pointer to embedded context.
1017         (setup_generic_array_ifaces): Allocate temporary context on stack.
1018         * reflection.c (inflate_mono_method): Likewise.
1019         (mono_reflection_bind_generic_method_parameters): Likewise.
1020         Use the context embedded within the inflated method as the hash key.
1021
1022         Avoid a source of allocation of 'MonoGenericContext'.
1023         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1024         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1025         * class.c: Update to changes.
1026         (mono_generic_class_get_context): Simplify drastically.  Now just
1027         returns a pointer to the field.
1028         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1029         argument as a const pointer.
1030         (mono_metadata_generic_context_equal): Likewise.
1031         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1032         Update to changes.
1033
1034 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1035
1036         * verify.c improved the handling of brtrue/brfalse, factored out common code
1037
1038 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1039
1040         Kill MonoGenericMethod.
1041         * class-internals.h (MonoGenericContext::method_inst): Rename from
1042         'gmethod' and convert to a MonoGenericInst.
1043         (MonoGenericMethod): Remove.
1044         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1045         * loader.c (method_from_methodspec): Update to changes.  Use a
1046         MonoGenericContext as the key to the hashtable.
1047         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1048         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1049         (mono_metadata_generic_context_hash): Likewise from
1050         'mono_metadata_generic_method_hash'.  Change hash function.
1051         (mono_metadata_load_generic_params): Update to changes.
1052         (mono_get_shared_generic_method): Remove.
1053         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1054         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1055         (inflate_generic_context): Likewise.
1056         (mono_class_inflate_generic_method_full): Likewise.
1057         (setup_generic_array_ifaces): Likewise.
1058         (mono_class_create_from_typespec): Likewise.
1059         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1060         (method_encode_methodspec): Update callsite.
1061         (reflection_methodbuilder_to_mono_method): Update to changes.
1062         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1063         MonoGenericContext as the key to the hashtable.
1064         (inflate_mono_method): Update to changes.
1065
1066         * class-internals.h (MonoGenericMethod::container): Remove.
1067         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1068
1069 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1070
1071         * profiler-private.h, profiler.c, profiler.h: added API to profile
1072         exception events.
1073
1074 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1075
1076         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1077
1078 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1079
1080         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1081         Fixed overflow and underflow not aborting the verification process.
1082
1083 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1084
1085         * class-internals.h (MonoStats): Added stats entries for dynamic
1086         code allocations.
1087
1088 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1089
1090         * loader.c (mono_free_method): Free header->locals and header->clauses.
1091
1092         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1093         dynamic case.
1094
1095         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1096
1097         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1098
1099 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1100
1101         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1102         the tables.
1103
1104 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1105
1106         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1107
1108 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1109
1110         MonoGenericMethod on a diet
1111         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1112         here ...
1113         (_MonoGenericMethod::reflection_info): ... from here.
1114         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1115         Update to changes.
1116         * reflection.c (inflate_mono_method): Likewise.
1117         (mono_reflection_bind_generic_method_parameters): Likewise.
1118
1119 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1120
1121         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1122         *verify.c: factored long ldarg forms to share code with short forms
1123
1124 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1125
1126         *verify.c: fixed code formating factored some duplicate code
1127         into a new function
1128
1129         *verify.h: fixed binary incompatibility introduced earlier
1130
1131         *pedump.c: fixed formating
1132
1133 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1134
1135         Fix assertion when disassembling Mono.C5.dll
1136         * loader.c (method_from_methodspec): Avoid inflating a method
1137         twice with the same context.  If the methodref is inflated, use
1138         the declaring method instead.
1139
1140         * class.c (mono_class_from_generic_parameter): Fix case similar to
1141         bug #81830 handled below, but for method containers.
1142
1143 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1144
1145         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1146         get_shared_generic_class.  Directly inflate the instance.
1147         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1148         (inflate_generic_class): Delete.
1149         (get_shared_generic_class): Delete.  Move setting of
1150         'cached_class' and 'cached_context' ...
1151         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1152
1153         * metadata.c (mono_metadata_lookup_generic_class): Change
1154         signature to take the components of a MonoGenericClass rather than
1155         an allocated MonoGenericClass.  Change semantics to be intern-like.
1156         * reflection.c (mono_class_bind_generic_parameters): Update to
1157         changes.  Make locking region tighter.
1158         * class.c (inflate_generic_class): Update to changes.
1159         (get_shared_generic_class): Likewise.
1160         * metadata-internals.h: Likewise.
1161
1162         * reflection.c (mono_class_bind_generic_parameters): Take and
1163         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1164         (mono_reflection_bind_generic_parameters): Use
1165         'mono_class_bind_generic_parameters' rather than duplicate the code.
1166         * class.c (mono_bounded_array_class_get): Update to changes.
1167         * object-internals.h: Likewise.
1168
1169         * reflection.c (mono_class_bind_generic_parameters): Only support
1170         parameterizing generic type definitions.  Remove support for other
1171         open types.
1172
1173 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1174
1175         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1176
1177         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1178         in the dynamic case.
1179
1180 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1181
1182         * threads.c: When cleaning up thread, reset the Background bit.
1183         Fixes bug #81720.
1184
1185 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1186
1187        * metadata.c: Move variable declarations to top of scope.
1188        * verify.c: Move variable declarations to top of scope.
1189
1190        Code is contributed under MIT/X11 license.
1191
1192 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1193
1194         * reflection.c (mono_class_bind_generic_parameters): Replace
1195         open-coded loop with mono_metadata_inflate_generic_inst.
1196
1197         * class.c (get_shared_generic_class): Don't call
1198         mono_get_shared_generic_inst.  Use the container's own
1199         'class_inst'.
1200
1201         * metadata.c (mono_metadata_load_generic_params): Move
1202         initialization of 'context' field here from ...
1203         * class.c (mono_class_create_from_typedef): ... here, and ...
1204         * loader.c (mono_get_method_from_token): ... here.
1205
1206         * class.c (get_shared_generic_class): Rename from
1207         mono_get_shared_generic_class and make static.
1208         (mono_get_shared_generic_inst): Move to metadata.c.
1209         * loader.c (mono_get_shared_generic_method): Likewise.
1210         * class-internals.h, metadata-internals.h: Update to changes.
1211
1212         Fix #81830
1213         * class.c (mono_class_from_generic_parameter): Don't assume a
1214         generic container owner exists.  Generic containers from monodis
1215         don't have any.
1216
1217 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1218
1219         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1220         * verify.h: new typedefs to returns the non-verifiable status
1221         * verify.c: initial implementation of generics, stack merging and object compatibility check
1222
1223 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1224
1225         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1226         a MonoInternalHashTable again (fixed bug in internal hash table
1227         code).
1228
1229 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1230
1231         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1232         MonoInternalHashTable again (fixed bug in internal hash table
1233         code).
1234
1235 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1236
1237         * class.c, image.c, class-internals.h, domain.c,
1238         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1239         changes.  Have to figure out what makes them break the SWF
1240         regression.
1241
1242 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1243
1244         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1245         a MonoInternalHashTable now.
1246
1247 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1248
1249         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1250         MonoInternalHashTable now.
1251
1252 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1253
1254         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1255         invoke_impl code.
1256
1257         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1258
1259         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1260         dependent trampoline.
1261
1262         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1263
1264         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1265
1266 2007-05-29  Robert Jordan  <robertj@gmx.net>
1267
1268         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1269
1270 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1271
1272         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1273
1274 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1275
1276        * marshal.c: Fix interface lookup loops for
1277        cominterop_get_com_slot_for_method and 
1278        cominterop_get_method_interface. Only need to lookup
1279        if type is a class, else use interface type method is on.
1280
1281        Code is contributed under MIT/X11 license.
1282
1283 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1284
1285         * reflection.c: HasSecurity can be present even if no specially 
1286         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1287         SecurityAttribute). Fix CAS regression tests on buildbot.
1288
1289 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1290
1291        * appdomain.c: Add configure checks for header files.
1292        * image.c: Add configure checks for header files.
1293        * file-io.c: Add configure checks for header files.
1294        * debug-mono-symfile.c: Add configure checks for header files.
1295        * threadpool.c: Add configure checks for header files.
1296        * console-io.c: Add configure checks for header files.
1297        * profiler.c: Add configure checks for header files.
1298        * rawbuffer.c: Add configure checks for header files.
1299        * icall.c: Add configure checks for header files.
1300        * rand.c: Add configure checks for header files.
1301        * socket-io.c: Add configure checks for header files.
1302
1303        Code is contributed under MIT/X11 license.
1304
1305 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1306
1307         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1308         assertion as it breaks the build.
1309         
1310         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1311
1312         * reflection.c (lookup_custom_attr): Make a copy here too.
1313
1314         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1315         dynamic images.
1316
1317         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1318         images.
1319
1320         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1321         info.
1322
1323 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1324
1325         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1326         (load_cattr_value): Ditto.
1327
1328 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1329
1330         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1331
1332 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1333
1334         * threads.c: In "start_wrapper", set apartment_state to MTA if
1335         apartment_state is Unknown and we're running on 2.0 profile or
1336         higher.
1337         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1338         to main method, then set apartment_state to Unknown on 1.0 profile,
1339         and MTA on 2.0 profile.
1340
1341 2007-05-16  Jb Evain  <jb@nurv.fr>
1342
1343         * class-internals.h (MonoDefaults): Add an attribute_class and
1344           customattribute_data_class.
1345         * domain.c (mono_init_internal): Populate them.
1346         * reflection.c: Use them to remove duplicates. Make a vew
1347         MonoClass variables `static'.
1348
1349 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1350
1351         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1352         step in implementing IMT, so that all isinst checks now can go
1353         through the bitmap.
1354         This was needed because vtables for TransparentProxy need to look
1355         like the vtable of the "target" class, so they need to point to
1356         its interface bitmap directly.
1357
1358         * object.c: inside "mono_class_create_runtime_vtable" and
1359         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1360
1361 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1362
1363         * object-internals.h
1364           culture-info.h : added territory field in MonoCulture and
1365           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1366         * locales.c : fill territory field above too.
1367         * culture-info-table.h : regenerated.
1368
1369 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1370
1371         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1372         Fixes #81599.
1373
1374 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1375
1376         * object.c: Always initialize apartment, even if 
1377         there is no custom attributes on entry point.
1378         
1379         Code is contributed under MIT/X11 license.
1380
1381 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1382
1383         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1384         * metadata.c: If no encoding is set, check for unicode
1385         on class.
1386         
1387         Code is contributed under MIT/X11 license.
1388
1389 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1390
1391         * threads.c: Handle if mono_thread_current returns NULL 
1392         
1393         Code is contributed under MIT/X11 license.
1394
1395 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1396
1397         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1398         in start_wrapper. Added mono_thread_init_apartment_state and
1399         mono_thread_cleanup_apartment_state.
1400         * object.c: Initialize thread apartment state on main thread
1401         by checking for STAThreadAttribute on entry point.
1402         * object-internals.h: Add apartment_state field to MonoThread.
1403         * threads-types.h: Add unmanaged definition of 
1404         System.Threading.ApartmentState, MonoThreadApartmentState.
1405         
1406         Code is contributed under MIT/X11 license.
1407         
1408 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1409
1410         * class.c: Fix windows build.
1411         * class-internals.h: Fix windows build.
1412         
1413         Code is contributed under MIT/X11 license.
1414
1415 2007-05-08  Robert Jordan  <robertj@gmx.net>
1416
1417         * process.c (CreateProcess_internal):
1418         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1419         .CreateNoWindow was specified. Fixes #81496.
1420
1421 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1422
1423         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1424         step in implementing IMT, replaced it with two compact arrays
1425         (interfaces_packed and interface_offsets_packed) and a bitmap that
1426         is used for isinst checks (interface_bitmap).
1427
1428         * class.c: (compare_interface_ids): compare function to pass to
1429         bsearch when looking for an interface with a given id.
1430         (mono_class_interface_offset): reimplemented using bsearch on
1431         interfaces_packed, getting the offset from interface_offsets_packed.
1432         (print_implemented_interfaces): utility debugging function.
1433         (setup_interface_offsets): reworked to initialize interfaces_packed,
1434         interface_offsets_packed and interface_bitmap.
1435
1436         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1437         with uses of interfaces_packed and interface_offsets_packed.
1438
1439 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1440
1441         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1442         mono_class_interface_offset prototype to wrap all accesses to
1443         "MonoClass.interface_offsets".
1444
1445         * class.c: Implemented mono_class_interface_offset, and wrapped all
1446         accesses to "MonoClass.interface_offsets".
1447
1448         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1449         "MonoClass.interface_offsets".
1450
1451 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1452
1453         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1454         GetMethodFromHandle overloads (bug #78637).
1455
1456 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1457
1458         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1459         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1460
1461 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1462
1463         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1464         #81498.
1465
1466         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1467         gracefully.
1468         (mono_custom_attrs_from_index): Ditto.
1469
1470         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1471         Fixes #81501.
1472
1473 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1474
1475         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1476         is now allocated from a mempool.
1477
1478 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1481         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1482
1483 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1484
1485         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1486         mono_loader_clear_error () too late. Fixes #81463.
1487
1488 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1489
1490         * culture-info-table.h : regenerated.
1491
1492 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1493
1494         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1495         is missing.
1496
1497 2007-04-25  Dick Porter  <dick@ximian.com>
1498
1499         * Makefile.am: Put the mingw enforced-optimisation back into the
1500         PLATFORM_WIN32 section.
1501
1502 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1503
1504         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1505         patch.
1506
1507         * image.c (mono_image_load_module): New API function to load a module reference.
1508
1509         * image.c (load_modules): Load modules lazily. Fixes #80812.
1510
1511         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1512         
1513         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1514
1515         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1516         to mono_image_load_module_dynamic.
1517
1518 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1519
1520         * marshal.c: Fix calling convention for CCW on non-windows
1521         platforms. STDCALL on windows, CDECL everywhere else to work 
1522         with XPCOM and MainWin COM.
1523         
1524         Code is contributed under MIT/X11 license.
1525
1526 2007-04-23  Martin Baulig  <martin@ximian.com>
1527
1528         Fix #80969.
1529
1530         * loader.c
1531         (method_from_memberref): Added `gboolean *used_context' argument.
1532         (mono_get_method_from_token): Likewise.
1533         (mono_get_method_full): Don't insert the method in the cache when
1534         `used_context' is true.
1535
1536 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1537
1538         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1539
1540         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1541         create new MonoTypes for returned types.
1542         * class.c (mono_generic_class_get_class): Export mono-internal.
1543         * class-internals.h: Update to changes.
1544
1545 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1546
1547         * threadpool.c, threadpool.h, icall-def.h: patch from
1548         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1549
1550 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1551
1552         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1553         
1554         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1555
1556         * threads.c (mono_thread_get_stack_bounds): New helper function.
1557
1558         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1559         Correctly compute stack bounds when attaching. Fixes #81394.
1560
1561 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1562
1563         * reflection.c: fix handling of doubles in custom attributes
1564         for the arm-fpa format (bug #81368).
1565
1566 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1567
1568         * reflection.c (assembly_add_win32_resources): Mildly relax an
1569         bounds check to let the end pointer point just past the end of the
1570         allocated buffer.  (may fix #81384)
1571
1572 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1573
1574         * culture-info-table.h : regenerated.
1575
1576 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1577
1578         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1579         the thread is aborted early.
1580
1581 2007-04-05  Dick Porter  <dick@ximian.com>
1582
1583         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1584         FindFirstFile()/FindNextFile() to find entries.  This lets the
1585         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1586         81038.
1587
1588         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1589         the parameters of
1590         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1591
1592 2007-04-04  Martin Baulig  <martin@ximian.com>
1593
1594         * debug-helpers.c
1595         (mono_method_desc_full_match): Add support for nested classes.
1596
1597 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1598
1599         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1600
1601 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1602
1603         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1604         waiting for too many threads.
1605
1606 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1607
1608         * environment.c: Fix return value check on uname so we can get the 
1609         executing version on Solaris operating systems.
1610
1611 2007-03-28  Jb Evain  <jbevain@gmail.com>
1612
1613         * class.c (mono_type_get_name_recurse): Complete the
1614         fix for the creation of assembly qualified names for
1615         pointer types. Fixes #81208.
1616
1617 2007-03-27  Dick Porter  <dick@ximian.com>
1618
1619         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1620         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1621         changed.
1622
1623         * threads.c
1624         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1625         the value of ReleaseMutex().
1626
1627 2007-03-27  Dick Porter  <dick@ximian.com>
1628
1629         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1630         in little-endian order, not network endian, so must be converted
1631         to host endian here.  Fixes bug 80593.
1632
1633 2007-03-22  Jb Evain  <jbevain@gmail.com>
1634
1635         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1636         qualified names for pointer types. Fixes #81208.
1637
1638 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1639
1640         * marshal.c: Add support for PreserveSigAttribute. 
1641         
1642         Code is contributed under MIT/X11 license.
1643
1644 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1645
1646         * process.c: Fix endianness issues. Fixes #81126.
1647
1648         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1649         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1650
1651         * image.c (mono_image_lookup_resource): Make this work on big-endian
1652         machines.Change API contract so the caller needs to free the return value.
1653         
1654         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1655         API change.
1656         
1657 2007-03-14  Martin Baulig  <martin@ximian.com>
1658
1659         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1660         mono_type_get_desc() as well.
1661
1662 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1663
1664         * icall.c:  Fix environ access in VS.  
1665         
1666 2007-03-13  Alp Toker  <alp@atoker.com>
1667
1668         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1669         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1670         #63841.
1671
1672 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1673
1674         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1675         circular references among dynamic methods. Fixes #81091.
1676
1677         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1678
1679 2007-03-09  Martin Baulig  <martin@ximian.com>
1680
1681         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1682
1683 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1684
1685         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1686         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1687         
1688         Code is contributed under MIT/X11 license.
1689         
1690 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1691
1692         * loader.c: Reapply patch for bug #79424.
1693
1694 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1695
1696         * metadata.c (mono_type_to_unmanaged): Only convert object to
1697         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1698
1699 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1700
1701         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1702         (and incorrectly set) is_reference field from MonoGenericInst.
1703
1704 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1705
1706         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1707         a little earlier.
1708
1709         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1710
1711         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1712
1713 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1714
1715         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1716         FileOptions.1 value to mean "temporary", map that to
1717         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1718
1719         Fixes 80688
1720
1721 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1722
1723         * appdomain.c: implement MS .Net style shadow copying. Copies of
1724         the assemblies are made in a subdirectory of the dynamic base
1725         directory, the assembly names are preserved.
1726         Copy .mdb and .config files along with the assemblies being shadowed.
1727
1728 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1729
1730         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1731         (emit_marshal_handleref): Ditto.
1732
1733         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1734         on Visual C++. Fixes #80671.
1735
1736 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1737
1738         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1739         for clone operations.
1740
1741 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1742
1743         * marshal.c: Fix warnings.
1744
1745 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1746
1747         * loader.c: allow case-insensitive matching of the dll name
1748         in dllmap handling when prefixed with "i:".
1749
1750 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1751
1752         * threads.c: Fix #ifdef for dummy_apc function for VS.
1753
1754 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1755
1756         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1757
1758 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1759         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1760         giving precedence to the methods with a fully qualified name
1761         (InterfaceName.MethodName) when building the interface sections
1762         of the vtable.
1763
1764 2007-02-16  Dick Porter  <dick@ximian.com>
1765
1766         * threadpool.c (append_job): Fix fast-path array handling, so it's
1767         less likely the array will grow exponentially when the load is
1768         heavy.
1769
1770 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1771
1772         * metadata-internals.h, loader.c: fix dllmap lookup order
1773         for non-function maps, too, and prepare for fallback code.
1774
1775 2007-02-12  Robert Jordan  <robertj@gmx.net>
1776
1777         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1778         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1779         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1780         GlobalFree. Fixes a part of bug #77075.
1781
1782 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1783
1784         * loader.c: implemented typedef parent in field memberref.
1785
1786 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1787
1788         * marshal.c: Fix warnings and remember to call Release on
1789         IUnknown of RCW.
1790         
1791         Code is contributed under MIT/X11 license.
1792
1793 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1794
1795         * class-internals.h: Add MonoHandleRef definition, and
1796         handleref_class to mono_defaults. 
1797
1798         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1799         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1800
1801         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1802         (do nothing on this stage)
1803         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1804         (emit_marshal_handleref): New method, used for argument handling
1805         of HandleRefs. 
1806
1807 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1808
1809         * class.c (mono_class_setup_parent): Lazily init com types.
1810         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1811         init com types.
1812         * object.c (mono_remote_class_vtable): Lazily init com types.
1813         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1814         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1815         * domain-internals.h: Expose mono_init_com_types.
1816         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1817         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1818         Add support for COM Callable Wrapper marshalling.
1819         * marshal.h: Add icall definitions.
1820         * gc.c: Handle freeing of CCWs in finalizer code.
1821         
1822         Code is contributed under MIT/X11 license.
1823
1824 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1825
1826         * reflection.c: changed all the signature encoding code to use
1827         a variable-sized buffer.
1828
1829 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1830
1831         * marshal.c: locking fixes: never take the loader lock
1832         or other runtime locks when holding the marshal lock
1833         (fixes bug#80664).
1834
1835 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1836
1837         * marshal.c: make the delegate function pointer mapping
1838         work for the moving GC.
1839
1840 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1841
1842         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1843         for bug #80618.
1844
1845 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1846
1847         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1848         gmodule.
1849
1850 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1851
1852         * threadpool.c: made the code moving-GC safe.
1853
1854 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1855
1856         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1857         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1858         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1859         warning cleanup.
1860         * reflection.c: warning cleanup, some threading and moving GC fixes.
1861
1862 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1863
1864         * class.c, loader.c: create the needed Set/Get/Address array methods
1865         as well as the .ctors in mono_class_init (), fixes bug #80567.
1866
1867 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1870         we doesn't decrease its alignment. Should fix the sparc build.
1871
1872 2007-01-24  Dick Porter  <dick@ximian.com>
1873
1874         * socket-io.c
1875         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1876         Create the returned object if we need to ignore an unsupported
1877         socket option.  Fixes a segfault reported by Atsushi.
1878
1879 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1880
1881         * class.c, object.c: restrict GC-tracked fields to
1882         UIntPtr fields used inside corlib, so we provide better
1883         type info to the GC and also allow broken packing as in
1884         bug #80580.
1885
1886 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1887
1888         * sgen-gc.c: removed duplicated function.
1889
1890 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1891
1892         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1893         value that means that the value is not supported, but that we
1894         should not return a failure, but instead report this as a
1895         successful operation.
1896
1897 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1898
1899         Fix tests/bug79956.2.il
1900         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
1901         (mono_generic_class_get_class): If the generic definition in an
1902         enum, copy over other fields related to it.
1903
1904 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1905
1906         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
1907         genericinst enums (bug #79215).
1908
1909 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
1910         * class.c: Fix bug 80307.
1911
1912 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
1913
1914         * image.c: if the file table is not present, try to load
1915         all the modules, since we don't have info about them
1916         having or not metadata (bug #80517).
1917         * assembly.c: allow mono_assembly_load_references () to
1918         work for netmodules.
1919
1920 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1921
1922         * image.c, metadata-internals.h, object.c: execute module
1923         cctors when running on the 2 runtime if present (bug #80487).
1924
1925 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1926
1927         * icall.c: optimized InitializeArray() on bigendian.
1928
1929 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
1930
1931         * icall.c: fix for the broken ARM FPA double format.
1932
1933 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1934
1935         * icall.c: handle endian issues for r4 and r8 types, too, in
1936         the InitializeArray() icall.
1937
1938 2007-01-15  Miguel de Icaza  <miguel@novell.com>
1939
1940         * loader.c (mono_loader_error_prepare_exception): Clear the error
1941         once we have extracted the information from it, do this before we
1942         call into the JIT's class loading mechanisms.
1943
1944         * object.c (mono_class_create_runtime_vtable): Do not clear the
1945         loader error before calling mono_class_get_exception_for_failure
1946         as the loader error is needed inside
1947         mono_class_get_exception_for_failure to throw the error (thinko).
1948
1949         Fixes #80521
1950         
1951 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1952
1953         * reflection.c: align fields rva data so it's faster to load at
1954         runtime.
1955
1956 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1957
1958         Prepare to simplify GenericMethod handling.
1959         * class-internals.h (mono_method_get_context): New accessor function.
1960         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
1961         rather than directly accessing '->context' field.
1962
1963         * class-internals.h (_MonoGenericParam.method): Move ...
1964         (_MonoGenericContainer): ... here.  Add into union with klass field.
1965         * class.c, icall.c, loader.c, metadata.c, reflection.c:
1966         Update to changes.
1967
1968 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1969
1970         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1971         the wrapper type enum and reduce relocations.
1972
1973 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1974
1975         * reflection.c (inflate_mono_method): Reuse method instantiation
1976         from the generic method, if available.
1977
1978 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1979
1980         * marshal.c (emit_marshal_variant): Fix conv_arg
1981         type in last commit, based on whether parameter is byref.
1982         
1983 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1984
1985         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1986         marshalling.
1987         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1988         MONO_TYPE_OBJECT back for VARIANT support.
1989
1990 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1991
1992         * marshal.c, marshal.h, icall-def.h: Implement 
1993         Marshal.ReAllocCoTaskMem.
1994
1995 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1996
1997         * marshal.c: memory retention fixes: use the proper
1998         image cache for runtime_invoke method lookups.
1999
2000 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2001
2002         * mempool.c: added code to help debug mempool allocations.
2003
2004 2007-01-11  Dick Porter  <dick@ximian.com>
2005
2006         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2007         support (experimenting with faking it with IP_MTU_DISCOVER for
2008         systems that don't have IP_DONTFRAGMENT.)
2009         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2010         icall.
2011
2012         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2013
2014         * socket-io.h: Add new fields to MonoSocketAsyncResult
2015         corresponding to the new ones in Socket.cs.
2016
2017 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2018
2019         Fix IronPython regression mentioned in #80249
2020         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2021         'cached_context' field, since it may have been initialized as a
2022         side-effect of metadata parsing.
2023
2024         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2025         (_MonoGenericClass.cached_class): Move here and rename from lone
2026         remaining field of ...
2027         (_MonoInflatedGenericClass): ... this.  Remove.
2028         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2029         to changes.
2030
2031         Fix mcs/tests/test-128.cs regression.
2032         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2033         2007-01-10 change below.
2034         [MONO_TYPE_OBJECT]: Recurse into array case.
2035
2036 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2037
2038         * class-internals.h (mono_get_inflated_generic_class): Remove.
2039         * class.c (mono_get_inflated_generic_class): Remove.
2040         (mono_generic_class_get_class): Rename from
2041         mono_class_create_generic.
2042         (mono_class_from_mono_type) [GENERICINST]: Use it.
2043         * reflection.c, metadata.c: Update to changes.  Use
2044         'mono_class_from_mono_type'.
2045
2046 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2047
2048         * reflection.c: use passed type when encoding an array element
2049         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2050
2051 2007-01-09  Robert Jordan  <robertj@gmx.net>
2052
2053         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2054         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2055         Fixes bug #80392.
2056
2057 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2058
2059         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2060
2061         * object.c (set_value): Avoid aliasing between type->data.klass
2062         and type->data.generic_class.
2063
2064         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2065
2066 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2067
2068         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2069         between type->data.klass and type->data.generic_class.
2070
2071 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2072
2073         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2074         value in out parameters.
2075
2076 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2077
2078         Simplify invariant for MonoGenericClass::klass field.
2079         * class.c (mono_class_create_generic): Verify 'klass' is null.
2080         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2081         initialize 'klass' field.
2082
2083 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2084
2085         Ongoing work to avoid redundant data and simplify invariants.
2086         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2087         'generic_class', and change type to a GenericInst.
2088         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2089         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2090
2091 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2092
2093         * class.c : skip io-layer under PLATFORM_WIN32.
2094
2095 2007-01-03  Tor Lillqvist  <tml@novell.com>
2096
2097         Fix #80305: In a bundled executable, look in the bundled exe
2098         assembly to determine the runtime version. Add the possibility to
2099         bundle also the machine.config file.
2100         
2101         * assembly.c (mono_assembly_open_from_bundle): Make
2102         non-static. Allow being called even if we have no bundled
2103         assemblies, and return NULL right away in that case.
2104
2105         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2106         here.
2107
2108         * domain.c (app_config_parse): Take an assembly exe file name as
2109         parameter instead of a config file name. Check for a bundled
2110         config file for that assembly by calling
2111         mono_config_string_for_assembly_file() (see below) before looking
2112         for one in the file system.
2113         (get_runtimes_from_exe): Corrsponding change to call of
2114         app_config_parse().
2115         (get_runtimes_from_exe): Check for bundled assembly exe file first
2116         by calling mono_assembly_open_from_bundle(). If no bundled
2117         assembly exe file is found, call mono_image_open() as before to
2118         look it up in the file system.
2119
2120         * mono-config.c: Add variable bundled_machinec_onfig.
2121         (mono_config_string_for_assembly_file): New function.
2122         (mono_config_for_assembly): Move code snippet that looks for a
2123         bundled assembly .config file into the above new function. Call
2124         it.
2125         (mono_register_machine_config, mono_get_machine_config): New
2126         functions to set and retrieve
2127
2128         * assembly.h: Declare mono_register_machine_config().
2129
2130         * mono-config.h: Declare mono_get_machine_config() and
2131         mono_config_string_for_assembly_file().
2132
2133         * icall.c: No declaration of environ necessary on Win32. It is
2134         declared (as a macro expanding to a function call) in stdlib.h.
2135         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2136         New internal mono function. Returns the value of
2137         mono_get_machine_config() as a Mono string.
2138
2139         * icall-def.h: Add get_bundled_machine_config().
2140
2141 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2142
2143         Remove redundant field
2144         * class-internals.h (_MonoGenericContext.container): Remove field.
2145         * loader.c (mono_method_get_signature_full): Don't parse a
2146         "container" for a signature parse when the signature is inflated
2147         immediately.
2148         (method_from_methodspec): Likewise, for a generic_inst.
2149         * class.c, metadata.c, reflection.c: Update to changes.
2150
2151 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2152
2153         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2154         'cached_context', and change semantics -- it starts off NULL, and
2155         is initialized on demand.
2156         * class.c (mono_generic_class_get_context): New accessor to
2157         replace 'context' field accesses.
2158         (mono_class_get_context): New helper.
2159         (*): Update to changes.
2160         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2161
2162 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2163
2164         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2165         before the memcpy.   Fixes Marshal2 regression.
2166
2167 2007-01-02  Jb Evain  <jbevain@gmail.com>
2168
2169         * blob.h: add a MONO_TYPE_ENUM definition
2170         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2171         fix the encoding of arrays of enums in custom attributes.
2172
2173         Fixes #79666.
2174
2175 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2176
2177         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2178         string is null terminated, but only cut the string short if it
2179         overflows the buffer.   
2180         
2181         (mono_string_to_byvalstr): Also fix this routine.   The code here
2182         was not properly terminating a string (it was only terminated
2183         because of the previous catch-all memset). 
2184
2185         I left the memset, because I do not know if applications expect
2186         the runtime to clear this region. 
2187
2188         Fixes #79944.
2189
2190         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2191         Clear the error before returning to unmanaged code to prevent the
2192         runtime from being confused later on (fixes  80420).
2193         (ves_icall_type_from_name): Always call mono_loader_clear_error
2194         after parsing a type that could have failed.
2195         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2196
2197         * loader.c (mono_loader_clear_error): Fix indentation.
2198
2199 2006-12-28  Martin Baulig  <martin@ximian.com>
2200
2201         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2202
2203 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2204
2205         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2206         getting a token for an EnumBuilder.
2207
2208 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2209
2210         * reflection.c: be more careful in case resource generation
2211         fails to create the data array.
2212
2213 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2214
2215         * sgen-gc.c: write barrier for clone and fix unregister handles.
2216
2217 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2218
2219         * reflection.c: some fixes needed in the generics code for the moving GC.
2220
2221 2006-12-22  Robert Jordan  <robertj@gmx.net>
2222
2223         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2224         account. Fixes bug #80299.
2225
2226 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2227
2228         Fix WaitHandle usage in delegates.
2229         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2230         * object.c (mono_wait_handle_new): Use the property set method to
2231         initialize the handle.
2232         (mono_wait_handle_get_handle): New.
2233         * threadpool.c (mono_async_invoke): Use it.
2234         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2235         Likewise.
2236         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2237
2238 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2239
2240         * marshal.c (emit_marshal): Call emit_marshal_variant and
2241         emit_marshal_com_interface when applicable.
2242         (emit_marshal_variant, emit_marshal_com_interface): Add
2243         methods for this case and remove if's from emit_marshal_object.
2244         
2245 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2246
2247         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2248
2249 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2250
2251         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2252         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2253         and GlobalFree on Windows. Remove FIXME.
2254
2255 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2256
2257         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2258         implementation for managed objects.
2259
2260 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2261
2262         * object.c: implemented code to be used for checking
2263         that no reference field overlaps with non-references.
2264
2265 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2266
2267         * threadpool.c: fix queue code to be compatible with the
2268         moving GC.
2269
2270 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2271
2272         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2273         in structures by throwing ArgumentNullException.
2274
2275         (emit_marshal_safehandle): Also when they are null parameters.
2276
2277         (emit_marshal_safehandle): Add support for ref
2278         SafeHandles parameters
2279
2280 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2281
2282         * profiler.c: updated to use the mono-dl API instead of
2283         gmodule.
2284
2285 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2286
2287         * profiler.c: updated to use the mono-dl dynamic loading
2288         API instead of gmodule.
2289
2290 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2291
2292         * profiler.c: use readlink, older versions of glib don't have
2293         g_file_read_link ().
2294
2295 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2296
2297         * profiler.c: try to detect the path to mono if libc fails to provide
2298         a useful name (bug #80286).
2299
2300 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2301
2302         Fix #80242
2303         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2304         instance, use the generic type definition instead.
2305         (ves_icall_Type_GetNestedTypes): Likewise.
2306         * class.c (mono_class_create_generic): Always set the
2307         nested_classes of a generic instance to NULL, even if the generic
2308         type definition has nested types.
2309
2310 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2311
2312         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2313         and fix on Linux.
2314         
2315 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2316
2317         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2318         my arguments were in the wrong order.   I also fixed the Windows
2319         version which seems to have had the same issue.
2320
2321         (mono_free_bstr): On Unix, this is g_free.
2322         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2323         conversions (for the tests in corlib to pass).
2324
2325 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2326
2327         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2328         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2329         exception if a ref SafeHandle in a struct has changed).
2330         
2331         (emit_struct_conv): Do not perform layout checks for classes
2332         derived from SafeHandle, as those are specially handled. 
2333
2334         (emit_object_to_ptr_conv): Add support for
2335         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2336
2337         (emit_marshal_safehandle): Implement conversion of return values
2338         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2339         
2340         * threads.c: WaitHandle now is compiled with two different handles
2341         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2342         for 2.0.
2343         
2344         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2345         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2346         these routines to cope with both kinds of fields.
2347
2348 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2349
2350         * metadata.c (mono_type_to_unmanaged): Handle the case where
2351         type->data.klass is a SafeHandle, and in that case, return the
2352         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2353         MONO_MARSHAL_CONV_SAFEHANDLE. 
2354
2355 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2356
2357         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2358         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2359         calling emit_marshal_object.
2360
2361         (emit_marshal_safehandle): Implement marshalling of
2362         SafeHandle parameters (no ref support yet).
2363
2364         (MarshalAction): Document the defines as I implement
2365         them for SafeHandle.
2366
2367         (emit_marshal_object): indentation police.
2368
2369         * class-internals.h: Define MonoSafeHandle.
2370         Add safehandle_class to MonoDefaults type.
2371
2372         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2373         list of classes to check for fields. 
2374
2375         * domain.c (mono_init_internal): Add SafeHandle to the list of
2376         mono_defaults loaded.
2377
2378 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2379
2380         Fix #80253
2381         * reflection.c (mono_reflection_bind_generic_parameters): If the
2382         generic type definition is a type builder, ensure that it is fully
2383         initialized before instantiating it.  Kill some dead code.
2384
2385 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2386
2387         * object.c: clear the loader_error () before loading
2388         more metadata stuff (bug #80258).
2389
2390 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2391
2392         * icall.c, icall-defs.h: type modifiers icalls for
2393         parameters and properties.
2394
2395 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2396
2397         * object.c, icall.c: fixed warnings.
2398
2399 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2400
2401         * marshal.c: fixed a couple of leaks and coding style in a few places.
2402
2403 2006-12-08  Dick Porter  <dick@ximian.com>
2404
2405         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2406         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2407         80173.
2408
2409 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2410
2411         * process.c: ProcessStartInfo may have only filename set and
2412         arguments can be NULL.
2413
2414 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2415
2416         * icall.c: fix leak found by Robert Jordan.
2417
2418 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2419
2420         * marshal.c, marshal.h: generate managed method to access an element
2421         of a multi-dimensional array.
2422
2423 2006-11-30  Paolo Molaro (lupus@ximian.com)
2424
2425         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2426
2427 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2428
2429         * icall.c: back out GetFields () fix until the serialization code is
2430         fixed to not depend on the incorrect behaviour.
2431
2432 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2433
2434         * profiler.c: provide defaults if none are set.
2435
2436 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2437
2438         * Makefile.am, attrdefs.h: new public header file with
2439         constants for attributes for use by embedders.
2440
2441 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2442
2443         * icall.c: GetFields () fix for bug #80064.
2444
2445 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2446
2447         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2448         removed long unused icalls.
2449
2450 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2451   
2452         * marshal.c: 
2453                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2454                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2455                 can be generated without a delegate class.
2456                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2457         
2458         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2459
2460 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2461
2462         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2463         #80069.
2464
2465 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2466
2467         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2468         icall-def.h: added icalls needed by System.GC.
2469
2470 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2471
2472         * loader.c: ensure the class in catch clauses is handled
2473         correctly for generics methods (fixes bug#79980).
2474
2475 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2476
2477         * monitor.h, monitor.c: added mono_locks_dump () function
2478         to help debug deadlocks involving managed locks.
2479
2480 2006-11-13  Dick Porter  <dick@ximian.com>
2481
2482         * file-io.c (get_file_attributes): If the file is a symlink try
2483         and get the stat data for the target, but also add the
2484         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2485         the specs for the windows symlink support, but will probably have
2486         to be reworked when I have test data from a vista machine.  Fixes
2487         bug 79887.
2488
2489 2006-11-13  Dick Porter  <dick@ximian.com>
2490
2491         * gc.c (mono_domain_finalize): 
2492         * marshal.c (mono_delegate_begin_invoke): 
2493         * threadpool.c (socket_io_init, mono_thread_pool_init)
2494         (mono_thread_pool_finish): 
2495         * monitor.c (mono_monitor_try_enter_internal): 
2496         * threads.c (mono_thread_resume, mono_thread_init)
2497         (mono_thread_suspend_all_other_threads)
2498         (mono_thread_execute_interruption): 
2499         * appdomain.c (mono_domain_unload): Check for NULL error returns
2500         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2501         75733.
2502
2503 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2504
2505         * process.c
2506         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2507         Only close the handle if the value of the handle is not
2508         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2509         robust.
2510
2511         Improvement for #75733, so that we do not run into this problem. 
2512
2513         
2514         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2515         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2516         internal variables.  Fixes #79462 
2517         
2518
2519 2006-11-09  Dick Porter  <dick@ximian.com>
2520
2521         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2522         Use poll() not select().  Fixes bug 79397.
2523
2524 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2525
2526         Fix #79872
2527         * assembly.c (mono_assembly_load_from_full): Check that the given
2528         image has an assembly manifest.
2529
2530 2006-11-09  Ankit Jain  <jankit@novell.com>
2531
2532         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2533         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2534         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2535
2536 2006-11-07  Dick Porter  <dick@ximian.com>
2537
2538         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2539         Put the old resolver behaviour back for pre-2.0 profiles.
2540
2541 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2542
2543         * threadpool.c: precise GC and locking fixes.
2544
2545 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2546
2547         * class.c: don't load types that have an explicit unaligned
2548         managed reference. Provide better info in the TypeLoad exception.
2549         Part of the fix for bug #79744.
2550         * object.c: use the correct check for class type load issues.
2551
2552 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2553
2554         * class.c: enforce alignment of fields with managed references
2555         even when Pack=1 is forced by the user (bug #77788).
2556
2557 2006-11-03  Dick Porter  <dick@ximian.com>
2558
2559         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2560         If the address reverse lookup fails, return it as the hostname
2561         anyway.  Fixes bug 79721.
2562
2563 2006-11-03  Dick Porter  <dick@ximian.com>
2564
2565         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2566         Fix build on Windows.
2567
2568 2006-11-02  Dick Porter  <dick@ximian.com>
2569
2570         * icall-def.h: 
2571         * object-internals.h: 
2572         * exception.c (mono_get_exception_thread_interrupted): 
2573         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2574         Fixes bug 74525.
2575
2576         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2577         Check for pending Thread.Interrupt.
2578
2579 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2580         * loader.c: Fixed bug 79684.
2581
2582 2006-10-27  Dick Porter  <dick@ximian.com>
2583
2584         * file-io.c (get_file_attributes): Force symlinks to directories
2585         to be returned as a regular file.  Fixes bug 79733.
2586 2006-10-26  Dick Porter  <dick@ximian.com>
2587
2588         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2589         CreateFile to open a directory then we need to set the
2590         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2591
2592 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2593
2594         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2595         friends.
2596
2597 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2598
2599         * sgengc.c: small cleanup of timer code.
2600
2601 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2602
2603         * sgen-gc.c: fix some warnings and start adding support for
2604         complete object removal on domain unload.
2605
2606 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2607
2608         * assembly.c: build_assembly_name should not consider a version
2609         number without build or revision number invalid. Fixes bug #79715.
2610
2611 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2612
2613         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2614         call kernel32 function OutputDebugString directly.
2615         
2616         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2617         
2618 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2619
2620         * reflection.c: small cleanup, using a function to insert a MonoString
2621         in the string heap.
2622
2623 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2624
2625         * reflection.c: moving GC fixes.
2626
2627 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2628
2629         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2630         all the objects with finalizers belonging to an unloading appdomain.
2631
2632 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2633
2634         * sgen-gc.c: added ability to allocate even when the nursery is fully
2635         pinned and fixed a couple of bugs.
2636
2637 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2638
2639         * threads.h: Revert the last change for now.
2640
2641         * threads.h (mono_thread_get_pending_exception): Rename this to
2642         mono_thread_get_undeniable_exception ().
2643
2644 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2645
2646         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2647         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2648         when fname does not refer to valid assembly. This result in a more
2649         meaningful error message.
2650         * exception.c: added mono_get_exception_bad_image_format2 which 
2651         constructs a BadImageFormatException using the ctor taking a custom
2652         message and the file name. Passing in a NULL msg results in a default
2653         message.
2654         * exception.h: define mono_get_exception_bad_image_format2 function.
2655         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2656         when file name pointed to an invalid IL image. Use 
2657         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2658         as this results in a more meaningful error message.
2659
2660 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2661
2662         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2663         #79465.
2664
2665 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2666
2667         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2668         consistency with the other _size functions.
2669         (mono_type_stack_size): Ditto.
2670
2671         * class.c object.c icall.c: Fix warnings caused by the above change.
2672
2673         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2674
2675         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2676
2677         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2678
2679 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2680
2681         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2682         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2683         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2684         threadpool.h, threads-types.h: mark more internal functions.
2685
2686 2006-10-11  Dick Porter  <dick@ximian.com>
2687
2688         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2689         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2690         reproduce the bug even before applying the fix.)
2691
2692 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2693
2694         * reflection.c: allow retrieving attributes for arguments in generic
2695         methods (bug #79241).
2696
2697 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2698
2699         * debug-mono-symfile.c: properly check fopen () result (found by
2700         coverity).
2701
2702 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2703
2704         * reflection.c: make error message clearer and fixed two
2705         issuelets found by Coverity.
2706
2707 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2708
2709         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2710
2711 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2712
2713         * object-internals.h, gc-internal.h, profiler-private.h:
2714         mark internal functions.
2715
2716 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2717
2718         * reflection.c: put data in the text section.
2719         * icall.c: recognize more types in type_from_typename ().
2720         * process.c, marshal.c: added some GC FIXMEs.
2721
2722 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2723
2724         * loader.c: check for NULL before initializing.
2725
2726 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2727
2728         * gc.c (finalizer_thread): Use a non-alertable wait here.
2729
2730         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2731         until the correct solution is found.
2732
2733 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2734
2735         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2736         modules with no metadata. Fixes #79596.
2737
2738         * image.c (load_metadata_ptrs): Put back the error message when
2739         the #- heap is encountered since the support is not complete yet.
2740
2741 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2742
2743         * gc.c: do not allow the user to SuppressFinalize () a
2744         delegate because it would leak the trampoline if present.
2745
2746 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2747
2748         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2749         PropertyPtr table.
2750
2751 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2752
2753         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2754
2755         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2756
2757         * row-indexes.h: Add definitions for *Ptr tables.
2758
2759         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2760
2761         * metadata.c (mono_metadata_translate_token_index): New helper function to
2762         translate table indexes used in uncompressed metadata.
2763         (mono_metadata_decode_table_row): Ditto.
2764         (mono_metadata_decode_table_row_col): Ditto.
2765
2766         * metadata.c: Add table schema for *Ptr tables.
2767
2768         * class.c loader.c: Use the new helper function to access the affected metadata
2769         tables.
2770         
2771         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2772         #38532.
2773         
2774 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2775
2776         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2777         sequences which can be unbounded in size. Fixes #79583.
2778
2779 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2780
2781         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2782         static initialization.
2783
2784         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2785
2786         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2787
2788         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2789
2790         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2791         ctor fails, i.e. throw the same exception on subsequent accesses.
2792         
2793 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2794
2795         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2796         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2797         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2798         Handle marshalling of interfaces and VARIANTs contained in structs.
2799         
2800         Code is contributed under MIT/X11 license.
2801         
2802 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2803
2804         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2805         
2806         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2807         mempool.
2808
2809 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2810
2811         * console-io.c: ignore previous SIGINT handler.
2812
2813 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2814
2815         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2816         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2817         #79460, #79461, #79485.
2818
2819         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2820
2821         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2822         #79217.
2823
2824 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2825
2826         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2827         could be generated from it.
2828
2829 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2830
2831         * rand.c: fix read loop to correctly handle EINTR.
2832
2833 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2834
2835         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2836         internal calls are defined to keep methods closer to the declaring
2837         type and allow a significant reduction in runtime relocations and
2838         memory usage.
2839
2840 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2841
2842         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2843         exception message to have FileNotFoundException use the default
2844         assembly load error message. Fixes bug #79426.
2845         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2846
2847 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2848
2849         * threadpool.c: (start_thread_or_queue) use the root domain when
2850         creating the thread instead of the async object one.
2851
2852 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2853
2854         * class.c, object.c, class-internals.h, reflection.c:
2855         for arrays, store element_size inside MonoClass (speedup
2856         for array object creation).
2857
2858 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2859
2860         * icall.c: fixed CodeBase to use the file name and not the module
2861         name (bug #79365).
2862
2863 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2864
2865         * mono-debug.c, mono-debug.h: export find_method as
2866         mono_debug_find_method ().
2867
2868 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2869
2870         * debug-helpers.c, class-internals.h: added a few functions useful
2871         when debugging under gdb.
2872
2873 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2874
2875         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2876         characters that need special handling.
2877
2878 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2879
2880         * mono-config.c: make the os/cpu specification more flexible,
2881         allowing lists and negation.
2882
2883 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2884
2885         * marshal.c: COM Interop fixes. Handle case where method->klass.
2886         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2887         calling convention on non-windows platforms. This is for
2888         compatibility with XPCOM and MainWin COM.
2889         
2890         Code is contributed under MIT/X11 license.
2891         
2892
2893 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2894
2895         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2896         correctly. Fixes #79217.
2897
2898         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2899
2900 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
2901
2902         * mono-config.c: allow both an os and cpu attribute for dllmap
2903         and dllentry elemnets to enable a single config file to be used
2904         for multiple architectures.
2905
2906 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
2907
2908         * loader.c: MonoLoaderError was cleared too soon on load failure.
2909         Fixes bug #79424.
2910
2911 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
2912
2913         * icall.c: use the defining class vtable when accessing a
2914         static field, not a pobblibly derived class.
2915
2916 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2917
2918         * icall.c string-icalls.c: Remove references to unicode.h.
2919
2920         * unicode.h unicode.c Makefile.am: Remove these unused source files.
2921
2922         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
2923
2924         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
2925         indicating the image where custom marshaller types should be looked up.
2926         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
2927         custom marshallers, instead of corlib. Fixes #79425.
2928
2929 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
2930
2931         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
2932
2933 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2934
2935         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
2936         Implement Environment.ProcessorCount.
2937         
2938         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
2939         Implement Environment.ProcessorCount.
2940         
2941         * icall.c: 
2942         Add Environment.ProcessorCount icall.
2943         
2944         Patch by Jason McFall.
2945
2946 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2947
2948         * assembly.c: don't append .exe/.dll when the filename already contains
2949         one of those extensions.
2950
2951 2006-09-12  Martin Baulig  <martin@ximian.com>
2952
2953         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
2954         to array interfaces.
2955
2956 2006-09-11  Martin Baulig  <martin@ximian.com>
2957
2958         * reflection.c (mono_image_build_metadata): Create the
2959         MethodImpl's after emitting all types and methods, so we don't
2960         need another fixup pass for them.
2961
2962 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2963
2964         * class.c (mono_class_from_name_case): Fix regression introduced by the last
2965         change.
2966
2967 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
2968
2969         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2970         unload.
2971
2972 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2975         args is not set. Fixes #78926.
2976
2977 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2978
2979         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2980
2981         * image.c (load_class_names): Move this to class.c, and rename it to 
2982         'mono_image_init_name_cache'.
2983         (load_modules): Fix a warning.
2984
2985         * class.c icall.c image.c: Initialize image->name_cache lazily.
2986
2987         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2988         on its name using information in the AOT file.
2989
2990         * class.c (mono_class_from_name): Use the new hook function.
2991
2992 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2993
2994         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2995         correctly.
2996
2997         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2998         Fixes #79289.
2999         
3000 2006-09-06  Martin Baulig  <martin@ximian.com>
3001
3002         * icall.c (mono_lookup_internal_call): Small fix.
3003
3004 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3005
3006         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3007         double g_free.
3008
3009 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3010
3011         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3012         when --debug is specified.
3013
3014 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3015
3016         * class.c (setup_generic_array_ifaces): Fix a warning.
3017
3018 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3019
3020         * Temporarily remove the patch to assemly.c that checks the
3021         assembly versions as it breaks our gacutil.
3022
3023 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3024
3025         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3026
3027         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3028         a net 1.0 runtime.
3029
3030         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3031         created using the default ctor. Fixes #79152.
3032         (mono_string_builder_to_utf16): Ditto.
3033
3034 2006-09-01  Martin Baulig  <martin@ximian.com>
3035
3036         Fix handling of the generic array interfaces.
3037
3038         * class-internals.h
3039         (MonoDefaults): Removed `generic_array_class' and added
3040         `generic_ilist' class.
3041
3042         * class.c
3043         (mono_bounded_array_class_get): Add the new generic array interfaces.
3044         (setup_generic_array_ifaces): New static method; create vtable
3045         entries for each method in the generic array interfaces.
3046
3047         * metadata.c
3048         (select_container): Allow "parent-less" generic methods.
3049
3050         * marshal.c
3051         (mono_marshal_get_generic_array_helper): New public method.
3052
3053         * icall.c
3054         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3055         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3056         moved the interncall into System.Array.
3057
3058 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3059
3060         A few more cases of avoiding work on types with ->byref set.
3061         Has the real fix for #79238
3062         * icall.c (is_generic_parameter): New helper.
3063         (ves_icall_Type_GetGenericParameterPosition): Use it.
3064         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3065         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3066         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3067         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3068         reference types.
3069         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3070         reference types.
3071         (ves_icall_Type_get_IsGenericInstance): Likewise.
3072         (ves_icall_Type_get_IsGenericType): Likewise.
3073
3074 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3075
3076         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3077         class if possible.
3078
3079         * mempool.h (mono_mempool_get_allocated): New helper function.
3080
3081         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3082         change.
3083
3084         * mempool.c: Fix warnings and the calculation of stats.
3085
3086         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3087
3088         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3089
3090         * loader.c (mono_get_method_from_token): Update method_count stat.
3091
3092         * class-internals.h (MonoStats): Add some stats.
3093
3094 2006-08-31 Robert Jordan  <robertj@gmx.net>
3095
3096         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3097         with managed variants.
3098         All code is contributed under the MIT/X11 license.
3099         
3100 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3101
3102         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3103         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3104
3105         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3106
3107         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3108         with cycles in classes.
3109
3110         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3111
3112         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3113         missing a [MarshalAs] directive. Fixes #79203.
3114
3115         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3116         klass->marshal_info. Fixes #79217.
3117
3118 2006-08-30  Martin Baulig  <martin@ximian.com>
3119
3120         Committing a patch from Joachim Ante <joe@otee.dk>:
3121         Add support for binary data symbol stores.
3122
3123         * debug-mono-symfile.c
3124         (mono_debug_open_mono_symbol_file): Renamed into
3125         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3126         arguments.
3127
3128         * mono-debug.c
3129         (mono_debug_open_image): Added `raw_contents' and `size' args.
3130         (mono_debug_init_2_memory): New public function.
3131
3132 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3133
3134         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3135
3136 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3137
3138         * appdomain.c: implement support for ShadowCopyFiles.
3139
3140 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3141
3142         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3143         when value is NULL (and should remove CID #51).
3144
3145 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3146
3147         * image.c: moved 2 functions to ../utils.
3148
3149 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3150
3151         * gc.c: cope with the target object of a GC handle being NULL
3152         (bug #78877).
3153
3154 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3155
3156         * class.c: recursively check parent's explicit implementations
3157         of interface methods (fixes bug #79125).
3158
3159 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3160
3161         * filewatcher.c: Avoid warnings when building, do not redefine
3162         constants that are defined.
3163
3164         Remove warnings.
3165
3166 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3167
3168         * image.c: don't fail when the link points to an absolute path.
3169
3170 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3171
3172         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3173         Fix CID #3.
3174
3175 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3176
3177         * image.c (full_path): A new method used to obtain the actual path
3178         of an assembly even in the presence of symbolic links.  
3179
3180         This is necessary for the case where we are running a binary that
3181         has been GACed, but we are using the "published" path name
3182         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3183         file in the GAC.
3184
3185         This was the source of the failure for the `xsp' command with the
3186         recent AppDomain changes, as far as the runtime was concerned,
3187         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3188         $prefix/mono/gac/blah/version/blah.exe.
3189
3190         (do_mono_image_open): use full path
3191
3192 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3193
3194         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3195
3196 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3197
3198         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3199         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3200
3201 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3202
3203         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3204         small structures. Fixes #78990.
3205
3206 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3207
3208         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3209
3210         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3211
3212 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3213
3214         * appdomain.c:
3215         * marshal.c: don't load all the assemblies from a domain into newly
3216         created ones. The new domains might have different rules and load
3217         assemblies from different locations. Fixes bug #76757.
3218
3219         Patch by Lluis. Conflicts resolved by Brian Crowell.
3220
3221 2006-08-16  Alp Toker  <alp@atoker.com>
3222
3223         * socket-io.c: First half of the fix for #79084.
3224         Set sa_size to the length of the content, not that of the struct.
3225         Don't add NULL suffix to the content, this should be done in
3226         managed code if needed.
3227
3228 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3229
3230         Fix part of #79012
3231         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3232         mono_metadata_parse_type returns NULL.
3233
3234 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3235
3236         * normalization-tables.h : new file for string normalization data.
3237         * locales.c, locales.h, icall.c :
3238           added load_normalization_resource() for string normalization,
3239           and icall as well.
3240         * Makefile.am : added normalization-tables.h to the sources.
3241
3242 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3243
3244         * marshal.c: Add more helper functions to reduce code duplication and use them
3245         everywhere.
3246
3247 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3248
3249         * marshal.c: Fix non-x86 stdcall warnings.
3250         
3251         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3252         them everywhere.
3253
3254 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3255
3256         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3257         type check on multi-dimensional arrays. Fixes #79000.
3258
3259 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3260
3261         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3262         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3263         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3264         * class-internals.h: add is_com_object to class structure.
3265         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3266         null checks to COM object marshalling. Fix .ctor call on RCW.
3267         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3268         
3269         All code is contributed under the MIT/X11 license.
3270
3271 2006-08-09  Dick Porter  <dick@ximian.com>
3272
3273         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3274         racing mono_monitor_allocator_lock() somewhere, so don't delete
3275         the critical section for now.  Found by running and exiting
3276         monodevelop.
3277
3278 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3279
3280         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3281         (ves_icall_System_ComObject_FindInterface): Ditto.
3282         (ves_icall_System_ComObject_CacheInterface): Ditto.
3283
3284         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3285         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3286
3287 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3288
3289         * threadpool.c: treat pipes from process asynchronous reads as sockets
3290         when reading from them, so we get select/poll or epoll to wait for
3291         data.
3292
3293 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3294
3295         * loader.c: Fix a typo (CID #233) in the null check.
3296
3297 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3298
3299         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3300         Hopefully fixes #78949.
3301         
3302         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3303         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3304         bytes. Fixes #78972.
3305
3306 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3307
3308         * filewatcher.c: we need to set errno here.
3309
3310 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3311
3312         * filewatcher.c: let Win32Exception get the error value.
3313
3314 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3315
3316         * filewatcher.c: translate errno into win32 errors for Win32Exception
3317         to know what happened.
3318
3319 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3320
3321         * threadpool.c: Fix more warnings.
3322
3323         * assembly.c (search_loaded): Fix warnings.
3324
3325         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3326         (mono_async_invoke): Ditto.
3327
3328 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3329
3330         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3331         entries for __ComObject type in addition to ComImport types.
3332         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3333         about hash table.
3334         
3335         All code is contributed under the MIT/X11 license.
3336
3337 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3338
3339         * image.c: avoid tentative loading of modulerefs that contain
3340         no metadata (P/Invoke library names).
3341
3342 2006-07-28  Dick Porter  <dick@ximian.com>
3343
3344         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3345         mono_loader_lock() somewhere, so don't delete the critical section
3346         for now.  Found by running and exiting monodevelop.
3347
3348 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3349
3350         * filewatcher.c: define the inotify syscalls when we're building on
3351         linux and have sys/syscall.h. The build system might not have support
3352         for inotify but the target system might have it.
3353
3354 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3355
3356         * domain.c: Documentation updates.
3357
3358         * loader.c (mono_free_method): Do not release the method
3359         information if we are being profiled, as profilers will use this
3360         information at shut down to present some data to the user.
3361
3362         This is needed so that the profiler does not crash, as the
3363         profiler tends to keep MonoMethods around, and they might become
3364         invalid if we free these.
3365
3366         (mono_get_method_constrained): Return the original CIL stream
3367         method as well, so verification can be performed against it.
3368
3369 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3370
3371         * filewatcher.[ch]: support for inotify file system watcher.
3372         * icall.c: add new internal calls for the inotify file system watcher.
3373
3374 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3375
3376         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3377         #78888.
3378
3379 2006-07-20  Dick Porter  <dick@ximian.com>
3380
3381         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3382         warning.
3383
3384 2006-07-20  Dick Porter  <dick@ximian.com>
3385
3386         * threads.c (start_wrapper): Do the thread cleanup while we still
3387         hold a reference to its object.  Fixes bug 78123.
3388
3389 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3390
3391         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3392         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3393           "managed-to-managed".
3394         * icall.c: Redirect string constructors that take sbyte* to
3395           ves_icall_System_String_ctor_RedirectToCreateString.
3396         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3397           to CreateString () methods with matching signature.
3398         * reflection.c: Use original security informations for
3399           MONO_WRAPPER_MANAGED_TO_MANAGED.
3400         * security-manager.c: Use original security informations for
3401           MONO_WRAPPER_MANAGED_TO_MANAGED.
3402         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3403           that is a placeholder and only its address should be used.
3404         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3405           that is a placeholder and only its address should be used.
3406
3407 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3408
3409         Begin implementing COM Interop.
3410         * appdomain.c: Increment corlib version.
3411         * class.c: Set ComImport classes' parent to __ComObject.
3412         * loader.c: Mark cominterop methods as such.
3413         * domain.c: Add __ComObject class to MonoDefaults structure.
3414         * image.c: Add 2 hashtables to the image for COM Interop related methods
3415         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3416         using the mempool allocator
3417         
3418         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3419         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3420         declaration for mono_metadata_type_dup_mp.
3421         
3422         * debug-helpers.c: Added strings for two additional wrapper types
3423         * object.c: Create proxy objects for ComImport classes
3424         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3425         and added __ComObject class to MonoDefaults structure.
3426         
3427         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3428         MonoComInteropProxy and MonoComObject.
3429         
3430         * marshal.c: Added support for COM Interop
3431         (signature_cominterop): Converts managed signature to corresponding
3432         unmanaged COM signature.
3433         (cominterop_get_function_pointer): gets unmanaged function pointer via
3434         COM object vtable
3435         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3436         (cominterop_get_method_interface): returns interface type that method is defined on
3437         (mono_mb_emit_cominterop_call): emits native call to function pointer
3438         gotten from vtable
3439         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3440         that matches signature of unmanaged function.
3441         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3442         (cominterop_get_invoke): forwards call from proxy to __ComObject
3443         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3444         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3445         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3446         
3447         * marshal.h: Added Marshal icall declarations.
3448         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3449         so we can access them in finalizer
3450         
3451 2006-07-14  Dick Porter  <dick@ximian.com>
3452
3453         * object.c (mono_type_initialization_cleanup): Fix a race
3454         condition by temporarily commenting out the critical section
3455         deletion.
3456
3457 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3458
3459         * reflection.c (create_custom_attr): Fix some warnings.
3460         (create_custom_attr_data): Ditto.
3461         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3462         types. Fixes #78855.
3463
3464 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3465
3466         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3467
3468         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3469
3470 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3471
3472         * reflection.c (resolve_object): Add support for DynamicMethod.
3473
3474         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3475         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3476
3477 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3478
3479         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3480         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3481
3482 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3485         Fixes #77888.
3486
3487 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3488
3489         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3490         slightly: remove a shadow local variable.
3491
3492 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3493
3494         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3495         definition that introduces the virtual function slot.
3496         Also fix Coverity #105.
3497
3498 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3499
3500         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3501         for dynamic assemblies. Fixes #78724.
3502
3503 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3504
3505         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3506         Fixes #78722.
3507
3508 2006-06-21  Martin Baulig  <martin@ximian.com>
3509
3510         * reflection.c
3511         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3512         fixes #76484.
3513
3514 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3515
3516         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3517
3518 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3519
3520         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3521         nor TYPEREFs.
3522         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3523         Inflate result if necessary.
3524         (mono_class_get_full): Remove old version.  Rename from
3525         'mono_class_get' and add 'context' argument.  Pass it to
3526         ..._create_from_typespec.
3527         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3528         (mono_ldtoken): Revert change below.
3529
3530 2006-06-20  Martin Baulig  <martin@ximian.com>
3531
3532         * class.c (mono_ldtoken): Don't pass the generic context to
3533         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3534
3535 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3536
3537         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3538         and later freeing it. Fixes #78638.
3539
3540 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3541
3542         * icall.c (mono_class_get_throw): Revert over-zealous error
3543         throwing, the caller for mono_class_get_throw will cope with
3544         errors when classes are not properly initialized already.
3545
3546         The code still copes with loader exceptions though.
3547
3548         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3549         
3550 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3551
3552         Fixes the `make run1' version of RuntimeAbort (to be commited,
3553         source is in Bugzilla).
3554         
3555         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3556         FALSE on class loading failure instead of returning true.
3557
3558         * class.c (mono_class_create_from_typedef): It is possible for
3559         mono_metadata_interfaces_from_typedef_full to fail if a class is
3560         not found, cope with this.
3561         
3562
3563 2006-06-14  Dick Porter  <dick@ximian.com>
3564
3565         * socket-io.c: 
3566         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3567         4.1.1
3568
3569 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3570
3571         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3572
3573 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3574
3575         * icall.c: Another fix for building mono in Visual Studio.
3576
3577 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3578
3579         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3580         
3581 2006-06-09  Martin Baulig  <martin@ximian.com>
3582
3583         * debug-mono-symfile.c: Put this back and really fix it this
3584         time. Sorry for all the trouble.
3585
3586 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3587
3588         * icall.c (mono_class_get_throw): Fix a warning.
3589         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3590         ReflectionTypeLoadException if needed. Fixes #78606.
3591
3592         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3593         (mono_class_init): Ditto.
3594
3595         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3596         ref_only exceptions.
3597         (mono_loader_clear_error): Make this work even if there is no error.
3598
3599 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3600
3601         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3602         Marshal.GetComSlotForMethodInfo using internal call.
3603
3604 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3605
3606         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3607         a function for signalling it.
3608
3609         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3610         a referenced assembly is not found.
3611
3612         * loader.c (mono_loader_error_prepare_exception): Add support for 
3613         LOADER_ERROR_ASSEMBLY. Fix formatting.
3614
3615 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3616
3617         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3618         for VARIANT marshalling on windows and increment corlib version
3619         since Variant struct was added.
3620
3621 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3622
3623         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3624         stack trace line information:
3625
3626         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3627         (Martin) when looking up B which is between A and C, return A not C.
3628
3629         Bug is #78573.
3630
3631         Thanks to Alexander Olk for tracking this down.
3632
3633 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3634
3635         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3636         
3637         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3638         avoid clobbering its value.
3639         (mono_string_to_lpstr): Fix a warning on windows.
3640
3641 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3642
3643         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3644
3645         * reflection.c loader.c: Removed references to 'dummy' flag.
3646
3647         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3648
3649         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3650         it gets GC tracking.
3651
3652         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3653         GC tracking.
3654         
3655         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3656
3657         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3658
3659         * appdomain.c: Bump corlib version.
3660
3661 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3662
3663         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3664         CEE_STIND_REF when working with object references.
3665
3666 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3667
3668         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3669         Fixes #78539.
3670
3671 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3672
3673         * loader.c (method_from_memberref): Fix argument value for
3674         mono_loader_set_error_method_load (I was passing the MonoClass
3675         instead of the class name char *).
3676
3677 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3678
3679         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3680         CEE_STIND_REF when working with object references.
3681
3682 2006-05-30  Martin Baulig  <martin@ximian.com>
3683
3684         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3685         mono_method_full_name() change and replace the ':' with a '.'
3686         here.
3687
3688 2006-05-30  Martin Baulig  <martin@ximian.com>
3689
3690         * debug-mono-symfile.c
3691         (mono_debug_symfile_lookup_location): Fix the algorithm:
3692         when looking up B which is between A and C, return A not C.
3693
3694 2006-05-29  Martin Baulig  <martin@ximian.com>
3695
3696         * mono-debug.h
3697         (MonoDebugMethodInfo): Make the typedef public.
3698         (MonoDebugSourceLocation): New public struct.
3699
3700         * mono-debug.c
3701         (mono_debug_source_location_from_address): Removed.
3702         (mono_debug_source_location_from_il_offset): Removed.
3703         (mono_debug_il_offset_from_address): Removed.
3704         (mono_debug_address_from_il_offset): Removed.
3705         (mono_debug_lookup_method): New public function.
3706         (mono_debug_lookup_source_location): New public function; replaces
3707         the old mono_debug_source_location_from_*() functions; see the
3708         inline documentation.
3709         (mono_debug_free_source_location): New public function.
3710         (mono_debug_print_stack_frame): New public function; see the
3711         inline documentation.
3712
3713         * debug-mono-symfile.c
3714         (mono_debug_find_source_location): Renamed into
3715         mono_debug_symfile_lookup_location(); only take a
3716         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3717         documentation.
3718         (mono_debug_find_method): Renamed into
3719         mono_debug_symfile_lookup_method().
3720
3721 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3722
3723         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3724         returned by mono_image_open_full ().
3725
3726         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3727         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3728         #78517.
3729
3730         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3731         #78518.
3732
3733 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3734
3735         * class.c (mono_class_from_typeref): handle missing images
3736         earlier, deals with bug #78418.   Refactor code; 
3737
3738         Fix a warning introduced in my previous commit (some stale code
3739         from before I revisited my patch).
3740
3741         * class.c (mono_class_create_from_typedef): On failure, remove the
3742         class from the MonoImage->class_cache as the class is not
3743         initialized;   Fixes the leak pointed out by Paolo.
3744
3745 2006-05-25  Dick Porter  <dick@ximian.com>
3746
3747         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3748         DeleteCriticalSections until I figure out which one may still be
3749         sometimes locked when mono_thread_cleanup is called.
3750
3751 2006-05-24  Dick Porter  <dick@ximian.com>
3752
3753         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3754         of mono_thread_manage and back into its own function, so it can be
3755         called after the finalizer thread has finished.
3756
3757         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3758
3759 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3760
3761         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3762         Fixes #78495.
3763
3764         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3765         with non-blittable elements.
3766         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3767
3768 2006-05-24  Martin Baulig  <martin@ximian.com>
3769
3770         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3771         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3772
3773         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3774         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3775         `mono_debugger_event_handler' to NULL.
3776
3777 2006-05-24  Martin Baulig  <martin@ximian.com>
3778
3779         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3780
3781 2006-05-24  Martin Baulig  <martin@ximian.com>
3782
3783         * mono-debug-debugger.h
3784         (mono_debugger_create_notification_function): Added
3785         `MonoCodeManager *' argument.
3786
3787 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3788
3789         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3790
3791 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3792
3793         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3794         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3795         implementation.
3796
3797 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3798
3799         * icall.c: precise GC support: objects can't be stored in unmanaged
3800         memory anymore, even if they are kept alive by other references: since
3801         they can move the GC needs to be able to always find them.
3802
3803 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3804
3805         * object.c: precise GC support for static fields. Support
3806         for moving GCs: write barriers and pinned allocation for interned
3807         strings.
3808
3809 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3810
3811         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3812         structure.
3813
3814 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3815
3816         * class.c, gc.c: sgen and precise GC updates.
3817
3818 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3819
3820         * marshal.h, marshal.c: added write barrier wrapper and precise type
3821         fixes.
3822
3823 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3824
3825         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3826         support.
3827
3828 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3829
3830         * reflection.c: precise and sgen GC updates.
3831
3832 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3833
3834         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3835
3836 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3837
3838         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3839
3840 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3841
3842         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3843         MONO_TYPE_OBJECT. Fixes #78462.
3844
3845 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3846
3847         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3848         and blittable types.
3849
3850 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3851
3852         * class.c (mono_class_get_exception_for_failure): Implement parts
3853         of a TODO: if the loader error is set (instead of the class
3854         error), we return a Loader exception that can be properly thrown
3855         elsewhere.
3856
3857         This was exposed by some Winforms 2.0 code that I tried to run
3858         (Atsushi pointed me to it).
3859
3860 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3861
3862         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3863         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3864         
3865         * marshal.c (emit_marshal_vtype): Add limited support for 
3866         UnmanagedType.LPStruct. Fixes #78427.
3867
3868         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3869         Applied a patch from kangaroo to fix #77523.
3870
3871 2006-05-17  Martin Baulig  <martin@ximian.com>
3872
3873         * threads.c
3874         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3875         (debugger_thread_created): Removed.
3876         (debugger_thread_exited): Removed.
3877
3878 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3879
3880         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3881
3882         * object-internals.h (MonoReflectionResource): Sync with managed version.
3883
3884 2006-05-12  Wade Berrier <wberrier@novell.com>
3885
3886         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3887
3888 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3889
3890         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3891         functions try to allocate from the image mempool.
3892
3893 2006-05-12  Dick Porter  <dick@ximian.com>
3894
3895         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3896
3897 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3898
3899         * object.c: The FieldGetter and FieldSetter methods require the full
3900         name of the class, not only the name. Fixes bug #78277.
3901
3902 2006-05-11  Miguel de Icaza  <miguel@novell.com>
3903
3904         * loader.c (method_from_memberref): Do not pass the NULL klass to
3905         mono_loader_set_error_() methods.  Pass the non-NULL value
3906         (class). 
3907
3908 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3909
3910         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
3911         (mono_assembly_close): Null out assembly->image->references after freeing it.
3912
3913         * image.c (mono_image_close): Free image->references.
3914         
3915         * reflection.c (mono_image_basic_init): Fix a small memory leak.
3916
3917 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3918
3919         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
3920         before checking if it's NULL (g_assert).
3921
3922 2006-05-10  Martin Baulig  <martin@ximian.com>
3923
3924         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
3925         I thought I already killed that two months ago, but now it somehow reappeared.
3926
3927 2006-05-10  Martin Baulig  <martin@ximian.com>
3928
3929         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
3930
3931 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3932
3933         * reflection.c: Allocate memory for dynamically created methods in the image
3934         mempools.
3935
3936 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3937
3938         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
3939         don't use the ad pointer before checking if it's NULL (g_assert).
3940
3941 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3942
3943         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
3944         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
3945
3946         * marshal.c: Allocate all signatures from mempools.
3947
3948         * marshal.c: Allocate some more signatures from mempools.
3949
3950 2006-05-09  Miguel de Icaza  <miguel@novell.com>
3951
3952         * object.c (mono_load_remote_field): The code used to provide a
3953         temporary variable for returning results if the user did not
3954         provide a result pointer.  But our temporary variable was allocted
3955         on the satck.
3956
3957         Fix calling code to always pass a result area.   Coverity ID 103.
3958
3959 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3960
3961         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
3962         value, not the old. Fixes #78312.
3963         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
3964
3965         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
3966         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
3967         per-image cache.
3968
3969         * assembly.c (mono_assembly_close): Free image->references.
3970
3971         * assembly.c (mono_assembly_names_equal): Fix a warning.
3972         (mono_assemblies_cleanup): Cleanup more global data.
3973
3974         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3975
3976         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3977         ptr_cache and image->modules.
3978
3979         * image.c (mono_image_init): Allocate array_cache lazily.
3980         
3981 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3982
3983         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3984         behavior was changed recently and has bad side effects.
3985
3986 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3987
3988         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3989         
3990         * assembly.c (mono_assembly_close): Remove a debug printf.
3991
3992         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3993
3994         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3995         to also allow for temporary references between mono_image_open ()/close ().
3996
3997         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3998
3999 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4000
4001         * marshal.c: Fix support for dynamic methods.
4002
4003         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4004
4005         * marshal.c (mono_marshal_cleanup): New cleanup function.
4006
4007         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4008         image mempools.
4009
4010         * class.c (mono_class_init): Fix leaking class->nested_classes.
4011
4012         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4013
4014         * image.c (mono_image_init): Initialize the new cashes.
4015
4016         * image.c (mono_image_close): Destroy the new cashes.
4017
4018         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4019
4020         * mempool.c (mono_mempool_strdup): New helper function.
4021
4022         * class-internals.h: Add prototype for mono_loader_unlock ().
4023
4024         * domain.c (mono_jit_info_table_find): Fix a warning.
4025         (mono_debugger_check_runtime_version): Ditto.
4026
4027         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4028         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4029         functions to these modules.
4030
4031         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4032         metadata modules.
4033         
4034         * marshal.c (mono_free_bstr): Fix a warning.
4035
4036         * assembly.c (mono_assembly_open_full): Fix another small leak.
4037
4038         * object.c: Fix some unload leaks in the remoting code.
4039
4040         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4041         function.
4042
4043         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4044
4045         * reflection.c: Fix some unload leaks in dynamic assemblies.
4046
4047 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4048
4049         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4050         * marshal.h: Add BSTR support on Win32
4051         * icall.c: Add BSTR icalls
4052         * metadata.h: Add BSTR enums
4053
4054 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4055
4056         Work to catch the crash from #76795 and turn it into an
4057         exception.   As I stubbed out pieces of the VisualBasic support,
4058         I found a number of places where the code was failing and I added
4059         checks to those places. 
4060         
4061         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4062         function return a status code.  If we fail to parse the signature
4063         from mono_metadata_parse_generic_inst, return FALSE.
4064
4065         * loader.c (mono_get_method_from_token): If we fail to load the
4066         method (mono_class_get) return NULL.   
4067
4068         * (method_from_memberref): Return NULL if we are unable to parse
4069         the method signature
4070
4071         (mono_loader_error_prepare_exception): Since we now use the
4072         loader_error flag internally to stop processing, and obtaining
4073         exceptions that might be thrown will walk this code path the
4074         proper way of going from a MonoLoaderError into a
4075         MonoException was convoluted.   This new routine encapsulates the
4076         process of turning the error into an exception and *clearing* the
4077         error afterwards.
4078         
4079 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4080
4081         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4082         with missing assemblies), and to cope with:
4083
4084                 * Missing fieldref from a non-existing assembly.
4085                 * Missing methodref from a non-existing assembly.
4086
4087         The first batch of work to address *some* of the issues from 76661.
4088         
4089         * object.c (mono_class_create_runtime_vtable): If we fail to
4090         initialize the class raise the exception here. 
4091
4092         * metadata.c (mono_class_get_overrides_full): If any methods fail
4093         to load return the failure to the caller.
4094
4095         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4096         flagging assemblies that failed to load.   
4097
4098         Do not crash if we are unable to load the assembly.
4099
4100         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4101         assemblies. 
4102
4103         * loader.c (mono_loader_set_error_type_load): Change the
4104         convention to always pass unallocated strings, so we make our own
4105         copies (I know our own code had duplicated strings before, but
4106         this keeps the normal conventions).
4107         (method_from_memberref): Call mono_loader_set_error_method_load
4108         for all possible failures of loading the class. 
4109         Remove assert, turn into a loader error.
4110
4111         (mono_loader_error_to_exception): Move this routine from mini
4112         (mini_loader_error_to_exception) there was no need to have that in
4113         mini. 
4114
4115         * class.c (mono_class_from_typeref): If we were not able to load
4116         the assembly with mono_assembly_load_reference, call the
4117         mono_loader_set_error_type_load to register the problem.
4118
4119         (mono_class_setup_fields): If we fail to load the type from
4120         mono_metadata_parse_type_full, call mono_class_set_failure and
4121         break from the loop.
4122
4123         If class->exception_type is set, we do not layout the fields as
4124         that might crash the runtime, and instead return (from breaking
4125         from the previous loop).
4126
4127         (mono_class_setup_vtable): This now returns a boolean indicating
4128         whether the table was properly setup.   The decision is driven by
4129         mono_class_get_overrides_full which might run into non-existing
4130         methods. 
4131         
4132         (mono_class_init): Returns TRUE on success or FALSE if there was a
4133         problem in loading the type (incorrect assemblies, missing
4134         assemblies, methods, etc).
4135
4136         When we call mono_class_setup_fields we also check for a potential
4137         error inside this call (either a class exception or a general
4138         loader exception).
4139
4140         (mono_class_create_from_typedef): If the parent fails to load
4141         (calling mono_class_get_full) return NULL.
4142         
4143         ** Important **
4144
4145         calls to mono_metadata_parse_type_full should be checked
4146         everywhere and set the mono_class_set_failure
4147         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4148
4149         The current patch checks the places where my manually constructed
4150         tests show the errors are showing up, but we should do it
4151         everywhere. 
4152
4153         ** Important2 **
4154
4155         mono_class_init return values should be tested everywhere, like
4156         the previous case this is something that we should audit
4157         everywhere and not only on the cases exposed by the tests I
4158         created. 
4159
4160 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4161
4162         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4163         boolean parameter and instead pass the information on `options'
4164         parameter (FileOptions).
4165
4166         * icall.c: Register the new signature for MonoIO.Open.
4167
4168         * debug-helpers.c (dis_one): Trying to understand how coverity
4169         works.  Fix Run 5, item 78.
4170
4171 2006-04-26  Dick Porter  <dick@ximian.com>
4172
4173         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4174         dereference.
4175
4176 2006-04-25  Martin Baulig  <martin@ximian.com>
4177
4178         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4179
4180         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4181         debugger_thread_created().
4182         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4183         special way.
4184         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4185         (mono_debugger_finalize_threads): New function; undo the effects
4186         of mono_debugger_init_threads().
4187         (mono_debugger_create_all_threads): Removed.
4188
4189 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4190
4191         * image.c (mono_image_close): Tidy up trace messages.
4192
4193         * assembly.c (mono_assembly_close): Ditto.
4194
4195         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4196         no longer references an already freed assembly. Fixes #78168.
4197
4198 2006-04-21  Dick Porter  <dick@ximian.com>
4199
4200         * threads.c (mono_thread_detach): Fix reference counting when
4201         detaching threads.
4202
4203 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4204
4205         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4206         #78155.
4207
4208 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4209
4210         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4211         (mono_type_to_stind): Ditto.
4212
4213         * marshal.c: Use the new helper functions to simplify code.
4214
4215         * image.c (mono_image_close): Add some code for help debug assembly unloading
4216         problems.
4217
4218         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4219         image mempool.
4220
4221         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4222         assembly was already loaded in another appdomain. Fixes #78083.
4223
4224 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4225
4226         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4227         referenced assemblies.
4228         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4229
4230         * domain.c (mono_domain_free): Add a trace message.
4231
4232         * appdomain.c (add_assemblies_to_domain): Ditto.        
4233
4234         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4235         field.  
4236
4237 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4238
4239         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4240
4241 2006-04-12  Martin Baulig  <martin@ximian.com>
4242
4243         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4244         `USE_INCLUDED_LIBGC'.   
4245
4246 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4247
4248         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4249         the patch contains ../ and a small directory name later. Hopefully fixes
4250         #78035.
4251
4252 2006-04-10  Martin Baulig  <martin@ximian.com>
4253
4254         Clean up the debugger's thread-handling code.
4255
4256         The debugger's thread-handling code has been moved from
4257         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4258         over the `threads' hash, keep track of exiting threads and also
4259         use proper locking.
4260
4261         We can now debug XSP and XSP based applications with the debugger.
4262
4263         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4264
4265         * threads.h
4266         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4267         (mono_install_thread_callbacks): Likewise.      
4268
4269         * threads.c (mono_thread_callbacks): Removed.
4270         (debugger_thread_created, debugger_thread_exited): New static functions.
4271         (start_wrapper): Call debugger_thread_created().
4272         (thread_cleanup): Call debugger_thread_exited().
4273         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4274         (mono_debugger_init_threads): New public function.
4275         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4276         iterate directly over the `threads' hash and also use proper locking.
4277
4278         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4279
4280         * mono-debug-debugger.h
4281         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4282
4283 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4284
4285         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4286         argument type=array. Fixes #78057.
4287
4288 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4289
4290         * culture-info-table.h : regenerated. Fixed bug #69652.
4291
4292 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4293
4294         * loader.c metadata.c: Reapply a variant r59116.
4295         
4296         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4297
4298         * class.c (mono_class_setup_interface_offsets): New internal function.
4299
4300         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4301         interfaces too. Fixes #77398.
4302
4303         * reflection.c (encode_cattr_value): Add support for 
4304         parameter type=object, argument type=array.
4305         (load_cattr_value): Ditto. Fixes #77916.
4306
4307         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4308         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4309
4310         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4311         a byval char array and CharSet is Ansi.
4312
4313         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4314
4315 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4316
4317         * metadata.c: Add some locking comments.
4318         
4319         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4320         mempool.
4321         (mono_metadata_free_method_signature): Don't free the signature itself.
4322
4323         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4324
4325         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4326         reference the same MonoImage.
4327         (mono_assembly_load_from_full): Add an assert.
4328
4329 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4330
4331         * image.c (mono_image_close): Don't put the image we are about to free into the
4332         loaded_images_guid_hash.
4333
4334         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4335         to reduce code duplication.
4336
4337         * marshal.c: Register the native functions called by this module as icalls, to
4338         somewhat centralize the creation of MonoMethodSignature's.
4339
4340         * loader.c (mono_method_signature): Add a cache for method signatures.
4341
4342         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4343         the parameter attributes of a method.
4344         (mono_metadata_parse_method_signature_full): Refactored the computation of
4345         parameter attributes into a separate function. Also avoid one allocation in
4346         most cases.
4347
4348         * assembly.c (mono_assembly_close): Ditto.
4349
4350         * image.c (mono_image_close): Log trace messages with INFO level.
4351
4352         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4353
4354         * image.c reflection.c: Correct reference counting of image modules.
4355         
4356         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4357         of this function from the image mempool.
4358         
4359         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4360         to allow more cached types to be used.
4361
4362         * mono-debug.c (mono_debug_add_method): Appled patch from
4363         David S. Miller  <davem@sunset.davemloft.net>: Access 
4364         minfo->lexical_blocks[] entry elements using read32().
4365
4366 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4367
4368         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4369         methods as it is allocated from the mempool.
4370
4371         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4372         image mempool.
4373
4374         * metadata-internals.h: Add comments describing the reference counting scheme
4375         used for MonoImage and MonoAssembly.
4376
4377         * image.c assembly.c reflection.c: Rework reference counting of images and 
4378         assemblies so they are freed when the runtime is shut down. Free some 
4379         additional memory structures when an image is unloaded.
4380         
4381 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4382
4383         * class.c loader.c reflection.c: Allocate more data structures in
4384         the image mempool.
4385
4386 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4387
4388         * icall.c
4389         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4390         build on pre glib 2.4 systems.
4391
4392 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4393
4394         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4395
4396         * icall.c: Fix some warnings.
4397
4398 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4399
4400         * culture-info-table.h : regenerated.
4401
4402 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4403
4404         * threads.c, object-internals.h, verify.c: changed the culture caching
4405         code to use a normal MonoArray for storage so the GC can keep track of
4406         them easily. Fixed bits of the cache logic, too and simplified the
4407         code.
4408
4409 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4410
4411         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4412         thread for non-Boehm GCs.
4413
4414 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4415
4416         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4417         needed to keep track of the data for static fields.
4418
4419 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4420
4421         Fix #75172
4422         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4423         for interface classes.  Use 'num_methods' instead.
4424         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4425         before using '->vtable_size' field.
4426
4427 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4428
4429         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4430         doesn't contain managed pointers, so use a normal hashtable.
4431
4432 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4433
4434         * reflection.c, class-internals.h, domain.c: fixed handling of types
4435         used as values for objects in custom attributes (bug #77915):
4436
4437 2006-03-24  Martin Baulig  <martin@ximian.com>
4438
4439         * class.c (mono_class_setup_fields): Added support for generic
4440         instances; fixes #77580.
4441
4442 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4443
4444         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4445
4446 2006-03-24  Dick Porter  <dick@ximian.com>
4447
4448         * file-io.c (get_file_attributes): More stat macro breakage.
4449         Fixes bug 77759.
4450
4451 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4452
4453         * profiler.c: added the file=filename option in the default profiler
4454         to output the profile data to filename.
4455
4456 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4457
4458         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4459         bug #77877.
4460
4461 2006-03-22  Martin Baulig  <martin@ximian.com>
4462
4463         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4464         allocated `MonoClassField *' in `fb->handle'.
4465
4466 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4467
4468         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4469         allocate interface ID to save memory and allow better ID reuse on
4470         appdomain unload. setup_generic_vtable () removal from Martin.
4471
4472 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4473
4474         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4475         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4476         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4477         write barriers for reference stores with managed objects accessed with
4478         C structures in the runtime and in embedding programs.
4479
4480 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4481
4482         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4483         'interface_id' and 'max_interface_id' fields of MonoClasses
4484         representing open generic types.
4485
4486 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4487
4488         * object.h, object.c, icall.c: added functions to deal with
4489         storing valuetypes that contain references in managed objects.
4490         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4491         fixes and comments around uses of mono_array_addr ().
4492
4493 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4494
4495         * object.h, icall.c, monitor.c: object.GetHashCode ()
4496         implementation that supports the moving garbage collector.
4497
4498 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4499
4500         * icall.c, threads-types.h, threads.c: implemented finalizer for
4501         LocalDataStoreSlot.
4502
4503 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4504
4505         * metadata.c (mono_type_size): Add a fixme.
4506         (mono_type_stack_size): Ditto.
4507
4508         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4509         'type_forwarders' field.
4510
4511         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4512         attribute from net 2.0.
4513
4514         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4515         from class.c.
4516
4517         * class.c (mono_class_setup_fields): Fix a warning.
4518         
4519         * class.c (mono_class_from_name): Add support for assemblyref entries
4520         in the EXPORTEDTYPE table.
4521
4522         * reflection.c: Add support for handling type forwarders under net 2.0.
4523
4524         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4525         
4526 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4527
4528         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4529         overwriting entries in ModuleBuild->types, also clean up the code
4530         a little. Fixes #77774.
4531
4532 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4533
4534         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4535         load friend assembly info when present.
4536
4537 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4538
4539         Fix crasher on gtest-158.cs.
4540         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4541         the return value if the MonoClass we want is yet in an
4542         inconsistent state.
4543         * class.c (mono_class_create_from_typedef): Add an comment
4544         explaining an order dependency between mono_class_setup_parent and
4545         mono_class_setup_mono_type.
4546
4547 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4548
4549         * class.c: documentation updates and events bug fix.
4550
4551 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4552
4553         * class.c: some cleanup, locking fixes.
4554
4555 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4556
4557         * class.c: fix the generics code to setup nested
4558         type info to the instantiated type (bug #77770).
4559
4560 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4561
4562         * marshal.c: fixed a few type correctness issues.
4563
4564 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4565
4566         * loader.c: the Set/Get/Addrtess array methods should be public.
4567
4568 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4569
4570         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4571         
4572         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4573         info->wrapper.
4574
4575 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4576
4577         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4578
4579         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4580
4581         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4582         (mono_mempool_alloc0): Ditto.
4583
4584 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4585
4586         * socket-io.c:
4587         (create_object_from_sockaddr): it was allocating 4 extra bytes
4588         for the AF_UNIX data. Fixes bug #77747.
4589
4590 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4591
4592         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4593
4594 2006-03-09  Dick Porter  <dick@ximian.com>
4595
4596         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4597         Fixes bug 76966 again.
4598
4599 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4600
4601         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4602         names from r57532
4603         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4604
4605 2006-03-07  Martin Baulig  <martin@ximian.com>
4606
4607         * object.c
4608         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4609
4610 2006-03-07  Martin Baulig  <martin@ximian.com>
4611
4612         * class.c
4613         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4614         regression introduced in r56970; see gtest-252.cs.
4615
4616         * loader.c (mono_get_method_constrained): Correctly handle generic
4617         methods; see gtest-253.cs.
4618
4619 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4620
4621         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4622
4623 2006-03-04  Martin Baulig  <martin@ximian.com>
4624
4625         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4626         compute the parent type at runtime, just like we're already doing
4627         it for interfaces.
4628
4629         * reflection.c
4630         (mono_reflection_bind_generic_parameters): Don't compute the
4631         parent type anymore.
4632
4633         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4634
4635 2006-03-04  Martin Baulig  <martin@ximian.com>
4636
4637         * mono-debug-debugger.h
4638         (mono_debugger_create_notification_function): Allocate memory at
4639         runtime and return a pointer to it.
4640
4641 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4642
4643         * assembly.c: Fix windows build.
4644         
4645         * assembly.c: Fix build.
4646
4647         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4648
4649         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4650         
4651 2006-03-03  Dick Porter  <dick@ximian.com>
4652
4653         * process.c
4654         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4655         Check parameters before dereferencing them.  Fixes Aaron's part of
4656         bug 77393.
4657
4658 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4659
4660         Fix performance regression.
4661         * loader.c (find_method_in_class): Add 'from_class' argument.
4662         Rename 'klass' argument to 'in_class'.  The signature is compared
4663         against the method in 'in_class', and the corresponding method is
4664         returned from 'from_class'.
4665         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4666         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4667         type definition and generic instantiation in parallel.
4668         (mono_get_method_constrained): Update to changes.
4669
4670 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4671
4672         * threads.c: make sure the domain is correct, too when doing
4673         mono_thread_attach ().
4674
4675 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4676
4677         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4678         windows. Fixes #77683.
4679
4680 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4681
4682         * object.h, *: introduced specific way to set elements of an array
4683         of references to be used as write barrier. Still need to audit the
4684         uses of mono_array_addr.
4685
4686 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4687
4688         * object-internals.h: New field to cache the assmebly name, patch
4689         from Tambet Ingo (tambet@ximian.com)
4690
4691 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4692
4693         * decimal.h, class-internals.h, metadata-internals.h,
4694         file-io.h: mark a few function declarations as internal, to
4695         reduce the number of PLT entries.
4696
4697 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4698
4699         * file-io.c: fix typo in warning message.
4700
4701 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4702
4703         * loader.c: on unix, lookup the "*A" version of a function
4704         if charset is auto as a second option before failing.
4705
4706 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4707
4708         * class.h (mono_class_inflate_generic_method): Revert to two
4709         argument version.
4710         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4711         (mono_class_inflate_generic_method_full): Add.
4712         * class.c (mono_class_inflate_generic_method_full): Rename from
4713         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4714         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4715         * loader.c, reflection.c: Update to changes.
4716
4717 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4718
4719         * icall.c: const fixes and small improvements.
4720
4721 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4722
4723         * threadpool.c: for asynchronous connect(), enable the same workaround
4724         for BSD 6 as for the Mac. Fixes bug #77637.
4725
4726 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4727
4728         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4729         formatted classes. Fixes #77524.
4730
4731 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4732
4733         * class.c (inflate_generic_type): Add a couple more
4734         micro-optimizations.
4735         (inflate_generic_context): Don't use the 'gmethod' from
4736         'inflate_with'.
4737         (mono_class_inflate_generic_method): If the method has generic
4738         parameters, but the passed-in context doesn't have a 'gmethod',
4739         create one.  Use the possibly simplified generic instantiation
4740         from the declaring class instead of the one passed in.
4741
4742 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4743
4744         Make generic method signature and method header handling lazy.
4745         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4746         (inflate_generic_header): Likewise.
4747         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4748         parameter to avoid inflating types.
4749         (mono_get_inflated_method): Empty out.
4750         * class.h (mono_class_inflate_generic_method): Update to changes.
4751         * loader.c (mono_get_method_from_token): Don't parse signature for
4752         generic methods, nor methods of generic classes.
4753         (mono_method_signature): Rename from 'mono_method_signature'.
4754         Inflate signature on demand.
4755         (mono_method_get_header): Inflate method header on demand.
4756         * reflection.c: Update to changes.
4757
4758 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4759
4760         * metadata.c (mono_metadata_inflate_generic_inst): If the
4761         instantiation is closed, don't bother expanding it in the new
4762         context.
4763         * class.c (inflate_generic_class): If the generic instantiation
4764         doesn't change after inflation, return the argument itself.
4765         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4766         Add bounds checks.
4767         (inflate_generic_context): If neither the generic class nor the
4768         generic method instantiations change, return the original context.
4769         * reflection.c (mono_method_get_object): Do
4770         'mono_get_inflated_method' before accessing the ->klass field.
4771         (inflate_mono_method): Don't create a MonoGenericMethod unless
4772         necessary.
4773         (inflate_method): Don't pass a constructed type as the declaring
4774         type of a methodbuilder.
4775
4776 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4777
4778         * object.c: fix memory overwrite.
4779
4780 2006-02-22  Dick Porter  <dick@ximian.com>
4781
4782         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4783         it doesn't work any more.
4784         (mono_threads_request_thread_dump): Fix unused variable warnings.
4785
4786 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4787
4788         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4789         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4790         the public header file.
4791
4792 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4793
4794         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4795
4796 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4797
4798         * class-internals.h, object.c: reduce the size of MonoVTable
4799         and store the interface_offsets array at negative offsets.
4800
4801 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4802
4803         * metadata.c: tweak table descriptors data structures to reduce
4804         size and runtime relocations.
4805
4806 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4807
4808         * marshal.c: fix some types and opcodes to be type-safe
4809         in marshaling wrappers.
4810
4811 2006-02-21  Ankit Jain  <jankit@novell.com>
4812
4813         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4814
4815 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4816
4817         * metadata.c (get_constraints): Relax debugging checks for monodis.
4818
4819 2006-02-21  Ankit Jain  <jankit@novell.com>
4820
4821         * metadata.c (mono_metadata_load_generic_params): Move the code
4822         checking for ambiguous generic params from here to mono/dis/get.c
4823         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4824
4825 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4826
4827         Fix assertion triggered when compiling nemerle.
4828         * class.c (mono_get_shared_generic_inst): Rename from
4829         get_shared_inst and make non-static.
4830         * loader.c (mono_get_shared_generic_method): New.  Used to create
4831         the MonoGenericContext-equivalent of a MonoGenericContainer.
4832         (mono_get_method_from_token): Initialize the 'context' field of
4833         the created MonoGenericContainer.
4834         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4835         * metadata.c (get_constraints): Add sanity check.
4836         * class-internals.h: Add new internal methods.
4837
4838         * reflection.c (verify_safe_for_managed_space): New sanity check.
4839         Currently checks that owner-less generic parameters aren't allowed
4840         in managed space.
4841         (mono_type_get_object): Use it.
4842         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4843         that are now in mono_type_get_object.
4844         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4845
4846 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4847
4848         * metadata.c (mono_type_create_from_typespec): Rename from
4849         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4850         argument and caching of types in the generic container.
4851         (unwrap_arrays, find_generic_param): Remove.
4852         * metadata-internals.h: Update.
4853         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4854
4855 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4856
4857         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4858
4859         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4860         return values. Fixes #77581.
4861
4862         * class.c (mono_fnptr_class_get): Switch name and name_space.
4863
4864         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4865         classes and add support for [In, Out] attributes.
4866         (mono_marshal_free_asany): Ditto. Fixes #77524.
4867
4868 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4869
4870         * class.c (mono_class_from_generic_parameter): Make more robust to
4871         incomplete MonoGenericContainers from monodis.
4872
4873 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4874
4875         * class-internals.h: added some more exception types.
4876         * class.c, metadata.c: added a few checks to handle missing
4877         types.
4878
4879 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4880
4881         Use owner-less generic-params some more.
4882         * class.c (my_mono_class_from_generic_parameter): Remove.
4883         (mono_class_from_generic_parameter): Handle null image,
4884         param->name and param->owner.
4885         (mono_class_from_mono_type): Update.
4886         (mono_class_create_from_typespec): Remove 'container' parameter.
4887         If that parameter is non-null, the result is always inflated by
4888         'mono_class_get_full' anyway.
4889         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4890         parameter.
4891         (mono_class_get_full): Update.
4892
4893         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4894         instance is not open, don't bother inflating.
4895         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4896         parse metadata for inflated classes.
4897         (_mono_class_get): Change GenericContext* parameter to
4898         GenericContainer*.
4899         (mono_class_create_from_typespec): Likewise.  Simplify, and
4900         implement trivially.  All the cases are handled in
4901         mono_class_from_mono_type.  Don't inflate returned class.
4902         (mono_class_get_full): Delegate GENERICINST optimization to
4903         inflate_generic_type.
4904         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
4905
4906 2006-02-16  Dick Porter  <dick@ximian.com>
4907
4908         * socket-io.c (create_object_from_sockaddr): Fix typo.
4909         (create_sockaddr_from_object): Check array lengths before
4910         potentially accessing items off the end.
4911         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
4912         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
4913         (ves_icall_System_Net_Sockets_Socket_Send_internal)
4914         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
4915         length checks to avoid wraparound overflows.
4916         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
4917         contents of the array of sockets
4918         (hostent_to_IPHostEntry2)
4919         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
4920         Check return value of inet_ntop ().
4921         (addrinfo_to_IPHostEntry): Fix typo
4922
4923 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4924
4925         Type metadata parsing doesn't use generic-instantiation information.
4926         * metadata.c (mono_metadata_parse_array_full): Change
4927         MonoGenericContext* parameter to MonoGenericContainer*.
4928         (mono_metadata_parse_type_full): Likewise.
4929         (mono_type_create_from_typespec_full): Likewise.
4930         (mono_metadata_parse_mh_full): Likewise.
4931         (mono_metadata_parse_generic_inst): Likewise.
4932         (do_mono_metadata_parse_generic_class): Likewise.
4933         (do_mono_metadata_parse_type): Likewise.
4934         * metadata-internals.h: Update to changes.
4935         * class.c (mono_class_find_enum_basetype): Likewise.
4936         (mono_class_setup_fields): Likewise.
4937         (mono_class_create_from_typespec): Likewise.
4938         * loader.c (method_from_methodspec): Likewise.
4939         (mono_get_method_from_token): Likewise.
4940         (mono_method_get_header): Likewise.
4941
4942 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4943
4944         * marshal.c: handle additional GENERICINST case (patch from
4945         Thong Nguyen <tum@veridicus.com>).
4946         Fix a few cases where LDIND_I/STIND_I was used for references.
4947
4948 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4949
4950         * reflection.c (mono_reflection_get_token): Remove unused variable.
4951
4952 2006-02-16  Martin Baulig  <martin@ximian.com>
4953
4954         * reflection.c (mono_reflection_get_token): Add support for fields
4955         in instantiated generic types.
4956
4957         * icall.c
4958         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
4959
4960 2006-02-15  Martin Baulig  <martin@ximian.com>
4961
4962         * icall.c
4963         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
4964         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
4965         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
4966         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
4967
4968 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4969
4970         * class.c, metadata.c, metadata.h, object.c, icall.c,
4971         marshal.c: changed mono_type_get_underlying_type () to do
4972         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4973         Fixed handling of instantiated generic valuetypes (bug #75479).
4974
4975 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4976
4977         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4978         Delegate to mono_metadata_decode_value, and work on the returned value.
4979
4980         * icall.c (ves_icall_MonoType_GetGenericArguments):
4981         Add consistency check here too.
4982         
4983 2006-02-15  Ankit Jain  <jankit@novell.com>
4984
4985         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4986         char/short etc.
4987
4988 2006-02-15  Ankit Jain  <jankit@novell.com>
4989
4990         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4991         signed values, used only for representing lower bounds of arrays.
4992         (mono_metadata_parse_array_full): Use new
4993         mono_metadata_decode_signed_value to decode lower bounds.
4994
4995 2006-02-14  Martin Baulig  <martin@ximian.com>
4996
4997         * reflection.c
4998         (mono_reflection_get_token): Support "MonoGenericMethod" and
4999         "MonoGenericCMethod" and allow generic instances / methods.
5000
5001 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5002
5003         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5004         to obtain the terminal size using an ioctl.
5005
5006         * object.c (mono_nullable_init): Revert this as nullable reference
5007         types are not valid.
5008         (mono_nullable_box): Ditto.
5009
5010 2006-02-09  Dick Porter  <dick@ximian.com>
5011
5012         * threads.c (mono_thread_detach): Drop a reference to the thread
5013         we're detaching.
5014
5015 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5016
5017         * object.c (mono_nullable_init): Handle nullable reference types.
5018         (mono_nullable_box): Ditto. Fixes #77446.
5019
5020 2006-02-07  Martin Baulig  <martin@ximian.com>
5021
5022         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5023
5024 2006-02-07  Ankit Jain  <jankit@novell.com>
5025
5026         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5027         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5028         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5029         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5030         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5031         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5032
5033 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5034
5035         * class.c (mono_class_create_generic): Set type_token as well.
5036
5037         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5038         compatible with MS.
5039
5040 2006-02-02  Martin Baulig  <martin@ximian.com>
5041
5042         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5043         has never been used so far.
5044
5045 2006-02-02  Martin Baulig  <martin@ximian.com>
5046
5047         * mono-debug-debugger.h: Changed comment at the top of this file;
5048         the header is not installed, but it's safe to #include it from
5049         within the JIT.
5050
5051         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5052         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5053
5054 2006-02-02  Martin Baulig  <martin@ximian.com>
5055
5056         * mono-debug.h
5057         (MonoSymbolTable): Removed the `metadata_info' field.
5058
5059         * mono-debug.c
5060         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5061
5062         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5063         (mono_debugger_add_builtin_types): Removed.
5064         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5065         (mono_debugger_create_notification_function): We now operate on a
5066         pre-allocated area; take a `gpointer' and return `void'.
5067
5068         * mono-debug-debugger.c
5069         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5070         (mono_debugger_add_builtin_types): Removed.
5071
5072 2006-02-02  Martin Baulig  <martin@ximian.com>
5073
5074         * threads.c (mono_debugger_create_all_threads): New public method.
5075
5076 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5077
5078         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5079         breaks on several platforms.
5080
5081 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5082
5083         * assembly.c: the VS.NET build doesn't supply default values for
5084         MONO_ASSEMBLIES and MONO_CFG_DIR.
5085
5086 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5087
5088         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5089         helper function.
5090
5091         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5092
5093         * loader.c (method_from_memberref): Fix a warning.
5094
5095         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5096
5097         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5098         with explicit layout. Fixes #77433.
5099
5100 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5101
5102         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5103         max_interface_id is initialized before using it. Fixes #77398.
5104         (ves_icall_Type_GetInterfaces): Ditto.
5105
5106 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5107
5108         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5109         allocate memory for parameter attributes when parsing memberref
5110         signatures.
5111         * loader.c (mono_loader_set_error_method_load): Don't warn.
5112         (method_from_memberref): Ensure MissingMethodException gets thrown
5113         if method is not found.  Make warning more informative.
5114
5115 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5116
5117         Fix #77397
5118         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5119         return true if is byref.
5120         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5121         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5122         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5123
5124 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5125
5126         Fix tests/find-method.2.il
5127         * loader.c (find_method, find_method_in_class): Remove is_inflated
5128         argument.  Revert 2006-01-18 change.
5129         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5130         is generic, search for method in its generic definition.
5131         * class.c (mono_class_setup_vtable_general): Print generic
5132         arguments of generic types in debugging printf.
5133
5134 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5135
5136         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5137
5138         * threads.c (mono_threads_request_thread_dump): New helper function.
5139
5140 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5141
5142         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5143
5144 2006-01-25  Ankit Jain  <jankit@novell.com>
5145
5146         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5147         move definition to ..
5148         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5149         
5150 2006-01-25  Ankit Jain  <jankit@novell.com>
5151             Raja R Harinath  <rharinath@novell.com>
5152
5153         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5154         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5155         as necessary.
5156
5157 2006-01-25  Martin Baulig  <martin@ximian.com>
5158
5159         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5160         `MonoDebuggerThread' into debug-debugger.c.
5161
5162 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5163
5164         * profiler.c: fix printing of data.
5165
5166 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5167
5168         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5169           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5170
5171 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5172
5173         * object.c: fix deadlock related to string interning.
5174
5175 2006-01-23  Martin Baulig  <martin@ximian.com>
5176
5177         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5178
5179         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5180
5181 2006-01-23  Martin Baulig  <martin@ximian.com>
5182
5183         * mono-debug.h: Moved the prototypes of some functions which are
5184         used by the JIT here from mono-debug-debugger.h.
5185
5186 2006-01-21  Martin Baulig  <martin@ximian.com>
5187
5188         * Makefile.am: Don't install mono-debug-debugger.h.
5189
5190 2006-01-21  Martin Baulig  <martin@ximian.com>
5191
5192         * mono-debug-debugger.h: Enforce the private status of this header
5193         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5194         Moved some stuff from mono-debugger-jit-wrapper.h here.
5195
5196 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5197
5198         * class.c (mono_class_from_typeref): Add a sanity test to help
5199         catch lack of assembly load/search hooks.
5200
5201 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5202
5203         * marshal.c (emit_struct_conv): Relax the fields with same offset
5204         check even more. Fixes #77230.
5205
5206 2006-01-18  Martin Baulig  <martin@ximian.com>
5207
5208         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5209         argument; if false, we compare the uninstantiated signatures.
5210         (method_from_memberref): Compare the uninstantiated signatures;
5211         fixes #76417.
5212
5213 2006-01-18  Robert Jordan  <robertj@gmx.net>
5214
5215         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5216         Clear the weak link. Fixes bug #77170.
5217
5218         * gc.c (mono_gchandle_free):
5219         Reflect *-gc.c changes (tiny optimization).
5220
5221 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5222
5223         * metadata.c (mono_metadata_signature_dup): Applied patch from
5224         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5225         Fixes #77288.
5226
5227 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5228
5229         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5230         marshalling from native to managed code. Fixes #77230.
5231
5232 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5233
5234         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5235         connect. Fixes bug #77020.
5236
5237 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5238
5239         * class.c: fixed id assignement for nested interfaces (bug #77275).
5240         Added also better info for --print-vtable debugging.
5241
5242 2006-01-12  Martin Baulig  <martin@ximian.com>
5243
5244         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5245         interfaces on-the-fly; fixes #76625.
5246
5247         * class-internals.h
5248         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5249         don't need that anymore.
5250
5251 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5252
5253         * socket-io.c
5254         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5255         To avoid initing the nested_classes when not needed I turned the
5256         PeerCredData as a toplevel internal class, as it has to be shared
5257         anyways. 
5258
5259         Fixes the CASA issue.
5260
5261 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5262
5263         * domain.c: Accessors for MonoJitInfo
5264
5265         * profiler-private.h: Add jitinfo to the end jit hook
5266
5267         * profiler.[ch]: Define new hooks, called after jitting which give
5268         the MonoJitInfo that was compiled
5269
5270 2006-01-10  Martin Baulig  <martin@ximian.com>
5271
5272         * class.c (mono_class_setup_events): Add support for generic
5273         classes; fixes #76440.
5274
5275 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5276
5277         Fix #77160.
5278         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5279         on passed-in method.
5280
5281 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5282
5283         * object.c (mono_runtime_invoke_array): Add Nullable support.
5284
5285         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5286
5287 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5288
5289         * file-io.c: Don't consider sockets as directory and avoid an endless
5290         loop. Fix bug #76966.
5291
5292 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5293
5294         * object.c (mono_nullable_init): New helper function.
5295         (mono_nullable_box): Ditto.
5296
5297         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5298
5299         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5300
5301         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5302         
5303 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5304
5305         * class.c (mono_class_is_assignable_from): Make T assignable to 
5306         Nullable<T>.
5307
5308 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5309
5310         * appdomain.c: Bump corlib version to 46.
5311         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5312         serialization purpose) and changed ves_icall_System_Reflection_
5313         Assembly_get_code_base signature to accept a boolean (to escape, or 
5314         not, the assembly code base).
5315
5316 2005-12-23  Dick Porter  <dick@ximian.com>
5317
5318         * icall.c: 
5319         * threads-types.h: 
5320         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5321         CreateEvent icall now returns "created" boolean parameter.
5322
5323 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5324
5325         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5326         #76967.
5327
5328         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5329         when attr_klass is an interface. Fixes #77045.
5330
5331 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5332
5333         * marshal.c (emit_struct_conv): Fix previous patch.
5334         
5335         * marshal.c (emit_struct_conv): Add a check for fields with the same
5336         offset.
5337
5338 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5339
5340         Fix regression in Mono.C5.
5341         * class.c (mono_class_create_generic): If 'klass' is an interface
5342         set up the interface offsets.
5343         (mono_class_is_assignable_from): Don't throw away generic arguments.
5344
5345 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5346
5347         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5348         type parameters.
5349
5350 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5351
5352         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5353         dead store.
5354         (do_mono_metadata_parse_generic_class): Don't pass the current
5355         generic context when parsing the type being instantiated: it
5356         cannot use it, anyway.
5357
5358         * loader.c (method_from_memberref): Don't inflate a signature if
5359         it doesn't contain any type parameters.
5360
5361 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5362
5363         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5364
5365 2005-12-14  Martin Baulig  <martin@ximian.com>
5366
5367         * class.c
5368         (mono_type_get_name_recurse): Don't return null for type
5369         parameters and open generic classes.
5370         (mono_class_setup_methods): Don't exclude generic instances.
5371         (mono_get_unique_iid): Use different IDs for different
5372         instantiations of the same generic type.
5373         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5374         open generic instances; create a normal vtable for closed generic
5375         instances.
5376         (mono_class_setup_vtable_general): We're now also called for
5377         closed generic instances.
5378
5379         * reflection.c
5380         (mono_reflection_bind_generic_parameters): Correctly use
5381         mono_metadata_lookup_generic_inst() everywhere.
5382
5383 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5384
5385         * object.c (mono_class_create_runtime_vtable): Call 
5386         mono_class_setup_vtable ().
5387
5388         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5389         function.
5390         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5391         #76959.
5392
5393         * loader.c (mono_loader_set_error_type_load): Print the type load
5394         warnings to the console so they are more visible to the user.
5395         (mono_loader_set_error_method_load): Ditto.
5396
5397         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5398         is still broken.
5399         
5400         * reflection.c (ensure_runtime_vtable): Fix build.
5401
5402         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5403         doesn't work in all cases.
5404
5405 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5406
5407         * object.c (mono_array_new_full): Treat a single dimensional array
5408         with 0 lower bounds as an szarray. Fixes #76973.
5409
5410         * reflection.c (custom_attr_visible): Really fix this.
5411
5412 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5413
5414         * reflection.c (custom_attr_visible): Allow nested public attributes
5415         as well.
5416
5417         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5418         interface check.
5419
5420 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5421
5422         * class.c (set_generic_param_owner): Delete.
5423         (mono_class_create_from_typedef): Don't set ->owner field of
5424         generic parameters to "param containers" of enclosing classes.
5425         * reflection.c (mono_reflection_initialize_generic_parameter):
5426         Likewise.
5427
5428 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5429
5430         * reflection.c (custom_attr_visible): Fix build.
5431
5432 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5433
5434         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5435         private attributes.
5436         
5437         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5438         handling of null parameter defaults.
5439
5440 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5441
5442         * class.c (mono_class_from_generic_parameter): Don't set
5443         klass->generic_container.
5444         (my_mono_class_from_generic_parameter): Likewise.
5445
5446 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5447
5448         * reflection.c (load_public_key): Fix a warning.
5449         (method_encode_code): Fix unaligned accesses.
5450
5451 2005-12-07  Martin Baulig  <martin@ximian.com>
5452
5453         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5454
5455         * reflection.c
5456         (write_generic_param_entry): Encode our custom attrs.
5457
5458         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5459
5460 2005-12-07  Martin Baulig  <martin@ximian.com>
5461
5462         * reflection.c (encode_new_constraint): Removed; we don't use the
5463         `NewConstraintAttribute' anymore.
5464
5465 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5466
5467         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5468         not fire a TypeResolve event when Assembly.GetType () is called.
5469
5470 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5471
5472         Beginning of support for nullable types in the runtime. Parts of
5473         this patch are from Martin.
5474
5475         * appdomain.c (MONO_CORLIB_VERSION): Bump
5476
5477         * domain.c (mono_init_internal): get the nullable type
5478
5479         * class.c (mono_class_is_nullable): New method
5480         (mono_class_get_nullable_param): New mehod
5481         (mono_class_create_generic): In types T? set cast_class to T
5482
5483         * class-internals.h (MonoDefaults): new nullable default class
5484         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5485         new methods.
5486
5487 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5488
5489         * metadata.c (select_container): New.  Refactor code to select the
5490         appropriate GenericContainer given the type of generic parameter
5491         we are looking for.
5492         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5493         not a MonoGenericContext.  Use select_container.  Update parameters.
5494         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5495         and MONO_TYPE_MVAR.
5496         (unwrap_arrays): Remove duplicate tests.
5497         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5498         generic instantiated class to find any arguments that are generic
5499         parameters.
5500         (mono_type_create_from_typespec_full): Use find_generic_param to
5501         avoid evicting some generic instantiations from the typespec
5502         cache.
5503
5504 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5505
5506         * reflection.c: fixed writing of doubles on ARM FPA.
5507
5508 2005-12-02  Robert Jordan  <robertj@gmx.net>
5509
5510         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5511
5512 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5513
5514         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5515         least on SUSE 10 they are not the same (on debian, they are just the
5516         same thing).
5517
5518 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5519
5520         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5521         DeclaringType for VARs and MVARs.
5522         * class.c (set_generic_param_owner): Fix initialization of owner
5523         fields.
5524
5525 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5526
5527         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5528
5529 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5530
5531         * threadpool.c: workaround for a bug that shows up on the Mac:
5532         select()+connect() on a blocking socket is not like it should
5533         be, so we proceed to connect() in that case, wasting the I/O
5534         threadpool thread until connect succeedes. Fixes bug #75436.
5535
5536 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5537
5538         * threadpool.c: fix typo when setting file descriptor states.
5539
5540 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5541
5542         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5543         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5544         create a temporary signature container.
5545         (mono_metadata_parse_generic_param): Update to changes.
5546         (mono_type_create_from_typespec_full): Update to changes.
5547         * loader.c (method_from_memberref): Don't use a
5548         MonoGenericContainer while parsing a memberref signature.
5549         (method_from_methodspec): Remove dead-store of the 'container'
5550         variable.  It's overwritten before use.
5551
5552         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5553         checks tighter.
5554         (mono_metadata_parse_generic_param): Likewise.
5555         * loader.c (find_method_in_class): Does not need a
5556         MonoGenericContainer.  Use 'mono_method_signature' rather than
5557         'mono_method_signature_full'.
5558         (find_method, mono_get_method_constrained, method_from_memberref):
5559         Update to changes.
5560
5561         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5562         owner-less generic-parameters are never evicted from the typespec
5563         cache.
5564
5565         * loader.c (method_from_memberref): Don't use the current context
5566         when parsing signatures.
5567         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5568
5569         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5570         side-effects in g_assert.
5571         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5572         that we don't potentially lose information.
5573
5574 2005-11-26  Dick Porter  <dick@ximian.com>
5575
5576         * icall.c:
5577         * threads.c: icalls to implement basic (ie, not named)
5578         System.Threading.Semaphore.
5579
5580 2005-11-24  Dick Porter  <dick@ximian.com>
5581
5582         * process.c
5583         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5584         Use GetProcessId() if it's available.
5585
5586 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5587
5588         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5589
5590 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5591             Ankit Jain  <jankit@novell.com>
5592
5593         * loader.c (mono_get_method_from_token): Initialize 'method' field
5594         of all generic parameters before parsing the signature.  Remove
5595         code that "fixed"-up MVAR references.
5596
5597 2005-11-23  Ankit Jain  <jankit@novell.com>
5598
5599         * metadata.c (mono_metadata_has_generic_params):
5600         (mono_metadata_load_generic_param_constraints):
5601         (mono_metadata_load_generic_params): Move duplicate code ...
5602         (mono_metadata_get_generic_param_row): ... here. Returns the
5603         first row-id in GenericParam table for a given owner (token).
5604         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5605         prototype.
5606
5607 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5608             Ankit Jain  <jankit@novell.com>
5609
5610         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5611         comparing VARs too.
5612         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5613         type->data.generic_param only if the type is an MVAR.
5614         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5615         leak owner-less VARs and MVARs into managed space.
5616
5617 2005-11-21  Martin Baulig  <martin@ximian.com>
5618
5619         * class-internals.h
5620         (MonoMethod): Moved the `generic_container' here from
5621         `MonoMethodNormal' since we now also need it for
5622         `MonoMethodPInvoke';
5623         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5624         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5625         an union containing both `MonoMethodNormal' and
5626         `MonoMethodPInvoke'.
5627
5628         * loader.c
5629         (mono_get_method_from_token): Allow implementing generic methods
5630         as interncalls.
5631
5632         * threads.c
5633         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5634         icall.
5635
5636 2005-11-17  Dick Porter  <dick@ximian.com>
5637
5638         * icall.c: 
5639         * process.h: 
5640         * process.c: Split the Process Start_internal icall into
5641         ShellExecuteEx_internal and CreateProcess_internal, which are
5642         called depending on whether UseShellExecute is true.  Fixes bug
5643         76670.
5644
5645         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5646
5647 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5648
5649         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5650         'msize' parameters, use the information in 'mspec' instead.
5651         (emit_object_to_ptr_conv): Ditto.
5652
5653         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5654         fields out of order. Fixes #76733.
5655
5656 2005-11-17  Ankit Jain  <jankit@novell.com>
5657
5658         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5659
5660 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5661
5662         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5663           bug #76575.
5664
5665 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5666
5667         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5668         for types with non-auto layout. Fixes #76717.
5669
5670 2005-11-16  Ankit Jain  <jankit@novell.com>
5671
5672         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5673         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5674         if generic_context is null.
5675           (mono_metadata_generic_param_equal): param->owner can be null.
5676           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5677         null.
5678
5679 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5680
5681         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5682         the correct value.
5683
5684 2005-11-15  Martin Baulig  <martin@ximian.com>
5685
5686         * object.c (set_value): Use mono_class_from_mono_type() instead of
5687         the hack for generic instances; fixes #76136.
5688
5689 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5690
5691         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5692         fields.
5693
5694         * image.c (load_metadata_ptrs): Initialize the new fields.
5695
5696         * reflection.c (create_dynamic_mono_image): Ditto.
5697
5698         * reflection.c (build_compressed_metadata): Use the new fields.
5699
5700         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5701         icall.
5702
5703         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5704         icall.
5705         
5706 2005-11-15  Ankit Jain  <jankit@novell.com>
5707             Raja R Harinath  <harinath@gmail.com>
5708
5709         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5710         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5711         new per-generic_container cache if the cached MonoType's context matches
5712         the current context.
5713           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5714         to the expected context.
5715           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5716
5717 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5718
5719         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5720         we changed the signature of an icall.
5721         * icall.c: Modify to mono_double_ParseImpl return true/false 
5722         depending on the success, instead of throwing the exception. This will
5723         help us in Double.TryParse methods.
5724         
5725 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5726
5727         * marshal.c (emit_marshal_object): Throw an exception when
5728         marshalling 'object' instead of crashing. Fixes #76696.
5729
5730 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5731
5732         * class-internals.h: Add prototype for mono_type_get_full_name ().
5733
5734 2005-11-11  Dick Porter  <dick@ximian.com>
5735
5736         * threads.c (mono_thread_manage): Make sure the main thread has
5737         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5738
5739 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5740
5741         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5742         console about the missing type.
5743         (mono_loader_set_error_method_load): Ditto.
5744
5745 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5746
5747         * mono-config.c (mono_get_config_dir): Set the system defaults if
5748         none is specified.
5749
5750         * assembly.c (mono_set_dirs): New API entry point to set the
5751         assembly and the config directory in one call
5752
5753 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5754
5755         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5756         the ftnptr was created from a delegate in a domain other than the
5757         current domain. Fixes #75377.
5758
5759         * exception.h exception.c: Add mono_get_exception_not_supported ().
5760
5761 2005-11-08  Martin Baulig  <martin@ximian.com>
5762
5763         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5764
5765 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5766
5767         * security-manager.h: Added definitions to deal with strongname key 
5768         pairs bigger (and smaller) than 1024 bits.
5769         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5770         adjust wrt the public key length being used.
5771
5772 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5773
5774         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5775           Windows build (r51396-51397).
5776
5777 2005-11-03  Martin Baulig  <martin@ximian.com>
5778
5779         * class.c (mono_class_setup_vtable_general): Also add generic
5780         methods to the vtable; fixes #76581.
5781
5782 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5783
5784         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5785         sure that we lookup GetString method from the System.Text.Encoding
5786         class, not the derived class or we get an empty method.
5787
5788         Fixed class #76612.
5789
5790 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5791
5792         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5793         if it has been previously set (embedders). 
5794
5795         Make mono_set_rootdir available also on Unix.
5796
5797 005-10-24  Robert Jordan  <robertj@gmx.net>
5798
5799         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5800
5801 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5802
5803         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5804         only calls which are made to native code use this flag.
5805
5806         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5807
5808 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5809
5810         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5811         Add support for FieldBuilders.
5812
5813 2005-10-29  Martin Baulig  <martin@ximian.com>
5814
5815         * mono-debug.c
5816         (mono_debug_using_mono_debugger): New public method; returns
5817         whether we're running inside the debugger.
5818
5819 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5820
5821         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5822         for Method/Constructor/FieldBuilders.
5823
5824 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5825
5826         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5827         and fields as well.
5828
5829 2005-10-26  Martin Baulig  <martin@ximian.com>
5830
5831         * mono-debug-debugger.c
5832         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5833
5834 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5835
5836         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5837         integer to isspace.
5838
5839 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5840
5841         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5842         when passing valuetypes byref. Fixes #76502.
5843
5844 2005-10-19  Jackson Harper  <jackson@ximian.com>
5845
5846         * profiler.c: Don't put a . in front of types that are not in a
5847         namespace.
5848
5849 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5850
5851         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5852
5853 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5854
5855         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5856         #76436.
5857         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5858
5859 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5860
5861         * assembly.c metadata-internals.h icall.c: Define an additional
5862         parameter for mono_assembly_name_parse_full, so we can avoid creating
5863         S.R.AssemblyName.Version when no version info wasn't passed.
5864         
5865 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5866
5867         * class.c (mono_type_get_full_name): Reimplement method that was
5868         removed. 
5869
5870         * image.c: Some docs
5871
5872 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5873
5874         * profiler.c (output_newobj_profile): Fix printing of Total memory
5875         on x86.
5876
5877 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5878
5879         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5880
5881 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5882
5883         * threads.c: remove debug output.
5884
5885 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5886
5887         * threads.c (mono_thread_manage): Fix crashes if more than 64
5888         threads need to be aborted. Hopefully fixes #75899.
5889
5890         * assembly.c (mono_stringify_assembly_name): New helper function.
5891
5892         * class.c: Use mono_stringify_assembly_name instead of the similar
5893         static function.
5894
5895         * assembly.h assembly.c: Add support for calling a postload search 
5896         hook if an assembly cannot be loaded.
5897
5898         * appdomain.c: Register new search hooks which call the AssemblyResolve
5899         events in AppDomain. Fixes #75231
5900
5901 2005-10-07  Martin Baulig  <martin@ximian.com>
5902
5903         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
5904         methods without debug info.
5905
5906 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
5907
5908         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
5909         wrappers.
5910
5911 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5912
5913         * file-io.c: now that we return symlinks, use lstat and, when the file
5914         is a symbolic link, stat, to get the file attributes. Also avoid the
5915         conversion to/from utf16/external.
5916
5917 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
5918
5919         * class.c (mono_class_layout_fields): Compute klass->has_references
5920         correctly if an embedded valuetype is not yet initialized. Fixes
5921         #76331.
5922
5923 2005-10-04  Martin Baulig  <martin@ximian.com>
5924
5925         * metadata.c
5926         (mono_metadata_load_generic_param_constraints): New public
5927         function; splitted the constraints loading out from
5928         mono_metadata_load_generic_params().
5929
5930         * class.c (mono_class_create_from_typedef): Call
5931         mono_metadata_load_generic_param_constraints() after setting up
5932         the type and creating our parent; fixes #75329.
5933
5934 2005-10-04  Martin Baulig  <martin@ximian.com>
5935
5936         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
5937         non-dynamic parent classes.
5938
5939 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5940
5941         * file-io.c : win32 build fix (ETXTBSY seems not found).
5942
5943 2005-10-04  Martin Baulig  <martin@ximian.com>
5944
5945         * reflection.c
5946         (mono_image_get_methodspec_token): Make the cache actually work;
5947         fixes #75974.
5948
5949 2005-10-04  Martin Baulig  <martin@ximian.com>
5950
5951         * class.c (mono_class_name_from_token): Removed the unneccessary
5952         `MonoGenericContext *' argument.
5953
5954 2005-10-04  Martin Baulig  <martin@ximian.com>
5955
5956         * loader.c
5957         (method_from_methodspec): Make the caching work again; fixes the
5958         performance regression from #76262.
5959
5960 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5961
5962         * file-io.c:
5963         * file-io.h:
5964         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
5965         GetFileSystemEntries that performs the same work but without going
5966         into io-layer, locking, etc.
5967
5968 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5969
5970         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5971         ThreadState_Stopped as well. Fixes #76047.
5972
5973 2005-09-29  Martin Baulig  <martin@ximian.com>
5974
5975         * class.c
5976         (inflate_generic_context): If the new context has a `gmethod', set
5977         its `container' that that gmethod's `container'.
5978
5979         * metadata.c
5980         (mono_metadata_parse_generic_param): Simplify things;
5981         `generic_container = generic_context->container;' is just fine.
5982
5983         * loader.c (method_from_methodspec): Code cleanups.
5984
5985 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5986
5987         * decimal.c: fix warning (and let gcc generate correct
5988         code on ARM with optimizations).
5989
5990 2005-09-28  Martin Baulig  <martin@ximian.com>
5991
5992         * loader.c
5993         (method_from_memberref): Added `MonoGenericContext *class_context'
5994         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5995         (method_from_methodspec): If we're a memberref, use the enclosing
5996         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5997
5998 2005-09-28  Martin Baulig  <martin@ximian.com>
5999
6000         * object.c (mono_runtime_invoke_array): Added support for
6001         MONO_TYPE_GENERICINST; fixes #75917.
6002
6003 2005-09-27  Martin Baulig  <martin@ximian.com>
6004
6005         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6006         `k->byval_arg.type' to determine the actual type.
6007
6008         * loader.c (method_from_methodspec): Removed some hacks.
6009
6010 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6011
6012         * class-internals.h (mono_field_is_deleted): Do the test for
6013         rtspecialname before we check the actual name of the field. This
6014         prevents us from dereferencing a pointer into the string table,
6015         saving us from accessing a few pages
6016
6017         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6018         macros. This will allow a deadlock debugger to easily be plugged
6019         in.
6020
6021 2005-09-27  Martin Baulig  <martin@ximian.com>
6022
6023         * loader.c (method_from_methodspec): Create a "signature"
6024         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6025
6026 2005-09-27  Martin Baulig  <martin@ximian.com>
6027
6028         * class.c
6029         (inflate_generic_class): Correctly set the new context's
6030         container.
6031
6032         * loader.c
6033         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6034         instead of a `MonoGenericContext *'.
6035         (mono_method_signature_full): Take a `MonoGenericContainer *'
6036         instead of a `MonoGenericContext *'.
6037
6038         * metadata.c
6039         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6040         instead of a `MonoGenericContext *'.
6041         (mono_metadata_parse_method_signature_full): Likewise.
6042
6043 2005-09-26  Martin Baulig  <martin@ximian.com>
6044
6045         * class.c
6046         (mono_class_from_generic_parameter): Set `klass->generic_container'
6047         (mono_class_from_generic_parameter): Likewise.
6048         (mono_bounded_array_class_get): We inherit the generic container
6049         from the element class.
6050
6051         * loader.c
6052         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6053         argument rather than computing it here.
6054         (method_from_memberref): Correctly set the generic context before
6055         parsing the signature.  Fixes #75681.
6056
6057 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6058
6059         * object.c (mono_class_has_special_static_fields): Fix warnings.
6060
6061 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6062
6063         * assembly.c: Add parse_public_key function, to
6064         par the public keys. Also added mono_assembly_name_parse_full,
6065         to define it the parsed key should be freed or not.
6066         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6067         to parse a long format assembly name.
6068         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6069         private, since calling it to preserve the key requires
6070         freeing it manually.
6071         
6072 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6073
6074         * locales.c : removed HAVE_ICU part.
6075
6076 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6077
6078         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6079         field_is_special_static if the klass has no special static fields.
6080
6081         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6082         (MonoCachedClassInfo): Likewise.
6083
6084         * object.c (mono_class_has_special_static_fields): New helper function.
6085
6086 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6087
6088         * class.c (mono_class_create_from_typedef): Don't call 
6089         interfaces_from_typedef_full for enums.
6090         (mono_class_create_from_typedef): Compute the base types of enums directly
6091         without calling mono_class_setup_fields ().
6092         (mono_class_find_enum_basetype): New helper function.
6093
6094         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6095         one place inside the string heap.
6096         
6097 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6098
6099         * class.c: locking fixes, code cleanups, some docs added.
6100         Allocate some data structures in the image mempool.
6101
6102 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6103
6104         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6105         the example code.
6106         
6107 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6108
6109         * class-internals.h, class.c, reflection.c: reduce memory taken by
6110         MonoClass.
6111
6112 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6113
6114         * metadata.c, metadata.h, loader.h: documentation updates, code and
6115         API cleanups.
6116
6117 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6118
6119         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6120         the example code.
6121
6122         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6123         page faults caused by the runtime while reading metadata.
6124
6125 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6126
6127         * socket-io.c: the field names were changed 3 months ago and no one
6128         realized until bug #76077 got filed!
6129
6130 2005-09-20  Martin Baulig  <martin@ximian.com>
6131
6132         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6133
6134 2005-09-20  Martin Baulig  <martin@ximian.com>
6135
6136         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6137         write the rank into the class entry.
6138
6139 2005-09-20  Martin Baulig  <martin@ximian.com>
6140
6141         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6142
6143 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6144
6145         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6146
6147         * icall.c (custom_attrs_defined_internal): New icall.
6148
6149         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6150         function.
6151         (mono_custom_attrs_construct_by_type): New helper function.
6152
6153 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6154
6155         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6156         terminate the resulting string. Fixes #76123.
6157
6158 2005-09-16  Martin Baulig  <martin@ximian.com>
6159
6160         * mono-debug.c
6161         (mono_debug_add_method): Ignore inflated methods for the moment.
6162
6163 2005-09-14  Martin Baulig  <martin@ximian.com>
6164
6165         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6166
6167 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6168
6169         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6170         return a success/failure indication.
6171         (mono_metadata_interfaces_from_typedef_full): Ditto.
6172         (get_constraints): Ditto.
6173
6174 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6175
6176         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6177         
6178         * marshal.c (emit_marshal_array): Add support for returning string
6179         arrays from delegates. Fixes #76063.
6180
6181         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6182
6183 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6184
6185         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6186         icall.
6187
6188 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6189
6190         * reflection.c icall.c: Fix after mono_get_exception_type_load
6191         signature change.
6192
6193         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6194         (mono_assembly_load_reference): Use the new helper.
6195
6196         * class-internals.h (MonoLoaderError): New structure containing 
6197         information about type loading errors.
6198
6199         * class-internals.h loader.c: Add APIs to store per-thread loader
6200         error information.
6201
6202         * loader.c class.c: Set the loader error if needed.
6203
6204         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6205
6206 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6207
6208         * decimal.c: fixed to handle the broken ARM fp format.
6209
6210 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6211
6212         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6213         broken.
6214
6215 2005-09-06  Martin Baulig  <martin@ximian.com>
6216
6217         * domain.c (supported_runtimes): Added v2.0.50727.
6218
6219 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6220
6221         * culture-info.h: reduce the size of some structures.
6222
6223 2005-09-05  Martin Baulig  <martin@ximian.com>
6224
6225         Reflect latest API changes in the August CTP.
6226
6227         * icall.c
6228         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6229         ("MonoType.HasGenericArguments"): Removed.
6230         ("MonoMethod.BindGenericParameters"): Renamed to
6231         "MakeGenericMethod".
6232         ("MethodBuilder.BindGenericParameters"): Renamed to
6233         "MakeGenericMethod".    
6234
6235 2005-09-05  Martin Baulig  <martin@ximian.com>
6236
6237         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6238
6239 2005-09-05  Martin Baulig  <martin@ximian.com>
6240
6241         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6242
6243         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6244         generic_container is non-NULL.
6245
6246 2005-09-05  Martin Baulig  <martin@ximian.com>
6247
6248         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6249
6250         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6251
6252 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6253
6254         * reflection.c (encode_locals,
6255         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6256         for large generic types.
6257
6258 2005-09-05  Martin Baulig  <martin@ximian.com>
6259
6260         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6261
6262         * class.c (mono_dup_array_type): New public method.
6263         (mono_metadata_signature_deep_dup): New public method.
6264         (dup_type): Correctly duplicate array and function types.
6265
6266 2005-09-05  Martin Baulig  <martin@ximian.com>
6267
6268         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6269
6270         * reflection.c (get_default_param_value_blobs): Handle generic types
6271         and generic methods.
6272
6273 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6274
6275         * class.c: Fixed error reporting (method/class were inversed) for 
6276         inheritance demands.
6277         * security-manager.c|h: Added the AppDomain when calling the managed
6278         System.Security.SecurityManager.InheritanceDemand method.
6279
6280 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6281
6282         * reflection.c (encode_marshal_blob): 'marshaltype' and
6283         'marshaltyperef' are alternate sources for the custom marshaler
6284         name.
6285
6286 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6287
6288         * class.c: fix creation of array classes with rank == 1
6289         (patch by Ankit Jain <jankit@novell.com>).
6290
6291 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6292
6293         * object.c: fix check for creating the bound data for arrays vs
6294         szarrays.
6295
6296 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6297
6298         * object.c: configuration file name is now based on the executable name,
6299         not the image name. Fixes bug #75931.
6300
6301 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6302
6303         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6304         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6305
6306 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6307
6308         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6309
6310 2005-08-24  Ankit Jain  <jankit@novell.com>
6311             Raja R Harinath  <rharinath@novell.com>
6312
6313         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6314           called by it recursively.
6315           (mono_class_init): Remove special case in pending_init handling, since it's
6316           superseded by the fix to mono_class_from_typeref.
6317
6318 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6319
6320         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6321         BROKEN_THREAD_START stuff.
6322
6323 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6324
6325         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6326         trampoline.
6327
6328         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6329         
6330         * object.c (mono_delegate_ctor): Replace the original function address with
6331         a delegate trampoline.
6332
6333 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6334
6335         * icall.c: add boolean argument to base64_to_byte_array and 
6336         InternalFromBase64String to control whether a whitespace-only string
6337         is allowed (or should casue a FormatException to be thrown). We need
6338         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6339         to match the MS behaviour in both profiles.
6340         * appdomain.c: Bump corlib version.
6341
6342 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6343
6344         This patch implements a big portion of publisher policy
6345         support, used to bind assembly versions and redirect
6346         one assembly from version A to version B.
6347
6348         * assembly.c:
6349         New GSList loaded_assembly_bindings, for storing the cached
6350         assembly bindings.
6351         (assembly_binding_maps_name): New static function for checking if a 
6352         assembly binding information maps an assembly name.
6353         (mono_assembly_binding_info_free): New function for freeing
6354         assembly binding information resources.
6355         (get_publisher_policy_info): New static function for retrieving 
6356         assembly binding information from a MonoImage.
6357         (compare_versions): New static function for comparing an assembly
6358         binding information data and the version of an assembly name.
6359         (check_policy_versions): New static function for checking if an
6360         assembly binding info mapping an assembly name is valid for it.
6361         (mono_assembly_load_publisher_policy): New static function for
6362         loading the 'policy.major.minor.MyAssembly' image for an assembly
6363         with an assembly name 'aname'.
6364         (mono_assembly_bind_version): New static function for updating
6365         assembly redirection.
6366         (mono_assembly_apply_binding): New static function for applying
6367         assembly binding.
6368         (search_binding_loaded): New static function for searching 
6369         loaded assembly binding infos in the cache domain.
6370         (mono_assembly_load_full): Don't apply assembly binding for
6371         reflection only assemblies.
6372
6373         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6374         which contains information about assembly binding. Also
6375         declare signature for mono_config_parse_publisher_policy ()
6376         function, used to retrieve pub policy info.
6377         
6378         * mono-config.c:
6379         (publisher_policy_start): New static function used to parse publisher 
6380         policy config files.
6381         (publisher_policy_parser): New static MonoParseHandler containing 
6382         the functions used when parsing config files.
6383         (mono_config_parse_publisher_policy): New function for parsing
6384         publisher policy files.
6385         
6386 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6387
6388         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6389
6390         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6391
6392         * object.c (mono_get_addr_from_ftnptr): New helper function.
6393
6394         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6395
6396         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6397
6398 2005-08-19  Dick Porter  <dick@ximian.com>
6399
6400         * threads.c, threads.h, appdomain.c, appdomain.h,
6401         profiler-private.h, monitor.c, object.c, object-internals.h,
6402         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6403         store the thread ID, so it can hold a 64 bit value if needed.
6404
6405 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6406
6407         * reflection.c (mono_reflection_create_dynamic_method): Store the
6408         handle class into the method references as well so ldtoken works in
6409         dynamic methods.
6410
6411         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6412         types.
6413
6414 2005-08-19  Ankit Jain <jankit@novell.com>
6415
6416         Fix #75847.
6417         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6418           here rather than using the method signature of a arbitrary function
6419           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6420           two arguments.
6421           Hack done with Harinath.
6422
6423 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6424
6425         * threadpool.c: disable printing stack traces when we get a exception
6426         in a threadpool thread. I need to do more testing to figure out which
6427         cases actually print this. Fixes bug #75828.
6428
6429 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6430
6431         * icall.c: there might be ignored whitespace after the last '='. This
6432         fixes length computation and bug #75840.
6433
6434 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6435
6436         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6437         well. Fixes #75809.
6438
6439         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6440         #75784.
6441         
6442         * reflection.c (create_custom_attr_data): Ditto.
6443
6444 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6445
6446         * locales.c, culture-info.h : removed RegionLCIDMap.
6447         * culture-info-tables.h : regenerated.
6448
6449 2005-08-16  Martin Baulig  <martin@ximian.com>
6450
6451         * class.c (mono_type_get_name_recurse): Small fix.
6452
6453 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6454
6455         * locales.c : indentation fixie.
6456
6457 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6458
6459         * object-internals.h,
6460           locales.h,
6461           locales.c,
6462           culture-info.h,
6463           icall.c : added RegionInfo table support.
6464         * culture-info-table.h : regenerated for region support.
6465
6466 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6467
6468         * reflection.c (resolve_object): handle all kinds of MonoMethod
6469         including generic ones
6470
6471 2005-08-12  Ankit Jain <jankit@novell.com>
6472
6473         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6474           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6475
6476 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6477
6478         * process.c: Don't close a thread handle when it's NULL. This is a
6479         workaround for bug #75733.
6480
6481 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6482
6483         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6484
6485 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6486
6487         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6488
6489 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6490
6491         * threadpool.c: if a work item in the thread pool has a callback that
6492         catches a exception, don't propagate it after invoking the callback.
6493         Fixes bug #75336.
6494
6495 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6496
6497         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6498
6499         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6500
6501         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6502
6503         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6504
6505 2005-08-03  Ankit Jain  <jankit@novell.com>
6506
6507         Fix #75683.
6508         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6509           PInvoke calling convention is 0.
6510
6511 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6512
6513         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6514         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6515
6516 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6517
6518         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6519         to handle threads not started by the GC (patch by Michael Meeks
6520         <michael.meeks@novell.com>).
6521
6522 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6523
6524         * reflection.c: Make buffer used in emitting types larger for some
6525         big generic types (patch by Michal Moskal).
6526
6527 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6528
6529         * mono-debug.c: Fix some (not all) alignment problems.
6530
6531 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6532
6533         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6534         Invoke mono_image_load_from_data_full passing the refonly
6535         parameter.
6536
6537         * assembly.c
6538         (mono_assembly_open_from_bundle): Add the refonly argument, 
6539         in order to pass it to other methods it calls to.
6540         (do_mono_assembly_open): Add the refonly argument, in order 
6541         to pass it to other methods it calls to.
6542         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6543         the refonly parameter to it.
6544
6545         * image.c: Add loaded_images_refonly_hash and
6546         loaded_images_refonly_guid_hash to cache the reflection
6547         only loaded images.
6548         (mono_images_init): Initialize the hash tables used for
6549         caching the reflection only images.
6550         (load_modules): Invoke mono_image_open_full passing the refonly
6551         parameter to load the modules the correct way.
6552         (build_guid_table): Add the refonly argument, to re-build the 
6553         correct hash table.
6554         (do_mono_image_open): Added the refonly argument, in order to
6555         define it for the loaded image.
6556         (mono_image_loaded_full): New function, which receives an
6557         additional parameter to look for the image in the refonly or
6558         non-refonly section.
6559         (mono_image_loaded): Updated, using mono_image_loaded_full.
6560         (mono_image_loaded_by_guid_full): The same case that happens
6561         with mono_image_loaded_full.
6562         (mono_image_loaded_by_guid): Likewise.
6563         (register_image): Use the ref_only variable inside MonoImage
6564         to decide in which hash table store the current image.
6565         (mono_image_open_from_data_full): Rename
6566         mono_image_open_from_data to mono_image_open_from_data_full,
6567         adding the refonly argument, to define the ref_only variable 
6568         inside MonoImage.
6569         (mono_image_open_from_data): Return 
6570         mono_image_open_from_data_full.
6571         (mono_image_open_full): Rename mono_image_open to
6572         mono_image_open_full, receiving the new refonly argument,
6573         to pass it to inner methods.
6574         (mono_pe_file_open): Update this function, to open
6575         a MonoImage as a non-refonly image.
6576         (mono_image_close): Use the refonly variable inside
6577         MonoImage to remove the image from the correct caches.
6578
6579         * image.h: Add the signatures of mono_image_open_full,
6580         mono_image_open_from_data_full, mono_image_loaded_full,
6581         mono_image_loaded_by_guid_full.
6582
6583         * metadata-internals.h: Add the ref_only field to 
6584         MonoImage.
6585         
6586 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6587
6588         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6589         Fix the last behavior, which used to load the assemblies and
6590         extract MonoReflectionAssemblyName information, instead of
6591         extract it from the metadata tables. Needed for Reflection
6592         Only assemblies.
6593         
6594 2005-07-29  Martin Baulig  <martin@ximian.com>
6595
6596         * mono-debug-debugger.c
6597         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6598         not initialized.
6599
6600         * mono-debug.c
6601         (mono_debug_address_from_il_offset): Check whether we have
6602         debugging support before attempting to take the lock.
6603         (mono_debug_source_location_from_address): Likewise.
6604         (mono_debug_source_location_from_il_offset): Likewise.
6605         (mono_debug_il_offset_from_address): Likewise.
6606         (mono_debug_address_from_il_offset): Likewise.
6607
6608 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6609
6610         * class.c (mono_class_from_name_case): Add support for dynamic images.
6611         Fixes #75650.
6612
6613         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6614         for #75479.
6615
6616 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6617         
6618         * reflection.c (mono_method_get_object): Fix warning.
6619
6620 2005-07-28  Martin Baulig  <martin@ximian.com>
6621
6622         * mono-debug.c
6623         (mono_debug_add_wrapper): Also write the wrapper type.
6624
6625 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6626
6627         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6628         
6629         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6630         data indicates the class has none.
6631
6632 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6633
6634         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6635         loader lock with the debugger lock. Prevents deadlocks for beagle.
6636
6637         Beagle can now run on an smp box for a weekend without any
6638         issues. Woohoo!
6639
6640 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6641
6642         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6643         in a module. Fixes #75629.
6644
6645 2005-07-26  Martin Baulig  <martin@ximian.com>
6646
6647         * mono-debug.c (mono_debug_add_wrapper): New static method.
6648         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6649         interncall or a wrapper.
6650
6651         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6652         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6653         (MONO_DEBUGGER_VERSION): Bump to 51.
6654
6655         * mono-debug-debugger.c
6656         (mono_debugger_add_type): Removed this empty function.
6657         (mono_debugger_add_method): Likewise.
6658
6659 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6660
6661         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6662         before accessing method->slot.
6663
6664 2005-07-21  Jb Evain  <jbevain@gmail.com>
6665
6666         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6667         Fixes #75010.
6668
6669 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6670
6671         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6672         #75587.
6673
6674 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6675
6676         * image.h image.c: Add mono_image_get_guid () API function.
6677
6678 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6679
6680         There were issues when multiple threads tried to load
6681         assemblies. A deadlock was created between assemblies_mutex and
6682         mono_domain_assemblies_lock. This fixes the issue by making the
6683         assembly ref counting be lock free. See bug 75586.
6684         
6685         * image.c (mono_image_close): The add ref function here was using
6686         Interlocked operations while the unref was using a mutex and a
6687         --. I don't think this was ever a bug that would be exposed in a
6688         non-pendantic way (ie, by an embedder doing a ref on one thread
6689         and an unref on another), but for the sake of correctness, this is
6690         now Interlocked.
6691
6692         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6693         (mono_assembly_load_reference): Call mono_assembly_addref rather
6694         than touching the refcount ourselves.
6695         (mono_assembly_close): Use InterlockedDecrement to unref the
6696         assembly. Don't acquire the lock unless it is actually needed.
6697
6698 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6699
6700         * class.c (mono_class_layout_fields): Fix calculation of has_references
6701         for generic types.
6702
6703 2005-07-12  Martin Baulig  <martin@ximian.com>
6704
6705         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6706
6707         * metadata.c
6708         (mono_type_hash): Provide better hashing for generic instances.
6709         (mono_generic_inst_hash): Improve hashing.
6710         (mono_generic_class_hash): Likewise.
6711
6712         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6713         generic instances.
6714
6715 2005-07-12  Martin Baulig  <martin@ximian.com>
6716
6717         * reflection.c (mono_reflection_create_runtime_class): Remove the
6718         hack for generic type definitions and non-`Run' assemblies.
6719         (mono_reflection_bind_generic_parameters): Also use
6720         `klass->wastypebuilder' to check for TypeBuilders.
6721
6722 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6723
6724         * class.c (mono_class_layout_fields): Fix calculation of has_references
6725         for generic types.
6726
6727         * class.c (inflate_generic_class): Fix a leak.
6728         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6729         for generic types.
6730
6731 2005-07-11  Martin Baulig  <martin@ximian.com>
6732
6733         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6734         on error.
6735
6736 2005-07-11  Martin Baulig  <martin@ximian.com>
6737
6738         * loader.c (find_method): Also lookup in
6739         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6740
6741 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6742
6743         * appdomain.c (mono_domain_unload): Don't free the error message
6744         before passing it to mono_get_exception_...
6745
6746         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6747         
6748 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6749
6750         * threads.c: try to better guess an available RT signal (bug #75387).
6751
6752 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6753
6754         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6755         and CACHE_OBJECT.
6756
6757 2005-07-07  Martin Baulig  <martin@ximian.com>
6758
6759         * class.c (mono_type_get_name_full): Return NULL for
6760         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6761         fixes #75408.
6762
6763 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6764
6765         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6766         exit the appdomain as well being aborted.
6767
6768         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6769         change back to the root domain after calling managed code. This enables
6770         appdomains using threadpools to be unloaded.
6771
6772 2005-07-07  Martin Baulig  <martin@ximian.com>
6773
6774         * class-internals.h
6775         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6776         into `MonoDynamicGenericClass' since we only need it for dynamic
6777         types.
6778
6779         * reflection.c (mono_class_bind_generic_parameters): We don't need
6780         to compute the `parent' here.
6781
6782 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6783
6784         * culture-info-table.h : regenerated.
6785
6786 2005-07-06  Martin Baulig  <martin@ximian.com>
6787
6788         * icall.c
6789         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6790
6791         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6792
6793 2005-07-06  Martin Baulig  <martin@ximian.com>
6794
6795         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6796         we're doing a signature-only comparision; fixes #74945.
6797
6798 2005-07-06  Martin Baulig  <martin@ximian.com>
6799
6800         * class-internals.h (MonoGenericClass): Moved some things out into
6801         a new `MonoInflatedGenericClass' type.  
6802         (MonoInflatedGenericClass): New type; the `klass' of a
6803         `MonoGenericClass' is now computed lazyly in
6804         mono_get_inflated_generic_class().      
6805
6806         * class.c (mono_get_inflated_generic_class): New public function.
6807         (mono_class_inflate_generic_method): Removed the unused
6808         `MonoClass *' argument.
6809         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6810         all the methods.
6811         (mono_class_create_generic): Make this static and merge it with
6812         mono_class_create_generic_2(); we're now called automatically from
6813         mono_get_inflated_generic_class().
6814
6815         * loader.c (mono_method_signature): Call
6816         mono_get_inflated_method() here.
6817
6818 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6819
6820         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6821         type of fields with RVA.
6822
6823         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6824         for this pseudo class.
6825         (my_mono_class_from_generic_parameter): Likewise.
6826         (mono_class_init): Allow interfaces to have cctors.
6827
6828 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6829
6830         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6831         lazily for AOT methods.
6832
6833 2005-07-05  Martin Baulig  <martin@ximian.com>
6834
6835         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6836         returns FALSE for a successful match, not TRUE.
6837
6838 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6839
6840         * loader.c (mono_method_get_index): Optimize this a bit.
6841
6842 2005-07-04  Martin Baulig  <martin@ximian.com>
6843
6844         * class.c
6845         (class_compute_field_layout): Move the check for generic type
6846         definitions into mono_class_layout_fields().  Fixes #74684.
6847         (mono_class_from_generic_parameter): Correctly compute
6848         `klass->parent'; fixes #75457.
6849
6850         * reflection.c (register_assembly, register_module): Make sure
6851         `domain->rejobject_hash' is already created.
6852
6853 2005-07-02  Martin Baulig  <martin@ximian.com>
6854
6855         * class-internals.h
6856         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6857         `MonoDynamicGenericClass'.      
6858
6859 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6860
6861         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6862         returned by a field getter is null, since null is a valid value.
6863
6864 2005-07-01  Martin Baulig  <martin@ximian.com>
6865
6866         * reflection.c (mono_reflection_generic_class_initialize): Update
6867         the `dgclass->fields [i].parent' to the correct class.
6868         (mono_image_get_fieldref_token): Use the declaring type, not the
6869         reflected type.
6870
6871 2005-07-01  Martin Baulig  <martin@ximian.com>
6872
6873         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6874
6875 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6876
6877         * threads.c (thread_cleanup): assert that thread != NULL
6878         (wait_for_tids_or_state_change): We were using the wrong variable
6879         when accessing wait->threads. `i' was always out of the bounds of
6880         the array.
6881
6882 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6883
6884         * loader.c: map user32 and kernel32 to libMonoSupportW
6885
6886 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6887
6888         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6889
6890 2005-06-28  Martin Baulig  <martin@ximian.com>
6891
6892         * loader.c (method_from_methodspec): Fix #75334.
6893
6894 2005-06-28  Martin Baulig  <martin@ximian.com>
6895
6896         Fix #74953 - Arrays now implement the generic IList<T> interface
6897         on the 2.0 platform.
6898
6899         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6900
6901         * reflection.c (mono_class_bind_generic_parameters): New public
6902         function; similar to mono_reflection_bind_generic_parameters(),
6903         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
6904
6905         * domain.c (mono_init_internal): Try to initialize.
6906         `mono_defaults.generic_array_class' here; this'll only succeed if
6907         we're using the 2.0 corlib.
6908
6909         * icall.c
6910         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
6911         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
6912         (mono_lookup_internal_call): Added support for nested classes.
6913
6914         * loader.c
6915         (mono_get_method_from_token): Set `result->signature->pinvoke' if
6916         we're an interncall and have generic arguments.
6917
6918         * class.c
6919         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
6920         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
6921         instance of System.Array.InternalArray<T> for arrays, so they
6922         implement the generic IList<T> interface.
6923
6924 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
6925
6926         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
6927         (chastamar@yahoo.com). Fixes #75374.    
6928
6929 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
6930
6931         * culture-info-table.h: regenerated.
6932
6933 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6934
6935         * icall.c: handle spaces correctly for base64 strings.
6936
6937 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
6938
6939         * *.c: Kill some warnings.
6940
6941 2005-06-23  Duncan Mak  <duncan@novell.com>
6942
6943         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
6944         that this builds on Solaris 10 (x86).
6945
6946 2005-06-23  Martin Baulig  <martin@ximian.com>
6947
6948         * class.c
6949         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
6950         generic type definitions.
6951
6952 2005-06-23  Martin Baulig  <martin@ximian.com>
6953
6954         Fix #75331.
6955
6956         * metadata.c (mono_class_get_overrides): Renamed to
6957         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
6958         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
6959         pass it to mono_get_method_full().
6960
6961 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
6962
6963         * reflection.c (mono_reflection_create_runtime_class): take the
6964         mono_domain_lock in this method. Prevents deadlocks
6965
6966 2005-06-22  Martin Baulig  <martin@ximian.com>
6967
6968         * loader.c (method_from_methodspec): Fix #75330.
6969
6970 2005-06-22  Martin Baulig  <martin@ximian.com>
6971
6972         * reflection.c (type_get_qualified_name): Use
6973         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6974         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6975         argument; use it if we don't have an assembly name.
6976
6977 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6978
6979         * object.c: In mono_message_init, set "copy out" flag for in
6980         parameters with the [Out] flag.
6981
6982 2005-06-21  Martin Baulig  <martin@ximian.com>
6983
6984         * class.c
6985         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6986         and MONO_TYPE_PTR.
6987
6988 2005-06-21  Martin Baulig  <martin@ximian.com>
6989
6990         * class.c (mono_class_init): Don't initialize `class->fields' for
6991         generic instances since they're initialized again in
6992         compute_field_layout(). 
6993         (compute_field_layout): Set the field's `generic_info' here; fix
6994         #75320. 
6995
6996 2005-06-21  Martin Baulig  <martin@ximian.com>
6997
6998         * class-internals.h
6999         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7000
7001         * metadata.c (mono_metadata_generic_method_equal): Also
7002         distinguish the `generic_class'; fixes #75334.
7003
7004 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7005
7006         * domain.c:
7007         * appdomain.c:
7008         * domain-internals.h:
7009         * reflection.c: 'domain_assemblies' field is now protected by its own
7010         lock. Don't call into managed code to run the AssemblyLoad event if we
7011         now there are no registered delegates for it.
7012
7013 2005-06-20  Martin Baulig  <martin@ximian.com>
7014
7015         * class.c (mono_class_is_assignable_from): Use a custom version of
7016         mono_class_has_parent() to make things work for generic instances;
7017         fix #75300.
7018
7019 2005-06-20  Martin Baulig  <martin@ximian.com>
7020
7021         * loader.c (method_from_methodspec): Apply a patch from
7022         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7023
7024 2005-06-20  Martin Baulig  <martin@ximian.com>
7025
7026         * class.c (mono_class_init): Reverted Zoltan's last change; it
7027         breaks generics.
7028
7029 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7030
7031         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7032
7033 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7034
7035         * socket-io.c: fix the index in the socket array for writable/error
7036         sockets. Fixes bug #75306.
7037
7038 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7039
7040         * class.c (mono_class_init): Allow interfaces to have static ctors.
7041
7042 2005-06-17  Martin Baulig  <martin@ximian.com>
7043
7044         * loader.c (method_from_methodspec): Use `context->container' when
7045         parsing the `gmethod->inst'.
7046
7047 2005-06-17  Martin Baulig  <martin@ximian.com>
7048
7049         * class.c (mono_type_get_name_recurse): Don't add the assembly
7050         name for type arguments.
7051
7052 2005-06-15  Martin Baulig  <martin@ximian.com>
7053
7054         * reflection.c (mono_image_get_inflated_method_token): Encode
7055         correct klass; fixes #75260.
7056
7057 2005-06-13 Michal Moskal <malekith@nemerle.org>
7058
7059         * icall.c: Make GetCorrespondingMethod/Constructor take
7060         MonoReflectionMethod method not MonoMethod. Removed
7061         MonoType.GetCorrespondingField, and make
7062         MonoGenericType.GetCorrespondingField take name not
7063         MonoClassField.
7064
7065 2005-06-13  Michal Moskal <malekith@nemerle.org>
7066
7067         * reflection.c (field_encode_signature, encode_locals):
7068          Make sizes of buffers for types larger (for big generic types).
7069          (create_generic_typespec,
7070          mono_reflection_sighelper_get_signature_local,
7071          mono_reflection_sighelper_get_signature_field):
7072          Add asserts for too small buffers.
7073
7074 2005-06-15  Martin Baulig  <martin@ximian.com>
7075
7076         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7077         if our parent is not a dynamic type.
7078
7079 2005-06-15  Martin Baulig  <martin@ximian.com>
7080
7081         * class-internals.h (MonoTypeNameFormat): New enum.
7082
7083         * class.c
7084         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7085         (mono_type_get_full_name): Removed.
7086         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7087         argument instead of the boolean's.
7088
7089         * icall.c (ves_icall_System_MonoType_getFullName):
7090         Added `gboolean assembly_qualified'.    
7091
7092         * reflection.h
7093         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7094
7095         * reflection.c (mono_reflection_parse_type): Parse the new type
7096         name format.
7097
7098 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7099
7100         * icall.c: no need to convert from utf16 to utf8 and then back again
7101         after the call to GetLogicalDrives.
7102
7103 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7104
7105         * icall.c: frombase64. Fix problems exposed by new tests.
7106
7107 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7108
7109         * icall.c: added internal calls for converting char [] and strings in
7110         base64 into byte [].
7111
7112 2005-06-10  Martin Baulig  <martin@ximian.com>
7113
7114         * class.c (mono_class_create_generic_2): Read the nested classes
7115         from the metadata rather than from `gklass->nested_classes' since
7116         `gklass' might not be initialized yet.
7117
7118 2005-06-09  Duncan Mak  <duncan@novell.com>
7119
7120         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7121         all public headers. Fixes #74919.
7122
7123 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7124
7125         * domain.c: The key for proxy_vtable_hash is now a pointer
7126         array. Added new GHashFunc and GCompareFunc functions for this.
7127
7128         * class.h: The list of interfaces in MonoRemoteClass is known in
7129         advance and can't grow (we create a new MonoRemoteClass if needed),
7130         so now the interface array can be allocated together with
7131         MonoRemoteClass.
7132         
7133         * object.c: Added a new method create_remote_class_key.
7134         Fixed mono_remote_class so it does not depend on
7135         mono_upgrade_remote_class.
7136         Removed extend_interface_array.
7137         Added new method clone_remote_class(), which makes a copy of a remote
7138         class and adds a new interface or class to it.
7139         mono_upgrade_remote_class() now creates a new remote class (or gets
7140         it from the cache) if an vtable upgrade is needed. In this way
7141         we make sure that other objects sharing the same remote class
7142         don't get the new vtable with unwanted interfaces.
7143         
7144         * object-internals.h:
7145         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7146         
7147         * marshal.c: Track changes in mono_upgrade_remote_class().
7148
7149 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7150         * icall.c: Add runtime methods for obtaining members of inflated
7151         class, which were created from supplied non-inflated members. It
7152         is used in internal Get{Method,Constructor,Field} methods in
7153         System.Type
7154
7155 2005-06-09  Martin Baulig  <martin@ximian.com>
7156
7157         * reflection.c
7158         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7159
7160 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7161         * reflection.c (mono_image_basic_init): Define
7162         Version in MonoDynamicAssembly. 
7163         
7164 2005-06-08  Martin Baulig  <martin@ximian.com>
7165
7166         Fix #75136.
7167
7168         * loader.c
7169         (mono_method_signature_full): New public method; takes a
7170         `MonoGenericContext *'.
7171         (find_method): Use mono_method_signature_full() and pass the
7172         klass'es context to it.
7173
7174         * class.c (mono_class_is_inflated_method): Use
7175         mono_method_signature_full() and pass the context to it.
7176
7177 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7178
7179         * object.c: add proper locking in mono_remote_class_vtable(),
7180         fixes possible memory corruption.
7181
7182 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7183
7184         * marshal.c (mono_remoting_marshal_init): set
7185         initialized after initialization.
7186
7187 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7188
7189         * locales.c : hush.
7190
7191 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7192
7193         * object.c (extend_interface_array): fix really silly
7194         memory corrupting / comparison bug.
7195
7196 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7197
7198         * reflection.c: Functions added to support the creation
7199         of CustomAttributeData, which includes Attribute data
7200         used by ReflectionOnly methods.
7201
7202         * reflection.h:  mono_reflection_get_custom_attrs_data and
7203          mono_custom_attrs_data_construct added (functions exposed).
7204
7205          * icall.c: Added mono_reflection_get_custom_attrs_data
7206          as icall.
7207         
7208 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7209
7210         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7211         lupus's request.
7212
7213 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7214
7215         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7216
7217         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7218         dynamic DllImportAttribute.
7219
7220         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7221         dynamic DllImportAttribute.
7222
7223         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7224         Fixes #75162.
7225
7226 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7227
7228         * threads.c: avoid segfault when an unstarted thread is aborted.
7229
7230 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7231
7232         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7233         Returns the name and version of the runtime for reporting.
7234
7235 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7236
7237         * appdomain.c: bump corlib version.
7238         * object-internals.h: new field in MonoReflectionAssembly.
7239
7240 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7241
7242         * object-internals.h: Carlos forgot to add this field.
7243
7244 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7245
7246         * icall.c: Added create_version to create instances
7247         of Version of MonoReflectionAssemblyName. This change helps
7248         the AssemblyName tests to keep running fine.
7249         
7250 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7251   
7252         * object.c (mono_method_return_message_restore): A somehow less
7253         intrusive fix for #75138.
7254
7255 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7256
7257         * object.c (mono_method_return_message_restore): Fix computation
7258         of expected number of out args.
7259
7260 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7261
7262         * reflection.c (mono_image_get_method_info): Fix the case when the
7263         charset is empty.
7264
7265 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7266
7267         * object.c: Added missing null check in
7268           mono_method_return_message_restore.
7269
7270 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7271
7272         * reflection.c (mono_image_get_method_info): Handle the case when
7273         dllentry is empty.
7274
7275 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7276
7277         * object.c: When creating the vtable for a proxy, take into account
7278         all inherited interfaces, not only the ones registered in
7279         iclass->interfaces. This fixs bug #74996.
7280         Also, in mono_method_return_message_restore, verify that the array
7281         of out args has the expected lengh.
7282
7283 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7284
7285         * socket-io.c: update the timeout in Poll when the call is interrupte.
7286
7287 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7288
7289         * socket-io.c: support abort/suspend in Select_internal after last
7290         change.
7291
7292 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7293
7294         * threadpool.c: remove warning.
7295
7296 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7297
7298         * icall.c:
7299         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7300         removing the 1024 limit from select(). Runtime part of the fix for
7301         bug #71203.
7302
7303 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7304
7305         * socket-io.c: when resolving the addresses for the same
7306         host returned by gethostname(), get the local IPs from the interface
7307         list. Loopback addresses are discarded if the are interfaces up with
7308         non-loopback ones. Fixes bug #63265.
7309
7310 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7311
7312         * appdomain.c, verify.c, object-internals.h, reflection.c:
7313         bumped corlib number to 36, and added new extra_flags field
7314         to ReflectionMethodBuilder and friends.  Fixes #75060.
7315
7316 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7317
7318         * gc.c: register a new weak link only if the object is non-null
7319         (fixes bug#75047).
7320
7321 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7322
7323         * culture-info.h : short time pattern too.
7324
7325 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7326
7327         * culture-info.h : expand long time pattern string length.
7328
7329 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7330
7331         * culture-info-table.h : update (more French date format; #72788).
7332
7333 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7334
7335         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7336         the method is static. Fixes #75029.
7337
7338 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7339
7340         * reflection.c: Update the table_idx field of method builders after
7341         saving the module, since it can change. This is a workaround for
7342         bug #74914. 
7343
7344 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7345
7346         * culture-info-table.h : update (additional French date format).
7347
7348 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7349
7350         * icall.c (ves_icall_type_Equals): Revert last change.
7351         
7352         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7353
7354         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7355
7356 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7357
7358         * class-internals.h: Added executioncontext_class field to 
7359         MonoDefaults structure.
7360         * domain.c: Cache System.Threading.ExecutionContext class in 
7361         mono_defaults.
7362         * object.c: Capture the ExecutionContext for asynchroneous calls in
7363          mono_async_result_new.
7364         * object-internals.h: Added execution_context and original_context 
7365         fields to MonoAsyncResult. Added execution_context to MonoThread.
7366         * security-manager.c|.h: Added mono_get_context_capture_method to 
7367         return the capture method (if required by the security manager or by
7368         the framework version used).
7369         * threadpool.c: Apply capture (if present) ExecutionContext in 
7370         mono_async_invoke and revert to original context after it completes.
7371
7372 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7373
7374         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7375
7376 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7377
7378         * culture-info-table.h : zh-CHT related workaround.
7379
7380 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7381
7382         * marshal.c (emit_marshal_custom): Add some error checking and call the
7383         methods in the ICustomMarshaler interface. Fixes #74875.
7384         
7385         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7386         native->managed wrappers.
7387
7388 2005-05-12  Martin Baulig  <martin@ximian.com>
7389
7390         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7391         here and use the loader lock.
7392
7393         * mono-debug.c: Properly lock when the debugger is not attached.
7394         (mono_debug_init): Release the initial lock if we're not running
7395         in the debugger.
7396
7397 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7398
7399         * marshal.c (emit_marshal_custom): Pass through NULL values without
7400         calling the custom marshalling routines.
7401
7402         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7403         conversion in structures. Fixes #74882.
7404
7405 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7406
7407         * culture-info-table.h : zh-* cultures were missing.
7408
7409 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7410
7411         * threads.c: Added a new event background_change_event which is signaled
7412         when a thread changes its background mode.
7413         Moved here several checks previously done in managed code. The checks
7414         require the thread lock, and using the thread lock in managed code
7415         can result in deadlocks.
7416         Merged Start_internal and Thread_internal into a single method. Now 
7417         Thread_internal does all work of creating and starting a thread.
7418         Added icalls for setting and getting the state of the object. Moved from
7419         managed code to avoid locking there.
7420         Added wait_for_tids_or_state_change() which is called instad of
7421         wait_for_tids when waiting for non-backround threads to end. This method
7422         will return if one of the threads ends or the background_change_event
7423         is signaled.
7424         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7425         the background mode. This method signals the background_change_event
7426         event.
7427         * icall.c:
7428         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7429         removed Start_internal.
7430         
7431 2005-05-11  Martin Baulig  <martin@ximian.com>
7432
7433         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7434         to order of some fields to get proper alignment on 64-bit machines.
7435
7436 2005-05-11  Martin Baulig  <martin@ximian.com>
7437
7438         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7439         changes as they're broken and completely fuck up the debugger.
7440
7441         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7442
7443 2005-05-10  Martin Baulig  <martin@ximian.com>
7444
7445         * reflection.c (mono_reflection_generic_class_initialize): Don't
7446         call mono_class_setup_parent() here.
7447
7448 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7449
7450         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7451         send/receive timeout use an integer in milliseconds. We were using a
7452         struct timeval.
7453
7454 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7455
7456         * locales.c:
7457         (internal_get_cultures): reserve the first slot of the array for the
7458         InvariantCulture, which will be filled in managed code.
7459
7460 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7461
7462         * reflection.c (mono_image_fill_module_table): Initialize the
7463         GENERATION field as well.
7464
7465 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7466
7467         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7468         Monitor.Enter on the object.
7469
7470 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7471
7472         * threads.c: Enable the wait for running threads when exiting.
7473         * icall.c: Suspend all threads before exiting.
7474
7475 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7476
7477         * assembly.c (mono_assembly_load_reference): Fix warning.
7478
7479 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7480
7481         * threadpool.c: changed the default number of threads per cpu. From now
7482         on, the default will be 20 + (5 * number of cpus) instead of 50.
7483
7484 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7485
7486         * loader.c (mono_method_get_signature_full): Add locking here.
7487
7488 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7489
7490         * appdomain.c: Moved methods for parsing and freeing assembly
7491         names to assembly.c.
7492         * assembly.c, domain-internals.h: Created public methods for parsing
7493         assembly names. Fixed mono_assembly_load_with_partial_name:
7494         it now finds the best match, taking into account the version,
7495         token and culture specified in the partial name. Also return
7496         the latest version if no version information is specified.
7497
7498 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7499
7500         * threadpool.c: replace check for SocketAsyncCall class.
7501
7502 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7503
7504         * threadpool-internals.h:
7505         * Makefile.am: added threadpool-internals.h
7506
7507         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7508         that happen in threadpool threads (tested on MS).
7509         (mono_thread_pool_remove_socket): new function that dispatch any pending
7510         AIO call on a socket that is closing. By now only epoll really needs it,
7511         as select/poll wake up when the socket closes.
7512
7513
7514         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7515
7516 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7517
7518         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7519
7520 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7521
7522         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7523
7524 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7525
7526         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7527         has an abort request, convert it into a suspend request.
7528
7529 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7530
7531         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7532         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7533         is not supported yet.
7534
7535 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7536
7537         * image.c: register assemblies loaded from data (bundles) in the loaded
7538         assemblies hash. Fixes bug #74772.
7539
7540 2005-04-29  Martin Baulig  <martin@ximian.com>
7541
7542         * class.c (mono_type_get_name_recurse): Update to the new naming
7543         schema from the latest .NET 2.x beta2.
7544         (mono_class_setup_vtable_general): If we're a generic instance,
7545         copy the vtable from our generic type definition and inflate all
7546         the methods in it.
7547
7548         * loader.c (find_method): Update to the new naming schema from the
7549         latest .NET 2.x beta2.
7550
7551 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7552
7553         * class.c (mono_class_init): Add a mono_loader_unlock to the
7554         #74734 fix.
7555
7556 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7557
7558         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7559         suspend_all_other_threads () call for the time being, since it can hang.
7560
7561         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7562         the background threads to exit, since it can also hang.
7563
7564         * class.c (mono_class_init): Applied patch from Ankit Jain 
7565         (radical@gmail.com). Avoid pending init errors when a field refers
7566         to a nested class using a typeref. Fixes #74734.
7567
7568         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7569         this for dynamic modules.
7570
7571 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7572
7573         * threads.c: don't wait for threads that are in the process of aborting
7574         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7575         and waiting for background threads to finish. This makes xsp and
7576         mod-mono-server exit without random length delays and/or hangs.
7577
7578 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7579
7580         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7581
7582 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7583
7584         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7585         dynamic types to prevent infinite loops. Fixes #74727.
7586
7587         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7588         ..._is_assignable_to.
7589
7590 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7591
7592         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7593
7594 2005-04-25  Martin Baulig  <martin@ximian.com>
7595
7596         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7597
7598         * domain.c
7599         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7600
7601         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7602
7603         * reflection.c (build_compressed_metadata): Set metadata header
7604         version to 2.0.
7605
7606 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7607
7608         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7609         number into an integral and a decimal part. Fixes #70473.
7610
7611         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7612
7613 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7614
7615         * culture-info-table.h : reflected the latest locale-builder output.
7616
7617 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7618
7619         * threadpool.c: check for SuspendRequested too when deciding if
7620         mono_thread_interruption_checkpoint should be called.
7621
7622 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7623
7624         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7625         * threads.c: remove interruption_mutex and use Interlocked instead. When
7626         suspending all the threads, wait for all the suspended events at once.
7627         If we're shutting down and get an APC that is going to be queued,
7628         call mono_thread_execute_interruption immediately, as the thread might
7629         be sleeping on a pthread condition or mutex.
7630
7631         * icall.c: call mono_runtime_set_shutting_down before suspending the
7632         threads.
7633
7634         Fixes bug #74693. And now xsp is happier when exiting.
7635
7636 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7637
7638         * loader.c (mono_stack_walk): Fix #74690.
7639
7640 2005-04-22  Martin Baulig  <martin@ximian.com>
7641
7642         * mono-debug.h (MonoDebugMethodJitInfo): Added
7643         `MonoDebugMethodJitInfo *jit'.
7644
7645         * mono-debug.c (mono_debug_read_method): Cache the
7646         MonoDebugMethodJitInfo in `address->jit'.
7647         (mono_debug_free_method_jit_info): New public method.
7648
7649 2005-04-22  Martin Baulig  <martin@ximian.com>
7650
7651         * class.c (mono_class_is_assignable_from): Disallow
7652         type parameter -> interface.
7653
7654 2005-04-21  Dick Porter  <dick@ximian.com>
7655
7656         * threads.c (mono_thread_create): Turn an assertion into an error.
7657
7658 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7659
7660         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7661         
7662         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7663         Fix some gcc 4.0 warnings.
7664
7665 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7666
7667         * file-io.c: fix alt dir separator char on unix systems
7668         and cleanup (fixes bug #71214).
7669
7670 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7671
7672         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7673         a call to a remote domain, since the method may be an
7674         interface method in the client domain. This fixes bug #74192.
7675
7676 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7677
7678         * threadpool.c: recv/send are now performed before going back to managed
7679         code to save one transition.
7680
7681 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7682
7683         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7684
7685         * metadata/threadpool.c: removed hack to workaround the bug above.
7686
7687         Fixes bug #74618.
7688
7689 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7690
7691         * reflection.c reflection.h: Fix handling of parameter defaults in
7692         dynamic methods. Also fixes handling of parameter attributes.
7693         Fixes #74609.
7694
7695         * mono-debug.c (mono_debug_close_image): Fix warning.
7696
7697 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7698
7699         * socket-io.h: replaced old unused field with new 'blocking'.
7700         * threadpool.c: restore socket blocking state on windows(tm).
7701
7702 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7703
7704         * icall.c: don't return the codebase in the AssemblyName[] returned by
7705         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7706         * object-internals.h: Removed FIXME (fields were presents) and fixed
7707         versioncompat declaration.
7708
7709 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7710
7711         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7712         not closed, so don't cleanup when it happens.
7713
7714 2005-04-13  Chris Toshok  <toshok@ximian.com>
7715
7716         * mono-debug-debugger.h: change prototype for
7717         mono_debugger_lookup_type.
7718
7719         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7720         this function, although it should probably be named
7721         mono_debugger_init_type.
7722
7723 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7724
7725         * threadpool.c: fix non-AIO case.
7726
7727 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7728
7729         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7730         the built-in profiler to measure just JIT compilation times.
7731
7732 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7733
7734         * threadpool.c: the epollfd might be closed by another thread at
7735         any time, so ignore EBADF at treat it as a "we're closing" sign.
7736
7737 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7738
7739         * threadpool.c: release the semaphores with a count equals to the number
7740         of working threads in both IO and regular pools. Fixed typo that messed
7741         up the count of IO pool threads. Don't initialize the pipe handles if
7742         we're using epoll.
7743
7744 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7745
7746         * threadpool.c: some systems don't like a NULL when deleting the socket
7747         from epoll.
7748
7749 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7750
7751         * threadpool.c: fix semaphore allocation.
7752
7753 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7754
7755         * threadpool.c: added epoll() based implementation for asynchronous IO
7756         that is used instead of the default poll() when available.
7757         It can be disabled by setting MONO_DISABLE_AIO.
7758
7759 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7760
7761         * threadpool.c: windows needs 'closesocket' and instead of returning
7762         0 when the stream is closed while in select, it returns -1. Fixes bug
7763         #74573.
7764
7765 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7766
7767         * class.c (class_compute_field_layout): Fix the regression caused by
7768         the previous try.
7769
7770 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7771
7772         * threadpool.c: separate pool for socket async. IO.
7773         * threadpool.h: mono_max_worker_threads is not a global any more.
7774
7775 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7776
7777         * class.c (class_compute_field_layout): Fix #74549.
7778
7779 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7780
7781         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7782         use 2 connected sockets instead.
7783
7784 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7785
7786         * mono-config.c: Add new entry point for mkbundle
7787         mono_config_parse_memory. 
7788
7789 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7790
7791         * threadpool.c: removed another unused function.
7792
7793 2005-04-08  Ankit Jain  <radical@corewars.org>
7794
7795         * reflection.c (get_default_param_value_blobs): Add 'types'
7796         parameter to get the types encoded in the constant table.
7797         (mono_param_get_objects): Use the type from the constant table,
7798         not the type of the parameter, when creating default values.
7799         Handle null default values correctly.
7800
7801 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7802
7803         * file-io.c:
7804         * file-io.h:
7805         * threadpool.c:
7806         * threadpool.h:
7807         * icall.c:
7808         * socket-io.c: removed dead code for async IO.
7809
7810 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7811
7812         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7813
7814         * threadpool.c: intercept socket async. calls and pass them to a thread
7815         that is polling and dispatching the job items to the threadpool as
7816         socket become ready. Fixes bugs #71217, #71933.
7817
7818         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7819         between char and short/ushort arrays.
7820
7821         * socket-io.c: remove dead code.
7822
7823 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7824
7825         * locales.c,
7826           icall.c : removed InternalToUpper_Comp() and
7827           InternalToLower_Comp().
7828
7829 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7830
7831         * char-conversions.h : The tables were incorrectly generated. Should
7832           be generated against invariant culture.
7833
7834 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7835
7836         * object.c (mono_runtime_invoke_array): Fix return value when 
7837         passing pre-created valuetype objects to ctors.
7838
7839         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7840         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7841         Fixes #74338.
7842
7843 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7844
7845         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7846         only used with --security and hides the wrong corlib version error.
7847
7848 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7849
7850         * class.c: Changed mono_class_name_from_token so that types
7851         outside of a namespace don't have an initial period.  Improved
7852         the g_warning message used in _mono_class_get when loading
7853         fails.
7854         * assembly.c: In mono_assembly_load_reference, when an assembly
7855         can't be found, "No such file or directory" is misleading and
7856         unhelpful because a few paths were checked for the presence of
7857         the assembly.  When that happens (ENOENT), display a nicer
7858         message indicating the directories that were searched.  In all
7859         cases, the warning is made easier to read for non-hackers.
7860
7861 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7862
7863         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7864         project/solution.
7865         * appdomain.h|domain.c: Removed inline from functions.
7866         * appdomain.c: Reduced warnings when compiling on windows.
7867         * icall.c: Fixed output_debug declaration to gunichar2*.
7868         * mono-config.c: Reduced warnings when compiling on windows.
7869         * rand.c: Added missing "windows.h". Added missing return value.
7870         * rawbuffer.c: Added missing winsock2.h for windows.
7871         * sysmath.h: Added mono-compiler.h header to allow/ease 
7872         compilation with non-GCC compilers.
7873         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7874         Removed cast warnings.
7875
7876         Adapted from the work of J Lothian (for VC6).
7877
7878 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7879
7880         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7881         from default_path.
7882
7883 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7884
7885         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7886         the 2.0 profile.
7887
7888 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7889
7890         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7891         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7892         stuff, and it would probably use $(prefix)/share rather than
7893         $(prefix)/lib.
7894
7895 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7896
7897         * console-io.c: added 2 includes that might be missing.
7898
7899 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7900
7901         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
7902         profile.
7903
7904         * reflection.c (create_custom_attr): Allocate the params array using
7905         alloca so it gets GC tracking.
7906
7907 2005-03-23  Chris Toshok  <toshok@ximian.com>
7908
7909         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
7910         out some spew.
7911
7912 2005-03-24  Raja R Harinath  <rharinath@novell.com>
7913
7914         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
7915         changes to pick up any changes in prefix, etc.
7916
7917 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7918
7919         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
7920         
7921         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
7922         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
7923
7924 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7925
7926         * class-internals.h object-internals.h class.c reflection.c: Extend the
7927         mono_lookup_dynamic_token () function to return the class of the
7928         token as well. 
7929
7930         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
7931         well. Fixes #73848.
7932
7933 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
7934
7935         * security-manager.c: Skip inheritance checks for intra-corlib
7936         class inheritance and method overrides. This skips a lot of checks
7937         and (anyway) permissions cannot work until corlib is loaded.
7938
7939 2005-03-23  Martin Baulig  <martin@ximian.com>
7940
7941         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
7942         MONO_TYPE_GENERICINST.  
7943
7944 2005-03-23  Martin Baulig  <martin@ximian.com>
7945
7946         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
7947
7948 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7949
7950         * class.c: added locking comments to some functions.
7951         Cache the interface offsets arrays (saves about 20 KB
7952         of runtime memory in a typical app).
7953         Reduce the time overhead in mono_class_setup_supertypes ().
7954
7955 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
7956
7957         * icall.c: speedup and fix leaks in GetMethodsByName and
7958         GetPropertiesByName.
7959
7960 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7961
7962         * reflection.c: some locking fixes.
7963
7964 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7965
7966         * metadata.c: added missing break in case statement.
7967
7968 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7969
7970         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7971         typedbyref return values. Fixes #73941.
7972
7973 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7974
7975         * security-manager.c|h: Added demandunmanaged method and 
7976         suppressunmanagedcodesecurity class to MonoSecurityManager.
7977         Renamed aptc class to allowpartiallytrustedcallers.
7978
7979 2005-03-17  Martin Baulig  <martin@ximian.com>
7980
7981         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7982
7983 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7984
7985         * file-io.c: disabled file async. IO using aio_*. It uses the
7986         threadpool now. Workaround for bug #73718.
7987
7988 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7989
7990         * assembly.h, mono-config.c: added code to deal with bundled configs
7991         for bundled assemblies.
7992
7993 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7994
7995         * *.c, private.h: cleanup, removing old private.h header file.
7996
7997 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7998
7999         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8000         and throw_on_unmappable_char attributes.
8001
8002 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8003
8004         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8005         _ProcessName_internal.
8006
8007 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8008
8009         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8010         #73631.
8011
8012         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8013         are no longer used.
8014
8015 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8016
8017         * object.c (compute_class_bitmap): Add support for generics. Fixes
8018         #73527.
8019
8020 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8021
8022         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8023
8024 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8025
8026         * filewatcher.c: commented out the code for windows watcher, as we don't
8027         use it (we use the managed implementation instead).
8028
8029 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8030
8031         * object-internals.h (MonoThread): Remove 'unused1' field.
8032
8033         * appdomain.c: Bump corlib version.
8034
8035         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8036
8037         * reflection.c (mono_reflection_create_runtime_class): Remove the
8038         AssemblyBuilder.Save optimization since it causes too many problems.
8039
8040 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8041
8042         * exception.c|h: Added mono_get_exception_reflection_type_load to
8043         create a ReflectionTypeLoadException object.
8044         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8045         to return NULL is a InheritanceDemand fails during reflection. Updated
8046         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8047         ReflectionTypeLoadException if an InheritanceDemand fails during 
8048         reflection. Added icall mapping for GetLinkDemandSecurity.
8049         * security-manager.c|h: Added ves_icall_System_Security_
8050         SecurityManager_GetLinkDemandSecurity internal call to return the
8051         class and methods permissions set for a LinkDemand. Removed unused
8052         fields in MonoSecurityManager.
8053
8054 2005-03-10  Martin Baulig  <martin@ximian.com>
8055
8056         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8057         it's a generic instance.
8058
8059 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8060
8061         * reflection.c (mono_get_object_from_blob): Applied patch from
8062         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8063
8064         * class.c (mono_class_is_assignable_from): Another try at fixing 
8065         #73469 without breaking anything.
8066
8067 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8068
8069         * class.c: (mono_class_is_assignable_from): Revert the last changes
8070         since they don't work with generics.
8071         
8072         * class.c (mono_class_is_assignable_from): Fix build bustage.
8073
8074         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8075         the managed IsAssignableFrom method. Fixes #73469.
8076
8077         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8078         function.
8079
8080 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8081
8082         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8083         memory when the remoting callback does not sets the out arguments.
8084         Fixes #73007.
8085
8086         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8087         by mistake.
8088
8089         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8090
8091         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8092
8093         * appdomain.c: Bump corlib version.
8094
8095 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8096
8097         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8098         function.
8099
8100         * threads.c (mono_thread_attach): Detect threads which are not started
8101         by the GC pthread wrappers.
8102
8103 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8104
8105         * icall.c: Added new icall for RNG.
8106         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8107         single handle on Linux to access /dev/urandom and fix #73183.
8108
8109 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8110
8111         * object.c: setting the new vtable in a transparent proxy object must
8112         not change the GC descriptor.
8113
8114 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8115
8116         * object.c: fixed compilation without GCJ support.
8117         * reflection.c: for runtime-created types ensure klass->has_references
8118         is correct (bug #73215).
8119
8120 2005-03-02  Martin Baulig  <martin@ximian.com>
8121
8122         * class.c (mono_class_is_assignable_from): Make this work if
8123         `oklass' is a generic instance; fixes #72831.
8124
8125 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8126
8127         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8128         with hasthis set.
8129         
8130         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8131
8132         * marshal.c: Reorganize native->managed marshalling code to also use
8133         the emit_marshal_... functions.
8134
8135 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8136
8137         * object.c: typed allocs have issues with bitmap sizes > 30,
8138         so check for max_set >= 30.
8139
8140 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8141
8142         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8143         managed code. Fixes #73012.
8144
8145         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8146
8147         * metadata.c reflection.c: Load/Emit elem_mult as well.
8148         
8149         * metadata.h (MonoMarshalSpec): Add comment.
8150
8151         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8152
8153         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8154         num_elem to -1 if not given.
8155
8156         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8157
8158         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8159         given values.
8160
8161 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8162
8163         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8164
8165 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8166
8167         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8168
8169         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8170
8171 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8172
8173         * object.c: generalized the reference bitmap creation
8174         and added hooks for the new GC.
8175         * class-internals.c: removed the gc_bitmap field from MonoClass.
8176
8177 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8178
8179         * domain.c: help the compiler to produce better code
8180         in mono_jit_info_table_find ().
8181
8182 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8183
8184         * object.c: make all allocations look typed.
8185
8186 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8187
8188         * socket-io.c: load Mono.Posix if it's not loaded already
8189         (fixes bug#73033).
8190
8191 2005-02-24  Martin Baulig  <martin@ximian.com>
8192
8193         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8194         * reflection.c (dup_type): Likewise.
8195
8196 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8197
8198         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8199         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8200
8201 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8202
8203         * domain.c, threads.c, object-internals.h: make the critical thread
8204         local vars use the fast access mode (even when we're compiled in
8205         a lib). Provide accessors to be used by the jit during codegen.
8206
8207 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8208
8209         * appdomain.c: Changed hook functios behavior to include
8210         support for the reflection only assemblies. Some icalls were changed
8211         to support the mentioned assemblies too. Signatures of static methods
8212         try_assembly_resolve and real_load now have an additional parameter:
8213         refonly.
8214
8215         * assembly.c: General changes to mono_assembly_ methods to support
8216         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8217         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8218         suffix, to support an additional gbool parameter to specify whether
8219         the assembli is reflection only or not. Created some new hook functions 
8220         to add support for reflection only assemblies. Signatures of static 
8221         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8222         have now an additional parameter: refonly.
8223
8224         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8225         indicating whether the assembly is reflection only or not.
8226
8227         * exception.c: Add mono_get_exception_invalid_operation.
8228
8229         * icall.c: Throw an InvalidOperationException when trying to invoke
8230         a property/method/event, or trying to set/get the value of a field.
8231         Also add an icall to retrieve the ref_only flag to the
8232         MonoReflectionAssembly.
8233
8234 2005-02-23  Chris Toshok  <toshok@ximian.com>
8235
8236         Part of fix for #72827.
8237         * mono-debug.c (mono_debug_add_method): add lexical block data to
8238         the info we write.  Kind of a hack at the moment - we copy the
8239         lexical block info from the MonoDebugMethodInfo to the
8240         MonoDebugMethodJitInfo here, before writing it.
8241         (mono_debug_read_method): read the lexical block info.
8242
8243         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8244
8245         * debug-mono-symfile.h: add lexical block support.
8246
8247         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8248         support.
8249
8250 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8251
8252         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8253
8254         * object.c (mono_runtime_free_method): Call mono_free_method () and
8255         put the TODOs there.
8256
8257         * loader.c (mono_free_method): Free up most memory allocated for 
8258         dynamic methods.
8259
8260 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8261
8262         * reflection.c: properly flag a Type argument to a
8263         named custom attr value (bug #72248).
8264
8265 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8266
8267         * reflection.c: reduce code duplication in named custom
8268         attribute encoding.
8269
8270 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8271
8272         * reflection.c: properly encode custom attrs of type object
8273         (bug #72649).
8274
8275 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8276
8277         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8278
8279 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8280
8281         * socket-io.c: load System.dll if it's not loaded already
8282         (bug #72850 and #70477).
8283
8284 2005-02-21  Martin Baulig  <martin@ximian.com>
8285
8286         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8287         generic instances.
8288
8289 2005-02-21  Martin Baulig  <martin@ximian.com>
8290
8291         * reflection.c (mono_image_build_metadata): We also need to
8292         "fixup" the MethodImpl table after we computed the final method
8293         indices.  Call fixup_methodimpl() to do that.
8294         (fixup_methodimpl): New private method.
8295
8296 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8297
8298         * assembly.c: special case mscorlib.dll (bug#72536),
8299         patch from Carlos Alberto Cortez.
8300
8301 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8302
8303         * threads-types.h threads.c: Fix build bustage.
8304
8305         * threads.c: Use a union for long<->double conversions.
8306
8307         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8308         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8309
8310         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8311         containing the checkpoint call with NOT_TAKEN.
8312         
8313         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8314         checkpoint before pushing the arguments, so they won't have to be
8315         spilled to stack.
8316
8317 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8318
8319         * domain.c, assembly.c, domain-internals.h: make some data
8320         const and relocation-free.
8321
8322 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8323
8324         * object.c, appdomain.c, class-internals.h: introduce the
8325         MonoClassRuntimeInfo structure to hold the info needed to
8326         use a class at runtime. Made mono_class_vtable() lock-free
8327         for all the appdomains.
8328
8329 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8330
8331         * metadata-internals.h, image.c: introduce a per-image mempool to
8332         be used for memory that has the same lifetime as the image.
8333
8334 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8335
8336         * domain.c: In mono_init_internal(), instead of selecting the first
8337         runtime version supported by an executable, get a list of all
8338         supported versions and select the one for which an mscorlib exists
8339         (since even if the runtime supports a given version, it doesn't mean
8340         that the framework for that version is installed).
8341         Modified get_runtimes_from_exe to support this behavior.
8342         In supported_runtimes, added information about additional system
8343         assembly versions.
8344         
8345         * assembly.c: Added support for more than one system assembly version
8346         per runtime version. Updated the assembly list.
8347         In mono_assembly_remap_version, removed the initial version check,
8348         since we don't know to which version we need to compare until we
8349         get the version set on which the assembly is based.
8350         Moved the code for loading corlib into the new method
8351         mono_assembly_load_corlib(), so it can be used by the initialization
8352         code.
8353         
8354         * domain-internals.h: Updated data structures and added declaration
8355         for mono_assembly_load_corlib.
8356
8357 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8358
8359         * reflection.c (resolve_object): Fix the creation of the signature in 
8360         the SignatureHelper case.
8361
8362         * assembly.c (mono_assembly_remap_version): Fix binary search.
8363         
8364 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8365  
8366         * class.c: Added inheritance check when a method is overloaded (from a
8367         virtual method or when implementing an interface) and when a class is
8368         inherited. Added functions to set a failure for a class and to 
8369         retreive the exception from a failure.
8370         * class-internals.h: Added fields to MonoClass to keep the exception
8371         information status for inheritance (or other exceptions) to be thrown
8372         later (i.e. not at load time).
8373         * object.c: Throw the inheritance SecurityException when a type is to 
8374         be created with either class or method inheritance violations.
8375         * reflection.c|h: Fix when getting declsec from a class. Removed 
8376         unrequired code for class. Improved sanity in parameter naming.
8377         * security-manager.c|h: Added functions to check for class and method
8378         inheritance.
8379
8380 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8381
8382         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8383         and has_finalize in dynamic types as well.
8384
8385 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8386
8387         * culture-info-table.h : fixed currency format for en-GB (and so on).
8388
8389 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8390
8391         * gc.c: ensure the GC handles never have 0 as a value.
8392
8393 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8394
8395         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8396         a pointer to a struct to unmanaged code. Fixes #72625.
8397
8398 2005-02-16  Martin Baulig  <martin@ximian.com>
8399
8400         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8401
8402 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8403
8404         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8405
8406 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8407
8408         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8409
8410         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8411         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8412         etc. Fixes #71471.
8413
8414         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8415
8416         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8417
8418 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8419
8420         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8421         changes to make the current context a field in MonoThread.
8422
8423 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8424
8425         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8426         the last change.
8427         
8428         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8429         extracted from mono_marshal_get_native_wrapper.
8430
8431         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8432         to create wrappers around native functions.
8433
8434         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8435         delegates for arbitrary function pointers. Fixes #71472.
8436
8437 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8438
8439         * threads.c: cleaned up the code a little.
8440
8441 2005-02-15  Martin Baulig  <martin@ximian.com>
8442
8443         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8444         the data table.
8445
8446         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8447         allocate larger chunks if needed.
8448
8449 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8450
8451         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8452         in by mistake.
8453
8454 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8455
8456         * domain.c: keep the domains in an array and ensure the domain ids
8457         are kept small, so they can be used as indexes to domain-specific data
8458         with a small memory overhead.
8459
8460 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8461
8462         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8463
8464 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8465
8466         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8467
8468 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8469
8470         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8471
8472         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8473         values.
8474
8475         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8476         
8477 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8478
8479         * domain-internals.h: add the hashtable here.
8480
8481         * class-internals.h: Remove `info' from MonoMethod
8482
8483         * domain.c: Add a new hashtable, jit_trampoline_hash
8484
8485 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8486
8487         * object.c: don't set the value of static fields
8488         (fixes bug#72494).
8489
8490 2005-02-11  Martin Baulig  <martin@ximian.com>
8491
8492         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8493         (mono_debug_add_method): Silently ignore the method if it's too big.
8494         (mono_debug_add_type): Likewise.
8495
8496 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8497
8498         * threads.c, appdomain.c: remove #ifdefs from the code.
8499
8500 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8501
8502         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8503         common security informations. This allows us to stay in unmanaged code
8504         when doing LinkDemand and it's special cases (except for the first 
8505         time for initialization). The flags a very much used with --security.
8506         * reflection.c|h: Added code to get declarative security attributes 
8507         for LinkDemand and InheritanceDemand. This required to refactor the
8508         existing code for Demand.
8509         * security-manager.c|h: Added new method fields for the special cases
8510         of LinkDemand.
8511
8512 2005-02-10  Martin Baulig  <martin@ximian.com>
8513
8514         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8515         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8516
8517 2005-02-10  Martin Baulig  <martin@ximian.com>
8518
8519         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8520         debugging code; this is almost a complete rewrite.
8521
8522         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8523
8524 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8525
8526         * domain.c, object.h: expose mono_string_equal () and 
8527         mono_string_hash ().
8528         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8529         it's implemented in managed code.
8530
8531 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8532
8533         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8534         lo leak objects between appdomains.
8535
8536 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8537
8538         * assembly.c: old compilers compilation fix from 
8539         robertj@gmx.net (Robert Jordan).
8540
8541 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8542
8543         * class-internals.h: Little reminder for the future.
8544
8545         * debug-helpers.c: Fix up wrapper_type_names
8546
8547 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8548
8549         * image.c, metadata-internals.h: when loading an image from a file,
8550         mmap all of it and use the same codepaths as when using a
8551         in-memory image: the code is simpler and we use less memory
8552         (both writable and readonly).
8553
8554 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8555
8556         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8557         API to alloc runtime data structures that need to be tracked by the
8558         GC and contain pointers.
8559         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8560         make the code more readable and eventually use a different GC.
8561
8562 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8563
8564         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8565         for out arguments.
8566         
8567 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8568
8569         * object.c: In release_type_locks(), don't release the cctor lock
8570         if it has already been released. This fixes a crash in the
8571         thread5 test.
8572
8573 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8574
8575         * gc.c, marshal.c, icall.c: register a delegate for finalization
8576         only when the native function pointer has been allocated for it.
8577
8578 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8579
8580         * object.c: cleaned up some code, allocate objects that are
8581         pointer free with the atomic malloc variant. Allocate memory
8582         for static data from the mempool if it's pointer-free.
8583         Allocate the bounds array at the end of the array data, when needed.
8584         * object-internals.h, object.h: move a private function in a private
8585         header.
8586         * class.c: handle missing case in tracking references in fields.
8587
8588 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8589
8590         * class.c, class-internals.h: keep track if a type has
8591         reference fields in either the instance or static fields.
8592
8593 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8594
8595         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8596         and renamed to MonoRuntimeInfo. Added fields to store the expected
8597         framework assembly version. Changed mono_get_framework_version and
8598         mono_get_runtime_version for a single mono_get_runtime_info method.
8599         
8600         * assembly.c: Added method to remap system assembly versions to the
8601         current executing runtime version. Removed old mapping code.
8602         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8603         
8604         * icall.c, reflection.c: Track api changes.
8605
8606 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8607
8608         * loader.c (method_from_memberref): Improve error reporting,
8609         produce the class name instead of the typeref/typedef index. 
8610
8611 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8612
8613         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8614
8615 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8616
8617         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8618         stdcall and charset name mangling.  Reorganize the code and add
8619         some tracing stuff.
8620
8621 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8622
8623         * monodiet.c: More iters!
8624
8625         * marshal.c: Iter usage.
8626
8627         * icall.c: Iter usage.
8628
8629         * object.c: Use iters.
8630
8631         * debug-helpers.c: More iters
8632
8633 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8634
8635         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8636         under win32.
8637
8638 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8639
8640         * mono-debug-debugger.c: use iters
8641
8642         * class.c, class-internals.h: mono_class_setup_events is static
8643         now
8644
8645         * All callers: use iters
8646
8647 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8648
8649         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8650         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8651
8652 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8653
8654         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8655
8656         * marshal.h: Add prototypes for ldfld/stfld_remote.
8657
8658         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8659         this is called during startup.
8660         
8661 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8662
8663         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8664         MonoThreadsSync struct private in monitor.c. Changed the way
8665         MonoThreadsSync is allocated so it's faster and there is no
8666         need to keep track of it with a finalizer and it uses less memory.
8667         This also finally allows us to allocate mono objects as ptrfree when
8668         there are no reference fields.
8669
8670 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8671
8672         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8673         disappearing link to the GC interface and use them to simplify
8674         the gchandles code.
8675
8676 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8677
8678         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8679         stfld_remote which call mono_load/store_field_new. This allows methods
8680         calling ldfld/stfld wrappers to be AOTed.
8681
8682         * console-io.c: Include sys/filio.h under solaris.
8683         
8684         * console-io.c: Include curses.h if needed correctly.
8685
8686 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8687         
8688         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8689         method->klass as well.
8690
8691         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8692
8693         * class.c (mono_class_init): Switch on lazy initialization of 
8694         methods.
8695
8696         * class.c (mono_class_get_finalizer): Handle the case when the 
8697         finalizer is inherited.
8698
8699 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8700
8701         * console-io.c: <curses.h> is needed by term.h on solaris.
8702
8703 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8704
8705         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8706         mono_class_setup_properties where possible. Remove this ftn from
8707         the header file, and make it static.
8708
8709 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8710
8711         * loader.c: Add missing setup_... call.
8712
8713         * class.c: Add missing setup_... calls.
8714
8715         * class.c (mono_class_init): Switch on lazy initialization of 
8716         the generic vtable.
8717         
8718         * class.c (mono_class_init): Fix generics broken by the recent changes.
8719
8720         * monodiet.c (handle_type): Add missing setup_... calls.
8721
8722         * class.c: Back out garbage in previous patch.
8723         
8724         * class.c: Add missing setup_... calls.
8725
8726         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8727         mono_class_setup_methods () if possible.
8728
8729         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8730
8731         * class-internals.h (MonoCachedClassInfo): New structure.
8732
8733         * class.c: Initialize properties and events fields of MonoClass lazily.
8734
8735         * class.c: Add infrastructure for lazily initializing the methods and
8736         vtable fields of MonoClass. Not yet used.
8737
8738         * class.c (mono_class_get_finalizer): New helper function.
8739
8740         * class.c: Add infrastructure for loading some class related data from
8741         an AOT file.
8742
8743         * object.c: Add infrastructure for initializing the vtable from data
8744         in the AOT file.
8745
8746         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8747
8748         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8749         appropriate initialization function before accessing parts of the
8750         MonoClass structure.
8751
8752         * marshal.c: Fix warnings.
8753         
8754         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8755
8756         * mono-debug-debugger.c (get_exception_message): Use 
8757         mono_class_get_method_from_name_flags ().
8758
8759 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8760
8761         * reflection.c, appdomain.c: Replace a few manual searches that
8762         Zoltan missed. (Paolo approved this part of my initial patch).
8763
8764 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8765
8766         * profiler.c: disable recording statistical events at report time.
8767
8768 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8769
8770         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8771         to byteswap arrays of enum values, too (bug #72080).
8772
8773 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8774
8775         * appdomain.c (set_domain_search_path): Allow this to be called if
8776         domain->setup is not yet set.
8777
8778         * loader.c (mono_method_get_index): New helper function.
8779
8780         * loader.c reflection.c: Use mono_method_get_index ().
8781
8782         * class.c (mono_class_get_method_from_name_flags): New helper method.
8783
8784         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8785         this.
8786
8787         * class.c (mono_class_get_cctor): New helper method.
8788
8789         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8790         mono_class_get_method () to look up methods.
8791
8792 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8793
8794         * console-io.c: Fix the build, this should work on Windows.
8795
8796 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8797
8798         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8799         be set to null to keep things valid
8800
8801 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8802
8803         * icall.c: added Console 2.0 icalls.
8804         * Makefile.am: added console-io.[ch]
8805         * console-io.[ch]: internal calls for Console 2.0 API.
8806
8807 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8808
8809         * class.c: make sure we consider all the interfaces
8810         when calculating max_interface_id (bug found by
8811         Jeroen Frijters running ikvm).
8812
8813 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8814
8815         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8816         valuetype fields to null.
8817
8818         * object.c (set_value): Ditto. Fixes #71669.    
8819
8820 2005-01-31  Martin Baulig  <martin@ximian.com>
8821
8822         * metadata.c (mono_metadata_has_generic_params): New public
8823         function; checks whether something is a generic method.
8824
8825 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8826
8827         * appdomain.c: fix infinite recursion when adding assemblies.
8828
8829 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8830
8831         * object.c: Fix small typo to return all items for Environment.
8832         GetCommandLineArgs.
8833
8834 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8835
8836         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8837         reflection.c: more domain and assembly-unload related fixes
8838         and memory leaks plugs.
8839
8840 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8841
8842         * 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.
8843
8844 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8845
8846         * loader.c (mono_method_signature): Make this method lazy
8847         (mono_get_method_from_token): Don't computate the signature here.
8848
8849         Doing this saves quite a bit of memory. I got 90 kb on starting up
8850         monodoc. It should also save some disk reads on startup.
8851
8852         * *: MonoMethod->signature might be NULL now. You *MUST* use
8853         mono_method_signature.
8854
8855 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8856
8857         * object.c (mono_runtime_get_main_args): Return an array from the
8858         current domain here. Fixes #71938.
8859
8860 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8861
8862         * monitor.c: formatting changes to comply with the
8863         mono coding style and remove #ifdefs from the code.
8864
8865 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8866
8867         * metadata.c, private.h: remove some unneeded data
8868         and use a more compact representation for table schemas.
8869
8870 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8871
8872         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8873         to get a better distribution in hash tables.
8874         * *.c: use mono_aligned_addr_hash() where appropriate.
8875         * assembly.c: make var static.
8876
8877 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * domain-internals.h: Put MonoJitInfo on a diet.
8880
8881         * domain.c: Fix a warning.
8882
8883 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8884
8885         * gc.c: rework the gc handles code to reuse handles
8886         when freed.
8887
8888 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8889
8890         * domain.c: fixed long standing bug in mono_string_equal() which
8891         was brought to light with the ldstr changes.
8892
8893 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8894
8895         * reflection.c: Remove warning by adding missing include for marshal.h
8896
8897 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8898
8899         * domain.c, object.c: change the ldstr_table to hold
8900         MonoString* as keys: makes the runtime isinterned lookup
8901         faster and simplifies memory management.
8902
8903 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
8904  
8905         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
8906         possible to add imperative security checks before calling the icall.
8907         * reflection.c: Return security attributes on the original MonoMethod
8908         (and not the wrapped one). This fix permissions on icalls.
8909
8910 2005-01-25  Dick Porter  <dick@ximian.com>
8911
8912         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
8913         the check for mktime() support actually test the mktime() return
8914         value.  "Fixes" bug 71682, though the output is still different to
8915         MS.
8916
8917 2005-01-25  Martin Baulig  <martin@ximian.com>
8918
8919         * class.c (mono_class_is_assignable_from): Make this work for
8920         generic instances.
8921
8922 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
8923
8924         * marshal.c (mono_string_utf8_to_builder)
8925         (mono_string_builder_to_utf16): We might not have ownership of the
8926         string. In thise case, we need to create a new buffer.
8927
8928         * object-internals.h (mono_stringbuilder_capacity): sb->str might
8929         be null, in which case, use the default capacity.
8930
8931 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8932
8933         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
8934         GC events to the profiler.
8935
8936 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8937
8938         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
8939         if you don't want the GC to run.
8940
8941 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
8942
8943         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
8944         start providing a GC API and keeping different implementations in
8945         their own file.
8946         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8947
8948 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
8949
8950         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
8951         mmap rather than allocating a huge buffer.
8952         (mono_debug_close_mono_symbol_file): Free the buffer allocated
8953         above.
8954
8955 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
8956
8957         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
8958         and CheckExecutionRights.
8959         * reflection.c|h: Keep the index of the declarative security to be 
8960         used, instead of the pointer, when AOT compiler is used. Also add 
8961         class initialization when requesting demands.
8962         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
8963         CheckExecutionRights. Both properties are now FALSE by default, and
8964         unmodifiable, unless the --security option is used.
8965
8966 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8967
8968         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8969         reflection.c: properly refcount images and assemblies, many leaks fixed.
8970
8971 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8972
8973         * threadpool.c: increase the timeout for threads in the thread pool to
8974         10s.  Fixes bug #67159.
8975
8976 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8977
8978         * class-internals.h: Sun's compiler insists on explicit
8979         signed on bit fields to handle then correctly.
8980
8981 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8982
8983         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8984         Make the size of the array fit only the number of invalid path
8985         chars that we have.
8986
8987         * class.c (_mono_class_get): Improve the error reporting when a
8988         class referenced is not found, to assist debugging. 
8989
8990 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8991
8992         * threads.c: fix off-by-one error.
8993         * domain.c: free data allocated in the domain.
8994
8995 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8996
8997         * reflection.c (mono_method_body_get_object): Fill out exception info
8998         as well.
8999
9000         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9001         structure.
9002         
9003 2005-01-19  Martin Baulig  <martin@ximian.com>
9004
9005         * loader.c (mono_get_method_constrained): Make this work again.
9006
9007 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9008
9009         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9010         guint16 to match the managed side.
9011
9012         * reflection.c (mono_reflection_body_get_object): Fill out local
9013         variables array.
9014
9015         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9016         as well.
9017
9018         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9019         'local_var_sig_token'.
9020
9021 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9022
9023         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9024         System.Drawing.
9025
9026         * reflection.c (mono_method_body_get_object): Handle abstract and
9027         runtime methods.
9028
9029 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9030
9031         * marshal.c, loader.c, class-internals.h, reflection.c:
9032         store the emthod data for a wrapper in an array instead of a list.
9033
9034 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9035
9036         * marshal.c: change the code to allocate memory more
9037         conservatively for method wrappers.
9038
9039 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9040
9041         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9042         fields from MonoClass to the marshal info structure where they belong.
9043
9044 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9045
9046         * class.c, object.c, class-internals.h, marshal.c: rearrange
9047         some fields and tweak some types to lower memory usage.
9048
9049 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9050
9051         * threads.c (signal_thread_state_change): Handle the case when the
9052         target thread is the current thread.
9053
9054         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9055
9056         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9057         emit_ptr_to_object_conv. 
9058
9059         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9060         marshalling. Fixes #71352.
9061
9062 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9063
9064         * metadata.h, blob.h: move table enum to blob.h so it can be included
9065         in any header.
9066         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9067         cut the size of MonoImage/MonoDynamicImage.
9068
9069 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9070
9071         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9072
9073 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9074
9075         * reflection.c, reflection.h, icall.c: add a function to check
9076         if an attribute type is defined for a metadata object.
9077
9078 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9079
9080         * object-internals.h: Added some needed fields from StringBuilder class.
9081         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9082
9083 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9084
9085         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9086         threads before shutting down the runtime.
9087
9088         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9089
9090 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9091
9092         * object-internal.h, threads.c: implement stacksize and 
9093         parameterized thread start functionality (requires
9094         matching corlib). Marked broken code for later removal.
9095
9096 2005-01-12  Martin Baulig  <martin@ximian.com>
9097
9098         * class-internals.h (MonoGenericClass): Moved the `initialized'
9099         flag to MonoDynamicGenericClass, removed `init_pending'.
9100         (MonoGenericInst): Added `is_reference' flag.
9101
9102 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9103
9104         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9105         inside the MSDOS header. Fixes #71201.
9106
9107         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9108         gc thread.
9109         (mono_domain_finalize): Ditto.
9110
9111 2005-01-12  Martin Baulig  <martin@ximian.com>
9112
9113         * class.c (mono_get_shared_generic_class): Use the cache for
9114         non-dynamic generic classes.
9115
9116         * class-internals.h (mono_class_create_generic_2): Removed
9117         function prototype, this function is now static inside class.c.
9118
9119         * class.c (mono_class_create_generic_2): Made this static, only
9120         call it from mono_class_init() and mono_class_setup_parent().
9121         (collect_implemented_interfaces_aux): Call mono_class_init() on
9122         the interfaces we collect.
9123         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9124
9125 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9126
9127         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9128         it a real thread handle.
9129
9130         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9131         MonoJitExceptionInfo, since each catch clause needs its own variable.
9132         
9133 2005-01-11  Dick Porter  <dick@ximian.com>
9134
9135         * image.c (mono_pe_file_open): New variant on mono_image_open()
9136         that does not set up the CLI metadata; used for FileVersionInfo so
9137         it can get the data for windows binaries too.
9138         
9139         * process.c (process_read_string_block): Don't read off the end of
9140         the StringTable block.
9141
9142         These both fix bug 70766.
9143
9144 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9145
9146         * gc.c: set some fields to NULL at GC cleanup time.
9147         * threads.c: if we quit the main thread, call exit ().
9148
9149 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9150
9151         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9152
9153 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9154
9155         * threads.h, threads.c, object.c: added accessor and settor for
9156         main_thread. Handle it specially when exiting from it: wait
9157         for other foreground threads to exit.
9158
9159 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9160
9161         * process.c, verify.c: remove some bloat.
9162
9163 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9164
9165         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9166         the calling convention to cdecl under win32.
9167
9168 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9169
9170         * object.c (mono_object_get_size): New function to get the size of
9171         an object instance.
9172
9173         * profiler.c (simple_allocation): Use above.
9174
9175 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9176
9177         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9178         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9179         get an appdomain by it's id and we can't assume the root's id is 0).
9180         * domain-internals.h: Change the function prototype to match.
9181         * icall.c: Change the icall table for AppDomain.
9182
9183 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9184
9185         * locales.c (string_invariant_compare_char): Only compute
9186         GUnicodeTypes in the case where we need them.  Test for ordinality
9187         first and return if so.
9188
9189         From the commit:
9190
9191                 /*
9192                  * FIXME: here we must use the information from c1type and c2type
9193                  * to find out the proper collation, even on the InvariantCulture, the
9194                  * sorting is not done by computing the unicode values, but their
9195                  * actual sort order.
9196                  */
9197
9198 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9199
9200         * loader.c: for P/Invoke methods, allow the "Internal" shared
9201         library name to refer to the calling process symbol namespace.
9202
9203 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9204
9205         * Makefile.am: Add the security manager to the build.
9206         * security-manager.c|h: New. Initialization of the security manager.
9207
9208 2005-01-07  Dick Porter  <dick@ximian.com>
9209
9210         * threads.c: 
9211         * monitor.c: Update thread state during Monitor and WaitHandle
9212         waits.  Fixes bug 71031.
9213
9214 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9215
9216         * reflection.c (property_encode_signature): Correctly handle when the
9217         property has no methods.
9218
9219 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9220
9221         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9222         
9223         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9224         fields from mb, not rmb. Fixes #71017.
9225
9226         * marshal.c (emit_ptr_to_str_conv): Add support for 
9227         ByValTStr -> string conversion. Fixes #71015.
9228
9229         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9230
9231         * mempool.c (mono_mempool_contains_addr): New helper function.
9232
9233 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9234
9235         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9236         HasSematics encoded fields.
9237         
9238         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9239         invalid string marshalling.
9240
9241         * metadata.c: Fix warnings.
9242         
9243 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9244
9245         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9246         profiler support.
9247
9248 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9249
9250         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9251         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9252         tests.
9253
9254 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9255
9256         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9257         so methods containing these can be AOTed.
9258
9259 2005-01-03  Martin Baulig  <martin@ximian.com>
9260
9261         * loader.c (find_method): Removed the hack for generic instances.
9262         (method_from_memberref): If our parent is a generic instance, pass
9263         its generic type definition to find_method() and then inflate the
9264         method.
9265         (mono_get_method_constrained): Pass the generic type definition to
9266         find_method() and inflate the method later.
9267
9268         * class-internals.h (MonoStats): Added `generic_class_count'.
9269
9270         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9271         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9272
9273         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9274         generic type definitions.
9275
9276 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9277
9278         * loader.c icall.c: Fix warnings.
9279
9280 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9281
9282         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9283         blittable types. Fixes #70864.
9284
9285 2004-12-29  Martin Baulig  <martin@ximian.com>
9286
9287         * icall.c
9288         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9289
9290         * reflection.c (mono_method_get_object): Create a
9291         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9292         call mono_get_inflated_method().
9293
9294         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9295
9296 2004-12-27  Martin Baulig  <martin@ximian.com>
9297
9298         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9299         (MonoMethodInflated): Added `inflated' field.
9300
9301         * class.c (mono_class_inflate_generic_method): Don't really
9302         inflate the method here; just set the `is_inflated' flag in the
9303         MonoMethod.
9304         (mono_class_get_inflated_method): Actually inflate the method here
9305         if it's not already inflated; we use the MonoMethodInflated's new
9306         `inflated' field as a cache.
9307
9308 2004-12-26  Martin Baulig  <martin@ximian.com>
9309
9310         * class.c
9311         (inflate_generic_class): Moved some code out of inflate_generic_type().
9312         (mono_class_inflate_generic_method): If we're already inflated,
9313         inflate the context and use the declaring method; ie. make sure
9314         the declaring method of an inflated method is always the generic
9315         method definition.
9316         (mono_class_create_from_typedef): Create
9317         `class->generic_container->context->gclass'.
9318
9319 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9320
9321         * metadata-internals.h, marshal.c, reflection.c: More
9322         MonoGHashTable->GHashTable.
9323
9324         * domain-internals.h, class.c: Change MonoGHashTable's into
9325         GHashTables for some cases where no gc stuff is used
9326
9327         All users: update apis
9328
9329 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9330
9331         * metadata.c (builtin_types): Make this `const'. Makes this get
9332         put into the shareable section.
9333         (mono_metadata_init): Casts to make gcc happy.
9334
9335 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9336
9337         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9338
9339 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9340
9341         * icall.c: Added an internal call to retrieve the position and length
9342         of assembly-level declarative security attributes (RequestMinimum, 
9343         RequestOptional and RequestRefuse). This is used by the Assembly class
9344         to re-create the corresponding permission sets.
9345
9346 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9347
9348         * marshal.c: fix the stelemref wrapper to be type correct
9349         (and faster).
9350
9351 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9352
9353         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9354         to do key & 0x7fffffff. Hashtable already does this. It just
9355         results in longer code.
9356
9357 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9358
9359         * appdomain.c: Bump corlib version.
9360         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9361         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9362         * reflection.c|h: Add functions to get declarative security infos
9363         (blob position and length) for assemblies, classes and methods.
9364
9365 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9366
9367         * reflection.c: sort the constant table (bug #70693).
9368
9369 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9370
9371         * object-internals.h, threads.c, domain.c: add accessors for
9372         the MonoThread and MonoDomain tls keys.
9373
9374 2004-12-18  Martin Baulig  <martin@ximian.com>
9375
9376         * class.c (inflate_generic_type): If we're inflating a generic
9377         instance, set `ngclass->context->container = context->container';
9378         ie. the container we inflated into.
9379
9380         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9381         inflate_generic_type() changes.
9382
9383 2004-12-17  Martin Baulig  <martin@ximian.com>
9384
9385         * class-internals.h
9386         (MonoGenericClass): Replaced `MonoType *generic_type' with
9387         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9388         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9389         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9390
9391 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9392
9393         * exception.c (mono_exception_from_token): New helper function.
9394
9395 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9396
9397         * assembly.c (mono_assembly_load_with_partial_name): Call 
9398         mono_assembly_loaded before invoking the preload hooks. Fixes
9399         #70564.
9400
9401         * object-internals.h (MonoThread): Change culture_info and 
9402         ui_culture_info into an array.
9403
9404         * threads.c: Cache culture info objects from more than one appdomain.
9405
9406         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9407         current UI culture.
9408
9409 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9410
9411         * threads.h threads.c appdomain.c: Clear the culture_info field of
9412         all threads during unloading if they point to an object in the dying
9413         appdomain.
9414
9415 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9416
9417         * culture-info.h (TextInfoEntry): New struct
9418         * object-internals.h: sync with managed
9419         * locales.c: fill the `text_info_data' field
9420         * culture-info-tables.h: update
9421
9422 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9423
9424         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9425         collector.
9426
9427 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9428
9429         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9430         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9431
9432 2004-12-12  Martin Baulig  <martin@ximian.com>
9433
9434         * mono-debug-debugger.c (write_type): If we're an enum and the
9435         builtin types have already been initialized, call mono_class_init().
9436
9437 2004-12-11  Martin Baulig  <martin@ximian.com>
9438
9439         * metadata.c (mono_metadata_load_generic_params): Added
9440         `MonoGenericContainer *parent_container' argument; automatically
9441         compute `container->is_method'; pass the correct owner to
9442         get_constraints().      
9443
9444         * reflection.c (compare_genericparam): Sort the GenericParam table
9445         according to increasing owners. 
9446
9447 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9448
9449         * profiler.c: allow disabling the default profiler.
9450
9451 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9452
9453         * decimal.c, icall.c: allow disabling System.Decimal support.
9454
9455 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9456
9457         * reflection.c: Add support for null attribute arguments.
9458
9459 2004-12-09  Martin Baulig  <martin@ximian.com>
9460
9461         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9462         names to get rid of compiler warnings.
9463
9464 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9465
9466         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9467         mono_marshal_load_type_info (). Fixes #69625.
9468         (mono_marshal_get_ptr_to_struct): Likewise.
9469
9470 2004-12-08  Martin Baulig  <martin@ximian.com>
9471
9472         * mono-debug.h: Bumped version number to 47.
9473
9474         * mono-debug-debugger.c
9475         (mono_debugger_event_handler, mono_debugger_event): Take two
9476         guint64 arguments insteed of a gpointer and a guint32.  
9477
9478 2004-12-08  Martin Baulig  <martin@ximian.com>
9479
9480         * debug-mono-symfile.h
9481         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9482         `address' to `native_offset'.
9483
9484 2004-12-08  Martin Baulig  <martin@ximian.com>
9485
9486         * class.c (mono_class_create_from_typespec): Only inflate if we
9487         either have `context->gclass' or `context->gmethod'.
9488
9489 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9490
9491         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9492
9493         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9494
9495         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9496
9497         * reflection.c (mono_assembly_get_object): Remove the workaround put
9498         in for the release.
9499         
9500         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9501
9502         * appdomain.c: Bump corlib version.
9503
9504         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9505         be visible in other appdomains.
9506
9507 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9508
9509         * threads.c: Interlocked inc and dec for longs were messed up,
9510         use a KISS based impl for this. Fixes 70234
9511
9512 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9513
9514         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9515
9516 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9517
9518         * icall.c: fix to follow policy not to allow struct
9519         arguments in icalls.
9520
9521 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9522
9523         * process.c: make the patch that handles spaces in file paths work
9524         on mono/windows too.
9525
9526 2004-12-06  Martin Baulig  <martin@ximian.com>
9527
9528         * class.c (mono_class_create_generic): Call
9529         mono_class_setup_supertypes() if we're dynamic.
9530         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9531
9532 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9533
9534         * object-internals.h: Add new fields to MonoThread.
9535
9536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9537
9538         * icall.c threads-types.h threads.c: Add new icalls.
9539
9540         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9541
9542         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9543         managed side.
9544
9545         * appdomain.c: Bump corlib version.
9546
9547         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9548         internal assemblies. Fixes #69181.
9549
9550 2004-12-05  Martin Baulig  <martin@ximian.com>
9551
9552         * class.c (mono_class_inflate_generic_signature): Make this a
9553         no-op if `context' is NULL or we don't have any type parameters;
9554         also copy `sentinelpos'.        
9555
9556 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9557
9558         * image.c: Add unbox_wrapper_cache.
9559
9560         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9561
9562         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9563         function generator.
9564         
9565         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9566         Fixes #70173.
9567
9568         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9569         
9570 2004-12-04  Martin Baulig  <martin@ximian.com>
9571
9572         * loader.c (mono_method_get_signature_full): New public function;
9573         like mono_method_get_signature(), but with an additional
9574         `MonoGenericContext *' argument.
9575
9576         * class.c (mono_class_inflate_generic_signature): Formerly known
9577         as inflate_generic_signature(); make this public.
9578
9579 2004-12-04  Martin Baulig  <martin@ximian.com>
9580
9581         * metadata.c
9582         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9583         instead of a `MonoGenericContainer *'.  
9584         (mono_metadata_parse_array_full): Likewise.
9585         (mono_metadata_parse_signature_full): Likewise.
9586         (mono_metadata_parse_method_signature_full): Likewise.
9587         (mono_metadata_parse_generic_inst): Likewise.
9588         (mono_metadata_parse_generic_param): Likewise.
9589         (mono_metadata_parse_mh_full): Likewise.
9590         (mono_type_create_from_typespec_full): Likewise.
9591
9592 2004-12-03  Martin Baulig  <martin@ximian.com>
9593
9594         * class-internals.h (MonoGenericContainer): Replaced the
9595         `MonoGenericContext * pointer with a `MonoGenericContext'
9596         structure and made it the first element.
9597
9598 2004-12-03  Martin Baulig  <martin@ximian.com>
9599
9600         * class.c
9601         (inflate_generic_type): Set the `context->container' when creating
9602         a new MonoGenericContext.
9603         (mono_class_inflate_generic_method): Likewise.
9604         (mono_class_create_from_typespec): Just use `context->container'
9605         to get the container.
9606
9607         * loader.c (method_from_methodspec): Set `context->parent' from
9608         `context->container' - and if that's a method container, use its
9609         parent.  Also set the `context->container' when creating a new
9610         MonoGenericContext.
9611         (mono_get_method_from_token): Use just `context->container' to get
9612         the container.
9613
9614         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9615         `gclass->context->container'.
9616
9617         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9618         the `context->container' when creating a new MonoGenericContext.
9619
9620 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9621
9622         * reflection.c (compare_genericparam): Sort params with identical
9623         owner by their number. Fixes gen-111 on sparc.
9624
9625 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9626
9627         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9628         around the domain changes.
9629
9630         * appdomain.c (mono_domain_unload): Handle the case when the thread
9631         calling Unload is itself being aborted during unloading. Fixes #70022.
9632
9633         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9634
9635         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9636         checkpoint_func as an icall so it gets a wrapper.
9637         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9638         in the cross-appdomain wrappers too.
9639
9640         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9641
9642         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9643
9644         * reflection.c: Fix some memory leaks.
9645         
9646 2004-12-02  Martin Baulig  <martin@ximian.com>
9647
9648         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9649
9650         * metadata.c (generic_class_cache): New static hashtable.
9651         (mono_metadata_lookup_generic_class): New public method.
9652
9653 2004-12-02  Martin Baulig  <martin@ximian.com>
9654
9655         * class.c (mono_class_create_from_typedef): Call
9656         mono_class_setup_parent() and mono_class_create_mono_type() before
9657         parsing the interfaces.
9658
9659 2004-12-02  Martin Baulig  <martin@ximian.com>
9660
9661         * metadata.c (generic_inst_cache): New static hashtable.
9662         (mono_metadata_lookup_generic_inst): New public function.
9663         (mono_metadata_inflate_generic_inst): New public function.
9664         (mono_metadata_parse_generic_inst): New public function.
9665         (do_mono_metadata_parse_generic_class): Use the new
9666         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9667         since this'll also use the cache.
9668
9669         * reflection.c (mono_reflection_bind_generic_method_parameters):
9670         Use mono_metadata_lookup_generic_inst() to use the new cache.
9671
9672         * class.c (inflate_mono_type): Use
9673         mono_metadata_inflate_generic_inst() to inflate a generic
9674         instance; this'll also use the new cache.
9675
9676         * loader.c (method_from_methodspec): Use
9677         mono_metadata_parse_generic_inst() and
9678         mono_metadata_inflate_generic_inst() rather than parsing it
9679         manually, so we can use the new cache.
9680
9681 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9682
9683         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9684         the wait times out.
9685
9686 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9687
9688         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9689         iter->args based on whether parameters are passed in registers (i.e.
9690         MONO_ARCH_REGPARMS is defined)
9691
9692 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9693
9694         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9695         the exception message. Fixes #70070.
9696         (method_from_methodspec): Fix warnings.
9697
9698 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9699
9700         * process.c: (complete_path) return the path quoted
9701
9702 2004-12-01  Martin Baulig  <martin@ximian.com>
9703
9704         * class-internals.h (MonoGenericInst): New structure.
9705         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9706         `is_open' with `MonoGenericInst *inst'.
9707         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9708         `is_open' with `MonoGenericInst *inst'.
9709
9710 2004-11-30  Martin Baulig  <martin@ximian.com>
9711
9712         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9713
9714         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9715         to `generic_class_cache'.
9716
9717         * metadata.c
9718         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9719         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9720         (mono_generic_inst_is_valuetype): Renamed to
9721         mono_generic_class_is_valuetype().
9722
9723         * class-internals.h
9724         (MonoGenericInst): Renamed to MonoGenericClass.
9725         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9726         (MonoClass): Renamed `generic_inst' to `generic_class'.
9727         (MonoGenericContext): Renamed `ginst' to `gclass'.
9728
9729         * object-internals.h
9730         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9731
9732         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9733         mono_reflection_generic_class_initialize().
9734
9735         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9736         now known as "System.Reflection.MonoGenericClass".
9737         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9738
9739 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9740
9741         * class-internals.h: Added a flag field to MonoClass to cache the
9742         declarative security attributes actions associated with the class.
9743         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9744         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9745         applicable to the JITted method.
9746         * reflection.c|h: Added functions to extract (as flags) which security
9747         actions are available (declaratively) for a method, class or assembly.
9748         * metadata.c|h: Added functions to search the declarative security
9749         table in the metadata.
9750         
9751 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9752
9753         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9754         EXPORTEDTYPES are already in the class name cache, so there is no
9755         need to add extra code here to look at them. Just removes a bit of
9756         cruft.
9757
9758         (ves_icall_System_Environment_get_TickCount): No need for #if
9759         WINDOWS. We already have the code in io-layer.
9760
9761 2004-11-28  Martin Baulig  <martin@ximian.com>
9762
9763         * loader.c
9764         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9765         Fixes gen-112.cs.
9766
9767 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9768
9769         * assembly.c (do_mono_assembly_open): Instead of having a
9770         conditional WITH_BUNDLE, incorporate support for bundles here, by
9771         having a global `bundles' variable holding a pointer to the actual
9772         bundles. 
9773
9774         (mono_register_bundled_assemblies): New API call used by the
9775         bundle code. 
9776
9777         See mkbundle.1 for details.
9778         
9779 2004-11-27  Martin Baulig  <martin@ximian.com>
9780
9781         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9782         the vtable for generic methods.
9783
9784 2004-11-26  Martin Baulig  <martin@ximian.com>
9785
9786         * metadata.c
9787         (mono_metadata_generic_method_hash): New public function.
9788         (mono_metadata_generic_method_equal): Likewise.
9789
9790         * class-internals.h
9791         (MonoGenericContainer): Added `GHashTable *method_hash'.
9792
9793         * reflection.c (ReflectionMethodBuilder): Added
9794         `MonoGenericContainer *generic_container'.
9795         (reflection_methodbuilder_to_mono_method): Don't create a new
9796         MonoGenericContainer each time we're called.
9797         (mono_reflection_bind_generic_method_parameters): Use
9798         `container->method_hash' to cache the results so we don't create a
9799         different method if we're called several times with the same
9800         arguments.
9801
9802         * loader.c (method_from_methodspec): Use the new
9803         `container->method_hash' here, too.
9804
9805 2004-11-26  Martin Baulig  <martin@ximian.com>
9806
9807         * class.c (inflate_generic_signature): Correctly compute
9808         `res->has_type_parameters'.
9809         (mono_class_vtable): Use the `has_type_parameters' flag to
9810         determine whether we're a generic method.
9811
9812         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9813
9814 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9815
9816         * object.c (mono_runtime_run_main): Fix a small memory leak.
9817
9818 2004-11-25  Martin Baulig  <martin@ximian.com>
9819
9820         * class.c (set_generic_param_owner): Fixed the loop.
9821
9822 2004-11-25  Martin Baulig  <martin@ximian.com>
9823
9824         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9825         generic methods.
9826
9827 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9828
9829         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9830         names. Fixes #69787.
9831
9832 2004-11-24  Martin Baulig  <martin@ximian.com>
9833
9834         * class.c (mono_class_create_generic_2): If we don't have a
9835         `ginst->parent', inflate `gklass->parent' to get our parent.
9836
9837 2004-11-24  Martin Baulig  <martin@ximian.com>
9838
9839         * reflection.c (compare_genericparam): Correctly sort the
9840         GenericParam table; fixes #69779.
9841
9842 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9843
9844         * reflection.c: When writing a PE file, don't create a huge
9845         buffer in memory. Just write the arrays we have to the file.
9846         This reduces memory usage.
9847
9848         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9849         globally.
9850
9851 2004-11-17  Martin Baulig  <martin@ximian.com>
9852
9853         * class.c (mono_class_init): Don't setup `class->parent' for
9854         dynamic instances; moved this to mono_class_generic_2().
9855         (mono_class_create_generic): Also set `klass->inited' for dynamic
9856         generic instances.
9857         (mono_class_create_generic_2): Don't do anything for dynamic
9858         generic instances.  Set `klass->parent' here and also call
9859         mono_class_setup_parent() here. 
9860
9861         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9862         `MonoType *parent' argument; set `ginst->parent' before calling
9863         mono_class_create_generic_2(), so we set the correct parent.
9864
9865 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9866
9867         * reflection.c: allow getting attributes from ModuleBuilder
9868         (used by ikvm).
9869
9870 2004-11-17  Martin Baulig  <martin@ximian.com>
9871
9872         * class.c (mono_class_create_from_typedef): If a type parameter is
9873         inherited from an outer class, set its owner to that class.
9874
9875 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9876
9877         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9878           for (int*) written size. This fixes bug #69592.
9879
9880 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9881
9882         * icall.c: Added IsAuthenticodePresnet internal call.
9883         * image.c|h: New function that check a MonoImage for an Authenticode
9884         signature in the certificate PE data directory.
9885         * security.c|h: New internal call to ask the runtime if an 
9886         Authenticode signature seems referenced in the PE header.
9887
9888 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9889
9890         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9891
9892         * reflection.c (mono_image_create_pefile): Free the assembly streams
9893         after writing out the assembly file.
9894
9895         * object.c (mono_runtime_run_main): Fix small memory leak.
9896
9897         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9898         property access modifiers. Fixes #69389.
9899
9900 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
9901
9902         * domain.c, object.c, object-internals.h, domain-internals.h,
9903         object.h, marshal.c: keep dynamic code info per domain.
9904
9905 2004-11-15  Martin Baulig  <martin@ximian.com>
9906
9907         * class.c (mono_type_get_name_recurse): Put type arguments in
9908         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
9909         see bug #68387.
9910
9911 2004-11-15  Martin Baulig  <martin@ximian.com>
9912
9913         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
9914         (mono_class_setup_vtable): When computing `the_cname' for a
9915         generic instance, don't include the namespace since we'd otherwise
9916         add it twice.
9917
9918 2004-11-15  Martin Baulig  <martin@ximian.com>
9919
9920         * class.c (mono_class_create_generic): Changed return type to void.
9921         (mono_class_create_generic_2): New public function; setup
9922         `class->method', `class->field' and `class->interfaces' here
9923         instead of in mono_class_init().
9924
9925         * class.h (mono_class_create_generic): Moved to class-internals.h.
9926
9927 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
9928
9929         * reflection.c (mono_image_create_pefile): take a file HANDLE.
9930         rather than writing to memory, write to this file. Right now,
9931         we are just writting into a buffer, and copying that. However
9932         we can avoid the buffer later.
9933
9934         (mono_dynamic_stream_reset): new function
9935
9936         * icall.c, object-internals.h: update for the above.
9937
9938 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
9939
9940         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
9941         have been using gc'd memory. First it is slower, unlikely
9942         the comment in the source code said, secondly, it increases
9943         our footprint to do it in the gc.
9944
9945         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
9946         the method so that it does not have to copy to managed code.
9947
9948 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
9949
9950         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
9951
9952 2004-11-12  Martin Baulig  <martin@localhost>
9953
9954         * reflection.c (mono_image_create_token): Allow generic method
9955         definitions here, since they may appear in an `.override'; see
9956         gen-98/gen-99 for an example.
9957
9958 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
9959
9960         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
9961         #69365.
9962
9963         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
9964         descriptive.
9965
9966 2004-11-11  Martin Baulig  <martin@ximian.com>
9967
9968         * class.c (mono_class_setup_vtable): In an explicit interface
9969         implementation, the method name now includes the arity.
9970
9971 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9972
9973         * object.c (mono_array_full_copy): Fix warning.
9974
9975 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9976
9977         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9978         mono_class_get_method_from_name() instead.
9979         
9980         * class-internals.h: Added two new types of wrappers. 
9981         Added MonoRemotingTarget enum. Added new trampoline function type, which
9982         takes an additional MonoRemotingTarget value as parameter, so it is
9983         possible to request a trampoline for a specific target.
9984         
9985         * class.c: Added new mono_class_get_method_from_name() method.
9986         
9987         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9988         general remoting sinks and one specific for cross domain calls.
9989         
9990         * debug-helpers.c: Added new wrapper names.
9991         
9992         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9993         of a remote class.
9994         
9995         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9996         
9997         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9998         with several other methods (mono_marshal_get_xappdomain_dispatch,
9999         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10000         and others) can generate a fast remoting wrapper for cross domain calls.
10001         More information can be found in docs/remoting.
10002         Other changes: Removed mono_find_method_by_name, and used
10003         mono_class_get_method_from_name instead.
10004         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10005         is stored in the remoting invoke hashtable.
10006         
10007         * marshal.h: published the new method for getting the xdomain wrapper,
10008         and also added a method for getting the adequate wrapper for a given
10009         method and target.
10010         
10011         * object-internals.h, object.c: Added a couple of methods for capying and
10012         cloning arrays.
10013         Modified mono_install_remoting_trampoline, which takes the new remoting
10014         trampoline that has a remoting target as parameter.
10015         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10016         will return the most suitable vtable for the target.
10017         Added mono_remote_class_vtable, which returns the vtable of a remote class
10018         (which can be the normal remoting vtable or the xdomain vtable).
10019         
10020         * threads.c: the xdomain invoke and dispatch wrappers must also be
10021         protected against interruptions.
10022
10023 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10024
10025         * icall.c: use memmove in BlockCopyInternal when the source and
10026         destination arrays are the same.
10027
10028 2004-11-09  Martin Baulig  <martin@ximian.com>
10029
10030         * class-internals.h (MonoGenericContainer): Removed `method' and
10031         `signature', replaced them with `is_method' and `is_signature'
10032         flags.  Added `context'.
10033
10034         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10035         instead of a `MonoGenericContainer *'.
10036
10037         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10038         for dynamic type parameters.
10039         (mono_metadata_load_generic_params): Setup `container->context'.
10040
10041         * reflection.c (mono_reflection_setup_generic_class): Setup
10042         `tb->generic_container->context'.
10043         (do_mono_reflection_bind_generic_parameters): Use
10044         mono_class_inflate_generic_type() to correctly inflate types,
10045         rather than using our own hack just for MONO_TYPE_VAR.
10046
10047 2004-11-09  Martin Baulig  <martin@ximian.com>
10048
10049         * class.c (mono_class_inflate_generic_method): Small fix; don't
10050         crash here.
10051
10052         * icall.c
10053         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10054         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10055         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10056         (ves_icall_Type_BindGenericParameters): Likewise.
10057         (ves_icall_Type_get_IsGenericInstance): Likewise.
10058         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10059         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10060         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10061         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10062
10063 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10064
10065         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10066         assembly versions and public key tokens. Fixes #69113.
10067
10068 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10069
10070         * metadata.c: fix bug introduced with the type cache changes
10071         on 2004-11-06.
10072
10073 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10074
10075         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10076         the MonoClass pointer instead of the token in exception clauses.
10077         * reflection.c: updates for the above and make the code not depend
10078         on the structure of MonoExceptionClause.
10079
10080 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10081
10082         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10083         Add support for dynamic assemblies. Fixes #69114.
10084
10085         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10086
10087 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10088
10089         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10090         since most only those methods use it. the code member of
10091         MonoMethodPInvoke was dead, so that can be removed too. Also,
10092         remove inline_count (again, not used), and move slot so that it
10093         can share bits with some other flags. This saves 8 bytes in the
10094         structure and gives us about 50 kb back for mcs helloworld.cs
10095
10096         * *.[ch]: Do naming changes for the above.
10097
10098         * loader.c (mono_method_get_header): Lazily init the header
10099         on first access.
10100         (mono_get_method_from_token): don't init the header here
10101         (mono_free_method): the header may never be allocated
10102
10103         Overall, this saves 150 kb of unmanaged allocations
10104         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10105         memory at runtime.
10106         
10107         * loader.c, loader.h (mono_method_get_header): new accessor.
10108
10109         * *.[ch]: use the above method. Prepares us to lazily load
10110         the header.
10111
10112         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10113         three warnings, which are actual bugs (see 69206).
10114
10115         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10116         unused. Saves a cool 4 bytes / method.
10117
10118 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10119
10120         * metadata.c (builtin_types): Add types for System.Object here.
10121         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10122         for a class or valuetype from klass->this_arg or klass->byval_arg.
10123
10124         On mcs for a hello world, this gets us down from 21836 MonoType's
10125         to 14560.
10126
10127         (mono_metadata_free_type): Account for the above change.
10128
10129 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10130
10131         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10132         exception instead of asserting if name is null.
10133         (ves_icall_System_AppDomain_GetData): Ditto.
10134
10135 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10136
10137         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10138         EnumBuilder.
10139
10140         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10141         Return NULL when the domain does not have entry_assembly set.
10142
10143         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10144         Add a 'resource_modules' argument.
10145         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10146
10147         * reflection.c (mono_reflection_create_runtime_class): Move setting
10148         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10149         for enums too.
10150
10151         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10152         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10153         Throw an ArgumentNullException if 'ptr' is null.
10154
10155         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10156         assemblies here. Fixes #69020.
10157
10158 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10159
10160         * reflection.c (build_compressed_metadata): Fix the previous patch for
10161         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10162         the stack.
10163
10164 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10165
10166         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10167         the cultures is false. Fixes #69090.
10168
10169         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10170         detected by valgrind.
10171         
10172         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10173         TypeResolve multiple times for the same type. Fixes #65577.
10174
10175 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10176
10177         * marshal.c: Avoid using ldftn to call managed functions. It is
10178         much slower than just a call.
10179
10180         * reflection.c (mono_module_get_object): free the basename we
10181         allocate here from glib.
10182         
10183         * reflection.c (ensure_runtime_vtable): make sure to free
10184         overrides.  Also, we were allocating an array of MonoMethod not an
10185         array of MonoMethod*.
10186
10187         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10188
10189         * image.c (mono_image_close): free image->guid here.
10190
10191 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10192
10193         * reflection.c: Fix some spec conformance issues with the PE file
10194         structures so mcs compiled apps run on the Net 2.0 beta.
10195
10196 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10197
10198         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10199         Implement this. Fixes #67264.
10200
10201         * debug-helpers.h debug-helpers.c marshal.c: Move 
10202         mono_find_method_by_name to debug-helpers.c.
10203
10204 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10205
10206         * object.c (mono_release_type_locks): type_initialization_hash is
10207         a GHashTable.
10208
10209         * reflection.c object.c object-internals.h: Fix warnings.
10210
10211         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10212         without accessors. Fixes #61561.
10213
10214         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10215         application base from the root domain if not set. Fixes #65641.
10216         (mono_runtime_init): Fix warning.
10217
10218 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10219
10220         * appdomain.c: call mono_thread_pool_init.
10221         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10222         of worker threads based on the number of CPUs and the environment
10223         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10224         for non-windows (windows) systems.
10225
10226 2004-10-27  Chris Toshok  <toshok@ximian.com>
10227
10228         * mono-debug-debugger.c (write_class): don't call mono_class_init
10229         here, as even with the check for (!klass->init_pending), we get
10230         into a situation where we're hitting cycles in class
10231         initialization.  Fixes #68816.
10232
10233 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10234
10235         * image.c: Avoid overwriting values in the loaded_images_hash when an
10236         assembly is loaded multiple times. Fixes #61152.
10237
10238         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10239         so multiple satellite assemblies for the same name can be loaded.
10240         Fixes #68259.
10241
10242         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10243         not NULL.
10244
10245         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10246         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10247
10248         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10249         pending finalizers are not invoked after the appdomain has been 
10250         unloaded. Fixes #67862.
10251
10252 2004-10-22  Martin Baulig  <martin@ximian.com>
10253
10254         * mono-debug-debugger.c
10255         (mono_debugger_runtime_invoke): Don't box valuetypes.
10256
10257 2004-10-22  Chris Toshok  <toshok@ximian.com>
10258
10259         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10260         don't hide private methods.
10261
10262 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10263
10264         * icall.c: Allows the runtime to "share" (when known) the public key
10265         token of an assembly. This avoid the need to recalculate the token 
10266         (from the public key) in managed code.
10267
10268 2004-10-21  Chris Toshok  <toshok@ximian.com>
10269
10270         * debug-helpers.c (append_class_name): argh, revert last patch.
10271         
10272 2004-10-21  Chris Toshok  <toshok@ximian.com>
10273
10274         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10275         not '/', so that it matches what the debugger uses to look up
10276         methods.
10277
10278 2004-10-21  Martin Baulig  <martin@ximian.com>
10279
10280         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10281         public method; this is called each time an exception is thrown and
10282         allows the debugger to use exception catch points.
10283
10284 2004-10-21  Martin Baulig  <martin@ximian.com>
10285
10286         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10287         the stack pointer and the exception object in some struct and pass
10288         that to the debugger.
10289
10290 2004-10-21  Chris Toshok  <toshok@ximian.com>
10291
10292         * mono-debug-debugger.c (do_write_class): add instance/static
10293         event support.  We don't expose "raise" or "other" yet.
10294         (event_is_static): new method.
10295
10296 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10297
10298         * mono-debug-debugger.c
10299         (mono_debugger_handle_exception): Remove
10300         bogus return value for fussy compilers.
10301
10302 2004-10-20  Martin Baulig  <martin@ximian.com>
10303
10304         * mono-debug-debugger.c
10305         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10306         (mono_debugger_handled_exception): Likewise.
10307
10308 2004-10-20  Martin Baulig  <martin@ximian.com>
10309
10310         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10311         MONO_DEBUGGER_EVENT_EXCEPTION.
10312
10313         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10314         public function to send the debugger a notification for an
10315         exception and inform it about a catch/finally clause.
10316
10317 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10318
10319         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10320         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10321         fix 2.95 build. 
10322
10323         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10324
10325 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10326
10327         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10328         marshalled as [In,Out]. Fixes #58325.
10329
10330 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10331
10332         * reflection.c (mono_method_body_get_object): Implement some fields.
10333
10334 2004-10-12  Martin Baulig  <martin@ximian.com>
10335
10336         * reflection.c (mono_reflection_bind_generic_parameters): Small
10337         fix, correctly retrieve our parent from a generic instance.
10338
10339 2004-10-12  Martin Baulig  <martin@ximian.com>
10340
10341         * metadata.c (mono_metadata_generic_param_equal): We always have
10342         an owner.
10343
10344         * class.c
10345         (mono_class_from_generic_parameter): We need to have an owner.
10346         (my_mono_class_from_generic_parameter): Likewise.
10347
10348         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10349         mono_reflection_create_generic_class() and added a new
10350         mono_reflection_setup_generic_class().  
10351         (mono_reflection_initialize_generic_param): If we're a nested
10352         generic type and inherited from the containing class, set our
10353         owner to the outer class.
10354
10355 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10356
10357         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10358
10359         * reflection.c (mono_method_body_get_object): New function to create
10360         a MethodBody object.
10361
10362         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10363
10364 2004-10-11  Martin Baulig  <martin@ximian.com>
10365
10366         * metadata.c (_mono_metadata_type_equal): Renamed to
10367         do_mono_metadata_type_equal() and made static.
10368
10369 2004-10-11  Martin Baulig  <martin@ximian.com>
10370
10371         * appdomain.c: Bump corlib version number to 28.
10372
10373 2004-10-10  Martin Baulig  <martin@ximian.com>
10374
10375         * class-internals.h
10376         (MonoGenericInst): Added `MonoGenericContainer *container'.
10377         (MonoGenericMethod): Likewise.
10378         (MonoGenericContext): Likewise.
10379         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10380
10381         * metadata.c
10382         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10383         (do_mono_metadata_parse_generic_inst): Likewise.
10384         (mono_metadata_parse_type_full): New public method.  This is the actual
10385         mono_metadata_parse_type() implementation - with an additional
10386         `MonoGenericContainer *' argument.
10387         (mono_metadata_parse_array_full): Likewise.
10388         (mono_metadata_parse_signature_full): Likewise.
10389         (mono_metadata_parse_method_signature_full): Likewise.
10390         (mono_metadata_parse_mh_full): Likewise.
10391         (mono_type_create_from_typespec): Likewise.
10392         (mono_metadata_interfaces_from_typedef_full): New public method;
10393         this is similar to the other _full() methods, but we take a
10394         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10395         (mono_metadata_parse_generic_param): Take an additional
10396         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10397         from that container.
10398         (mono_metadata_generic_param_equal): New static method to compare
10399         two type parameters.
10400         (_mono_metadata_type_equal): New static method; takes an
10401         additional `gboolean signature_only' argument - if true, we don't
10402         compare the owners of generic parameters.
10403         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10404         with a TRUE argument - do a signature-only comparision.
10405
10406         * loader.c: Use the new _full() methods and pass the
10407         MonoGenericContainer to them.
10408
10409         * object-internals.h (MonoReflectionTypeBuilder): Added
10410         `MonoGenericContainer *generic_container' field.
10411         (MonoReflectionMethodBuilder): Likewise.
10412
10413 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10414
10415         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10416         case initial images of dynamic assemblies.
10417
10418         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10419
10420         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10421
10422         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10423         length of event->other array.
10424         (typebuilder_setup_events): Ditto.
10425
10426         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10427         'assembly_by_name' and add an 'assemblies' list.
10428
10429         * assembly.h assembly.c: Add a new search hook for determining whenever
10430         an assembly is already loaded. Use this instead of searching in the
10431         loaded_assemblies list.
10432
10433         * domain.c appdomain.c: Implement the new search hook so loaded 
10434         assemblies are now scoped by appdomain. Fixes #67727.
10435
10436 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10437
10438         * threads.c (mono_thread_attach): Initialize synch_lock field so
10439         mono_thread_detach works again.
10440
10441         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10442         'lib' too. Fixes #63130.
10443
10444 2004-10-06  Jackson Harper  <jackson@ximian.com>
10445
10446         * culture-info-tables.h: regenerated.
10447
10448 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10449
10450         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10451         implemented by other interfaces in the result. Fixes #65764.
10452         
10453         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10454         Handle unloadable modules without crashing.
10455
10456         * image.c (load_modules): Revert the previous patch since modules must
10457         have a fixed index inside the array.
10458         
10459         * image.c (load_modules): Don't include native modules in the modules
10460         array.
10461
10462 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10463
10464         * reflection.h: Add param_defaults field.
10465
10466         * reflection.c: Add support for parameter defaults in dynamic methods.
10467         Fixes #64595.
10468
10469         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10470         an empty string when a type has no namespace. Fixes #64230.
10471
10472 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10473
10474         * tabledefs.h: Added "internal" security actions to support non-CAS
10475         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10476         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10477
10478 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10479
10480         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10481         constructor of abstract class. Fixes #61689.
10482
10483 2004-10-04  Martin Baulig  <martin@ximian.com>
10484
10485         * class-internals.h (MonoGenericContainer): New type.
10486         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10487         `MonoGenericContainer *generic_container'.
10488         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10489         `MonoGenericContainer *generic_container'.
10490
10491         * metadata.c (mono_metadata_load_generic_params): Return a
10492         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10493         removed the `num' argument.
10494
10495 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10496
10497         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10498         for dynamic images.
10499
10500         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10501         machine fields.
10502
10503         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10504
10505         * reflection.c: Save pe_kind and machine values into the generated
10506         image file.
10507
10508         * appdomain.c: Bump corlib version number.
10509
10510         * object-internals.h: Reorganize layout of LocalBuilder.
10511
10512         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10513         New helper function.
10514
10515         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10516         created MonoType for dynamic types. Fixes #66180.
10517
10518 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10519
10520         * threadpool.c: the ares hashtable needs a critical section around it.
10521         this prevents some nasty segfaults
10522
10523 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10524
10525         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10526         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10527         bug 67324).
10528         
10529 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10530
10531         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10532         
10533 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10534
10535         * image.c: Always canonicalize image file names, to avoid loading
10536         the same assembly twice when referenced using a relative path.
10537
10538 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10539
10540         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10541
10542         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10543
10544         * marshal.c: Fix warnings.
10545
10546 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10547
10548         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10549         attempting to marshal the delegate_trampoline as the method_addr.
10550         This patch has a static hashtable of marshalled delegates so that 
10551         we can map delegate_trampoline addresses back to delegates.  This
10552         allows a delegate passed to managed code to be passed back into native
10553         code.  Fixes #67039
10554
10555 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10556
10557         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10558
10559         * reflection.c (method_encode_code): Align method headers properly.
10560         Fixes #66025.
10561
10562 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10563
10564         * marshal.c: In the runtime invoke wrapper, reset the abort
10565         exception if it is cached. This avoids the automatic rethrowal of 
10566         the exception after the catch of the wrapper. Also check for pending
10567         interruptions before calling the managed method. This is done using
10568         the new method emit_thread_force_interrupt_checkpoint, since the
10569         normal checkpoint method is ignored when running the invoke wrapper.
10570         * object.c: If the abort exception is rethrown, set the abort_exc
10571         field of the thread, so it will be rethrown aftere every catch.
10572         * threadpool.c: Only run an interruption checkpoint if what has been
10573         requested is a stop of the thread (aborts will be ignored).
10574         * threads.c: By default, a thread will now never be interrumped while
10575         running the runtime invoke wrapper (this ensures that runtime_invoke
10576         will always return to the caller if an exception pointer is provided).
10577         There is a new special method mono_thread_force_interruption_checkpoint()
10578         to force an interruption checkpoint even if running a protected
10579         wrapper, which is used by the same runtime invoke wrapper to do a check
10580         at a safe point.
10581
10582 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10583
10584         * object.c, object-internals.h: Implemented mono_release_type_locks,
10585         which releases the cctor locks held by a thread.
10586         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10587         by a thread. Added mono_thread_exit() method to be used to safely stop
10588         a thread.
10589
10590 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10591
10592         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10593         Move null check before dereference.  Avoid indexing beyond the end
10594         of the 'modules' array.
10595
10596 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10597
10598         * metadata-internals.h (MonoImage): Add module_count field.
10599         * image.c (load_modules): Set image->module_count.
10600         (mono_image_load_file_for_image): Use image->module_count.
10601         * reflection.c (mono_image_load_module): Append to image->modules array 
10602         of dynamic assembly.
10603         (mono_module_get_object): Fix loop to actually increment index.
10604         Use image->module_count.
10605         * assembly.c (mono_assembly_load_references): Use image->module_count.
10606         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10607         Likewise.
10608
10609 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10610
10611         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10612         Avoid assert on generic types.
10613
10614 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10615
10616         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10617
10618         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10619
10620         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10621         function to convert a MarshalSpec structure to its managed counterpart.
10622
10623         * reflection.c: Fix warnings.
10624         
10625         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10626         field.
10627
10628         * icall.c (mono_create_icall_signature): Fix build.
10629
10630 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10631
10632         * icall.c: Add MakePointType icall.
10633
10634         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10635         warnings.
10636
10637 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10638
10639         * threadpool.c: reuse allocated slots in the queue.
10640
10641 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10642
10643         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10644
10645         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10646
10647         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10648         previous change.
10649
10650         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10651         ThrowOnUnmappableChar.
10652
10653         * icall.c (ves_icall_Type_GetPacking): New icall.
10654
10655 2004-09-24  Martin Baulig  <martin@ximian.com>
10656
10657         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10658
10659 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10660
10661         * appdomain.c:
10662         (mono_domain_set): allow setting a domain that is being unloaded.
10663         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10664         being unloaded.
10665
10666 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10667
10668         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10669         the GetCustomAttributes icall.
10670
10671 2004-09-23  Martin Baulig  <martin@ximian.com>
10672
10673         * object-internals.h (MonoReflectionGenericParam): Replaced
10674         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10675         with `guint32 attrs'.
10676
10677 2004-09-23  Martin Baulig  <martin@ximian.com>
10678
10679         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10680
10681 2004-09-23  Martin Baulig  <martin@ximian.com>
10682
10683         * object-internals.h (GenericParameterAttributes): New enum.
10684
10685 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10686
10687         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10688         
10689         * class.c (init_events): Fill out event->other field.
10690
10691         * class.c: Fix warnings.
10692
10693         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10694
10695 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10696
10697         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10698         walk which doesn't supply the IL offset.
10699
10700 2004-09-22  Martin Baulig  <martin@ximian.com>
10701
10702         * reflection.c (mono_reflection_setup_internal_class): If we're
10703         System.ValueType, System.Object or System.Enum, set
10704         `klass->instance_size' and create the vtable.
10705         (mono_reflection_create_internal_class): If we're an enum type,
10706         get the base class from our current corlib.
10707
10708 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10709
10710         * reflection.h (MonoResolveTokenError): New type.
10711
10712         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10713         icall.
10714
10715         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10716
10717 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10718
10719         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10720         Support also calling constructors, but only for already allocated objects.
10721
10722 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10723
10724         * reflection.c (type_get_qualified_name): If the klass is null
10725         return the typename to avoid a NullRefEx.
10726         (encode_cattr_value): Get the qualified name of the boxed type,
10727         not the underlying enumtype.  Fixes #62984.
10728
10729 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10730
10731         * marshal.c: Fix problems with previous checkin.
10732
10733 2004-09-21    <vargaz@freemail.hu>
10734
10735         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10736         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10737
10738         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10739
10740 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10741
10742         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10743         should only return a type for pointers, arrays, and passbyref types.
10744         Fixes bug #63841.
10745
10746 2004-09-21  Martin Baulig  <martin@ximian.com>
10747
10748         * domain.c (mono_debugger_check_runtime_version): New public
10749         function.
10750
10751         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10752
10753 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10754
10755         * reflection.c: Added missing sort to the declarative security 
10756         attributes table. MS implementation stops seeing the attributes if the
10757         token number regress in the table (as shown by ildasm and permview).
10758
10759 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10760
10761         * object-internals.h (MonoReflectionModule): Add 'token' field.
10762         
10763         * reflection.c (mono_reflection_get_token): Add support for Module
10764         and Assembly.
10765         (mono_module_get_object): Set 'token' field.
10766         (mono_module_file_get_object): Set 'token' field.
10767
10768         * icall.c: Add new Assembly and Module icalls.
10769
10770         * appdomain.c: Bump corlib version.
10771
10772 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10773
10774         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10775         tokens of metadata objects.
10776
10777         * reflection.h reflection.c (mono_reflection_get_token): New function
10778         to obtain the token of a metadata object.
10779
10780         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10781
10782 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10783
10784         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10785         
10786         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10787
10788 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10789
10790         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10791         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10792         AssemblyBuilder to access the permissions set in the class lib.
10793         * reflection.c: Added security attributes encoding step in 
10794         mono_image_build_metadata.
10795         * tabledefs.h: Added new security actions defined in 2.0:
10796         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10797
10798 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10799
10800         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10801         macro parameter.
10802
10803 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10804  
10805         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10806           finalized. There where random SIGSEVs at program termination, when
10807           an object being finalized was trying to do a string comparison and
10808           the current culture was already finalized.
10809  
10810 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10811
10812         * threads.c: call thread_cleanup before finishing the thread if we get
10813         there.
10814
10815 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10816
10817         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10818         assemblies from the parent. Fixes #65665.
10819
10820 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10821
10822         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10823         modifiers.
10824
10825 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10826
10827         * reflection.h: add prototype for mono_get_dbnull_object
10828         * reflection.c: add prototypes for get_default_param_value_blobs 
10829         and mono_get_object_from_blob for fussier compilers
10830
10831 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10832  
10833         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10834         false deadlock checks in class initialization.
10835  
10836 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10837
10838         * image.c (mono_image_addref): Fix comment.
10839
10840         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10841         possible.
10842
10843 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10844
10845         * reflection.c (mono_param_get_objects): Modified to return
10846         ParameterInfo.DefaultValue object.
10847
10848         (get_default_param_value_blobs):
10849         (mono_get_object_from_blob):
10850         (mono_get_dbnull_object): New helper routines. 
10851
10852         * object.c (mono_get_constant_value_from_blob): New helper routine
10853         carved out from get_default_field_value ()
10854
10855         * object-internals.h (mono_get_constant_value_from_blob): Added
10856         function declaration.
10857
10858 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10859
10860         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10861         referenced assemblies. Fixes #62135.
10862
10863         * exception.h exception.c (mono_get_exception_file_not_found2): New
10864         helper function.
10865
10866 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10867
10868         * class.h class.c: Add mono_type_get_underlying_type ().
10869
10870 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10871
10872         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10873         Fix GetTypes() to support dynamically created assemblies.
10874
10875 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10876
10877         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10878         
10879         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10880         previous patch.
10881
10882         * reflection.h reflection.c loader.c: Allow dynamic construction of
10883         pinvoke methods. Fixes #65571.
10884         
10885         * reflection.c (mono_reflection_get_type): Revert previous change since
10886         it causes regressions.
10887
10888 2004-09-08  Martin Baulig  <martin@ximian.com>
10889
10890         * class.c (class_compute_field_layout): Don't call
10891         mono_class_layout_fields() for open generic instances.
10892
10893 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10894         * threads.c appdomain.c: fix typo in GC macro
10895
10896 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10897
10898         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10899         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10900
10901 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
10902
10903         * image.c (mono_image_close): Applied patch from 
10904         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
10905         assembly is loaded multiple times from data.
10906         
10907         * image.c (mono_image_open): Fix warning.
10908
10909 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10910
10911         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
10912         once. Fixes #58334.
10913         
10914         * reflection.c (mono_reflection_create_runtime_class): Initialize
10915         klass->nested_classes. Fixes #61224.
10916
10917 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10918
10919         * threads.c: sched_yield() on exit, to allow threads to quit.
10920
10921 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10922
10923         * object.c (mono_unhandled_exception): Remove leftover debug code.
10924
10925 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
10926
10927         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
10928
10929 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10930
10931         * marshal.c (emit_marshal_array): Really null terminate string arrays.
10932         
10933         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
10934
10935 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10936
10937         * marshal.c (emit_marshal_array): Null terminate string arrays.
10938         
10939         * marshal.c (raise_auto_layout_exception): Fix warning.
10940
10941         * reflection.c (mono_param_get_objects): Initialize the default value
10942         with DBNull.Value, not null. Fixes #62123.
10943
10944 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
10945
10946         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
10947         throw an exception with a cute explanation.
10948
10949 2004-09-06  Dick Porter  <dick@ximian.com>
10950
10951         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
10952         Close the new process's thread handle, as we don't use it.  The
10953         handle stays around forever otherwise.
10954
10955 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10956
10957         * object.c (arith_overflow): Fix warning.
10958
10959         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
10960         calling conventions in method refs. Fixes #65352.
10961
10962         * reflection.c: Fix warnings.
10963
10964 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10965
10966         * icall.c: Add a new icall for Array.Clear
10967
10968 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10969
10970         * object.c: When allocating an array, we have to throw
10971         an overflow exception if any of the lengths are < 0.
10972
10973 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10974
10975         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10976         properly. Also move implementation of string array marshalling to 
10977         managed code. Fixes #42316.
10978
10979 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10980
10981         * assembly.c: provide more information when loading an assembly fails.
10982
10983 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10984
10985         * filewatcher.c: don't expect the development fam package to be
10986         installed.
10987
10988 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10989
10990         * marshal.c: Make a copy of the signature cookie since it will be
10991         freed by the caller.
10992         
10993         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10994
10995         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10996
10997         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10998         marshal specs.
10999
11000         * marshal.c: More refactoring.
11001         
11002         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11003         smaller functions.
11004
11005 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11006
11007         * object.c: In mono_message_invoke, fill the output parameter array after
11008           calling the managed method (it was done before the call). This fixes
11009           bug #59299.
11010
11011 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11012
11013         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11014         as well.
11015
11016 2004-09-02  Martin Baulig  <martin@ximian.com>
11017
11018         * class.c (mono_class_instance_size): Don't allow generic type
11019         definitions or open generic instances.
11020         (mono_class_array_element_size): If we're a value type, call
11021         mono_class_instance_size() on the original class.
11022
11023         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11024         handle generic instances.
11025
11026         * mono-debug-debugger.c (write_type): Handle generic instances
11027         like classes.
11028
11029 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11030
11031         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11032         the allocation request fails. Fixes #65089.
11033
11034         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11035         
11036         * object.c (mono_runtime_free_method): New function to free a dynamic
11037         method.
11038
11039         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11040         delegate trampoline.
11041
11042         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11043         with hasthis as dynamic,
11044
11045         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11046
11047         * domain.c (mono_jit_info_table_remove): New function to remove an
11048         entry from the jit info table.
11049
11050         * class-internals.h (MonoMethod): Add 'dynamic' field.
11051
11052         * loader.c: Fix warnings.
11053
11054 2004-09-01  Martin Baulig  <martin@ximian.com>
11055
11056         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11057         instead of mono_debugger_lock() because the latter one is a no-op
11058         unless running in the debugger.
11059
11060 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11061
11062         * class.c (class_compute_field_layout): Classes with auto-layout or
11063         reference fields are not blittable.
11064         
11065 2004-09-01  Dick Porter  <dick@ximian.com>
11066
11067         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11068         mono_image_get_filename() to get the assembly location.
11069
11070         * icall.c:
11071         * metadata.h: Fix compile warnings
11072
11073 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11074
11075         * class.c (class_compute_field_layout): System.Object is blittable.
11076
11077         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11078         as in/out. Fixes #59909.
11079
11080 2004-09-01  Martin Baulig  <martin@ximian.com>
11081
11082         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11083         mono_metadata_generic_inst_is_valuetype() if we're a generic
11084         instance to check whether our underlying type is a reference type.
11085
11086 2004-09-01  Martin Baulig  <martin@ximian.com>
11087
11088         * metadata.c (mono_type_size): If we're a generic instance, call
11089         mono_class_value_size() for value types.
11090
11091 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11092
11093         * marshal.c: Implement more custom marshalling functionality. Fixes
11094         #64915.
11095
11096 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11097
11098         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11099
11100 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11101
11102         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11103
11104         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11105
11106         * icall.c: Fix some warnings.
11107
11108         * threads.c (abort_appdomain_thread): Fix unref errors.
11109         (mono_thread_current): Fix THREAD_DEBUG define.
11110
11111 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11112
11113         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11114
11115         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11116
11117 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11118
11119         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11120         string arrays.
11121
11122 2004-08-28  Martin Baulig  <martin@ximian.com>
11123
11124         * metadata.c
11125         (mono_metadata_generic_inst_is_valuetype): New public function.
11126
11127         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11128         mono_metadata_generic_inst_is_valuetype() if we're a generic
11129         instance to check whether our underlying type is a valuetype.
11130
11131 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11132
11133         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11134         #63768.
11135
11136 2004-08-25  Martin Baulig  <martin@ximian.com>
11137
11138         * loader.c (mono_get_method_from_token): Abstract methods can also
11139         be generic and thus have type parameters.
11140
11141         * metadata-internals.h
11142         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11143
11144         * reflection.c (mono_image_get_generic_param_info): Don't create a
11145         metadata row, just add an entry to the `gen_params' array.
11146         (build_compressed_metadata): Sort the `gen_params' array and then
11147         actually create the metadata.
11148
11149 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11150
11151         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11152
11153 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11154
11155         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11156
11157 2004-08-24  Martin Baulig  <martin@ximian.com>
11158
11159         * class.cs (mono_class_is_subclass_of): Like an interface, a
11160         generic instance also derives from System.Object.
11161
11162 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11163
11164         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11165         custom modifiers to be in any order. Fixes #61990.
11166
11167 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11168
11169         * object.c: Register mono_object_new_fast icall.
11170         
11171         * object.c (mono_class_get_allocation_ftn): Return to calling
11172         mono_object_new_fast, since it seems faster to compute the object 
11173         size in unmanaged code than passing it as a parameter.
11174
11175         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11176
11177         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11178         this function with Boehm as the oom handler, so we don't have to check
11179         the result of GC_malloc.
11180
11181         * object.c: Remove checks for oom.
11182
11183         * object.h object.c (mono_class_get_allocation_ftn): New function to
11184         return the icall which can be used to allocate an instance of a given
11185         class. 
11186
11187         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11188
11189         * class-internals.h: Add 'enabled' field.
11190
11191 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11192
11193         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11194
11195 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11196         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11197         value 0x0010.
11198
11199 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11200
11201         * appdomain.c: use the Tls function for appdomain too,
11202         at Zoltan's request. Actually return in mono_context_get
11203
11204         * appdomain.c, profiler.c, threads.c: use __thread
11205
11206 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11207
11208         * appdomain.c threads.c: Call GC_CreateThread on windows.
11209
11210         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11211         multiple libraries since this don't work on windows.
11212
11213 2004-08-18  Martin Baulig  <martin@ximian.com>
11214
11215         * class-internals.h
11216         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11217         MonoMethodHeader.
11218
11219         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11220         MonoMethodNormal since we also need it for abstract and interface
11221         methods.
11222
11223         * reflection.c
11224         (build_compressed_metadata): Sort the GenericParam table.
11225         (mono_image_create_token): Added `gboolean create_methodspec'
11226         argument; this is false when generating a MethodImpl token.
11227         (reflection_methodbuilder_to_mono_method): Abstract and interface
11228         methods may also have generic parameters.
11229
11230 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11231
11232         * appdomain.c: thread local alloc
11233
11234 2004-08-17  Martin Baulig  <martin@ximian.com>
11235
11236         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11237
11238         * icall.c
11239         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11240         argument.
11241
11242         * class.c (mono_type_get_full_name): New public function.
11243         (mono_type_get_name): Don't include the type arguments.
11244
11245 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11246
11247         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11248         for inclusion into the mono executable.
11249
11250 2004-08-16  Martin Baulig  <martin@ximian.com>
11251
11252         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11253         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11254
11255 2004-08-14  Martin Baulig  <martin@ximian.com>
11256
11257         * class.c (dup_type): Also copy the `byref' field.
11258
11259 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11260
11261         * reflection.c (create_dynamic_mono_image): Revert the last change 
11262         since it breaks bootstrap.
11263
11264 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11265
11266         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11267
11268         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11269         not free them with g_free.
11270
11271 2004-08-11  Martin Baulig  <martin@ximian.com>
11272
11273         * reflection.c (mono_reflection_setup_internal_class): Also call
11274         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11275
11276 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11277
11278         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11279         called during default (first) AppDomain creation. Keep track of
11280         Evidence when loading assemblies.
11281
11282 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11283
11284         * opcodes.c, opcodes.h: reduce runtime relocations.
11285
11286 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11287
11288         * culture-info.h, locales.c: fixes and chages to sue the new
11289         optimized format of the locale data.
11290         * culture-info-tables.h: regenerated.
11291
11292 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11293         
11294         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11295
11296 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11297
11298         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11299         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11300         * domain-internals.h: icall declaration.
11301         * icall.c: icall registration.
11302         * object-internals.h: New fields in MonoAssembly for CAS.
11303
11304 2004-08-05  Duncan Mak  <duncan@ximian.com>
11305
11306         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11307         CEE_LDELEM_ANY.
11308
11309 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11310
11311         * reflection.c: fix to deal with object[] arrays in custom ctors
11312         (bug #62550).
11313
11314 2004-08-05  Martin Baulig  <martin@ximian.com>
11315
11316         * class.c (mono_class_array_element_size): Added support for
11317         generic instances and correctly handle "recursive" types.
11318
11319 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11320
11321         * assembly.c: Fix warnings.
11322
11323 2004-08-04  Martin Baulig  <martin@ximian.com>
11324
11325         * class.c
11326         (mono_type_get_name_recurse): Added `gboolean include_arity'
11327         argument specifying whether or not we should include the generic
11328         arity in the type name.
11329         (_mono_type_get_name): New static function.
11330         (mono_class_setup_vtable): If we're a generic instance, don't
11331         include the generic arity in the names of explicit method
11332         implementations.        
11333
11334 2004-08-03  Martin Baulig  <martin@ximian.com>
11335
11336         * class.c (mono_type_get_name_recurse): Enclose the generic type
11337         arguments in `<', '>'.
11338
11339 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11340
11341         * gc.c: make GC warning messages use the trace API, they are just
11342         noise to most of the users.
11343
11344 2004-08-03  Martin Baulig  <martin@ximian.com>
11345
11346         * debug-mono-symfile.c (read_string): Correctly read the string.
11347
11348 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11349
11350         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11351         
11352         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11353         icalls.
11354         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11355
11356 2004-07-30  Martin Baulig  <martin@ximian.com>
11357
11358         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11359         Reflect latest symbol writer changes.   
11360
11361 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11362
11363         * object.c: always create an object if null is passed
11364         to Invoke() where a valuetype is expected.
11365
11366 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11367
11368         * marshal.c (mono_marshal_init): make managed
11369         signatures match native ones better for 64bits.
11370
11371 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11372
11373         * appdomain.c: hack to build correctly the private bin path on windows.
11374         Fixes bug #61991.
11375
11376 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11377
11378         * assembly.c: Load mscorlib from the correct framework directory
11379           (mono/<version>/mscorlib.dll).
11380         * appdomain.h: Added prototypes for new functions.
11381         * internals.h: Added some prototypes.
11382         * domain.c: When initializing the runtime, get from the executable and
11383           the configuration files the runtime version that the app supports.
11384           Added support methods for reading app.exe.config. Added list of versions
11385           supported by the JIT. Added two new methods: mono_init_from_assembly,
11386           which initializes the runtime and determines the required version from
11387           the provided exe file, and mono_init_version, which initializes
11388           the runtime using the provided version.
11389         * icall.c: Get machine.config from version-specific directory.
11390         * reflection.c: When generating an image, embed the version number
11391           of the current runtime.
11392
11393 2004-07-28  Dick Porter  <dick@ximian.com>
11394
11395         * socket-io.c
11396         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11397         returned sockaddr size before creating the remote address object.
11398         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11399         61608.
11400
11401 2004-07-28  Dick Porter  <dick@ximian.com>
11402
11403         * locales.c (string_invariant_compare_char): Fix invariant char
11404         compares between upper and lower cases.  Fixes bug 61458.
11405
11406 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11407         
11408         * marshal.c: actually cache stelem.ref wrappers.
11409         
11410 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11411
11412         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11413         sections and remove the mono_cli_rva_map () function.
11414
11415 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11416
11417         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11418         by Geoff Norton (<gnorton@customerdna.com>).
11419
11420 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11421
11422         * class.c: fix class loads for pointer types (typeof(int) !=
11423         typeof(int*)).
11424
11425 2004-07-27  Martin Baulig  <martin@ximian.com>
11426
11427         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11428         reading the debugging information from an external ".mdb" file.
11429
11430 2004-07-24  Martin Baulig  <martin@ximian.com>
11431
11432         * reflection.c (mono_image_get_type_info): Only write a class
11433         layout entry if we actually have a size or a packing size.
11434
11435 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11436
11437         * reflection.c (type_get_fully_qualified_name): 
11438         insert cast to get type checking of ?: with non-gcc compilers
11439
11440 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11441
11442         * rand.c: use g_getenv for both lookups of
11443         MONO_EGD_SOCKET
11444
11445 2004-07-17  Martin Baulig  <martin@ximian.com>
11446
11447         * reflection.c (mono_reflection_bind_generic_method_parameters):
11448         Set `gmethod->reflection_info'.
11449
11450 2004-07-17  Martin Baulig  <martin@ximian.com>
11451
11452         * class.c (mono_class_create_from_typedef): Insert the newly
11453         created class into the hash table before computing the interfaces
11454         since we could be called recursively.
11455
11456 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11457
11458         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11459         function to implement stelem.ref in managed code
11460         * class-internals.h, debug-helpers.c: a new wrapper type
11461         for the above.
11462
11463 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11464
11465         * gc.c: allow GC handles to work even when no GC is compiled in.
11466         Fix part of bug #61134 (GetAddrOfPinnedObject).
11467
11468 2004-07-13  Peter Williams  <peter@newton.cx>
11469  
11470         * process.c (complete_path): Make sure we don't attempt to execute
11471         directories.
11472  
11473 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11474
11475         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11476           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11477           and will add/subtract the hour if needed
11478
11479 2004-07-12  Martin Baulig  <martin@ximian.com>
11480
11481         * reflection.c (mono_field_get_object): If we have
11482         `field->generic_info', take the attributes from
11483         `field->generic_info->generic_type'.    
11484
11485 2004-07-12  Martin Baulig  <martin@ximian.com>
11486
11487         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11488         This function must be called before initializing the runtime.
11489         (mono_debug_init_1): New function; call this after initializing
11490         the runtime, but before loading the assembly.  It tells the
11491         debugger to load corlib and the builtin types.
11492
11493         * mono-debug-debugger.c: Did some larger changes in the debugging
11494         code; support recursive class declarations, make sure we actually
11495         add all classes.
11496
11497 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11498
11499         * debug-helpers.c: undo my previous patch and fixed the real issue in
11500         ../mini/exceptions-x86.c
11501
11502 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11503
11504         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11505         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11506         called from other .cctors.
11507
11508 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11509
11510         * loader.c: Removed the mono_loader_wine_init hack now that we are
11511         doing a managed version of Windows.Forms.
11512
11513 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11514
11515         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11516         threadpool.c, threads.c: remove static data from rootset.
11517
11518 2004-07-09  Dick Porter  <dick@ximian.com>
11519
11520         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11521         Don't do any more processing if the matched length was 0.  It was
11522         increasing the size of the string before.  Fixes bug 61167.
11523
11524 2004-07-09  Dick Porter  <dick@ximian.com>
11525
11526         * socket-io.h:
11527         * socket-io.c
11528         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11529         Add support for SO_PEERCRED if its available.
11530
11531 2004-07-09  Peter Bartok <pbartok@novell.com>
11532         * loader.c: winelib.exe.so error message is now only displayed if
11533         MONO_DEBUG is set. To help us avoid questions when people are trying
11534         out the new Managed.Windows.Forms.
11535
11536 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11537
11538         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11539         for isinst and castclass wrappers.
11540
11541         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11542         to libmetadata from the JIT, so they could be used by the marshalling
11543         code and the interpreter.
11544
11545         * marshal.c: Register marshalling related JIT icalls here instead of
11546         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11547         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11548
11549         * metadata.h: Remove unneeded marshalling conversions.
11550
11551         * opcodes.c: Update for new opcodes.
11552         
11553 2004-07-08  Martin Baulig  <martin@ximian.com>
11554
11555         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11556         (mono_debug_get_domain_data): Make this function static.
11557
11558 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11559
11560         * gc.c, object.h: add nice GC handle API for embedders.
11561
11562 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11563
11564         * reflection.c: more changes for the new api
11565
11566         * object.c: When we reflect on a field w/ a constant value, it
11567         will not have a memory location, so we must access metadata. Also,
11568         allow easier reading of strings so that we can read them from
11569         the constant data.
11570
11571         * class.c (mono_class_layout_fields): no need for literal fields here.
11572
11573         * class-internals.h: api changes for const fields
11574
11575         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11576
11577 2004-07-06  Martin Baulig  <martin@ximian.com>
11578
11579         * mono-debug.h: Increment version number to 44.
11580
11581         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11582         now a gpointer, rewrote this whole method.
11583
11584         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11585         function.  Add information about the wrapper in a new "misc table".
11586
11587         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11588         for the new misc table.
11589
11590 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11591
11592         * metadata-internals.h image.c: Add a cache for helper signatures.
11593
11594         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11595
11596 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11597
11598         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11599         delegates from a delegate. Fixes #61033.
11600         
11601         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11602         marshalling of stringbuilder arrays. Fixes #59900.
11603
11604 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11605
11606         * icall.c: Add EnumBuilder:setup_enum_type icall.
11607
11608 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11609
11610         * icall.c: Added a new icall for the property version of
11611         OffsetOfStringData.
11612
11613 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11614
11615         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11616         it has a constant size across platforms.
11617
11618         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11619         stack trace.
11620
11621 2004-06-29  Martin Baulig  <martin@ximian.com>
11622
11623         * mono-debug.c (mono_debug_add_method): Protect the whole function
11624         in mono_debugger_lock(), not just parts of it.
11625
11626 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11627
11628         * reflection.c: make sure padding bytes in heaps are zeroed.
11629
11630 2004-06-24  David Waite  <mass@akuma.org>
11631
11632         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11633         image.c, loader.c, locales.c, marshal.c, metadata.c,
11634         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11635         string-icalls.c, threads.c: change to C90-style comments from C99 /
11636         C++ -style
11637
11638 2004-06-24  Dick Porter  <dick@ximian.com>
11639
11640         * threads.c
11641         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11642         return createdNew.  Fixes bug 60412.
11643
11644         * threads-types.h: 
11645         * icall.c: Add createdNew parameter to CreateMutex icall
11646
11647 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11648
11649         * reflection.c, object-internals.h: save default value in params.
11650
11651 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11652
11653         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11654         no need to build a new path combining that with the application base.
11655         Fixes bug #60442.
11656
11657 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11658
11659         * reflection.c: fixed minor standard compliance issues.
11660
11661 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11662
11663         * reflection.c: fixed issue with encoding some custom attributes
11664         (arrays in properties and fields, bug #60411).
11665
11666 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11667
11668         * reflection.c: fix start address when copying the public key token.
11669
11670 2004-06-23  Martin Baulig  <martin@ximian.com>
11671
11672         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11673         the `exc' object in a static object to put it into the GC's root set.
11674
11675 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11676
11677         * reflection.c: make mono_reflection_setup_internal_class ()
11678         callable a second time to setup a new parent class.
11679
11680 2004-06-23  Dick Porter  <dick@ximian.com>
11681
11682         * threads.c: Check for WAIT_IO_COMPLETION return values.
11683
11684 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11685
11686         * appdomain.c: Removed the g_free on the public key token. Now copy 
11687         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11688         * assembly.c: Added public key token string value when loading 
11689         assemblies. Fix bug #60439.
11690         * icall.c: Added missing informations (like public key) in 
11691         GetReferencedAssemblies. Fix #60519.
11692         * image.h: Changed definition for public key token from const char*
11693         public_tok_value to guchar public_key_token [17];
11694         * reflection.c: Updated for changes to public key token.
11695
11696 2004-06-22  Lluis Sanchez Gual
11697
11698         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11699         for the field in base classes.
11700
11701 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11702
11703         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11704         mark headers as not supported, they are installed only for use by the
11705         debugger.
11706
11707 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11708
11709         * *.c, *.h: avoid namespace pollution in public headers.
11710
11711 2004-06-21  Martin Baulig  <martin@ximian.com>
11712
11713         * exception.c (mono_get_exception_security): It's in
11714         "System.Security", not in "System".
11715
11716         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11717         the exception classes.
11718
11719 2004-06-21  Martin Baulig  <martin@ximian.com>
11720
11721         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11722         Protect the exception object from being finalized.
11723
11724 2004-06-21  Martin Baulig  <martin@ximian.com>
11725
11726         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11727         public function.
11728
11729 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11730
11731         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11732         if it was not loaded before. Fix parts of #60439.
11733
11734 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11735
11736         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11737         code that was broken since Ben's change: wrappers are now
11738         dependent on the method signature only again.
11739
11740 2004-06-21  Martin Baulig  <martin@ximian.com>
11741
11742         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11743         added interface support.
11744
11745 2004-06-21  Martin Baulig  <martin@ximian.com>
11746
11747         * class.c (mono_vtable_get_static_field_data): New public method.
11748
11749 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11750
11751         * filewatcher.c : Windows build fix to be compliant with API changes.
11752
11753 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11754
11755         * class.h, class.c: more accessors.
11756         * metadata.h, metadata.c: prepare for hiding MonoType and
11757         MonoMethodSignature: people should use the accessors from now on
11758         outside of the tree.
11759
11760 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11761
11762         * *.c, *.h: more API cleanups.
11763
11764 2004-06-18  Jackson Harper  <jackson@ximian.com>
11765
11766         * assembly.c: Trace loading assemblies.
11767         * loader.c: Trace loading native libraries.
11768         * mono-config.c: Trace loading config files.
11769         
11770 2004-06-18  Dick Porter  <dick@ximian.com>
11771
11772         * locales.c: Tell ICU the lengths of strings, it can cope with
11773         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11774
11775 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11776
11777         * image.c: swapped name/filename;
11778
11779 2004-06-18  Martin Baulig  <martin@ximian.com>
11780
11781         * mono-debug-debugger.c (write_class): Write the parent class at
11782         the end of the header.
11783
11784 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11785
11786         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11787
11788 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11789
11790         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11791         (bundle_obj): New conditional define.
11792         (BUILT_SOURCES): Remove.
11793         ($(bundle_srcs)): Make parallel-make safe.
11794         (libmonoruntime_la_LIBADD): Make unconditional.
11795         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11796         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11797
11798 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11799
11800         * culture-info-tables.h: It was inconsistent with the latest
11801           supp info files.
11802
11803 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11804
11805         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11806         be loaded.
11807
11808         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11809         with gcc 2.95.
11810
11811 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11812
11813         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11814         cleaned up public header threads.h.
11815
11816 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11817
11818         * Makefile.am, *.c, *.h: more API cleanups.
11819
11820 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11821
11822         * Makefile.am: removed monosn from compilation.
11823         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11824         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11825         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11826         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11827         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11828         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11829
11830 2004-06-15  Jackson Harper  <jackson@ximian.com>
11831
11832         * assembly.c: Make locales lower case when searching the GAC for
11833         assemblies. gacutil will always make locales lowercase when
11834         installing so this effectively makes them case insensitive.
11835         
11836 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11837
11838         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11839         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11840           parameter which allows to choose whether the wait can be interrupted or 
11841           not. Also added the method mono_monitor_enter(), which locks the monitor
11842           using an infinite wait and without allowing interruption.
11843           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11844           interrupted.
11845         * object.h: Added new fields in MonoThread. suspend_event holds the event
11846           used to susped/resume the thread. synch_lock is the lock object to use for
11847           modifying the thread state.
11848         * threads.c: Use the new synch_lock object for locking, instead of "this",
11849           which can generate deadlocks.
11850           Moved thread state change in Thread.Sleep and Thread.Join from managed
11851           to unmanaged code. This avoids a deadlock when the thread was suspended
11852           just after acquiring the thread lock.
11853           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11854           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11855           which is not fully implemented in the io-layer.
11856         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11857
11858 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11859
11860         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11861         threads-types.h: more API cleanups.
11862
11863 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11864
11865         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11866         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11867         threadpool.c, threads.c: first pass at the exported API cleanup.
11868
11869 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11870
11871         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11872
11873 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11874
11875         * icall.c: added internalGetHome.
11876
11877 2004-06-14  Dick Porter  <dick@ximian.com>
11878
11879         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11880         possible to return successfully when '.' or '..' were the only
11881         entries in a directory, but were skipped.  The MonoIOStat was not
11882         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11883         Fixes bug 59574.
11884
11885 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11886
11887         * reflection.c: make binaries run on .Net 1.1 by default.
11888
11889 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11890
11891         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11892
11893 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11894
11895         * marshal.c: keep track of struct size with explicit layout
11896         (bug #59979).
11897
11898 2004-06-12  Martin Baulig  <martin@ximian.com>
11899
11900         * mono-debug-debugger.c: Comment out a debugging g_message().
11901
11902 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11903
11904         * reflection.c, reflection.h: do not free custom attrs that are cached.
11905         * icall.c: use braces to make code clearer.
11906
11907 2004-06-11  Martin Baulig  <martin@ximian.com>
11908
11909         * class.h (MonoInflatedField): New type.
11910         (MonoClassField): Replaced `MonoType *generic_type' with
11911         `MonoInflatedField *generic_info'.
11912
11913         * icall.c
11914         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
11915
11916 2004-06-11  Martin Baulig  <martin@ximian.com>
11917
11918         * reflection.c (mono_image_create_method_token): Correctly encode
11919         varargs methods.
11920
11921 2004-06-11  Martin Baulig  <martin@ximian.com>
11922
11923         * metadata.c (mono_metadata_parse_method_signature): When parsing
11924         a MethodDef which has VarArgs, also set sentinelpos if we don't
11925         have any parameters.
11926
11927 2004-06-11  Martin Baulig  <martin@ximian.com>
11928
11929         * verify.c (mono_method_verify): In CEE_CALL, use
11930         mono_method_get_signature() to get the method's signature, unless
11931         we're a PInvoke method.
11932
11933 2004-06-10  Jackson Harper  <jackson@ximian.com>
11934
11935         * assembly.c: Use <path>/lib/mono/gac for the extra paths
11936         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
11937         logical name as the supplied path is just a prefix to the gac not
11938         the direct path to it.
11939         
11940 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
11941
11942         * reflection.c: make the token for a created method match
11943         the token of the MethodBuilder it was created from
11944         (IKVM requires this behaviour now).
11945
11946 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
11947
11948         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
11949         reflection.c, socket-io.c: leak fixes.
11950
11951 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
11952
11953         * icall.c: handle sentinel pos in vararg methods in position different
11954         from 0.
11955
11956 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11957
11958         * culture-info-tables.h: freshly generated.
11959
11960 2004-06-09  Martin Baulig  <martin@ximian.com>
11961
11962         * loader.c (mono_get_method_constrained): Call `mono_class_init
11963         (constrained_class)'.   
11964
11965 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
11966
11967         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
11968         any methods. Fixes #59629.
11969
11970 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11971
11972         * culture-info-tables.h: reflecting locale-builder updates.
11973
11974 2004-06-08  Dick Porter  <dick@ximian.com>
11975
11976         * object.h:
11977         * locales.c: Fixed compile warnings, including a real bug in
11978         CompareInfo_internal_compare.
11979         
11980 2004-06-08  Dick Porter  <dick@ximian.com>
11981
11982         * locales.c
11983         (ves_icall_System_Globalization_CompareInfo_internal_index):
11984         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11985         Double-check the resuls of usearches, because ICU currently
11986         ignores most of the collator settings here.  Fixes bug 59720.
11987         
11988 2004-06-08  Dick Porter  <dick@ximian.com>
11989
11990         * locales.c
11991         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11992         Fix memory leak and segfault-causing typo.  No idea how this one
11993         lasted so long without being noticed.
11994
11995 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11996
11997         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11998         any methods. Fixes #59629.
11999
12000 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12001
12002         * assembly.c:
12003         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12004         own the critical section before). Removed dead code (that's done
12005         in the preload hook).
12006
12007         (mono_assembly_load_with_partial_name): call the preload hook.
12008
12009 2004-06-08  Martin Baulig  <martin@ximian.com>
12010
12011         * metadata.c (mono_metadata_signature_alloc): Default
12012         `sentinelpos' to -1.
12013
12014         * reflection.c (mono_image_get_array_token): Likewise.
12015
12016 2004-06-08  Martin Baulig  <martin@ximian.com>
12017
12018         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12019
12020         * metadata.c (mono_metadata_parse_method_signature): When parsing
12021         a MethodDef which has VarArgs, set sentinelpos.
12022
12023         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12024         `gint16' since we're using -1 for non-varargs methods.
12025
12026         * reflection.c
12027         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12028         (method_encode_signature): Added varargs support.
12029         (method_builder_encode_signature): Likewise.
12030         (mono_image_get_varargs_method_token): New static method.
12031         (mono_image_create_method_token): New public method; this is
12032         called via an icall instead of mono_image_create_token() when
12033         calling a varargs method.       
12034
12035 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12036
12037         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12038
12039 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12040
12041         * culture-info-tables.h : Reflecting the latest locale-builder that
12042           fixed empty array representation ({} to {0}).
12043
12044 2004-06-07  Jackson Harper  <jackson@ximian.com>
12045
12046         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12047         looking up extra gac paths. This allows MONO_GAC_PATH to act
12048         exactly like a prefix.
12049         
12050 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12051
12052         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12053         type name before modifying it. Fixes #59405.
12054
12055 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12056
12057         * culture-info.h: added fields for "all datetime patterns".
12058         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12059           _construct_datetime_format ()): fill xxx_patterns fields.
12060         * object.h: added fields for "all datetime patterns" to
12061           MonoDateTimeFormatInfo.
12062         * culture-info-tables.h: reflecting locale-builder updates.
12063
12064 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12065
12066         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12067         the event has no add and remove methods. Fixes #59629.
12068
12069 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12070
12071         * object.c: Fixed possible integer overflow when allocating large
12072         strings.
12073
12074 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12075
12076         * culture-info-tables.h: reflecting locale-builder updates.
12077
12078 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12079
12080         * culture-info-tables.h: reflecting locale-builder updates.
12081
12082 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12083
12084         * culture-info-tables.h: reflecting locale-builder updates.
12085
12086 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12087
12088         * threads.c: Made Thread.Sleep abortable.
12089
12090 2004-06-02  Martin Baulig  <martin@ximian.com>
12091
12092         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12093
12094         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12095
12096 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12097
12098         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12099
12100 2004-05-30  Jackson Harper  <jackson@ximian.com>
12101
12102         * reflection.c: Do not hardcode assembly versions or public key
12103         tokens anymore. All of this except the corlib section was dead
12104         code anyways.
12105         
12106 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12107
12108         * object.c (mono_runtime_invoke_array): Automatically create boxed
12109         objects for byref valuetypes if needed. Fixes #59300.
12110         
12111         * object.c (mono_method_return_message_restore): Handle 
12112         MONO_TYPE_OBJECT as well.
12113
12114 2004-05-28  Jackson Harper  <jackson@ximian.com>
12115
12116         * reflection.c: The modified type encoding was causing build
12117         problems. Reverted for now.
12118         
12119 2004-05-28  Jackson Harper  <jackson@ximian.com>
12120
12121         * reflection.c/h: Take an assembly ref so that we dont create
12122         fully qualified names when encoding types in the same assembly as
12123         the custom attribute being emitted.
12124         * appdomain.c: Increment version number.
12125         
12126 2004-05-26  Duncan Mak  <duncan@ximian.com>
12127
12128         * icall.c
12129         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12130         Set the full version number (major, minor, build, revision).
12131
12132 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12133
12134         * marshal.c (emit_struct_conv): increment src/dst after blit
12135         (mono_marshal_get_managed_wrapper,
12136         mono_marshal_get_native_wrapper): make sure we have marshalling
12137         info before marshalling params (info computation affects
12138         blittable)
12139
12140         * class.c (class_compute_field_layout): correctly deal with
12141         blittable
12142         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12143         value types (as per what windows dows by default)
12144         (mono_class_setup_mono_type): System.ValueType is blittable
12145         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12146         blittable
12147
12148         * marshal.c (mono_marshal_load_type_info): flag types  as
12149         non-blittable if the native layout doesn't match the managed
12150         layout
12151
12152 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12153
12154         * appdomain.c: don't add stuff in the private search path that is
12155         above the application base. If application base is not set, there's
12156         no private search path.
12157
12158 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12159
12160         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12161         byref struct arguments in native->managed marshalling.
12162
12163 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12164
12165         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12166         cache methods using signature (special case for methods
12167         that are value type or string class)
12168         
12169         * image.c (mono_image_close): clean up allocated GSList's
12170         in runtime_invoke_cache.
12171
12172 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12173
12174         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12175         there's no MONO_CFG_DIR environment variable defined.
12176
12177 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12178
12179         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12180
12181 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12182
12183         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12184           is interrumped.
12185         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12186           before waiting for it, and call CloseHandle after the wait to unref it.
12187           This will make sure that handles are not disposed too early.
12188
12189 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12190
12191         * appdomain.c:
12192         * appdomain.h:
12193         * icall.c: removed
12194         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12195         needed now.
12196
12197         * object.c: se the application_base only for the domain that runs
12198         Main. Fixes bug #59216,
12199
12200 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12201
12202         * appdomain.c:
12203         * object.c: only the domain in which Main is run have
12204         SetupInformation.ConfigurationFile set, so moved a few lines from
12205         appdomain.c to object.c.
12206
12207 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12208
12209         * appdomain.c: we tried to load [name].(dll|exe), but according
12210         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12211         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12212         There's a test case attached to bug #58922.
12213
12214 2004-05-27  Dick Porter  <dick@ximian.com>
12215
12216         * icall.c:
12217         * file-io.c: Implemented icalls for locking and unlocking regions
12218         in a file.
12219         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12220         FALSE on error (fixes both compiler warning and real bug.)
12221
12222 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12223
12224         * culture-info-tables.h: reflecting locale-builder updates.
12225
12226           (Added missing ChangeLog entry for 05/26)
12227
12228 2004-05-27  Jackson Harper  <jackson@ximian.com>
12229
12230         * locales.c: Fix some cut and paste errors.
12231         
12232 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12233
12234         * mono-config.c: set the correct path for config. directory on windows.
12235
12236 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12237
12238         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12239           on win32.
12240
12241 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12242
12243         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12244         from pinvoke functions.
12245         
12246         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12247
12248 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12249
12250         * culture-info-tables.h: reflecting locale-builder updates.
12251
12252 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12253
12254         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12255         #59086.
12256
12257 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12258
12259         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12260         * icall.c: Modified icalls for RNG.
12261         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12262         Windows (CryptoAPI).
12263
12264 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12265
12266         * locales.c: Fix build.
12267
12268 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12269
12270         * culture-info-tables.h: reflecting locale-builder updates.
12271
12272 2004-05-25  Jackson Harper  <jackson@ximian.com>
12273
12274         * locales.c: When creating the current culture use the $LANGs
12275         specific culture. So DateTimeFormat and NumberFormat entries are created.
12276         
12277 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12278
12279         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12280         a char array as parameter.
12281
12282 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12283
12284         * image.c: In mono_image_open(), always use an absolute path name to
12285           look for already loaded images.
12286
12287 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12288
12289         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12290         missing in the windows build (like older cygwin include files).
12291
12292 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12293
12294         * icall.c: Fixed check for possible integer overflow in Buffer_
12295         BlockCopy icall. Replaced comments style // by /* */.
12296
12297 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12298
12299         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12300         
12301         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12302         check after MONO_VTADDR. Fixes pinvoke2.exe.
12303
12304         * marshal.h marshal.c metadata.h: Add beginnings of support for
12305         ftnptr -> delegate marshalling.
12306
12307 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12308
12309         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12310         * threads.c: Fix warnings.
12311
12312 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12313
12314         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12315         * icall.c: Registered icalls for Suspend and Resume.
12316         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12317           Thread.Abort.
12318         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12319         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12320         * process.c: Use WaitForSingleObjectEx.
12321         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12322           checkpoints.
12323         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12324           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12325           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12326           background threads. Added basic support for Abort in Windows.
12327           Start new threads using a managed delegate invoke wrapper. This wrapper
12328           has an interruption checkpoint that is needed since an interruption
12329           can be requested before the thread leaves the unmanaged code that starts 
12330           the thread.
12331         * marshal.c: Added interruption checkpoint after every native call, and
12332           also before managed calls for wrappers called from unmanaged code to
12333           go into managed code.
12334         * object.h: Added new field in MonoThread to keep track of interruption
12335           requests.
12336
12337 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12338
12339         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12340         calls.
12341
12342 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12343
12344         * appdomain.c:
12345         * assembly.c:
12346         * gc.c:
12347         * locales.c:
12348         * mono-config.c:
12349         * rand.c: getenv -> g_getenv (windows!)
12350
12351         * process.c: complete_path is also used on non-windows platforms.
12352
12353 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12354
12355         * icall.c: new signature for Process_Start.
12356
12357         * process.[ch]: new signature for Process_Start. If we're on windows
12358         and UseShellExecute is false, we have to search for the program by
12359         ourselves if we don't get a full path.
12360
12361 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12362
12363         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12364         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12365
12366 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12367
12368         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12369         Fixes bug #58373.
12370
12371 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12372
12373         * process.c: use double quotes to quote program name and arguments on
12374         windows. Fixes bug #58575.
12375
12376 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12377
12378         * file-io.c: don't return "." and ".." when using windows Find*File.
12379
12380 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12381
12382         * marshal.c: Don't pass wrappers to message init because method 
12383         addressed used to lookup metadata. part of remoting[2|3] fix.
12384
12385 2004-05-15  Jackson Harper  <jackson@ximian.com>
12386
12387         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12388         path is essentially the same as MONO_PATH except that it points to
12389         GACs instead of lib directories.
12390         * loader.h: The user gac is gone so we dont need function to
12391         enable/disable it.
12392         * mono-config.c: user gac option is now gone.
12393         
12394 2004-05-15  Jackson Harper  <jackson@ximian.com>
12395
12396         * culture-info.h: Make defines more consistent, add calendar data
12397         to the culture info table.
12398         * culture-info-tables.h: Add basic calendar data. Basically
12399         everyone gets default gregorian until all the data is
12400         updated.
12401         * locales.c: Use the new consistent defines. Set calendar data for
12402         culture info objects.
12403         * object.h: add a field for calendar data to CultureInfo
12404         
12405 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12406
12407         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12408         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12409         a signature.
12410         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12411         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12412         an extra param that is the pointer of the method to invoke. The IL for
12413         the invoke method is no longer specific to the method, but to the
12414         signature of the method. Thus, we can share the same code for multiple
12415         methods. This reduces the number of methods that have to be compiled.
12416
12417 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12418
12419         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12420
12421         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12422
12423         * icall.c: Optimize Buffer.BlockCopy.
12424
12425 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12426
12427         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12428         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12429         quote). Changed them to "MMMM yyyy".
12430
12431 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12432
12433         * rand.c
12434         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12435
12436 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12437
12438         * reflection.h: Updated after changes to managed structures.
12439
12440         * appdomain.c: Bump corlib version.
12441
12442 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12443
12444         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12445         windows.
12446
12447 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12448
12449         * Makefile.am: link to ../os/libmonoos.la on windows.
12450
12451         * assembly.c:
12452                 -If MONO_DEBUG, warn about non-existing directories in
12453                 MONO_PATH.
12454                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12455                 compile time variable.
12456                 -Removed init_default_path and call mono_set_rootdir from
12457                 libmonoos.a instead (windows only).
12458
12459         * assembly.h: declare mono_assembly_getrootdir().
12460
12461         * domain.c:
12462         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12463
12464         * loader.c: s/getenv/g_getenv/
12465
12466 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12467
12468         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12469
12470         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12471
12472         * metadata.h: Add new marshalling conversions.
12473
12474         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12475         function.
12476
12477         * reflection.c (mono_reflection_get_type): Lookup the type in all
12478         modules of a multi-module assembly. Fixes #58291.
12479
12480 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12481
12482         * threads.c: Before aborting a background, set the StopRequested
12483         state.  This avoids throwing the Abort exception.
12484         In mono_thread_manage, don't continue with the shutdown until all
12485         aborted threads have actually stopped.
12486
12487 2004-05-10  Jackson Harper  <jackson@ximian.com>
12488
12489         * locales.c: Remove the modifier from culture names.
12490         
12491 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12492
12493         * Makefile.am: monosn is not installed any more. It has been deprecated
12494         in favor of sn.
12495
12496 2004-05-07  Jackson Harper  <jackson@ximian.com>
12497
12498         * locales.c
12499         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12500         Fix array construction, add bailout if the length is 0.
12501
12502 2004-05-07  Dick Porter  <dick@ximian.com>
12503
12504         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12505         machine doesn't have a DNS entry.  Patch by Urs Muff
12506         (umuff@quark.com), fixes bug 57928.
12507
12508 2004-05-06  Jackson Harper  <jackson@ximian.com>
12509
12510         * reflection.c: Handle null PublicTokens properly. alloc mem for
12511         assembly names culture so we dont crash when freeing it.
12512         
12513 2004-05-06  Jackson Harper  <jackson@ximian.com>
12514
12515         * assembly.c: Check the usergac when loading with partial names.
12516         
12517 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12518
12519         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12520         does nothing for now (not required for Linux/Windows) but the class
12521         library can call it (and a newer or modified runtime could need it).
12522         * icall.c: Registred icall.
12523
12524 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12525
12526         * loader.c: prints a message on module loading error we set MONO_DEBUG
12527         environment variable.
12528
12529 2004-05-05  Jackson Harper  <jackson@ximian.com>
12530
12531         * appdomain.c: Handle PublicKeyToken=null properly.
12532         
12533 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12534
12535         * environment.c|h: Added icall ves_icall_System_Environment_
12536         GetOSVersionString to get the current OS version as a string.
12537         * icall.c: Registred icall.
12538
12539 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12540
12541         * object.c: in mono_object_get_virtual_method(), take into account that
12542         non-virtual methods don't have a slot in the vtable. Check needed when
12543         the object is a proxy.
12544
12545 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12546
12547         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12548         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12549
12550         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12551
12552         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12553         passed when a valuetype is expected.
12554
12555         * object.c (mono_unhandled_exception): Only set the exit code if the
12556         exception happens in the main thread. Fixes thread5.exe.
12557
12558         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12559         invalid names. Fixes #58047.
12560
12561 2004-05-03  Jackson Harper  <jackson@ximian.com>
12562
12563         * assembly.c: This line was committed accidently and is unneeded.
12564         
12565 2004-05-03  Jackson Harper  <jackson@ximian.com>
12566
12567         * icall.c: Add new icall for Assembly::LoadWithPartialName
12568         * assembly.c/.h: new function that probes the GAC to load partial
12569         assembly names by Paolo Molaro.
12570         
12571 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12572
12573         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12574         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12575         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12576         full type name.
12577
12578 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12579
12580         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12581         * reflection.c: fix bug when parsing a full type name and Version is not
12582         the last thing in the string.
12583
12584 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12585
12586         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12587         crashes when it is freed.
12588
12589 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12590
12591         * assembly.c: print the compat warning to stderr.
12592
12593 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12594
12595         * assembly.c (mono_assembly_load_references): Add a compatibility
12596         hack to run old applications that might be still referencing the
12597         3300-based assemblies, only do this for System.xxx.
12598
12599 2004-05-01  Jackson Harper  <jackson@ximian.com>
12600
12601         * appdomain.c: If the culture is neutral we set it to "".
12602         
12603 2004-04-29  Jackson Harper  <jackson@ximian.com>
12604
12605         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12606
12607 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12608  
12609         * string-icalls.c: added low overhead function for copying chars
12610         * icall.c: added needed icall for the above function
12611  
12612 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12613
12614         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12615         Environment.GetLogicalDrives.
12616
12617 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12618
12619         * rand.c: try and talk to egd or prngd
12620         for random bytes if opening devices fail.
12621
12622 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12623
12624         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12625         alignment for the type using the native alignment of its members 
12626         instead of using klass->min_align.
12627
12628         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12629
12630 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12631
12632         * file-io.c:
12633         * socket-io.c: added check for sys/aio.h.
12634
12635 2004-04-28  Dick Porter  <dick@ximian.com>
12636
12637         * threads.c: Don't abort a thread thats already aborting, when
12638         terminating everything.
12639
12640 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12641
12642         * icall.c: added 2 new async calls for Socket.
12643
12644         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12645         IO on *nix systems.
12646
12647         * threadpool.c: removed unused variable.
12648
12649 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12650
12651         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12652
12653 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12654
12655         * locales.c: put back string_invariant_tolower () and
12656         string_invariant_toupper ().
12657
12658 2004-04-26 David Waite <mass@akuma.org>
12659
12660         * file-io.h:
12661         * socket-io.h:
12662         * threads.h:
12663         * unicode.h: remove comma from end of enumeration declarations
12664
12665 2004-04-26 David Waite <mass@akuma.org>
12666
12667         * debug-mono-symfile.h:
12668         * decimal.c:
12669         * mono_debug.h:
12670         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12671
12672
12673 2004-04-26  Jackson Harper  <jackson@ximian.com>
12674
12675         * appdomain.c: Increment version number.
12676         
12677 2004-04-26  Jackson Harper  <jackson@ximian.com>
12678
12679         * appdomain.c: Set assembly references public token value when
12680         PublicKeyToken is specified, not the hash_value. Free public token
12681         values when free assembly name data. Previously the public key
12682         token was hex decoded, however we are using hex encoded public key
12683         tokens, so this is not neccasary.
12684         * assembly.c: Lookup assemblies in the gac if their public token
12685         value is set. Add function to allow enabling user gac
12686         lookups. Specify whether or not the assembly was loaded from the
12687         GAC. Compare full assembly names when checking the cache for
12688         assemblies (Temporarily disabled see comment in code). Remove
12689         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12690         specifies trace-loader they get extra info to stdout on the
12691         loading of assemblies.
12692         * image.h: Add a field for an assembly references public token
12693         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12694         whether an assembly has been loaded from the GAC.
12695         * image.c: Remove a corlib -> mscorlib name mapping.
12696         * loader.h: Add function to enable/disable the user gac.
12697         * mono-config.c: Check if the usergac is enabled in the config
12698         file.
12699         * icall.c: New icall to determine whether or not an assembly has
12700         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12701         * tabldefs.h: Add constant for assemblyref flag that specifies a
12702         full public key is used instead of a public token.
12703         * reflection.c: Remove mscorlib -> corlib mappings. Set
12704         PublicTokenValue instead of hash value. This value is a hex
12705         string so it does not need to be expanded.
12706
12707 2004-04-26  Martin Baulig  <martin@ximian.com>
12708
12709         * mono-debug-debugger.c (mono_debugger_initialize): Set
12710         `mono_debugger_initialized' before calling mono_debug_lock().
12711
12712 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12713
12714         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12715           InternalToUpper/InternalToLower.
12716         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12717           removed invariant culture shortcut.  This is now done in managed code.
12718         * locales.c: (string_invariant_toupper/tolower) removed.
12719
12720 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12721
12722         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12723         Added Poll internal call.
12724
12725         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12726         call for Poll. Select was too heavy for polling a single socket.
12727
12728         * threadpool.[ch]: added mono_threadpool_cleanup.
12729         * threads.c: use it. Don't use Thread_Abort on windows.
12730
12731 2004-04-23  Martin Baulig  <martin@ximian.com>
12732
12733         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12734
12735 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12736
12737         * icall.c: Registred new icalls for key pair protection and added an
12738         icall for Environment.GetFolderPath on Windows.
12739         * security.c|h: Added new icalls for key pair protection.
12740
12741 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12742
12743         * socket-io.c: don't display the non-supported family warning for known
12744         families. Now this is not displayed on windows when checking support
12745         for IPv4/IPv6.
12746
12747 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12748
12749         * class.c: don't display the layout warning for static fields.
12750
12751 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12752
12753         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12754         * locales.c, locales.h: Added new icalls for culture-specific
12755         Char.ToLower and Char.ToUpper.
12756
12757 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12758
12759         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12760         by David Waite.
12761
12762 2004-04-20  Martin Baulig  <martin@ximian.com>
12763
12764         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12765         of the type name before passing it to mono_reflection_type_from_name().
12766
12767 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12768
12769         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12770         encodings here. Fixes #56965.
12771
12772 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12773
12774         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12775         fix test on strstr result not that I can see anything that
12776         relies on the result.
12777
12778 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12779
12780         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12781         Fixes #57081.
12782
12783         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12784
12785         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12786         function to determine which marshalling to use for strings. Fixes
12787         #56965.
12788
12789         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12790
12791         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12792
12793 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12794
12795         * icall.c: #include mono-config.h
12796
12797 2004-04-15  Jackson Harper  <jackson@ximian.com>
12798
12799         * culture-info-tables.h: Fix date formats for en-US culture.
12800         
12801 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12802
12803         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12804         ThreadPool.SetMinThreads.
12805         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12806         ThreadPool.SetMinThreads.
12807
12808 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12809
12810         * mono-config.c: also load the .config file in the directory
12811         where the assembly was found.
12812
12813 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12814
12815         * assembly.c: load per-assembly config files.
12816         * icall.c: decrapified code to get the config dir and moved to
12817         mono-config.c.
12818         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12819         per-assembly config files. When doing a dll map lookup give precedence
12820         to the per-assembly data.
12821
12822 2004-04-14  Martin Baulig  <martin@ximian.com>
12823
12824         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12825         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12826         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12827
12828         * mono-debugger-debugger.c: While the debugger is locked, remember
12829         whether the symbol tables have changes and send one single
12830         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12831
12832 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12833
12834         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12835
12836         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12837         function.
12838
12839         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12840         account when marshalling string arrays. Fixes #56965.
12841
12842 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12843
12844         * icall.c: Add new icalls mapping for security.
12845         * security.c|h: Add internal calls for WindowsIdentity,
12846         WindowsImpersonationContext and WindowsPrincipal.
12847
12848 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12849
12850         * class.c: Added comment to ensure the System.MonoDummy class
12851         is removed when no longer necessary
12852
12853 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12854
12855         * appdomain.c: Pass arguments to the bootstraping exceptions to
12856         minimize JITed methods at boot
12857
12858         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12859         second string to be null.
12860
12861         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12862         Change the protocol to minimize the JIT methods at startup.  Now
12863         it Returns the internal codepage, if the value of "int_code_page"
12864         is 1 at entry, and we can not compute a suitable code page
12865         number, returns the code page as a string.
12866
12867 2004-04-13  Jackson Harper  <jackson@ximian.com>
12868
12869         * culture-info-tables.h: Fix number of decimal digits for all
12870         english locales.
12871
12872 2004-04-13  Jackson Harper  <jackson@ximian.com>
12873
12874         * icall.c: Clairfy out of sync error message. It is not always
12875         your corlib that is out of sync.
12876
12877 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12878
12879         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12880         properties when only the set accessor is overriden. Fixes #55874.
12881
12882 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12883
12884         * assembly.c (mono_assembly_load_references): Make this thread safe.
12885         Fixes #56327.
12886
12887 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12888
12889         * monosn.c: Add missing initialization calls.
12890
12891 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12892
12893         * locales.c:
12894         ves_icall_System_Globalization_CultureInfo_construct_number_format
12895         Fix g_assert so it compiles on fussier compilers re int/ptr
12896         mismatch
12897
12898 2004-04-08  Dick Porter  <dick@ximian.com>
12899
12900         * socket-io.h:
12901         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
12902         53992.  Also rearrange the code so that the internal calls return
12903         an error value and exceptions are thrown from managed code.
12904
12905         * icall.c: Add type info to the socket icalls.
12906
12907 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12908
12909         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
12910         owes me a beer.
12911
12912 2004-04-07  Martin Baulig  <martin@ximian.com>
12913
12914         * class.c (mono_class_from_generic_parameter): Don't default
12915         `klass->parent' to `mono_defaults.object_type'.
12916
12917 2004-04-07  Martin Baulig  <martin@ximian.com>
12918
12919         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12920         `param->pklass->reflection_info'.       
12921
12922 2004-04-07  Jackson Harper  <jackson@ximian.com>
12923
12924         * culture-info-tables.h: Fix date separator symbol.
12925         
12926 2004-04-07  Martin Baulig  <martin@ximian.com>
12927
12928         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
12929         from System.Type to System.MonoType.
12930
12931 2004-04-07  Martin Baulig  <martin@ximian.com>
12932
12933         * reflection.h
12934         (MonoReflectionGenericParam): Added `has_reference_type' and
12935         `has_value_type' fields.
12936
12937         * reflection.c (mono_image_get_generic_param_info): Encode the
12938         correct flags if we have the `class' or `struct' constraint.
12939
12940 2004-04-07  Martin Baulig  <martin@ximian.com>
12941
12942         * reflection.h
12943         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
12944
12945 2004-04-07  Jackson Harper  <jackson@ximian.com>
12946
12947         * appdomain.c: Revert extra patches, just wanted to bump the
12948         version number.
12949         
12950 2004-04-07  Jackson Harper  <jackson@ximian.com>
12951
12952         * Makefile.am: Add culture-info private headers.
12953         * icall.c: Add new icalls for contructing locales.
12954         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
12955         * locales.h: Declare new culture info construction methods.
12956         * object.h: Add new fields used to avoid the CultureMap to
12957         MonoCultureInfo.
12958         * culture-info.h: Definition of structs used in the culture info
12959         tables.
12960         * culture-info-tables.h: Autogenerated tables that contain culture
12961         info data. This file was generated with the locale-builder tool.
12962         * appdomain.c: Incement corlib version number.
12963         
12964 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
12965
12966         * appdomain.c: (mono_runtime_init) move mono_thread_init
12967         to before mono_object_new calls so critical sections
12968         are initialized before use.
12969
12970 2004-04-07  Martin Baulig  <martin@ximian.com>
12971
12972         * icall.c
12973         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12974         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12975         (ves_icall_MonoGenericParam_initialize): Removed.
12976         (monogenericparam_icalls): Removed.
12977         (generictypeparambuilder_icalls): Added new table for
12978         System.Reflection.Emit.GenericTypeParameterBuilder.
12979
12980         * reflection.c
12981         (mono_reflection_define_generic_parameter): Removed.
12982         (mono_reflection_initialize_generic_parameter): This is now called
12983         from GenericTypeParameterBuilder's .ctor.
12984
12985 2004-04-06  Martin Baulig  <martin@ximian.com>
12986
12987         * class.c (mono_class_init): Don't inflate nested classes in a
12988         generic instance.
12989         (mono_type_get_name_recurse): Include the generic arguments for
12990         generic instances and generic type declarations.
12991         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12992         (_mono_class_get_instantiation_name): Removed.
12993         (mono_class_create_generic): Always use `gklass->name' as our name.
12994
12995         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12996
12997         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12998         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12999         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13000         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13001         closed generic methods here.
13002
13003         * reflection.c
13004         (mono_reflection_generic_inst_get_nested_types): Removed.
13005         (inflate_mono_method): Copy the generic parameters from the
13006         MonoMethodHeader into out MonoGenericMethod.
13007
13008 2004-04-06  Martin Baulig  <martin@ximian.com>
13009
13010         * row-indexes.h
13011         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13012
13013         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13014
13015         * reflection.c (build_compressed_metadata): If we have any entries
13016         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13017         set the header version to 1.1.
13018
13019 2004-04-06  Martin Baulig  <martin@ximian.com>
13020
13021         * class.c (mono_class_init): If we're a generic instance,
13022         initialize our nested classes, too.
13023         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13024         suffix. 
13025
13026 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13027
13028         * process.c: quote the argument passed to the shell on windows.
13029
13030 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13031
13032         * threads.c (mono_alloc_special_static_data): Allow this to be
13033         called during startup.
13034
13035 2004-04-02  Martin Baulig  <martin@ximian.com>
13036
13037         * icall.c
13038         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13039
13040 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13041
13042         * icall.c: Fix build.
13043
13044 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13045
13046         * Makefile.am: Added security.c|h.
13047         * icall.c: Added icall for get_UserName;
13048         * security.c: New file for security related icalls. Added function
13049         get_UserName for System.Environment (fix #56144).
13050         * security.h: New. Header file for security.c
13051
13052 2004-04-02  Dick Porter  <dick@ximian.com>
13053
13054         * icall.c: Deleted the icalls that were obsoleted some time ago
13055         by the ICU string code, and which were mixed into the icall
13056         rearranging.  Fixes bug 55969.
13057
13058         * string-icalls.h: 
13059         * string-icalls.c: Deleted the code that those icalls reference.
13060
13061 2004-04-01  Martin Baulig  <martin@ximian.com>
13062
13063         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13064
13065         * class.c (mono_class_from_generic_parameter): Don't set 
13066         TYPE_ATTRIBUTE_INTERFACE.
13067         (my_mono_class_from_generic_parameter): Likewise.
13068
13069 2004-04-01  Martin Baulig  <martin@ximian.com>
13070
13071         * loader.c (find_method): Added an optional `MonoClass *ic'
13072         argument to search in a specific interface.
13073         (mono_get_method_constrained): New public function.
13074
13075 2004-04-01  Martin Baulig  <martin@ximian.com>
13076
13077         * reflection.c (mono_image_get_generic_field_token): Use the
13078         `handleref' cache here.
13079
13080 2004-04-01  Martin Baulig  <martin@ximian.com>
13081
13082         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13083
13084         * reflection.c (create_generic_typespec): Use the `typespec' hash
13085         here, not the `typeref' one.    
13086
13087 2004-04-01  Martin Baulig  <martin@ximian.com>
13088
13089         * class.c (mono_class_inflate_generic_type): Moved the
13090         functionality into a new static inflate_generic_type() which
13091         returns NULL if it didn't do anything.  Only increment the
13092         `mono_stats.inflated_type_count' if we actually inflated
13093         something.
13094         (mono_class_get_full): Check the classes type to see whether we
13095         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13096
13097 2004-04-01  Jackson Harper  <jackson@ximian.com>
13098
13099         * reflection.c: Set culture for assembly references.
13100         
13101 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13102
13103         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13104
13105 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13106
13107         * assembly.c:
13108         (do_mono_assembly_open): the critical section also covers
13109         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13110
13111 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13112
13113         * threads.c:
13114         (mono_manage_threads): abort the background threads when finishing.
13115         Fixes bug #47232.
13116
13117 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13118
13119         * gc.c: only close the done_event handle if there was no timeout.
13120         C-ified comments.
13121
13122 2004-03-30  Martin Baulig  <martin@ximian.com>
13123
13124         * icall.c (icall_entries): It's called "System.Activator", not
13125         "System.Activation".    
13126
13127 2004-03-30  Martin Baulig  <martin@ximian.com>
13128
13129         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13130         (mono_class_create_from_typespec): Likewise.
13131
13132 2004-03-30  Martin Baulig  <martin@ximian.com>
13133
13134         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13135         `has_ctor_constraint' and `initialized'.
13136
13137 2004-03-30  Martin Baulig  <martin@ximian.com>
13138
13139         * reflection.c (encode_new_constraint): New static function to add
13140         the constructor constraint attribute to a type parameter.
13141         (encode_constraints): Call encode_new_constraint() if necessary.
13142
13143         * reflection.h
13144         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13145
13146         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13147         
13148 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13149
13150         * reflection.c, icall.c: add support for pinning variables. 
13151
13152 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13153
13154         * marshal.c (mono_marshal_get_managed_wrapper):
13155         init bool local with zero rather than null.
13156
13157 2004-03-29  Martin Baulig  <martin@ximian.com>
13158
13159         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13160         the "official" behavior here.
13161         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13162
13163 2004-03-29  Martin Baulig  <martin@ximian.com>
13164
13165         * icall.c: Reflect latest API changes.
13166
13167 2004-03-29  Martin Baulig  <martin@ximian.com>
13168
13169         * loader.c (mono_get_method_from_token): Also call
13170         mono_metadata_load_generic_params () for abstract and interface
13171         methods; replace the type arguments in the method signature with
13172         the ones which are loaded from the metadata.
13173
13174 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13175
13176         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13177         of the lock is not the current thread. MS.NET don't do it, in spite of
13178         what the documentation says. See bug #56157.
13179
13180 2004-03-28  Martin Baulig  <martin@ximian.com>
13181
13182         * class.c (mono_class_init): Don't call init_properties() and
13183         init_events() for generic instances; set `prop->parent' when
13184         inflating properties.
13185
13186         * reflection.c (mono_generic_inst_get_object): Call
13187         `mono_class_init (ginst->klass)'.
13188         (mono_type_get_object): Only create a MonoGenericInst if your
13189         generic type is a TypeBuilder.
13190         (do_mono_reflection_bind_generic_parameters): Only set
13191         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13192
13193 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13194
13195         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13196         Fixes #56091.
13197
13198 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13199
13200         * icall.c: added Kill_internal icall.
13201         * process.[ch]: added Kill_internal icall.
13202
13203 2004-03-25  Martin Baulig  <martin@ximian.com>
13204
13205         * class.h (MonoStats): Added `generic_instance_count',
13206         `inflated_method_count', `inflated_type_count' and
13207         `generics_metadata_size'.       
13208
13209 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13210
13211         * reflection.c: no warnings now.
13212
13213 2004-03-25  Martin Baulig  <martin@ximian.com>
13214
13215         * class.c (mono_class_get_full): New public function; does a
13216         mono_class_get(), but also takes a `MonoGenericContext *'.
13217
13218         * loader.c (mono_field_from_memberref): Renamed to
13219         `field_from_memberref', made static and added `MonoGenericContext *'
13220         argument.
13221         (mono_field_from_token): Added `MonoGenericInst *' argument.
13222         (method_from_memberef): Likewise.
13223         (mono_get_method_from_token): Likewise.
13224         (mono_get_method_full): New public function; does a
13225         mono_get_method(), but also takes a `MonoGenericContext *'.
13226
13227         * verify.c (mono_method_verify): Get the method's generic context
13228         and pass it to mono_field_from_token(), mono_get_method_full() and
13229         mono_class_get_full().
13230
13231 2004-03-25  Martin Baulig  <martin@ximian.com>
13232
13233         * class.c (mono_class_inflate_generic_type): Take a
13234         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13235         `MonoGenericMethod *'.
13236
13237 2004-03-25  Martin Baulig  <martin@ximian.com>
13238
13239         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13240         instead of the MonoGenericMethod here.
13241
13242 2004-03-25  Martin Baulig  <martin@ximian.com>
13243
13244         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13245         each time we create a new MonoGenericInst, we also create a new
13246         context which points back to us.
13247
13248         * class.c (inflate_method): Use `ginst->context' instead of
13249         creating a new context.
13250
13251         * loader.c (method_from_memberref): Use
13252         `klass->generic_inst->context' instead of creating a new context.
13253
13254 2004-03-25  Martin Baulig  <martin@ximian.com>
13255
13256         * class.h (MonoGenericContext): New struct.
13257         (MonoGenericMethod): Removed `generic_inst'.
13258
13259         * class.c (mono_class_inflate_generic_method): Take a
13260         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13261
13262 2004-03-25  Martin Baulig  <martin@ximian.com>
13263
13264         * loader.h (MonoMethodInflated): New typedef.
13265
13266         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13267         `generic_param_count' consume just 30 bits, added `is_inflated'
13268         and `has_type_parameters' flags (one bit each).
13269
13270         * class.c (mono_class_inflate_generic_method): Create a
13271         MonoMethodInflated instead of a MonoMethodNormal and set
13272         `is_inflated' in the method signature.
13273
13274         * class.h (MonoGenericMethod): Removed `generic_method'.
13275
13276 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13277
13278         * image.c: Make sure the name of a MonoImage is always an absolute path.
13279           This fixes bug #54415.
13280
13281 2004-03-24  Martin Baulig  <martin@ximian.com>
13282
13283         * class.c (mono_class_setup_vtable): If we're a generic instance,
13284         use our generic type's vtable size.
13285
13286 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13287
13288         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13289         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13290         problems.
13291
13292 2004-03-23  Martin Baulig  <martin@ximian.com>
13293
13294         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13295         `MonoEvent *events'.
13296
13297         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13298         (typebuilder_icalls): Added "get_event_info"; calls
13299         mono_reflection_event_builder_get_event_info(). 
13300
13301         * reflection.c (mono_reflection_generic_inst_initialize): Added
13302         `MonoArray *events'.
13303         (mono_reflection_event_builder_get_event_info): New function.
13304
13305 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13306
13307         * object.h: add mono_type_initialization_init
13308
13309         * object.c (mono_runtime_class_init): 
13310         implement class constructor synchronization rules
13311         to cope with threading issues.  
13312         add mono_type_initialization_init
13313
13314         * appdomain.c (mono_runtime_init): call 
13315         mono_type_initialization_init
13316
13317         * class.h: removing initializing field from MonoVTable
13318
13319 2004-03-23  Martin Baulig  <martin@ximian.com>
13320
13321         * class.c (my_mono_class_from_generic_parameter): Use
13322         `param->name' if it's not NULL. 
13323
13324 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13325
13326         * class.c: do not insert non-virtual methods in the vtable.
13327         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13328         that means the method is non-virtual. This never would have
13329         happened before.
13330
13331 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13332
13333         * profiler.c: Added lock for accessing coverage_hash.
13334
13335 2004-03-22  Martin Baulig  <martin@ximian.com>
13336
13337         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13338         `method->method->signature->generic_param_count != 0' to make it
13339         work for interface methods.
13340
13341 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13342
13343         * process.c: quote the string passed to the shell using g_shell_quote.
13344
13345 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13346
13347         * threads.c:
13348         (mono_threads_manage): don't remove the finalizer thread and self
13349         from the threads hash table so that mono_thread_manage can be called
13350         more than once.
13351
13352 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13353
13354         * process.c: quote the arguments when UseShellExecute is true. Fixes
13355         bug #55790.
13356
13357 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13358
13359         * threads.c: set mono_thread_detach as a cleanup routine for every
13360         thread. This way it's always executed upon thread termination, either
13361         aborted or finished normally. No more xsp hangs!
13362
13363 2004-03-17  Martin Baulig  <martin@ximian.com>
13364
13365         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13366         `int count_nested' and a `MonoType **nested'.
13367
13368         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13369         most of the functionality into a new static
13370         do_mono_reflection_bind_generic_parameters() and don't take a
13371         `MonoType *nested_in' argument any more.  Don't compute nested
13372         types here.
13373         (mono_reflection_generic_inst_get_nested_types): New public method
13374         to get nested types.
13375
13376         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13377         we're a nested class.
13378
13379         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13380         mono_reflection_generic_inst_get_nested_types() to compute the
13381         nested types.
13382
13383 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13384
13385         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13386         descriptive error message under windows.
13387         
13388 2004-03-17  Martin Baulig  <martin@ximian.com>
13389
13390         * class.c (dup_type): Added `const MonoType *original' argument;
13391         copy the attrs from the original type.
13392
13393 2004-03-17  Martin Baulig  <martin@ximian.com>
13394
13395         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13396         `m->generic_inst_cache' here.
13397
13398 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13399
13400         * exception.h exception.c: Add stack_overflow_exception.
13401
13402 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13403
13404         * threadpool.c:
13405         (overlapped_callback): call SetEvent *after* invoking the callback.
13406         No need to call CloseHandle.
13407
13408 2004-03-16  Martin Baulig  <martin@ximian.com>
13409
13410         * reflection.c (mono_image_get_fieldref_token): Take a
13411         `MonoReflectionField *' instead of a `MonoClassField *' and a
13412         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13413
13414 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13415
13416         * appdomain.c: don't add the culture to the filename we're looking for
13417         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13418
13419 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13420
13421         * locales.c: don't ignore symbols when doing case insensitive compares.
13422         Thanks Dick! Fixes bug #54046.
13423
13424         * threads.c: surround 'threads' usage with enter/leave in
13425         mono_thread_manage.
13426
13427 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13428
13429         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13430         implicitly marshalled as [Out]. Fixes #55450.
13431
13432         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13433         an exception.
13434
13435 2004-03-16  Martin Baulig  <martin@ximian.com>
13436
13437         * class.c (mono_class_from_generic_parameter): Use the actual
13438         parameter name. 
13439
13440 2004-03-16  Martin Baulig  <martin@ximian.com>
13441
13442         * reflection.c (type_get_signature_size): New static function.
13443         Compues the size of the type in a method signature.
13444         (method_get_signature_size): New static function; calls
13445         type_get_signature_size() to compute the actual size of the
13446         method's signature.
13447         (method_encode_signature): Use method_get_signature_size() to get
13448         the signature's size rather than using `nparams * 10'.
13449
13450 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13451
13452         * file-io.h: define here WapiOverlapped on windows. I don't want the
13453         regular OVERLAPPED one.
13454
13455         * file-io.c:
13456         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13457         Disabling AIO on windows.
13458
13459 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13460
13461         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13462         bug #55385.
13463
13464 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13465
13466         * appdomain.c: upgraded corlib version.
13467
13468         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13469         and BeginWrite. Allow opening files for asynchrnous operations.
13470
13471         * file-io.h: new struct that maps FileStreamAsyncResult.
13472         * icall.c: added new icalls.
13473         * process.[ch]: support setting child process environment variables
13474         and use the SHELL or COMSPEC when UseShellExecute is true.
13475
13476         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13477         callback for async. IO is here and also BindHandle.
13478
13479         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13480         from here.
13481
13482 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13483
13484         * reflection.c (create_custom_attr): Allow len == 0.
13485
13486         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13487         computation on big-endian machines.
13488
13489 2004-03-13  Martin Baulig  <martin@ximian.com>
13490
13491         * class.h (MonoGenericInst): Added `int count_ifaces'.
13492
13493         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13494         `ginst->count_ifaces' instead `klass->interface_count' since we
13495         may get called before the vtable is created.
13496
13497         * loader.c (mono_method_get_param_names): If we're a generic
13498         instance, return and don't initialize the class.
13499
13500         * reflection.c (mono_reflection_setup_generic_class): Don't call
13501         ensure_runtime_vtable().
13502         (mono_reflection_bind_generic_parameters): Set
13503         `ginst->count_ifaces'.
13504
13505 2004-03-11  Jackson Harper <jackson@ximian.com>
13506
13507         * icall.c:
13508         * unicode.c:
13509         * unicode.h: Remove unused System.Char icalls.
13510         
13511 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13512
13513         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13514         code when we P/Invoke the first library in Windows.Forms, instead
13515         of when we first open the assembly.
13516
13517         * assembly.c: Drop the lookup from here.
13518
13519 2004-03-10  Martin Baulig  <martin@ximian.com>
13520
13521         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13522         class for properties, fields and events.  Finally fixes #54945.
13523
13524 2004-03-10  Martin Baulig  <martin@ximian.com>
13525
13526         * metadata.c (mono_metadata_class_equal): New static function;
13527         checks whether two generic instances or two generic parameters are
13528         equal.
13529         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13530         compare classes.        
13531
13532 2004-03-10  Martin Baulig  <martin@ximian.com>
13533
13534         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13535
13536         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13537         argument and write it into the `reflection_info' field.
13538
13539         * icall.c
13540         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13541         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13542
13543 2004-03-09  Jackson Harper  <jackson@ximian.com>
13544
13545         * char-conversions.h: use 8 bits for numeric data its all we need
13546         * icall.c: numeric data is only 8 bits now.
13547
13548 2004-03-09  Martin Baulig  <martin@ximian.com>
13549
13550         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13551
13552         * class.c (init_properties, init_events): Initialize the new
13553         `parent' field.
13554
13555         * reflection.c (typebuilder_setup_properties): Likewise.
13556         (typebuilder_setup_events): Likewise.
13557
13558         * reflection.h (MonoEventInfo): Replaced `parent with
13559         `declaring_type' and `reflected_type'.
13560
13561         * icall.c (ves_icall_get_property_info): Distinguish between
13562         declaring and reflected type.
13563         (ves_icall_get_event_info): Likewise.
13564
13565 2004-03-09  Martin Baulig  <martin@ximian.com>
13566
13567         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13568         (ves_icall_Type_GetField): Correctly set field->klass.
13569
13570 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13571
13572         * loader.h: Fix warning.
13573
13574 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13575
13576         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13577         library routine if present.  Notice that it will still continue
13578         executing even if its missing, for those working on the Gtk#
13579         edition of Windows.Forms.
13580
13581         * assembly.c (do_mono_assembly_open): If loading the
13582         System.Windows.Forms call mono_loader_wini_init.
13583
13584 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13585
13586         * class.h: Added MonoRemoteClass struct.
13587         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13588         function for MonoStrings.
13589         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13590         Added internal call for getting the proxy type.
13591         * marshal.c: Get the type of transparent proxies from its remote_class.
13592         Added methods that generate the IL for type checks and casts:
13593         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13594         mono_marshal_get_proxy_cancast.
13595         * marshal.h: Declaration of the previous new methods.
13596         * object.c: Added new moethods for creating and updating MonoRemoteClass
13597         instances: mono_remote_class, mono_upgrade_remote_class, 
13598         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13599         * verify.c: FIx transparent_proxy_fields layout.
13600         * appdomain.c: Bump corlib version.
13601
13602 2004-03-04  Jackson Harper  <jackson@ximian.com>
13603
13604         * icall.c: Add icall to access char conversion tables.
13605         * char-conversions.h: Character conversion tables.
13606         * Makefile.am: Add char-conversions.h private header file.
13607         
13608 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13609
13610         * appdomain.c (unload_thread_main): Increase unloading timeout to
13611         10 sec as a temporary workaround for Nant problems.
13612
13613 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13614
13615         * gc.c: Add checks for GC_enable and GC_disable.
13616
13617         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13618         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13619         (bug #54988).
13620         
13621 2004-02-27  Martin Baulig  <martin@ximian.com>
13622
13623         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13624         `MonoReflectionType *' instead of a `MonoType *'.
13625
13626 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13627
13628         * gc.c (run_finalize): Avoid finalizing the object representing the
13629         finalizer thread.
13630         (finalizer_thread): Fix warning.
13631
13632 2004-02-25  Martin Baulig  <martin@ximian.com>
13633
13634         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13635         argument for nested types.
13636         (mono_class_create_generic): Added support for nested generictypes.
13637
13638         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13639         `GList *nested'.
13640
13641         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13642
13643         * reflection.c (method_encode_signature): Increase the minimum
13644         value of `size' from 10 to 11.
13645         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13646         and `MonoType **types' arguments instead of the `MonoArray
13647         *types'; added `MonoType *nested_in'.  Recursively instantiate
13648         nested classes. 
13649
13650 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13651
13652         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13653         stack_overflow_ex members which are used by exception handling.
13654
13655         * appdomain.c (mono_runtime_init): Initialize the new members.
13656
13657         * gc.c (mono_gc_enable): New helper function.
13658         * gc.c (mono_gc_disable): New helper function.
13659
13660 2004-02-23  Martin Baulig  <martin@ximian.com>
13661
13662         * icall.c: I must have been really stupid - make it actually work
13663         this time ;-)
13664
13665 2004-02-23  Martin Baulig  <martin@ximian.com>
13666
13667         * loader.c (method_from_memberref): Only inflate the method if
13668         it's in another klass.
13669
13670 2004-02-23  Martin Baulig  <martin@ximian.com>
13671
13672         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13673         (mono_class_init): If we're a generic instance and an interface,
13674         compute `class->interface_id'; also create `class->interfaces'
13675         here and inflate them.
13676
13677         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13678         `ginst->is_open'.
13679         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13680
13681         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13682
13683 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13684
13685         * reflection.c (method_encode_code): Improved the error message
13686         generated by the exception.
13687
13688 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13689
13690         * icall.c: Martin did not do what he said in the ChangeLog for
13691         2004-02-18, but put back the changes for properties and events.
13692         Commenting those changes out again and adding comment to bug #54518.
13693         
13694         * process.c: removed warning.
13695
13696 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13697
13698         * marshal.c (emit_struct_conv): Print an error message instead of
13699         asserting when a type does not have the StructLayout attribute.
13700
13701 2004-02-20  Martin Baulig  <martin@ximian.com>
13702
13703         * reflection.c (mono_type_get_object): Also use the cache for
13704         generic instances.
13705         (mono_reflection_bind_generic_parameters): Always compute
13706         `ginst->ifaces'.        
13707
13708 2004-02-20  Martin Baulig  <martin@ximian.com>
13709
13710         * class.h (MonoGenericMethod): Removed `klass'.
13711
13712         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13713         *klass' argument.
13714
13715 2004-02-20  Martin Baulig  <martin@ximian.com>
13716
13717         * reflection.c (method_encode_methodspec): Actually use the
13718         uninflated signature for the memberref.
13719
13720 2004-02-20  Martin Baulig  <martin@ximian.com>
13721
13722         * class.h (MonoGenericMethod): Removed `declaring'.
13723
13724         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13725         is NULL, compute it here.
13726
13727 2004-02-20  Martin Baulig  <martin@ximian.com>
13728
13729         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13730
13731         * metadata.c (mono_metadata_generic_inst_hash): New method.
13732         (mono_metadata_generic_inst_equal): New method.
13733
13734         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13735         `klass->image->generic_inst_cache' cache to avoid creating
13736         duplicate MonoGenericInst's.
13737
13738         * class.c (mono_class_inflate_generic_type): Use the cache.
13739
13740 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13741
13742         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13743
13744 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13745
13746         * icall.c: added Socket.WSAIoctl icall.
13747
13748         * socket-io.[ch]: implemented
13749         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13750
13751 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13752
13753         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13754
13755 2004-02-18  Urs C Muff  <umuff@quark.com>
13756
13757         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13758         this work on PPC and other big-endian architectures.
13759
13760         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13761         fields with an underscore to make sure they're only accessed by
13762         the read32() macro.
13763
13764 2004-02-18  Martin Baulig  <martin@ximian.com>
13765
13766         * icall.c: Put the klass->refclass changes back for methods and
13767         fields, but not for properties and events.  We're currently not
13768         distinguishing between DeclaringType and ReflectedType for
13769         properties and events, that's what caused the regressions.
13770
13771 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13772
13773         * object.c:
13774         (mono_async_result_new): the handle can be NULL.
13775
13776         * threadpool.c: Use an event instead of a semaphore, don't initialize
13777         it until needed. This saves quite a few semaphores from being created
13778         when using the threadpool.
13779
13780 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13781
13782         * object.c (mono_string_is_interned_lookup): Fix interning of long
13783         strings. Fixes #54473.
13784
13785         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13786
13787         * icall.c: Revert the klass->refclass changes since they introduce
13788         regressions (bug #54518).
13789
13790 2004-02-18  Martin Baulig  <martin@ximian.com>
13791
13792         * class.c (mono_class_init): If we're a generic instance and don't
13793         come from a TypeBuilder, inflate our members here.
13794         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13795         (mono_class_create_generic): New public method.
13796         (mono_class_initialize_generic): Removed.
13797         (get_instantiation_name): Renamed to
13798         _mono_class_get_instantiation_name() and made it public.
13799
13800 2004-02-18  Martin Baulig  <martin@ximian.com>
13801
13802         * class.c (mono_class_inflate_generic_type): Clear the new
13803         instance's `nginst->klass' when inflating a generic instance.
13804         (mono_class_is_subclass_of): Added (basic) support for generic
13805         instances.
13806
13807 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13808
13809         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13810         MonoMempool to hold compiled native code.
13811
13812 2004-02-17  Martin Baulig  <martin@ximian.com>
13813
13814         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13815         `properties'.
13816
13817         * reflection.c (mono_reflection_generic_inst_initialize): Added
13818         `MonoArray *properties' argument.
13819
13820         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13821
13822 2004-02-17  Martin Baulig  <martin@ximian.com>
13823
13824         * icall.c (ves_icall_Type_GetFields): Renamed to
13825         ves_icall_Type_GetFields_internal() and added a
13826         `MonoReflectionType *rtype' argument; pass it to
13827         mono_field_get_object() to set the field's "reflected" type.
13828         (ves_icall_Type_GetConstructors): Likewise.
13829         (ves_icall_Type_GetEvents): Likewise.
13830         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13831         argument; pass it to mono_method_get_object() to set the method's
13832         "reflected" type.       
13833
13834 2004-02-17  Martin Baulig  <martin@ximian.com>
13835
13836         * class.h (MonoDynamicGenericInst): New type.
13837         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13838
13839         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13840         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13841         (ves_icall_MonoGenericInst_GetFields): New interncall.
13842
13843         * class.c (mono_class_from_generic): Don't call
13844         mono_class_initialize_generic() if this is a dynamic instance;
13845         ie. it's being created from a TypeBuilder.
13846         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13847         `class->byval_arg.type'.
13848
13849         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13850         to `inflate_method' and made static.
13851         (mono_reflection_inflate_field): Removed.
13852         (mono_reflection_generic_inst_initialize): New public method.
13853
13854         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13855         `ctors' and `fields'; added `initialized'.
13856
13857 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13858
13859         * debug-helpers.c (mono_method_full_name): Fix output for empty
13860         namespaces.
13861
13862 2004-02-12  Martin Baulig  <martin@ximian.com>
13863
13864         * class.h (MonoClassField): Added `MonoType *generic_type'.
13865
13866         * reflection.c (mono_image_get_fieldref_token): Added support for
13867         instantiated generic types.
13868         (field_encode_inflated_field): Removed.
13869         (mono_image_get_inflated_field_token): Removed.
13870         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13871
13872         * reflection.h (MonoReflectionInflatedField): Removed.
13873
13874 2004-02-12  Martin Baulig  <martin@ximian.com>
13875
13876         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13877         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13878
13879         * reflection.c (mono_image_get_methodspec_token): Take a
13880         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13881         (mono_image_create_token): Check whether we have a
13882         `method->signature->gen_method' and call
13883         mono_image_get_methodspec_token() if appropriate.
13884         (inflated_method_get_object): Removed.
13885         (mono_reflection_bind_generic_method_parameters): Return a
13886         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13887         (mono_reflection_inflate_method_or_ctor): Likewise.
13888
13889         * reflection.h (MonoReflectionInflatedMethod): Removed.
13890
13891 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13892
13893         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13894         for custom valuetype marshalling.
13895
13896         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13897
13898 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13899
13900         * icall.c: fixed WSAGetLastError_internal name.
13901
13902 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
13903
13904         * threads.c (mono_thread_attach): Allow this to be called multiple
13905         times for a thread.
13906         
13907         * threads.c (build_wait_tids): Do not wait for ourselves.
13908
13909         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
13910         appdomain list is empty.
13911
13912         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
13913         memory returned by mono_string_builder_to_utf16, since it points into
13914         managed memory. Thanks to Bernie Solomon for noticing this.
13915
13916         * icall.c: Add AppDomainSetup icalls.
13917
13918         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
13919
13920         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
13921         types.
13922
13923         * reflection.c (reflection_methodbuilder_to_mono_method): Save
13924         custom attributes to the method_aux struct. Also fix array indexes etc.
13925
13926         * loader.c (mono_method_get_param_names): Make dynamic case work again.
13927         
13928 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
13929
13930         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
13931         (both static and runtime) and reduce startup time.
13932
13933 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
13934
13935         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
13936         AsAny marshalling conversion instead of crashing.
13937
13938         * marshal.c: Fix warnings.
13939
13940 2004-02-09  Martin Baulig  <martin@ximian.com>
13941
13942         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
13943
13944         * reflection.h (MonoReflectionInflatedMethod): Removed the
13945         `declaring' field, it's now in the unmanaged MonoGenericMethod.
13946
13947         * reflection.c (method_encode_methodspec): Removed the `method'
13948         argument; we get it from `gmethod->declaring'.
13949         (inflated_method_get_object): Removed the `declaring' argument.
13950
13951 2004-02-09  Martin Baulig  <martin@ximian.com>
13952
13953         * class.h (MonoGenericMethod): New type.
13954         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
13955         `generic_method'.
13956
13957         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
13958         a `MonoGenericMethod *gen_method' one.
13959
13960         * class.c (mono_class_inflate_generic_type): Take an additional
13961         `MonoGenericMethod * argument.  This is only non-NULL if we're
13962         inflating types for a generic method.   
13963         (mono_class_inflate_generic_signature): Renamed to
13964         inflate_generic_signature() and made static; take a
13965         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13966         (inflate_generic_header): Take a `MonoGenericMethod *' argument
13967         instead of a `MonoGenericInst *' one.
13968         (mono_class_inflate_generic_method): Likewise.
13969
13970         * reflection.c (encode_generic_method_sig): Take a
13971         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13972         (method_encode_methodspec): Likewise.
13973         (inflated_method_get_object): Likewise. 
13974
13975         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13976         field with a `MonoGenericMethod *gmethod' one.  
13977
13978 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13979
13980         * class.h (mono_class_has_parent): add parens to expansion
13981         so you can ! this.
13982
13983 2004-02-08  Martin Baulig  <martin@ximian.com>
13984
13985         * image.h (MonoImage): Removed `generics_cache'.
13986
13987         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13988         instead of a `MonoType *' argument; removed the `inflate_methods'
13989         argument.  Don't inflate methods here.
13990
13991         * loader.c (find_method): If it's a generic instance, call
13992         mono_class_init() on the `sclass->generic_inst->generic_type'.
13993
13994         * metadata.c (mono_type_size): Make this work on uninitialized
13995         generic instances; call it on the `ginst->generic_type's class.
13996
13997         * reflection.c (mono_reflection_bind_generic_parameters): Call
13998         mono_class_from_generic() to create the `ginst->klass'.
13999
14000 2004-02-08  Martin Baulig  <martin@ximian.com>
14001
14002         * class.h (MonoClass): Changed type of `generic_inst' from
14003         `MonoType *' to `MonoGenericInst *'.
14004
14005 2004-02-08  Martin Baulig  <martin@ximian.com>
14006
14007         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14008         mono_type_get_object(), this is now creating a `MonoGenericInst'
14009         for MONO_TYPE_GENERICINST.
14010         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14011         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14012
14013         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14014         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14015         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14016         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14017         and reflected type.
14018
14019         * reflection.h (MonoReflectionInflatedMethod): Removed
14020         `declaring_type' and `reflected_type'.
14021
14022 2004-02-08  Martin Baulig  <martin@ximian.com>
14023
14024         * class.h (MonoGenericInst): Added `MonoType *parent' and
14025         `MonoType **ifaces'.
14026
14027         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14028         `parent' and `interfaces'.
14029
14030         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14031         `MonoType *' argument and return a `MonoType *'.
14032
14033         * icall.c
14034         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14035         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14036
14037 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14038
14039         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14040         valuetype marshalling.
14041
14042 2004-02-06  Martin Baulig  <martin@ximian.com>
14043
14044         * class.c
14045         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14046         (my_mono_class_from_generic_parameter): Likewise.
14047
14048 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14049
14050         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14051         contents of the symbol files lazily.
14052
14053         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14054
14055         * threads.h threads.c icall.c: New icalls for getting and setting the
14056         threads name.
14057
14058 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14059
14060         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14061         Raise an exception when the domain is not found.
14062
14063 2004-02-03  Martin Baulig  <martin@ximian.com>
14064
14065         * reflection.c (mono_image_get_methodspec_token): Use the
14066         uninflated signature; fixes gen-33.
14067
14068 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14069
14070         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14071         the finalizer code can use thread functionality.
14072
14073         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14074         the finalizer thread.
14075
14076         * threads.c: Make some functions more robust.
14077
14078         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14079
14080         * metadata.h: Add new marshalling conventions.
14081
14082         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14083         stringbuilder marshalling. Fixes #53700.
14084
14085         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14086
14087         * reflection.c (mono_image_get_type_info): Save declarative security
14088         info.
14089
14090         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14091         unmanaged fields as well.
14092
14093         * appdomain.c: Bump corlib version.
14094
14095 2004-02-01  Martin Baulig  <martin@ximian.com>
14096
14097         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14098         method type arguments.  
14099
14100 2004-01-30  Duncan Mak  <duncan@ximian.com>
14101
14102         * marshal.h: Add prototype for
14103         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14104         and
14105         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14106         fix the build.
14107
14108 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14109
14110         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14111         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14112
14113 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14114
14115         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14116         custom marshalling of valuetypes.
14117
14118         * marshal.c: Fix some warnings.
14119
14120 2004-01-29  Martin Baulig  <martin@ximian.com>
14121
14122         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14123         for generic method parameters.
14124
14125         * reflection.c (method_encode_methodspec): Write the uninflated
14126         signature into the methodspec table.
14127         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14128         is always the uninflated method.
14129         (reflection_methodbuilder_to_mono_method): Copy the generic
14130         parameters from the MethodBuilder into `header->gen_params'.
14131
14132 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14133
14134         * class.c (mono_class_from_generic_parameter): Fix warning.
14135
14136 2004-01-27  Martin Baulig  <martin@ximian.com>
14137
14138         * class.c (mono_class_from_generic_parameter): Don't create
14139         `klass->methods' here.  
14140
14141 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14142
14143         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14144         extension since it does not work with libraries named lib<FOO>.dll.so.
14145
14146 2004-01-25  Martin Baulig  <martin@ximian.com>
14147
14148         * class.c (mono_class_inflate_generic_type): Added support for
14149         MONO_TYPE_GENERICINST.
14150
14151         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14152         inflate methods on open constructed types.      
14153
14154 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14155
14156         * object.c: fire ProcessExit event in the root AppDomain after running
14157         Main. Fixes bug #53299.
14158
14159 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14160
14161         * socket-io.c: include the new socket-wrappers.h header.
14162         Use the wrappers instead of the unix socket functions to make the code
14163         more clear.
14164
14165 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14166
14167         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14168
14169         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14170         Fixes #22532.
14171
14172 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14173
14174         * reflection.c (mono_image_create_pefile): Handle the case when the
14175         entry point is not a MethodBuilder.
14176
14177         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14178         field to ReflectionMethod since it is not allways a builder.
14179
14180         * reflection.c (type_get_fully_qualified_name): New helper function to
14181         return the fully qualified name of a type.
14182
14183         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14184         type name for custom marshallers.
14185
14186         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14187
14188         * class.c (mono_class_setup_vtable): If a parent class already 
14189         implements an interface, use the implementing methods from that class.
14190         Fixes #53148.
14191
14192 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14193
14194         * threadpool.c: just return instead of ExitThread to allow for thread
14195         clean up earlier.
14196
14197 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14198
14199         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14200         when closing resource modules.
14201
14202         * reflection.c (mono_image_create_pefile): Handle the case when the
14203         entry point is not a MethodBuilder.
14204
14205         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14206         field to ReflectionMethod since it is not allways a builder.
14207
14208 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14209
14210         * marshal.c (mono_marshal_get_managed_wrapper): 
14211         mono_marshal_alloc takes native int so CONV_I
14212         the arg for 64bits.
14213
14214 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14215
14216         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14217         tokens in the cattr table. Fixes #53108.
14218
14219 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14220
14221         * loader.c: don't trim ".dll" before looking up in the config file.
14222         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14223
14224 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14225
14226         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14227         Return the module which contains the resource as well.
14228         (ves_icall_System_Reflection_Module_Close): New icall.
14229
14230         * appdomain.c: Bump corlib version number.
14231
14232         * image.c (mono_image_addref): New public function.
14233
14234         * assembly.c: Call mono_image_addref.
14235
14236         * reflection.c (mono_module_get_object): Increase reference count of 
14237         the image.
14238
14239         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14240         Fixes #22532.
14241
14242         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14243         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14244         proper exceptions on DllImport problems.
14245
14246 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14247
14248         * class.c, metadata.c: eliminate CSIZE macro.
14249
14250 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14251
14252         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14253         * object.h: Added async_callback field in MonoAsyncResult.
14254         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14255         * verify.c: Added async_callback in MonoAsyncResult layout.
14256
14257 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14258
14259         * reflection.c (mono_reflection_get_custom_attrs): Add support
14260         for Modules.
14261
14262 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14263
14264         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14265         marshalling.
14266         (mono_marshal_method_from_wrapper): Add null pointer check.
14267
14268 2004-01-16  Martin Baulig  <martin@ximian.com>
14269
14270         * debug-mono-symfile.h: Set version number to 36 and reflect
14271         latest symbol writer changes.
14272
14273 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14274
14275         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14276         multi-dimensional arrays.
14277         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14278         (mono_class_from_mono_type): Use bounded_array_class_get.
14279         
14280         * class.c (mono_bounded_array_class_get): New function which takes
14281         a 'bounded' bool argument to distinguish vectors from one dimensional
14282         arrays.
14283
14284         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14285         bounded_array_class_get if the array has bounds.
14286
14287         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14288         Search modules loaded using AssemblyBuilder:AddModule as well.
14289
14290 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14291
14292         * appdomain.c: increased corlib version.
14293         * filewatcher.c: removed g_print.
14294         * icall.c:
14295         (get_property_info): only allocate what is actually requested.
14296         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14297
14298 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14299
14300         * Makefile.am: added filewatcher.[ch]
14301         * filewatcher.[ch]: FileSystemWatcher runtime support.
14302         * icall.c: added new FSW icalls.
14303
14304 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14305
14306         * string-icalls.c: fix stringbuilder regression as suggested by
14307         Iain McCoy <iain@mccoy.id.au>.
14308
14309 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14310
14311         * process.c (process_read_stringtable_block): Recognize '007f' as
14312         a language neutral stringtable block.
14313
14314 2004-01-12  Patrik Torstensson
14315
14316         * object.h (MonoStringBuilder) : Changed layout to support our
14317         new stringbuilder class.
14318         * marshal.c: Change marshalling to support the new layout of 
14319         string builder.
14320         * appdomain.c: increased version number because new layout of
14321         string builder.
14322
14323 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14324
14325         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14326         assembly name as an string instead of an AssemblyName, since it is
14327         easier to extract info from it.
14328
14329         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14330         the culture subdirectories too. Fixes #52231.
14331
14332 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14333
14334         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14335         It takes 2 new parameters with an optional name for the method to look
14336         for and case ignoring info.
14337
14338         * threadpool.c: removed unused variable.
14339
14340 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14341
14342         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14343         It takes 2 new parameters with an optional name for the property to look
14344         for and case ignoring info.
14345         Fixes bug #52753.
14346
14347 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14348
14349         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14350         Fix #52451.
14351
14352 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14353
14354         * appdomain.c:
14355         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14356         Fixes bug #52630.
14357
14358 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14359
14360         * reflection.c: Add support for more than one unmanaged resource.
14361
14362         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14363         in field->def_value, as done in all other cases.
14364
14365         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14366         TypeBuilders.
14367
14368         * reflection.c (mono_reflection_create_runtime_class): Remove 
14369         errorneous assignment to klass->element_class, since it is already
14370         done in mono_reflection_setup_internal_class.
14371
14372 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14373
14374         * gc.c: added missing LeaveCriticalSection.
14375         * icall.c: indented a couple of lines.
14376         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14377         if we call EndInvoke inside a callback. Fixes bug #52601.
14378
14379 2004-01-07  Martin Baulig  <martin@ximian.com>
14380
14381         * mono-debug-debugger.h
14382         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14383
14384 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14385
14386         * appdomain.c: Use messages in NotImplementedException.
14387
14388         * exception.c (mono_get_exception_not_implemented): Now this takes
14389         a message argument.
14390
14391         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14392         exception instead of g_asserting an aborting when something is not
14393         implemented.
14394
14395         Add some inline docs.
14396
14397 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14398
14399         * reflection.h: Update after changes to object layout.
14400
14401         * reflection.c: Implement saving of unmanaged aka win32 resources.
14402
14403         * appdomain.c: Bump version number.
14404
14405         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14406         Handle missing domains gracefully.
14407
14408 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14409
14410         * file-io.c : On Windows, there are much more invalid_path_chars.
14411
14412 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14413
14414         * class.h, object.c: prepare for GetType () speedup.
14415
14416 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14417
14418         * profiler.c: workaround for --profile null reference exception on
14419           cygwin. Patch by Patrik Torstensson.
14420
14421 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14422
14423         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14424         make work for unaligned access.
14425
14426 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14427
14428         * class.c: small cleanup (class->fields [i] -> field).
14429         * image.c: check address of metadata is valid.
14430
14431 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14432
14433         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14434         search the list of loaded assemblies.
14435
14436         * reflection.c (mono_reflection_type_from_name): Use 
14437         mono_assembly_loaded instead of mono_image_loaded.
14438
14439         * reflection.c: Fix warnings.
14440
14441 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14442
14443         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14444         is dynamic. This is needed since an assembly can contain both dynamic and
14445         non-dynamic images.
14446
14447         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14448         assembly->dynamic.
14449
14450         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14451
14452         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14453         to store modules loaded using AddModule.
14454
14455         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14456         on Modules.
14457
14458         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14459
14460         * reflection.c (mono_image_fill_export_table_from_module): New function to
14461         fill out the EXPORTEDTYPES table from a module.
14462
14463         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14464         into a separate function. Also handle loaded non-dynamic modules.
14465
14466         * reflection.c (mono_image_basic_init): Fix memory allocation.
14467
14468         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14469
14470         * assembly.c (mono_assembly_load_references): Make this public.
14471
14472 2003-12-19  Martin Baulig  <martin@ximian.com>
14473
14474         * class.c (mono_class_initialize_generic): Made this static, take
14475         a `MonoGenericInst *' instead of a `MonoClass *'.
14476         (mono_class_from_generic): Call mono_class_initialize_generic()
14477         unless we're already initialized or being called from
14478         do_mono_metadata_parse_generic_inst().
14479
14480         * class.h (MonoGenericInst): Added `initialized' and
14481         `init_pending' flags.
14482
14483         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14484         `mono_class_init (gklass)' or mono_class_initialize_generic()
14485         here; set `generic_inst->init_pending' while parsing the
14486         `type_argv'.
14487
14488 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14489
14490         * locales.c: include string.h for memxxx prototypes
14491
14492 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14493
14494         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14495         constructor when accessing literal fields.
14496
14497 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14498
14499         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14500
14501         * reflection.c (assembly_add_resource_manifest): New function to fill
14502         the MANIFESTRESOURCE table.
14503
14504         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14505
14506         * reflection.h: Update to changes in class layout.
14507
14508         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14509         Reenable call to mono_runtime_is_shutting_down ().
14510
14511         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14512         determine if the runtime is shutting down.
14513
14514 2003-12-16  Jackson Harper <jackson@ximian.com>
14515
14516         * icall.c: comment out call to mono_runtime_is_shutting_down to
14517         fix build.
14518         
14519 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14520
14521         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14522         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14523
14524 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14525
14526         * reflection.c: move definition of swap_with_size
14527         to before its first call
14528
14529 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14530
14531         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14532
14533         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14534         icall.
14535
14536         * object.c: Fix warnings.
14537
14538         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14539         members if FlattenHierarchy is set.
14540
14541         * reflection.c (mono_image_add_decl_security): New function to emit
14542         declarative security.
14543
14544         * reflection.h reflection.c: Add support for declarative security.
14545
14546         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14547         
14548 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14549
14550         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14551         
14552         * appdomain.c verify.c: Moved corlib version checking into its own
14553         function in appdomain.c since it needs to create vtables etc.
14554
14555 2003-12-13  Patrik Torstensson <p@rxc.se>
14556
14557         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14558         instead of unwrapped server.
14559
14560 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14561
14562         * verify.c (check_corlib): Fix field index.
14563
14564 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14565
14566         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14567         GetGacPath icall.
14568
14569 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14570
14571         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14572         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14573         cope with sizeof(size_t) != sizeof(guint32).
14574
14575 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14576
14577         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14578         in case of failure.
14579
14580 2003-12-10  Mark Crichton <crichton@gimp.org>
14581
14582         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14583         in managed code.
14584
14585         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14586
14587 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14588
14589         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14590         marked as deleted.
14591
14592 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14593
14594         * verify.c (check_corlib): Handle the case when the version field is 
14595         initialized by a static constructor.
14596
14597 2003-12-08  Patrik Torstensson  <p@rxc.se>
14598
14599     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14600
14601 2003-12-08  Martin Baulig  <martin@ximian.com>
14602
14603         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14604         a MonoReflectionGenericParameter, also take the parameter index
14605         and name as arguments.
14606         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14607         (ves_icall_MonoGenericParam_initialize): New interncall.
14608         (ves_icall_Type_make_byref_type): New interncall.
14609
14610         * reflection.h (MonoReflectionGenericParam): Derive from
14611         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14612         `index' fields.
14613
14614         * reflection.c (mono_reflection_define_generic_parameter): Create
14615         and return a new MonoReflectionGenericParam; don't initialize the
14616         constraints here.
14617         (mono_reflection_initialize_generic_parameter): New public method;
14618         initializes the constraints and creates the `param->pklass'.
14619
14620 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14621
14622         * reflection.h reflection.c: Use the new fields 'num_types', 
14623         'num_fields' and 'num_methods' to track the number of types etc.
14624
14625         * verify.c (check_corlib): Check corlib version number.
14626
14627 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14628
14629         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14630         function works on all methods.
14631
14632 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14633
14634         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14635         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14636         the custom_type_info flag of the transparent proxy.
14637         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14638         objects that supports IRemotingTypeInfo.
14639         * object.h: Added custom_type_info field in transparent proxy.
14640
14641 2003-12-06  Martin Baulig  <martin@ximian.com>
14642
14643         * class.c (mono_class_create_from_generic): Removed.
14644         (mono_class_from_generic): Check `ginst->klass' before doing
14645         anything else.  This is important to fully support "recursive"
14646         generic types.
14647
14648         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14649         empty `generic_inst->klass' before doing anything else.
14650
14651 2003-12-06  Dick Porter  <dick@ximian.com>
14652
14653         * verify.c: 
14654         * object.h:
14655         * icall.c:
14656         * locales.c: Use C structs to access class fields.  Don't do a
14657         conversion between MonoString and UChar because both are
14658         platform-endian UTF-16.  Compare now takes startindex and count
14659         parameters.  Add a char overload for IndexOf.  Speed up the
14660         invariant string IndexOf.
14661
14662 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14663
14664         * Makefile.am (monosn_LDADD): Fix parallel build.
14665
14666 2003-12-04  Martin Baulig  <martin@ximian.com>
14667
14668         * icall.c
14669         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14670         (ves_icall_Type_make_array_type): New interncall.       
14671
14672 2003-12-04  Martin Baulig  <martin@ximian.com>
14673
14674         * locales.c: also change it in the !HAVE_ICU case.
14675
14676 2003-12-04  Dick Porter  <dick@ximian.com>
14677
14678         * icall.c:
14679         * locales.c: construct_compareinfo is now in CompareInfo, not
14680         CultureInfo.
14681
14682 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14683
14684         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14685         image->files array.
14686
14687         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14688         table as well.
14689
14690         * assembly.c (mono_assembly_load_references): Only load references
14691         once.
14692
14693         * class.c (mono_class_from_name): Avoid linear search of the 
14694         EXPORTEDTYPE table.
14695
14696         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14697
14698 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14699
14700         * image.h (MonoImage): Add 'field_cache' field.
14701
14702         * loader.c (mono_field_from_token): Cache field lookups.
14703         
14704         * reflection.c (mono_module_get_object): Fix name property.
14705
14706         * icall.c (ves_icall_get_enum_info): Update after changes to 
14707         mono_metadata_get_constant_index ().
14708
14709         * icall.c: Get rid of get_type_info icall, use a separate icall for
14710         each type property to avoid needless memory allocations. Fixes #51514.
14711
14712         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14713         to avoid needless binary searches.
14714
14715         * class.c (class_compute_field_layout): Move the initialization of
14716         field->def_value to mono_class_vtable ().
14717
14718         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14719         non-corlib types.
14720
14721         * object.c (mono_object_allocate): Make it inline.
14722
14723         * object.c (mono_object_allocate_spec): Make it inline.
14724         
14725 2003-12-02  Dick Porter  <dick@ximian.com>
14726
14727         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14728         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14729
14730 2003-12-01  Dick Porter  <dick@ximian.com>
14731
14732         * threads.c: Fix signature and call in CreateMutex and
14733         CreateEvent.
14734
14735 2003-12-01  Dick Porter  <dick@ximian.com>
14736
14737         * icall.c: 
14738         * locales.c: Implement string compares and searching
14739
14740         * object.h: Add extra Thread field
14741
14742 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14743
14744         * reflection.c (fixup_method): Add support for MonoCMethod.
14745
14746 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14747
14748         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14749
14750         * reflection.c (assembly_name_to_aname): Allow extra characters in
14751         assembly names. Fixes #51468.
14752
14753 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14754
14755         * exception.c (mono_exception_from_name_domain): New helper function.
14756
14757         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14758         exception object in the correct domain.
14759
14760         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14761         formatting + make a copy a the input data.
14762
14763         * loader.c (mono_get_method_from_token): Methods which contain
14764         native code do not have entries in the ImplMap.
14765
14766         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14767         Thanks to Gonzalo for spotting this.
14768         
14769         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14770         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14771
14772         * assembly.h (mono_assembly_load_from): Split the second part of 
14773         assembly loading into a new public function.
14774
14775         * exception.h (mono_get_exception_bad_image_format): New function.
14776
14777 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14778
14779         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14780         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14781         
14782         * icall.c: Add new icall for creating dynamic methods.
14783
14784         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14785
14786         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14787
14788         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14789         create a dynamic method.
14790
14791         * reflection.c (resolve_object): New helper function.
14792
14793         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14794         which manipulate it so they can also work on dynamic methods.
14795
14796         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14797         creating the MonoReflectionMethodAux structure if it is not needed.
14798         
14799         * reflection.h verify.c: Update after changes to object layout.
14800
14801         * reflection.c (method_builder_encode_signature): Fix compilation on
14802         gcc 2.95.x.
14803
14804 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14805
14806         * appdomain.h: Added support for context static fields. Added static_data
14807           field to MonoAppContext and renamed thread_static_fields to a more
14808           generic special_static_fields in MonoAppDomain, since it can now contain
14809           context static fields.
14810         * domain.c: Updated hashtable name.
14811         * object.c: Replaced field_is_thread_static() for a more generic
14812           field_is_special_static() which also checks for context static attribute.
14813           In mono_class_vtable(), added support for static context fields.
14814         * threads.c: Changed methods that manage thread static fields to more
14815           generic methods so they can be reused both for thread and context static
14816           data.
14817         * threads.h: Declared some new methods.
14818
14819 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14820
14821         * reflection.h: Update after changes to the managed types.
14822
14823         * reflection.c (encode_custom_modifiers): New helper function.
14824
14825         * reflection.c (method_encode_signature): Emit custom modifiers.
14826
14827         * reflection.c (field_encode_signature): Emit custom modifiers.
14828
14829 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14830
14831         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14832
14833         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14834         implementation.
14835
14836         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14837         icall.
14838
14839         * object.c (mono_field_get_value_object): New function.
14840
14841         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14842         specific.
14843
14844 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14845
14846         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14847         return a preallocated out-of-memory exception instance.
14848
14849         * object.c (out_of_memory): Use the new function.
14850
14851         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14852         flag is before the custom modifiers. Fixes #49802.
14853
14854 2003-11-16  Martin Baulig  <martin@ximian.com>
14855
14856         * class.c (mono_class_is_open_constructed_type): Implemented the
14857         MONO_TYPE_GENERICINST case.
14858
14859 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14860
14861         * assembly.c (mono_assembly_fill_assembly_name): New function to
14862         fill out the MonoAssemblyName structure.
14863         (mono_assembly_open): Use the new function.
14864
14865         * icall.c (fill_reflection_assembly_name): New helper function.
14866
14867         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14868         new function.
14869
14870         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14871
14872 2003-11-15  Martin Baulig  <martin@ximian.com>
14873
14874         * class.c (mono_class_is_open_constructed_type): New public
14875         function; checks whether a type is an open constructed type,
14876         ie. whether it still contains type parameters.
14877         (mono_class_inflate_generic_type): If we're a type parameter and
14878         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14879         type.
14880
14881         * class.h (MonoGenericInst): Added `guint32 is_open'.
14882
14883         * loader.c (method_from_methodspec): Check whether we're an open
14884         or closed constructed type and set `ginst->is_open'.
14885
14886         * reflection.c (mono_reflection_bind_generic_parameters): Check
14887         whether we're an open or closed constructed type and set
14888         `ginst->is_open'.
14889         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14890         from open constructed types.
14891
14892 2003-11-15  Martin Baulig  <martin@ximian.com>
14893
14894         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14895         a generic instance (instead of a generic type declaration) with
14896         unbound generic parameters, bind them to our actual types.
14897
14898 2003-11-14  Martin Baulig  <martin@ximian.com>
14899
14900         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
14901
14902         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14903         an interface type, populate `res->interfaces' with instantiated
14904         versions of all the interfaces we inherit.
14905
14906 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
14907
14908         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
14909         when MONO_PATH is set but doesn't contain the install dir.
14910
14911 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14912
14913         * icall.c:
14914         (ves_icall_Type_GetInterfaces): don't return an interface twice when
14915         it's also implemented in base classes. Fixes bug #50927.
14916
14917 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
14918
14919         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
14920         if this method is called from a finalizer. Fixes #50913.
14921
14922 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
14923
14924         * threads.c: Implement VolatileRead/VolatileWrite
14925
14926         * icall.c: Add new icalls for VolatileRead/VolatileWrite
14927
14928 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14929
14930         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
14931         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
14932         2.95.3.
14933
14934         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
14935         from Peter Ross (pro@missioncriticalit.com).
14936         
14937 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
14938
14939         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
14940
14941 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14942
14943         * assembly.c (mono_assembly_load_references): Disable check because it
14944         triggers on older corlibs which lots of people have.
14945
14946 2003-11-12  Jackson Harper  <jackson@ximian.com>
14947
14948         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
14949         load corlib.dll if mscorlib.dll is not found.
14950         * assembly.h: Remove corlib name define.
14951         * class.c:
14952         * domain.c:
14953         * image.c: Change corlib name to mscorlib.
14954         
14955 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14956
14957         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
14958
14959 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
14960
14961         * appdomain.h: Added loader_optimization here to sync with the C#
14962         code, and add disallow_binding_redirects field.
14963
14964 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14965
14966         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
14967
14968         * reflection.c (mono_image_build_metadata): Fix crash on modules
14969         with no types.
14970
14971         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14972
14973         * icall.c (ves_icall_get_method_info): Return callingConvention as
14974         well.
14975
14976         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14977         namespaces from the EXPORTEDTYPE table as well.
14978
14979         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14980         from all modules inside the assembly.
14981         
14982 2003-11-11  Martin Baulig  <martin@ximian.com>
14983
14984         * reflection.c (mono_reflection_bind_generic_parameters): Make
14985         this work for interfaces.
14986
14987 2003-11-11  Martin Baulig  <martin@ximian.com>
14988
14989         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14990
14991 2003-11-11  Martin Baulig  <martin@ximian.com>
14992
14993         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14994         "MonoInflatedMethod" and "MonoInflatedCtor".
14995
14996 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14997
14998         * reflection.c (resolution_scope_from_image): Use the assembly table
14999         from the manifest module, since other modules don't have it.
15000
15001         * debug-helpers.c (mono_type_full_name): New helper function.
15002
15003         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15004
15005         * image.c (mono_image_load_file_for_image): New public function which
15006         is a replacement for the load_file_for_image in class.c.
15007
15008         * assembly.c (mono_assembly_load_module): A wrapper for the function
15009         above which does assembly association and reference loading too.
15010
15011         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15012
15013 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15014
15015         * appdomain.c: not all of the attributes for the full assembly name
15016         are required and the order doesn't matter. Fixes bug #50787.
15017
15018 2003-11-10  Dick Porter  <dick@ximian.com>
15019
15020         * locales.c: Use platform-endian UTF16
15021
15022 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15023
15024         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15025         
15026 2003-11-10  Martin Baulig  <martin@ximian.com>
15027
15028         * metadata.c
15029         (mono_metadata_load_generic_params): Make this actually work.
15030
15031         * reflection.c (mono_reflection_bind_generic_parameters): If our
15032         parent is a generic instance, pass all the `types' to it, no
15033         matter whether it has the same number of type parameters or not.
15034
15035 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15036
15037         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15038
15039         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15040         assignment code to this function so it gets called recursively for all
15041         modules.
15042
15043         * image.c (load_modules): Remove the assembly assignment since it is
15044         now done by mono_assembly_load_references.
15045         
15046         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15047         Add 'module' argument.
15048         (mono_module_get_types): New helper function.
15049         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15050
15051 2003-11-08  Martin Baulig  <martin@ximian.com>
15052
15053         * class.c (mono_class_inflate_generic_method): Interface method
15054         don't have a header.
15055
15056         * reflection.c (mono_image_get_methodspec_token): Take an
15057         additional `MonoGenericInst *' argument instead of reading it from
15058         the header; this is necessary to support interfaces.
15059         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15060         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15061         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15062         argument.
15063
15064         * reflection.h (MonoReflectionInflatedMethod): Added
15065         `MonoGenericInst *ginst'.
15066
15067 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15068
15069         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15070
15071 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15072
15073         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15074
15075 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15076
15077         * reflection.c 
15078         (reflection_methodbuilder_from_method_builder):
15079         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15080         initialize a ReflectionMethodBuilder structure.
15081         (mono_image_get_methodbuilder_token):
15082         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15083         tokens which point to types in another module inside the same assembly.
15084
15085         * reflection.c: Use the new helper functions.
15086         
15087         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15088
15089         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15090         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15091
15092         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15093         neccesary.
15094
15095         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15096         current module. Emit the manifest only for the main module.
15097
15098         * reflection.c (mono_image_create_token): Add assertion when a 
15099         memberref needs to be created.
15100
15101         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15102
15103         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15104         larger buffer for the custom attribute blob. Fixes #50637.
15105         
15106 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15107
15108         * threadpool.c: notify listener on async processing handles after
15109         invoking the async callback. Thanks to Zoltan.
15110
15111 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15112
15113         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15114         avoid code duplication.
15115
15116         * reflection.h (MonoDynamicImage): New type which is currently unused,
15117         but will be used through the ref.emit code in place of 
15118         MonoDynamicAssembly.
15119
15120         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15121         object layout.
15122
15123         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15124         a MonoDynamicImage instead of just a MonoImage.
15125         
15126         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15127         icalls to ModuleBuilder but keep their semantics, so they will work
15128         with moduleb->assemblyb. This will change later.
15129         
15130 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15131
15132         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15133         object layout.
15134
15135         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15136         main module, since it is now done by the managed code.
15137
15138 2003-11-03  Martin Baulig  <martin@ximian.com>
15139
15140         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15141         `ginst->klass' here.
15142         (method_encode_methodspec): Don't use the `ginst->generic_method's
15143         klass if it's a generic instance, use `ginst->klass' in this case.
15144
15145 2003-11-03  Martin Baulig  <martin@ximian.com>
15146
15147         * reflection.c (mono_image_get_generic_method_param_info):
15148         Removed, use mono_image_get_generic_param_info() instead.
15149         (mono_image_get_type_info): Write the GenericParam table before
15150         the Method table.  This is neccessary because in the GenericParam
15151         table, type parameters of the class (ie. '!0' etc.) must come
15152         before the ones from its generic methods (ie. '!!0' etc).
15153
15154 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15155
15156         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15157
15158 2003-11-02  Martin Baulig  <martin@ximian.com>
15159
15160         * reflection.c (create_generic_typespec): Take a
15161         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15162         the generic parameters from it.
15163
15164 2003-11-02  Martin Baulig  <martin@ximian.com>
15165
15166         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15167         instead of a `MonoClassField *' since we just need the type.
15168         (create_generic_typespec): New static function.  Creates a
15169         TypeSpec token for a generic type declaration.
15170         (mono_image_get_generic_field_token): New static function.
15171         (mono_image_create_token): If we're a FieldBuilder in a generic
15172         type declaration, call mono_image_get_generic_field_token() to get
15173         the token.
15174
15175 2003-11-02  Martin Baulig  <martin@ximian.com>
15176
15177         * reflection.h
15178         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15179         `MonoReflectionGenericInst *declaring_type' and
15180         `MonoReflectionGenericInst *reflected_type' fields.
15181
15182         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15183         `MonoReflectionGenericInst *declaring_type' and a
15184         `MonoReflectionGenericInst *reflected_type' argument instead of a
15185         single `MonoReflectionGenericInst *type' one.  Set
15186         `res->declaring_type' and `res->reflected_type' from them.
15187         (mono_reflection_inflate_field): Likewise.      
15188
15189 2003-11-02  Martin Baulig  <martin@ximian.com>
15190
15191         * class.c (mono_class_setup_vtable): Don't store generic methods
15192         in the vtable.  
15193
15194 2003-11-02  Martin Baulig  <martin@ximian.com>
15195
15196         * reflection.h (MonoReflectionGenericInst): Added
15197         `MonoReflectionType *declaring_type'.
15198
15199         * reflection.c (mono_reflection_bind_generic_parameters): Use
15200         `if (tb->parent)' instead of `klass->parent'.
15201
15202 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15203
15204         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15205         with an empty ASSEMBLY table.
15206
15207         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15208         variable in the inner and outer loops.
15209
15210 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15211
15212         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15213         argument.
15214
15215         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15216         
15217         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15218         icalls. Instead, do everything in managed code. This is needed since
15219         it is hard to restore the original domain etc. in unmanaged code in the
15220         presence of undeniable exceptions.
15221
15222         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15223         New icalls to push and pop appdomain refs.
15224
15225 2003-10-31  Martin Baulig  <martin@ximian.com>
15226
15227         * class.c (inflate_generic_type): Renamed to
15228         mono_class_inflate_generic_type() and made it public.
15229
15230         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15231         New interncall.
15232
15233         * loader.c (mono_field_from_memberref): Also set the retklass for
15234         typespecs.
15235
15236         * fielder.c (mono_image_get_inflated_field_token): New static
15237         method; creates a metadata token for an inflated field.
15238         (mono_image_create_token, fixup_method): Added support for
15239         "MonoInflatedField".
15240         (fieldbuilder_to_mono_class_field): New static function.
15241         (mono_reflection_inflate_field): New public function.
15242
15243         * reflection.h
15244         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15245         (MonoReflectionInflatedField): New typedef.     
15246
15247 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15248
15249         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15250         for Solaris and other platforms without s6_addr16
15251
15252 2003-10-30  Martin Baulig  <martin@ximian.com>
15253
15254         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15255         argument instead of two.
15256         (mono_class_inflate_generic_signature): Likewise.
15257         (inflate_generic_header): Likewise.
15258         (mono_class_inflate_generic_method): Likewise.  In addition, if
15259         `ginst->klass' is set, it becomes the new `method->klass'.
15260
15261         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15262         field.
15263
15264         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15265         first byte. [FIXME]
15266         (method_encode_methodspec): If we have generic parameters, create
15267         a MethodSpec instead of a MethodRef.
15268         (fixup_method): Added support for "MonoInflatedMethod" and
15269         "MonoInflatedCtor".
15270         (mono_image_create_token): Added support for "MonoInflatedMethod"
15271         and "MonoInflatedCtor".
15272         (inflated_method_get_object): New static function; returns a
15273         managed "System.Reflection.MonoInflatedMethod" object.
15274         (mono_reflection_bind_generic_method_parameters): Return a
15275         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15276         (mono_reflection_inflate_method_or_ctor): Likewise.
15277         (mono_image_get_generic_method_param_info): Initialize unused
15278         fields to zero.
15279         (mono_image_get_generic_param_info): Likewise.
15280
15281         * reflection.h (MonoReflectionInflatedMethod): New public
15282         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15283         "S.R.MonoInflatedCtor" classes.
15284
15285         * loader.c (method_from_memberref): If we're a TypeSpec and it
15286         resolves to a generic instance, inflate the method.
15287
15288 2003-10-28  Dick Porter  <dick@ximian.com>
15289
15290         * object.c (mono_runtime_run_main): Convert command-line arguments
15291         into utf8, falling back to the user's locale encoding to do so.
15292
15293 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15294
15295         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15296         at this time.
15297
15298         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15299
15300         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15301         up icalls at method definition time. Partially fixes #33569.
15302
15303 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15304
15305         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15306         marshalling of arrays. Fixes #50116.
15307
15308         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15309
15310         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15311         points to a vtable in the dying appdomain.
15312
15313         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15314         listeners into unmanaged code inside the lock.
15315
15316         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15317         domains and add some comments.
15318
15319 2003-10-25  Martin Baulig  <martin@ximian.com>
15320
15321         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15322
15323         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15324
15325         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15326         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15327         currently parsing.  Create the generic class and store it in
15328         `generic_inst->klass' before parsing the type arguments.  This is
15329         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15330         for an example.
15331         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15332         to support recursive typespec entries.
15333
15334         * class.c (mono_class_setup_parent): If our parent is a generic
15335         instance, we may get called before it has its name set.
15336         (mono_class_from_generic): Splitted into
15337         mono_class_create_from_generic() and mono_class_initialize_generic().
15338
15339 2003-10-25  Martin Baulig  <martin@ximian.com>
15340
15341         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15342         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15343         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15344         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15345
15346         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15347         (create_typespec): Likewise.
15348         (mono_reflection_bind_generic_parameters): Return a
15349         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15350         (mono_reflection_inflate_method_or_ctor): New public function.
15351
15352         * reflection.h (MonoReflectionGenericInst): New typedef.        
15353
15354 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15355
15356         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15357         inside the domain lock. Fixes #49993.
15358         
15359         * object.c (mono_class_vtable): When typed allocation is used, 
15360         allocate vtables in the GC heap instead of in the mempool, since the
15361         vtables contain GC descriptors which are used by the collector even
15362         after the domain owning the mempool is unloaded.
15363
15364         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15365
15366         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15367         reflect what it does. Also invalidate mempools instead of freeing
15368         them if a define is set.
15369
15370         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15371         of the appdomain.
15372         
15373         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15374         hold the finalizable objects in this domain.
15375
15376         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15377         appdomain.
15378
15379         * appdomain.c (mono_domain_set): New function to set the current
15380         appdomain, but only if it is not being unloaded.
15381
15382         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15383         appdomain which is being unloaded.
15384         
15385         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15386         unloading of the root appdomain.
15387
15388         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15389         icall to execute a method in another appdomain. Intended as a 
15390         replacement for InternalSetDomain, which can confuse the code 
15391         generation in the JIT.
15392
15393         * appdomain.c (mono_domain_is_unloading): New function to determine
15394         whenever an appdomain is unloading.
15395
15396         * appdomain.c (mono_domain_unload): New function to correctly unload
15397         an appdomain.
15398
15399         * assembly.c (mono_assembly_load_references): Check that an assembly
15400         does not references itself.
15401
15402         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15403         domain manually, it asks the finalizer thread to do it, then waits for
15404         the result. Also added a timeout.
15405
15406         * icall.c: Register the new icalls.
15407
15408         * threads.h threads.c: Export the mono_gc_stop_world and 
15409         mono_gc_start_world functions.
15410         
15411         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15412         function to fill out the mempool with 0x2a.
15413
15414 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15415
15416         * reflection.h (MonoReflectionMethodAux): New structure to store
15417         information which is rarely used, thus is not in the MonoMethod
15418         structure.
15419
15420         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15421         store the aux info.
15422
15423         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15424         and marshalling info into the aux structure.
15425
15426         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15427         from the aux structure.
15428
15429         * loader.c (mono_method_get_param_names): Retrieve the param names from
15430         the aux structure.
15431         
15432 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15433
15434         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15435         warning.
15436
15437 2003-10-21  Dick Porter  <dick@ximian.com>
15438
15439         * socket-io.c
15440         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15441         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15442
15443 2003-10-21  Martin Baulig  <martin@ximian.com>
15444
15445         * reflection.c (mono_reflection_bind_generic_parameters):
15446         `klass->parent' is NULL for interfaces.
15447
15448 2003-10-21  Martin Baulig  <martin@ximian.com>
15449
15450         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15451
15452 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15453
15454         * exception.c (mono_exception_from_name_msg): New helper function for
15455         creating exceptions and initializing their message field.
15456
15457         * exception.c: Simplify functions using the new helper.
15458
15459         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15460         New function.
15461
15462         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15463         mono_raise_exception, since otherwise gcc doesn't generate the function
15464         epilog for raise_exception, confusing the stack unwinding in the JIT.
15465         Fixes #45043.
15466
15467         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15468         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15469         Fixes #49499.
15470
15471 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15472
15473         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15474         utf8.
15475
15476 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15477
15478         * icall.c: Removed GetUninitializedObject method because
15479           AllocateUninitializedClassInstance does the same.
15480
15481 2003-10-18  Martin Baulig  <martin@ximian.com>
15482
15483         * class.c (inflate_generic_signature): Renamed to
15484         mono_class_inflate_generic_signature() and made it public.
15485         (my_mono_class_from_generic_parameter): New static function; if we
15486         don't already have the generic parameter's MonoClass, create a
15487         very simple one which is just used internally in the runtime and
15488         not passed back to managed code.
15489
15490         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15491
15492         * metadata.h (MonoMethodSignature): Moved the
15493         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15494         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15495
15496         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15497         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15498         interncall on the MonoMethod class, not on MethodInfo.
15499         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15500         calling mono_reflection_bind_generic_method_parameters() directly.
15501
15502         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15503         return the already computed `method->signature'.
15504         (method_from_methodspec): New static function to load a method
15505         from a MethodSpec entry.
15506         (mono_get_method_from_token): Call the new method_from_methodspec()
15507         for MethodSpec tokens.  
15508         (mono_get_method_from_token): If we're a generic method, load the
15509         type parameters.
15510
15511         * reflection.c (mono_image_get_memberref_token): Allow
15512         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15513         table.
15514         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15515         (mono_image_create_token): First check whether it's a generic
15516         method (so we'd need to create a MethodSpec), then do the other
15517         two alternatives.
15518         (mono_reflection_bind_generic_method_parameters): Return a
15519         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15520         called directly from the interncall.
15521
15522 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15523
15524         * reflection.c (load_public_key): Move loading of the public key
15525         into managed code.
15526
15527         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15528
15529         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15530         fields.
15531
15532         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15533         culture, hash_alg and public_key. Fixes #49555.
15534
15535 2003-10-17  Martin Baulig  <martin@ximian.com>
15536
15537         * class.h (MonoGenericInst): Moved this declaration here and added
15538         `MonoMethod *generic_method'.
15539
15540         * icall.c
15541         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15542         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15543
15544         * metadata.c (mono_metadata_type_equal): Two types of
15545         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15546         index; ie. don't compare the address of the `MonoGenericParam'
15547         structure.
15548         (mono_metadata_load_generic_params): Removed the `MonoMethod
15549         *method' argument.
15550
15551         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15552         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15553
15554         * reflection.c (method_encode_signature): Encode the number of
15555         generic parameters.
15556         (encode_generic_method_sig): New static function.
15557         (method_encode_methodspec): New static function; creates an entry
15558         in the MethodSpec table for a generic method.
15559         (mono_image_get_methodspec_token): New static function.
15560         (mono_image_create_token): Call mono_image_get_methodspec_token()
15561         for generic methods.
15562         (mono_reflection_bind_generic_method_parameters): New public
15563         function.  Instantiates a generic method.
15564
15565 2003-10-16  Martin Baulig  <martin@ximian.com>
15566
15567         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15568         *gen_params' here from MonoMethodHeader.
15569
15570         * metadata.c (mono_metadata_parse_method_signature): If we have
15571         generic parameters, initialize `method->gen_params' and then set
15572         the correct `type->data.generic_param' in all the parameters.
15573
15574 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15575
15576         * threads.c (mono_threads_get_default_stacksize): New function to 
15577         return the default stacksize.
15578
15579         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15580         termination of the finalizer thread, since the previous method had
15581         race conditions. Fixes #49628.
15582
15583         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15584         as for the other managed threads.
15585
15586 2003-10-16  Martin Baulig  <martin@ximian.com>
15587
15588         * class.c (inflate_generic_signature): Copy `generic_param_count'
15589         and `gen_params'.
15590
15591         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15592         New interncall.
15593
15594         * metadata.c (mono_metadata_parse_method_signature): Actually set
15595         the `method->generic_param_count' here.
15596         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15597
15598 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15599
15600         * object.h: Add a new field to TypedRef to simplify the implementation
15601         of the REFANY opcodes in the JIT.
15602
15603         * icall.c: Make use of the new field.
15604
15605         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15606         dynamically.
15607
15608 2003-10-15  Martin Baulig  <martin@ximian.com>
15609
15610         * class.c (mono_class_from_gen_param): Renamed to
15611         mono_class_from_generic_parameter() and moved most of the
15612         functionality from mono_reflection_define_generic_parameter()
15613         here; ie. we create a "real" class here.
15614         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15615         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15616         previously been called.
15617
15618         * class.h (MonoGenericParam): Moved the declaration of this struct
15619         here from metadata.h and added `MonoMethod *method'.
15620
15621         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15622         interncall.
15623
15624         * loader.c (mono_get_method_from_token): If we have any generic
15625         parameters, call mono_metadata_load_generic_params() to read them
15626         from the MONO_TABLE_GENERICPAR.
15627
15628         * metadata.c (mono_metadata_load_generic_params): Added
15629         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15630
15631         * metadata.h (MonoMethodSignature): Replaced
15632         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15633         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15634
15635         * reflection.c (mono_reflection_define_generic_parameter): Moved
15636         most of the functionality into the new
15637         mono_class_from_generic_parameter(); set the `method' field if
15638         we're a method parameter.       
15639
15640 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15641
15642         * marshal.c (emit_struct_conv): if native size is 0
15643         emit no code.
15644
15645 2003-10-14  Martin Baulig  <martin@ximian.com>
15646
15647         * icall.c: The generics API has changed in the spec since it was
15648         added to System.Type; these modifications make it match the spec
15649         again.
15650         (ves_icall_Type_GetGenericParameters): Renamed to
15651         `ves_icall_Type_GetGenericArguments'.
15652         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15653         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15654         `ves_icall_MonoType_get_HasGenericArguments'.
15655         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15656         `ves_icall_MonoType_get_IsGenericParameter'.
15657         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15658         this is no interncall anymore.
15659         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15660         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15661
15662 2003-10-14  Martin Baulig  <martin@ximian.com>
15663
15664         * reflection.c (mono_reflection_bind_generic_parameters): Also
15665         inflate generic methods if we're reading the class from IL.
15666
15667 2003-10-13  Martin Baulig  <martin@ximian.com>
15668
15669         * reflection.c (mono_reflection_define_generic_parameter): This
15670         method isn't called directly from the icall anymore; take a
15671         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15672         method generic parameters.
15673         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15674         (method_builder_encode_signature): Encode generic parameters.
15675         (mono_image_get_method_info): Write generic params to the
15676         MONO_TABLE_GENERICPARAM table.
15677
15678         * reflection.h (MonoReflectionMethodBuilder): Added
15679         `MonoArray *generic_params'.
15680
15681         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15682
15683         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15684         wrapper for mono_reflection_define_generic_parameter().
15685         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15686
15687 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15688
15689         * marshal.h: Add missing function to fix build.
15690
15691         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15692         the SetLastError pinvoke attribute.
15693
15694         * marshal.c (mono_marshal_set_last_error): New helper function called
15695         by the generated code.
15696         
15697         * marshal.c (mono_mb_emit_branch): New helper function.
15698
15699         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15700
15701         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15702         classes as parameters and return values of delegates. Fixes #29256. 
15703
15704 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15705
15706         * locales.c: use gint32 in non HAVE_ICU case
15707
15708 2003-10-11  Martin Baulig  <martin@ximian.com>
15709
15710         * mono-debug.c (mono_debug_add_method): Added a workaround for
15711         bug #48591.
15712
15713 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15714
15715         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15716         delegates passed to native code must use the STDCALL calling 
15717         convention. Fixes #35987.
15718
15719 2003-10-10  Martin Baulig  <martin@ximian.com>
15720
15721         * class.c (inflate_generic_type): If we're inflating for a generic
15722         type instance (and not for a generic method), return
15723         MONO_TYPE_MVAR unchanged.
15724
15725 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15726
15727         * string-icalls.c: Join ignores null strings in the source array.
15728         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15729         * threads.c: GetAvailableTheads is slightly more accurate.
15730
15731 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15732
15733         * threads.h threads.c : add mono_threads_set_default_stacksize
15734         and pass default to CreateThread calls.
15735
15736 2003-10-09  Dick Porter  <dick@ximian.com>
15737
15738         * icall.c:
15739         * locales.h:
15740         * locales.c: Internal calls for constructing CultureInfo and
15741         related objects from libicu (if its available.)
15742
15743 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15744
15745         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15746
15747 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15748
15749         * threadpool.c: added an argument to async_invoke_thread that is the
15750         item to process, pass the MonoAsyncResult to the thread start function
15751         when creating a new thread. This way we don't need to acquire any lock
15752         when we're creating a new thread. Readded a semaphore for faster
15753         response times (instead of that Sleep i added).
15754
15755 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15756
15757         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15758         get daylight change dates better on Windows, fix handling
15759         of platforms without tm_gmtoff.
15760
15761 2003-10-06  Martin Baulig  <martin@ximian.com>
15762
15763         * class.c (inflate_generic_method): Renamed to
15764         mono_class_inflate_generic_method() and made public.
15765         (mono_class_init): Don't inflate the generic methods here.
15766         (mono_class_from_generic): Added `gboolean inflate_methods'
15767         argument.  Inflate the methods here.
15768
15769         * loader.c (mono_method_get_param_names): Ignore instances of
15770         generic types for the moment.
15771
15772         * reflection.c (fixup_method): Added support for inflated methods.
15773         (mono_image_create_token): Use mono_image_get_methodref_token()
15774         for inflated methods.
15775         (mono_custom_attrs_from_param): Ignore instances of generic types
15776         for the moment.
15777         (mono_reflection_bind_generic_parameters): New public function.
15778         Moved all the functionality from
15779         ves_icall_Type_BindGenericParameters() here and added support for
15780         dynamic types.
15781         (mono_reflection_define_generic_parameter): Initialize
15782         `klass->methods' here.
15783
15784         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15785         functionality into mono_reflection_define_generic_parameter().
15786         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15787         TypeBuilder, return that TypeBuilder.
15788
15789 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15790
15791         * appdomain.c: removed mono_delegate_semaphore.
15792
15793         * threadpool.c:
15794         (mono_thread_pool_add): moved hash table creation inside and the thread 
15795         creation outside of the critical region.
15796         (mono_thread_pool_finish): removed obsolete code.
15797         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15798         continue or exit the thread depending on the queue.
15799
15800 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15801
15802         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15803         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15804         handle more bool marshalling options
15805
15806 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15807
15808         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15809         arrays of structs. Also add a more descriptive error message when
15810         a structure member is marshalled as LPArray.
15811
15812 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15813
15814         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15815         marshalling arrays of complex types. Fixes #29098. Also remove an
15816         usused and incomplete function.
15817
15818 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15819
15820         * gc.c: report heap_size - free_bytes as total memory allocated
15821         (bug#49362).
15822
15823 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15824
15825         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15826         fix timezone handling problems on Windows.
15827         
15828         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15829         asserts when the year is outside the range handled by ms the functions.
15830
15831         * class.c (setup_interface_offsets): If the class is an interface,
15832         fill out its interface_offsets slot.
15833
15834 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15835
15836         * threadpool.c: mark threadpool threads as background.
15837
15838 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15839
15840         * decimal.c - define DECINLINE to nothing if not using GCC
15841
15842 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15843
15844         * assembly.c: More refcount fixes.
15845
15846 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15847
15848         * string-icalls.c: if we're not trimming, return the same string.
15849         When not splitting, don't create a new string.
15850
15851 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15852
15853         * image.c:
15854         (mono_image_open): increment the ref_count inside the critical section.
15855
15856 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15857
15858         * image.c (mono_image_open): Fix reference counting bug.
15859
15860 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15861
15862         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15863         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15864         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15865         mono_lookup_pinvoke_call throws.        
15866
15867 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15868
15869         * reflection.c (mono_reflection_parse_type): Fix #49114.
15870
15871         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15872         temporary workaround for cygwin header problem.
15873
15874         * object.c (mono_object_isinst): Synchronize this with the code
15875         generated by the JIT for casts.
15876
15877 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15878
15879         * reflection.c (encode_type): Fix #38332.
15880
15881 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15882
15883         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15884         the original method from the wrapper method.
15885
15886 2003-09-25  Martin Baulig  <martin@ximian.com>
15887
15888         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15889         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15890         (ves_icall_Type_get_IsGenericInstance): New interncall.
15891
15892 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15893
15894         * object.c: fix cast warning in big endian code.
15895
15896 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15897
15898         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15899         
15900 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15901
15902         * assembly.c: don't call check_env from mono_assembly_load. It's
15903         already done once in mono_assemblies_init and may cause headaches when
15904         multiple threads are loading assemblies.
15905
15906 2003-09-19  Martin Baulig  <martin@ximian.com>
15907
15908         * reflection.c (mono_reflection_define_generic_parameter): Don't
15909         allocate `klass->methods', set `klass->flags' to
15910         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
15911
15912 2003-09-18  Martin Baulig  <martin@ximian.com>
15913
15914         * class.c (mono_class_init): Don't create `class->methods' if it's
15915         already initialized.
15916
15917         * metadata.c (mono_metadata_load_generic_params): Make this
15918         actually work.
15919
15920         * reflection.c (mono_reflection_define_generic_parameter): Set
15921         parent class and interfaces from the constraints.
15922
15923         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
15924         to keep this struct in sync with the declaration in TypeBuilder.cs.
15925
15926 2003-09-17  Martin Baulig  <martin@ximian.com>
15927
15928         * metadata.h (MonoType): Replaced the data's `int type_param'
15929         field with `MonoGenericParam *generic_param'.
15930         (MonoGenericParam): Added `MonoClass *klass'.
15931
15932         * class.c (mono_class_from_gen_param): Removed the
15933         `MonoImage *image' and `int type_num' arguments.
15934
15935         * metadata.c (mono_metadata_parse_generic_param): New static
15936         method; creates a MonoGenericParam which just contains the index.
15937         (do_mono_metadata_parse_type): Call
15938         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
15939         MONO_TYPE_MVAR.
15940
15941         * reflection.c (mono_image_typedef_or_ref): Generic type
15942         parameters may be in the same assembly, but never use a typedef
15943         for them.
15944         (mono_reflection_define_generic_parameter): We're now creating a
15945         "real" class for the type parameter; it's now safe to call
15946         mono_class_from_mono_type() on the class'es type, it'll do the
15947         right thing.
15948
15949 2003-09-16  Martin Baulig  <martin@ximian.com>
15950
15951         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
15952         `symfile->range_entry_size' and `symfile->class_entry_size' here;
15953         the `symfile' data structure must be fully initialized before it
15954         gets added to the table.
15955
15956 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
15957
15958         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
15959
15960         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
15961         class init trampolines.
15962
15963 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
15964
15965         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
15966         to the built-in profiler to turn off time and allocation profiling
15967         respectively.
15968
15969 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15970
15971         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15972         g_direct_equal.
15973
15974         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15975         in human readable form.
15976
15977 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15978
15979         * reflection.c icall.c: Fixed warnings.
15980
15981         * image.c (load_class_names): Use a temporary hash table to hold the
15982         namespaces in order to avoid doing many string comparisons.
15983
15984         * image.h: Fix typo.
15985
15986         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15987         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15988         since the NULL case is short-circuited inside g_hash_table_lookup, 
15989         leading to better performance.  
15990
15991         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15992         obtain the first custom attribute for a given index. Depends on the
15993         CustomAttribute table being sorted by the parent field.
15994
15995         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15996         for better performance.
15997
15998 2003-09-07  Martin Baulig  <martin@ximian.com>
15999
16000         * class.c (mono_class_init): If we're a generic instance, inflate
16001         all our methods instead of loading them from the image.
16002         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16003
16004 2003-09-07  Martin Baulig  <martin@ximian.com>
16005
16006         * mono-debug-debugger.c: Added support for constructors.
16007
16008 2003-09-06  Martin Baulig  <martin@ximian.com>
16009
16010         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16011         New interncall.
16012
16013         * reflection.c (mono_reflection_setup_generic_class): Call
16014         ensure_runtime_vtable() to create the vtable.
16015
16016 2003-09-05  Martin Baulig  <martin@ximian.com>
16017
16018         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16019         MONO_TYPE_MVAR.
16020
16021 2003-09-04  Martin Baulig  <martin@ximian.com>
16022
16023         * reflection.c (mono_reflection_define_generic_parameter): Generic
16024         parameters start with zero.
16025
16026 2003-09-04  Martin Baulig  <martin@ximian.com>
16027
16028         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16029
16030         * reflection.h (MonoReflectionGenericParam): New typedef.
16031         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16032         the generic parameters from the managed TypeBuilder.
16033
16034         * reflection.c (mono_reflection_define_generic_parameter): New function.
16035         (mono_reflection_create_runtime_class): Encode generic parameters.
16036         (mono_reflection_setup_generic_class): New function; this is
16037         called after adding adding all generic params to the TypeBuilder.
16038         (encode_type): Added MONO_TYPE_VAR.
16039
16040 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16041
16042         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16043         here from the JIT.
16044
16045         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16046         load hook.
16047
16048 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16049
16050         * reflection.h reflection.c class.h class.c: Delete duplicate 
16051         definition of mono_type_get_name () from reflection.c and export the
16052         one in class.c.
16053
16054         * class.c: Class loading fixes from Bernie Solomon 
16055         (bernard@ugsolutions.com).
16056
16057         * reflection.c: Endianness fixes from Bernie Solomon 
16058         (bernard@ugsolutions.com).
16059         
16060 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16061
16062         * assembly.h assembly.c: Define a file format version for AOT
16063         libraries.
16064         
16065         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16066
16067         * appdomain.h (MonoJitInfo): New field to determine whenever the
16068         code is domain neutral.
16069         
16070 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16071
16072         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16073
16074 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16075
16076         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16077         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16078         Avoid caching the result since strings must be domain specific. Fixes
16079         #48050.
16080
16081 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16082
16083         * marshal.c (mono_marshal_init): Make this callable multiple times
16084         since it is hard to find a correct place to call it.
16085
16086         * object.c (mono_runtime_class_init): Execute static constructors in
16087         the correct appdomain.
16088
16089         * image.c (build_guid_table): Handle the case when multiple images have
16090         the same GUID.
16091
16092 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16093
16094         * icall.c: added a couple of icalls for System.Web.
16095
16096 2003-08-28  Martin Baulig  <martin@ximian.com>
16097
16098         * icall.c (ves_icall_Type_BindGenericParameters): Use
16099         `klass->generic_inst' instead of `&klass->byval_arg' in the
16100         mono_type_get_object() call.  The returned type must be
16101         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16102
16103 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16104
16105         * NOTES: New file.
16106
16107         * object.c (mono_class_proxy_vtable): Make it thread safe.
16108
16109         * pedump.c: Fix warning.
16110
16111         * object.c appdomain.h: Get rid of metadata_section. 
16112         It is no longer needed and it was causing deadlocks with domain->lock.
16113
16114         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16115
16116 2003-08-26  Martin Baulig  <martin@ximian.com>
16117
16118         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16119
16120 2003-08-26  Martin Baulig  <martin@ximian.com>
16121
16122         * pedump.c (main): Call mono_metadata_init(),
16123         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16124         and mono_loader_init().
16125
16126 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16127
16128         * loader.h: Add missing include to fix build.
16129
16130         * image.h: mono_image_load_references is no more.
16131
16132         * assembly.c: Reworked assembly loading to make it really thread safe.
16133         After these changes, the assembly returned by mono_assembly_open is
16134         fully initialized, i.e. all its references assemblies are loaded.
16135
16136         * assembly.c (mono_image_load_references): Renamed to 
16137         mono_assembly_load_references, and made private, since clients no
16138         longer need to call it.
16139
16140         * class.c: Removed calls to mono_assembly_load_references, since it was
16141         a source of deadlocks.
16142
16143         * loader.h loader.c class.h class.c: Protect data structures using a 
16144         new lock, the loader lock.
16145
16146         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16147         GPtrArrays only when needed.
16148
16149         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16150         into empty structures by mcs. Fixes pinvoke7.cs.
16151         
16152         * domain.c (mono_init): Call a new initialization function.
16153
16154         * appdomain.c (mono_runtime_init): Call the new initializer function
16155         of the marshal module.
16156
16157         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16158         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16159
16160         * marshal.h marshal.c: Added locks around the wrapper caches to make
16161         this module thread safe.
16162
16163         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16164         this argument. Fixes pinvoke1.exe.
16165
16166 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16167
16168         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16169         enumeration of values. Removed fields to store remote call output values in
16170         MonoAsyncResult. Not needed any more.
16171         * object.c: Initialize call_type and async_result fields in mono_message_init.
16172         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16173         dispatching the message.
16174         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16175         async call to finish. To do it use a message with EndInvoke call type.
16176
16177 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16178
16179         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16180         determines whenever a method has marshalling info.
16181
16182 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16183
16184         * assembly.c: fix the build on windows.
16185
16186 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16187
16188         * object.cs: Fixed bug #47785.
16189
16190 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16191
16192         * string-icalls.c (StringReplace): If their are no occurances of
16193         the old string found return a reference to the supplied
16194         string. This saves some memory and matches MS behavoir.
16195         
16196 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16197
16198         * socket-io.c: fixed compilation for systems that define AF_INET6
16199         and don't define SOL_IP/SOL_IPV6.
16200
16201 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16202
16203         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16204         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16205
16206         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16207
16208         * domain.c: Make this module thread safe.
16209
16210         * domain.c (mono_init): Call new initialization function.
16211
16212         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16213         reference types too. Fixes #38812.
16214
16215         * image.c (mono_image_init): Fixed warnings.
16216
16217         * class.c (mono_class_from_typeref): Handle assembly load failure
16218         correctly.
16219
16220         * appdomain.c (add_assemblies_to_domain): Handle the case when
16221         the references of an assembly are not yet loaded.
16222
16223         * metadata.c image.c assembly.c: Moved initialization of global
16224         variables to a separate function called at startup since lazy 
16225         initialization of these variables is not thread safe.
16226         
16227         * image.c assembly.c: Made this module thread safe by adding locks in 
16228         the appropriate places.
16229
16230         * domain.c (mono_init): Call the new initialization functions of the
16231         three modules.
16232
16233 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16234
16235         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16236           make a direct call. It is proxy's work to make the call asynchronous.
16237           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16238           the return values.
16239         * object.cs: mono_method_call_message_new(): read AsyncResult and
16240           state object from parameters list, if this info is requested.
16241         * object.h: Added fields to store remote call output values in
16242           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16243
16244 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16245
16246         * object.h: add needed fields to MonoThread.
16247         * threads.c, threads.h: allow registering a function to cleanup data
16248         allocated per thread by the JIT.
16249
16250 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16251
16252         * loader.h: portability fix by Bernie Solomon
16253         * <bernard@ugsolutions.com>.
16254
16255 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16256
16257         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16258         return a MonoArray. This simplifies the code and also ensures that
16259         the cache allways contains an object reference as a value.
16260
16261         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16262         function.
16263
16264 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16265
16266         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16267         fixes a problem with byte ordering when getting the address family for
16268         a socket.
16269
16270 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16271
16272         * .cvsignore: Added monosn.
16273
16274         * reflection.h reflection.c loader.c: Added support for parameter
16275         marshalling to dynamically created types. Fixes #47295.
16276
16277 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16278
16279         * rand.c: remove useless warnings.
16280
16281 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16282
16283         * class.c: implemented ldtoken for methods and fieldrefs.
16284
16285 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16286
16287         * threadpool.c: when mono_async_invoke was called, no one took care of
16288         monitoring the queue. So if the method invoked took some time and we
16289         got new async invoke requests after 500 ms (the thread created waited
16290         that long in WaitForSingleObject), the new async invoke was not called
16291         until the previous one finished.
16292
16293         This is fixed now. Thanks to Totte for helping with it.
16294
16295 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16296
16297         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16298
16299 2003-08-11  Martin Baulig  <martin@ximian.com>
16300
16301         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16302
16303 2003-08-06  Martin Baulig  <martin@ximian.com>
16304
16305         * mono-debug-debugger.c: Added support for static fields,
16306         properties and methods.
16307
16308 2003-08-06  Martin Baulig  <martin@ximian.com>
16309
16310         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16311         make this work for applications with multiple application domains.
16312
16313 2003-08-04  Martin Baulig  <martin@ximian.com>
16314
16315         * mono-debug-debugger.c: Completely reworked the type support; the
16316         most important thing is that we're now just using one single
16317         `MonoType' instance per type.
16318
16319 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16320
16321         * mono-endian.h, mono-endian.c, icall.c: Added icall
16322         ves_icall_System_Double_AssertEndianity to assert double word endianity
16323         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16324
16325 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16326
16327         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16328         support, icalls and fixes.
16329
16330 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16331
16332         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16333         classes that are a punctuation character in .NET is not the same a
16334         g_unichar_ispunct.
16335
16336 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16337
16338         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16339
16340 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16341
16342         * icall.c: Add new MemCopy internalcall.
16343         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16344         Simplified code; It is not necessary to handle all the cases here,
16345         as the C# code takes care of it.  Only handle the case of the name
16346         resource embedded into the assembly.
16347
16348         Changed signature to return the data pointer and the size of the
16349         data. 
16350
16351 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16352
16353         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16354         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16355
16356 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16357
16358         * socket-io.c: ignore EINTR error in select.
16359
16360 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16361
16362         * class.h, class.c: removed unused subclasses field in MonoClass.
16363
16364 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16365
16366         * icall.c: improve fix of get_base_definition(). If the parent class
16367           doesn't have the mehod, look at the parent of the parent.
16368         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16369           to check if a parameter is an in or out parameter
16370           (PARAM_ATTRIBUTE_IN is not set by default).
16371           mono_method_return_message_restore(): Use mono_class_value_size to
16372           get the size of a value type. mono_type_stack_size (parameterType)
16373           does not return the correct value if parameterType is byRef.
16374           mono_load_remote_field(), mono_load_remote_field_new(),
16375           mono_store_remote_field(), mono_store_remote_field_new():
16376           raise exception if the remote call returns an exception.
16377
16378 2003-07-28  Martin Baulig  <martin@ximian.com>
16379
16380         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16381         method.  This is a wrapper around mono_runtime_invoke() which
16382         boxes the instance object if neccessary.
16383
16384 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16385
16386         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16387         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16388
16389 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16390
16391         * icall.c: disable mcs bug workaround.
16392
16393 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16394
16395         * object.c (mono_runtime_class_init): Take the metadata_section
16396         mutex before obtaining the domain mutex.
16397
16398         * appdomain.h: Added definition of metadata_section mutex here. 
16399
16400         * object.c: define metadata_mutex here.
16401
16402 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16403
16404         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16405         fixed.
16406
16407 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16408
16409         * reflection.c: Fix bug #46669
16410
16411 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16412
16413         * exception.c:
16414         * exception.h:
16415         * icall.c:
16416         * object.h: fill in the type name for TypeLoadException.
16417
16418 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16419
16420         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16421         relationship between TypeBuilders while compiling corlib) and bug
16422         45993 (Array types returned from the runtime while compiling
16423         corlib were from the loaded corlib).
16424
16425 2003-07-22  Martin Baulig  <martin@ximian.com>
16426
16427         * mono-debug-debugger.c: Reworked the type support a bit more;
16428         distinguish between types and classes.
16429
16430 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16431
16432         * icall.c: add IsArrayImpl icall.
16433
16434 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16435
16436         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16437         initializing real_size only once. Also fix bug #46602.
16438
16439 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16440
16441         * object.c: Renamed mono_metadata_section to metadata_section.
16442
16443 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16444
16445         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16446           empty array if the type is an array. Fixed.
16447           ves_icall_MonoMethod_get_base_definition: if the base method
16448           is abstract, get the MethodInfo from the list of methods of
16449           the class.
16450         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16451           and it was 1-based. Fixed in mono_param_get_objects.
16452
16453 2003-07-20  Martin Baulig  <martin@ximian.com>
16454
16455         * mono-debug.h: Set version number to 31.
16456         (mono_debug_init): Added `MonoDomain *' argument.
16457
16458         * mono-debug-debugger.c: Reworked the type support; explicitly
16459         tell the debugger about builtin types; pass the `klass' address to
16460         the debugger.
16461
16462 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16463
16464         * image.c: Allow new metadata tables to be loaded without a
16465         warning. Also update the warning message to give the new constant value.
16466                 
16467 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16468
16469         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16470         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16471         array type representation changes.
16472
16473 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16474
16475         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16476         on Environment.Exit () call.
16477
16478 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16479
16480         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16481         requires a matching corlib.
16482
16483 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16484
16485         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16486           Committed again without the CRs.
16487         
16488 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16489
16490         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16491           getting it from the "this" socket instance. Did not work
16492           if the socket is a subclass of Socket.
16493           Also fixed bug #35371.
16494
16495 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16496
16497         * metadata.c: fixed size for TypedByRef.
16498         * loader.c: when searching for a method, consider the vararg amrker.
16499         * unicode.c, decimal.c: constify some arrays.
16500
16501 2003-07-15  Dick Porter  <dick@ximian.com>
16502
16503         * socket-io.c: Fixed compilation for gcc < 3.2.
16504
16505         Fixed compilation for machines that don't have AF_INET6 (thanks to
16506         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16507
16508         Fixed compile warnings.
16509         
16510         Fixed formatting and line endings.
16511
16512 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16513
16514         * socket-io.h:
16515         * socket-io.c: Added IPv6 support.
16516
16517 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16518
16519         * class.c (mono_class_is_assignable_from): New function to implement
16520         the is_assignable_from logic. Used by mono_object_isinst, 
16521         Type::IsAssignableFrom () and the interpreter.
16522
16523         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16524         Object, even interfaces.
16525         
16526         * object.c (mono_object_isinst): Implement in terms of 
16527         is_assignable_from.
16528
16529         * icall.c (ves_icall_type_is_assignable_from): New icall.
16530
16531 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16532
16533         * domain.c (foreach_domain): fix compiler warning.
16534
16535 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16536
16537         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16538         not available on all plattforms
16539
16540 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16541
16542         * image.h image.c: Store the metadata version string in MonoImage.
16543         * icall.c: New icall to retrieve the image version.
16544         * reflection.c (create_dynamic_image): Fill in the image version field
16545         * reflection.c (build_compressed_metadata): Use the image version
16546         from the image structure.
16547
16548 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16549
16550         * appdomain.c: modified comment.
16551         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16552         That will be its last iteration when mono_gc_cleanup is called from
16553         mono_runtime_cleanup and before the domain is unloaded.
16554
16555         Fixes bug #45962.
16556
16557 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16558
16559         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16560         attributes.
16561
16562 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16563
16564         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16565         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16566         Bernie Solomon <bernard@ugsolutions.com>.
16567
16568 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16569
16570         * object.c, object.h: provide mono_object_new_fast() for faster
16571         allocation in some special cases.
16572
16573 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16574
16575         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16576         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16577
16578 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16579
16580         * threadpool.c: fix leaks.
16581
16582 2003-07-01  Dick Porter  <dick@ximian.com>
16583
16584         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16585         using MonoGHashTables.  Fixes threadpool bug posted to list.
16586
16587 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16588
16589         * image.h, image.c: added support to load an assembly from a byte array.
16590         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16591         assembly bundle support.
16592
16593 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16594
16595         * threadpool.c (mono_thread_pool_add): keep a reference to the
16596         AsyncResult to prevent GC
16597
16598 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16599
16600         * class.c: leak fix.
16601
16602 2003-06-25  Dick Porter  <dick@ximian.com>
16603
16604         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16605         for the async object, the WaitHandle object will close the handle.
16606         Fixes bug 45321.
16607
16608 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16609
16610         * class.c: in mono_array_class_get (), lookup from the hash with the
16611         same type we insert: this works around a bug in
16612         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16613         lluis. The real fix will have to wait for after the release.
16614
16615 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16616
16617         * icall.c: fix memory leak when getting type members.
16618
16619 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16620
16621         * reflection.c: added more pubtoken special cases.
16622
16623 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16624
16625         * class.c: handle field offset correctly when class size
16626         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16627
16628 2003-06-20  Martin Baulig  <martin@ximian.com>
16629
16630         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16631         *image' field.
16632
16633 2003-06-20  Martin Baulig  <martin@ximian.com>
16634
16635         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16636
16637 2003-06-20  Martin Baulig  <martin@ximian.com>
16638
16639         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16640         just distinguish between variables in registers and variables at
16641         an offset relative to a register.
16642
16643 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16644
16645         * icall.c: #ifdef out latest changes until mcs is fixed.
16646
16647 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16648
16649         * icall.c: return members in metadata order.
16650
16651 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16652
16653         * icall.c: avoid infinite loop in GetTimeZoneData.
16654
16655 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16656
16657         * icall.c: added Marshal.Prelink/All icalls.
16658
16659 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16660
16661         * object.c, object.h: fix warnings and do some overflow checking
16662         when creating arrays.
16663
16664 2003-06-17  Dick Porter  <dick@ximian.com>
16665
16666         * file-io.h:
16667         * file-io.c: File attributes need to be tweaked slightly when
16668         passed from the managed to the w32 world.
16669
16670 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16671         * profiler.h profiler-private.h profiler.c: Rework last patch
16672         based on suggestion by Paolo.
16673         
16674 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16675
16676         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16677         instruction level coverage data collection.
16678         * profiler.h profiler.c (: Added new callback function which can be
16679         used by the profiler to limit which functions should have coverage
16680         instrumentation.
16681         * profiler.c (mono_profiler_load): Call g_module_build_path to
16682         generate the file name of the profiler library.
16683
16684 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16685
16686         * profiler.c, profiler.h, profiler-private.h: added basic block 
16687         coverage profiling API.
16688
16689 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16690
16691         * reflection.c (mono_reflection_create_runtime_class): Add support
16692         for events in dynamically generated code.
16693
16694         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16695         not allocated.
16696
16697 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16698
16699         * icall.c: when getting timezone info, return reasonable values if we
16700         can't get the actual data.
16701
16702 2003-06-14  Dick Porter  <dick@ximian.com>
16703
16704         * threads.c (start_wrapper): Remove the reference to the thread
16705         object in the TLS data, so the thread object can be finalized.
16706         This won't be reached if the thread threw an uncaught exception,
16707         so those thread handles will stay referenced :-( (This is due to
16708         missing support for scanning thread-specific data in the Boehm GC
16709         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16710
16711 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16712
16713         * reflection.c: ensure streams and tables are first allocated with
16714         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16715
16716 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16717
16718         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16719
16720 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16721
16722         * reflection.c (mono_reflection_create_runtime_class): Add support for
16723         properties to dynamically created classes.
16724         * reflection.c: Fix a few places where non-MonoObjects were inserted
16725         into the tokens hashtable.
16726
16727 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16728
16729         * object.c: some support to handle out of memory exceptions.
16730
16731 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16732
16733         * marshal.c (mono_marshal_get_native_wrapper): support reference
16734         return types
16735
16736 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16737
16738         * object.h, object.c: more portability stuff from Bernie Solomon.
16739         Unexport mono_object_allocate(). Added mono_object_unbox ().
16740         Set exitcode when an unhandled exception is thrown.
16741
16742 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16743
16744         * marshal.c (mono_marshal_get_native_wrapper): use custom
16745         marshaler for return types.
16746
16747 2003-06-10  Dick Porter  <dick@ximian.com>
16748
16749         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16750         ip_mreq is available
16751
16752 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16753
16754         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16755         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16756         by Bernie Solomon <bernard@ugsolutions.com>.
16757
16758 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16759
16760         * gc.c (mono_gc_init): Avoid error message on shutdown when
16761         GC_DONT_GC=1 is used.
16762
16763         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16764         New icall to return the GUID of a module.
16765
16766 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16767
16768         * class.c: ensure instance size always includes the parent's size
16769         even whem class size is set explicitly (fixes bug#44294).
16770
16771 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16772
16773         * profiler.h, profiler.c: made the simple profiler thread-safe,
16774         get more accurate timing info. Allow the loading of an
16775         externally-developed profiler module.
16776
16777 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16778
16779         * marshal.c (mono_marshal_get_native_wrapper): improved
16780         class/byref arguments.
16781         (mono_marshal_get_native_wrapper): better string marshaling support.
16782
16783 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16784
16785         * class.c: ensure .pack and .size are handled correctly and
16786         simplified layout of static fields.
16787
16788 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16789
16790         * appdomain.c
16791         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16792
16793         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16794         current directory (fix bug 44008)
16795
16796 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16797
16798         * marshal.c (mono_marshal_get_native_wrapper): started support for
16799         custom marshalers.
16800         (mono_delegate_to_ftnptr): consider marshalling specifications
16801
16802 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16803
16804         * reflection.c, reflection.h: emit custom marshal info.
16805
16806 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16807
16808         * object.c: free the GError.
16809         * icall.c: added CloseEvent_internal.
16810         * threads.[ch]:
16811         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16812         call.
16813
16814 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16815
16816         * loader.c (mono_method_get_signature): Add support for dynamic
16817         assemblies.
16818
16819 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16820
16821         * reflection.c: fixed bug #43905.
16822
16823 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16824
16825         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16826         handling TypedReference and ArgIterator.
16827         * loader.c, loader.h: added function to get signature at call site.
16828
16829 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16830
16831         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16832         data readonly. Buglets and warning fixes. Some MethodSpec support.
16833
16834 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16835
16836         * class.h, class.c, object.c: remove relative numbering support.
16837
16838 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16839
16840         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16841         free the string, until we get a chance to fix Gtk#
16842
16843 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16844
16845         * marshal.c: revert last patch.
16846
16847 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16848
16849         * icall.c: updates for new mono_class_vtable() not calling
16850         the type constructor anymore.
16851
16852 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16853
16854         * object.h, object.c: separate vtable creation from type
16855         initialization. Make running the .cctor thread safe.
16856
16857 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16858
16859         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16860
16861 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16862
16863         * loader.c (mono_get_method): consider calling convention
16864
16865 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16866
16867         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16868         to return the invisible global type for a module.
16869
16870         * reflection.c (mono_image_build_metadata): Emit global fields too.
16871
16872 2003-05-20  Peter Williams  <peterw@ximian.com>
16873
16874         * loader.c (mono_lookup_internal_call): Add a few newlines.
16875
16876 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16877
16878         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16879         literal strings.
16880
16881         * appdomain.c (set_domain_search_path): Recalculate search path when
16882         AppDomainSetup.PrivateBinPath changes.
16883
16884         * object.c (mono_class_compute_gc_descriptor): It turns out some
16885         parts of the class libs (like System.Thread) holds pointers to
16886         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16887         to treat native int a pointer type here.
16888         
16889 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16890
16891         * appdomain.h, domain.c: add hashtable for jump target resolution.
16892
16893 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16894
16895         * reflection.h reflection.c icall.c: Added new icalls 
16896         GetManifestResourceInfoInternal, GetModulesInternal and support
16897         infrastructure.
16898
16899 2003-05-16  Dick Porter  <dick@ximian.com>
16900
16901         * icall.c:
16902         * file-io.h:
16903         * file-io.c: Implement System.IO.MonoIO::GetTempPath
16904
16905 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
16906
16907         * object.c: mono_store_remote_field: little fix to previous patch.
16908
16909 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16910
16911         * class.c: add constructors to array classes.
16912         * icall.c: special case array construction for InternalInvoke (),
16913
16914 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
16915
16916         * class.h class.c reflection.c object.c: Added support for field
16917         defaults in dynamically generated classes.
16918
16919 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
16920
16921         * reflection.c: properly encode charset for ddlimport.
16922
16923 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
16924
16925         * threads.c: allow compiling without GC.
16926
16927 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16928
16929         * appdomain.h, object.c, object.h, threads.c, threads.h: added
16930         handling of thread static data.
16931
16932 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16933
16934         * reflection.h, reflection.c: added mono_custom_attrs_free ().
16935
16936 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
16937
16938         * class.c (mono_array_class_get): always set the serializable flags
16939         (mono_array_class_get): always set the SEALED attribute for array types
16940
16941 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
16942
16943         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
16944         attributes (fix for bug 42021).
16945
16946 2003-05-12  Dick Porter  <dick@ximian.com>
16947
16948         * gc.c: Don't run finalizers when the finalizer thread is
16949         finishing up, because the default domain has already been
16950         destroyed.
16951
16952 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
16953
16954         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
16955         value is null, we should throw an exception.   This is slightly
16956         different than the other conventions used for the constructor.
16957
16958 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16959
16960         * socket-io.c: fixed windows build.
16961
16962 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16963
16964         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
16965
16966 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
16967
16968         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16969         compilers.
16970
16971 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16972
16973         * class.c (mono_class_layout_fields): Add experimental GC aware
16974         auto layout facility. Requires class library changes to work correctly.
16975
16976         (mono_class_setup_vtable): Avoid overriding explicit interface
16977         method implementations. Fixes iface3.exe test.
16978
16979         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16980         object reference.
16981         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16982         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16983
16984         * metadata.h: Add new type classification macro which determines
16985         whenever the type holds an object reference.
16986
16987 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16988
16989         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16990
16991 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16992
16993         * gc.c (finalizer_thread): Work around a GC bug.
16994
16995 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16996
16997         * marshal.c (emit_struct_conv): allow unions
16998
16999         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17000
17001 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17002
17003         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17004
17005 2003-05-06  Martin Baulig  <martin@ximian.com>
17006
17007         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17008
17009 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17010
17011         * socket-io.c:
17012         (Select_internal): allow NULLs, don't create arrays if not needed.
17013         Coupled with Socket.cs changes.
17014
17015         * threadpool.c:
17016         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17017         register a finalizer for it that will close the semaphore handle. This
17018         fixes the leak and make Lupus' test run with > 4080 loops.
17019
17020 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17021
17022         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17023         Jerome Laban (bug #42287)
17024
17025 2003-05-02  Martin Baulig  <martin@ximian.com>
17026
17027         * debug-mono-symfile.h
17028         (MonoSymbolFile): Moved declaration into mono-debug.h.
17029         (MonoDebugMethodJitInfo): Likewise.
17030         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17031         argument.
17032         (_mono_debug_address_from_il_offset): Take a
17033         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17034
17035         * mono-debug.h
17036         (MonoDebugDomainData): New struct.
17037         (mono_debug_get_domain_data): New function.
17038         (mono_debug_add_method): Take an additional `MonoDomain *'
17039         argument.
17040         (mono_debug_source_location_from_address): Likewise.
17041         (mono_debug_il_offset_from_address): Likewise.
17042         (mono_debug_address_from_il_offset): Likewise.
17043
17044 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17045
17046         * reflection.c: one more check for null type in custom attrs.
17047
17048 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17049
17050         * reflection.c: avoid warning (comparison is always false due to limited
17051         range of data type).
17052
17053 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17054
17055         * icall.c: throw an exception in Type.GetField if the argument 'name'
17056         is NULL.
17057
17058 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17059
17060         * reflection.c: fixed handling of enums in named arguments to custom
17061         attributes (bug #42123).
17062
17063 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17064
17065         * reflection.c: use the right array element type and handle
17066         a null for a Type argument, too.
17067
17068 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17069
17070         * reflection.c: handle arrays as arguments to custom attributes.
17071
17072 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17073
17074         * reflection.c: handle a string value in a custom attr
17075         ctor that takes an object.
17076
17077 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17078
17079         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17080         (fix bug #42063)
17081
17082 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17083
17084         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17085
17086 2003-04-27  Martin Baulig  <martin@ximian.com>
17087
17088         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17089         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17090         MONO_DEBUGGER_EVENT_BREAKPOINT.
17091         (mono_breakpoint_trampoline_code): Removed.
17092         (mono_debugger_event_handler): The last argument is now a
17093         `guint32'.
17094         (mono_debugger_insert_breakpoint_full): Removed the
17095         `use_trampoline' argument.
17096         (mono_debugger_method_has_breakpoint): Likewise.
17097         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17098         mono_debugger_breakpoint_callback(); take the method and
17099         breakpoint number as arguments.
17100
17101 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17102
17103         * metadata.c: fix off by one when loading parameters attributes.
17104
17105 2003-04-24  Martin Baulig  <martin@ximian.com>
17106
17107         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17108
17109 2003-04-24  Martin Baulig  <martin@ximian.com>
17110
17111         * mono-debug-debugger.c: Moved all code which interacts with the
17112         Mono Debugger here.
17113
17114         * debug-mono-symfile.c: This code now just deals with the symbol
17115         file itself, the debugger code is now in mono-debug-debugger.c.
17116
17117 2003-04-23  Martin Baulig  <martin@ximian.com>
17118
17119         * mono-debug.c (mono_debug_source_location_from_il_offset):
17120         New method; like mono_debug_source_location_from_address(), but
17121         takes an IL offset instead of a machine address.
17122
17123 2003-04-23  Martin Baulig  <martin@ximian.com>
17124
17125         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17126         `line' field; this is now computed by the debugger.
17127
17128 2003-04-23  Martin Baulig  <martin@ximian.com>
17129
17130         * mono-debug.[ch]: New files.  This is the new debugging interface.
17131
17132         * mono-debug-debugger.[ch]: New files.  Moved all code which
17133         interacts with the Mono Debugger here.
17134
17135 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17136
17137         * domain.c (mono_init): initialize mono_defaults.monitor_class
17138
17139 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17140
17141         * reflection.c (method_encode_code): Add a spicy exception to help
17142         future compiler authors.
17143
17144 2003-04-21  Martin Baulig  <martin@ximian.com>
17145
17146         * icall.c
17147         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17148         Make this work with relative pathnames; g_filename_to_uri() needs
17149         an absolute filename.
17150
17151 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17152
17153         * icall.c: Track name changes in Object and ValueType.
17154
17155 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17156
17157         * metadata.c (mono_type_stack_size): size should be a multiple of
17158         sizeof (gpointer)
17159
17160 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17161
17162         * gc.c:
17163         (internal_domain_finalize): moved into mono_domain_finalize. No need
17164         to create another thread because the finalizers will be run in the
17165         finalizer thread.
17166         
17167         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17168         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17169         to be run (MS does this too).
17170
17171 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17172
17173         * object.c (mono_class_compute_gc_descriptor): Update comment.
17174
17175         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17176
17177         * image.h: Add synchronized wrapper cache.
17178
17179         * image.c (do_mono_image_open): Initialize cache.
17180
17181         * reflection.c (create_dynamic_mono_image): Initialize cache.
17182
17183 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17184
17185         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17186         ves_icall_System_Buffer_ByteLengthInternal.
17187
17188 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17189
17190         * reflection.c: setup klass->nested_in earlier. Allow
17191         a dash in the assembly name.
17192
17193 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17194
17195         * metadata.c (mono_type_to_unmanaged): dont access
17196         type->data.klass for MONO_TYPE_OBJECT
17197         (mono_type_to_unmanaged): consider System.Delegate class
17198
17199 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17200
17201         * class.c: just setup supertypes in the proper place instead of
17202         initializing the full element class for arrays.
17203
17204 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17205
17206         * class.c: ensure the element class of arrays is initialized.
17207         Setup the supertype info for array classes, too.
17208
17209 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17210
17211         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17212
17213 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17214
17215         * Makefile.am: re-added -m option when running cygpath. This way,
17216         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17217         separator.
17218         * mono-config.c: same codepath for locating mono config file for WIN32
17219         and the rest.
17220         * assembly.c: if mono_assembly_setrootdir is called, don't override
17221         the value set.
17222
17223 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17224
17225         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17226         MONO_ASSEMBLIES variable.
17227
17228 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17229
17230         * icall.c: added Assembly::GetNamespaces() icall.
17231
17232 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17233
17234         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17235
17236 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17237
17238         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17239         * object.c: fixed bug in the construction of vtable for proxies
17240
17241 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17242
17243         * object.c (mono_array_new): Mark mono_array_new as an icall.
17244
17245 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17246
17247         * class.c: fixed test for public method when overriding interfaces.
17248         Closes bug #40970.
17249
17250 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17251
17252         * appdomain.h, domain.c: added mono_domain_foreach() to
17253         be able to access the currently loaded appdomains.
17254         * object.c: make string interning work across sppdomains.
17255         Mark some functions for use as icalls.
17256
17257 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17258
17259         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17260
17261         * reflection.h reflection.c: Allocate long living data using 
17262         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17263
17264         * reflection.c: Double the allocation size in streams instead of
17265         increasing it, to prevent unneccesary copying on large assemblies.
17266         
17267         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17268         creation if the assembly does not have the Run flag set.
17269
17270 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17271
17272         * class.h: avoid the C++ keywords in header files (Jerome Laban
17273         spotted and fixed this).
17274
17275 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17276
17277         * object.c:
17278         (mono_unhandled_exception): fill in the arguments for the
17279         UnhandledException event. Only trigger that event for the default
17280         domain (as MS does).
17281
17282 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17283
17284         * object.c: Improve typed allocation stuff based on suggestions from
17285         Paolo. Also turn it on if the GC library supports it.
17286
17287 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17288
17289         * object.c object.h class.h: Added experimental typed allocation
17290         facility using the interfaces in gc_gcj.h.
17291
17292         * os/gc_wrapper.h: Added new include files.
17293         
17294 2003-04-03  Martin Baulig  <martin@ximian.com>
17295
17296         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17297         which is not yet enabled by default.
17298
17299         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17300         functions.
17301         (mono_gc_lock, mono_gc_unlock): New static functions.
17302
17303         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17304         functions; stop/start the world for the garbage collector.  This
17305         is using the windows API; we need to complete the SuspendThread()/
17306         ResumeThread() implementation in the io-layer to make this work on Unix.
17307         (mono_gc_push_all_stacks): New public function; tells the garbage
17308         collector about the stack pointers from all managed threads.
17309
17310 2003-04-03  Martin Baulig  <martin@ximian.com>
17311
17312         * object.h (MonoThread): Added `gpointer stack_ptr'.
17313
17314         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17315
17316 2003-04-03  Martin Baulig  <martin@ximian.com>
17317
17318         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17319
17320 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17321
17322         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17323         field.last.
17324
17325 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17326
17327         * loader.c (mono_lookup_internal_call): Report the corlib that is
17328         out of sync.
17329
17330 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17331
17332         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17333         System.DBNull (it's class not valuetype).
17334
17335 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17336
17337         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17338         if the array method was already assigned a token (fixes bug#40646).
17339
17340 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17341
17342         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17343         if no assembly is given.
17344
17345 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17346
17347         * metadata.h: Added the new tables.
17348
17349         * row-indexes.h: Added definitions for new tables.
17350
17351         * metadata.c: Add schemas for new tables, and add support for
17352         computing the sizes of them.
17353
17354         * class.c: Update for handling the new type cases.
17355
17356 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17357
17358         * metadata.h (MONO_TYPE_IS_VOID): new macro
17359
17360 2003-03-31  Martin Baulig  <martin@ximian.com>
17361
17362         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17363
17364         * threads.c (mono_thread_new_init): Call `thread_created' in the
17365         mono_thread_callbacks.
17366
17367 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17368
17369         * loader.h: added marshalbyrefobject_class to mono_defaults
17370         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17371         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17372           generation of output parameters.
17373           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17374         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17375           contextbound and the target object belongs to the context of the caller.
17376         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17377         * object.c: Implemented support for interfaces and abstract classes
17378           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17379           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17380
17381 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17382
17383         * class.h class.c (mono_class_is_subclass_of): New function.
17384         
17385         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17386         routines for most common case (calls from ArrayList::ToArray).
17387
17388         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17389         routine so programs which call Environment::Exit() can be profiled.
17390
17391         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17392         Added MONO_ARCH_SAVE_REGS.
17393
17394         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17395
17396 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17397
17398         * blob.h: Add a couple of new MonoType types definitions.
17399
17400         * tabledefs.h: Add a couple of new call convs.
17401
17402 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17403
17404         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17405         the layout of the class.
17406
17407         * reflection.c (alloc_table): double the size on overflow to avoid
17408         unnecessary copying.
17409
17410         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17411         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17412         null so it can be garbage collected.
17413         
17414 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17415
17416         * reflection.c (mono_reflection_get_type): Return the resolved type
17417         only if it is in the assembly we searched.
17418
17419         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17420
17421         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17422         method.
17423
17424 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17425
17426         * appdomain.c:
17427         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17428         the right one is 'file:///blah', but MS allows it.
17429         * assembly.c:
17430         (mono_assembly_open): allow 'file://blah'
17431
17432         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17433
17434 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17435
17436         * socket-io.c: fixes bug #40310.
17437
17438 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17439
17440         * reflection.c (mono_reflection_parse_type): handle deeply nested
17441         types correctly.
17442
17443         * reflection.c (mono_image_create_token): Use unique token values
17444         since they will be put into a hash table.
17445
17446         * class.c (mono_class_setup_vtable): If a method occurs in more than
17447         one place in the vtable, and it gets overriden, then change the
17448         other occurances too.
17449
17450         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17451         object as return type.
17452
17453 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17454
17455         * icall.c: Deleted "ToString" implementation for double and float
17456         because they are full implemented in managed code.
17457
17458 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17459
17460         * reflection.c, reflection.h: implemented and exported functions
17461         to retrieve info about custom attributes.
17462
17463 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17464
17465         * appdomain.c: moved Uri handling to assembly.c
17466         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17467         work when using a file Uri in *nix and windows.
17468
17469         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17470         GetReferencedAssemblies.
17471
17472 2003-03-18  Dick Porter  <dick@ximian.com>
17473
17474         * icall.c: Rename a couple of internal calls
17475
17476         * threads.c: Set the thread state to Stopped when a thread exits.
17477         Fixes bug 39377.
17478
17479 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17480
17481         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17482         New icall.
17483
17484         * object.c (mono_class_vtable): fix warning.
17485
17486 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17487
17488         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17489
17490         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17491         memory.
17492         (method_encode_clauses): Create exception info structures in the right
17493         order.
17494         (mono_reflection_setup_internal_class): Initialize supertypes field.
17495
17496         * class.c object.c: Handle interfaces which implement other interfaces 
17497         correctly.
17498
17499         * class.h class.c: Move the supertypes array initialization code into 
17500         a separate function so it can be used for dynamic types too. Also call
17501         it earlier, in mono_class_init(), since it can be used before the
17502         type is initialized.
17503
17504 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17505
17506         * Makefile.am:
17507         * assembly.c:
17508         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17509
17510         * appdomain.c:
17511         * appdomain.h:
17512         * marshal.c:
17513         * object.c: remove warnings.
17514
17515 2003-03-13  Martin Baulig  <martin@ximian.com>
17516
17517         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17518         (MonoDebugLexicalBlockEntry): New types.
17519
17520         * debug-mono-symfile.c
17521         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17522
17523 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17524
17525         * process.c: ret can be any non-zero value accroding to MS doc.
17526
17527 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17528
17529         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17530         fixing a warning for a miss-used prototype, would have cause
17531         random memory corruption.
17532
17533 2003-03-07  Martin Baulig  <martin@ximian.com>
17534
17535         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17536         getting really annoying ....
17537
17538 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17539
17540         * reflection.c (fixup_method): added support for array methods.
17541
17542 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17543
17544         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17545         (pointed out by Michael Adams).
17546
17547 2003-03-04  Dick Porter  <dick@ximian.com>
17548
17549         * icall.c: Temporarily reverted the Double and Single ToString()
17550         change, because it broke nunit.
17551
17552 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17553
17554         * object.h, threads.h: make include files compatible with C++
17555         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17556
17557 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17558
17559         * icall.c: Erased ToString helper functions for Double and Single.
17560         Now, that implementations ar all in managed code (Double and Single
17561         Formatters).
17562
17563 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17564
17565         * appdomain.c: Added method for initializing the default context of
17566         a domain. Added internal call for getting the default context.
17567         * appdomain.h: Added context variable in MonoDomain struct.
17568         * domain.c: mono_domain_set also sets the default context of the domain
17569         * icall.c: Mapped internal method InternalGetDefaultContext.
17570         * object.c: mono_object_get_virtual_method returns always a remoting
17571         wrapper if the object is a transparent proxy.
17572         mono_runtime_invoke_array: when creating an object by calling the
17573         constructor, if the created object is a proxy, then the constructor should
17574         be called using the a remoting wrapper.
17575
17576 2003-03-03  Dick Porter  <dick@ximian.com>
17577
17578         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17579         variable so it compiles on solaris.  Problem spotted by
17580         Christopher Taylor <ct@cs.clemson.edu>
17581
17582 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17583
17584         * appdomain.c:
17585         (get_info_from_assembly_name): don't leak value.
17586
17587         * icall.c:
17588         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17589         result.
17590
17591 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17592
17593         * assembly.c: export mono_image_load_references ().
17594         * class.c: handle function pointers. mono_class_from_name() now
17595         supports nested type names directly.
17596
17597 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17598
17599         * reflection.h reflection.c: Encode already created dynamic methods 
17600         and fields correctly as a DEF instead of a REF.
17601
17602         * reflection.c: Get rid of the force_ref argument to 
17603         mono_image_typedef_or_ref since it was wrong in the first place.
17604
17605         * string-icalls.c: add error checking to string constructors according
17606         to the MSDN docs.
17607
17608         * reflection.c: Emit types in the order their TypeBuilders were 
17609         created. Previously, a new table index was assigned to each type before
17610         the tables were emitted. This was wrong because the signature blob
17611         might already refer to a type by its original table index.
17612
17613 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17614
17615         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17616         change.
17617         
17618 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17619
17620         * Makefile.am: make assemblies dir have \ instead of / on windows.
17621
17622 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17623
17624         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17625         iterate over the NESTEDCLASS table using a linear search since the
17626         table is not guaranteed to be sorted by the secondary key.
17627
17628         * class.c (mono_class_create_from_typedef): fixed up call to
17629         mono_metadata_nesting_typedef.
17630         
17631 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17632
17633         * marshal.c (mono_string_to_byvalstr): clear the memory as
17634         suggested by Jerome Laban <jlaban@wanadoo.fr>
17635
17636 2003-02-26  Dick Porter  <dick@ximian.com>
17637
17638         * process.c: Cope with padding in .rsrc blocks
17639
17640 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17641
17642         * metadata.h: reverted the filter_len change, it breaks reflection
17643         
17644 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17645
17646         * metadata.h: added a new field to store the filter_len
17647         
17648
17649 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17650
17651         * reflection.c: handle custom attributes for types and members
17652         created with Reflection.Emit (bug#38422).
17653
17654 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17655
17656         * reflection.c: define RTSpecialName automatically for constructors for
17657         compatibility with MS.NET.
17658
17659         * reflection.c (mono_reflection_create_runtime_class): initialize
17660         nested_in field of dynamically created classes.
17661
17662 2003-02-22  Martin Baulig  <martin@ximian.com>
17663
17664         * debug-mono-symfile.h: Incremented version number.
17665
17666 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17667
17668         * object.h icall.c process.c: fix warnings.
17669
17670 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17671
17672         * appdomain.h appdomain.c:
17673         (mono_domain_try_type_resolve): split the 
17674         name_or_tb argument into a name and a tb argument.
17675         (mono_domain_has_type_resolve): new function to check whenever the
17676         application has registered a TypeResolve event handler.
17677         
17678         * icall.c reflection.h reflection.c: move the type resolve logic into
17679         mono_reflection_get_type () so it will be invoked when 
17680         Assembly::GetType () is called.
17681
17682         * reflection.c:
17683         (mono_reflection_get_type): renamed to get_type_internal.
17684         (mono_reflection_get_type): fixed type name generation so it works 
17685         for nested types too.
17686         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17687         costly type name generation if there is no resolve event handler.
17688
17689 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17690
17691         * class.c, image.c: load exported types from file references.
17692
17693 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17694
17695         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17696           used to cache the managed methods used to create proxies and make 
17697           remote invocation of methods.
17698         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17699           to be remotely created.
17700         * object.c: Modified the method mono_class_vtable(). It now initializes 
17701           the remote flag of the vtable. Modified mono_object_new_specific(), 
17702           so now it checks the remote flag.
17703         * icall.c: Added a couple of internal methods, one for enabling instance 
17704           creation interception for a type, and one for creating objects bypassing
17705           the remote check.
17706
17707 2003-02-18  Martin Baulig  <martin@ximian.com>
17708
17709         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17710         New interncall to get a method's metadata token.
17711
17712         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17713         New interncall for the debugger.
17714
17715 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17716
17717         * class.c (mono_class_setup_vtable): allocate supertype array
17718
17719 2003-02-18  Martin Baulig  <martin@ximian.com>
17720
17721         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17722
17723 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17724
17725         * reflection.c:
17726         (assembly_name_to_aname): jump over unknown properties (i've found
17727         something like: 'type, assembly, version=xxx, custom=null, public...',
17728         so now will ignore custom=null and still get the rest of the values).
17729
17730 2003-02-17  Dick Porter  <dick@ximian.com>
17731
17732         * threads.c: Have Thread.Start() wait for a semaphore to signal
17733         that the thread has set up all its local data.  This fixes bug
17734         34323, where Abort() raced the new thread's TLS data.
17735
17736         Also removes the handle_store() call from start_wrapper, because
17737         threads are now always created suspended and there is no longer a
17738         race between the parent and child threads to store the info.
17739
17740 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17741
17742         * image.c: explain the #- heap issue in a message, hopefully
17743         avoiding FAQs on mono-list.
17744
17745 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17746
17747         * icall.c:
17748         (GetEntryAssembly): if the domain has not invoked
17749         AppDomain.ExecuteAssembly yet, return the assembly of the default
17750         AppDomain.
17751
17752 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17753
17754         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17755
17756 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17757
17758         * metadata.c, reflection.c: simple speedup to type hash
17759         and equals code.
17760
17761 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17762
17763         * image.c, image.h, class.c, assembly.c: move module loading
17764         to MonoImage. When loading metadata, consider alignemnet from
17765         the start of metadata, not from the metadata address in memory.
17766
17767 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17768
17769         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17770         AssemblyBuilder objects. Factored out custom attribute creation into
17771         a separate function.
17772         (create_custom_attr): new function to create custom attributes.
17773
17774 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17775
17776         * Makefile.am: Got tired of typing the full pathname to pedump.
17777         Until there is another option, am installing this.
17778
17779 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17780
17781         * class.c (class_compute_field_layout): always set field->parent 
17782         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17783
17784 2003-02-11  Dick Porter  <dick@ximian.com>
17785
17786         * threads-types.h:
17787         * monitor.c: Rewrote Monitor, making lock much faster and
17788         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17789         creates them as needed.
17790
17791         * exception.c: Added SynchronizationLockException
17792
17793         * threads.c: Deleted old Monitor implementation.  The new one is
17794         in a new file.
17795
17796 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17797
17798         * class.c: handled TypedReference type code. Set the correct size for
17799         class data. Setup interface_offsets for interface classes, too.
17800
17801 2003-02-09  Martin Baulig  <martin@ximian.com>
17802
17803         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17804
17805 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17806
17807         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17808         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17809         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17810         * verify.c: check for code that runs after the end of the method.
17811
17812 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17813
17814         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17815         "System.Math::Round2".
17816         * sysmath.h: Added Floor, Round and Round2 definitions.
17817         * sysmath.c: Modified certain functions that were not 100% compliant
17818         with MS.NET (math precision) and added the implementation of Floor,
17819         Round and Round2.
17820
17821 2003-02-07  Martin Baulig  <martin@ximian.com>
17822
17823         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17824
17825 2003-02-07  Martin Baulig  <martin@ximian.com>
17826
17827         * debug-mono-symfile.c: Reflected latest symwriter changes.
17828         (mono_debug_create_mono_symbol_file): Removed.
17829         (mono_debug_open_mono_symbol_file): Take an argument which
17830         specifies whether to create a dynamic symbol file.
17831
17832 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17833
17834         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17835
17836 2003-02-05  Martin Baulig  <martin@ximian.com>
17837
17838         * reflection.c (mono_image_build_metadata): Make this public,
17839         protect it against being called multiple times, don't create
17840         resources and don't build the compressed metadata here.
17841         (mono_image_create_pefile): Do this here.
17842
17843         * icall.c
17844         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17845
17846 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17847
17848         * socket-io.c: fixed bug #36322.
17849
17850 2003-02-06  Piers Haken <piersh@friskit.com>
17851
17852         * appdomain.[ch]:
17853         * class.h:
17854         * debug-mono-symfile.c:
17855         * icall.c:
17856         * loader.c:
17857         * mono-config.c:
17858         * monosn.c:
17859         * reflection.c:
17860         * socket-io.c: warning cleanups
17861
17862 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17863
17864         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17865         function. works like remoting invoke, but does a check for the Proxy first.
17866
17867 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17868
17869         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17870
17871 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17872
17873         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17874         array of pointers.
17875         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17876         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17877
17878         * object.c (mono_store_remote_field_new): used by the new jit
17879         instead of mono_store_remote_field
17880         (mono_load_remote_field_new): used by the new jit
17881         instead of mono_load_remote_field
17882
17883 2003-02-05  Patrik Torstensson
17884
17885         * appdomain.c: changed unload to take the domain id instead
17886         of domain
17887         
17888         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17889
17890
17891 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17892
17893         * appdomain.c: don't look for assemblies in ApplicationBase if
17894         PrivateBinPathProbe is set.
17895
17896 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17897
17898         * object.c: make the first argument in main_args contain the absolute
17899         path to the assembly. Fixes bug #37511.
17900
17901 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17902
17903         * icall.c: get correct UTC offset for countries not using daylight
17904         time saving. Fixes bug #30030.
17905
17906 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17907
17908         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
17909         and 1 are the family).
17910
17911 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
17912
17913         * icall.c (ves_icall_InternalExecute): removed wrong assertion
17914
17915         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
17916
17917 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
17918
17919         * reflection.c: added support for SignatureHelper tokens, which is
17920         needed by the Calli opcode.
17921
17922         * reflection.h: track changes to SignatureHelper class.
17923
17924         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
17925
17926 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17927
17928         * appdomain.c: fixed loading assemblies from PrivateBinPath.
17929
17930 2003-02-03  Patrik Torstensson
17931         * appdomain.[c|h], domain.c : 
17932          - Added support for getting a domain via domain id
17933          - Support for setting and getting domain from System.AppDomain 
17934            (used in cross appdomain channel)
17935          - Added support for get/set for a MonoAppContext on a thread 
17936            (Context class in System.Runtime.Remoting.Contexts),
17937          - Removed hack in Get/SetData and ExecuteAssembly.
17938         
17939         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
17940         the managed world to get control when a proxy is created.
17941
17942         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
17943         
17944 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
17945
17946         * icall.c
17947         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17948         Populate the codebase field as well.
17949
17950 2003-02-02  Martin Baulig  <martin@ximian.com>
17951
17952         * debug-mono-symfile.c
17953         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
17954         (mono_debug_symfile_add_method): Allow interncalls.
17955
17956 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17957
17958         * icall.c: throw parse exception if strtod fails or the string is empty.
17959
17960 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
17961
17962         * marshal.c: handle object type separately from defined
17963         class types.
17964
17965 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
17966
17967         * marshal.c: handle NATIVE_LPSTR for strings when it's
17968         explicitly specified.
17969
17970 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17971
17972         * reflection.c, reflection.h, icall.c: setup the reflection
17973         handle cache for ModuleBuilders and AssemblyBuilders.
17974
17975 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17976
17977         * reflection.c (reflection_methodbuilder_to_mono_method): set
17978         pinvoke flag
17979
17980 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17981
17982         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17983
17984 2003-01-29  Dick Porter  <dick@ximian.com>
17985
17986         * threads.c: No need for the fake_thread kludge now that Thread
17987         doesn't run a class constructor
17988         
17989 2003-01-29  Dick Porter  <dick@ximian.com>
17990
17991         * threads.c: Use g_direct_hash instead of the rather bogus
17992         g_int_hash
17993
17994 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17995
17996         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17997         (fix pinvoke12.exe)
17998         (mono_marshal_get_struct_to_ptr): generate valid IL code
17999         (mono_marshal_get_ptr_to_struct): generate valid IL code
18000         (*): correctly set sig->pinvoke, we need to memdup the signature
18001         to do that
18002
18003 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18004
18005         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18006         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18007
18008 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18009
18010         * profiler.c: provide more callers information.
18011
18012 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18013
18014         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18015
18016         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18017
18018         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18019
18020 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18021
18022         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18023         exception instead of going into an infinite loop on dates which it 
18024         can't yet handle.
18025
18026         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18027         out-of-range exception if needed.
18028
18029         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18030         an implementation for an interface method and to override an inherited
18031         method at the same time. 
18032         Imagine a scenario when a virtual method is used to override a
18033         virtual abstract method in a parent class, and this same method 
18034         provides an implementation for an method inherited from an interface. 
18035         In this case, the interface resolution code will set im->slot, which 
18036         means that the virtual method override pass will skip this method 
18037         which means a pointer to the abstract method inherited from the parent
18038         will remain in the vtable of this non-abstract class.
18039
18040         * class.c: (mono_class_setup_vtable): continue search for a real 
18041         method if only an abstract method is found.     
18042
18043 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18044
18045         * reflection.c: add size to encoding for ByValStr and ByValArray
18046         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18047
18048 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18049
18050         * class.c (mono_class_setup_vtable): pass the override info as an
18051         argument.
18052
18053         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18054         correctly.
18055         
18056         * reflection.c (ensure_runtime_vtable); add support for method 
18057         overrides.
18058         
18059 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18060
18061         * reflection.c (resolution_scope_from_image): Hack to work to work with
18062         dynamic assemblies.
18063
18064         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18065         added a 'force_ref' argument to force this function to allways return 
18066         a TypeRef. This is needed by mono_image_get_memberref_token ().
18067         
18068 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18069
18070         * reflection.c (mono_image_get_type_info): interfaces really don't have
18071         a parent.
18072
18073         * reflection.c (mono_image_basic_init): fill out missing fields of
18074         image structure.
18075
18076         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18077         dynamic assemblies. This is required so dynamic assemblies show up in
18078         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18079         Type::GetType() etc. This is consistent with MS behaviour.
18080
18081         * image.c image.h reflection.c: add newly created classes to the name 
18082         cache so mono_class_get () will find them.      
18083
18084 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18085
18086         First part of changes to get IKVM.NET running under mono.
18087         
18088         * appdomain.h, appdomain.c: added new function 
18089         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18090         This function will call AppDomain::DoTypeResolve to do the actual work.
18091
18092         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18093         moved existing code dealing with dynamic tokens to a new function 
18094         called mono_reflection_lookup_dynamic_token (). This function will 
18095         raise TypeResolve events when appropriate. Since reflection.c is not 
18096         part of libmetadata, a new hook function called 
18097         mono_lookup_dynamic_token() is added to class.c which will call this.
18098
18099         * assembly.h assembly.c: make the invoke_load_hook function public,
18100         so it can be called for dynamic assemblies.
18101
18102         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18103
18104         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18105         type isn't found.
18106
18107         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18108         MonoGHashTable, since it contains pointers to objects which the GC 
18109         needs to track.
18110
18111         * assembly.c (search_loaded): remove unused variable.
18112         
18113 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18114
18115         * object.c: fixed issue exposed by gcc-generated IL programs
18116         that use RVA data for pointers.
18117
18118 2003-01-25  Martin Baulig  <martin@ximian.com>
18119
18120         * threads.c (start_wrapper): Moved the initialization of
18121         `start_func' above the mono_new_thread_init() call to which we
18122         pass it as argument.
18123
18124 2003-01-24  Martin Baulig  <martin@ximian.com>
18125
18126         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18127         the MonoThread pointer.
18128
18129 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18130
18131         * icall.c: Rename `PowImpl' to Pow.
18132
18133 2003-01-23  Dick Porter  <dick@ximian.com>
18134
18135         * threads.c (start_wrapper): Create a Thread object if needed, so
18136         the Main() thread can do the class initialisation in a subthread
18137         that has been set up to allow managed code execution.
18138
18139         Pass the thread ID instead of the MonoThread pointer to the thread
18140         start and attach callbacks.  This change is required, because the
18141         jit thread start callback must be called _before_ the Thread
18142         object can be created.
18143         
18144         (mono_thread_init): Removed much object creation code that is no
18145         longer needed.  No managed code is called from here now.
18146
18147         * object.c (mono_runtime_exec_managed_code): Create a subthread
18148         for Main, and call back to the runtime to use it.
18149         Set the exit code when Main exits.
18150
18151         * gc.c: Make sure domain finalisation happens in a subthread.
18152         Re-enable threaded GC, fixing bug 31333 (again).
18153
18154         * environment.c: System.Environment internall calls (so far just
18155         ExitCode is here, the others are still in icall.c)
18156
18157         * appdomain.c (mono_runtime_cleanup): All threads running managed
18158         code should have finished before mono_runtime_cleanup() is
18159         reached, so no need to clean up threads.
18160
18161 2003-01-22  Martin Baulig  <martin@ximian.com>
18162
18163         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18164         `gpointer func' arguments.      
18165         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18166         but added `MonoThread *thread' argument.
18167         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18168
18169         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18170         and pass it to the mono_thread_start_cb callback.
18171         (mono_install_thread_callbacks): New public function to install a
18172         set of callbacks which are set by the debugger.
18173         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18174
18175 2003-01-22  Martin Baulig  <martin@ximian.com>
18176
18177         * Makefile.am: Install debug-mono-symfile.h.
18178
18179 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18180
18181         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18182
18183 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18184
18185         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18186         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18187         (mono_array_class_get): correctly set access levels of arrays
18188
18189 2003-01-20      Patrik Torstensson
18190         * image.h (MonoAssemblyName): changed major, minor, build, revision
18191         from signed to unsigned.
18192
18193 2003-01-20  sean kasun <skasun@azstarnet.com>
18194
18195         * reflection.c (load_cattr_value): Now this handles
18196         MONO_TYPE_SZARRAY.  Fixes bug #35629
18197
18198 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18199
18200         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18201         integer value
18202
18203 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18204
18205         * decimal.c: fixed bug #26056.
18206
18207 2003-01-17  Martin Baulig  <martin@ximian.com>
18208
18209         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18210
18211 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18212
18213         * exception.[ch]:
18214         (mono_get_exception_type_initialization): new function.
18215
18216         * object.c: throw a TypeInitializationException when an exception is
18217         thrown invoking the class constructor.
18218
18219 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18220
18221         * reflection.c: fixed attribute reading.
18222
18223 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18224
18225         * icall.c:
18226         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18227         provided, look for the type in the calling assembly and then in
18228         mscorlib; if the assembly name is provided, only try that one.
18229
18230 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18231
18232         * object.c: register the vtable before there is a chance it's
18233         queried again recursively.
18234
18235 2003-01-13  Duncan Mak  <duncan@ximian.com>
18236
18237         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18238         gc-internal.h. 
18239         
18240 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18241
18242         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18243
18244 2003-01-11  Martin Baulig  <martin@ximian.com>
18245
18246         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18247         this to 20 for the release.
18248
18249 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18250
18251         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18252
18253         * loader.c (mono_method_get_marshal_info): bug fix
18254
18255         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18256         structures with explicit layout
18257
18258 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18259
18260         * profiler.c: made the output more readable (and sorted). 
18261         Added caller information for the allocation profiler.
18262
18263 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18264
18265         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18266
18267 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18268
18269         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18270         to get value types.
18271         
18272 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18273
18274         * object.c, profiler.h, profiler.c, profiler-private.h:
18275         Added object allocation profiler.
18276
18277 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18278
18279         * reflection.h, reflection.c: handle global methods.
18280         Compress blob entries.
18281
18282 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18283
18284         * marshal.c: fix compilation.
18285
18286 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18287
18288         * loader.c (mono_method_get_marshal_info): impl.
18289
18290         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18291
18292 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18293
18294         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18295         for reference types.
18296
18297 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18298
18299         * loader.c: fixed off by one error in loaded parameter names.
18300
18301 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18302
18303         * marshal.c (mono_marshal_get_icall_wrapper): like
18304         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18305         instead of a MonoMethod.
18306
18307 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18308
18309         * decimal.c: fixed bug #36537.
18310
18311 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18312
18313         * marshal.c: throw a missing method exception if a
18314         P/Invoke method is not found.
18315
18316 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18317
18318         * icall.c: allow a null this for constructors.
18319
18320 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18321
18322         * icall.c: raise the proper exceptions if the arguments to the
18323         internal Invoke are incorrect.
18324
18325 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18326
18327         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18328
18329 2003-01-03  Martin Baulig  <martin@ximian.com>
18330
18331         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18332
18333 2002-12-31  Martin Baulig  <martin@ximian.com>
18334
18335         * debug-mono-symfile.c: Completely rewrote the type section.
18336         Instead of using individual malloc()ed fields, we use one big
18337         continuous memory area and offsets into this area.
18338         See the comments in the source code for details.
18339
18340 2002-12-30  Martin Baulig  <martin@ximian.com>
18341
18342         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18343
18344 2002-12-30  Martin Baulig  <martin@ximian.com>
18345
18346         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18347         line number table in this data blob instead of using an external
18348         pointer.
18349
18350 2002-12-28  Martin Baulig  <martin@ximian.com>
18351
18352         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18353
18354 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18355
18356         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18357         as a boxed return type.
18358
18359 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18360
18361         * appdomain.c
18362         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18363         g_build_filename to properly get separators on the filename created.
18364
18365         * object.h: Small change, introduce MonoMarshalByRefObject to
18366         track the layout of that structure in the C# universe as we make
18367         changes there.
18368
18369 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18370
18371         * object.c: removed assert to allow static fields on interfaces.
18372         * loader.c: a TypeSpec may be used for any type, not just arrays.
18373
18374 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18375
18376         * class.c, class.h: added mono_class_array_element_size ().
18377         Ignore static methods in interfaces.
18378
18379 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18380
18381         * threads.c: fixed the build under cygwin.
18382
18383 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18384
18385         * reflection.c: handle nullref constants. Allocate keys for
18386         reflection handles with the GC.
18387
18388 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18389
18390         * threads.c, threads.h: added mono_thread_get_abort_signal()
18391         to get a suitable signal for thread abort.
18392
18393 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18394
18395         * metadata.c: fix handling of ExportedType table.
18396
18397 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18398
18399         * icall.c: added WriteWindowsDebugString internal call.
18400
18401 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18402
18403         * reflection.h: added fields to match C# implementation.
18404
18405 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406
18407         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18408
18409 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18410
18411         * gc.h, gc-internal.h: Rename header for GC internal calls to
18412         gc-internal.h from gc.h as to not clash with Boehm GC having its
18413         header installed as <gc.h> in outside include paths.
18414         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18415         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18416
18417 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18418
18419         * icall.c: assign minor, build and revision in FillName.
18420
18421 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18422
18423         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18424         Added support for running code generated by Reflection.Emit.
18425
18426 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18427
18428         * appdomain.c: check for NULL argument in LoadFrom.
18429
18430 2002-12-10  Dick Porter  <dick@ximian.com>
18431
18432         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18433
18434 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18435
18436         * appdomain.c: fix buglet when building exe file name.  Handle full
18437         assembly name (needed after latest changes to AssemblyName).
18438         * image.c:
18439         (mono_image_close): free some hashtables.
18440
18441 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18442
18443         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18444         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18445         on some systems (redhat 7.3) 
18446
18447 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18448
18449         * threads.c: delete the critical section of a sync block,
18450         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18451
18452 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18453
18454         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18455
18456 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18457
18458         * appdomain.[ch]: handle the assembly preload event to try loading the
18459         assemblies using the paths we have in the current domain.
18460
18461         * assembly.[ch]: created an assembly preload hook that is called to try
18462         loading the assembly by other means that the ones provided here.
18463
18464         * domain.c: initialize the domain search path.
18465
18466         From now on, assemblies (TODO: except corlib and System) are loaded
18467         according to these rules when using mono_assembly_load ():
18468
18469                 1. It tries to load the assembly from the ApplicationBase
18470                 of the current domain appending .dll and .exe (TODO: have to
18471                 try loading from name/name.dll and name/name.exe).
18472
18473                 2. It tries the search path specified in PrivateBinPath for the
18474                 current domain (if any).
18475
18476                 3. Previous behavior.
18477
18478 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18479
18480         * icall.c: implemented GetInterfaceMap() related icall.
18481         * domain.c, loader.h: load MethodInfo in mono_defaults.
18482
18483 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18484
18485         * gc.c: disable the finalizer thread for now, untill all the issues
18486         with it are resolved.
18487
18488 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18489
18490         * string-icalls.c: handle embedded nulls in string ctor when the
18491         length is specified.
18492
18493 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18494
18495         * class.c: look for explicit interface implementation in parent
18496         classes, too.
18497
18498 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18499
18500         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18501
18502 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18503
18504         * gc.c: protect handles with a critical section.
18505
18506 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18507
18508         * icall.c:
18509         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18510         parameters. If no assembly specified, try getting the type from all
18511         the assemblies in the current domain, else, load the assembly and get
18512         the type from it.
18513
18514 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18515
18516         * marshal.c: applied patch from Aleksey Demakov that fixes
18517         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18518
18519 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18520
18521         * icall.c: fixed get_location.
18522
18523 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18524
18525         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18526         declarations to make it work with older gcc. 
18527
18528         * loader.c (mono_get_method): set signature->pinvoke for native calls
18529
18530 2002-11-20  Dick Porter  <dick@ximian.com>
18531
18532         * threads.c (mono_thread_init): Set the main thread's handle
18533
18534 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18535
18536         * gc.c: allow compilation without GC support. Changed to match the
18537         mono coding style.
18538
18539 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18540
18541         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18542
18543 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18544
18545         * reflection.c: set a public key token on the core assemblies.
18546
18547 2002-11-18  Dick Porter  <dick@ximian.com>
18548
18549         * threads.c: Split out some thread initialisation so that other
18550         files can set the start callback function.
18551
18552         * gc.c: Run finalisers in a separate thread, to avoid stack
18553         overflow.  Fixes bug 31333.
18554
18555         * appdomain.c: Set up GC finalisation thread.
18556
18557         * reflection.c: 
18558         * object.c: 
18559         * domain.c: Use gc.h macros for GC_malloc
18560         
18561 2002-11-15  Dick Porter  <dick@ximian.com>
18562
18563         * threadpool.c: 
18564         * threads.c:
18565         * appdomain.c: Removed mono_runtime_init_with_attach(),
18566         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18567         merging the extra parameter with the existing function.  Removed
18568         unneeded code in mono_thread_attach().
18569
18570 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18571
18572         * image.c (mono_image_loaded_by_guid): a method to get loaded
18573         images by guid. 
18574         (load_metadata_ptrs): we store the guid as string.
18575
18576 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18577
18578         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18579
18580         * metadata.c (mono_guid_to_string): imported method form Zoltan
18581         Varga (slightly modified)
18582
18583         * assembly.c (mono_assembly_open): load precompiled code
18584
18585         * loader.h (MonoMethod): we store the method token for use in the
18586         aot compiler. 
18587
18588 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18589
18590         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18591         the hook function called when an assembly is loaded.
18592         
18593         * domain.c: Modified file.
18594         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18595
18596         Fixes bug #33196.
18597
18598 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18599
18600         * reflection.c: Map PEFileKind to the value expected by the WinNT
18601         image loader. 
18602
18603 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18604
18605         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18606         Read until the buffer is filled completely.
18607
18608 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18609
18610         * icall.c: implemented MonoType.InternalGetEvent ().
18611
18612 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18613
18614         * appdomain.c: implemented InitAppDomainSetup. Delayed
18615         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18616         the entry_assembly.
18617
18618         * assembly.c: base_dir is now an absolute path ending with
18619         G_DIR_SEPARATOR.
18620
18621         * icall.c: modified get_location according to the above changes.
18622
18623         * object.c: init AppDomain.SetupInformation for the default domain after
18624         we have the entry assembly.
18625
18626         * domain.c: when unloading a domain, setup = NULL.
18627
18628 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18629
18630         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18631
18632 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18633
18634         * object.h, object.c: introduced mono_object_get_virtual_method ()
18635         to lookup the method invoked on an object when a callvirt is done on
18636         a method.
18637         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18638
18639 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18640
18641         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18642         current domain when loaded an assembly and failed to load it.
18643
18644         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18645
18646 2002-10-31  Dick Porter  <dick@ximian.com>
18647
18648         * icall.c: 
18649         * file-io.h: 
18650         * file-io.c: Return the error status in a parameter, as the
18651         GetLastError() value has long since been blown away if we try and
18652         look it up in a subsequent internal call invocation.  Delete the
18653         GetLastError() internal call, because it's useless.
18654
18655 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18656
18657         * class.[ch]: added cast_class to fix bug 29517
18658
18659 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18660
18661         * marshal.c: create valid IL code in the filter clause:
18662         the new JIT is less forgiving:-)
18663
18664 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18665
18666         * icall.c: removed get_property internal call.
18667
18668 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18669
18670         * appdomain.h domain.c: Added an ID to appdomains.
18671         
18672         * threads.c threads.h icall.c: Implement icall
18673         Thread:GetDomainID(), and remove unused icall 
18674         CurrentThreadDomain_internal.
18675
18676 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18677
18678         * icall.c: Don't recurse through the base types in GetConstructor.
18679         Fixes bug #32063. 
18680
18681 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18682
18683         * mempool.h, mempool.c: added mono_mempool_empty() and
18684         mono_mempool_stats().
18685
18686 2002-10-23  Dick Porter  <dick@ximian.com>
18687
18688         * file-io.c: 
18689         * file-io.h: 
18690         * icall.c: Added MonoIO.GetFileType internal call
18691
18692 2002-10-17  Dick Porter  <dick@ximian.com>
18693
18694         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18695         delegate semaphore before waiting for all threads to finish,
18696         because new threads can also call async delegates.  Fixes bug
18697         32004.
18698
18699         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18700         of 3 seconds, in case another async job is queued.  (This part is
18701         needed because the bug fix reintroduced the 3s exit lag.)  This
18702         makes the mono_runtime_shutdown flag superfluous.
18703
18704 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18705
18706         * reflection.c: include ehader size in method section headers.
18707         Really check for suplicated modules entries.
18708
18709 2002-10-17  Martin Baulig  <martin@gnome.org>
18710
18711         * debug-mono-symfile.c: Added back support for locals.
18712
18713 2002-10-14  Martin Baulig  <martin@gnome.org>
18714
18715         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18716         MONO_TYPE_VOID.
18717
18718 2002-10-14  Martin Baulig  <martin@gnome.org>
18719
18720         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18721         mono_class_get() instead of looking in the class cache. 
18722
18723 2002-10-13  Martin Baulig  <martin@gnome.org>
18724
18725         * debug-mono-symfile.c: Set version number to 28, include the
18726         signature in method names.
18727
18728 2002-10-13  Martin Baulig  <martin@gnome.org>
18729
18730         * debug-mono-symfile.h: Set version number to 27.
18731
18732 2002-10-11  Martin Baulig  <martin@gnome.org>
18733
18734         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18735
18736 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18737
18738         * metadata.c, metadata.h: added helper function to allocate signatures.
18739
18740 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18741
18742         * icall.c: added internal call to get the location of machine.config.
18743
18744 2002-10-08  Martin Baulig  <martin@gnome.org>
18745
18746         * debug-mono-symfile.c: Ignore classes with a pending init for the
18747         moment.
18748
18749 2002-10-03  Dick Porter  <dick@ximian.com>
18750
18751         * threads.c: Freebsd pthread_t is a pointer
18752
18753 2002-10-03  Dick Porter  <dick@ximian.com>
18754
18755         * socket-io.c: Implemented GetHostName_internal
18756
18757 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18758
18759         * mono-config.c:
18760         (mono_config_parse_file): don't leak the text.
18761
18762 2002-10-02  Martin Baulig  <martin@gnome.org>
18763
18764         * debug-mono-symfile.c: Added support for methods.
18765
18766 2002-10-01  Martin Baulig  <martin@gnome.org>
18767
18768         * debug-mono-symfile.c: Don't emit methods and line numbers for
18769         the dynamic symbol file, just write the type table.  We can easily
18770         have an external helper program which creates a symbol file for an
18771         IL file.        
18772
18773 2002-10-01  Dick Porter  <dick@ximian.com>
18774
18775         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18776         Only add the handle to the cleanup array when we're about to
18777         launch the thread.  Bug 31425 deadlocked when the test was run on
18778         mono under w32.
18779
18780 2002-10-01  Martin Baulig  <martin@gnome.org>
18781
18782         * debug-mono-symfile.c: Added support for properties.
18783
18784 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18785
18786         * reflection.c: unaligned store fix from Mark Crichton
18787         <crichton@gimp.org>.
18788
18789 2002-09-27  Martin Baulig  <martin@gnome.org>
18790
18791         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18792         New interncall.
18793
18794 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18795
18796         * assembly.h, assembly.c: use a sane API to hook into the assembly
18797         loading process instead of a useless special-purpouse hack
18798         (ngen needs a hook, too, for example).
18799
18800 2002-09-27  Dick Porter  <dick@ximian.com>
18801
18802         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18803         io-layer can set up some process handle info.  Not needed on w32,
18804         but doesn't hurt either.
18805
18806         * process.c: Pass the program name in the second parameter to
18807         CreateProcess, so the path is searched.  Include the working
18808         directory. Implemented process name, process enumeration, and some
18809         process detail internal calls.
18810         
18811         * icall.c: Added internal calls for process lookup, and some
18812         process details
18813
18814 2002-09-26  Martin Baulig  <martin@gnome.org>
18815
18816         * assembly.c (mono_install_open_assembly_hook): New global
18817         function to install a function to be invoked each time a new
18818         assembly is loaded.
18819         (mono_assembly_open): Run this callback function if set.
18820
18821         * debug-mono-symfile.c: Put back line numbers for the dynamic
18822         symbol file and also record the .il file as source file.  This
18823         allows us to install the temporary symbol file as `file.dbg' just
18824         like a compiler-generated one.
18825
18826 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18827
18828         * Corrected typo in gc.c (BOHEM vs BOEHM).
18829
18830 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18831
18832         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18833         GetProperties. Also avoid calling g_slist_length in GetProperties and
18834         GetMethods.
18835
18836 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18837
18838         * reflection.c: avoid unaligned stores (bug spotted by
18839         Mark Crichton  <crichton@gimp.org>).
18840
18841 2002-09-25  Martin Baulig  <martin@gnome.org>
18842
18843         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18844         instead of guint64 for addresses and added prologue/epilogue info.
18845
18846 2002-09-25  Martin Baulig  <martin@gnome.org>
18847
18848         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18849         store line number info.  For the dynamic symbol file, we only need
18850         to provide the JIT generated dynamic line number info for the dynamic
18851         symbol file.
18852
18853 2002-09-25  Martin Baulig  <martin@gnome.org>
18854
18855         * debug-mono-symfile.h: Incremented version number.
18856
18857 2002-09-24  Martin Baulig  <martin@gnome.org>
18858
18859         * class.c (mono_debugger_class_init_func): New global function
18860         pointer variable.
18861         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18862         call it.
18863
18864         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18865         function.  This is called via the mono_debugger_class_init_func
18866         hook to add all types to the dynamic type table.
18867         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18868         from its metadata token.
18869
18870         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18871         New interncall for the debugger.
18872
18873 2002-09-24  Nick Drochak <ndrochak@gol.com>
18874
18875         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18876         before using it in case it is null.
18877         
18878 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18879
18880         * metadata.c: allow custom modifiers in local var signatures
18881         (bug spotted by Zoltan Varga).
18882
18883 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18884
18885         * class.c: deal with the <Module> class that may have a NULL vtable.
18886         Eliminate warnings.
18887
18888 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18889
18890         * image.c, image.h: more strong name helpers.
18891         * monosn.c: more work: convert pem keys to cryptoapi format.
18892
18893 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18894
18895         * string-icalls.c: speedup IndexOf.
18896
18897 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18898
18899         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18900
18901 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18902
18903         * icall.c: cleanup: use mono_object_domain ().
18904
18905 2002-09-23  Martin Baulig  <martin@gnome.org>
18906
18907         * debug-mono-symfile.c: Improved type support.
18908
18909 2002-09-22  Martin Baulig  <martin@gnome.org>
18910
18911         * debug-mono-symfile.c: Added support for reference types and strings.
18912
18913 2002-09-22  Martin Baulig  <martin@gnome.org>
18914
18915         * debug-mono-symfile.c: Started to work on the type table.
18916
18917 2002-09-21  Martin Baulig  <martin@gnome.org>
18918
18919         * debug-mono-symfile.c: Largely reworked the symbol table format.
18920         The symbol table is now incrementally updated each time a new
18921         method is added.  We're now also using our own magic and version
18922         so that you don't need to recompile all your classes if the
18923         dynamic table changes.
18924         (mono_debug_update_mono_symbol_file): Removed.
18925         (mono_debug_symfile_add_method): New function to add a method.
18926
18927 2002-09-21  Martin Baulig  <martin@gnome.org>
18928
18929         * icall.c
18930         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
18931         New interncall.
18932
18933         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
18934         New interncall to get a method from its metadata token.
18935
18936 2002-09-21  Martin Baulig  <martin@gnome.org>
18937
18938         * debug-mono-symfile.c: Create type table.
18939
18940 2002-09-20  Martin Baulig  <martin@gnome.org>
18941
18942         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
18943
18944 2002-09-20  Martin Baulig  <martin@gnome.org>
18945
18946         * debug-mono-symfile.c: Provide information about params and locals.
18947
18948 2002-09-20  Martin Baulig  <martin@gnome.org>
18949
18950         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
18951         New interncall.
18952
18953         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
18954         interncall to get a method from its metadata token.
18955
18956 2002-09-20  Martin Baulig  <martin@gnome.org>
18957
18958         * debug-mono-symfile.c: Added a few checks for method->header
18959         being non-NULL.  This should never happen, but for the moment
18960         let's use a g_warning() rather than a g_assert().
18961
18962 2002-09-19  Mark Crichton  <crichton@gimp.org>
18963
18964         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
18965         even if support for it isn't present.  Added an #ifdef to fix this.
18966
18967         * socket-io.c: Added checks back for Solaris support.
18968
18969 2002-09-19  Martin Baulig  <martin@gnome.org>
18970
18971         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18972         changes in the symbol file format.
18973
18974 2002-09-18  Martin Baulig  <martin@gnome.org>
18975
18976         * debug-mono-symfile.c: Set version number to 21.
18977
18978 2002-09-18  Dick Porter  <dick@ximian.com>
18979
18980         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18981         on netbsd.  Fixes bug 30051.
18982
18983 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18984
18985         * reflection.c:
18986         (set_version_from_string): little fix.
18987
18988 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18989
18990         * monosn.c, Makefile.am: added strong name utility.
18991         * reflection.h, reflection.c: implemented delayed signing,
18992         locale, version and hash id assembly attributes.
18993
18994 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18995
18996         * loader.c, metadata.c: load param attributes in signatures.
18997
18998 2002-09-16  Martin Baulig  <martin@gnome.org>
18999
19000         * debug-mono-symfile.c: Added string table with all method names.
19001
19002 2002-09-14  Martin Baulig  <martin@gnome.org>
19003
19004         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19005         fast method lookup.
19006
19007 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19008
19009         * reflection.c: record the public key token of referenced assemblies.
19010
19011 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19012
19013         * image.c, image.h: added functions to get the strong name and the
19014         public key of an assembly.
19015         * pedump.c: use them.
19016
19017 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19018
19019         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19020
19021 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19022
19023         * marshal.c (mono_marshal_get_managed_wrapper): Added
19024         MONO_TYPE_BOOLEAN 
19025
19026 2002-09-11  Martin Baulig  <martin@gnome.org>
19027
19028         * gc.c: Call GC_unregister_disappearing_link() on all links when
19029         finalizing them, this is necessary to aviod a crash in boehm's
19030         finalize handler.
19031
19032 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19033
19034         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19035         nick@chemlab.org.
19036
19037 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19038
19039         * icall.c: implemented MonoType::Module.
19040         * reflection.c, reflection.h: mono_module_get_object () from
19041         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19042
19043 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19044
19045         * icall.c: ignore overridden methods in GetMethods ().
19046         Fix for FieldInfo::SetValue().
19047         * object.c: handle float/double in runtime invoke.
19048
19049 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19050
19051         * object.c: allow a constructor to be called again on an object.
19052
19053 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19054
19055         * class.h, class.c: move field layout code to it's own function and
19056         export it. Get an interface id earlier. Move fields in MonoClass
19057         so they are more cache friendly and align the bitfields.
19058         * loader.c: temporary handle get_param_names() for a runtime method.
19059         * reflection.c, reflection.h: more code to handle runtime creation of
19060         types.
19061
19062 2002-09-09  Martin Baulig  <martin@gnome.org>
19063
19064         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19065         signature with the pinvoke field being set for the actual call.
19066
19067 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19068
19069         * icall.c: removed some unused icalls. Start of map of glib charsets
19070         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19071
19072 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19073
19074         * debug-helpers.c: break infinite loop (found and fixed by
19075         Holger Arnold <harnold@gmx.de>).
19076
19077 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19078
19079         * icall.c: target may be null in create_delegate.
19080
19081 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19082
19083         * marshal.c: handle a boolean return type.
19084
19085 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19086
19087         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19088
19089 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19090
19091         * gc.c: fix weakreferences.
19092
19093 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19094
19095         * icall.c: added icall to get default codepage.
19096
19097 2002-09-03  Dick Porter  <dick@ximian.com>
19098
19099         * threads.h: 
19100         * threads.c: Use MonoThread instead of MonoObject where
19101         apropriate.
19102
19103         Store running thread objects in a hash table, so that we have all
19104         the info to hand when waiting for them to finish
19105         (means we don't need OpenThread() any more, so mingw builds should
19106         be fully functional again.)
19107
19108         * verify.c:
19109         * object.h: Added thread ID to MonoThread
19110
19111 2002-09-03  Martin Baulig  <martin@gnome.org>
19112
19113         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19114
19115 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19116
19117         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19118
19119 2002-09-03  Martin Baulig  <martin@gnome.org>
19120
19121         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19122         argument to store the end address of the disassembled instruction.
19123
19124         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19125         here from debug-symfile.h.
19126         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19127         JIT into this struct.
19128         (MonoSymbolFile): Added `char *image_file' field.
19129         (MonoDebugGetMethodFunc): Removed.
19130         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19131         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19132         (mono_debug_find_method): New method.
19133
19134         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19135         create a full symbol file.
19136         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19137         and static symbol files.
19138         (mono_debug_find_method): The symbol file keeps an internal method hash,
19139         call this to get a MonoDebugMethodInfo from a MonoMethod.
19140
19141         * debug-symfile.[ch]: Removed.
19142
19143 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19144
19145         * image.c (do_mono_image_open): Remove linker version check.
19146
19147 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19148
19149         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19150         wrappers for instance methods.
19151         
19152 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19153
19154         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19155
19156 2002-08-28  Dick Porter  <dick@ximian.com>
19157
19158         * Makefile.am: Export HOST_CC for w32 builds
19159
19160 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19161
19162         * file-io.c process.c: MonoString are null terminated, no
19163         need for mono_string_to_utf16() anymore.
19164
19165 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19166
19167         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19168
19169 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19170
19171         * icall.c, reflection.h: speedup System.MonoType.
19172
19173 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19174
19175         * reflection.c: allow null as the value of a string argument in
19176         custom attributes constructors.
19177
19178 2002-08-27  Martin Baulig  <martin@gnome.org>
19179
19180         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19181         `trampoline_address' field.
19182
19183 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19184
19185         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19186         check (fixes bug #29486) 
19187
19188 2002-08-27  Martin Baulig  <martin@gnome.org>
19189
19190         * debug-mono-symfile.c: Changed the file format in a way that allows us
19191         open it read-only and to use a specially malloced area for all the
19192         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19193         debugging IL code and there is no MCS generated symbol file for it.
19194
19195 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19196
19197         * object.c: added a define for a good string and array
19198         creation speedup (not enabled by default because we need to deal with
19199         the synch stuff).
19200
19201 2002-08-26  Martin Baulig  <martin@gnome.org>
19202
19203         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19204         function to create a dynamic symbol file.  This is used by the
19205         debugger to create a symbol file for IL code on-the-fly.
19206
19207 2002-08-26  Martin Baulig  <martin@gnome.org>
19208
19209         * loader.c (mono_lookup_pinvoke_call): Include the error message
19210         from g_module_error() in the error message.
19211
19212 2002-08-24  Martin Baulig  <martin@gnome.org>
19213
19214         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19215         function to update the symbol file.  The symbol file is mmap()ed
19216         writable, but private.  This allows us to install the symbol file
19217         together with the assembly.
19218
19219 2002-08-24  Martin Baulig  <martin@gnome.org>
19220
19221         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19222         but they can read the new symbol file format which mcs is now creating.
19223
19224         * debug-symfile.c (mono_debug_find_source_location): Moved to
19225         debug-mono-symfile.c; this is now operating on the new symbol file.
19226
19227 2002-08-23  Martin Baulig  <martin@gnome.org>
19228
19229         * debug-helpers.c (mono_method_desc_from_method): New function to get
19230         a MonoMethodDesc from a MonoMethod.
19231
19232 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19233
19234         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19235         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19236
19237 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19238
19239         * string-icalls.[ch]: make helper methods static.
19240
19241 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19242
19243         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19244         types to it and to SetValueInternal.
19245
19246         * object.c: Moved handle_enum label to its proper place. This was the
19247         f... bug! ;-)
19248
19249         This time i compiled mcs and gtk-sharp and they both work.
19250
19251 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19252
19253         * icall.c: reverted partially my previous patch until 
19254         object.c:set_value handles enums correcly.
19255
19256 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19257
19258         * icall.c:
19259         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19260         (ves_icall_System_Environment_get_MachineName): removed warning when
19261         compiling under cygwin.
19262
19263 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19264
19265         * object.c: fixed field_get_value() for reference types.
19266
19267 2002-08-22  Dick Porter  <dick@ximian.com>
19268
19269         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19270         Don't free a buffer while it's still needed.  Patch from Jonathan
19271         Liger <Jonathan.liger@wanadoo.fr>
19272
19273 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19274
19275         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19276         internal call.
19277
19278 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19279
19280         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19281         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19282
19283         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19284         we call unmanaged code which throws exceptions.
19285
19286 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19287
19288         * appdomain.h: added per-domain entry_assembly.
19289         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19290         arguments.
19291         * icall.c: Assembly::GetEntryAssembly icall.
19292         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19293         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19294
19295 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19296
19297         * appdomain.h, gc.c: added mono_domain_finalize ().
19298
19299 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19300
19301         * object.c:
19302         (mono_print_unhandled_exception): changed g_warning by g_printerr
19303         because g_log has a 1024 characters limit (yeah, i got a big stack
19304         trace). Don't print exception name, that should be in ToString 
19305         returned string.
19306
19307 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19308
19309         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19310         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19311
19312 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19313
19314         * object.c:
19315         (mono_print_unhandled_exception): after previous commit, i realized
19316         that MS calls ToString on the exception. I changed this function to
19317         do that. This way we get stack_trace for free.
19318
19319 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19320
19321         * object.c:
19322         (mono_print_unhandled_exception): invoke Message property instead of
19323         getting 'message' field from Exception. Don't allocate memory for
19324         'trace' and 'message' if not needed.
19325
19326 2002-08-18  Dick Porter  <dick@ximian.com>
19327
19328         * unicode.c: Fix asserts to match Encoder.cs checks
19329
19330 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19331
19332         * marshal.c: fix unaligned store issue and a few wrong
19333         opcode argument types.
19334
19335 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19336
19337         * icall.c: added GetUninitializedObjectInternal internal call.
19338
19339 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19340
19341         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19342         to the right domain.
19343
19344 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19345
19346         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19347
19348         * class.c (class_compute_field_layout): set blittable to false for Strings
19349
19350         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19351
19352 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19353
19354         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19355         first chunk of code to create types at runtime. Code to
19356         handle ReflectedType/DeclaringType. Make reflection handles
19357         domain specific.
19358
19359 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19360
19361         * class.c: set correct name in arrays.
19362
19363 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19364
19365         * appdomain.c (mono_domain_transfer_object): make it work with
19366         valuetypes. bug fixes.
19367
19368 2002-08-12  Dick Porter  <dick@ximian.com>
19369
19370         * object.h: Rename some parameters to avoid c++ keywords (Patch
19371         from Joseph Wenninger <kde@jowenn.at>)
19372
19373 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19374
19375         * icall.c: added icall to implement Assembly.GetFile*.
19376
19377 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19378
19379         * reflection.h, reflection.c: code to embed managed resources.
19380
19381 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19382
19383         * class.c: move all the type size stuff into
19384         class_compute_field_layout().
19385
19386 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19387
19388         * class.c: ensure enums have always the correct instance size.
19389         * unicode.c: remove wrong assert.
19390
19391 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19392
19393         * assembly.c: fix mem corruption issue.
19394         * image.h, image.c: added mono_image_get_resource () to access
19395         managed resources.
19396         * icall.c: implemented Assembly.EntryPoint property and some
19397         Managed Resources related internalcalls.
19398
19399
19400 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19401
19402         * image.c, image.h: impemented mono_image_get_entry_point ().
19403         * appdomain.c: use mono_image_get_entry_point.
19404
19405 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19406
19407         * reflection.c: support the object type argument when loading
19408         custom attributes.
19409
19410 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19411
19412         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19413         String as return type.
19414
19415 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19416
19417         * reflection.c: fix encoding of named args for custom attrs to match
19418         the ms implementation. Read them back when instantiating custom
19419         attributes.
19420
19421 2002-08-02  Radek Doulik  <rodo@ximian.com>
19422
19423         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19424         by Dietmar as quick fix
19425         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19426         16 as stack size, used on more places as quick fix before Dietmar
19427         will fix it properly
19428
19429 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19430
19431         * object.h, object.c: added accessors for fields and properties.
19432
19433 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19434
19435         * class.c, class.h: made mono_class_get_field_from_name ()
19436         loop on parent types.
19437         Added mono_class_get_property_from_name ().
19438
19439 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19440
19441         * class.c, class.h: move the code to setup the type vtable in its own
19442         function so that it can be reused also for types created at runtime.
19443         Eliminate the "class" identifier from the header file.
19444         * reflection.c: setup the vtable for enums so that we can create
19445         objects for use in SetConstant ().
19446
19447 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19448
19449         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19450         instead of the delegate itself as this pointer (bug #28383)
19451
19452 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19453
19454         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19455         conversions.
19456
19457 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19458
19459         * loader.c: don't set the pinvoke bit on icalls.
19460
19461 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19462
19463         * debug-helpers.c (mono_method_full_name): only print a number to
19464         indicate wrapper type (so that the output is more readable in traces).
19465
19466 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19467
19468         * class.c (mono_class_init): include method override patch from Paolo
19469
19470 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19471
19472         * icall.c: fixed GetTypeCode().
19473
19474 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19475
19476         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19477         use real delegate invoke function to make it work with multicast
19478         delegates (fix bug# 28291).
19479
19480 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19481
19482         * object.c: load constant strings.
19483
19484 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19485
19486         * reflection.c: no magic numbers.
19487         * tabledefs.h: security action enum.
19488
19489 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19490
19491         * assembly.c: fix possible memory corruption.
19492
19493 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19494
19495         * reflection.h, reflection.c: added support for linking resources.
19496         * verify.c: check we have an updated corlib.
19497
19498 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19499
19500         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19501         string arrays.
19502         (mono_marshal_string_array): null terminate unmanaged string arrays.
19503         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19504
19505 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19506
19507         * icall.c: Type.GetType () can now return also types from the
19508         calling assembly.
19509
19510 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19511
19512         * loader.h, loader.c: stack walking support.
19513         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19514         GetCallingAssembly.
19515
19516 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19517
19518         * marshal.c: added optimisations for blittable types 
19519
19520         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19521         (mono_class_setup_mono_type): set blittable attribute for single
19522         and double.
19523
19524         * marshal.c (mono_string_utf8_to_builder): impl.
19525         (mono_string_builder_to_utf8): impl.
19526         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19527
19528 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19529
19530         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19531         (mono_marshal_get_managed_wrapper): impl. byref types
19532
19533 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19534
19535         * icall.c:
19536         (search_method): don't display debug message. 
19537
19538 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19539
19540         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19541
19542 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19543
19544         * appdomain.c: set the missing filename when throwing exception.
19545
19546 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19547
19548         * metadata.c (mono_type_size): code cleanup
19549         (mono_type_stack_size): removed some test code
19550
19551 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19552
19553         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19554         mono_get_exception_file_not_found now.
19555
19556         * exception.c (mono_exception_from_name_two_strings): New version
19557         that will call a constructor with two string arguments. 
19558         (mono_get_exception_file_not_found): New helper routine, used to
19559         report file-not-found errors.
19560
19561 2002-07-20  Dick Porter  <dick@ximian.com>
19562
19563         * process.h:
19564         * process.c: Pass file handles to CreateProcess
19565         
19566         * icall.c:
19567         * file-io.h:
19568         * file-io.c: Implemented CreatePipe
19569
19570 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19571
19572         * metadata.c (mono_get_param_info): set alignment for value types
19573
19574 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19575
19576         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19577         Constify mono_domain_assembly_open().
19578         * loader.c: handle null namespace in icalls.
19579
19580 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19581
19582         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19583         (emit_str_to_ptr_conv): marshal object as structs
19584
19585         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19586
19587         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19588
19589 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19590
19591         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19592         (mono_marshal_get_native_wrapper): we an now return value types
19593
19594 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19595
19596         * verify.c: more checks implemented.
19597
19598 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19599
19600         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19601         (fix bug #27695)
19602         (mono_marshal_get_native_wrapper): allow byref arguments
19603         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19604         impl. PtrToStringXXX methods
19605         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19606         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19607         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19608         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19609         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19610
19611 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19612
19613         * reflection.c: fix buglet in parsing an assembly name.
19614
19615 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19616
19617         * marshal.c (emit_ptr_to_str_conv): first impl.
19618
19619 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19620
19621         * object.c, class.h: cache the vtable in the class as suggested by
19622         vargaz@freemail.hu (Zoltan Varga).
19623
19624 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19625
19626         * class.h, loader.c: added mono_field_from_token().
19627         * verify.c: first cut of type checking code.
19628
19629 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19630
19631         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19632
19633 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19634
19635         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19636         (fix bug #27782)
19637         (mono_marshal_get_remoting_invoke): impl.
19638         (mono_delegate_begin_invoke): impl.
19639         (mono_mb_emit_save_args): impl.
19640         (mono_delegate_end_invoke): impl.
19641         (mono_marshal_get_delegate_begin_invoke):
19642         (mono_marshal_get_delegate_end_invoke):
19643         (mono_marshal_get_delegate_invoke): generate a special name for
19644         those methods (including the signature) and associate them whith
19645         the delegate class. 
19646
19647 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19648
19649         * reflection.[ch]: 
19650         (mono_reflection_type_from_name): now it has a MonoImage parameter
19651         which is used as the default image to search the type in. If the image
19652         is NULL or getting the type from it fails, it defaults to corlib.
19653
19654         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19655         new parameter.
19656
19657 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19658
19659         * reflection.c: update the parameter table index.
19660
19661 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19662
19663         * domain.c: don't include the mark byte in the string hash.
19664
19665 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19666
19667         * icall.cs: icall for Type.GetTypeCode ().
19668         * verify: a couple of fixes and disabled local initialization checks.
19669
19670 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19671
19672         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19673
19674         * debug-helpers.c (mono_method_full_name): print the type of the
19675         runtime wrapper
19676
19677         * metadata.c (mono_signature_hash): a hash function for signatures
19678         (mono_signature_hash): better hash algorithm
19679
19680         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19681
19682         * debug-helpers.c (mono_method_full_name): this can now generate
19683         method names with signatures
19684
19685         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19686         method dont have this pointers.
19687
19688 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19689
19690         * reflection.c: fixup typebuilder tokens.
19691         * image.c: fix buglet.
19692         * marshal.h: remove whitespace.
19693         * metadata.h, metadata.c: reinstate code that was removed.
19694         * verify.c: handle catch directives and fix another couple of bugs.
19695
19696 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19697
19698         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19699         (mono_marshal_get_native_wrapper): make it comp. with the old code
19700         (mono_marshal_get_native_wrapper): support boolean
19701         (mono_marshal_get_managed_wrapper): support more types
19702
19703 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19704
19705         * class.c (class_compute_field_layout): compute class->blittable attribute.
19706
19707 2002-07-09  Dick Porter  <dick@ximian.com>
19708
19709         * threads.c: Make the thread cleaning up cope with threads that
19710         call ExitThread()
19711
19712 2002-07-08  Radek Doulik  <rodo@ximian.com>
19713
19714         * reflection.c (method_encode_code): use non-translated values to
19715         compute finally_start, this fixes exception handling on ppc, yay!
19716
19717         * decimal.h (struct signscale): fix endianess
19718
19719 2002-07-07  Radek Doulik  <rodo@ximian.com>
19720
19721         * reflection.c: swap box_val and not val
19722
19723 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19724
19725         * reflection.c, reflection.h: handle full assembly info in type name.
19726         Handle Type arguments when loading custom attributes.
19727         * icall.c: updated to use new mono_reflection_type_from_name () method.
19728
19729 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19730
19731         * loader.c:
19732         (method_from_memberref): also print assembly name when method not found.
19733
19734 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19735
19736         * icall.c:
19737         (ves_icall_TypeGetProperties): fixed bug #27473. 
19738
19739 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19740
19741         * reflection.c: display image name and token when cannot find the
19742         .ctor for an attribute.
19743
19744 2002-07-05  Martin Baulig  <martin@gnome.org>
19745
19746         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19747
19748 2002-07-04  Dick Porter  <dick@ximian.com>
19749
19750         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19751         compile on mingw.  This will cause mingw builds to not wait for
19752         subthreads to terminate after the main thread does.  I've lodged a
19753         bug with the mingw developers for them to wrap OpenThread().
19754
19755 2002-07-03  Dick Porter  <dick@ximian.com>
19756
19757         * threads.c: Store thread IDs instead of handles, because
19758         GetCurrentThread() returns a pseudohandle and therefore stores
19759         useless values.  mono_thread_cleanup() continues checking the
19760         array of threads until it is empty, to cope with subthreads
19761         spawning new threads after the main thread has finished.
19762
19763         * profiler.h:
19764         * profiler.c:
19765         * profiler-private.h: Pass the thread ID to thread profiler
19766         functions, instead of a handle
19767
19768 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19769
19770         * verify.c: fixes to make it more usable.
19771         * pedump.c: added --verify code to verify IL code in an assembly.
19772
19773 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19774
19775         * reflection.c: turn errors into warnings to allow compiling corlib.
19776
19777 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19778
19779         * reflection.c: add special cases to compile corlib.
19780
19781 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19782
19783         * reflection.c: handle properties with only a set method.
19784
19785 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19786
19787         * opcodes.h: add enum with opcodes in opval order.
19788
19789 2002-07-01  Dick Porter  <dick@ximian.com>
19790         
19791         * object.h:
19792         * object.c (mono_runtime_run_main): Removed unneeded argument
19793
19794 2002-06-28  Martin Baulig  <martin@gnome.org>
19795
19796         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19797
19798 2002-06-27  Dick Porter  <dick@ximian.com>
19799
19800         * threads.c: Store the handle in both the parent thread and in the
19801         subthread, to minimise the time between starting a new thread and
19802         storing its ID.
19803
19804 2002-06-26  Dick Porter  <dick@ximian.com>
19805
19806         * appdomain.c (mono_runtime_cleanup): Close the socket library
19807         after all the threads have finished, not before
19808
19809 2002-06-26  Martin Baulig  <martin@gnome.org>
19810
19811         * debug-symfile.c (mono_debug_find_source_location): Added
19812         `guint32 *line_number' argument.  If it's not NULL, store the line number
19813         there and return the file name without the line number.
19814
19815 2002-06-25  Dick Porter  <dick@ximian.com>
19816
19817         * icall.c:
19818         * process.h:
19819         * process.c: Process forking and other support functions
19820
19821 2002-06-25  Dick Porter  <dick@ximian.com>
19822
19823         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19824         things dont happen when the image is closed.
19825         (mono_image_lookup_resource): Walk the resource section looking
19826         for a particular entry
19827
19828         * cil-coff.h: PE resource section decoding
19829
19830 2002-06-25  Dick Porter  <dick@ximian.com>
19831         
19832         * assembly.h:
19833         * assembly.c: 
19834         (mono_assembly_foreach): Accessor functions to walk the list of
19835         loaded assemblies
19836         (mono_assembly_set_main):
19837         (mono_assembly_get_main): Process methods need to know which
19838         assembly is the "main" one
19839
19840         * object.c (mono_runtime_run_main): Record the main assembly
19841
19842         * debug-helpers.c: Fix typo
19843
19844 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19845
19846         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19847         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19848
19849 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19850
19851         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19852
19853 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19854
19855         * image.c (do_mono_image_open): Initialize reference count,
19856         otherwise we leak the MonoImage.
19857
19858 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19859
19860         * reflection.c: small tweak to handle self-hosting.
19861
19862 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19863
19864         * reflection.c: fix type name parse code.
19865
19866 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19867
19868         * reflection.c: break out of the loop.
19869         * image.c: special case corlib.
19870
19871 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19872
19873         * reflection.c: add all the custom attrs at the end to ensure the
19874         ctors have been properly initialized when the attributes are defined
19875         in the current assembly.
19876
19877 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19878
19879         * reflection.c: handle correctly multiple-nested types.
19880
19881 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19882
19883         * row-indexes.h: fix typos.
19884         * reflection.c: adjust for typos and fix method_def_or_ref
19885         encoding in MethodImpl table.
19886
19887 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19888
19889         * reflection.c: fix entry point patching (thanks Serge!).
19890
19891 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19892
19893         * verify.c: add check for System.Exception
19894
19895 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19896
19897         * image.c, class.c: minifix for code just c&p'ed.
19898         * reflection.c: warning fix.
19899         * object.h, loader.h, domain.c: load also StringBuilder.
19900
19901 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19902
19903         * marshal.h, marshal.c: some support code to handle complex marshaling.
19904
19905 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19906
19907         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
19908         Better signatures with vtable error dump.
19909
19910 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
19911
19912         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
19913
19914 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
19915
19916         * icall.c (ves_icall_Type_GetField): impl.
19917
19918 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19919
19920         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
19921         to retrieve a marshal description blob for a field or param.
19922
19923 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19924
19925         * reflection.h, reflection.c: change order of nested type emission
19926         to avoid table corruption. The NestedTypes table is sorted.
19927         * icall.c: change order of GetConstructor results to workaround mcs bug.
19928
19929 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19930
19931         * reflection.h, reflection.c: handle field and param marshal
19932         information.
19933
19934 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19935
19936         * icall.c, marshal.c marshal.h: more Marshal class implementation.
19937
19938 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19939
19940         * reflection.c: fix call convention.
19941
19942 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19943
19944         * reflection.h, reflection.c: mono_image_get_memberref_token()
19945         takes a type instead of a class, now. Added
19946         mono_image_get_array_token() to create tokens for the special
19947         multi-dim array methods.
19948
19949 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19950
19951         * assembly.c: handle modules (no assembly table). Split
19952         loading references in its own function.
19953         * class.c: handle moduleref resolution scope.
19954         * image.c, image.h: cache module name in image.
19955
19956 2002-06-07  Martin Baulig  <martin@gnome.org>
19957
19958         * reflection.c (mono_image_get_type_info): Only add a class layout entry
19959         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
19960
19961 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19962
19963         * icall.c: more signature fixes that used uint instead of int.
19964
19965 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19966
19967         * reflection.c: fixed signature of field refs.
19968
19969 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19970
19971         * class.c, reflection.c: handle typerefs of nested types
19972         (both on read and when writing files).
19973
19974 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19975
19976         * icall.c: fix method signatures that tried to workaround the previous
19977         typo, d'oh!
19978
19979 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19980
19981         * debug-helpers.c: fix typo.
19982
19983 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19984
19985         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19986         rewrote the PE/COFF writing code (our programs are understood by the
19987         ms runtime, now).
19988
19989 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19990
19991         * gc.c, gc.h, icall.c: weakreference support.
19992
19993 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19994
19995         * Makefile.am, mono-config.c: use $(sysconfdir).
19996
19997 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19998
19999         * icall.c: changed default precision of Double.ToString() to 15.
20000         Fixed memory leak. Unified with Single.ToString.
20001
20002 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20003
20004         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20005
20006 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20007
20008         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20009         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20010         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20011         and myself.
20012
20013 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20014
20015         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20016
20017 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20018
20019         * reflection.c, socket-io.c: more compilation fixes.
20020
20021 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20022
20023         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20024         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20025         unicode.c: warning and compiler compatibility fixes.
20026
20027 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20028
20029         * class.h, metadata.c: fixed warnings/compilation errors.
20030
20031 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20032
20033         * Makefile.am, mono-config.c, mono-config.h: configuration file
20034         support routines.
20035         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20036         config file. Export methods to insert and lookup mappings.
20037
20038 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20039
20040         * reflection.c: handle types and boxed objects in custom attr
20041         constructors.
20042
20043 2002-05-30  Martin Baulig  <martin@gnome.org>
20044
20045         * debug-symfile.c
20046         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20047
20048 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20049
20050         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20051         to lookup the implmap row for a P/Invoke method.
20052         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20053         P/Invoke method from the runtime on an as needed basis.
20054
20055 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20056
20057         * metadata.c (mono_metadata_parse_signature): impl.
20058
20059 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20060
20061         * class.c: handle .pack directive.
20062
20063 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20064
20065         * object.c: initialize static fields with RVA data.
20066
20067 2002-05-25  Martin Baulig  <martin@gnome.org>
20068
20069         * debug-symfile.c
20070         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20071
20072 2002-05-24  Martin Baulig  <martin@gnome.org>
20073
20074         * debug-symfile.c
20075         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20076         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20077         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20078
20079 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20080
20081         * object.c: special case string ctros in invoke.
20082         * gc.c: silly whitespace changes.
20083
20084 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20085
20086         * threadpool.[ch]: impl. a threadpool that can
20087         be used by mint and mono.
20088
20089 2002-05-22  Martin Baulig  <martin@gnome.org>
20090
20091         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20092         The first argument is now a `MonoReflectionModuleBuilder *', the return
20093         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20094         `methods' field to get the method builder.  The `token' argument is the
20095         unfixed token.
20096
20097         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20098         invalid characters instead of g_assert_not_reached()ing.  This seems
20099         to be the behaviour of mscorlib.
20100
20101 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20102
20103         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20104         Hestilow to fix bug #25104
20105
20106 2002-05-21  Martin Baulig  <martin@gnome.org>
20107
20108         * debug-symfile.c (mono_debug_find_source_location): New function.
20109         Looks up an IL offset in the line number table and returns the source
20110         location as a string.
20111
20112 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20113
20114         * icall.c:
20115         (mono_double_ToStringImpl): changed %f by %g until we have something
20116         better.
20117
20118 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20119
20120         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20121         parameters first in C#.
20122
20123 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20124
20125         * icall.c, reflection.h: added icall to get info about an event.
20126
20127 2002-05-20  Radek Doulik  <rodo@ximian.com>
20128
20129         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20130         endian
20131         (mono_value_box): don't use memcpy for small sizes on
20132         architectures with unaligned access
20133
20134 2002-05-20  Martin Baulig  <martin@gnome.org>
20135
20136         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20137         if `tb->parent == NULL'.
20138         (mono_reflection_create_internal_class): New function.  This is
20139         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20140         for enum types.
20141
20142         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20143         New interncall.
20144
20145 2002-05-19  Martin Baulig  <martin@gnome.org>
20146
20147         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20148         argument to get the length, don't default to the array length.
20149
20150 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20151
20152         * assembly.c (mono_assembly_setrootdir): New function used to
20153         override the MONO_ASSEMBLIES directory.
20154
20155 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20156
20157         * icall.c: ValueType_GetHashCode() initialize local var.
20158
20159 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20160
20161         * reflection.c: sort custom attributes table.
20162
20163 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20164
20165         * reflection.c: support named args in custom attributes (write support).
20166
20167 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20168
20169         * reflection.c: fix finally position calculation.
20170
20171 2002-05-15  Radek Doulik  <rodo@ximian.com>
20172
20173         * reflection.c: fixed endianess at many places
20174
20175         * icall.c (ves_icall_InitializeArray): comment out debug msg
20176
20177 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20178
20179         * object.c (mono_unhandled_exception): new function to handle
20180         unhandled exceptions.
20181         (mono_unhandled_exception): call the UnhandledException event.
20182         (mono_runtime_delegate_invoke): impl.
20183
20184 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20185
20186         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20187         returns the RVA, not the direct pointer to the data. Handle the case
20188         when the class size is fixed.
20189
20190 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20191
20192         * reflection.c: fix some endianess issues.
20193
20194 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20195
20196         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20197
20198         * threads.c (mono_thread_init): added a callback which is invoked
20199         at thread start.
20200
20201 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20202         
20203         * icall.c: make GetHashCode return non-negative values.
20204
20205 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20206
20207         * object.c, icall.c, gc.c: revert to address-based hashcode.
20208
20209 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20210
20211         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20212
20213 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20214
20215         * icall.c, class.c: special case <Module>.
20216
20217 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20218
20219         * icall.c: fix bug in GetNow().
20220
20221 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20222
20223         * object.c (mono_runtime_class_init): make sure that we call all
20224         static class constructors.
20225
20226 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20227
20228         * reflection.c: sort methodsemantics table.
20229
20230 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20231
20232         * reflection.h, reflection.c: honour init locals setting.
20233
20234 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20235
20236         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20237
20238 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20239
20240         * reflection.c: support ContructorBuilders in attribute blob creation.
20241
20242 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20243
20244         * reflection.c: some changes to build a binary that can be run
20245         directly in windows.
20246
20247 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20248
20249         * loader.c: print a big message when an icall can't be found.
20250
20251 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20252
20253         * string-icalls.c: fix bug 24248.
20254
20255 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20256
20257         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20258         icall.c, reflection.h: separate assembly loading by pathname and by
20259         assembly name. Use the MONO_PATH env var to search for assemblies.
20260
20261 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20262
20263         * assembly.c, image.h: add some support for assemblies
20264         with multiple modules.
20265         * class.c, class.h: export mono_class_from_typeref().
20266         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20267         instead.
20268
20269 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20270
20271         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20272         documentation says (the ECMA one is correct).
20273
20274 2002-05-02  Dick Porter  <dick@ximian.com>
20275
20276         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20277         Don't name the synchronisation mutex.
20278
20279 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20280
20281         * rand.c
20282         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20283         Make the prototypes match.
20284         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20285         Same.
20286
20287         * icall.c
20288         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20289         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20290         all systems have tm.tm_zone, so use strftime() with %Z to print
20291         the timezone abreviation into a temp string.
20292
20293         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20294         rather than mono_array_addr() on a MonoString on Big Endian
20295         machines.
20296
20297 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20298
20299         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20300         fix bug 24041
20301
20302 2002-04-30  Dick Porter  <dick@ximian.com>
20303
20304         * socket-io.c: Cope with SOCKET being an integer rather than a
20305         pointer now.
20306
20307         * threads.c: Added Thread_free_internal, to deal with thread
20308         handle cleanup.  Moved calls to handle_store() and handle_remove()
20309         to start_wrapper(), so each can only be called once.  Allocate
20310         synchronisation blocks with GC_malloc(), and use GC finalisation
20311         to close the handles.
20312
20313         * icall.c: added System.Threading.Thread::Thread_free_internal
20314
20315 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20316
20317         * icall.c: support Environment.Exit, CommandLineArgs().
20318
20319 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20320
20321         * object.c, object.h: added mono_runtime_run_main () and
20322         mono_runtime_get_main_args () for use in System.Environment.
20323
20324 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20325
20326         * gc.c: fix thinko, enable actual finalization since the jit is now
20327         fixed.
20328
20329 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20330
20331         * gc.c, object.c: take into account that an object may be offset wrt the address
20332         returned by GC_malloc().
20333
20334 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20335
20336         * image.c: handle files without entries in the assembly table (modules).
20337
20338 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20339
20340         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20341         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20342         allowed to be null when it's System.Object class setup.
20343
20344 2002-04-27  Martin Baulig  <martin@gnome.org>
20345
20346         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20347         if `tb->parent == NULL' rather than crashing.
20348
20349 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20350
20351         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20352         calling acos() where asin() should have been called.
20353
20354 2002-04-26  Martin Baulig  <martin@gnome.org>
20355
20356         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20357         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20358         there's a subdirectory called `System', but we don't want to read that
20359         subdirectory as an assembly.
20360
20361 2002-04-25  Martin Baulig  <martin@gnome.org>
20362
20363         * debug-symfile.c: Reflect latest MonoString changes.
20364
20365 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20366
20367         * rand.c, rand.h: instance method icalls need to have an explicit
20368         this pointer as first argument in the C implementation.
20369
20370 2002-04-25  Nick Drochak <ndrochak@gol.com>
20371
20372         * icall.c: Fix typo in map for GetNonZeroBytes
20373
20374 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20375
20376         * string-icalls.c : String does now passes unit tests without any 
20377         errors, the following changes has been made:
20378         
20379         Implemented replace methods.
20380         Renaming of methods to (try) follow the standard.
20381         Fixed compare ordinal
20382         Made all memory allocated directly to function instead of via icall function.
20383         Small performance fix in is_in_array function
20384                         
20385  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20386
20387         c (mono_string_Internal_ctor_charp_int_int):
20388         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20389         sindex < 0, throw ArgumentOutOfRangeException instead of
20390         ArgumentNullException.
20391
20392         Added new check for length == 0, however
20393         I need to make it return String.Empty from the C code.
20394         
20395         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20396         that calculate the length for us here.
20397         
20398         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20399         mono_string_new_utf16 with mono_string_new, since value is utf8.
20400
20401 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20402
20403         * object.c: register the object for finalization if needed.
20404         Allocate one more char in the string for the terminating 0 char.
20405
20406 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20407
20408         * class.c, class.h, image.c: check if a type implemenst a destructor.
20409         Use the proper key for array class lookups.
20410         * icall.c: register the icalls in the System.GC class.
20411         * gc.c, gc.h: GC-related functions and icalls.
20412
20413 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20414
20415         * icall.c:
20416         * socket-io.c:
20417         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20418         changed a couple of free () by g_free ().
20419
20420         * decimal.c: one-liner in the comments for decimal2string ().
20421
20422 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20423
20424         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20425
20426 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20427
20428         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20429         * object.c (mono_runtime_invoke_array) : handle null in params
20430
20431 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20432
20433         * string-icalls.c: fixed bug in split (one off bug)
20434
20435 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20436
20437         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20438         * icalls.c: added String::Equals as internal method
20439
20440 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20441
20442         * threads.c: fixed bug in the double interlocked functions
20443
20444 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20445
20446         * threads.c: implemented all of the new interlocked icalls.
20447         * string-icalls.c: fix a bug in insert.
20448         * icalls.c: added the icalls for interlocked, removed old string functions.
20449         
20450 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20451
20452         * loader.c: fix off-by-one error when reading argument names.
20453
20454 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20455
20456         * profiler.c: win32 counter implementation (untested).
20457         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20458         (the latter needs testing and more complete impl. from win32 folks).
20459
20460 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20461
20462         * object.c: mono_array_new_full workaround mono_array_class_get
20463         problem.
20464
20465 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20466
20467         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20468         * object.h (mono_string_chars): Changed casting type.
20469
20470 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20471
20472         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20473                            method signatures to use gunichar2 instead of gint16.
20474
20475 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20476
20477         * object.h, object.c: domain-specific versions of mono_object_new and
20478         mono_array_new.
20479
20480 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20481
20482         * object.c: changed String layout
20483
20484         * string-icalls.c (mono_string_Internal_ctor_chara): added
20485         internal string constructors.
20486
20487 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20488
20489         * threads.c: pass 'this' to the thread start routine.
20490
20491 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20492
20493         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20494         InternalCompareStr don't call twice mono_string_cmp_char for the last
20495         character. Improved performance in mono_string_cmp_char.
20496
20497 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20498
20499         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20500         code into its own library: libmonoruntime.
20501
20502 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20503
20504         * object.h, object.c: changed array format so that szarrays do not
20505         require a bounds structure.
20506         * icall.c, appdomain.c: support for new szarray format.
20507
20508 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20509
20510         * metadata.c: compare also the retuns type when comparing signatures:
20511         we didn't do this as an optimization since really overloaded methods
20512         must differ also in the arguments, but this doesn't work with
20513         low-level IL code (or when using explicit conversion operators: see
20514         bug#23498 for an example).
20515
20516 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20517
20518         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20519
20520 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20521
20522         * icall.c: make MonoType::GetElementType its own icall.
20523
20524 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20525
20526         * icall.c: remove MonoMethod_get_Name().
20527         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20528         object.
20529
20530 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20531
20532         * string-icalls.c: optimized a few methods.
20533
20534 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20535
20536         * icall.c: added all new string internal calls
20537         * string-icalls.c: added, new string internal call implementation.
20538         * object.c: added mono_string_new_size for allocating a string a size
20539
20540 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20541
20542         * object.c (mono_object_isinst): use the same code as in the
20543         optimized x86 version.
20544
20545 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20546
20547         * profiler.c: TSC-based timer code (faster and more accurate).
20548         Not hooked up in configure, yet (set USE_X86TSC to 1).
20549
20550 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20551
20552         * profiler.c, profiler.h: track time spent compiling methods.
20553         * threads.c: track thread creation/destruction.
20554
20555 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20556
20557         * profiler.c, profiler.h, profiler-private.h: profiling interface
20558         and sample implementation. Moved here so that it can be used also by
20559         the jit.
20560
20561 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20562
20563         * reflection.c, reflection.h: keep types and other handles separate in
20564         the hash tables for referred tokens. Add guid for modules.
20565
20566 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20567
20568         * assembly.c: fix bugs found with valgrind.
20569         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20570
20571 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20572
20573         * threads: added icall support for getting current domain for
20574                    the thread.
20575  
20576 2002-04-13  Martin Baulig  <martin@gnome.org>
20577
20578         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20579         (MonoDebugVarInfo): Added `index' field for register based addresses.
20580         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20581         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20582         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20583         `MonoDebugVarInfo *this_var'.
20584
20585         * debug-symfile.c (relocate_variable): New static function to write
20586         a location description for a local variable or method parameter.
20587
20588 2002-04-12  Martin Baulig  <martin@gnome.org>
20589
20590         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20591         stack offset and begin/end scope address of a local variable.
20592         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20593         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20594         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20595
20596         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20597         Added new relocation types for start/end scope of a local variable.
20598
20599 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20600
20601         * object.h: add mono_object_domain() macro.
20602         * reflection.c: handle typespecs.
20603         * icall.c: MonoMethod::get_Name() implementation.
20604
20605 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20606
20607         * icall.c: String::GetHashCode() icall implementation.
20608
20609 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20610
20611         * icall.c: String::IndexOfAny icall.
20612         * object.c, object.h: make array->max_length more useful.
20613         Intrduced mono_object_class() and mono_string_length() macros.
20614
20615 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20616
20617         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20618         instead of g_unichar_isdigit.
20619
20620 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20621
20622         * icall.c: Implement a simple Double.ToString().
20623
20624 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20625
20626         * appdomain.h: only io-layer.h is supposed to be included.
20627         * icall.c: explicitly import environ. Fix warning.
20628
20629 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20630
20631         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20632                 return true even if it's not Daylight Savings time.
20633                 Only return false for the case where the function isn't
20634                 implemented for a plaform (read Windows).
20635
20636 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20637
20638         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20639         data with a mutex.
20640
20641 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20642
20643         * mempool.c (mono_mempool_alloc): only use g_malloc when
20644         absolutely necessary.
20645
20646 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20647
20648         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20649
20650         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20651         (mono_class_proxy_vtable): use domain mempool
20652
20653 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20654
20655         * appdomain.h, appdomain.c: split initialization that requires the
20656         execution engine support into mono_runtime_init().
20657
20658 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20659
20660         * class.c (mono_class_init): don't include vtable inside MonoClass
20661         to save some memory, gather some statistics.
20662         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20663
20664 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20665
20666         * icall.c: internalcall implementation for ValueType.Equals().
20667
20668 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20669
20670         * object.c (mono_message_init): moved 
20671         (mono_runtime_exec_main): new arch. independent impl.
20672         (mono_runtime_invoke_array): new method - like
20673         mono_runtime_invoke, but you can pass an array of objects.
20674         (mono_remoting_invoke): new arch. independent impl.
20675         (mono_message_invoke): new arch. independent impl.
20676         (mono_runtime_class_init): new arch. independent impl.
20677         (mono_runtime_object_init): new arch. independent impl.
20678
20679 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20680
20681         * metadata.c, object.c, reflection.c: documented the exported
20682         functions.
20683
20684 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20685
20686         * icall.c: simpler code to pass the assembly builder data to corlib.
20687         Implement GetNestedTypes() internalcall.
20688
20689 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20690
20691         * class.c: warn if a type can't be loaded.
20692
20693 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20694
20695         * image.h: typedef MonoImageOpenStatus
20696         * types.h: removed unused file
20697         
20698 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20699
20700         * icall.c: Enum_ToObject accepts enum value arguments.
20701
20702 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20703
20704         * class.c: move initialization of properties, events and nested
20705         classes, so that they happen for interfaces, too.
20706
20707 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20708
20709         * icall.c: cleanup some ugly casts in Array_SetValue*.
20710
20711 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20712
20713         * icall.c: the values array fro enums is of the correct type, now.
20714         Implement (correctly) getFullName instead of assQualifiedName for
20715         MonoType.
20716         * reflection.h, reflection.c: added mono_type_get_name ().
20717
20718 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20719
20720         * assembly.c, image.h: for each MonoImage, record from wich assembly
20721         it was loaded.
20722         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20723         Make Type.Assembly work.
20724
20725 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20726
20727         * debug-symfile.h: use char* instead of gpointer to avoid
20728         unnecessary casts.
20729
20730         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20731
20732         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20733         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20734
20735 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20736
20737         * icall.c (mono_message_init): impl. (code cleanup)
20738         (ves_icall_InternalExecute): impl. FieldGetter
20739
20740         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20741         defined we call all (non-static)methods through the vtable. 
20742
20743 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20744
20745         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20746         finalizer even though the memory is still referenced (and the chunk of
20747         memory is not freed).
20748
20749 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20750
20751         * assembly.c: fix brokeness.
20752
20753 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20754
20755         * class.c: kill some warnings. Check explicit interface method
20756         implementation also without considering the namespace.
20757         Load also literal strings in static class data.
20758
20759 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20760
20761         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20762         (default_assembly_name_resolver): Make the resolver take the
20763         "base" directory where the assembly was originally defined, so we
20764         can load DLLs that are in the same directory as the assembly that
20765         is being referenced.
20766
20767 2002-03-28  Dick Porter  <dick@ximian.com>
20768
20769         * file-io.h: 
20770         * file-io.c:
20771         * socket-io.c: 
20772         * unicode.h: 
20773         * unicode.c: Warning cleanups
20774
20775 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20776
20777         * object.h, reflection.h: use the correct type instead of MonoObject.
20778
20779 2002-03-28  Martin Baulig  <martin@gnome.org>
20780
20781         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20782         (mono_debug_update_symbol_file): Initialize classes if necessary.
20783
20784 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20785
20786         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20787         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20788
20789 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20790
20791         * assembly.h: fix function prototype.
20792         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20793         * mono-endian.h: use const cast.
20794
20795 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20796
20797         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20798
20799 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20800
20801         * loader.c: don't assert when a typeref can't be loaded, give
20802         a chance to the runtime to trow an exception instead.
20803         * loader.h: fix warning.
20804
20805 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20806
20807         * class.c (mono_class_proxy_vtable): added proxy support
20808
20809 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20810
20811         * icall.c: removed last of PAL calls, added System.Environment
20812         * file-io.h, file-io.c: MonoIO implementation
20813         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20814
20815 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20816
20817         * appdomain.c: do not use the byte marker in ldstr table lookup.
20818         * debug-helpers.c: allow two ':' to separate class and method name.
20819         * object.c: allocate arrays bounds with the GC, too.
20820         * verify: add a few more checks.
20821
20822 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20823
20824         * reflection.c: output also literal strings. Allocate parameter data
20825         with GC_malloc() (thanks, Martin, for catching this!).
20826
20827 2002-03-26  Martin Baulig  <martin@gnome.org>
20828
20829         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20830         include the `this' offset in the `param_offsets'.
20831
20832 2002-03-25  Martin Baulig  <martin@gnome.org>
20833
20834         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20835         mono_debug_get_class() function to get the classes. Added new
20836         relocation types for arrays and strings.
20837         (mono_debug_get_class): New static function to search in all
20838         referenced assemblies for a metadata token.
20839
20840         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20841
20842 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20843
20844         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20845         hold gc-allocated objects. Make the string heap a stream like the
20846         others. Removed duplicated code when writing stream info.
20847         Added asserts to catch possible buffer overflows. Set the sorted map
20848         for tables that need sorting. Added some documentation.
20849
20850 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20851
20852         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20853         for interned strings and vtables.
20854
20855 2002-03-24  Martin Baulig  <martin@gnome.org>
20856
20857         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20858         it in the array since it was created with g_slist_prepend().
20859
20860 2002-03-24  Martin Baulig  <martin@gnome.org>
20861
20862         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20863         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20864         (mono_debug_method_from_token): Renamed to
20865         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20866         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20867
20868         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20869         relocation types.
20870
20871         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20872
20873 2002-03-24  Martin Baulig  <martin@gnome.org>
20874
20875         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20876         (mono_debug_method_from_token): New func.
20877
20878         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20879         New interncall, calls mono_debug_local_type_from_signature().
20880         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20881         calls mono_debug_method_from_token().
20882
20883 2002-03-23  Martin Baulig  <martin@gnome.org>
20884
20885         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20886         specifies the number of bytes to be converted, not the array size.
20887         Return the number of chars, not the number of bytes.
20888         (ves_icall_iconv_get_chars): The `byteCount' argument
20889         specifies the number of bytes to be converted, not the array size.
20890
20891 2002-03-23  Martin Baulig  <martin@gnome.org>
20892
20893         * reflection.h (MonoReflectionSigHelper): New type.
20894
20895         * reflection.c (mono_reflection_sighelper_get_signature_local),
20896         (mono_reflection_sighelper_get_signature_local): New functions.
20897
20898         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20899         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20900         interncalls.
20901
20902 2002-03-23  Martin Baulig  <martin@gnome.org>
20903
20904         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
20905         is_writeable is set.
20906         (mono_raw_buffer_update): New function to write the modified map
20907         back to disk.
20908
20909         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
20910
20911         * debug-symfile.c (mono_debug_update_symbol_file): Call
20912         mono_raw_buffer_update() when done writing.
20913
20914 2002-03-23  Martin Baulig  <martin@gnome.org>
20915
20916         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
20917
20918         * debug-symfile.c: Added support for arguments and local variables.
20919
20920 2002-03-23  Dick Porter  <dick@ximian.com>
20921
20922         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
20923         protected by ifdefs, hence breaking the w32 build.
20924
20925 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20926
20927         * object.c: implement is_interned() the right way.
20928
20929 2002-03-21  Martin Baulig  <martin@gnome.org>
20930
20931         * debug-symfile.[ch]: New files to handle debugging information
20932         files. There's also support to dynamically update these symbol
20933         files to include machine dependent information.
20934
20935 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
20936
20937         * threads.c (mono_thread_create): new function to create thread
20938         from C
20939
20940 2002-03-20  Martin Baulig  <martin@gnome.org>
20941
20942         * icall.c (ves_icall_InternalInvoke): Create a new object if the
20943         method is a constructor.
20944         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
20945         points to ves_icall_InternalInvoke().
20946
20947 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
20948
20949         * file-io.c: Flush shouldn't throw exceptions.
20950
20951 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
20952
20953         * file-io.c: FileStream flush support; FileSetLength now
20954         restores file pointer.
20955
20956 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20957
20958         * class.c: set image for pointer classes.
20959
20960 2002/03/19  Nick Drochak <ndrochak@gol.com>
20961
20962         * sysmath.c: Forgot one.
20963
20964 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
20965
20966         * sysmath.c: Avoid redefining existing names.
20967
20968 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20969
20970         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20971         handled by runtime as icall rather than dllimport from libm.so
20972         * file-io.c, file-io.h: fixed handle argument type.
20973
20974 2002-03-18  Dick Porter  <dick@ximian.com>
20975
20976         * reflection.c (mono_image_get_type_info): rename interface to
20977         iface, because of "#define interface struct" on windows.
20978
20979 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20980
20981         * class.c, class.h: rename and export mono_ptr_class_get().
20982         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20983         * reflection.c, reflection.h, icall.c: better/saner type name
20984         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20985         method signatures.
20986
20987 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20988
20989         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20990
20991         * icall.c (ves_icall_InternalInvoke): impl.
20992
20993 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20994
20995         * reflection.c: output the interface map table, too.
20996
20997 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20998
20999         * class.c (class_compute_field_layout): separate computation of 
21000         static field layout
21001
21002 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21003
21004         * icall.c: added System.Buffer support.
21005         * file-io.c: moved file icalls from PAL to FileStream.
21006
21007 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21008
21009         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21010
21011 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21012
21013         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21014
21015 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21016
21017         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21018
21019 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21020
21021         * debug-helpers.{c,h}: moved here from monograph some useful functions
21022         to locate a method by name/signature in a class or image. Included
21023         also a small and flexible IL disassembler.
21024
21025 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21026
21027         * reflection.c: fixup tokens in methods with small header size, too.
21028
21029 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21030
21031         * object.c (mono_string_to_utf8): remove assert(!error), instead
21032         print a warning. 
21033
21034 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21035
21036         * icall.c: update to the new mono_Array_class_get interface.
21037
21038 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21039
21040         * appdomain.c, object.c: Boehm-GC enable.
21041         * icall.c: make get_data_chunk() support split data requests.
21042         Ensure a class is initialized in more cases. Return only the first
21043         property found in GetProperties() or the compiler gets confused. 
21044         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21045         * reflection.h, reflection.c: add fixup mechanism for field and method
21046         tokens. Initialize assembly->typeref in a single place. Output
21047         properties after events. Support custom attributes for events, too.
21048         Typo fix for paramter custom attrs.
21049
21050 2002-03-07  Martin Baulig  <martin@gnome.org>
21051
21052         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21053
21054 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21055
21056         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21057
21058 2002-03-06  Martin Baulig  <martin@gnome.org>
21059
21060         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21061         non-zero lower bounds. See testcases #F10-#F13.
21062
21063 2002-03-05  Martin Baulig  <martin@gnome.org>
21064
21065         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21066
21067         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21068         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21069         here.
21070         (ves_icall_System_Array_SetValue): Likewise.
21071         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21072         as argument and does the actual work. This function is used when copying a
21073         multi-dimensional array.
21074         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21075         now do all the widening conversions of value types.
21076         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21077
21078 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21079
21080         * class.c: remove some magic numbers and use the smbolic names,
21081         instead. Added init_events() to load event info at class init time.
21082         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21083         and mono_metadata_methods_from_event().
21084         * reflection.h, reflection.c: added support for writing out the evnets
21085         related information.
21086
21087 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21088
21089         * reflection.h, icall.c: use a different method (GetInterfaces)
21090         to gather interface info and add isbyref, isprimitive and
21091         ispointer to the ves_icall_get_type_info() return value.
21092
21093 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21094
21095         * class.h: stared adding support for events.
21096         * icall.c: split find_members implementation. Added debug icall to get
21097         the address of an object.
21098         * reflection.c: handle TypeBuilders in mono_type_get_object().
21099
21100 2002-03-01  Martin Baulig  <martin@gnome.org>
21101
21102         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21103         ArgumentOutOfRangeException(), not an ArgumentException().
21104         (ves_icall_System_Array_GetLowerBound): Likewise.
21105         (ves_icall_System_Array_GetValue): Improved argument checking.
21106         (ves_icall_System_Array_SetValue): Improved argument checking.
21107
21108 2002-03-01  Martin Baulig  <martin@gnome.org>
21109
21110         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21111         called with invalid arguments rather than just dying with g_assert().
21112         (ves_icall_System_Array_SetValue): Likewise.
21113         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21114         raise a NotImplementedException instead.
21115         (ves_icall_System_Array_GetLength): Added argument checking.
21116         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21117
21118 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21119
21120         * object.h (mono_assert): new macros mono_assert and
21121         mono_assert_not_reached
21122
21123 2002-02-28  Martin Baulig  <martin@gnome.org>
21124
21125         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21126         and "System::String::IsInterned" to "System::String::_IsInterned".
21127
21128 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21129
21130         * icall.c: remove hacks for typebuilder. Added icall to create a
21131         modified type from a tybebuilder.
21132         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21133         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21134         to create a backing MonoClass for a TypeBuilder.
21135
21136 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21137
21138         * class.c, class.h: more refactoring of class init.
21139         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21140
21141 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21142
21143         * marshal.c, marshal.h: start of marshaling interface.
21144
21145 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21146
21147         * icall.c: fix order in assembly qualified name icall.
21148
21149 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21150
21151         * class.c: do not free str, since we store it in the hash table.
21152         * reflection.h: add label field to MonoILExceptionInfo.
21153         * reflection.c: handle references to more than one assembly. Handle
21154         case when there isn't a module created in the assembly.
21155
21156 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21157
21158         * class.c: Fix typo. Start refactoring of class init code.
21159
21160 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21161
21162         * appdomain.c: exit with 1 on error.
21163         * class.c: we already have the name in MonoClassField.
21164         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21165         MonoStreamHeader instead of an offset of image->raw_metadata.
21166
21167 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21168
21169         * appdomain.c (mono_init): Be even more descriptive about the error.
21170
21171 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21172
21173         * appdomain.c: give the user an informative message when corlib can't
21174         be loaded.
21175
21176 2002-02-26  Martin Baulig  <martin@gnome.org>
21177
21178         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21179         New icall to get the time zone data.
21180
21181 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21182
21183         * reflection.c: set virtual and raw size of section correctly.
21184         * threads.c: transfer domain information to newly created threads.
21185
21186 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21187
21188         * class.c: when instancing a class in a domain, load the default
21189         vaules for static fields from the constant table. Fix System.Enum to
21190         not be an enum.
21191         * icall.c: implement Object::GetType() internalcall. Implemented
21192         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21193         Fixed checking of binding flags in find_members().
21194         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21195         * reflection.c: handle enumerations when writing to the constant
21196         table. Use a different object cache for types.
21197
21198
21199 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21200
21201         * object.c (mono_object_isinst): fix for arrays
21202
21203         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21204
21205 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21206
21207         * object.c: don't use mprotect ()  and fix intern pool hash table
21208         lookup for big endian systems.
21209
21210 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21211
21212         * icall.c: change type_is_subtype_of () signature.
21213
21214 2002-02-21  Mark Crichton  <crichton@gimp.org>
21215
21216         * rand.c, rand.h: Added random number generator for
21217         System.Security.Cryptography classes.
21218
21219         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21220
21221         * icall.c: Added System.Security.Cryptography calls.
21222
21223 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21224
21225         * class.c, icall.c, metadata.c: better support for pointer types.
21226         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21227         * reflection.c: Add support for getting custom attrs for properties
21228         and simplify some code.
21229
21230 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21231
21232         * icall.c: change getToken () and add custom attribute GetBlob()helper
21233         method.
21234         * reflection.h: add custom attrs array to the reflection builder structures.
21235         * reflection.c: encode and emit custom attributes for all the relevant
21236         reflection objects. Cache fieldref and methodref tokens. Change
21237         mono_image_create_token() interface to take a MonoDynamicAssembly.
21238         More complete custom attributes decoder. Load custom attributes for
21239         Assembly, Field, Method and Constructor objects, too. Make the
21240         returned array an Attribute[] one, not object[]. Added
21241         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21242         custom attribute constructor.
21243
21244 2002-02-20  Dick Porter  <dick@ximian.com>
21245
21246         * icall.c:
21247         * rawbuffer.c:
21248         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21249         problem code out for now).
21250
21251 2002-02-19  Radek Doulik  <rodo@ximian.com>
21252
21253         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21254
21255 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21256
21257         * icall.c: register the GetCustomAttributes method.
21258         * object.c, object.h: add mono_string_new_len ().
21259         * reflection.h, reflection.c: added mono_runtime_invoke(),
21260         mono_install_runtime_invoke(). Added
21261         mono_reflection_get_custom_attrs () to load custom attributes and
21262         create the attribute objects.
21263
21264 2002-02-19  Dick Porter  <dick@ximian.com>
21265         * threads-dummy-types.c:
21266         * threads-dummy-types.h:
21267         * threads-dummy.c:
21268         * threads-dummy.h:
21269         * threads-pthread-types.c:
21270         * threads-pthread-types.h:
21271         * threads-pthread.c:
21272         * threads-pthread.h:  Deleted obsolete files
21273
21274 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21275
21276         * class.c (mono_class_vtable): runtime init the class when we
21277         allocate static class data.
21278
21279         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21280
21281         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21282         and String - but we will need generic marshalling support in the
21283         future. 
21284         (mono_init): set the domain name in a ms compatible way
21285
21286         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21287         String[].
21288
21289 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21290
21291         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21292         for sizes
21293
21294         * appdomain.c (mono_domain_unload): impl.
21295
21296 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21297
21298         * appdomain.c, object.c: fix intern pool implementation.
21299         * class.c: fix alignment code.
21300
21301 2002-02-16  Radek Doulik  <rodo@ximian.com>
21302
21303         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21304         and s2 > s1, just copy lower bytes to be compatible with little
21305         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21306         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21307
21308         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21309         force big_endian to be 1 for big endian machines 
21310         (ves_icall_iconv_new_decoder): ditto
21311
21312 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21313
21314         * socket-io.c (convert_sockopt_level_and_name): If the system
21315         doesn't define SOL_IP or SOL_TCP, get them by hand using
21316         getprotobyname() and caching the values (because this could be a
21317         slow operation).
21318         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21319         Use the appropriate struct when the system does support it. Ie,
21320         not all systems have struct ip_mreqn so use struct ip_mreq when
21321         appropriate.
21322
21323 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21324
21325         * reflection.c: handle finally clauses.
21326
21327 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21328
21329         * socket-io.c: use g_snprintf() instead of snprintf.
21330
21331 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21332
21333         * reflection.c (mono_param_get_objects): Cast second argument to
21334         mono_method_get_param_names to a const char** to silence the
21335         compiler warning.
21336
21337         * appdomain.c (mono_domain_assembly_open): Put parens around the
21338         truth statement in the for-loop.
21339
21340         * unicode.c (iconv_convert): Got rid of a compiler warning about
21341         int i being unused when the system has a new iconv.
21342         (iconv_get_length): Same.
21343
21344         * image.c (load_class_names): Cast the second argument to
21345         g_hash_table_insert() to char* to hush compiler warnings about the
21346         arg being a const.
21347         (mono_image_open): Same here.
21348
21349         * socket-io.c: Don't conditionally include sys/filio.h or
21350         sys/sockio.h here anymore since we now get them from
21351         io-layer/io-layer.h
21352         (inet_pton): If the system doesn't support inet_aton, implement
21353         using inet_addr and also #define INADDR_NONE if it isn't defined
21354         by the system.
21355
21356 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21357
21358         * metadata.c, metadata.h: added function to get packing and size info
21359         of a typedef.
21360         * reflection.h, reflection.c: handle field RVA data. Save info about
21361         the table layout if needed. Assign typedef indexes to all the types
21362         before dumping the info about them to avoid forward reference problems.
21363
21364 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21365
21366         * socket-io.c (convert_sockopt_level_and_name): ifdef
21367         SO_ACCEPTCONN because it is not defined on my system (old debian)
21368
21369 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21370
21371         * opcode.c: use stddef.h to get NULL.
21372
21373 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21374
21375         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21376         for FIONBIO, FIONREAD and SIOCATMARK.
21377         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21378         define INADDR_NONE and besides, inet_addr() is deprecated and
21379         should not be used. Use inet_pton() instead - it also has the
21380         added bonus that it can easily handle IPv6 addresses as well.
21381         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21382
21383 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21384
21385         * decimal.c: remove _MSC_VER conditional.
21386
21387 2002-02-13  Dick Porter  <dick@ximian.com>
21388
21389         * socket-io.c: 
21390         * icall.c: Internal calls for Blocking, Select, Shutdown,
21391         GetSocketOption and SetSocketOption
21392
21393 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21394
21395         * assembly.cs: better resolver: use it instead of some kludgy
21396         code.
21397
21398 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21399
21400         * reflection.c: the best way to speed-up the compiler is to avoid
21401         infinite loops.
21402
21403 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21404
21405         * class.c (mono_class_vtable): changed the object layout
21406         (obj->vtable->class). 
21407         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21408
21409 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21410
21411         * assembly.c: look for assemblies in the assembly dir, too.
21412
21413 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21414
21415         * class.c: fix thinko in mono_class_from_type().
21416
21417 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21418
21419         * exception.h, exception.c: added TypeLoadException.
21420         * object.h, object.c: added mono_array_clone ().
21421         * icall.c: handle throwOnError in AssemblyGetType().
21422         Added Array.Clone().
21423         * opcode.h, opcode.c: use a single value for the opcode val.
21424         Compile fix for non-gcc compilers.
21425
21426 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21427
21428         * opcodes.c, opcodes.h: export interesting info about opcodes.
21429
21430 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21431
21432         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21433         icalls. 
21434
21435         * class.c (class_compute_field_layout): set element_class for enums
21436         (mono_class_create_from_typedef): set element_class for normal classes
21437
21438         * icall.c (ves_icall_System_Enum_get_value): impl.
21439
21440         * class.c (mono_class_create_from_typedef): do not set valuetype
21441         flag for System.ValueType and System.Enum
21442
21443 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21444
21445         * unicode.c (iconv_convert): fix big endian problem.
21446
21447 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * class.c: add asserts if we are ever going to scribble over memory.
21450         * socket-io.c: not all systems have AF_IRDA defined.
21451
21452 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21453
21454         * class.c (class_compute_field_layout): do not consider static
21455         fields to compute alignment
21456
21457 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21458
21459         * appdomain.c (mono_appdomain_get): impl.
21460         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21461
21462 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21463
21464         * icall.c: ignore "file://" prefix when loading an assembly.
21465
21466 2002-01-23  Dick Porter  <dick@ximian.com>
21467
21468         * socket-io.c:
21469         * icall.c:
21470         * Makefile.am: Added socket support
21471
21472 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21473
21474         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21475         code back.  This should return the assemblies that are loaded by
21476         the runtime on behalf of an application domain. 
21477
21478         The current implementation is still broken, it just returns every
21479         assembly loaded, but until we get real applications domain this
21480         will do.
21481
21482 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21483
21484         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21485         AppDomain object.
21486
21487 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21488
21489         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21490         the mono_class_from_name lookup.
21491         (ves_icall_get_parameter_info): ditto.
21492         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21493         method.
21494         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21495
21496 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21497
21498         * class.c: load also nested classes on class init.
21499         System.ValueType instance methods gets passed boxed
21500         values, unless methods in derived classed that get a pointer to the
21501         data.
21502         * icall.c: use better name parsing code in GetType().
21503         * image.c, image.h: add mono_image_loaded ().
21504         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21505         * reflection.c, reflection.h: added mono_reflection_parse_type().
21506
21507 2002-01-22  Veronica De Santis <veron78@interfree.it>
21508
21509         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21510         * threads.c : Added the implementation of internal calls for events
21511         * threads.h : Added prototypes of internal calls for events
21512         
21513 2002-01-21  Radek Doulik  <rodo@ximian.com>
21514
21515         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21516
21517 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21518
21519         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21520         (mono_class_value_size): use min_align
21521
21522 2002-01-20  Dick Porter  <dick@ximian.com>
21523
21524         * threads.h:
21525         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21526         so it compiles on w32.
21527
21528 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21529
21530         * metadata.c (mono_type_stack_size): impl.
21531
21532         * class.c (mono_class_get_field): impl. memberref token
21533
21534 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21535
21536         * icall.h : Added the internal calls mapping for CreateMutex_internal
21537                     and ReleaseMutex_internal.
21538         * threads.h : Added the prototype of mutexes internal calls.
21539         * threads.c : Added the implementations of mutexes internal calls.
21540
21541 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21542
21543         * metaparse.h: removed unused file.
21544         * reflection.c, reflection.h: added stream_data_align () function 
21545         to align data in streams and keep stream aligned. Add support for
21546         exception support in method headers.
21547
21548 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21549
21550         * unicode.c: make iconv_convert () return the number of bytess written
21551         in the output buffer.
21552
21553 2002-01-15  Dick Porter  <dick@ximian.com>
21554         * threads.c: Make the runtime's idea of infinite timeouts coincide
21555         with the class library's
21556
21557         Fix a particularly egregious bug in mono_thread_cleanup(). That
21558         code was so utterly bogus it must have been written on a Monday.
21559
21560 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21561
21562         * reflection.h: add subtypes field to TypeBuilder.
21563         * reflection.c: encode constants for literal fields.
21564         Handle subtypes. Fix user string token (and add a zero byte)
21565         at the end.
21566         
21567 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21568
21569         * class.c (mono_class_init): bug fix: assign slot numbers for
21570         abstract methods.
21571
21572 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21573
21574         * reflection.c: don't try to output a code RVA for abstract methods.
21575         Small fixes for method header format. Output parameter info to the
21576         ParamDef table. Save method overriding info to MethodImpl table.
21577         Fix property support. Allow typedef.extends to be a type in the
21578         building assembly.
21579         * verify.c: fix off-by-one error.
21580
21581 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21582
21583         * class.c: fix mono_class_from_mono_type () for szarray types.
21584         Remove unused cache check in mono_class_from_type_spec().
21585         * icall.c: *type_from_name () functions handle simple arrays and byref.
21586         * reflection.c: handle byref and szarray types. Handle methods without
21587         body (gets P/Invoke compilation working). Handle types and fields in
21588         get_token ().
21589         * reflection.h: add rank to MonoTypeInfo.
21590
21591 2002-01-10  Dick Porter  <dick@ximian.com>
21592
21593         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21594         internal calls
21595
21596 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21597
21598         * icall.c: initialize class in type_from_handle ().
21599         Loop also in parent classes for get_method ().
21600         * reflection.c: properly encode class and valuetype types.
21601         Start on encoding TypeBuilder types. Handle fieldrefs.
21602         Use correct length when registering a user string.
21603         Handle ConstructorBuilder and MonoMethod in get_token ().
21604         Make mono_type_get_object () aware of cached types.
21605         * object.c: back out change to mono_string_new ().
21606
21607 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21608         * object.c: mono_string_new should return a NULL when the string 
21609         passed in is NULL -- not try to deference it.
21610         
21611 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21612
21613         * icall.c: hack to make IsSubType work for TypeBuilders.
21614         * reflection.c: emit constructors before methods.
21615         Retrieve param names in mono_param_get_objects().
21616
21617 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21618
21619         * Makefile.am: fix list of headers and sources so automake 1.5
21620         doesn't complain. Removed \# at end of list.
21621
21622 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21623
21624         * reflection.c: get token for a method ref. Set return type of
21625         constructor to void.
21626         * loader.c: debug message.
21627         * class.c: typo fix.
21628
21629 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21630
21631         * icall.c: fix array init with rank > 1. FindMembers
21632         loops in parent class as well.
21633         * image.c: do not insert nested types in name cache.
21634         * reflection.c: warning fix.
21635         * reflection.h: add override method (for interface impl).
21636
21637 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21638
21639         * metadata.c: fix customattr decoding.
21640
21641 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21642
21643         * rawbuffer.cs: Added native Win32 implementation, avoids using
21644         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21645
21646 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21647
21648         * class.c: make the low-level routines handle the cache.
21649
21650 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21651
21652         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21653
21654 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21655
21656         * class.c: fix mono_array_element_size() for objects.
21657         * class.h, class.c: add properties to MonoClass and load them
21658         at init time.
21659         * icall.c: check with isinst() when assigning a value to an array
21660         instead of requiring the classes to match exactly.
21661         Implemented icall for System.Type::GetType().
21662         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21663         enums. Handle bindingflags when looking for methods and fields.
21664         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21665         and mono_metadata_methods_from_property().
21666         * reflection.h, reflection.c: added structures for propreties,
21667         parameters and enums. Implemented mono_property_get_object() and
21668         mono_param_get_objects().
21669
21670 2001-12-18  Dick Porter  <dick@ximian.com>
21671
21672         * file-io.c: Use mono_string_to_utf16() instead of
21673         mono_string_chars()
21674
21675         * object.c: Added mono_string_to_utf16(), which copies the non
21676         NULL-terminated MonoString into a new double-null-terminated
21677         buffer.
21678
21679 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21680
21681         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21682
21683 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21684
21685         * file-io.c: raise exceptions if handle is invalid.
21686
21687 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21688
21689         * assembly.c: yet another check for mscorlib.
21690         * class.c, class.h: load nesting info for classes.
21691         * icall.c: many new functions to support the Reflection classes.
21692         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21693         * reflection.h, reflection.c: mono_image_create_token(),
21694         mono_assembly_get_object(), mono_type_get_object(),
21695         mono_method_get_object(), mono_field_get_object(): methods to return
21696         objects that parallel the C representation of assemblies, types,
21697         methods, fields.
21698
21699 2001-12-11  Dick Porter  <dick@ximian.com>
21700
21701         * icall.c:
21702         * file-io.c: Internal calls for file IO.
21703
21704 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21705
21706         * tabledefs.h: missing FileAttributes.
21707         * verify.h, verify.c: use is_valid_string () to simplify and check for
21708         valid strings more correctly. Fix warnings and speeling.
21709         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21710         Check code: branches, maxstack, method calls.
21711
21712 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21713
21714         * object.c (mono_object_allocate): removed static, so that the jit
21715         can allocate value types.
21716
21717         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21718
21719 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21720
21721         * class.c: init enum types right away and register the
21722         token->MonoClass map in mono_class_create_from_typedef ().
21723         * verify.h, verify.c: first cut of the verifier.
21724         * pedump.c: add --verify switch to verify metadata tables.
21725         * tabledefs.h: add some missing enums.
21726
21727 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21728
21729         * class.c (mono_install_runtime_class_init): impl.
21730         (mono_class_init): renamed mono_class_metadata_init to
21731         mono_class_init, also removed the metadata_inited flag
21732
21733         * object.c (mono_object_isinst): use faster algorithm
21734
21735 2001-11-30  Radek Doulik  <rodo@ximian.com>
21736
21737         * mono-endian.h: reverted last change
21738         added function prototypes
21739
21740         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21741         add mono-endian.c back
21742
21743         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21744         for unaligned access, I've mistaked it with endianess. I am
21745         sorry.
21746         (mono_read16): fix reverted endianess
21747         (mono_read64): ditto
21748         (mono_read32): ditto
21749
21750 2001-11-30  Dick Porter  <dick@ximian.com>
21751
21752         * exception.c: Implement mono_exception_from_name()
21753
21754 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21755
21756         * metadata.h, metadata.c: remove params_size and locals_size and their
21757         calculation from the metadata code: they are only usefult to the
21758         interp.
21759
21760 2001-11-29  Radek Doulik  <rodo@ximian.com>
21761
21762         * object.c (mono_ldstr): swap bytes here, it's probably not the
21763         best place, but works for me now, I'll redo it once I know mono
21764         better, also note that I add PROT_WRITE and don't reset back, also
21765         note that it's only affects big endians, so x86 should be OK
21766
21767         * mono-endian.h (read16): use just glib macros for both endians
21768
21769         * mono-endian.c: removed as glib macros are used in in
21770         mono-endian.h so we don't need to care about endianess for read
21771         macros as glib does that for us already
21772
21773 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21774
21775         * class.h, class.h: take minimum alignment into consideration so
21776         that the fields of a class remain aligned also when in an array.
21777
21778 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21779
21780         * loader.h, loader.c: add mono_method_get_param_names().
21781         * class.c: 0-init class fields.
21782
21783 2001-11-26  Dick Porter  <dick@ximian.com>
21784
21785         * icall.c:
21786         * threads-types.h:
21787         * threads.c: New file that handles System.Threading on all platforms
21788
21789         * object.c: 
21790         * object.h: Remove the synchronisation struct from MonoObject,
21791         replace it with a pointer that gets initialised on demand
21792
21793         * Makefile.am: Replace all the system-specific threading code with
21794         a single file that uses the new wrapper library
21795
21796 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21797
21798         * class.c, class.h: add mono_install_trampoline() so that the runtime
21799         can register a function to create a trampoline: removes the ugly
21800         requirement that a runtime needed to export arch_create_jit_trampoline.
21801         * object.h, object.c: added mono_install_handler() so that the runtime
21802         can install an handler for exceptions generated in C code (with
21803         mono_raise_exception()). Added C struct for System.Delegate.
21804         * pedump.c: removed arch_create_jit_trampoline.
21805         * reflection.c: some cleanups to allow registering user strings and
21806         later getting a token for methodrefs and fieldrefs before the assembly
21807         is built.
21808         * row-indexes.h: updates and fixes from the new ECMA specs.
21809
21810 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21811
21812         * class.h, class.c: add enum_basetype field to MonoClass.
21813         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21814         to get index in the constant table reated to a field, param or
21815         property.
21816         * reflection.h, reflection.c: handle constructors. Set public-key and
21817         version number of the built assembly to 0.
21818         * row-indexes.h: update from new ECMA spec.
21819
21820 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21821
21822         * class.h, class.c: add a max_interface_id to MonoClass.
21823         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21824         since it's used to do that. Added mono_type_type_from_obj().
21825         Make GetType() return NULL instead of segfaulting if the type was not
21826         found. Handle simple arrays in assQualifiedName.
21827         * object.h: add a struct to represent an Exception.
21828         * reflection.c: output call convention in method signature.
21829         Add code to support P/Invoke methods and fixed offsets for fields.
21830
21831 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21832
21833         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21834         the value.
21835         * icall.c: use mono_array_addr instead of array->vector: fixes the
21836         reflection image writing.
21837         * reflection.c: init call convention byte to 0 in method signature.
21838         Encode the property signature. Don't output property-related methods
21839         twice. Really process the properties for a type (don't cast a field to
21840         a property, my mom always told me that).
21841         Fix 64 bit issues in pointer alignment in a different and more
21842         readable way.
21843
21844 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21845
21846         * loader.h: Removed type class from MonoDefaults, added monotype
21847
21848         * loader.c: Loaded MonoType, removed loading of Type
21849
21850         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21851         and fills in System.Type._impl with a RuntimeTypeHandle rather
21852         than the actual MonoClass *
21853
21854         (ves_icall_type_from_handle): change from type_class to
21855         monotype_class
21856
21857         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21858         implemented
21859
21860         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21861         implemented
21862
21863         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21864
21865         (ves_icall_System_Reflection_Assembly_GetType): implemented
21866
21867         (ves_icall_System_MonoType_assQualifiedName): implemented
21868
21869         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21870
21871 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21872
21873         * assembly.c (mono_assembly_open): Implement a cache for the
21874         assemblies. 
21875
21876         (mono_assembly_close): only destroy the assembly when the last
21877         reference is gone.
21878         
21879 2001-11-09  Dick Porter  <dick@ximian.com>
21880
21881         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21882
21883 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21884
21885         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21886
21887 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21888
21889         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21890         from Martin Weindel.
21891         * object.h: add mono_string_chars ().
21892
21893 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21894
21895         * reflection.c (build_compressed_metadata): Eliminates warnings
21896         and uses 64-bit clean code.
21897
21898         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21899         (mono_type_equal): Change signature to eliminate warnings.
21900
21901 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21902
21903         * icall.c, loader.c: remove the internalcall array constructors.
21904         Changes to match the new MonoArray structure.
21905         * object.h, object.c: an array object doesn't allocate an extra
21906         vector. Add mono_array_new_full () to create jagged arrays easily.
21907
21908 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21909
21910         * metadata.h, metadata.c: add mono_metadata_field_info () to
21911         retreive all the info about a field from vairous tables.
21912         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
21913         * class.h, class.c: augment MonoClassField with more info.
21914         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
21915         policy and load a field's RVA if needed.
21916
21917 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
21918
21919         * class.c (mono_class_metadata_init): create a trampoline for all
21920         virtual functions instead of actually compiling them.
21921
21922 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
21923
21924         * class.h, class.c: include name in MonoClassField.
21925         * class.c: fix fundamental type of System.Object and System.String.
21926         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
21927         tokens in ldtoken.
21928         * icall.c: remove internalcalls for the Reflection stuff that is now
21929         done in C# code.
21930         * loader.c: mono_field_from_memberref () implementation.
21931         * mono-endian.c: thinko (s/struct/union/g).
21932         * object.c, object.h: make the mono_string_* prototypes actually use
21933         MonoString instead of MonoObject.
21934         * reflection.c, reflection.h: updates for changes in the reflection
21935         code in corlib: we use C structures that map to the actual C# classes.
21936         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
21937         fat method header if needed and use the info from the ILGenerator for
21938         methods. Handle fields in types. Misc fixes.
21939
21940 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
21941
21942         * class.c (mono_class_metadata_init): bug fix: always allocate
21943         space for static class data
21944
21945 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
21946
21947         * class.c (mono_compute_relative_numbering): use relative
21948         numbering to support fast runtime type checks.
21949
21950 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
21951
21952         * class.c (mono_class_create_from_typeref): added debugging output
21953         to print class name when MonoDummy is returned instead of real class
21954
21955 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
21956
21957         * class.c (mono_class_metadata_init): interface offset table now
21958         contains pointers into the vtable - this is more efficient for the jit
21959
21960 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
21961
21962         * class.c (mono_class_metadata_init): use a temporary vtable (the
21963         old algorithm only worked for the interpreter, but not for the jit)
21964
21965 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
21966
21967         * loader.c (method_from_memberref): use mono_class_get to get the
21968         class of an array instead of using System.Array directly.
21969         (mono_get_method): also add MEMBERREF methods to the method cache
21970         which usefull for arrays.
21971
21972 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21973
21974         * pedump.c (arch_compile_method): added to compute vtable entry
21975
21976         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21977         number of interfaces.
21978         
21979         * class.h: merged MonoArrayClass into MonoClass
21980
21981         * class.c (mono_class_create_from_typedef): compute the vtable size and
21982         allocate space to include the vtable inside MonoClass
21983         (mono_class_metadata_init): initialize the vtable
21984
21985 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21986
21987         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21988         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21989         * image.c: endian fixes by Laurent Rioux.
21990         * object.h, object.c: rename MonoStringObject to MonoString and
21991         MonoArrayObject to MonoArray. Change some function names to conform to
21992         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21993         guint16* as first argument, so don't use char*.
21994         Provide macros to do the interesting things on arrays in a portable way.
21995         * threads-pthread.c: updates for the API changes and #include <sched.h>
21996         (required for sched_yield()).
21997         * icall.c: updates for the API changes above.
21998         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21999         platforms that need them.
22000
22001 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22002
22003         * class.c: set the correct type for all the fundamental
22004         type when loading the class.
22005
22006 2001-10-05  Dick Porter  <dick@ximian.com>
22007
22008         * threads-pthread.c (pthread_mutex_timedlock): Simple
22009         compatibility version for C libraries that lack this call.
22010
22011 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22012
22013         * class.c: MonoTypes stored in MonoClass are stored as
22014         fundamental MonoTypes when the class represents a
22015         fundamental type (System.Int32, ...).
22016         The TypeHandle return by ldtoken is a MonoType*.
22017         * icall.c: ves_icall_get_data_chunk () write out all the
22018         PE/COFF stuff. Implement ves_icall_define_method (),
22019         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22020         * image.c: properly skip unknown streams.
22021         * loader.h, loader.c: add type_class to mono_defaults.
22022         * metadata.c, metadata.h: export compute_size () as
22023         mono_metadata_compute_size () with a better interface.
22024         Typo and C&P fixes.
22025         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22026         * reflection.c, reflection.h: many cleanups, fixes, output method
22027         signatures and headers, typedef and typeref info, compress the metadata
22028         tables, output all the heap streams, cli header etc.
22029         * row-indexes.h: typo fixes.
22030
22031 2001-10-04  Dick Porter  <dick@ximian.com>
22032
22033         * object.h: Add a synchronisation mutex struct to MonoObject
22034
22035         * object.c (mono_new_object): Initialise the object
22036         synchronisation mutexes
22037
22038         * icall.c: System.Threading.Monitor internal calls
22039         
22040         * threads-pthread.h:
22041         * threads-pthread.c: System.Threading.Monitor internal calls
22042
22043         * threads-types.h: New file, includes the system-specific thread
22044         structures
22045         
22046         * threads-pthread-types.h:
22047         * threads-pthread-types.c: New files, handle pthread-specific
22048         synchronisation types
22049
22050         * threads-dummy-types.h: 
22051         * threads-dummy-types.c: New files of dummy support for
22052         thread-specific types
22053
22054         * metadata.c:
22055         * image.c:
22056         * pedump.c: include mono-endian.h not endian.h
22057         
22058         * Makefile.am: More threads files.
22059         Name mono-endian.h not endian.h
22060
22061 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22062
22063         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22064         stuff and implement a few more bits.
22065         * icall.c: a field needs to be dereferenced twice. Do not use the same
22066         name for two variables in the same scope.
22067         * image.c, image.h: cleanups.
22068
22069 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22070
22071         * class.c (mono_class_metadata_init): bug fix: compute the right size
22072
22073 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22074
22075         * icall.c: implemented some of the Reflection internalcalls.
22076         * image.c, image.h: start writing out the PE/COFF image.
22077         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22078         that does the reverse than decode_blob_size ().
22079         * object.c: use mono_metadata_encode_value (). Move here
22080         temporary implementation of mono_string_to_utf8 ().
22081         * rawbuffer.c: make malloc_map static.
22082
22083 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22084
22085         * metadata.c: fix type comparison for arrays.
22086         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22087         Added a couple of new classes to monodefaults.
22088         * icall.c: added a couple of Reflection-related internalcalls.
22089         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22090         Added a byval_arg MonoType to MonoClass.
22091
22092 2001-09-28  Dick Porter  <dick@ximian.com>
22093
22094         * icall.c:
22095         * threads-pthread.h: 
22096         * threads-pthread.c: Implemented internal calls for
22097         LocalDataStoreSlot operations.  Applied mutexes around all shared
22098         data.  Reworked the thread creation and Start() operations to
22099         avoid a race condition.
22100         
22101         * threads-dummy.h:
22102         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22103
22104 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22105
22106         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22107
22108 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22109
22110         * class.c, loader.c: warn and return NULL instead of erroring out.
22111         * icall.c: added System.AppDomain::getCurDomain().
22112         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22113
22114 2001-09-25  Dick Porter  <dick@ximian.com>
22115
22116         * threads-pthread.h:
22117         * threads-pthread.c: Implemented timed thread joining and added
22118         System.Threading.Thread::Join_internal internal call
22119
22120         * icall.c: Added System.Threading.Thread::Join_internal internal call
22121
22122         * threads-dummy.h:
22123         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22124
22125 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22126
22127         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22128         mono_string_intern () to implement the semantics of the ldstr opcode
22129         and the interning of System.Strings.
22130         * icall.c: provide hooks to make String::IsIntern and String::Intern
22131         internalcalls.
22132
22133 2001-09-23  Dick Porter  <dick@ximian.com>
22134
22135         * threads-dummy.c: 
22136         * threads-dummy.h: New files of dummy threading routines
22137
22138         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22139         support code based on system specifics
22140
22141         Rename PTHREAD_LIBS to THREAD_LIBS
22142         
22143 2001-09-23  Dick Porter  <dick@ximian.com>
22144
22145         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22146         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22147         internal calls.
22148         (mono_thread_init): Set up a Thread object instance to return when
22149         the main thread calls Thread.CurrentThread
22150         (mono_thread_cleanup): Wait for all subthreads to exit
22151
22152         * icall.c: New internal calls for System.Threading.Thread::Sleep
22153         (including Schedule) and CurrentThread
22154
22155         * threads.h: New file, to insulate thread-specific stuff from the
22156         rest of the code
22157
22158 2001-09-21  Dick Porter  <dick@ximian.com>
22159
22160         * threads-pthread.h: 
22161         * threads-pthread.c: New file, for handling pthreads-style
22162         threading support.  Start() now starts a new thread and executes
22163         the ThreadStart delegate instance.
22164
22165         * icall.c: Added the internalcall for
22166         System.Threading.Thread::Start_internal
22167
22168         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22169
22170 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22171
22172         * loader.c: work around the different signatures for delegates
22173         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22174
22175 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22176
22177         * class.h, class.c: add mono_class_get_field_from_name ().
22178         * *: Fix C comments and other ANSI C issues.
22179
22180 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22181
22182         * endian.h, assembly.c: fix some endianness issues.
22183
22184 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22185
22186         * loader.h, load.c: add delegate_class to mono_defaults.
22187         Handle runtime provided methods in mono_get_method ().
22188
22189 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22190
22191         * loader.c (mono_get_method): use pinvoke for internal call
22192
22193         * icall.c: use pinvoke for internal call
22194
22195         * loader.c (method_from_memberref): set the method name
22196
22197 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22198
22199         * metadata.c: help the compiler generate better code for
22200         mono_class_from_mono_type ().
22201
22202 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22203
22204         * class.c (mono_class_metadata_init): delayed computing of the
22205         class size to mono_class_metadata_init ()
22206
22207 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22208
22209         * class.c, class.h: add an interfaces member to MonoClass.
22210         * image.c, image.h: add assembly_name field to MonoImage
22211         from the assembly table.
22212         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22213
22214 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22215
22216         * class.c: Handle Array in mono_class_from_mono_type ().
22217         * metadata.c, pedump.c: some endian fixes.
22218
22219 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22220
22221         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22222         * metadata.c: fix small problem introduced with the latest commit.
22223
22224 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22225
22226         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22227         We don't need a MonoMetadata pointer anymore to compare signatures in
22228         mono_metadata_signature_equal (), update callers.
22229         Reduced memory usage an number of allocations for MonoMethodHeader and
22230         MonoMethodSignature.
22231
22232 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22233
22234         * metadata.c: added compare for szarray.
22235
22236 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22237
22238         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22239         and add a couple more types to it and mono_defaults. Give an hint on
22240         classes that need implementing in our corlib and are referenced
22241         in mscorlib.
22242
22243 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22244
22245         * class.h, class.c: keep track if a class is also an Enum.
22246         * loader.c: Implement a couple more types for use in libffi
22247         marshalling. Gives better diagnostics when failing to dlopen
22248         a library. Set method->klass for P/Invoke methods, too.
22249
22250 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22251
22252         * class.c, class.h: add a MonoType this_arg to MonoClass that
22253         represents a pointer to an object of the class' type that
22254         can be used by the interpreter and later the type cache.
22255         Add best guess alignment info for valuetype objects.
22256
22257 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22258
22259         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22260         into MonoType: one less level of indirection and allocation and
22261         simplifies quite a bit of code. Added cache for MonoTypes that are
22262         used frequently, so that we don't need to allocate them all the time.
22263
22264 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22265
22266         * class.c (mono_class_create_from_typedef): System.Enum is also a
22267         value type, although it does not derive from System.ValueType
22268         (maybe a bug in the ms compiler?)
22269
22270         * metadata.c (mono_type_size): return the right size for value types
22271
22272         * loader.c (mono_get_method): only initialize method header if not abstract
22273
22274         * class.c (mono_class_from_mono_type): use mono_default values. 
22275
22276 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22277
22278         * *: use MonoClass pointers instead of <type_tokens>
22279         
22280         * class.h: new flag: metadata_inited.
22281
22282         * class.c (mono_class_metadata_init): impl.
22283         (mono_class_instance_size): impl.
22284         (mono_class_data_size): impl.
22285
22286 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22287
22288         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22289         MonoClass now has the name and name_space fields. 
22290         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22291         mono_get_method () takes and optional MonoClass as argument.
22292         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22293         instead that takes advantage of a map from class names to typedef
22294         tokens in MonoImage.
22295
22296 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22297
22298         * metadata.c: zero is not a valid alignment boundary.
22299         Merge MONO_TYPE_VOID in default decoding code.
22300
22301 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22302
22303         * image.h: merged MonoMetadata into MonoImage
22304
22305         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22306         identify the type of elements.
22307
22308 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22309
22310         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22311         * cil-coff.h: split MonoMSDOSHeader and add size info.
22312         * image.c: add some consistency checks.
22313         * metadata.c: fix row size computation: one programmer
22314         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22315         add explanation for the locator routine.
22316         Fix decoding of size in method header.
22317         
22318 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22319
22320         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22321         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22322         function from gnome-libs.  This uses the right path separator
22323         based on the OS, and also works around a bug in some systems where
22324         a double slash is not allowed. 
22325         (default_assembly_name_resolver): Use g_concat_dir_and_file
22326         (mono_assembly_open): ditto.
22327
22328 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22329
22330         * metadata.c (mono_metadata_signature_equal): impl.
22331
22332         * *: void is now a realy MonoType (instead of using NULL)
22333         
22334         * metadata.c (do_mono_metadata_parse_type): use
22335         mono_metadata_parse_type to parse void value.
22336
22337 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22338
22339         * metadata.c, metadata.h: in the signature and method header store
22340         only the space required for holding the loca vars and incoming arguments.
22341
22342 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22343
22344         * metadata.c (do_mono_metadata_parse_type): treat void like any
22345         other type (instead of assigning NULL);
22346
22347 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22348
22349         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22350
22351 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22352
22353         * image.c (do_mono_image_open): added a cache for arrays.
22354
22355 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22356
22357         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22358         decode a single column from a row in a metadata table and changes
22359         to take advantage of it in the typedef locator (gives a nice speed up).
22360         Store offset info for function params.
22361
22362 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22363
22364         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22365
22366 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22367
22368         * assembly.c: how could mono_assembly_close () had ever worked?
22369         * metadata.c, metadata.h: provide offset info for local vars.
22370         Implement mono_type_size () to take care of alignment as well
22371         as size (it was mono_field_type_size in cli/class.c before).
22372
22373 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22374
22375         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22376
22377         * assembly.h (CORLIB_NAME): set to corlib.dll
22378
22379         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22380
22381 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22382
22383         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22384         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22385         tokentype.h: massive namespace cleanup.
22386
22387 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22388
22389         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22390
22391 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22392
22393         * metadata.c (mono_metadata_free_type): added check for type !=
22394         NULL (void) before calling mono_metadata_free_type()
22395
22396 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22397
22398         * metadata.h, row_indexes.h: added header with enumerations to use
22399         to index in the columns from tables in metadata and to decode coded
22400         tokens: we should start using this instead of embedding magic numbers
22401         all over the code.
22402
22403 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22404
22405         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22406         Move metadata_t info from cli_image_info_t to MonoImage, where
22407         it's easily accessible. Changed all the uses accordingly.
22408         Added the method and class caches to MonoImage.
22409         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22410         and mono_metadata_decode_value () signature to be more consistent
22411         with the other parse functions (and simplify code). Taken advantage
22412         of zero-length array allocation with GCC. Removed reduntant (and
22413         wrong) MonoFieldType struct and use MonoParam instead. Changed
22414         mono_metadata_parse_field_type () to use common code for parsing.
22415         Added mono_metadata_typedef_from_field () and
22416         mono_metadata_typedef_from_method () to lookup a typedef index from a
22417         field or method token.
22418         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22419
22420 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22421
22422         * metadata.c (mono_metadata_parse_field_type): Implement. 
22423         (do_mono_metadata_parse_type): Split engine from
22424         mono_metadata_parse_type, so that we can create smaller structures
22425         for things that just have one pointer to the MonoType (look at
22426         the MonoFieldType)
22427
22428 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22429
22430         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22431         as Jan Gray found out, it is incorrect. 
22432
22433 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22434
22435         * assembly.c: Implement asssembly loading.  This loads an image
22436         and loads all the referenced assemblies.  Come to think of it, we
22437         could always do lazy loading of the assemblies. 
22438
22439         * image.c (mono_image_open): Keep loaded images in a hashtable.
22440
22441         * image.h (MonoImage): Add reference count.
22442
22443 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22444
22445         * assembly.c (mono_assembly_open): Keep track of the file name in
22446         case the assembly has no ASSEMBLY table.
22447
22448         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22449         from get.c here.
22450
22451 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22452
22453         * metadata.c, metadata.h: decode local vars in method header
22454         parse function. Change callers accordingly.
22455
22456 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22457
22458         * metadata.h, cil-coff.h: protect against multiple inclusion.
22459         Added some new structures to hold information decoded from metadata:
22460         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22461         and relevant decoding/free functions.
22462         * metadata.c: implement decoding functions. Add warning for out of bounds
22463         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22464         all the info about a method signature and invocation. Remove check on
22465         uninitialized local var in parse_mh() and fix memory leak.
22466
22467 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22468
22469         * metadata.h: More macros.
22470
22471         * tokentype.h: New file.
22472
22473 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22474
22475         * assembly.c: added a consistency check and initialize
22476         some structures with g_new0().
22477         * metadata.c: fixed a couple more bugs in table size computation
22478         and add other checks for out-of bound access to metadata.
22479
22480 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22481
22482         * metatada.c: fix bugs computing table sizes. Spew a
22483         warning when index in string heap is out of bounds.
22484
22485 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22486
22487         * metadata.h: Add a couple of macros to manipulate tokens. 
22488
22489 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22490
22491         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22492         cli_section_tables).
22493
22494 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22495
22496         * metadata.c (mono_metadata_user_string): New function, provides
22497         access to the UserString heap. 
22498
22499 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22500
22501         * metadata.c: Add inline documentation.
22502
22503 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22504
22505         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22506         files. 
22507
22508 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22509
22510         * typeattr.h: New file, TypeAttribute flags. 
22511
22512 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22513
22514         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22515         mono_assembly_ensure_section): Section loading code.
22516         (load_section_tables): Load the sections.
22517
22518         * mono/metadata/metadata.c (mono_metadata_locate_token,
22519         mono_metadata_locate): Functions to locate the information
22520         definition given a token or a table and an index.
22521         (mono_metadata_compute_table_bases): New.
22522         (compute_size): New function to compute the sizes of the various
22523         tables.
22524
22525         * mono/metadata/metadata.h: Finish listing the different index
22526         types. 
22527
22528         * mono/metadata/pedump.c: Improve to dump new information.
22529
22530 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22531
22532         * mono/metadata/metadata.c: Entered all the tables matching
22533         Beta2. 
22534
22535         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22536
22537
22538