2007-09-12 Marek Safar <marek.safar@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-09-12  Marek Safar  <marek.safar@gmail.com>
2
3         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
4         of Type array and not MonoType, a fix suggested by Hari.
5         
6 2007-09-12  Jonathan Chambers <joncham@gmail.com>
7
8         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
9         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
10         
11         Code is contributed under MIT/X11 license.
12
13 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14
15         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
16
17 2007-09-12  Marek Habersack  <mhabersack@novell.com>
18
19         * image.c (do_mono_image_open): if assembly file fails to open and
20         MONO_IOMAP is in effect, try to find the path in a
21         case-insensitive way.
22
23         * appdomain.c (mono_runtime_init): do not install postload hooks -
24         tests show that MS.NET doesn't use anything of that sort to
25         trigger the AppDomain.AssemblyResolve event.
26         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
27         made non-static.
28         (mono_runtime_init): init portability helpers here.
29
30         * assembly.c (mono_assembly_load_with_partial_name): if other   
31         attempts fail, trigger the AppDomain.AssemblyResolve event handler
32         to resolve the assembly.
33
34         * domain-internals.h: added mono_try_assembly_resolve and marked
35         it as internal.
36
37 2007-09-11  Jb Evain  <jbevain@novell.com>
38
39         * object-internals.h (MonoReflectionDynamicMethod): add
40         a `MonoReflectionType *owner` field. The owner is used
41         * reflection.c:
42         (mono_reflection_create_dynamic_method): use the owner of the dynamic
43         method as the class declaring the dynamic method.
44         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
45         dynamic method to the declaring type of the methodbuilder.
46
47 2007-09-11  Mark Probst  <mark.probst@gmail.com>
48
49         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
50         rules for calling methods via reflection.
51
52 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
53
54         * reflection.c (resolve_object): Add support for MonoGenericClass. 
55         Inflate MonoType's.
56
57 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
58
59         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
60         provide a managed method that does fast allocations without needing
61         a managed->unmanaged transition. Boehm GC implementation currently
62         enabled for ptrfree objects on sane architectures.
63
64 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
65
66         * marshal.c, marshal.h: exported a couple of useful functions and
67         added mono_mb_get_label () to easily handle backward branches.
68
69 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
70
71         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
72
73 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
74
75         * loader.c (find_method): Fixed the regression introduced while
76         fixing bug #81466.
77
78 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
79
80         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
81         well.
82         
83         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
84         icall.c reflection.c: Pass a MonoGenericContext argument to 
85         mono_lookup_dynamic_token ().
86
87         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
88         #82744.
89         
90 2007-09-09  Robert Jordan  <robertj@gmx.net>
91
92         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
93         for generic methods.
94
95         * object.c (mono_object_get_virtual_method): Handle generic methods.
96         Fixes bug #78882.
97
98         Code is contributed under MIT/X11 license.
99
100 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
101
102         * image.c: fix locking in mono_image_load_file_for_image ().
103
104 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
105
106         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
107         used only as a cache: added an icall to fill it.
108
109 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * reflection.h: exposed mono_reflection_free_type_info
112         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
113         since mono_reflection_bind_generic_parameters makes a copy of it.
114         * reflection.c (free_type_info): subinfos should be freed.
115         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
116         made non static.
117         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
118         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
119         this fixes #82695 and #81726.
120    
121
122 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
123
124         * process.h, process.c:  added support for user profile/info in
125           ProcessStartInfo. For now only Windows works.
126
127 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
128
129         * metadata.c: consider the generic arguments when comparing
130         signatures (bug #82614).
131
132 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
133
134         * cil-coff.h, image.c: updated assembly loader to cope with the
135         PE32+ 64 bit file format.
136
137 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
138
139         * assembly.c, class.c, domain.c, loader.c: remove useless
140         inclusion of cil-coff.h.
141
142 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
143
144         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
145         if interface is marked with CoClassAttribute. 
146    
147         Code is contributed under MIT/X11 license.
148
149 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
150
151         * sgen-gc.c: ensure no object from the to space is copied again or finalized
152         if it's seen twice in major collections.
153
154 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
155
156         * sgen-gc.c: big objects are not copied to the gray area, but they
157         need to be considered for scanning, too, if they are brought alive
158         by an object ready for finalizations or a survived one.
159
160 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
161
162         * sgen-gc.c: properly account the number of disappearing links when
163         they are nullified.
164
165 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
166
167         * sgen-gc.c: share the code to scan the registered roots between the
168         different types of collections.
169
170 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
171
172         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
173
174 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
175
176         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
177         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
178
179 2007-08-28  Mark Probst  <mark.probst@gmail.com>
180
181         * security-manager.c (mono_security_manager_get_methods):
182         LinkDemandSecurityException now has 2 arguments instead of 3.
183
184 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
185
186         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
187         platforms which need it.
188
189 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
190
191         * sgen-gc.c: unregister thread data structures with a pthread_key_t
192         dtor.
193
194 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
195
196         * threads.c: free the thread static data on thread exit.
197
198 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
199
200         * class.c: walk the hierarchy to find the generic definition for
201         a class (fixes runtime part of bug #82498).
202
203 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
204
205         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
206         ...
207
208         * image.c (mono_image_close): Here. Hopefully fixes #82510.
209
210 2007-08-24  Mark Probst  <mark.probst@gmail.com>
211
212         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
213
214 2007-08-24  Robert Jordan  <robertj@gmx.net>
215
216         * appdomain.c: don't perform the ':'->';' substitution on Win32.
217
218 2007-08-24  Jb Evain  <jbevain@novell.com>
219
220         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
221         for byref types.
222
223 2007-08-24  Mark Probst  <mark.probst@gmail.com>
224
225         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
226         #82286.
227
228 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
229
230         * assembly.c: Fix a warning.
231         
232 2007-08-23  Marek Habersack  <mhabersack@novell.com>
233
234         * appdomain.c: parse the <runtime> section looking for the probing
235         element with the 'privatePath' attribute, which sets additional
236         directories in which the runtime should look for assemblies.
237
238 2007-08-23  Robert Jordan  <robertj@gmx.net>
239
240         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
241         Fixes #82499.
242
243 2007-08-23  Martin Baulig  <martin@ximian.com>
244
245         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
246         _mono_debug_init_corlib() and remove it from the header file.
247
248 2007-08-23  Martin Baulig  <martin@ximian.com>
249
250         * mono-debug-debugger.c
251         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
252         don't notify the debugger about it.
253
254         * mono-debug-debugger.h
255         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
256
257 2007-08-23  Robert Jordan  <robertj@gmx.net>
258
259         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
260         Code is contributed under MIT/X11 license.
261
262 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
263
264         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
265
266 2007-08-22  Martin Baulig  <martin@ximian.com>
267
268         * mono-debug.c: Store debugging info on a per-domain basis and
269         free it on domain unload.  Add support for unloading symbol files.
270
271         * mono-debug.h
272         (MonoDebugList): New typedef.
273         (MonoSymbolTable):
274         - add `data_tables and `type_table'.
275         - replace 'symbol_files' and `num_symbol_files' with a
276           `MonoDebugList *'.
277         (mono_debug_data_table): Removed.
278         (mono_debug_list_add): New public function.
279         (mono_debug_list_remove): New public function.
280         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
281         (mono_debug_init_2_memory): Renamed into
282         mono_debug_open_image_from_memory().
283         (mono_debug_close_image): New public function.
284         (mono_debug_domain_create): Likewise.
285         (mono_debug_domain_unload): Likewise.
286         (MONO_DEBUGGER_VERSION): Bump to 60.
287
288         * mono-debug-debugger.h
289         (MonoDebuggerEvent):
290         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
291         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
292         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
293         - rename `THREAD_CREATED' and `THREAD_EXITED' into
294           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
295         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
296           meaning.
297         (mono_debugger_add_symbol_file): Removed.
298         (mono_debugger_add_type): Removed.
299         (mono_debugger_lookup_type): Removed.
300         (mono_debugger_lookup_assembly): Removed.
301
302         * domain.c
303         (mono_domain_create): Call mono_debug_domain_create().
304         (mono_init_internal): Call mono_debug_init_corlib().
305
306         * assembly.c
307         (mono_assembly_close): Call mono_debug_close_image().
308
309 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
310
311         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
312         mmap call.
313
314 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
315
316         * sgen-gc.c: ensure section->pin_queue_end is initialized
317         correctly when non pinning objects in the section have been found.
318
319 2007-08-22  Marek Habersack  <mhabersack@novell.com>
320
321         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
322         containing a list of directories separated by ':'. MSDN docs say
323         the directories should be separated with ';'. Part of a bugfix for
324         bug #81446
325
326 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
327
328         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
329         it should MonoType and not MonoClass.
330
331 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
332
333         * culture-info-table.h : regenerated.
334
335 2007-08-20  William Holmes  <billholmes54@gmail.com>
336
337         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
338          to call ReplaceFile Kernel32 on windows or in io-layer.
339         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
340         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
341          as an internal call.
342
343         Code is contributed under MIT/X11 license.
344
345 2007-08-20  Jb Evain  <jbevain@novell.com>
346
347         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
348         and MONO_EXCEPTION_FIELD_ACCESS.
349
350         * debug-helpers.[c|h]: new mono_field_full_name function.
351
352 2007-08-20  Mark Probst  <mark.probst@gmail.com>
353
354         * class.c: Removed class_security_level() and moved it to
355         security-core-clr.c.
356
357         * security-core-clr.c, security-core-clr.h: class_security_level()
358         is now public and renamed to mono_security_core_clr_class_level().
359         It also looks for security attributes in the classes a class is
360         nested in.
361
362 2007-08-20  Mark Probst  <mark.probst@gmail.com>
363
364         * security-core-clr.c, security-core-clr.h: CoreCLR security
365         utility functions.
366
367         * Makefile.am: Added security-core-clr.[ch].
368
369         * security-manager.c, security-manager.h: Functions and enum for
370         setting and getting the security mode.
371
372         * class.c: CoreCLR security checks.
373
374 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
375
376         * icall-def.h, process.c, process.h: implemented icall to get
377         user/system processor times.
378
379 2007-08-17  Mark Probst  <mark.probst@gmail.com>
380
381         * domain.c, threads.c, class-internals.h, domain-internals.h: New
382         reader-lock-free jit_info_table.
383
384 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
385
386         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
387
388         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
389
390         * object-internals.h (MonoException): Add missing _data member.
391
392 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
393
394         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
395         checking that only methods with matching qname or fqname are picked
396         from implemented interfaces.
397
398 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
399
400         * verify.c (do_newarr):added, do type verification of
401         newarr ops, push the right value on the eval stack.
402         * verify.c (mono_method_verify): use do_newarr
403
404
405 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
406
407         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
408         factored the common code into get_boxable_mono_type, which
409         is now using mono_type_get_full, this fixed byref related tests.
410
411 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
412
413         * class.c: added mono_type_get_full, this function has the same
414         behavior of mono_class_get_full but the returned MonoType has
415         all metadata of the associated token in case of a typespec token.
416         * class.c: added mono_type_retrieve_from_typespec, used by 
417         mono_type_get_full to retrieve the token type.
418         * class.c (mono_class_create_from_typespec): changed to use
419         mono_type_retrieve_from_typespec.
420         * class.c (mono_ldtoken): changed to use mono_type_get_full
421         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
422         * class-internals.h: exported mono_type_get_full for internal use.
423
424 2007-08-16  Jb Evain  <jbevain@novell.com>
425
426         * domain.c (supported_runtimes): add entry for
427         the 'moonlight' runtime version.
428
429 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
430
431         * verify.c (mono_method_verify): small typo sliped in.  
432
433 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
434
435         * verify.c (do_unbox_value): added, do type verification of
436         unboxing ops
437         * verify.c (mono_method_verify): use do_unbox_value
438
439
440 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
441
442         * verify.c (dump_stack_value): fixed typo, was printing string
443         instead of object on stack.
444         * verify.c (do_box_value): moved the byref check up as it leads
445         to invalid code and should be done earlier.
446         * verify.c: improved error messages for and ldobj
447
448 2007-08-15  William Holmes  <billholmes54@gmail.com>
449
450         * marshal.c (emit_marshal_custom): Omit the call to 
451           marshal_native_to_managed when calling native to managed 
452           and the argument is specified as an out argument.
453
454         Code is contributed under MIT/X11 license.
455
456 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * verify.c: fixed the type checks for generics, function pointers and vectors.
459         Added type verification for ldobj and ldtoken. The verifier
460         would segfault if header or signature of a method contained references
461         to non-existant types.
462
463 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
464
465         * marshal.c (cominterop_get_ccw): Patch from
466         Bill Holmes to no walk up interface hierarchy. 
467         All parent methods should be present in the interface for COM.
468    
469         Code is contributed under MIT/X11 license.
470
471 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
472
473         * marshal.c (emit_marshal_com_interface): Patch from
474         Bill Holmes to handle COM Interfaces as return values
475         for native->managed calls.
476    
477         Code is contributed under MIT/X11 license.
478
479 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
480
481         * marshal.c (cominterop_get_idispatch_for_object): Implement
482         for runtime callable wrappers.
483    
484         Code is contributed under MIT/X11 license.
485
486 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
487
488         * pedump.c (main): changed from mono_init to mono_init_from_assembly
489         so 2.0 types are accessible
490
491
492 2007-08-13  Miguel de Icaza  <miguel@novell.com>
493
494         * domain.c (mono_init_internal): Call mono_assembly_load_friends
495         once we load mscorlib.   Due to the order in which we initialize,
496         the mono_assembly_load_full routine that loads mscorlib did not
497         load friends.   We now load it once we load the
498         mono_defaults.internals_visible_class class. 
499
500         * assembly.c: Expose the mono_load_friend_assemblies method.
501
502 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
503
504         * verify.c: improved the handling of boxing, better
505         type checking for unary ops and conversion. Fix bug
506         regarding managed pointer compatibility checking
507
508 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
509
510         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
511
512         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
513
514 2007-08-09  Raja R Harinath  <rharinath@novell.com>
515
516         * reflection.c (dup_type): Remove.
517         * class.c (dup_type): Remove.
518         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
519         instead of the dodgy 'dup_type'.
520         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
521         handle the case where 'dup_type' needed the second argument.
522
523 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
524
525         * domain.c: Fix a warning.
526
527 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
528
529         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
530         checking that methods with the same fqname are not overridden
531         with a method from an ancestor.
532
533 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
534
535         * threads.c (free_thread_static_data_helper): Avoid a crash if
536         thread->static_data is not yet set.
537
538 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
539
540         * marshal.c: Use correct image when emitting
541         native wrapper for COM calls.
542    
543         Code is contributed under MIT/X11 license.
544
545 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
546
547         * icall-def.h, security.c, security.h :
548           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
549
550 2007-08-07  Martin Baulig  <martin@ximian.com>
551
552         * mono-debug-debugger.h
553         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
554
555         * domain.c (mono_domain_free): Call
556         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
557
558 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
559
560         * verify.c (check_underflow, check_overflow): error message now returns IL offset
561         * verify.c (in_same_block): code should test if either offset is inside the clauses
562         * verify.c (mono_method_verify): push the exception into the eval stack of exception
563         and filter blocks
564
565 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
566
567         * image.c (mono_image_close): Fix a leak.
568
569         * object.c (mono_runtime_invoke_array): Avoid using alloca.
570
571         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
572
573 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
574
575         * domain.c, threads.c, threads-types.h: fix memory retention issue
576         with thread static variables not being cleared on domain unload.
577         Reuse thread static slots after domain unload.
578
579 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
580
581         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
582         nullable type.
583
584         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
585         now done in mono_runtime_invoke_array.
586
587         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
588         receiver is a nullable type.
589
590         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
591         generic parameter.
592
593 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
594
595         * marshal.c: Implement COM Objects as return type for 
596         managed->unmanaged calls. Added Release calls for COM Object
597         out/return values in managed->unmanaged calls.
598
599         Code is contributed under MIT/X11 license.
600
601 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
602
603         * threads.h, threads-type.h: move the hazard pointer declarations
604         to the private header.
605
606 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
607
608         * file-io.c, appdomain.c: memory leak fixes.
609
610 2007-08-02  Dick Porter  <dick@ximian.com>
611
612         * socket-io.c
613         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
614         SO_REUSEADDR setting into io-layer/sockets.c.
615
616 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
617
618         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
619         from Object when called on a generic parameter. Fixes #82211.
620
621 2007-08-01  Dick Porter  <dick@ximian.com>
622
623         * file-io.c (convert_share): Test FileShare values bit-by-bit.
624         Fixes bug 79250 yet again.
625
626 2007-07-30  Martin Baulig  <martin@ximian.com>
627
628         Merged the `debugger-dublin' branch.
629
630         * mono-debug.h
631         (MonoDebugDataTable): New typedef.
632         (MonoDebugMethodAddressList): New typedef.
633         (MonoDebugWrapperData): Removed.
634         (MonoDebugSymbolTable): Removed `current_data_table',
635         `current_data_table_size', `current_data_table_offset'.
636         (MonoDebugDataItemType): Moved into mono-debug.c.
637         (MonoDebugMethodJitInfo): Remove `address'.
638         (mono_debug_data_table): New global variable.
639         (mono_debug_lookup_method_addresses): New public function.
640         (mono_debug_find_method): Take a `MonoMethod *', not a
641         `MonoDebugMethodInfo *'.
642
643         * mono-debug.c: Drop support for the old symbol tables.
644
645 2007-06-28  Martin Baulig  <martin@ximian.com>
646
647         * mono-debug.c (mono_debug_debugger_version): New public variable.
648
649 2007-07-31  William Holmes  <billholmes54@gmail.com>
650
651         * metadata.c Changed mono_type_create_from_typespec to not insert
652           the type into the hash map until after
653           do_mono_metadata_parse_type has completed.
654         Fixes Bug #82194
655         Code is contributed under MIT/X11 license.
656
657 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
658
659         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
660         generic parameter. Fixes #82211.
661
662 2007-07-27  Jb Evain  <jbevain@novell.com>
663
664         * pedump.c (dump_metadata, dump_metadata_header): dump
665         versions contained in the metadata header.
666
667 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
668
669         * threads.c: register small_id_table with the GC.
670
671 2007-07-27  Mark Probst  <mark.probst@gmail.com>
672
673         * threads.c, threads.h, class-internals.h, object-internals.h:
674         Hazard pointers, to be used by lock-free parallel algorithms.
675
676 2007-07-26  Dick Porter  <dick@ximian.com>
677
678         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
679         routine on non-windows platforms, as I've not managed to think of
680         a non-kludgy way of doing this.  Finishes off bug 78739.
681
682 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
683
684         * object.c: properly setup interface_bitmap in proxy vtables.
685
686 2007-07-25  Marek Habersack  <mhabersack@novell.com>
687
688         * appdomain.c (get_shadow_assembly_location): do not use TickCount
689         to create unique shadow copy target directories, use the domain's
690         serial number instead. Each domain gets a unique target directory
691         that way.
692
693         * domain.c (mono_domain_create): added code to increment domain
694         shadow copy serial number and cache the value in the current
695         domain structure.
696
697         * domain-internals.h (struct _MonoDomain): added a new field -
698         shadow_serial to hold the serial number used in generation of
699         shadow-copy directories. This is to make sure that the directory
700         name is unique for each and every domain created. We avoid a race
701         condition with overriding assemblies already in use by other app
702         domains.
703
704 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
705
706         * class.c (mono_bounded_array_class_get): fixed memory leak when 
707         binding generic parameters.
708
709 2007-07-24  Raja R Harinath  <rharinath@novell.com>
710
711         * metadata.c (do_mono_metadata_parse_generic_class): Use
712         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
713         error.
714
715 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
716
717         * loader.c, class-internals.h, reflection.c: removed the per-method
718         generics hashtable: we use the global one through the call of
719         mono_class_inflate_generic_method ().
720
721 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
722
723         * class.c, metadata.c, class-internals.h: introduce yet another
724         generics global cache for inflated methods (fixes 98% of the perf
725         issue in bug #81806).
726
727 2007-07-23  Raja R Harinath  <rharinath@novell.com>
728
729         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
730         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
731         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
732         return a MonoGenericInst containing (a copy) of those types.
733         (mono_metadata_inflate_generic_inst): Update to changes.
734         (mono_metadata_parse_generic_inst): Likewise.
735         (mono_get_shared_generic_inst): Likewise.
736         * reflection.c (mono_class_bind_generic_parameters): Likewise.
737         (mono_reflection_bind_generic_method_parameters): Likewise.
738         * metadata-internals.h: Likewise.
739         * icall.c (free_generic_context): Kill.
740         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
741
742         * reflection.c (reflection_methodbuilder_to_mono_method): Use
743         mono_metadata_type_dup.
744         * marshal.c (mono_mb_create_method): Likewise.
745
746         * metadata.c (mono_metadata_type_dup): Rename from
747         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
748         MonoImage.  Handle a few more cases, esp. when no mempool is given.
749         * marshal.c, metadata-internals.h: Update to changes.
750
751 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
752
753         * class.c: fixed a small leak for array classes and removed warning.
754
755 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
756
757         * loader.c (mono_method_get_param_token): Make this work on generic methods.
758         Return 0x8000000 for return parameters. Fixes #82161.
759
760 2007-07-21  Marek Habersack  <grendello@gmail.com>
761
762         * appdomain.c (get_shadow_assembly_location): append the current
763         ticks value to the path. Avoids overwriting the same assemblies by
764         several threads at the same time.
765
766 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
767         and Raja R Harinath  <rharinath@novell.com>
768
769         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
770         Simplify slightly.
771         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
772         property for testing if a method is a generic method definition.
773
774 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
775
776         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
777
778 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
779
780         * verify.c: used function from private branch, reverted to the one in class.h 
781
782 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
783
784         * verify.c: a typo slipped in and the code wont compile
785
786 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
787
788         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
789         disabled box instruction as it is doing the wrong thing
790         improved stack dump messages, now it is easier to debug type related issues
791
792
793 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
794
795         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
796
797 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
798
799         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
800         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
801         grouped with class and valuetype. This change will simply 
802         the code as it should be handled just like unmanaged pointers.
803
804 2007-07-19  Mark Probst  <mark.probst@gmail.com>
805
806         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
807
808 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
809
810         * verify.c: several stack merge issues fixed, reference comparisons now
811         check the type size. strict type check now works correctly.
812         added more uses of IS_MANAGED_POINTER macro.
813         fixed issues pointed by running the test suite against .net.
814         
815
816 2007-07-19  Mark Probst  <mark.probst@gmail.com>
817
818         * class.c, loader.c, class-internals.h: Removed the
819         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
820         defines.
821
822         * icall.c: Better error checking in some internal reflection
823         methods.
824
825 2007-07-18  William Holmes  <billholmes54@gmail.com>
826
827         * filewatcher.c : removed unused variable 'filename' in 
828           ves_icall_System_IO_FSW_SupportsFSW
829
830 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
831
832         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
833         obsolete, removed.
834
835 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
836
837         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
838         
839         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
840
841 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
842
843         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
844         Implement generics support.
845         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
846
847         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
848         type_args and method_args arguments.
849         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
850         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
851         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
852
853 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
854
855         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
856           It adds a rootimage parameter to mono_reflection_get_type_internal,
857           adds new function mono_reflection_get_type_with_rootimage and use
858           the rootimage to resolve the types instead of the current image
859
860 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
861
862         * culture-info-table.h: Forgot to update after r78304.
863
864 2007-07-13  Raja R Harinath  <rharinath@novell.com>
865
866         * class.c (mono_class_is_open_constructed_type)
867         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
868
869 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
870
871         * class.c (mono_bounded_array_class_get):  method fails if used with
872         an incomplete TypeBuilder enum (no basetype field), fixed it by 
873         avoiding calculating the size for such array as it cannot be instantiated.
874         Fix bug #82015
875
876 2007-07-12  Raja R Harinath  <rharinath@novell.com>
877
878         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
879         field.
880         * metadata.c, reflection.c: Update to changes.
881
882 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
883
884         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
885         mono_class_is_valid_enum, they are used to valide a enum when loading.
886         * reflection.c: used new functions to throw TypeLoadException when and
887         invalid enum is build with TypeBuilder. Fixes #82018
888   
889 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
890
891         * object.c: forgot commit of mono_class_setup_methods () to access
892         iface->methods.
893         * object-internals.h: added a few more handy fields to
894         MonoIMTCheckItem.
895
896 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
897
898         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
899         iface->methods.
900
901 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
902
903         * class-internals.h, object-internals.h, object.c: IMT-based
904         interface invocation core from Massimiliano Mantione
905         (massi@ximian.com) with a reworked arch-specific interface,
906         bsearch implementation and a few bugfixes and memory savings by me.
907
908 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
909
910         * class.c (mono_class_create_from_typedef): mono would segfault if 
911         an enum did not have a __value field. It now throws a TypeLoadException
912         for such cases. Fix bug #82022
913
914 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
915
916         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
917
918 2007-07-09  Mark Probst  <mark.probst@gmail.com>
919
920         * class.c (mono_class_init): If a class is already inited but has
921         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
922
923 2007-07-09  Mark Probst  <mark.probst@gmail.com>
924
925         * class.c: Properly handle the case of an unimplemented interface
926         method.  Fixes: 81673.
927
928 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
929
930         * class-internals.h, object.c: cleanup patch from massi: use
931         MonoVTable->interface_bitmap since the vtable interfaces offset array
932         is going away.
933
934 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
935
936         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
937         GetMDStreamVersion icall instead.
938
939 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
940
941         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
942         not use mono_dl_build_path() with a full library name: makes
943         fallbacks to libgaim and libfam work.
944
945 2007-07-06  William Holmes  <billholmes54@gmail.com>
946
947         * assembly.c: Added a continue statement in probe_for_partial_name when
948          parse_assembly_directory_name fails.  Fixes : 82002
949
950 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
951
952         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
953         and added a verification  for TYPEDBYREF.
954         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
955         make native int interchangeable with int32 and some small cleanup and formating.
956         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
957         handle byref of byref.
958         * verify.c (push_local): handle byref of byref.
959         * verify.c (do_binop): invalid mix of values is unverifiable
960         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
961         added visibility checks
962         * verify.c (field related method): added visibility checks
963         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
964
965 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
966
967         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
968         string.
969
970 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
971
972         * profiler.c (mono_profiler_load): Fix an off-by-one error.
973
974         * marshal.c (emit_marshal_string): When returning a string from managed code,
975         allways make a copy even for unicode strings. Fixes #81990.
976
977 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
978
979         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
980         of byref generic inst types (bug #81997).
981
982 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
983
984         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
985         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
986
987 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
988
989         * marshal.c (emit_marshal_string): Add support for unicode strings in
990         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
991
992 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
993
994         * verify.c: field load/store are now verified, missing only access checks now
995
996 2007-06-28  Martin Baulig  <martin@ximian.com>
997
998         * mono-debug.c (mono_debug_debugger_version): New public variable.
999
1000 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
1001
1002         * locales.c: When constructing DateTimeFormat or NumberFormat for
1003         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
1004         MonoCultureInfo contructed from the current locale is always
1005         read-only and has UseUserOverride set to true. All MonoCultureInfo
1006         instances returned for GetCultures have both IsReadOnly and
1007         UseUserOverride set to true. Fixes part of bug #81930.
1008
1009 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
1010
1011        * icall-def.h: Update System.__ComObject icalls
1012        * marshal.c: Avoid managed transition (and object creation)
1013        when looking up COM interface in RCW.
1014        * marshal.h: Ditto.
1015        
1016        Code is contributed under MIT/X11 license.
1017
1018 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
1021         to avoid crashes during assembly unloading.
1022
1023 2007-06-22  Raja R Harinath  <rharinath@novell.com>
1024
1025         Fix MethodInfo.IsGenericMethodDefinition
1026         * reflection.c (mono_reflection_bind_generic_method_parameters):
1027         Rearrange code to ensure we always uses a generic method definition.
1028         * class.c (mono_class_inflate_generic_method_full): Set
1029         'generic_container' field only for generic method definitions.
1030         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
1031         Use presense of 'generic_container' field as indication of being a
1032         generic method definition.
1033
1034 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
1035
1036         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1037
1038         * object-internals.h: Reflect changes in the layout of the managed Delegate
1039         class.
1040         
1041         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
1042         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
1043         runtime memory used by the dynamic method. Fixes #77146.
1044
1045 2007-06-21  Dick Porter  <dick@ximian.com>
1046
1047         * file-io.h: 
1048         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
1049         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
1050         81767.
1051
1052 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1053
1054         * reflection.c (method_encode_methodspec): Add a tripwire.
1055         * class.c (inflate_generic_type): The fully open generic type is
1056         not the same as the generic type definition.
1057
1058 2007-06-21  Martin Baulig  <martin@ximian.com>
1059
1060         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
1061
1062         * mono-debug-debugger.h
1063         (MonoDebuggerBreakpointInfo): Removed.
1064         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
1065         (mono_debugger_remove_breakpoint): Likewise.
1066         (mono_debugger_breakpoint_callback): Likewise.
1067         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
1068
1069 2007-06-21  Raja R Harinath  <rharinath@novell.com>
1070
1071         * metadata.c (mono_metadata_lookup_generic_class): The fully open
1072         generic type is not the same as the generic type definition.
1073         * class.c (mono_generic_class_get_class): Likewise.
1074
1075 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
1076
1077         * icall.c: The second argument to 
1078         System.Reflection.MethodBase.GetMethodFromHandleInternalType
1079         is a MonoType not a MonoClass.
1080
1081 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1082
1083         * verify.c: support for function pointers in the verifier
1084
1085 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
1086
1087         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
1088
1089 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
1090
1091         * assembly.c: removed Mono.Data.SqliteClient from the list of
1092         forward-compatible assemblies as it breaks the ABI (bug #81899).
1093
1094 2007-06-19  Raja R Harinath  <rharinath@novell.com>
1095
1096         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
1097         lookup/update with the loader lock.
1098         * reflection.c (mono_class_bind_generic_parameters): No need to
1099         protect mono_metadata_lookup_* with the loader lock.
1100         * class.c (inflate_generic_type): Likewise.
1101         
1102         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
1103         on a generic instantiated type.
1104
1105 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
1106
1107         *verify.c: produce meanfull error messages on verification error
1108         *verify.c: fixed some cases of verification errors reported as validation errors
1109         *pedump.c: fixed the error name array, now it shows validation errors properly
1110         *verify.h: fixed the contant that should be used for verification errors
1111
1112 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
1113
1114         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
1115         for bug #77596, 81858 and 80743 (generics data structures on domain
1116         unload).
1117
1118 2007-06-15  Raja R Harinath  <rharinath@novell.com>
1119
1120         Avoid allocating 'MonoGenericContext' on the heap.
1121         * class-internals (_MonoMethodInflated::context): Make field
1122         inline, not a pointer.
1123         * loader.c (method_from_methodspec): Allocate 'new_context' on the
1124         stack.  Use the context embedded within the inflated method as the
1125         hash key, rather than 'new_context'.
1126         * class.c (inflate_generic_context): Simplify.  Return a struct
1127         rather than allocating on the heap.
1128         (mono_class_inflate_generic_method_full): Update to changes.  Now,
1129         doesn't salt away a copy of the context -- simplifying the
1130         lifetime rules of a 'MonoGenericContext *'.
1131         (mono_method_get_context): Return pointer to embedded context.
1132         (setup_generic_array_ifaces): Allocate temporary context on stack.
1133         * reflection.c (inflate_mono_method): Likewise.
1134         (mono_reflection_bind_generic_method_parameters): Likewise.
1135         Use the context embedded within the inflated method as the hash key.
1136
1137         Avoid a source of allocation of 'MonoGenericContext'.
1138         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
1139         and 'cached_context' fields into embedded 'MonoGenericContext' field.
1140         * class.c: Update to changes.
1141         (mono_generic_class_get_context): Simplify drastically.  Now just
1142         returns a pointer to the field.
1143         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
1144         argument as a const pointer.
1145         (mono_metadata_generic_context_equal): Likewise.
1146         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
1147         Update to changes.
1148
1149 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
1150
1151         * verify.c improved the handling of brtrue/brfalse, factored out common code
1152
1153 2007-06-14  Raja R Harinath  <rharinath@novell.com>
1154
1155         Kill MonoGenericMethod.
1156         * class-internals.h (MonoGenericContext::method_inst): Rename from
1157         'gmethod' and convert to a MonoGenericInst.
1158         (MonoGenericMethod): Remove.
1159         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
1160         * loader.c (method_from_methodspec): Update to changes.  Use a
1161         MonoGenericContext as the key to the hashtable.
1162         * metadata.c (mono_metadata_generic_context_equal): Rename from 
1163         'mono_metadata_generic_method_equal' and take MonoGenericContext.
1164         (mono_metadata_generic_context_hash): Likewise from
1165         'mono_metadata_generic_method_hash'.  Change hash function.
1166         (mono_metadata_load_generic_params): Update to changes.
1167         (mono_get_shared_generic_method): Remove.
1168         * metadata-internals.h (mono_get_shared_generic_method): Remove.
1169         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
1170         (inflate_generic_context): Likewise.
1171         (mono_class_inflate_generic_method_full): Likewise.
1172         (setup_generic_array_ifaces): Likewise.
1173         (mono_class_create_from_typespec): Likewise.
1174         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
1175         (method_encode_methodspec): Update callsite.
1176         (reflection_methodbuilder_to_mono_method): Update to changes.
1177         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
1178         MonoGenericContext as the key to the hashtable.
1179         (inflate_mono_method): Update to changes.
1180
1181         * class-internals.h (MonoGenericMethod::container): Remove.
1182         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1183
1184 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
1185
1186         * profiler-private.h, profiler.c, profiler.h: added API to profile
1187         exception events.
1188
1189 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1190
1191         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
1192
1193 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
1194
1195         * verify.c: method invocation is now validated, now we verify parameter types on stack.
1196         Fixed overflow and underflow not aborting the verification process.
1197
1198 2007-06-13  Mark Probst  <mark.probst@gmail.com>
1199
1200         * class-internals.h (MonoStats): Added stats entries for dynamic
1201         code allocations.
1202
1203 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
1204
1205         * loader.c (mono_free_method): Free header->locals and header->clauses.
1206
1207         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
1208         dynamic case.
1209
1210         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
1211
1212         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
1213
1214 2007-06-12  Raja R Harinath  <rharinath@novell.com>
1215
1216         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
1217         the tables.
1218
1219 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1220
1221         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
1222
1223 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1224
1225         MonoGenericMethod on a diet
1226         * class-internals.h (_MonoMethodInflated::reflection_info): Move
1227         here ...
1228         (_MonoGenericMethod::reflection_info): ... from here.
1229         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
1230         Update to changes.
1231         * reflection.c (inflate_mono_method): Likewise.
1232         (mono_reflection_bind_generic_method_parameters): Likewise.
1233
1234 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1235
1236         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
1237         *verify.c: factored long ldarg forms to share code with short forms
1238
1239 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
1240
1241         *verify.c: fixed code formating factored some duplicate code
1242         into a new function
1243
1244         *verify.h: fixed binary incompatibility introduced earlier
1245
1246         *pedump.c: fixed formating
1247
1248 2007-06-11  Raja R Harinath  <harinath@gmail.com>
1249
1250         Fix assertion when disassembling Mono.C5.dll
1251         * loader.c (method_from_methodspec): Avoid inflating a method
1252         twice with the same context.  If the methodref is inflated, use
1253         the declaring method instead.
1254
1255         * class.c (mono_class_from_generic_parameter): Fix case similar to
1256         bug #81830 handled below, but for method containers.
1257
1258 2007-06-10  Raja R Harinath  <harinath@gmail.com>
1259
1260         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
1261         get_shared_generic_class.  Directly inflate the instance.
1262         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
1263         (inflate_generic_class): Delete.
1264         (get_shared_generic_class): Delete.  Move setting of
1265         'cached_class' and 'cached_context' ...
1266         * metadata.c (mono_metadata_lookup_generic_class): ... here.
1267
1268         * metadata.c (mono_metadata_lookup_generic_class): Change
1269         signature to take the components of a MonoGenericClass rather than
1270         an allocated MonoGenericClass.  Change semantics to be intern-like.
1271         * reflection.c (mono_class_bind_generic_parameters): Update to
1272         changes.  Make locking region tighter.
1273         * class.c (inflate_generic_class): Update to changes.
1274         (get_shared_generic_class): Likewise.
1275         * metadata-internals.h: Likewise.
1276
1277         * reflection.c (mono_class_bind_generic_parameters): Take and
1278         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
1279         (mono_reflection_bind_generic_parameters): Use
1280         'mono_class_bind_generic_parameters' rather than duplicate the code.
1281         * class.c (mono_bounded_array_class_get): Update to changes.
1282         * object-internals.h: Likewise.
1283
1284         * reflection.c (mono_class_bind_generic_parameters): Only support
1285         parameterizing generic type definitions.  Remove support for other
1286         open types.
1287
1288 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
1289
1290         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
1291
1292         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
1293         in the dynamic case.
1294
1295 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
1296
1297         * threads.c: When cleaning up thread, reset the Background bit.
1298         Fixes bug #81720.
1299
1300 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
1301
1302        * metadata.c: Move variable declarations to top of scope.
1303        * verify.c: Move variable declarations to top of scope.
1304
1305        Code is contributed under MIT/X11 license.
1306
1307 2007-06-08  Raja R Harinath  <rharinath@novell.com>
1308
1309         * reflection.c (mono_class_bind_generic_parameters): Replace
1310         open-coded loop with mono_metadata_inflate_generic_inst.
1311
1312         * class.c (get_shared_generic_class): Don't call
1313         mono_get_shared_generic_inst.  Use the container's own
1314         'class_inst'.
1315
1316         * metadata.c (mono_metadata_load_generic_params): Move
1317         initialization of 'context' field here from ...
1318         * class.c (mono_class_create_from_typedef): ... here, and ...
1319         * loader.c (mono_get_method_from_token): ... here.
1320
1321         * class.c (get_shared_generic_class): Rename from
1322         mono_get_shared_generic_class and make static.
1323         (mono_get_shared_generic_inst): Move to metadata.c.
1324         * loader.c (mono_get_shared_generic_method): Likewise.
1325         * class-internals.h, metadata-internals.h: Update to changes.
1326
1327         Fix #81830
1328         * class.c (mono_class_from_generic_parameter): Don't assume a
1329         generic container owner exists.  Generic containers from monodis
1330         don't have any.
1331
1332 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
1333
1334         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
1335         * verify.h: new typedefs to returns the non-verifiable status
1336         * verify.c: initial implementation of generics, stack merging and object compatibility check
1337
1338 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1339
1340         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1341         a MonoInternalHashTable again (fixed bug in internal hash table
1342         code).
1343
1344 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1345
1346         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1347         MonoInternalHashTable again (fixed bug in internal hash table
1348         code).
1349
1350 2007-06-06  Mark Probst  <mark.probst@gmail.com>
1351
1352         * class.c, image.c, class-internals.h, domain.c,
1353         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
1354         changes.  Have to figure out what makes them break the SWF
1355         regression.
1356
1357 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1358
1359         * class.c, image.c, class-internals.h (MonoImage): class_cache is
1360         a MonoInternalHashTable now.
1361
1362 2007-06-04  Mark Probst  <mark.probst@gmail.com>
1363
1364         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
1365         MonoInternalHashTable now.
1366
1367 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
1368
1369         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
1370         invoke_impl code.
1371
1372         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
1373
1374         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
1375         dependent trampoline.
1376
1377         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1378
1379         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
1380
1381 2007-05-29  Robert Jordan  <robertj@gmx.net>
1382
1383         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
1384
1385 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
1386
1387         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
1388
1389 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
1390
1391        * marshal.c: Fix interface lookup loops for
1392        cominterop_get_com_slot_for_method and 
1393        cominterop_get_method_interface. Only need to lookup
1394        if type is a class, else use interface type method is on.
1395
1396        Code is contributed under MIT/X11 license.
1397
1398 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1399
1400         * reflection.c: HasSecurity can be present even if no specially 
1401         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1402         SecurityAttribute). Fix CAS regression tests on buildbot.
1403
1404 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1405
1406        * appdomain.c: Add configure checks for header files.
1407        * image.c: Add configure checks for header files.
1408        * file-io.c: Add configure checks for header files.
1409        * debug-mono-symfile.c: Add configure checks for header files.
1410        * threadpool.c: Add configure checks for header files.
1411        * console-io.c: Add configure checks for header files.
1412        * profiler.c: Add configure checks for header files.
1413        * rawbuffer.c: Add configure checks for header files.
1414        * icall.c: Add configure checks for header files.
1415        * rand.c: Add configure checks for header files.
1416        * socket-io.c: Add configure checks for header files.
1417
1418        Code is contributed under MIT/X11 license.
1419
1420 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1421
1422         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1423         assertion as it breaks the build.
1424         
1425         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1426
1427         * reflection.c (lookup_custom_attr): Make a copy here too.
1428
1429         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1430         dynamic images.
1431
1432         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1433         images.
1434
1435         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1436         info.
1437
1438 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1439
1440         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1441         (load_cattr_value): Ditto.
1442
1443 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1444
1445         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1446
1447 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1448
1449         * threads.c: In "start_wrapper", set apartment_state to MTA if
1450         apartment_state is Unknown and we're running on 2.0 profile or
1451         higher.
1452         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1453         to main method, then set apartment_state to Unknown on 1.0 profile,
1454         and MTA on 2.0 profile.
1455
1456 2007-05-16  Jb Evain  <jb@nurv.fr>
1457
1458         * class-internals.h (MonoDefaults): Add an attribute_class and
1459           customattribute_data_class.
1460         * domain.c (mono_init_internal): Populate them.
1461         * reflection.c: Use them to remove duplicates. Make a vew
1462         MonoClass variables `static'.
1463
1464 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1465
1466         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1467         step in implementing IMT, so that all isinst checks now can go
1468         through the bitmap.
1469         This was needed because vtables for TransparentProxy need to look
1470         like the vtable of the "target" class, so they need to point to
1471         its interface bitmap directly.
1472
1473         * object.c: inside "mono_class_create_runtime_vtable" and
1474         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1475
1476 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1477
1478         * object-internals.h
1479           culture-info.h : added territory field in MonoCulture and
1480           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1481         * locales.c : fill territory field above too.
1482         * culture-info-table.h : regenerated.
1483
1484 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1485
1486         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1487         Fixes #81599.
1488
1489 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1490
1491         * object.c: Always initialize apartment, even if 
1492         there is no custom attributes on entry point.
1493         
1494         Code is contributed under MIT/X11 license.
1495
1496 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1497
1498         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1499         * metadata.c: If no encoding is set, check for unicode
1500         on class.
1501         
1502         Code is contributed under MIT/X11 license.
1503
1504 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1505
1506         * threads.c: Handle if mono_thread_current returns NULL 
1507         
1508         Code is contributed under MIT/X11 license.
1509
1510 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1511
1512         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1513         in start_wrapper. Added mono_thread_init_apartment_state and
1514         mono_thread_cleanup_apartment_state.
1515         * object.c: Initialize thread apartment state on main thread
1516         by checking for STAThreadAttribute on entry point.
1517         * object-internals.h: Add apartment_state field to MonoThread.
1518         * threads-types.h: Add unmanaged definition of 
1519         System.Threading.ApartmentState, MonoThreadApartmentState.
1520         
1521         Code is contributed under MIT/X11 license.
1522         
1523 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1524
1525         * class.c: Fix windows build.
1526         * class-internals.h: Fix windows build.
1527         
1528         Code is contributed under MIT/X11 license.
1529
1530 2007-05-08  Robert Jordan  <robertj@gmx.net>
1531
1532         * process.c (CreateProcess_internal):
1533         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1534         .CreateNoWindow was specified. Fixes #81496.
1535
1536 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1537
1538         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1539         step in implementing IMT, replaced it with two compact arrays
1540         (interfaces_packed and interface_offsets_packed) and a bitmap that
1541         is used for isinst checks (interface_bitmap).
1542
1543         * class.c: (compare_interface_ids): compare function to pass to
1544         bsearch when looking for an interface with a given id.
1545         (mono_class_interface_offset): reimplemented using bsearch on
1546         interfaces_packed, getting the offset from interface_offsets_packed.
1547         (print_implemented_interfaces): utility debugging function.
1548         (setup_interface_offsets): reworked to initialize interfaces_packed,
1549         interface_offsets_packed and interface_bitmap.
1550
1551         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1552         with uses of interfaces_packed and interface_offsets_packed.
1553
1554 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1555
1556         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1557         mono_class_interface_offset prototype to wrap all accesses to
1558         "MonoClass.interface_offsets".
1559
1560         * class.c: Implemented mono_class_interface_offset, and wrapped all
1561         accesses to "MonoClass.interface_offsets".
1562
1563         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1564         "MonoClass.interface_offsets".
1565
1566 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1567
1568         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1569         GetMethodFromHandle overloads (bug #78637).
1570
1571 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1572
1573         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1574         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1575
1576 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1577
1578         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1579         #81498.
1580
1581         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1582         gracefully.
1583         (mono_custom_attrs_from_index): Ditto.
1584
1585         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1586         Fixes #81501.
1587
1588 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1589
1590         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1591         is now allocated from a mempool.
1592
1593 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1594
1595         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1596         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1597
1598 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1599
1600         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1601         mono_loader_clear_error () too late. Fixes #81463.
1602
1603 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1604
1605         * culture-info-table.h : regenerated.
1606
1607 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1608
1609         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1610         is missing.
1611
1612 2007-04-25  Dick Porter  <dick@ximian.com>
1613
1614         * Makefile.am: Put the mingw enforced-optimisation back into the
1615         PLATFORM_WIN32 section.
1616
1617 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1618
1619         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1620         patch.
1621
1622         * image.c (mono_image_load_module): New API function to load a module reference.
1623
1624         * image.c (load_modules): Load modules lazily. Fixes #80812.
1625
1626         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1627         
1628         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1629
1630         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1631         to mono_image_load_module_dynamic.
1632
1633 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1634
1635         * marshal.c: Fix calling convention for CCW on non-windows
1636         platforms. STDCALL on windows, CDECL everywhere else to work 
1637         with XPCOM and MainWin COM.
1638         
1639         Code is contributed under MIT/X11 license.
1640
1641 2007-04-23  Martin Baulig  <martin@ximian.com>
1642
1643         Fix #80969.
1644
1645         * loader.c
1646         (method_from_memberref): Added `gboolean *used_context' argument.
1647         (mono_get_method_from_token): Likewise.
1648         (mono_get_method_full): Don't insert the method in the cache when
1649         `used_context' is true.
1650
1651 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1652
1653         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1654
1655         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1656         create new MonoTypes for returned types.
1657         * class.c (mono_generic_class_get_class): Export mono-internal.
1658         * class-internals.h: Update to changes.
1659
1660 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1661
1662         * threadpool.c, threadpool.h, icall-def.h: patch from
1663         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1664
1665 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1668         
1669         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1670
1671         * threads.c (mono_thread_get_stack_bounds): New helper function.
1672
1673         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1674         Correctly compute stack bounds when attaching. Fixes #81394.
1675
1676 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1677
1678         * reflection.c: fix handling of doubles in custom attributes
1679         for the arm-fpa format (bug #81368).
1680
1681 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1682
1683         * reflection.c (assembly_add_win32_resources): Mildly relax an
1684         bounds check to let the end pointer point just past the end of the
1685         allocated buffer.  (may fix #81384)
1686
1687 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1688
1689         * culture-info-table.h : regenerated.
1690
1691 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1692
1693         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1694         the thread is aborted early.
1695
1696 2007-04-05  Dick Porter  <dick@ximian.com>
1697
1698         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1699         FindFirstFile()/FindNextFile() to find entries.  This lets the
1700         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1701         81038.
1702
1703         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1704         the parameters of
1705         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1706
1707 2007-04-04  Martin Baulig  <martin@ximian.com>
1708
1709         * debug-helpers.c
1710         (mono_method_desc_full_match): Add support for nested classes.
1711
1712 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1713
1714         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1715
1716 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1717
1718         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1719         waiting for too many threads.
1720
1721 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1722
1723         * environment.c: Fix return value check on uname so we can get the 
1724         executing version on Solaris operating systems.
1725
1726 2007-03-28  Jb Evain  <jbevain@gmail.com>
1727
1728         * class.c (mono_type_get_name_recurse): Complete the
1729         fix for the creation of assembly qualified names for
1730         pointer types. Fixes #81208.
1731
1732 2007-03-27  Dick Porter  <dick@ximian.com>
1733
1734         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1735         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1736         changed.
1737
1738         * threads.c
1739         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1740         the value of ReleaseMutex().
1741
1742 2007-03-27  Dick Porter  <dick@ximian.com>
1743
1744         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1745         in little-endian order, not network endian, so must be converted
1746         to host endian here.  Fixes bug 80593.
1747
1748 2007-03-22  Jb Evain  <jbevain@gmail.com>
1749
1750         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1751         qualified names for pointer types. Fixes #81208.
1752
1753 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1754
1755         * marshal.c: Add support for PreserveSigAttribute. 
1756         
1757         Code is contributed under MIT/X11 license.
1758
1759 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1760
1761         * process.c: Fix endianness issues. Fixes #81126.
1762
1763         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1764         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1765
1766         * image.c (mono_image_lookup_resource): Make this work on big-endian
1767         machines.Change API contract so the caller needs to free the return value.
1768         
1769         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1770         API change.
1771         
1772 2007-03-14  Martin Baulig  <martin@ximian.com>
1773
1774         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1775         mono_type_get_desc() as well.
1776
1777 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1778
1779         * icall.c:  Fix environ access in VS.  
1780         
1781 2007-03-13  Alp Toker  <alp@atoker.com>
1782
1783         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1784         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1785         #63841.
1786
1787 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1788
1789         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1790         circular references among dynamic methods. Fixes #81091.
1791
1792         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1793
1794 2007-03-09  Martin Baulig  <martin@ximian.com>
1795
1796         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1797
1798 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1799
1800         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1801         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1802         
1803         Code is contributed under MIT/X11 license.
1804         
1805 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1806
1807         * loader.c: Reapply patch for bug #79424.
1808
1809 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1810
1811         * metadata.c (mono_type_to_unmanaged): Only convert object to
1812         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1813
1814 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1815
1816         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1817         (and incorrectly set) is_reference field from MonoGenericInst.
1818
1819 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1820
1821         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1822         a little earlier.
1823
1824         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1825
1826         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1827
1828 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1829
1830         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1831         FileOptions.1 value to mean "temporary", map that to
1832         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1833
1834         Fixes 80688
1835
1836 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1837
1838         * appdomain.c: implement MS .Net style shadow copying. Copies of
1839         the assemblies are made in a subdirectory of the dynamic base
1840         directory, the assembly names are preserved.
1841         Copy .mdb and .config files along with the assemblies being shadowed.
1842
1843 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1844
1845         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1846         (emit_marshal_handleref): Ditto.
1847
1848         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1849         on Visual C++. Fixes #80671.
1850
1851 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1852
1853         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1854         for clone operations.
1855
1856 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1857
1858         * marshal.c: Fix warnings.
1859
1860 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1861
1862         * loader.c: allow case-insensitive matching of the dll name
1863         in dllmap handling when prefixed with "i:".
1864
1865 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1866
1867         * threads.c: Fix #ifdef for dummy_apc function for VS.
1868
1869 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1870
1871         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1872
1873 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1874         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1875         giving precedence to the methods with a fully qualified name
1876         (InterfaceName.MethodName) when building the interface sections
1877         of the vtable.
1878
1879 2007-02-16  Dick Porter  <dick@ximian.com>
1880
1881         * threadpool.c (append_job): Fix fast-path array handling, so it's
1882         less likely the array will grow exponentially when the load is
1883         heavy.
1884
1885 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1886
1887         * metadata-internals.h, loader.c: fix dllmap lookup order
1888         for non-function maps, too, and prepare for fallback code.
1889
1890 2007-02-12  Robert Jordan  <robertj@gmx.net>
1891
1892         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1893         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1894         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1895         GlobalFree. Fixes a part of bug #77075.
1896
1897 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1898
1899         * loader.c: implemented typedef parent in field memberref.
1900
1901 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1902
1903         * marshal.c: Fix warnings and remember to call Release on
1904         IUnknown of RCW.
1905         
1906         Code is contributed under MIT/X11 license.
1907
1908 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1909
1910         * class-internals.h: Add MonoHandleRef definition, and
1911         handleref_class to mono_defaults. 
1912
1913         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1914         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1915
1916         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1917         (do nothing on this stage)
1918         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1919         (emit_marshal_handleref): New method, used for argument handling
1920         of HandleRefs. 
1921
1922 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1923
1924         * class.c (mono_class_setup_parent): Lazily init com types.
1925         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1926         init com types.
1927         * object.c (mono_remote_class_vtable): Lazily init com types.
1928         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1929         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1930         * domain-internals.h: Expose mono_init_com_types.
1931         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1932         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1933         Add support for COM Callable Wrapper marshalling.
1934         * marshal.h: Add icall definitions.
1935         * gc.c: Handle freeing of CCWs in finalizer code.
1936         
1937         Code is contributed under MIT/X11 license.
1938
1939 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1940
1941         * reflection.c: changed all the signature encoding code to use
1942         a variable-sized buffer.
1943
1944 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1945
1946         * marshal.c: locking fixes: never take the loader lock
1947         or other runtime locks when holding the marshal lock
1948         (fixes bug#80664).
1949
1950 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1951
1952         * marshal.c: make the delegate function pointer mapping
1953         work for the moving GC.
1954
1955 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1956
1957         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1958         for bug #80618.
1959
1960 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1961
1962         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1963         gmodule.
1964
1965 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1966
1967         * threadpool.c: made the code moving-GC safe.
1968
1969 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1970
1971         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1972         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1973         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1974         warning cleanup.
1975         * reflection.c: warning cleanup, some threading and moving GC fixes.
1976
1977 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1978
1979         * class.c, loader.c: create the needed Set/Get/Address array methods
1980         as well as the .ctors in mono_class_init (), fixes bug #80567.
1981
1982 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1983
1984         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1985         we doesn't decrease its alignment. Should fix the sparc build.
1986
1987 2007-01-24  Dick Porter  <dick@ximian.com>
1988
1989         * socket-io.c
1990         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1991         Create the returned object if we need to ignore an unsupported
1992         socket option.  Fixes a segfault reported by Atsushi.
1993
1994 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1995
1996         * class.c, object.c: restrict GC-tracked fields to
1997         UIntPtr fields used inside corlib, so we provide better
1998         type info to the GC and also allow broken packing as in
1999         bug #80580.
2000
2001 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
2002
2003         * sgen-gc.c: removed duplicated function.
2004
2005 2007-01-19  Miguel de Icaza  <miguel@novell.com>
2006
2007         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
2008         value that means that the value is not supported, but that we
2009         should not return a failure, but instead report this as a
2010         successful operation.
2011
2012 2007-01-19  Raja R Harinath  <rharinath@novell.com>
2013
2014         Fix tests/bug79956.2.il
2015         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
2016         (mono_generic_class_get_class): If the generic definition in an
2017         enum, copy over other fields related to it.
2018
2019 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
2020
2021         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
2022         genericinst enums (bug #79215).
2023
2024 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
2025         * class.c: Fix bug 80307.
2026
2027 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
2028
2029         * image.c: if the file table is not present, try to load
2030         all the modules, since we don't have info about them
2031         having or not metadata (bug #80517).
2032         * assembly.c: allow mono_assembly_load_references () to
2033         work for netmodules.
2034
2035 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
2036
2037         * image.c, metadata-internals.h, object.c: execute module
2038         cctors when running on the 2 runtime if present (bug #80487).
2039
2040 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2041
2042         * icall.c: optimized InitializeArray() on bigendian.
2043
2044 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
2045
2046         * icall.c: fix for the broken ARM FPA double format.
2047
2048 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
2049
2050         * icall.c: handle endian issues for r4 and r8 types, too, in
2051         the InitializeArray() icall.
2052
2053 2007-01-15  Miguel de Icaza  <miguel@novell.com>
2054
2055         * loader.c (mono_loader_error_prepare_exception): Clear the error
2056         once we have extracted the information from it, do this before we
2057         call into the JIT's class loading mechanisms.
2058
2059         * object.c (mono_class_create_runtime_vtable): Do not clear the
2060         loader error before calling mono_class_get_exception_for_failure
2061         as the loader error is needed inside
2062         mono_class_get_exception_for_failure to throw the error (thinko).
2063
2064         Fixes #80521
2065         
2066 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
2067
2068         * reflection.c: align fields rva data so it's faster to load at
2069         runtime.
2070
2071 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2072
2073         Prepare to simplify GenericMethod handling.
2074         * class-internals.h (mono_method_get_context): New accessor function.
2075         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
2076         rather than directly accessing '->context' field.
2077
2078         * class-internals.h (_MonoGenericParam.method): Move ...
2079         (_MonoGenericContainer): ... here.  Add into union with klass field.
2080         * class.c, icall.c, loader.c, metadata.c, reflection.c:
2081         Update to changes.
2082
2083 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
2084
2085         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
2086         the wrapper type enum and reduce relocations.
2087
2088 2007-01-12  Raja R Harinath  <rharinath@novell.com>
2089
2090         * reflection.c (inflate_mono_method): Reuse method instantiation
2091         from the generic method, if available.
2092
2093 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2094
2095         * marshal.c (emit_marshal_variant): Fix conv_arg
2096         type in last commit, based on whether parameter is byref.
2097         
2098 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2099
2100         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
2101         marshalling.
2102         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
2103         MONO_TYPE_OBJECT back for VARIANT support.
2104
2105 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
2106
2107         * marshal.c, marshal.h, icall-def.h: Implement 
2108         Marshal.ReAllocCoTaskMem.
2109
2110 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
2111
2112         * marshal.c: memory retention fixes: use the proper
2113         image cache for runtime_invoke method lookups.
2114
2115 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
2116
2117         * mempool.c: added code to help debug mempool allocations.
2118
2119 2007-01-11  Dick Porter  <dick@ximian.com>
2120
2121         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
2122         support (experimenting with faking it with IP_MTU_DISCOVER for
2123         systems that don't have IP_DONTFRAGMENT.)
2124         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
2125         icall.
2126
2127         * icall-def.h: new System.Net.Sockets.Disconnect icall.
2128
2129         * socket-io.h: Add new fields to MonoSocketAsyncResult
2130         corresponding to the new ones in Socket.cs.
2131
2132 2007-01-11  Raja R Harinath  <rharinath@novell.com>
2133
2134         Fix IronPython regression mentioned in #80249
2135         * metadata.c (do_mono_metadata_parse_generic_class): Clear
2136         'cached_context' field, since it may have been initialized as a
2137         side-effect of metadata parsing.
2138
2139         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
2140         (_MonoGenericClass.cached_class): Move here and rename from lone
2141         remaining field of ...
2142         (_MonoInflatedGenericClass): ... this.  Remove.
2143         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
2144         to changes.
2145
2146         Fix mcs/tests/test-128.cs regression.
2147         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
2148         2007-01-10 change below.
2149         [MONO_TYPE_OBJECT]: Recurse into array case.
2150
2151 2007-01-11  Raja R Harinath  <harinath@gmail.com>
2152
2153         * class-internals.h (mono_get_inflated_generic_class): Remove.
2154         * class.c (mono_get_inflated_generic_class): Remove.
2155         (mono_generic_class_get_class): Rename from
2156         mono_class_create_generic.
2157         (mono_class_from_mono_type) [GENERICINST]: Use it.
2158         * reflection.c, metadata.c: Update to changes.  Use
2159         'mono_class_from_mono_type'.
2160
2161 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
2162
2163         * reflection.c: use passed type when encoding an array element
2164         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
2165
2166 2007-01-09  Robert Jordan  <robertj@gmx.net>
2167
2168         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
2169         result arguments (someDelegate.EndInvoke (unrelatedAres)).
2170         Fixes bug #80392.
2171
2172 2007-01-09  Raja R Harinath  <rharinath@novell.com>
2173
2174         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
2175
2176         * object.c (set_value): Avoid aliasing between type->data.klass
2177         and type->data.generic_class.
2178
2179         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
2180
2181 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2182
2183         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
2184         between type->data.klass and type->data.generic_class.
2185
2186 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
2187
2188         * marshal.c: In MS.NET, StringBuilder objects are not copied by
2189         value in out parameters.
2190
2191 2007-01-08  Raja R Harinath  <rharinath@novell.com>
2192
2193         Simplify invariant for MonoGenericClass::klass field.
2194         * class.c (mono_class_create_generic): Verify 'klass' is null.
2195         * metadata.c (do_mono_metadata_parse_generic_class): Don't
2196         initialize 'klass' field.
2197
2198 2007-01-05  Raja R Harinath  <rharinath@novell.com>
2199
2200         Ongoing work to avoid redundant data and simplify invariants.
2201         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
2202         'generic_class', and change type to a GenericInst.
2203         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
2204         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
2205
2206 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
2207
2208         * class.c : skip io-layer under PLATFORM_WIN32.
2209
2210 2007-01-03  Tor Lillqvist  <tml@novell.com>
2211
2212         Fix #80305: In a bundled executable, look in the bundled exe
2213         assembly to determine the runtime version. Add the possibility to
2214         bundle also the machine.config file.
2215         
2216         * assembly.c (mono_assembly_open_from_bundle): Make
2217         non-static. Allow being called even if we have no bundled
2218         assemblies, and return NULL right away in that case.
2219
2220         * domain-internals.h: Declare mono_assembly_open_from_bundle()
2221         here.
2222
2223         * domain.c (app_config_parse): Take an assembly exe file name as
2224         parameter instead of a config file name. Check for a bundled
2225         config file for that assembly by calling
2226         mono_config_string_for_assembly_file() (see below) before looking
2227         for one in the file system.
2228         (get_runtimes_from_exe): Corrsponding change to call of
2229         app_config_parse().
2230         (get_runtimes_from_exe): Check for bundled assembly exe file first
2231         by calling mono_assembly_open_from_bundle(). If no bundled
2232         assembly exe file is found, call mono_image_open() as before to
2233         look it up in the file system.
2234
2235         * mono-config.c: Add variable bundled_machinec_onfig.
2236         (mono_config_string_for_assembly_file): New function.
2237         (mono_config_for_assembly): Move code snippet that looks for a
2238         bundled assembly .config file into the above new function. Call
2239         it.
2240         (mono_register_machine_config, mono_get_machine_config): New
2241         functions to set and retrieve
2242
2243         * assembly.h: Declare mono_register_machine_config().
2244
2245         * mono-config.h: Declare mono_get_machine_config() and
2246         mono_config_string_for_assembly_file().
2247
2248         * icall.c: No declaration of environ necessary on Win32. It is
2249         declared (as a macro expanding to a function call) in stdlib.h.
2250         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
2251         New internal mono function. Returns the value of
2252         mono_get_machine_config() as a Mono string.
2253
2254         * icall-def.h: Add get_bundled_machine_config().
2255
2256 2007-01-04  Raja R Harinath  <rharinath@novell.com>
2257
2258         Remove redundant field
2259         * class-internals.h (_MonoGenericContext.container): Remove field.
2260         * loader.c (mono_method_get_signature_full): Don't parse a
2261         "container" for a signature parse when the signature is inflated
2262         immediately.
2263         (method_from_methodspec): Likewise, for a generic_inst.
2264         * class.c, metadata.c, reflection.c: Update to changes.
2265
2266 2006-01-04  Raja R Harinath  <rharinath@novell.com>
2267
2268         * class-internals.h (_MonoGenericClass): Rename 'context' field to
2269         'cached_context', and change semantics -- it starts off NULL, and
2270         is initialized on demand.
2271         * class.c (mono_generic_class_get_context): New accessor to
2272         replace 'context' field accesses.
2273         (mono_class_get_context): New helper.
2274         (*): Update to changes.
2275         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
2276
2277 2007-01-03  Miguel de Icaza  <miguel@novell.com>
2278
2279         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
2280         before the memcpy.   Fixes Marshal2 regression.
2281
2282 2007-01-02  Jb Evain  <jbevain@gmail.com>
2283
2284         * blob.h: add a MONO_TYPE_ENUM definition
2285         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
2286         fix the encoding of arrays of enums in custom attributes.
2287
2288         Fixes #79666.
2289
2290 2007-01-01  Miguel de Icaza  <miguel@novell.com>
2291
2292         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
2293         string is null terminated, but only cut the string short if it
2294         overflows the buffer.   
2295         
2296         (mono_string_to_byvalstr): Also fix this routine.   The code here
2297         was not properly terminating a string (it was only terminated
2298         because of the previous catch-all memset). 
2299
2300         I left the memset, because I do not know if applications expect
2301         the runtime to clear this region. 
2302
2303         Fixes #79944.
2304
2305         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2306         Clear the error before returning to unmanaged code to prevent the
2307         runtime from being confused later on (fixes  80420).
2308         (ves_icall_type_from_name): Always call mono_loader_clear_error
2309         after parsing a type that could have failed.
2310         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
2311
2312         * loader.c (mono_loader_clear_error): Fix indentation.
2313
2314 2006-12-28  Martin Baulig  <martin@ximian.com>
2315
2316         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
2317
2318 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
2319
2320         * reflection.c: patch from Rolf Bjarne Kvinge to fix
2321         getting a token for an EnumBuilder.
2322
2323 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2324
2325         * reflection.c: be more careful in case resource generation
2326         fails to create the data array.
2327
2328 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
2329
2330         * sgen-gc.c: write barrier for clone and fix unregister handles.
2331
2332 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
2333
2334         * reflection.c: some fixes needed in the generics code for the moving GC.
2335
2336 2006-12-22  Robert Jordan  <robertj@gmx.net>
2337
2338         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
2339         account. Fixes bug #80299.
2340
2341 2006-12-21  Raja R Harinath  <rharinath@novell.com>
2342
2343         Fix WaitHandle usage in delegates.
2344         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
2345         * object.c (mono_wait_handle_new): Use the property set method to
2346         initialize the handle.
2347         (mono_wait_handle_get_handle): New.
2348         * threadpool.c (mono_async_invoke): Use it.
2349         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
2350         Likewise.
2351         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
2352
2353 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
2354
2355         * marshal.c (emit_marshal): Call emit_marshal_variant and
2356         emit_marshal_com_interface when applicable.
2357         (emit_marshal_variant, emit_marshal_com_interface): Add
2358         methods for this case and remove if's from emit_marshal_object.
2359         
2360 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
2361
2362         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
2363
2364 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
2365
2366         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
2367         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
2368         and GlobalFree on Windows. Remove FIXME.
2369
2370 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2371
2372         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
2373         implementation for managed objects.
2374
2375 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
2376
2377         * object.c: implemented code to be used for checking
2378         that no reference field overlaps with non-references.
2379
2380 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2381
2382         * threadpool.c: fix queue code to be compatible with the
2383         moving GC.
2384
2385 2006-12-18  Miguel de Icaza  <miguel@novell.com>
2386
2387         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
2388         in structures by throwing ArgumentNullException.
2389
2390         (emit_marshal_safehandle): Also when they are null parameters.
2391
2392         (emit_marshal_safehandle): Add support for ref
2393         SafeHandles parameters
2394
2395 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2396
2397         * profiler.c: updated to use the mono-dl API instead of
2398         gmodule.
2399
2400 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2401
2402         * profiler.c: updated to use the mono-dl dynamic loading
2403         API instead of gmodule.
2404
2405 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2406
2407         * profiler.c: use readlink, older versions of glib don't have
2408         g_file_read_link ().
2409
2410 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2411
2412         * profiler.c: try to detect the path to mono if libc fails to provide
2413         a useful name (bug #80286).
2414
2415 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2416
2417         Fix #80242
2418         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2419         instance, use the generic type definition instead.
2420         (ves_icall_Type_GetNestedTypes): Likewise.
2421         * class.c (mono_class_create_generic): Always set the
2422         nested_classes of a generic instance to NULL, even if the generic
2423         type definition has nested types.
2424
2425 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2426
2427         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2428         and fix on Linux.
2429         
2430 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2431
2432         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2433         my arguments were in the wrong order.   I also fixed the Windows
2434         version which seems to have had the same issue.
2435
2436         (mono_free_bstr): On Unix, this is g_free.
2437         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2438         conversions (for the tests in corlib to pass).
2439
2440 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2441
2442         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2443         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2444         exception if a ref SafeHandle in a struct has changed).
2445         
2446         (emit_struct_conv): Do not perform layout checks for classes
2447         derived from SafeHandle, as those are specially handled. 
2448
2449         (emit_object_to_ptr_conv): Add support for
2450         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2451
2452         (emit_marshal_safehandle): Implement conversion of return values
2453         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2454         
2455         * threads.c: WaitHandle now is compiled with two different handles
2456         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2457         for 2.0.
2458         
2459         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2460         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2461         these routines to cope with both kinds of fields.
2462
2463 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2464
2465         * metadata.c (mono_type_to_unmanaged): Handle the case where
2466         type->data.klass is a SafeHandle, and in that case, return the
2467         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2468         MONO_MARSHAL_CONV_SAFEHANDLE. 
2469
2470 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2471
2472         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2473         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2474         calling emit_marshal_object.
2475
2476         (emit_marshal_safehandle): Implement marshalling of
2477         SafeHandle parameters (no ref support yet).
2478
2479         (MarshalAction): Document the defines as I implement
2480         them for SafeHandle.
2481
2482         (emit_marshal_object): indentation police.
2483
2484         * class-internals.h: Define MonoSafeHandle.
2485         Add safehandle_class to MonoDefaults type.
2486
2487         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2488         list of classes to check for fields. 
2489
2490         * domain.c (mono_init_internal): Add SafeHandle to the list of
2491         mono_defaults loaded.
2492
2493 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2494
2495         Fix #80253
2496         * reflection.c (mono_reflection_bind_generic_parameters): If the
2497         generic type definition is a type builder, ensure that it is fully
2498         initialized before instantiating it.  Kill some dead code.
2499
2500 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2501
2502         * object.c: clear the loader_error () before loading
2503         more metadata stuff (bug #80258).
2504
2505 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2506
2507         * icall.c, icall-defs.h: type modifiers icalls for
2508         parameters and properties.
2509
2510 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2511
2512         * object.c, icall.c: fixed warnings.
2513
2514 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2515
2516         * marshal.c: fixed a couple of leaks and coding style in a few places.
2517
2518 2006-12-08  Dick Porter  <dick@ximian.com>
2519
2520         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2521         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2522         80173.
2523
2524 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2525
2526         * process.c: ProcessStartInfo may have only filename set and
2527         arguments can be NULL.
2528
2529 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2530
2531         * icall.c: fix leak found by Robert Jordan.
2532
2533 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2534
2535         * marshal.c, marshal.h: generate managed method to access an element
2536         of a multi-dimensional array.
2537
2538 2006-11-30  Paolo Molaro (lupus@ximian.com)
2539
2540         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2541
2542 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2543
2544         * icall.c: back out GetFields () fix until the serialization code is
2545         fixed to not depend on the incorrect behaviour.
2546
2547 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2548
2549         * profiler.c: provide defaults if none are set.
2550
2551 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2552
2553         * Makefile.am, attrdefs.h: new public header file with
2554         constants for attributes for use by embedders.
2555
2556 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2557
2558         * icall.c: GetFields () fix for bug #80064.
2559
2560 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2561
2562         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2563         removed long unused icalls.
2564
2565 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2566   
2567         * marshal.c: 
2568                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2569                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2570                 can be generated without a delegate class.
2571                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2572         
2573         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2574
2575 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2576
2577         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2578         #80069.
2579
2580 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2581
2582         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2583         icall-def.h: added icalls needed by System.GC.
2584
2585 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2586
2587         * loader.c: ensure the class in catch clauses is handled
2588         correctly for generics methods (fixes bug#79980).
2589
2590 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2591
2592         * monitor.h, monitor.c: added mono_locks_dump () function
2593         to help debug deadlocks involving managed locks.
2594
2595 2006-11-13  Dick Porter  <dick@ximian.com>
2596
2597         * file-io.c (get_file_attributes): If the file is a symlink try
2598         and get the stat data for the target, but also add the
2599         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2600         the specs for the windows symlink support, but will probably have
2601         to be reworked when I have test data from a vista machine.  Fixes
2602         bug 79887.
2603
2604 2006-11-13  Dick Porter  <dick@ximian.com>
2605
2606         * gc.c (mono_domain_finalize): 
2607         * marshal.c (mono_delegate_begin_invoke): 
2608         * threadpool.c (socket_io_init, mono_thread_pool_init)
2609         (mono_thread_pool_finish): 
2610         * monitor.c (mono_monitor_try_enter_internal): 
2611         * threads.c (mono_thread_resume, mono_thread_init)
2612         (mono_thread_suspend_all_other_threads)
2613         (mono_thread_execute_interruption): 
2614         * appdomain.c (mono_domain_unload): Check for NULL error returns
2615         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2616         75733.
2617
2618 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2619
2620         * process.c
2621         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2622         Only close the handle if the value of the handle is not
2623         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2624         robust.
2625
2626         Improvement for #75733, so that we do not run into this problem. 
2627
2628         
2629         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2630         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2631         internal variables.  Fixes #79462 
2632         
2633
2634 2006-11-09  Dick Porter  <dick@ximian.com>
2635
2636         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2637         Use poll() not select().  Fixes bug 79397.
2638
2639 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2640
2641         Fix #79872
2642         * assembly.c (mono_assembly_load_from_full): Check that the given
2643         image has an assembly manifest.
2644
2645 2006-11-09  Ankit Jain  <jankit@novell.com>
2646
2647         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2648         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2649         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2650
2651 2006-11-07  Dick Porter  <dick@ximian.com>
2652
2653         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2654         Put the old resolver behaviour back for pre-2.0 profiles.
2655
2656 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2657
2658         * threadpool.c: precise GC and locking fixes.
2659
2660 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2661
2662         * class.c: don't load types that have an explicit unaligned
2663         managed reference. Provide better info in the TypeLoad exception.
2664         Part of the fix for bug #79744.
2665         * object.c: use the correct check for class type load issues.
2666
2667 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2668
2669         * class.c: enforce alignment of fields with managed references
2670         even when Pack=1 is forced by the user (bug #77788).
2671
2672 2006-11-03  Dick Porter  <dick@ximian.com>
2673
2674         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2675         If the address reverse lookup fails, return it as the hostname
2676         anyway.  Fixes bug 79721.
2677
2678 2006-11-03  Dick Porter  <dick@ximian.com>
2679
2680         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2681         Fix build on Windows.
2682
2683 2006-11-02  Dick Porter  <dick@ximian.com>
2684
2685         * icall-def.h: 
2686         * object-internals.h: 
2687         * exception.c (mono_get_exception_thread_interrupted): 
2688         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2689         Fixes bug 74525.
2690
2691         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2692         Check for pending Thread.Interrupt.
2693
2694 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2695         * loader.c: Fixed bug 79684.
2696
2697 2006-10-27  Dick Porter  <dick@ximian.com>
2698
2699         * file-io.c (get_file_attributes): Force symlinks to directories
2700         to be returned as a regular file.  Fixes bug 79733.
2701 2006-10-26  Dick Porter  <dick@ximian.com>
2702
2703         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2704         CreateFile to open a directory then we need to set the
2705         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2706
2707 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2708
2709         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2710         friends.
2711
2712 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2713
2714         * sgengc.c: small cleanup of timer code.
2715
2716 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2717
2718         * sgen-gc.c: fix some warnings and start adding support for
2719         complete object removal on domain unload.
2720
2721 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2722
2723         * assembly.c: build_assembly_name should not consider a version
2724         number without build or revision number invalid. Fixes bug #79715.
2725
2726 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2727
2728         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2729         call kernel32 function OutputDebugString directly.
2730         
2731         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2732         
2733 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2734
2735         * reflection.c: small cleanup, using a function to insert a MonoString
2736         in the string heap.
2737
2738 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2739
2740         * reflection.c: moving GC fixes.
2741
2742 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2743
2744         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2745         all the objects with finalizers belonging to an unloading appdomain.
2746
2747 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2748
2749         * sgen-gc.c: added ability to allocate even when the nursery is fully
2750         pinned and fixed a couple of bugs.
2751
2752 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2753
2754         * threads.h: Revert the last change for now.
2755
2756         * threads.h (mono_thread_get_pending_exception): Rename this to
2757         mono_thread_get_undeniable_exception ().
2758
2759 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2760
2761         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2762         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2763         when fname does not refer to valid assembly. This result in a more
2764         meaningful error message.
2765         * exception.c: added mono_get_exception_bad_image_format2 which 
2766         constructs a BadImageFormatException using the ctor taking a custom
2767         message and the file name. Passing in a NULL msg results in a default
2768         message.
2769         * exception.h: define mono_get_exception_bad_image_format2 function.
2770         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2771         when file name pointed to an invalid IL image. Use 
2772         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2773         as this results in a more meaningful error message.
2774
2775 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2778         #79465.
2779
2780 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2781
2782         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2783         consistency with the other _size functions.
2784         (mono_type_stack_size): Ditto.
2785
2786         * class.c object.c icall.c: Fix warnings caused by the above change.
2787
2788         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2789
2790         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2791
2792         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2793
2794 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2795
2796         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2797         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2798         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2799         threadpool.h, threads-types.h: mark more internal functions.
2800
2801 2006-10-11  Dick Porter  <dick@ximian.com>
2802
2803         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2804         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2805         reproduce the bug even before applying the fix.)
2806
2807 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2808
2809         * reflection.c: allow retrieving attributes for arguments in generic
2810         methods (bug #79241).
2811
2812 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2813
2814         * debug-mono-symfile.c: properly check fopen () result (found by
2815         coverity).
2816
2817 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2818
2819         * reflection.c: make error message clearer and fixed two
2820         issuelets found by Coverity.
2821
2822 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2823
2824         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2825
2826 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2827
2828         * object-internals.h, gc-internal.h, profiler-private.h:
2829         mark internal functions.
2830
2831 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2832
2833         * reflection.c: put data in the text section.
2834         * icall.c: recognize more types in type_from_typename ().
2835         * process.c, marshal.c: added some GC FIXMEs.
2836
2837 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2838
2839         * loader.c: check for NULL before initializing.
2840
2841 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2842
2843         * gc.c (finalizer_thread): Use a non-alertable wait here.
2844
2845         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2846         until the correct solution is found.
2847
2848 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2849
2850         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2851         modules with no metadata. Fixes #79596.
2852
2853         * image.c (load_metadata_ptrs): Put back the error message when
2854         the #- heap is encountered since the support is not complete yet.
2855
2856 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2857
2858         * gc.c: do not allow the user to SuppressFinalize () a
2859         delegate because it would leak the trampoline if present.
2860
2861 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2862
2863         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2864         PropertyPtr table.
2865
2866 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2867
2868         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2869
2870         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2871
2872         * row-indexes.h: Add definitions for *Ptr tables.
2873
2874         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2875
2876         * metadata.c (mono_metadata_translate_token_index): New helper function to
2877         translate table indexes used in uncompressed metadata.
2878         (mono_metadata_decode_table_row): Ditto.
2879         (mono_metadata_decode_table_row_col): Ditto.
2880
2881         * metadata.c: Add table schema for *Ptr tables.
2882
2883         * class.c loader.c: Use the new helper function to access the affected metadata
2884         tables.
2885         
2886         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2887         #38532.
2888         
2889 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2890
2891         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2892         sequences which can be unbounded in size. Fixes #79583.
2893
2894 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2895
2896         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2897         static initialization.
2898
2899         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2900
2901         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2902
2903         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2904
2905         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2906         ctor fails, i.e. throw the same exception on subsequent accesses.
2907         
2908 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2909
2910         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2911         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2912         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2913         Handle marshalling of interfaces and VARIANTs contained in structs.
2914         
2915         Code is contributed under MIT/X11 license.
2916         
2917 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2918
2919         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2920         
2921         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2922         mempool.
2923
2924 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2925
2926         * console-io.c: ignore previous SIGINT handler.
2927
2928 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2929
2930         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2931         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2932         #79460, #79461, #79485.
2933
2934         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2935
2936         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2937         #79217.
2938
2939 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2940
2941         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2942         could be generated from it.
2943
2944 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2945
2946         * rand.c: fix read loop to correctly handle EINTR.
2947
2948 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2949
2950         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2951         internal calls are defined to keep methods closer to the declaring
2952         type and allow a significant reduction in runtime relocations and
2953         memory usage.
2954
2955 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2956
2957         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2958         exception message to have FileNotFoundException use the default
2959         assembly load error message. Fixes bug #79426.
2960         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2961
2962 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2963
2964         * threadpool.c: (start_thread_or_queue) use the root domain when
2965         creating the thread instead of the async object one.
2966
2967 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2968
2969         * class.c, object.c, class-internals.h, reflection.c:
2970         for arrays, store element_size inside MonoClass (speedup
2971         for array object creation).
2972
2973 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2974
2975         * icall.c: fixed CodeBase to use the file name and not the module
2976         name (bug #79365).
2977
2978 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2979
2980         * mono-debug.c, mono-debug.h: export find_method as
2981         mono_debug_find_method ().
2982
2983 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2984
2985         * debug-helpers.c, class-internals.h: added a few functions useful
2986         when debugging under gdb.
2987
2988 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2989
2990         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2991         characters that need special handling.
2992
2993 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2994
2995         * mono-config.c: make the os/cpu specification more flexible,
2996         allowing lists and negation.
2997
2998 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2999
3000         * marshal.c: COM Interop fixes. Handle case where method->klass.
3001         is interface. Handle BSTR/MonoString when null. Use CDECL as 
3002         calling convention on non-windows platforms. This is for
3003         compatibility with XPCOM and MainWin COM.
3004         
3005         Code is contributed under MIT/X11 license.
3006         
3007
3008 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
3009
3010         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
3011         correctly. Fixes #79217.
3012
3013         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
3014
3015 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
3016
3017         * mono-config.c: allow both an os and cpu attribute for dllmap
3018         and dllentry elemnets to enable a single config file to be used
3019         for multiple architectures.
3020
3021 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
3022
3023         * loader.c: MonoLoaderError was cleared too soon on load failure.
3024         Fixes bug #79424.
3025
3026 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
3027
3028         * icall.c: use the defining class vtable when accessing a
3029         static field, not a pobblibly derived class.
3030
3031 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
3032
3033         * icall.c string-icalls.c: Remove references to unicode.h.
3034
3035         * unicode.h unicode.c Makefile.am: Remove these unused source files.
3036
3037         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
3038
3039         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
3040         indicating the image where custom marshaller types should be looked up.
3041         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
3042         custom marshallers, instead of corlib. Fixes #79425.
3043
3044 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
3047
3048 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
3049
3050         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
3051         Implement Environment.ProcessorCount.
3052         
3053         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
3054         Implement Environment.ProcessorCount.
3055         
3056         * icall.c: 
3057         Add Environment.ProcessorCount icall.
3058         
3059         Patch by Jason McFall.
3060
3061 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3062
3063         * assembly.c: don't append .exe/.dll when the filename already contains
3064         one of those extensions.
3065
3066 2006-09-12  Martin Baulig  <martin@ximian.com>
3067
3068         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
3069         to array interfaces.
3070
3071 2006-09-11  Martin Baulig  <martin@ximian.com>
3072
3073         * reflection.c (mono_image_build_metadata): Create the
3074         MethodImpl's after emitting all types and methods, so we don't
3075         need another fixup pass for them.
3076
3077 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
3078
3079         * class.c (mono_class_from_name_case): Fix regression introduced by the last
3080         change.
3081
3082 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
3083
3084         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
3085         unload.
3086
3087 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
3088
3089         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
3090         args is not set. Fixes #78926.
3091
3092 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
3093
3094         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
3095
3096         * image.c (load_class_names): Move this to class.c, and rename it to 
3097         'mono_image_init_name_cache'.
3098         (load_modules): Fix a warning.
3099
3100         * class.c icall.c image.c: Initialize image->name_cache lazily.
3101
3102         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
3103         on its name using information in the AOT file.
3104
3105         * class.c (mono_class_from_name): Use the new hook function.
3106
3107 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
3108
3109         * reflection.c (mono_param_get_objects): Handle enum default parameter values
3110         correctly.
3111
3112         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
3113         Fixes #79289.
3114         
3115 2006-09-06  Martin Baulig  <martin@ximian.com>
3116
3117         * icall.c (mono_lookup_internal_call): Small fix.
3118
3119 2006-09-05  Raja R Harinath  <rharinath@novell.com>
3120
3121         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
3122         double g_free.
3123
3124 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
3125
3126         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
3127         when --debug is specified.
3128
3129 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
3130
3131         * class.c (setup_generic_array_ifaces): Fix a warning.
3132
3133 2006-09-04  Miguel de Icaza  <miguel@novell.com>
3134
3135         * Temporarily remove the patch to assemly.c that checks the
3136         assembly versions as it breaks our gacutil.
3137
3138 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
3139
3140         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
3141
3142         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
3143         a net 1.0 runtime.
3144
3145         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
3146         created using the default ctor. Fixes #79152.
3147         (mono_string_builder_to_utf16): Ditto.
3148
3149 2006-09-01  Martin Baulig  <martin@ximian.com>
3150
3151         Fix handling of the generic array interfaces.
3152
3153         * class-internals.h
3154         (MonoDefaults): Removed `generic_array_class' and added
3155         `generic_ilist' class.
3156
3157         * class.c
3158         (mono_bounded_array_class_get): Add the new generic array interfaces.
3159         (setup_generic_array_ifaces): New static method; create vtable
3160         entries for each method in the generic array interfaces.
3161
3162         * metadata.c
3163         (select_container): Allow "parent-less" generic methods.
3164
3165         * marshal.c
3166         (mono_marshal_get_generic_array_helper): New public method.
3167
3168         * icall.c
3169         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
3170         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
3171         moved the interncall into System.Array.
3172
3173 2006-09-01  Raja R Harinath  <rharinath@novell.com>
3174
3175         A few more cases of avoiding work on types with ->byref set.
3176         Has the real fix for #79238
3177         * icall.c (is_generic_parameter): New helper.
3178         (ves_icall_Type_GetGenericParameterPosition): Use it.
3179         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
3180         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
3181         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
3182         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
3183         reference types.
3184         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
3185         reference types.
3186         (ves_icall_Type_get_IsGenericInstance): Likewise.
3187         (ves_icall_Type_get_IsGenericType): Likewise.
3188
3189 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
3190
3191         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
3192         class if possible.
3193
3194         * mempool.h (mono_mempool_get_allocated): New helper function.
3195
3196         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
3197         change.
3198
3199         * mempool.c: Fix warnings and the calculation of stats.
3200
3201         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
3202
3203         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
3204
3205         * loader.c (mono_get_method_from_token): Update method_count stat.
3206
3207         * class-internals.h (MonoStats): Add some stats.
3208
3209 2006-08-31 Robert Jordan  <robertj@gmx.net>
3210
3211         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
3212         with managed variants.
3213         All code is contributed under the MIT/X11 license.
3214         
3215 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
3216
3217         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
3218         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
3219
3220         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
3221
3222         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
3223         with cycles in classes.
3224
3225         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
3226
3227         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
3228         missing a [MarshalAs] directive. Fixes #79203.
3229
3230         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
3231         klass->marshal_info. Fixes #79217.
3232
3233 2006-08-30  Martin Baulig  <martin@ximian.com>
3234
3235         Committing a patch from Joachim Ante <joe@otee.dk>:
3236         Add support for binary data symbol stores.
3237
3238         * debug-mono-symfile.c
3239         (mono_debug_open_mono_symbol_file): Renamed into
3240         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
3241         arguments.
3242
3243         * mono-debug.c
3244         (mono_debug_open_image): Added `raw_contents' and `size' args.
3245         (mono_debug_init_2_memory): New public function.
3246
3247 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
3248
3249         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
3250
3251 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3252
3253         * appdomain.c: implement support for ShadowCopyFiles.
3254
3255 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
3256
3257         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
3258         when value is NULL (and should remove CID #51).
3259
3260 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3261
3262         * image.c: moved 2 functions to ../utils.
3263
3264 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
3265
3266         * gc.c: cope with the target object of a GC handle being NULL
3267         (bug #78877).
3268
3269 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
3270
3271         * class.c: recursively check parent's explicit implementations
3272         of interface methods (fixes bug #79125).
3273
3274 2006-08-19  Miguel de Icaza  <miguel@novell.com>
3275
3276         * filewatcher.c: Avoid warnings when building, do not redefine
3277         constants that are defined.
3278
3279         Remove warnings.
3280
3281 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3282
3283         * image.c: don't fail when the link points to an absolute path.
3284
3285 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
3286
3287         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
3288         Fix CID #3.
3289
3290 2006-08-17  Miguel de Icaza  <miguel@novell.com>
3291
3292         * image.c (full_path): A new method used to obtain the actual path
3293         of an assembly even in the presence of symbolic links.  
3294
3295         This is necessary for the case where we are running a binary that
3296         has been GACed, but we are using the "published" path name
3297         ($prefix/mono/1.0/blah.exe) which happens to point to the real
3298         file in the GAC.
3299
3300         This was the source of the failure for the `xsp' command with the
3301         recent AppDomain changes, as far as the runtime was concerned,
3302         there were two different assemblies: $prefix/mono/1.0/blah.exe and
3303         $prefix/mono/gac/blah/version/blah.exe.
3304
3305         (do_mono_image_open): use full path
3306
3307 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3308
3309         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
3310
3311 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
3312
3313         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
3314         domain_id is supplied. Fix CID #241 and corlib's unit tests.
3315
3316 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3317
3318         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
3319         small structures. Fixes #78990.
3320
3321 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
3322
3323         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
3324
3325         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
3326
3327 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3328
3329         * appdomain.c:
3330         * marshal.c: don't load all the assemblies from a domain into newly
3331         created ones. The new domains might have different rules and load
3332         assemblies from different locations. Fixes bug #76757.
3333
3334         Patch by Lluis. Conflicts resolved by Brian Crowell.
3335
3336 2006-08-16  Alp Toker  <alp@atoker.com>
3337
3338         * socket-io.c: First half of the fix for #79084.
3339         Set sa_size to the length of the content, not that of the struct.
3340         Don't add NULL suffix to the content, this should be done in
3341         managed code if needed.
3342
3343 2006-08-14  Raja R Harinath  <rharinath@novell.com>
3344
3345         Fix part of #79012
3346         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
3347         mono_metadata_parse_type returns NULL.
3348
3349 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
3350
3351         * normalization-tables.h : new file for string normalization data.
3352         * locales.c, locales.h, icall.c :
3353           added load_normalization_resource() for string normalization,
3354           and icall as well.
3355         * Makefile.am : added normalization-tables.h to the sources.
3356
3357 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
3358
3359         * marshal.c: Add more helper functions to reduce code duplication and use them
3360         everywhere.
3361
3362 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
3363
3364         * marshal.c: Fix non-x86 stdcall warnings.
3365         
3366         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
3367         them everywhere.
3368
3369 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
3370
3371         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
3372         type check on multi-dimensional arrays. Fixes #79000.
3373
3374 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
3375
3376         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
3377         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
3378         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
3379         * class-internals.h: add is_com_object to class structure.
3380         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
3381         null checks to COM object marshalling. Fix .ctor call on RCW.
3382         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
3383         
3384         All code is contributed under the MIT/X11 license.
3385
3386 2006-08-09  Dick Porter  <dick@ximian.com>
3387
3388         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
3389         racing mono_monitor_allocator_lock() somewhere, so don't delete
3390         the critical section for now.  Found by running and exiting
3391         monodevelop.
3392
3393 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
3394
3395         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
3396         (ves_icall_System_ComObject_FindInterface): Ditto.
3397         (ves_icall_System_ComObject_CacheInterface): Ditto.
3398
3399         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3400         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3401
3402 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3403
3404         * threadpool.c: treat pipes from process asynchronous reads as sockets
3405         when reading from them, so we get select/poll or epoll to wait for
3406         data.
3407
3408 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3409
3410         * loader.c: Fix a typo (CID #233) in the null check.
3411
3412 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3413
3414         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3415         Hopefully fixes #78949.
3416         
3417         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3418         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3419         bytes. Fixes #78972.
3420
3421 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3422
3423         * filewatcher.c: we need to set errno here.
3424
3425 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3426
3427         * filewatcher.c: let Win32Exception get the error value.
3428
3429 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3430
3431         * filewatcher.c: translate errno into win32 errors for Win32Exception
3432         to know what happened.
3433
3434 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3435
3436         * threadpool.c: Fix more warnings.
3437
3438         * assembly.c (search_loaded): Fix warnings.
3439
3440         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3441         (mono_async_invoke): Ditto.
3442
3443 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3444
3445         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3446         entries for __ComObject type in addition to ComImport types.
3447         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3448         about hash table.
3449         
3450         All code is contributed under the MIT/X11 license.
3451
3452 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3453
3454         * image.c: avoid tentative loading of modulerefs that contain
3455         no metadata (P/Invoke library names).
3456
3457 2006-07-28  Dick Porter  <dick@ximian.com>
3458
3459         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3460         mono_loader_lock() somewhere, so don't delete the critical section
3461         for now.  Found by running and exiting monodevelop.
3462
3463 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3464
3465         * filewatcher.c: define the inotify syscalls when we're building on
3466         linux and have sys/syscall.h. The build system might not have support
3467         for inotify but the target system might have it.
3468
3469 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3470
3471         * domain.c: Documentation updates.
3472
3473         * loader.c (mono_free_method): Do not release the method
3474         information if we are being profiled, as profilers will use this
3475         information at shut down to present some data to the user.
3476
3477         This is needed so that the profiler does not crash, as the
3478         profiler tends to keep MonoMethods around, and they might become
3479         invalid if we free these.
3480
3481         (mono_get_method_constrained): Return the original CIL stream
3482         method as well, so verification can be performed against it.
3483
3484 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3485
3486         * filewatcher.[ch]: support for inotify file system watcher.
3487         * icall.c: add new internal calls for the inotify file system watcher.
3488
3489 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3490
3491         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3492         #78888.
3493
3494 2006-07-20  Dick Porter  <dick@ximian.com>
3495
3496         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3497         warning.
3498
3499 2006-07-20  Dick Porter  <dick@ximian.com>
3500
3501         * threads.c (start_wrapper): Do the thread cleanup while we still
3502         hold a reference to its object.  Fixes bug 78123.
3503
3504 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3505
3506         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3507         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3508           "managed-to-managed".
3509         * icall.c: Redirect string constructors that take sbyte* to
3510           ves_icall_System_String_ctor_RedirectToCreateString.
3511         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3512           to CreateString () methods with matching signature.
3513         * reflection.c: Use original security informations for
3514           MONO_WRAPPER_MANAGED_TO_MANAGED.
3515         * security-manager.c: Use original security informations for
3516           MONO_WRAPPER_MANAGED_TO_MANAGED.
3517         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3518           that is a placeholder and only its address should be used.
3519         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3520           that is a placeholder and only its address should be used.
3521
3522 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3523
3524         Begin implementing COM Interop.
3525         * appdomain.c: Increment corlib version.
3526         * class.c: Set ComImport classes' parent to __ComObject.
3527         * loader.c: Mark cominterop methods as such.
3528         * domain.c: Add __ComObject class to MonoDefaults structure.
3529         * image.c: Add 2 hashtables to the image for COM Interop related methods
3530         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3531         using the mempool allocator
3532         
3533         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3534         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3535         declaration for mono_metadata_type_dup_mp.
3536         
3537         * debug-helpers.c: Added strings for two additional wrapper types
3538         * object.c: Create proxy objects for ComImport classes
3539         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3540         and added __ComObject class to MonoDefaults structure.
3541         
3542         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3543         MonoComInteropProxy and MonoComObject.
3544         
3545         * marshal.c: Added support for COM Interop
3546         (signature_cominterop): Converts managed signature to corresponding
3547         unmanaged COM signature.
3548         (cominterop_get_function_pointer): gets unmanaged function pointer via
3549         COM object vtable
3550         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3551         (cominterop_get_method_interface): returns interface type that method is defined on
3552         (mono_mb_emit_cominterop_call): emits native call to function pointer
3553         gotten from vtable
3554         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3555         that matches signature of unmanaged function.
3556         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3557         (cominterop_get_invoke): forwards call from proxy to __ComObject
3558         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3559         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3560         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3561         
3562         * marshal.h: Added Marshal icall declarations.
3563         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3564         so we can access them in finalizer
3565         
3566 2006-07-14  Dick Porter  <dick@ximian.com>
3567
3568         * object.c (mono_type_initialization_cleanup): Fix a race
3569         condition by temporarily commenting out the critical section
3570         deletion.
3571
3572 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3573
3574         * reflection.c (create_custom_attr): Fix some warnings.
3575         (create_custom_attr_data): Ditto.
3576         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3577         types. Fixes #78855.
3578
3579 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3580
3581         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3582
3583         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3584
3585 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3586
3587         * reflection.c (resolve_object): Add support for DynamicMethod.
3588
3589         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3590         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3591
3592 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3593
3594         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3595         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3596
3597 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3598
3599         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3600         Fixes #77888.
3601
3602 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3603
3604         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3605         slightly: remove a shadow local variable.
3606
3607 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3608
3609         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3610         definition that introduces the virtual function slot.
3611         Also fix Coverity #105.
3612
3613 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3614
3615         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3616         for dynamic assemblies. Fixes #78724.
3617
3618 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3619
3620         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3621         Fixes #78722.
3622
3623 2006-06-21  Martin Baulig  <martin@ximian.com>
3624
3625         * reflection.c
3626         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3627         fixes #76484.
3628
3629 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3630
3631         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3632
3633 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3634
3635         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3636         nor TYPEREFs.
3637         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3638         Inflate result if necessary.
3639         (mono_class_get_full): Remove old version.  Rename from
3640         'mono_class_get' and add 'context' argument.  Pass it to
3641         ..._create_from_typespec.
3642         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3643         (mono_ldtoken): Revert change below.
3644
3645 2006-06-20  Martin Baulig  <martin@ximian.com>
3646
3647         * class.c (mono_ldtoken): Don't pass the generic context to
3648         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3649
3650 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3651
3652         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3653         and later freeing it. Fixes #78638.
3654
3655 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3656
3657         * icall.c (mono_class_get_throw): Revert over-zealous error
3658         throwing, the caller for mono_class_get_throw will cope with
3659         errors when classes are not properly initialized already.
3660
3661         The code still copes with loader exceptions though.
3662
3663         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3664         
3665 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3666
3667         Fixes the `make run1' version of RuntimeAbort (to be commited,
3668         source is in Bugzilla).
3669         
3670         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3671         FALSE on class loading failure instead of returning true.
3672
3673         * class.c (mono_class_create_from_typedef): It is possible for
3674         mono_metadata_interfaces_from_typedef_full to fail if a class is
3675         not found, cope with this.
3676         
3677
3678 2006-06-14  Dick Porter  <dick@ximian.com>
3679
3680         * socket-io.c: 
3681         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3682         4.1.1
3683
3684 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3685
3686         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3687
3688 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3689
3690         * icall.c: Another fix for building mono in Visual Studio.
3691
3692 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3693
3694         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3695         
3696 2006-06-09  Martin Baulig  <martin@ximian.com>
3697
3698         * debug-mono-symfile.c: Put this back and really fix it this
3699         time. Sorry for all the trouble.
3700
3701 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3702
3703         * icall.c (mono_class_get_throw): Fix a warning.
3704         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3705         ReflectionTypeLoadException if needed. Fixes #78606.
3706
3707         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3708         (mono_class_init): Ditto.
3709
3710         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3711         ref_only exceptions.
3712         (mono_loader_clear_error): Make this work even if there is no error.
3713
3714 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3715
3716         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3717         Marshal.GetComSlotForMethodInfo using internal call.
3718
3719 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3720
3721         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3722         a function for signalling it.
3723
3724         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3725         a referenced assembly is not found.
3726
3727         * loader.c (mono_loader_error_prepare_exception): Add support for 
3728         LOADER_ERROR_ASSEMBLY. Fix formatting.
3729
3730 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3731
3732         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3733         for VARIANT marshalling on windows and increment corlib version
3734         since Variant struct was added.
3735
3736 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3737
3738         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3739         stack trace line information:
3740
3741         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3742         (Martin) when looking up B which is between A and C, return A not C.
3743
3744         Bug is #78573.
3745
3746         Thanks to Alexander Olk for tracking this down.
3747
3748 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3749
3750         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3751         
3752         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3753         avoid clobbering its value.
3754         (mono_string_to_lpstr): Fix a warning on windows.
3755
3756 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3757
3758         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3759
3760         * reflection.c loader.c: Removed references to 'dummy' flag.
3761
3762         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3763
3764         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3765         it gets GC tracking.
3766
3767         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3768         GC tracking.
3769         
3770         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3771
3772         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3773
3774         * appdomain.c: Bump corlib version.
3775
3776 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3777
3778         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3779         CEE_STIND_REF when working with object references.
3780
3781 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3782
3783         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3784         Fixes #78539.
3785
3786 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3787
3788         * loader.c (method_from_memberref): Fix argument value for
3789         mono_loader_set_error_method_load (I was passing the MonoClass
3790         instead of the class name char *).
3791
3792 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3793
3794         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3795         CEE_STIND_REF when working with object references.
3796
3797 2006-05-30  Martin Baulig  <martin@ximian.com>
3798
3799         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3800         mono_method_full_name() change and replace the ':' with a '.'
3801         here.
3802
3803 2006-05-30  Martin Baulig  <martin@ximian.com>
3804
3805         * debug-mono-symfile.c
3806         (mono_debug_symfile_lookup_location): Fix the algorithm:
3807         when looking up B which is between A and C, return A not C.
3808
3809 2006-05-29  Martin Baulig  <martin@ximian.com>
3810
3811         * mono-debug.h
3812         (MonoDebugMethodInfo): Make the typedef public.
3813         (MonoDebugSourceLocation): New public struct.
3814
3815         * mono-debug.c
3816         (mono_debug_source_location_from_address): Removed.
3817         (mono_debug_source_location_from_il_offset): Removed.
3818         (mono_debug_il_offset_from_address): Removed.
3819         (mono_debug_address_from_il_offset): Removed.
3820         (mono_debug_lookup_method): New public function.
3821         (mono_debug_lookup_source_location): New public function; replaces
3822         the old mono_debug_source_location_from_*() functions; see the
3823         inline documentation.
3824         (mono_debug_free_source_location): New public function.
3825         (mono_debug_print_stack_frame): New public function; see the
3826         inline documentation.
3827
3828         * debug-mono-symfile.c
3829         (mono_debug_find_source_location): Renamed into
3830         mono_debug_symfile_lookup_location(); only take a
3831         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3832         documentation.
3833         (mono_debug_find_method): Renamed into
3834         mono_debug_symfile_lookup_method().
3835
3836 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3837
3838         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3839         returned by mono_image_open_full ().
3840
3841         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3842         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3843         #78517.
3844
3845         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3846         #78518.
3847
3848 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3849
3850         * class.c (mono_class_from_typeref): handle missing images
3851         earlier, deals with bug #78418.   Refactor code; 
3852
3853         Fix a warning introduced in my previous commit (some stale code
3854         from before I revisited my patch).
3855
3856         * class.c (mono_class_create_from_typedef): On failure, remove the
3857         class from the MonoImage->class_cache as the class is not
3858         initialized;   Fixes the leak pointed out by Paolo.
3859
3860 2006-05-25  Dick Porter  <dick@ximian.com>
3861
3862         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3863         DeleteCriticalSections until I figure out which one may still be
3864         sometimes locked when mono_thread_cleanup is called.
3865
3866 2006-05-24  Dick Porter  <dick@ximian.com>
3867
3868         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3869         of mono_thread_manage and back into its own function, so it can be
3870         called after the finalizer thread has finished.
3871
3872         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3873
3874 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3875
3876         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3877         Fixes #78495.
3878
3879         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3880         with non-blittable elements.
3881         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3882
3883 2006-05-24  Martin Baulig  <martin@ximian.com>
3884
3885         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3886         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3887
3888         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3889         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3890         `mono_debugger_event_handler' to NULL.
3891
3892 2006-05-24  Martin Baulig  <martin@ximian.com>
3893
3894         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3895
3896 2006-05-24  Martin Baulig  <martin@ximian.com>
3897
3898         * mono-debug-debugger.h
3899         (mono_debugger_create_notification_function): Added
3900         `MonoCodeManager *' argument.
3901
3902 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3903
3904         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3905
3906 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3907
3908         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3909         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3910         implementation.
3911
3912 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3913
3914         * icall.c: precise GC support: objects can't be stored in unmanaged
3915         memory anymore, even if they are kept alive by other references: since
3916         they can move the GC needs to be able to always find them.
3917
3918 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3919
3920         * object.c: precise GC support for static fields. Support
3921         for moving GCs: write barriers and pinned allocation for interned
3922         strings.
3923
3924 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3925
3926         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3927         structure.
3928
3929 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3930
3931         * class.c, gc.c: sgen and precise GC updates.
3932
3933 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3934
3935         * marshal.h, marshal.c: added write barrier wrapper and precise type
3936         fixes.
3937
3938 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3939
3940         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3941         support.
3942
3943 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3944
3945         * reflection.c: precise and sgen GC updates.
3946
3947 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3948
3949         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3950
3951 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3952
3953         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3954
3955 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3956
3957         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3958         MONO_TYPE_OBJECT. Fixes #78462.
3959
3960 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3961
3962         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3963         and blittable types.
3964
3965 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3966
3967         * class.c (mono_class_get_exception_for_failure): Implement parts
3968         of a TODO: if the loader error is set (instead of the class
3969         error), we return a Loader exception that can be properly thrown
3970         elsewhere.
3971
3972         This was exposed by some Winforms 2.0 code that I tried to run
3973         (Atsushi pointed me to it).
3974
3975 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3976
3977         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3978         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3979         
3980         * marshal.c (emit_marshal_vtype): Add limited support for 
3981         UnmanagedType.LPStruct. Fixes #78427.
3982
3983         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3984         Applied a patch from kangaroo to fix #77523.
3985
3986 2006-05-17  Martin Baulig  <martin@ximian.com>
3987
3988         * threads.c
3989         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3990         (debugger_thread_created): Removed.
3991         (debugger_thread_exited): Removed.
3992
3993 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3994
3995         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3996
3997         * object-internals.h (MonoReflectionResource): Sync with managed version.
3998
3999 2006-05-12  Wade Berrier <wberrier@novell.com>
4000
4001         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
4002
4003 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
4004
4005         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
4006         functions try to allocate from the image mempool.
4007
4008 2006-05-12  Dick Porter  <dick@ximian.com>
4009
4010         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
4011
4012 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
4013
4014         * object.c: The FieldGetter and FieldSetter methods require the full
4015         name of the class, not only the name. Fixes bug #78277.
4016
4017 2006-05-11  Miguel de Icaza  <miguel@novell.com>
4018
4019         * loader.c (method_from_memberref): Do not pass the NULL klass to
4020         mono_loader_set_error_() methods.  Pass the non-NULL value
4021         (class). 
4022
4023 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
4024
4025         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
4026         (mono_assembly_close): Null out assembly->image->references after freeing it.
4027
4028         * image.c (mono_image_close): Free image->references.
4029         
4030         * reflection.c (mono_image_basic_init): Fix a small memory leak.
4031
4032 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4033
4034         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
4035         before checking if it's NULL (g_assert).
4036
4037 2006-05-10  Martin Baulig  <martin@ximian.com>
4038
4039         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
4040         I thought I already killed that two months ago, but now it somehow reappeared.
4041
4042 2006-05-10  Martin Baulig  <martin@ximian.com>
4043
4044         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
4045
4046 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
4047
4048         * reflection.c: Allocate memory for dynamically created methods in the image
4049         mempools.
4050
4051 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
4052
4053         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
4054         don't use the ad pointer before checking if it's NULL (g_assert).
4055
4056 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
4057
4058         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
4059         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
4060
4061         * marshal.c: Allocate all signatures from mempools.
4062
4063         * marshal.c: Allocate some more signatures from mempools.
4064
4065 2006-05-09  Miguel de Icaza  <miguel@novell.com>
4066
4067         * object.c (mono_load_remote_field): The code used to provide a
4068         temporary variable for returning results if the user did not
4069         provide a result pointer.  But our temporary variable was allocted
4070         on the satck.
4071
4072         Fix calling code to always pass a result area.   Coverity ID 103.
4073
4074 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
4077         value, not the old. Fixes #78312.
4078         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
4079
4080         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
4081         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
4082         per-image cache.
4083
4084         * assembly.c (mono_assembly_close): Free image->references.
4085
4086         * assembly.c (mono_assembly_names_equal): Fix a warning.
4087         (mono_assemblies_cleanup): Cleanup more global data.
4088
4089         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
4090
4091         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
4092         ptr_cache and image->modules.
4093
4094         * image.c (mono_image_init): Allocate array_cache lazily.
4095         
4096 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4097
4098         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
4099         behavior was changed recently and has bad side effects.
4100
4101 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
4102
4103         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
4104         
4105         * assembly.c (mono_assembly_close): Remove a debug printf.
4106
4107         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
4108
4109         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
4110         to also allow for temporary references between mono_image_open ()/close ().
4111
4112         * domain.c (get_runtimes_from_exe): Add a FIXME.        
4113
4114 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
4115
4116         * marshal.c: Fix support for dynamic methods.
4117
4118         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
4119
4120         * marshal.c (mono_marshal_cleanup): New cleanup function.
4121
4122         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
4123         image mempools.
4124
4125         * class.c (mono_class_init): Fix leaking class->nested_classes.
4126
4127         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
4128
4129         * image.c (mono_image_init): Initialize the new cashes.
4130
4131         * image.c (mono_image_close): Destroy the new cashes.
4132
4133         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
4134
4135         * mempool.c (mono_mempool_strdup): New helper function.
4136
4137         * class-internals.h: Add prototype for mono_loader_unlock ().
4138
4139         * domain.c (mono_jit_info_table_find): Fix a warning.
4140         (mono_debugger_check_runtime_version): Ditto.
4141
4142         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
4143         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
4144         functions to these modules.
4145
4146         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
4147         metadata modules.
4148         
4149         * marshal.c (mono_free_bstr): Fix a warning.
4150
4151         * assembly.c (mono_assembly_open_full): Fix another small leak.
4152
4153         * object.c: Fix some unload leaks in the remoting code.
4154
4155         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
4156         function.
4157
4158         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
4159
4160         * reflection.c: Fix some unload leaks in dynamic assemblies.
4161
4162 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
4163
4164         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
4165         * marshal.h: Add BSTR support on Win32
4166         * icall.c: Add BSTR icalls
4167         * metadata.h: Add BSTR enums
4168
4169 2006-04-28  Miguel de Icaza  <miguel@novell.com>
4170
4171         Work to catch the crash from #76795 and turn it into an
4172         exception.   As I stubbed out pieces of the VisualBasic support,
4173         I found a number of places where the code was failing and I added
4174         checks to those places. 
4175         
4176         * metadata.c (do_mono_metadata_parse_generic_class): Make this
4177         function return a status code.  If we fail to parse the signature
4178         from mono_metadata_parse_generic_inst, return FALSE.
4179
4180         * loader.c (mono_get_method_from_token): If we fail to load the
4181         method (mono_class_get) return NULL.   
4182
4183         * (method_from_memberref): Return NULL if we are unable to parse
4184         the method signature
4185
4186         (mono_loader_error_prepare_exception): Since we now use the
4187         loader_error flag internally to stop processing, and obtaining
4188         exceptions that might be thrown will walk this code path the
4189         proper way of going from a MonoLoaderError into a
4190         MonoException was convoluted.   This new routine encapsulates the
4191         process of turning the error into an exception and *clearing* the
4192         error afterwards.
4193         
4194 2006-04-27  Miguel de Icaza  <miguel@novell.com>
4195
4196         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
4197         with missing assemblies), and to cope with:
4198
4199                 * Missing fieldref from a non-existing assembly.
4200                 * Missing methodref from a non-existing assembly.
4201
4202         The first batch of work to address *some* of the issues from 76661.
4203         
4204         * object.c (mono_class_create_runtime_vtable): If we fail to
4205         initialize the class raise the exception here. 
4206
4207         * metadata.c (mono_class_get_overrides_full): If any methods fail
4208         to load return the failure to the caller.
4209
4210         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
4211         flagging assemblies that failed to load.   
4212
4213         Do not crash if we are unable to load the assembly.
4214
4215         (mono_assembly_close): Do nothing with REFERENCE_MISSING
4216         assemblies. 
4217
4218         * loader.c (mono_loader_set_error_type_load): Change the
4219         convention to always pass unallocated strings, so we make our own
4220         copies (I know our own code had duplicated strings before, but
4221         this keeps the normal conventions).
4222         (method_from_memberref): Call mono_loader_set_error_method_load
4223         for all possible failures of loading the class. 
4224         Remove assert, turn into a loader error.
4225
4226         (mono_loader_error_to_exception): Move this routine from mini
4227         (mini_loader_error_to_exception) there was no need to have that in
4228         mini. 
4229
4230         * class.c (mono_class_from_typeref): If we were not able to load
4231         the assembly with mono_assembly_load_reference, call the
4232         mono_loader_set_error_type_load to register the problem.
4233
4234         (mono_class_setup_fields): If we fail to load the type from
4235         mono_metadata_parse_type_full, call mono_class_set_failure and
4236         break from the loop.
4237
4238         If class->exception_type is set, we do not layout the fields as
4239         that might crash the runtime, and instead return (from breaking
4240         from the previous loop).
4241
4242         (mono_class_setup_vtable): This now returns a boolean indicating
4243         whether the table was properly setup.   The decision is driven by
4244         mono_class_get_overrides_full which might run into non-existing
4245         methods. 
4246         
4247         (mono_class_init): Returns TRUE on success or FALSE if there was a
4248         problem in loading the type (incorrect assemblies, missing
4249         assemblies, methods, etc).
4250
4251         When we call mono_class_setup_fields we also check for a potential
4252         error inside this call (either a class exception or a general
4253         loader exception).
4254
4255         (mono_class_create_from_typedef): If the parent fails to load
4256         (calling mono_class_get_full) return NULL.
4257         
4258         ** Important **
4259
4260         calls to mono_metadata_parse_type_full should be checked
4261         everywhere and set the mono_class_set_failure
4262         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
4263
4264         The current patch checks the places where my manually constructed
4265         tests show the errors are showing up, but we should do it
4266         everywhere. 
4267
4268         ** Important2 **
4269
4270         mono_class_init return values should be tested everywhere, like
4271         the previous case this is something that we should audit
4272         everywhere and not only on the cases exposed by the tests I
4273         created. 
4274
4275 2006-04-26  Miguel de Icaza  <miguel@novell.com>
4276
4277         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
4278         boolean parameter and instead pass the information on `options'
4279         parameter (FileOptions).
4280
4281         * icall.c: Register the new signature for MonoIO.Open.
4282
4283         * debug-helpers.c (dis_one): Trying to understand how coverity
4284         works.  Fix Run 5, item 78.
4285
4286 2006-04-26  Dick Porter  <dick@ximian.com>
4287
4288         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
4289         dereference.
4290
4291 2006-04-25  Martin Baulig  <martin@ximian.com>
4292
4293         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
4294
4295         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
4296         debugger_thread_created().
4297         (debugger_gc_push_all_stacks): Don't handle the main thread in any
4298         special way.
4299         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
4300         (mono_debugger_finalize_threads): New function; undo the effects
4301         of mono_debugger_init_threads().
4302         (mono_debugger_create_all_threads): Removed.
4303
4304 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
4305
4306         * image.c (mono_image_close): Tidy up trace messages.
4307
4308         * assembly.c (mono_assembly_close): Ditto.
4309
4310         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
4311         no longer references an already freed assembly. Fixes #78168.
4312
4313 2006-04-21  Dick Porter  <dick@ximian.com>
4314
4315         * threads.c (mono_thread_detach): Fix reference counting when
4316         detaching threads.
4317
4318 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
4319
4320         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
4321         #78155.
4322
4323 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
4324
4325         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
4326         (mono_type_to_stind): Ditto.
4327
4328         * marshal.c: Use the new helper functions to simplify code.
4329
4330         * image.c (mono_image_close): Add some code for help debug assembly unloading
4331         problems.
4332
4333         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
4334         image mempool.
4335
4336         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
4337         assembly was already loaded in another appdomain. Fixes #78083.
4338
4339 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
4340
4341         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
4342         referenced assemblies.
4343         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
4344
4345         * domain.c (mono_domain_free): Add a trace message.
4346
4347         * appdomain.c (add_assemblies_to_domain): Ditto.        
4348
4349         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
4350         field.  
4351
4352 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4353
4354         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
4355
4356 2006-04-12  Martin Baulig  <martin@ximian.com>
4357
4358         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
4359         `USE_INCLUDED_LIBGC'.   
4360
4361 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
4362
4363         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
4364         the patch contains ../ and a small directory name later. Hopefully fixes
4365         #78035.
4366
4367 2006-04-10  Martin Baulig  <martin@ximian.com>
4368
4369         Clean up the debugger's thread-handling code.
4370
4371         The debugger's thread-handling code has been moved from
4372         ../mini/debug-debugger.c to threads.c.  We now iterate directly
4373         over the `threads' hash, keep track of exiting threads and also
4374         use proper locking.
4375
4376         We can now debug XSP and XSP based applications with the debugger.
4377
4378         * object-internals.h (MonoThread): Added `gpointer end_stack'.
4379
4380         * threads.h
4381         (MonoThreadCallbacks): Removed; this was only used by the debugger.
4382         (mono_install_thread_callbacks): Likewise.      
4383
4384         * threads.c (mono_thread_callbacks): Removed.
4385         (debugger_thread_created, debugger_thread_exited): New static functions.
4386         (start_wrapper): Call debugger_thread_created().
4387         (thread_cleanup): Call debugger_thread_exited().
4388         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
4389         (mono_debugger_init_threads): New public function.
4390         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
4391         iterate directly over the `threads' hash and also use proper locking.
4392
4393         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
4394
4395         * mono-debug-debugger.h
4396         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4397
4398 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4399
4400         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4401         argument type=array. Fixes #78057.
4402
4403 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4404
4405         * culture-info-table.h : regenerated. Fixed bug #69652.
4406
4407 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4408
4409         * loader.c metadata.c: Reapply a variant r59116.
4410         
4411         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4412
4413         * class.c (mono_class_setup_interface_offsets): New internal function.
4414
4415         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4416         interfaces too. Fixes #77398.
4417
4418         * reflection.c (encode_cattr_value): Add support for 
4419         parameter type=object, argument type=array.
4420         (load_cattr_value): Ditto. Fixes #77916.
4421
4422         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4423         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4424
4425         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4426         a byval char array and CharSet is Ansi.
4427
4428         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4429
4430 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4431
4432         * metadata.c: Add some locking comments.
4433         
4434         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4435         mempool.
4436         (mono_metadata_free_method_signature): Don't free the signature itself.
4437
4438         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4439
4440         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4441         reference the same MonoImage.
4442         (mono_assembly_load_from_full): Add an assert.
4443
4444 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4445
4446         * image.c (mono_image_close): Don't put the image we are about to free into the
4447         loaded_images_guid_hash.
4448
4449         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4450         to reduce code duplication.
4451
4452         * marshal.c: Register the native functions called by this module as icalls, to
4453         somewhat centralize the creation of MonoMethodSignature's.
4454
4455         * loader.c (mono_method_signature): Add a cache for method signatures.
4456
4457         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4458         the parameter attributes of a method.
4459         (mono_metadata_parse_method_signature_full): Refactored the computation of
4460         parameter attributes into a separate function. Also avoid one allocation in
4461         most cases.
4462
4463         * assembly.c (mono_assembly_close): Ditto.
4464
4465         * image.c (mono_image_close): Log trace messages with INFO level.
4466
4467         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4468
4469         * image.c reflection.c: Correct reference counting of image modules.
4470         
4471         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4472         of this function from the image mempool.
4473         
4474         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4475         to allow more cached types to be used.
4476
4477         * mono-debug.c (mono_debug_add_method): Appled patch from
4478         David S. Miller  <davem@sunset.davemloft.net>: Access 
4479         minfo->lexical_blocks[] entry elements using read32().
4480
4481 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4482
4483         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4484         methods as it is allocated from the mempool.
4485
4486         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4487         image mempool.
4488
4489         * metadata-internals.h: Add comments describing the reference counting scheme
4490         used for MonoImage and MonoAssembly.
4491
4492         * image.c assembly.c reflection.c: Rework reference counting of images and 
4493         assemblies so they are freed when the runtime is shut down. Free some 
4494         additional memory structures when an image is unloaded.
4495         
4496 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4497
4498         * class.c loader.c reflection.c: Allocate more data structures in
4499         the image mempool.
4500
4501 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4502
4503         * icall.c
4504         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4505         build on pre glib 2.4 systems.
4506
4507 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4508
4509         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4510
4511         * icall.c: Fix some warnings.
4512
4513 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4514
4515         * culture-info-table.h : regenerated.
4516
4517 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4518
4519         * threads.c, object-internals.h, verify.c: changed the culture caching
4520         code to use a normal MonoArray for storage so the GC can keep track of
4521         them easily. Fixed bits of the cache logic, too and simplified the
4522         code.
4523
4524 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4525
4526         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4527         thread for non-Boehm GCs.
4528
4529 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4530
4531         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4532         needed to keep track of the data for static fields.
4533
4534 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4535
4536         Fix #75172
4537         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4538         for interface classes.  Use 'num_methods' instead.
4539         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4540         before using '->vtable_size' field.
4541
4542 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4543
4544         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4545         doesn't contain managed pointers, so use a normal hashtable.
4546
4547 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4548
4549         * reflection.c, class-internals.h, domain.c: fixed handling of types
4550         used as values for objects in custom attributes (bug #77915):
4551
4552 2006-03-24  Martin Baulig  <martin@ximian.com>
4553
4554         * class.c (mono_class_setup_fields): Added support for generic
4555         instances; fixes #77580.
4556
4557 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4558
4559         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4560
4561 2006-03-24  Dick Porter  <dick@ximian.com>
4562
4563         * file-io.c (get_file_attributes): More stat macro breakage.
4564         Fixes bug 77759.
4565
4566 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4567
4568         * profiler.c: added the file=filename option in the default profiler
4569         to output the profile data to filename.
4570
4571 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4572
4573         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4574         bug #77877.
4575
4576 2006-03-22  Martin Baulig  <martin@ximian.com>
4577
4578         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4579         allocated `MonoClassField *' in `fb->handle'.
4580
4581 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4582
4583         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4584         allocate interface ID to save memory and allow better ID reuse on
4585         appdomain unload. setup_generic_vtable () removal from Martin.
4586
4587 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4588
4589         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4590         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4591         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4592         write barriers for reference stores with managed objects accessed with
4593         C structures in the runtime and in embedding programs.
4594
4595 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4596
4597         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4598         'interface_id' and 'max_interface_id' fields of MonoClasses
4599         representing open generic types.
4600
4601 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4602
4603         * object.h, object.c, icall.c: added functions to deal with
4604         storing valuetypes that contain references in managed objects.
4605         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4606         fixes and comments around uses of mono_array_addr ().
4607
4608 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4609
4610         * object.h, icall.c, monitor.c: object.GetHashCode ()
4611         implementation that supports the moving garbage collector.
4612
4613 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4614
4615         * icall.c, threads-types.h, threads.c: implemented finalizer for
4616         LocalDataStoreSlot.
4617
4618 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4619
4620         * metadata.c (mono_type_size): Add a fixme.
4621         (mono_type_stack_size): Ditto.
4622
4623         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4624         'type_forwarders' field.
4625
4626         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4627         attribute from net 2.0.
4628
4629         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4630         from class.c.
4631
4632         * class.c (mono_class_setup_fields): Fix a warning.
4633         
4634         * class.c (mono_class_from_name): Add support for assemblyref entries
4635         in the EXPORTEDTYPE table.
4636
4637         * reflection.c: Add support for handling type forwarders under net 2.0.
4638
4639         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4640         
4641 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4642
4643         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4644         overwriting entries in ModuleBuild->types, also clean up the code
4645         a little. Fixes #77774.
4646
4647 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4648
4649         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4650         load friend assembly info when present.
4651
4652 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4653
4654         Fix crasher on gtest-158.cs.
4655         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4656         the return value if the MonoClass we want is yet in an
4657         inconsistent state.
4658         * class.c (mono_class_create_from_typedef): Add an comment
4659         explaining an order dependency between mono_class_setup_parent and
4660         mono_class_setup_mono_type.
4661
4662 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4663
4664         * class.c: documentation updates and events bug fix.
4665
4666 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4667
4668         * class.c: some cleanup, locking fixes.
4669
4670 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4671
4672         * class.c: fix the generics code to setup nested
4673         type info to the instantiated type (bug #77770).
4674
4675 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4676
4677         * marshal.c: fixed a few type correctness issues.
4678
4679 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4680
4681         * loader.c: the Set/Get/Addrtess array methods should be public.
4682
4683 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4684
4685         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4686         
4687         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4688         info->wrapper.
4689
4690 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4693
4694         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4695
4696         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4697         (mono_mempool_alloc0): Ditto.
4698
4699 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4700
4701         * socket-io.c:
4702         (create_object_from_sockaddr): it was allocating 4 extra bytes
4703         for the AF_UNIX data. Fixes bug #77747.
4704
4705 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4706
4707         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4708
4709 2006-03-09  Dick Porter  <dick@ximian.com>
4710
4711         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4712         Fixes bug 76966 again.
4713
4714 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4715
4716         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4717         names from r57532
4718         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4719
4720 2006-03-07  Martin Baulig  <martin@ximian.com>
4721
4722         * object.c
4723         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4724
4725 2006-03-07  Martin Baulig  <martin@ximian.com>
4726
4727         * class.c
4728         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4729         regression introduced in r56970; see gtest-252.cs.
4730
4731         * loader.c (mono_get_method_constrained): Correctly handle generic
4732         methods; see gtest-253.cs.
4733
4734 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4735
4736         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4737
4738 2006-03-04  Martin Baulig  <martin@ximian.com>
4739
4740         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4741         compute the parent type at runtime, just like we're already doing
4742         it for interfaces.
4743
4744         * reflection.c
4745         (mono_reflection_bind_generic_parameters): Don't compute the
4746         parent type anymore.
4747
4748         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4749
4750 2006-03-04  Martin Baulig  <martin@ximian.com>
4751
4752         * mono-debug-debugger.h
4753         (mono_debugger_create_notification_function): Allocate memory at
4754         runtime and return a pointer to it.
4755
4756 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4757
4758         * assembly.c: Fix windows build.
4759         
4760         * assembly.c: Fix build.
4761
4762         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4763
4764         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4765         
4766 2006-03-03  Dick Porter  <dick@ximian.com>
4767
4768         * process.c
4769         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4770         Check parameters before dereferencing them.  Fixes Aaron's part of
4771         bug 77393.
4772
4773 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4774
4775         Fix performance regression.
4776         * loader.c (find_method_in_class): Add 'from_class' argument.
4777         Rename 'klass' argument to 'in_class'.  The signature is compared
4778         against the method in 'in_class', and the corresponding method is
4779         returned from 'from_class'.
4780         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4781         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4782         type definition and generic instantiation in parallel.
4783         (mono_get_method_constrained): Update to changes.
4784
4785 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4786
4787         * threads.c: make sure the domain is correct, too when doing
4788         mono_thread_attach ().
4789
4790 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4791
4792         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4793         windows. Fixes #77683.
4794
4795 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4796
4797         * object.h, *: introduced specific way to set elements of an array
4798         of references to be used as write barrier. Still need to audit the
4799         uses of mono_array_addr.
4800
4801 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4802
4803         * object-internals.h: New field to cache the assmebly name, patch
4804         from Tambet Ingo (tambet@ximian.com)
4805
4806 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4807
4808         * decimal.h, class-internals.h, metadata-internals.h,
4809         file-io.h: mark a few function declarations as internal, to
4810         reduce the number of PLT entries.
4811
4812 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4813
4814         * file-io.c: fix typo in warning message.
4815
4816 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4817
4818         * loader.c: on unix, lookup the "*A" version of a function
4819         if charset is auto as a second option before failing.
4820
4821 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4822
4823         * class.h (mono_class_inflate_generic_method): Revert to two
4824         argument version.
4825         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4826         (mono_class_inflate_generic_method_full): Add.
4827         * class.c (mono_class_inflate_generic_method_full): Rename from
4828         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4829         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4830         * loader.c, reflection.c: Update to changes.
4831
4832 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4833
4834         * icall.c: const fixes and small improvements.
4835
4836 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4837
4838         * threadpool.c: for asynchronous connect(), enable the same workaround
4839         for BSD 6 as for the Mac. Fixes bug #77637.
4840
4841 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4842
4843         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4844         formatted classes. Fixes #77524.
4845
4846 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4847
4848         * class.c (inflate_generic_type): Add a couple more
4849         micro-optimizations.
4850         (inflate_generic_context): Don't use the 'gmethod' from
4851         'inflate_with'.
4852         (mono_class_inflate_generic_method): If the method has generic
4853         parameters, but the passed-in context doesn't have a 'gmethod',
4854         create one.  Use the possibly simplified generic instantiation
4855         from the declaring class instead of the one passed in.
4856
4857 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4858
4859         Make generic method signature and method header handling lazy.
4860         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4861         (inflate_generic_header): Likewise.
4862         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4863         parameter to avoid inflating types.
4864         (mono_get_inflated_method): Empty out.
4865         * class.h (mono_class_inflate_generic_method): Update to changes.
4866         * loader.c (mono_get_method_from_token): Don't parse signature for
4867         generic methods, nor methods of generic classes.
4868         (mono_method_signature): Rename from 'mono_method_signature'.
4869         Inflate signature on demand.
4870         (mono_method_get_header): Inflate method header on demand.
4871         * reflection.c: Update to changes.
4872
4873 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4874
4875         * metadata.c (mono_metadata_inflate_generic_inst): If the
4876         instantiation is closed, don't bother expanding it in the new
4877         context.
4878         * class.c (inflate_generic_class): If the generic instantiation
4879         doesn't change after inflation, return the argument itself.
4880         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4881         Add bounds checks.
4882         (inflate_generic_context): If neither the generic class nor the
4883         generic method instantiations change, return the original context.
4884         * reflection.c (mono_method_get_object): Do
4885         'mono_get_inflated_method' before accessing the ->klass field.
4886         (inflate_mono_method): Don't create a MonoGenericMethod unless
4887         necessary.
4888         (inflate_method): Don't pass a constructed type as the declaring
4889         type of a methodbuilder.
4890
4891 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4892
4893         * object.c: fix memory overwrite.
4894
4895 2006-02-22  Dick Porter  <dick@ximian.com>
4896
4897         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4898         it doesn't work any more.
4899         (mono_threads_request_thread_dump): Fix unused variable warnings.
4900
4901 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4902
4903         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4904         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4905         the public header file.
4906
4907 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4908
4909         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4910
4911 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4912
4913         * class-internals.h, object.c: reduce the size of MonoVTable
4914         and store the interface_offsets array at negative offsets.
4915
4916 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4917
4918         * metadata.c: tweak table descriptors data structures to reduce
4919         size and runtime relocations.
4920
4921 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4922
4923         * marshal.c: fix some types and opcodes to be type-safe
4924         in marshaling wrappers.
4925
4926 2006-02-21  Ankit Jain  <jankit@novell.com>
4927
4928         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4929
4930 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4931
4932         * metadata.c (get_constraints): Relax debugging checks for monodis.
4933
4934 2006-02-21  Ankit Jain  <jankit@novell.com>
4935
4936         * metadata.c (mono_metadata_load_generic_params): Move the code
4937         checking for ambiguous generic params from here to mono/dis/get.c
4938         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4939
4940 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4941
4942         Fix assertion triggered when compiling nemerle.
4943         * class.c (mono_get_shared_generic_inst): Rename from
4944         get_shared_inst and make non-static.
4945         * loader.c (mono_get_shared_generic_method): New.  Used to create
4946         the MonoGenericContext-equivalent of a MonoGenericContainer.
4947         (mono_get_method_from_token): Initialize the 'context' field of
4948         the created MonoGenericContainer.
4949         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4950         * metadata.c (get_constraints): Add sanity check.
4951         * class-internals.h: Add new internal methods.
4952
4953         * reflection.c (verify_safe_for_managed_space): New sanity check.
4954         Currently checks that owner-less generic parameters aren't allowed
4955         in managed space.
4956         (mono_type_get_object): Use it.
4957         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4958         that are now in mono_type_get_object.
4959         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4960
4961 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4962
4963         * metadata.c (mono_type_create_from_typespec): Rename from
4964         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4965         argument and caching of types in the generic container.
4966         (unwrap_arrays, find_generic_param): Remove.
4967         * metadata-internals.h: Update.
4968         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4969
4970 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4971
4972         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4973
4974         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4975         return values. Fixes #77581.
4976
4977         * class.c (mono_fnptr_class_get): Switch name and name_space.
4978
4979         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4980         classes and add support for [In, Out] attributes.
4981         (mono_marshal_free_asany): Ditto. Fixes #77524.
4982
4983 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4984
4985         * class.c (mono_class_from_generic_parameter): Make more robust to
4986         incomplete MonoGenericContainers from monodis.
4987
4988 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4989
4990         * class-internals.h: added some more exception types.
4991         * class.c, metadata.c: added a few checks to handle missing
4992         types.
4993
4994 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4995
4996         Use owner-less generic-params some more.
4997         * class.c (my_mono_class_from_generic_parameter): Remove.
4998         (mono_class_from_generic_parameter): Handle null image,
4999         param->name and param->owner.
5000         (mono_class_from_mono_type): Update.
5001         (mono_class_create_from_typespec): Remove 'container' parameter.
5002         If that parameter is non-null, the result is always inflated by
5003         'mono_class_get_full' anyway.
5004         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
5005         parameter.
5006         (mono_class_get_full): Update.
5007
5008         * class.c (inflate_generic_type) [GENERICINST]: If the generic
5009         instance is not open, don't bother inflating.
5010         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
5011         parse metadata for inflated classes.
5012         (_mono_class_get): Change GenericContext* parameter to
5013         GenericContainer*.
5014         (mono_class_create_from_typespec): Likewise.  Simplify, and
5015         implement trivially.  All the cases are handled in
5016         mono_class_from_mono_type.  Don't inflate returned class.
5017         (mono_class_get_full): Delegate GENERICINST optimization to
5018         inflate_generic_type.
5019         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
5020
5021 2006-02-16  Dick Porter  <dick@ximian.com>
5022
5023         * socket-io.c (create_object_from_sockaddr): Fix typo.
5024         (create_sockaddr_from_object): Check array lengths before
5025         potentially accessing items off the end.
5026         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
5027         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
5028         (ves_icall_System_Net_Sockets_Socket_Send_internal)
5029         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
5030         length checks to avoid wraparound overflows.
5031         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
5032         contents of the array of sockets
5033         (hostent_to_IPHostEntry2)
5034         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
5035         Check return value of inet_ntop ().
5036         (addrinfo_to_IPHostEntry): Fix typo
5037
5038 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5039
5040         Type metadata parsing doesn't use generic-instantiation information.
5041         * metadata.c (mono_metadata_parse_array_full): Change
5042         MonoGenericContext* parameter to MonoGenericContainer*.
5043         (mono_metadata_parse_type_full): Likewise.
5044         (mono_type_create_from_typespec_full): Likewise.
5045         (mono_metadata_parse_mh_full): Likewise.
5046         (mono_metadata_parse_generic_inst): Likewise.
5047         (do_mono_metadata_parse_generic_class): Likewise.
5048         (do_mono_metadata_parse_type): Likewise.
5049         * metadata-internals.h: Update to changes.
5050         * class.c (mono_class_find_enum_basetype): Likewise.
5051         (mono_class_setup_fields): Likewise.
5052         (mono_class_create_from_typespec): Likewise.
5053         * loader.c (method_from_methodspec): Likewise.
5054         (mono_get_method_from_token): Likewise.
5055         (mono_method_get_header): Likewise.
5056
5057 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5058
5059         * marshal.c: handle additional GENERICINST case (patch from
5060         Thong Nguyen <tum@veridicus.com>).
5061         Fix a few cases where LDIND_I/STIND_I was used for references.
5062
5063 2006-02-16  Raja R Harinath  <rharinath@novell.com>
5064
5065         * reflection.c (mono_reflection_get_token): Remove unused variable.
5066
5067 2006-02-16  Martin Baulig  <martin@ximian.com>
5068
5069         * reflection.c (mono_reflection_get_token): Add support for fields
5070         in instantiated generic types.
5071
5072         * icall.c
5073         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
5074
5075 2006-02-15  Martin Baulig  <martin@ximian.com>
5076
5077         * icall.c
5078         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
5079         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
5080         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
5081         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
5082
5083 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5084
5085         * class.c, metadata.c, metadata.h, object.c, icall.c,
5086         marshal.c: changed mono_type_get_underlying_type () to do
5087         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
5088         Fixed handling of instantiated generic valuetypes (bug #75479).
5089
5090 2006-02-15  Raja R Harinath  <rharinath@novell.com>
5091
5092         * metadata.c (mono_metadata_decode_signed_value): Simplify.
5093         Delegate to mono_metadata_decode_value, and work on the returned value.
5094
5095         * icall.c (ves_icall_MonoType_GetGenericArguments):
5096         Add consistency check here too.
5097         
5098 2006-02-15  Ankit Jain  <jankit@novell.com>
5099
5100         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
5101         char/short etc.
5102
5103 2006-02-15  Ankit Jain  <jankit@novell.com>
5104
5105         * metadata.c (mono_metadata_decode_signed_value): New function to decode
5106         signed values, used only for representing lower bounds of arrays.
5107         (mono_metadata_parse_array_full): Use new
5108         mono_metadata_decode_signed_value to decode lower bounds.
5109
5110 2006-02-14  Martin Baulig  <martin@ximian.com>
5111
5112         * reflection.c
5113         (mono_reflection_get_token): Support "MonoGenericMethod" and
5114         "MonoGenericCMethod" and allow generic instances / methods.
5115
5116 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
5117
5118         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
5119         to obtain the terminal size using an ioctl.
5120
5121         * object.c (mono_nullable_init): Revert this as nullable reference
5122         types are not valid.
5123         (mono_nullable_box): Ditto.
5124
5125 2006-02-09  Dick Porter  <dick@ximian.com>
5126
5127         * threads.c (mono_thread_detach): Drop a reference to the thread
5128         we're detaching.
5129
5130 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
5131
5132         * object.c (mono_nullable_init): Handle nullable reference types.
5133         (mono_nullable_box): Ditto. Fixes #77446.
5134
5135 2006-02-07  Martin Baulig  <martin@ximian.com>
5136
5137         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
5138
5139 2006-02-07  Ankit Jain  <jankit@novell.com>
5140
5141         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
5142         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
5143         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
5144         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
5145         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
5146         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
5147
5148 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
5149
5150         * class.c (mono_class_create_generic): Set type_token as well.
5151
5152         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
5153         compatible with MS.
5154
5155 2006-02-02  Martin Baulig  <martin@ximian.com>
5156
5157         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
5158         has never been used so far.
5159
5160 2006-02-02  Martin Baulig  <martin@ximian.com>
5161
5162         * mono-debug-debugger.h: Changed comment at the top of this file;
5163         the header is not installed, but it's safe to #include it from
5164         within the JIT.
5165
5166         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
5167         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
5168
5169 2006-02-02  Martin Baulig  <martin@ximian.com>
5170
5171         * mono-debug.h
5172         (MonoSymbolTable): Removed the `metadata_info' field.
5173
5174         * mono-debug.c
5175         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
5176
5177         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5178         (mono_debugger_add_builtin_types): Removed.
5179         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
5180         (mono_debugger_create_notification_function): We now operate on a
5181         pre-allocated area; take a `gpointer' and return `void'.
5182
5183         * mono-debug-debugger.c
5184         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
5185         (mono_debugger_add_builtin_types): Removed.
5186
5187 2006-02-02  Martin Baulig  <martin@ximian.com>
5188
5189         * threads.c (mono_debugger_create_all_threads): New public method.
5190
5191 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5192
5193         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
5194         breaks on several platforms.
5195
5196 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
5197
5198         * assembly.c: the VS.NET build doesn't supply default values for
5199         MONO_ASSEMBLIES and MONO_CFG_DIR.
5200
5201 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
5202
5203         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
5204         helper function.
5205
5206         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
5207
5208         * loader.c (method_from_memberref): Fix a warning.
5209
5210         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
5211
5212         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
5213         with explicit layout. Fixes #77433.
5214
5215 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
5216
5217         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
5218         max_interface_id is initialized before using it. Fixes #77398.
5219         (ves_icall_Type_GetInterfaces): Ditto.
5220
5221 2006-01-30  Raja R Harinath  <rharinath@novell.com>
5222
5223         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5224         allocate memory for parameter attributes when parsing memberref
5225         signatures.
5226         * loader.c (mono_loader_set_error_method_load): Don't warn.
5227         (method_from_memberref): Ensure MissingMethodException gets thrown
5228         if method is not found.  Make warning more informative.
5229
5230 2006-01-29  Raja R Harinath  <harinath@gmail.com>
5231
5232         Fix #77397
5233         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
5234         return true if is byref.
5235         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
5236         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
5237         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
5238
5239 2006-01-27  Raja R Harinath  <rharinath@novell.com>
5240
5241         Fix tests/find-method.2.il
5242         * loader.c (find_method, find_method_in_class): Remove is_inflated
5243         argument.  Revert 2006-01-18 change.
5244         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
5245         is generic, search for method in its generic definition.
5246         * class.c (mono_class_setup_vtable_general): Print generic
5247         arguments of generic types in debugging printf.
5248
5249 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
5250
5251         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
5252
5253         * threads.c (mono_threads_request_thread_dump): New helper function.
5254
5255 2006-01-25  Raja R Harinath  <rharinath@novell.com>
5256
5257         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
5258
5259 2006-01-25  Ankit Jain  <jankit@novell.com>
5260
5261         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
5262         move definition to ..
5263         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
5264         
5265 2006-01-25  Ankit Jain  <jankit@novell.com>
5266             Raja R Harinath  <rharinath@novell.com>
5267
5268         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
5269         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
5270         as necessary.
5271
5272 2006-01-25  Martin Baulig  <martin@ximian.com>
5273
5274         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
5275         `MonoDebuggerThread' into debug-debugger.c.
5276
5277 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
5278
5279         * profiler.c: fix printing of data.
5280
5281 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
5282
5283         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
5284           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
5285
5286 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5287
5288         * object.c: fix deadlock related to string interning.
5289
5290 2006-01-23  Martin Baulig  <martin@ximian.com>
5291
5292         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
5293
5294         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
5295
5296 2006-01-23  Martin Baulig  <martin@ximian.com>
5297
5298         * mono-debug.h: Moved the prototypes of some functions which are
5299         used by the JIT here from mono-debug-debugger.h.
5300
5301 2006-01-21  Martin Baulig  <martin@ximian.com>
5302
5303         * Makefile.am: Don't install mono-debug-debugger.h.
5304
5305 2006-01-21  Martin Baulig  <martin@ximian.com>
5306
5307         * mono-debug-debugger.h: Enforce the private status of this header
5308         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
5309         Moved some stuff from mono-debugger-jit-wrapper.h here.
5310
5311 2006-01-20  Raja R Harinath  <rharinath@novell.com>
5312
5313         * class.c (mono_class_from_typeref): Add a sanity test to help
5314         catch lack of assembly load/search hooks.
5315
5316 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
5317
5318         * marshal.c (emit_struct_conv): Relax the fields with same offset
5319         check even more. Fixes #77230.
5320
5321 2006-01-18  Martin Baulig  <martin@ximian.com>
5322
5323         * loader.c (find_method_in_class): Added `gboolean is_inflated'
5324         argument; if false, we compare the uninstantiated signatures.
5325         (method_from_memberref): Compare the uninstantiated signatures;
5326         fixes #76417.
5327
5328 2006-01-18  Robert Jordan  <robertj@gmx.net>
5329
5330         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
5331         Clear the weak link. Fixes bug #77170.
5332
5333         * gc.c (mono_gchandle_free):
5334         Reflect *-gc.c changes (tiny optimization).
5335
5336 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
5337
5338         * metadata.c (mono_metadata_signature_dup): Applied patch from
5339         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
5340         Fixes #77288.
5341
5342 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
5343
5344         * marshal.c (emit_struct_conv): Allow fields with the same offset when
5345         marshalling from native to managed code. Fixes #77230.
5346
5347 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5348
5349         * threadpool.c: fix problem (Mac only) when more than one asynchronous
5350         connect. Fixes bug #77020.
5351
5352 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5353
5354         * class.c: fixed id assignement for nested interfaces (bug #77275).
5355         Added also better info for --print-vtable debugging.
5356
5357 2006-01-12  Martin Baulig  <martin@ximian.com>
5358
5359         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
5360         interfaces on-the-fly; fixes #76625.
5361
5362         * class-internals.h
5363         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
5364         don't need that anymore.
5365
5366 2006-01-12  Miguel de Icaza  <miguel@novell.com>
5367
5368         * socket-io.c
5369         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
5370         To avoid initing the nested_classes when not needed I turned the
5371         PeerCredData as a toplevel internal class, as it has to be shared
5372         anyways. 
5373
5374         Fixes the CASA issue.
5375
5376 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
5377
5378         * domain.c: Accessors for MonoJitInfo
5379
5380         * profiler-private.h: Add jitinfo to the end jit hook
5381
5382         * profiler.[ch]: Define new hooks, called after jitting which give
5383         the MonoJitInfo that was compiled
5384
5385 2006-01-10  Martin Baulig  <martin@ximian.com>
5386
5387         * class.c (mono_class_setup_events): Add support for generic
5388         classes; fixes #76440.
5389
5390 2006-01-06  Raja R Harinath  <rharinath@novell.com>
5391
5392         Fix #77160.
5393         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
5394         on passed-in method.
5395
5396 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5397
5398         * object.c (mono_runtime_invoke_array): Add Nullable support.
5399
5400         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5401
5402 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5403
5404         * file-io.c: Don't consider sockets as directory and avoid an endless
5405         loop. Fix bug #76966.
5406
5407 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5408
5409         * object.c (mono_nullable_init): New helper function.
5410         (mono_nullable_box): Ditto.
5411
5412         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5413
5414         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5415
5416         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5417         
5418 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5419
5420         * class.c (mono_class_is_assignable_from): Make T assignable to 
5421         Nullable<T>.
5422
5423 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5424
5425         * appdomain.c: Bump corlib version to 46.
5426         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5427         serialization purpose) and changed ves_icall_System_Reflection_
5428         Assembly_get_code_base signature to accept a boolean (to escape, or 
5429         not, the assembly code base).
5430
5431 2005-12-23  Dick Porter  <dick@ximian.com>
5432
5433         * icall.c: 
5434         * threads-types.h: 
5435         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5436         CreateEvent icall now returns "created" boolean parameter.
5437
5438 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5439
5440         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5441         #76967.
5442
5443         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5444         when attr_klass is an interface. Fixes #77045.
5445
5446 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5447
5448         * marshal.c (emit_struct_conv): Fix previous patch.
5449         
5450         * marshal.c (emit_struct_conv): Add a check for fields with the same
5451         offset.
5452
5453 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5454
5455         Fix regression in Mono.C5.
5456         * class.c (mono_class_create_generic): If 'klass' is an interface
5457         set up the interface offsets.
5458         (mono_class_is_assignable_from): Don't throw away generic arguments.
5459
5460 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5461
5462         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5463         type parameters.
5464
5465 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5466
5467         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5468         dead store.
5469         (do_mono_metadata_parse_generic_class): Don't pass the current
5470         generic context when parsing the type being instantiated: it
5471         cannot use it, anyway.
5472
5473         * loader.c (method_from_memberref): Don't inflate a signature if
5474         it doesn't contain any type parameters.
5475
5476 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5477
5478         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5479
5480 2005-12-14  Martin Baulig  <martin@ximian.com>
5481
5482         * class.c
5483         (mono_type_get_name_recurse): Don't return null for type
5484         parameters and open generic classes.
5485         (mono_class_setup_methods): Don't exclude generic instances.
5486         (mono_get_unique_iid): Use different IDs for different
5487         instantiations of the same generic type.
5488         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5489         open generic instances; create a normal vtable for closed generic
5490         instances.
5491         (mono_class_setup_vtable_general): We're now also called for
5492         closed generic instances.
5493
5494         * reflection.c
5495         (mono_reflection_bind_generic_parameters): Correctly use
5496         mono_metadata_lookup_generic_inst() everywhere.
5497
5498 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5499
5500         * object.c (mono_class_create_runtime_vtable): Call 
5501         mono_class_setup_vtable ().
5502
5503         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5504         function.
5505         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5506         #76959.
5507
5508         * loader.c (mono_loader_set_error_type_load): Print the type load
5509         warnings to the console so they are more visible to the user.
5510         (mono_loader_set_error_method_load): Ditto.
5511
5512         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5513         is still broken.
5514         
5515         * reflection.c (ensure_runtime_vtable): Fix build.
5516
5517         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5518         doesn't work in all cases.
5519
5520 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5521
5522         * object.c (mono_array_new_full): Treat a single dimensional array
5523         with 0 lower bounds as an szarray. Fixes #76973.
5524
5525         * reflection.c (custom_attr_visible): Really fix this.
5526
5527 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5528
5529         * reflection.c (custom_attr_visible): Allow nested public attributes
5530         as well.
5531
5532         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5533         interface check.
5534
5535 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5536
5537         * class.c (set_generic_param_owner): Delete.
5538         (mono_class_create_from_typedef): Don't set ->owner field of
5539         generic parameters to "param containers" of enclosing classes.
5540         * reflection.c (mono_reflection_initialize_generic_parameter):
5541         Likewise.
5542
5543 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5544
5545         * reflection.c (custom_attr_visible): Fix build.
5546
5547 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5548
5549         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5550         private attributes.
5551         
5552         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5553         handling of null parameter defaults.
5554
5555 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5556
5557         * class.c (mono_class_from_generic_parameter): Don't set
5558         klass->generic_container.
5559         (my_mono_class_from_generic_parameter): Likewise.
5560
5561 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5562
5563         * reflection.c (load_public_key): Fix a warning.
5564         (method_encode_code): Fix unaligned accesses.
5565
5566 2005-12-07  Martin Baulig  <martin@ximian.com>
5567
5568         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5569
5570         * reflection.c
5571         (write_generic_param_entry): Encode our custom attrs.
5572
5573         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5574
5575 2005-12-07  Martin Baulig  <martin@ximian.com>
5576
5577         * reflection.c (encode_new_constraint): Removed; we don't use the
5578         `NewConstraintAttribute' anymore.
5579
5580 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5581
5582         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5583         not fire a TypeResolve event when Assembly.GetType () is called.
5584
5585 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5586
5587         Beginning of support for nullable types in the runtime. Parts of
5588         this patch are from Martin.
5589
5590         * appdomain.c (MONO_CORLIB_VERSION): Bump
5591
5592         * domain.c (mono_init_internal): get the nullable type
5593
5594         * class.c (mono_class_is_nullable): New method
5595         (mono_class_get_nullable_param): New mehod
5596         (mono_class_create_generic): In types T? set cast_class to T
5597
5598         * class-internals.h (MonoDefaults): new nullable default class
5599         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5600         new methods.
5601
5602 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5603
5604         * metadata.c (select_container): New.  Refactor code to select the
5605         appropriate GenericContainer given the type of generic parameter
5606         we are looking for.
5607         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5608         not a MonoGenericContext.  Use select_container.  Update parameters.
5609         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5610         and MONO_TYPE_MVAR.
5611         (unwrap_arrays): Remove duplicate tests.
5612         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5613         generic instantiated class to find any arguments that are generic
5614         parameters.
5615         (mono_type_create_from_typespec_full): Use find_generic_param to
5616         avoid evicting some generic instantiations from the typespec
5617         cache.
5618
5619 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5620
5621         * reflection.c: fixed writing of doubles on ARM FPA.
5622
5623 2005-12-02  Robert Jordan  <robertj@gmx.net>
5624
5625         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5626
5627 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5628
5629         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5630         least on SUSE 10 they are not the same (on debian, they are just the
5631         same thing).
5632
5633 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5634
5635         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5636         DeclaringType for VARs and MVARs.
5637         * class.c (set_generic_param_owner): Fix initialization of owner
5638         fields.
5639
5640 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5641
5642         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5643
5644 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5645
5646         * threadpool.c: workaround for a bug that shows up on the Mac:
5647         select()+connect() on a blocking socket is not like it should
5648         be, so we proceed to connect() in that case, wasting the I/O
5649         threadpool thread until connect succeedes. Fixes bug #75436.
5650
5651 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5652
5653         * threadpool.c: fix typo when setting file descriptor states.
5654
5655 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5656
5657         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5658         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5659         create a temporary signature container.
5660         (mono_metadata_parse_generic_param): Update to changes.
5661         (mono_type_create_from_typespec_full): Update to changes.
5662         * loader.c (method_from_memberref): Don't use a
5663         MonoGenericContainer while parsing a memberref signature.
5664         (method_from_methodspec): Remove dead-store of the 'container'
5665         variable.  It's overwritten before use.
5666
5667         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5668         checks tighter.
5669         (mono_metadata_parse_generic_param): Likewise.
5670         * loader.c (find_method_in_class): Does not need a
5671         MonoGenericContainer.  Use 'mono_method_signature' rather than
5672         'mono_method_signature_full'.
5673         (find_method, mono_get_method_constrained, method_from_memberref):
5674         Update to changes.
5675
5676         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5677         owner-less generic-parameters are never evicted from the typespec
5678         cache.
5679
5680         * loader.c (method_from_memberref): Don't use the current context
5681         when parsing signatures.
5682         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5683
5684         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5685         side-effects in g_assert.
5686         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5687         that we don't potentially lose information.
5688
5689 2005-11-26  Dick Porter  <dick@ximian.com>
5690
5691         * icall.c:
5692         * threads.c: icalls to implement basic (ie, not named)
5693         System.Threading.Semaphore.
5694
5695 2005-11-24  Dick Porter  <dick@ximian.com>
5696
5697         * process.c
5698         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5699         Use GetProcessId() if it's available.
5700
5701 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5702
5703         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5704
5705 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5706             Ankit Jain  <jankit@novell.com>
5707
5708         * loader.c (mono_get_method_from_token): Initialize 'method' field
5709         of all generic parameters before parsing the signature.  Remove
5710         code that "fixed"-up MVAR references.
5711
5712 2005-11-23  Ankit Jain  <jankit@novell.com>
5713
5714         * metadata.c (mono_metadata_has_generic_params):
5715         (mono_metadata_load_generic_param_constraints):
5716         (mono_metadata_load_generic_params): Move duplicate code ...
5717         (mono_metadata_get_generic_param_row): ... here. Returns the
5718         first row-id in GenericParam table for a given owner (token).
5719         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5720         prototype.
5721
5722 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5723             Ankit Jain  <jankit@novell.com>
5724
5725         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5726         comparing VARs too.
5727         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5728         type->data.generic_param only if the type is an MVAR.
5729         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5730         leak owner-less VARs and MVARs into managed space.
5731
5732 2005-11-21  Martin Baulig  <martin@ximian.com>
5733
5734         * class-internals.h
5735         (MonoMethod): Moved the `generic_container' here from
5736         `MonoMethodNormal' since we now also need it for
5737         `MonoMethodPInvoke';
5738         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5739         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5740         an union containing both `MonoMethodNormal' and
5741         `MonoMethodPInvoke'.
5742
5743         * loader.c
5744         (mono_get_method_from_token): Allow implementing generic methods
5745         as interncalls.
5746
5747         * threads.c
5748         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5749         icall.
5750
5751 2005-11-17  Dick Porter  <dick@ximian.com>
5752
5753         * icall.c: 
5754         * process.h: 
5755         * process.c: Split the Process Start_internal icall into
5756         ShellExecuteEx_internal and CreateProcess_internal, which are
5757         called depending on whether UseShellExecute is true.  Fixes bug
5758         76670.
5759
5760         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5761
5762 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5763
5764         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5765         'msize' parameters, use the information in 'mspec' instead.
5766         (emit_object_to_ptr_conv): Ditto.
5767
5768         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5769         fields out of order. Fixes #76733.
5770
5771 2005-11-17  Ankit Jain  <jankit@novell.com>
5772
5773         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5774
5775 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5776
5777         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5778           bug #76575.
5779
5780 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5781
5782         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5783         for types with non-auto layout. Fixes #76717.
5784
5785 2005-11-16  Ankit Jain  <jankit@novell.com>
5786
5787         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5788         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5789         if generic_context is null.
5790           (mono_metadata_generic_param_equal): param->owner can be null.
5791           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5792         null.
5793
5794 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5795
5796         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5797         the correct value.
5798
5799 2005-11-15  Martin Baulig  <martin@ximian.com>
5800
5801         * object.c (set_value): Use mono_class_from_mono_type() instead of
5802         the hack for generic instances; fixes #76136.
5803
5804 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5805
5806         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5807         fields.
5808
5809         * image.c (load_metadata_ptrs): Initialize the new fields.
5810
5811         * reflection.c (create_dynamic_mono_image): Ditto.
5812
5813         * reflection.c (build_compressed_metadata): Use the new fields.
5814
5815         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5816         icall.
5817
5818         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5819         icall.
5820         
5821 2005-11-15  Ankit Jain  <jankit@novell.com>
5822             Raja R Harinath  <harinath@gmail.com>
5823
5824         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5825         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5826         new per-generic_container cache if the cached MonoType's context matches
5827         the current context.
5828           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5829         to the expected context.
5830           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5831
5832 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5833
5834         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5835         we changed the signature of an icall.
5836         * icall.c: Modify to mono_double_ParseImpl return true/false 
5837         depending on the success, instead of throwing the exception. This will
5838         help us in Double.TryParse methods.
5839         
5840 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5841
5842         * marshal.c (emit_marshal_object): Throw an exception when
5843         marshalling 'object' instead of crashing. Fixes #76696.
5844
5845 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5846
5847         * class-internals.h: Add prototype for mono_type_get_full_name ().
5848
5849 2005-11-11  Dick Porter  <dick@ximian.com>
5850
5851         * threads.c (mono_thread_manage): Make sure the main thread has
5852         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5853
5854 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5855
5856         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5857         console about the missing type.
5858         (mono_loader_set_error_method_load): Ditto.
5859
5860 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5861
5862         * mono-config.c (mono_get_config_dir): Set the system defaults if
5863         none is specified.
5864
5865         * assembly.c (mono_set_dirs): New API entry point to set the
5866         assembly and the config directory in one call
5867
5868 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5869
5870         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5871         the ftnptr was created from a delegate in a domain other than the
5872         current domain. Fixes #75377.
5873
5874         * exception.h exception.c: Add mono_get_exception_not_supported ().
5875
5876 2005-11-08  Martin Baulig  <martin@ximian.com>
5877
5878         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5879
5880 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5881
5882         * security-manager.h: Added definitions to deal with strongname key 
5883         pairs bigger (and smaller) than 1024 bits.
5884         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5885         adjust wrt the public key length being used.
5886
5887 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5888
5889         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5890           Windows build (r51396-51397).
5891
5892 2005-11-03  Martin Baulig  <martin@ximian.com>
5893
5894         * class.c (mono_class_setup_vtable_general): Also add generic
5895         methods to the vtable; fixes #76581.
5896
5897 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5898
5899         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5900         sure that we lookup GetString method from the System.Text.Encoding
5901         class, not the derived class or we get an empty method.
5902
5903         Fixed class #76612.
5904
5905 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5906
5907         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5908         if it has been previously set (embedders). 
5909
5910         Make mono_set_rootdir available also on Unix.
5911
5912 005-10-24  Robert Jordan  <robertj@gmx.net>
5913
5914         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5915
5916 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5917
5918         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5919         only calls which are made to native code use this flag.
5920
5921         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5922
5923 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5924
5925         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5926         Add support for FieldBuilders.
5927
5928 2005-10-29  Martin Baulig  <martin@ximian.com>
5929
5930         * mono-debug.c
5931         (mono_debug_using_mono_debugger): New public method; returns
5932         whether we're running inside the debugger.
5933
5934 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5935
5936         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5937         for Method/Constructor/FieldBuilders.
5938
5939 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5940
5941         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5942         and fields as well.
5943
5944 2005-10-26  Martin Baulig  <martin@ximian.com>
5945
5946         * mono-debug-debugger.c
5947         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5948
5949 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5950
5951         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5952         integer to isspace.
5953
5954 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5955
5956         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5957         when passing valuetypes byref. Fixes #76502.
5958
5959 2005-10-19  Jackson Harper  <jackson@ximian.com>
5960
5961         * profiler.c: Don't put a . in front of types that are not in a
5962         namespace.
5963
5964 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5965
5966         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5967
5968 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5969
5970         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5971         #76436.
5972         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5973
5974 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5975
5976         * assembly.c metadata-internals.h icall.c: Define an additional
5977         parameter for mono_assembly_name_parse_full, so we can avoid creating
5978         S.R.AssemblyName.Version when no version info wasn't passed.
5979         
5980 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5981
5982         * class.c (mono_type_get_full_name): Reimplement method that was
5983         removed. 
5984
5985         * image.c: Some docs
5986
5987 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5988
5989         * profiler.c (output_newobj_profile): Fix printing of Total memory
5990         on x86.
5991
5992 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5993
5994         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5995
5996 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5997
5998         * threads.c: remove debug output.
5999
6000 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
6001
6002         * threads.c (mono_thread_manage): Fix crashes if more than 64
6003         threads need to be aborted. Hopefully fixes #75899.
6004
6005         * assembly.c (mono_stringify_assembly_name): New helper function.
6006
6007         * class.c: Use mono_stringify_assembly_name instead of the similar
6008         static function.
6009
6010         * assembly.h assembly.c: Add support for calling a postload search 
6011         hook if an assembly cannot be loaded.
6012
6013         * appdomain.c: Register new search hooks which call the AssemblyResolve
6014         events in AppDomain. Fixes #75231
6015
6016 2005-10-07  Martin Baulig  <martin@ximian.com>
6017
6018         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
6019         methods without debug info.
6020
6021 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
6022
6023         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
6024         wrappers.
6025
6026 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6027
6028         * file-io.c: now that we return symlinks, use lstat and, when the file
6029         is a symbolic link, stat, to get the file attributes. Also avoid the
6030         conversion to/from utf16/external.
6031
6032 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
6033
6034         * class.c (mono_class_layout_fields): Compute klass->has_references
6035         correctly if an embedded valuetype is not yet initialized. Fixes
6036         #76331.
6037
6038 2005-10-04  Martin Baulig  <martin@ximian.com>
6039
6040         * metadata.c
6041         (mono_metadata_load_generic_param_constraints): New public
6042         function; splitted the constraints loading out from
6043         mono_metadata_load_generic_params().
6044
6045         * class.c (mono_class_create_from_typedef): Call
6046         mono_metadata_load_generic_param_constraints() after setting up
6047         the type and creating our parent; fixes #75329.
6048
6049 2005-10-04  Martin Baulig  <martin@ximian.com>
6050
6051         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
6052         non-dynamic parent classes.
6053
6054 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
6055
6056         * file-io.c : win32 build fix (ETXTBSY seems not found).
6057
6058 2005-10-04  Martin Baulig  <martin@ximian.com>
6059
6060         * reflection.c
6061         (mono_image_get_methodspec_token): Make the cache actually work;
6062         fixes #75974.
6063
6064 2005-10-04  Martin Baulig  <martin@ximian.com>
6065
6066         * class.c (mono_class_name_from_token): Removed the unneccessary
6067         `MonoGenericContext *' argument.
6068
6069 2005-10-04  Martin Baulig  <martin@ximian.com>
6070
6071         * loader.c
6072         (method_from_methodspec): Make the caching work again; fixes the
6073         performance regression from #76262.
6074
6075 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6076
6077         * file-io.c:
6078         * file-io.h:
6079         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
6080         GetFileSystemEntries that performs the same work but without going
6081         into io-layer, locking, etc.
6082
6083 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
6084
6085         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
6086         ThreadState_Stopped as well. Fixes #76047.
6087
6088 2005-09-29  Martin Baulig  <martin@ximian.com>
6089
6090         * class.c
6091         (inflate_generic_context): If the new context has a `gmethod', set
6092         its `container' that that gmethod's `container'.
6093
6094         * metadata.c
6095         (mono_metadata_parse_generic_param): Simplify things;
6096         `generic_container = generic_context->container;' is just fine.
6097
6098         * loader.c (method_from_methodspec): Code cleanups.
6099
6100 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
6101
6102         * decimal.c: fix warning (and let gcc generate correct
6103         code on ARM with optimizations).
6104
6105 2005-09-28  Martin Baulig  <martin@ximian.com>
6106
6107         * loader.c
6108         (method_from_memberref): Added `MonoGenericContext *class_context'
6109         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
6110         (method_from_methodspec): If we're a memberref, use the enclosing
6111         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
6112
6113 2005-09-28  Martin Baulig  <martin@ximian.com>
6114
6115         * object.c (mono_runtime_invoke_array): Added support for
6116         MONO_TYPE_GENERICINST; fixes #75917.
6117
6118 2005-09-27  Martin Baulig  <martin@ximian.com>
6119
6120         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
6121         `k->byval_arg.type' to determine the actual type.
6122
6123         * loader.c (method_from_methodspec): Removed some hacks.
6124
6125 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
6126
6127         * class-internals.h (mono_field_is_deleted): Do the test for
6128         rtspecialname before we check the actual name of the field. This
6129         prevents us from dereferencing a pointer into the string table,
6130         saving us from accessing a few pages
6131
6132         * *.c: Replace the use of {Enter,Leave}CriticalSection with
6133         macros. This will allow a deadlock debugger to easily be plugged
6134         in.
6135
6136 2005-09-27  Martin Baulig  <martin@ximian.com>
6137
6138         * loader.c (method_from_methodspec): Create a "signature"
6139         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
6140
6141 2005-09-27  Martin Baulig  <martin@ximian.com>
6142
6143         * class.c
6144         (inflate_generic_class): Correctly set the new context's
6145         container.
6146
6147         * loader.c
6148         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
6149         instead of a `MonoGenericContext *'.
6150         (mono_method_signature_full): Take a `MonoGenericContainer *'
6151         instead of a `MonoGenericContext *'.
6152
6153         * metadata.c
6154         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
6155         instead of a `MonoGenericContext *'.
6156         (mono_metadata_parse_method_signature_full): Likewise.
6157
6158 2005-09-26  Martin Baulig  <martin@ximian.com>
6159
6160         * class.c
6161         (mono_class_from_generic_parameter): Set `klass->generic_container'
6162         (mono_class_from_generic_parameter): Likewise.
6163         (mono_bounded_array_class_get): We inherit the generic container
6164         from the element class.
6165
6166         * loader.c
6167         (find_method, find_method_in_class): Take a `MonoGenericContext *'
6168         argument rather than computing it here.
6169         (method_from_memberref): Correctly set the generic context before
6170         parsing the signature.  Fixes #75681.
6171
6172 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
6173
6174         * object.c (mono_class_has_special_static_fields): Fix warnings.
6175
6176 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6177
6178         * assembly.c: Add parse_public_key function, to
6179         par the public keys. Also added mono_assembly_name_parse_full,
6180         to define it the parsed key should be freed or not.
6181         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
6182         to parse a long format assembly name.
6183         * metadata-internals.h: Keep mono_assembly_name_parse_full as
6184         private, since calling it to preserve the key requires
6185         freeing it manually.
6186         
6187 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
6188
6189         * locales.c : removed HAVE_ICU part.
6190
6191 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
6192
6193         * object.c (mono_class_create_runtime_vtable): Avoid calling 
6194         field_is_special_static if the klass has no special static fields.
6195
6196         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
6197         (MonoCachedClassInfo): Likewise.
6198
6199         * object.c (mono_class_has_special_static_fields): New helper function.
6200
6201 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * class.c (mono_class_create_from_typedef): Don't call 
6204         interfaces_from_typedef_full for enums.
6205         (mono_class_create_from_typedef): Compute the base types of enums directly
6206         without calling mono_class_setup_fields ().
6207         (mono_class_find_enum_basetype): New helper function.
6208
6209         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
6210         one place inside the string heap.
6211         
6212 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
6213
6214         * class.c: locking fixes, code cleanups, some docs added.
6215         Allocate some data structures in the image mempool.
6216
6217 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6218
6219         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6220         the example code.
6221         
6222 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
6223
6224         * class-internals.h, class.c, reflection.c: reduce memory taken by
6225         MonoClass.
6226
6227 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
6228
6229         * metadata.c, metadata.h, loader.h: documentation updates, code and
6230         API cleanups.
6231
6232 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
6233
6234         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
6235         the example code.
6236
6237         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
6238         page faults caused by the runtime while reading metadata.
6239
6240 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6241
6242         * socket-io.c: the field names were changed 3 months ago and no one
6243         realized until bug #76077 got filed!
6244
6245 2005-09-20  Martin Baulig  <martin@ximian.com>
6246
6247         * icall.c (assembly_icalls): Removed some unused debugger icalls.
6248
6249 2005-09-20  Martin Baulig  <martin@ximian.com>
6250
6251         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
6252         write the rank into the class entry.
6253
6254 2005-09-20  Martin Baulig  <martin@ximian.com>
6255
6256         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
6257
6258 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
6259
6260         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6261
6262         * icall.c (custom_attrs_defined_internal): New icall.
6263
6264         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
6265         function.
6266         (mono_custom_attrs_construct_by_type): New helper function.
6267
6268 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
6269
6270         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
6271         terminate the resulting string. Fixes #76123.
6272
6273 2005-09-16  Martin Baulig  <martin@ximian.com>
6274
6275         * mono-debug.c
6276         (mono_debug_add_method): Ignore inflated methods for the moment.
6277
6278 2005-09-14  Martin Baulig  <martin@ximian.com>
6279
6280         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
6281
6282 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
6283
6284         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
6285         return a success/failure indication.
6286         (mono_metadata_interfaces_from_typedef_full): Ditto.
6287         (get_constraints): Ditto.
6288
6289 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
6290
6291         * marshal.c (emit_marshal_array): Fix handling of null arrays.
6292         
6293         * marshal.c (emit_marshal_array): Add support for returning string
6294         arrays from delegates. Fixes #76063.
6295
6296         * marshal.c: Use the emit_ldloc/stloc macros where possible.
6297
6298 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
6299
6300         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
6301         icall.
6302
6303 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
6304
6305         * reflection.c icall.c: Fix after mono_get_exception_type_load
6306         signature change.
6307
6308         * assembly.c (mono_assembly_get_assemblyref): New helper function.
6309         (mono_assembly_load_reference): Use the new helper.
6310
6311         * class-internals.h (MonoLoaderError): New structure containing 
6312         information about type loading errors.
6313
6314         * class-internals.h loader.c: Add APIs to store per-thread loader
6315         error information.
6316
6317         * loader.c class.c: Set the loader error if needed.
6318
6319         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
6320
6321 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
6322
6323         * decimal.c: fixed to handle the broken ARM fp format.
6324
6325 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
6326
6327         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
6328         broken.
6329
6330 2005-09-06  Martin Baulig  <martin@ximian.com>
6331
6332         * domain.c (supported_runtimes): Added v2.0.50727.
6333
6334 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
6335
6336         * culture-info.h: reduce the size of some structures.
6337
6338 2005-09-05  Martin Baulig  <martin@ximian.com>
6339
6340         Reflect latest API changes in the August CTP.
6341
6342         * icall.c
6343         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
6344         ("MonoType.HasGenericArguments"): Removed.
6345         ("MonoMethod.BindGenericParameters"): Renamed to
6346         "MakeGenericMethod".
6347         ("MethodBuilder.BindGenericParameters"): Renamed to
6348         "MakeGenericMethod".    
6349
6350 2005-09-05  Martin Baulig  <martin@ximian.com>
6351
6352         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
6353
6354 2005-09-05  Martin Baulig  <martin@ximian.com>
6355
6356         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6357
6358         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
6359         generic_container is non-NULL.
6360
6361 2005-09-05  Martin Baulig  <martin@ximian.com>
6362
6363         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6364
6365         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
6366
6367 2005-08-29  Michal Moskal  <malekith@nemerle.org>
6368
6369         * reflection.c (encode_locals,
6370         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
6371         for large generic types.
6372
6373 2005-09-05  Martin Baulig  <martin@ximian.com>
6374
6375         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6376
6377         * class.c (mono_dup_array_type): New public method.
6378         (mono_metadata_signature_deep_dup): New public method.
6379         (dup_type): Correctly duplicate array and function types.
6380
6381 2005-09-05  Martin Baulig  <martin@ximian.com>
6382
6383         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6384
6385         * reflection.c (get_default_param_value_blobs): Handle generic types
6386         and generic methods.
6387
6388 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
6389
6390         * class.c: Fixed error reporting (method/class were inversed) for 
6391         inheritance demands.
6392         * security-manager.c|h: Added the AppDomain when calling the managed
6393         System.Security.SecurityManager.InheritanceDemand method.
6394
6395 2005-09-01  Raja R Harinath  <rharinath@novell.com>
6396
6397         * reflection.c (encode_marshal_blob): 'marshaltype' and
6398         'marshaltyperef' are alternate sources for the custom marshaler
6399         name.
6400
6401 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6402
6403         * class.c: fix creation of array classes with rank == 1
6404         (patch by Ankit Jain <jankit@novell.com>).
6405
6406 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6407
6408         * object.c: fix check for creating the bound data for arrays vs
6409         szarrays.
6410
6411 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6412
6413         * object.c: configuration file name is now based on the executable name,
6414         not the image name. Fixes bug #75931.
6415
6416 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6417
6418         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6419         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6420
6421 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6422
6423         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6424
6425 2005-08-24  Ankit Jain  <jankit@novell.com>
6426             Raja R Harinath  <rharinath@novell.com>
6427
6428         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6429           called by it recursively.
6430           (mono_class_init): Remove special case in pending_init handling, since it's
6431           superseded by the fix to mono_class_from_typeref.
6432
6433 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6434
6435         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6436         BROKEN_THREAD_START stuff.
6437
6438 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6439
6440         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6441         trampoline.
6442
6443         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6444         
6445         * object.c (mono_delegate_ctor): Replace the original function address with
6446         a delegate trampoline.
6447
6448 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6449
6450         * icall.c: add boolean argument to base64_to_byte_array and 
6451         InternalFromBase64String to control whether a whitespace-only string
6452         is allowed (or should casue a FormatException to be thrown). We need
6453         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6454         to match the MS behaviour in both profiles.
6455         * appdomain.c: Bump corlib version.
6456
6457 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6458
6459         This patch implements a big portion of publisher policy
6460         support, used to bind assembly versions and redirect
6461         one assembly from version A to version B.
6462
6463         * assembly.c:
6464         New GSList loaded_assembly_bindings, for storing the cached
6465         assembly bindings.
6466         (assembly_binding_maps_name): New static function for checking if a 
6467         assembly binding information maps an assembly name.
6468         (mono_assembly_binding_info_free): New function for freeing
6469         assembly binding information resources.
6470         (get_publisher_policy_info): New static function for retrieving 
6471         assembly binding information from a MonoImage.
6472         (compare_versions): New static function for comparing an assembly
6473         binding information data and the version of an assembly name.
6474         (check_policy_versions): New static function for checking if an
6475         assembly binding info mapping an assembly name is valid for it.
6476         (mono_assembly_load_publisher_policy): New static function for
6477         loading the 'policy.major.minor.MyAssembly' image for an assembly
6478         with an assembly name 'aname'.
6479         (mono_assembly_bind_version): New static function for updating
6480         assembly redirection.
6481         (mono_assembly_apply_binding): New static function for applying
6482         assembly binding.
6483         (search_binding_loaded): New static function for searching 
6484         loaded assembly binding infos in the cache domain.
6485         (mono_assembly_load_full): Don't apply assembly binding for
6486         reflection only assemblies.
6487
6488         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6489         which contains information about assembly binding. Also
6490         declare signature for mono_config_parse_publisher_policy ()
6491         function, used to retrieve pub policy info.
6492         
6493         * mono-config.c:
6494         (publisher_policy_start): New static function used to parse publisher 
6495         policy config files.
6496         (publisher_policy_parser): New static MonoParseHandler containing 
6497         the functions used when parsing config files.
6498         (mono_config_parse_publisher_policy): New function for parsing
6499         publisher policy files.
6500         
6501 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6502
6503         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6504
6505         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6506
6507         * object.c (mono_get_addr_from_ftnptr): New helper function.
6508
6509         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6510
6511         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6512
6513 2005-08-19  Dick Porter  <dick@ximian.com>
6514
6515         * threads.c, threads.h, appdomain.c, appdomain.h,
6516         profiler-private.h, monitor.c, object.c, object-internals.h,
6517         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6518         store the thread ID, so it can hold a 64 bit value if needed.
6519
6520 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6521
6522         * reflection.c (mono_reflection_create_dynamic_method): Store the
6523         handle class into the method references as well so ldtoken works in
6524         dynamic methods.
6525
6526         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6527         types.
6528
6529 2005-08-19  Ankit Jain <jankit@novell.com>
6530
6531         Fix #75847.
6532         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6533           here rather than using the method signature of a arbitrary function
6534           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6535           two arguments.
6536           Hack done with Harinath.
6537
6538 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6539
6540         * threadpool.c: disable printing stack traces when we get a exception
6541         in a threadpool thread. I need to do more testing to figure out which
6542         cases actually print this. Fixes bug #75828.
6543
6544 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6545
6546         * icall.c: there might be ignored whitespace after the last '='. This
6547         fixes length computation and bug #75840.
6548
6549 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6550
6551         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6552         well. Fixes #75809.
6553
6554         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6555         #75784.
6556         
6557         * reflection.c (create_custom_attr_data): Ditto.
6558
6559 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6560
6561         * locales.c, culture-info.h : removed RegionLCIDMap.
6562         * culture-info-tables.h : regenerated.
6563
6564 2005-08-16  Martin Baulig  <martin@ximian.com>
6565
6566         * class.c (mono_type_get_name_recurse): Small fix.
6567
6568 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6569
6570         * locales.c : indentation fixie.
6571
6572 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6573
6574         * object-internals.h,
6575           locales.h,
6576           locales.c,
6577           culture-info.h,
6578           icall.c : added RegionInfo table support.
6579         * culture-info-table.h : regenerated for region support.
6580
6581 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6582
6583         * reflection.c (resolve_object): handle all kinds of MonoMethod
6584         including generic ones
6585
6586 2005-08-12  Ankit Jain <jankit@novell.com>
6587
6588         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6589           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6590
6591 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6592
6593         * process.c: Don't close a thread handle when it's NULL. This is a
6594         workaround for bug #75733.
6595
6596 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6597
6598         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6599
6600 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6601
6602         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6603
6604 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6605
6606         * threadpool.c: if a work item in the thread pool has a callback that
6607         catches a exception, don't propagate it after invoking the callback.
6608         Fixes bug #75336.
6609
6610 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6611
6612         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6613
6614         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6615
6616         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6617
6618         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6619
6620 2005-08-03  Ankit Jain  <jankit@novell.com>
6621
6622         Fix #75683.
6623         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6624           PInvoke calling convention is 0.
6625
6626 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6627
6628         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6629         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6630
6631 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6632
6633         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6634         to handle threads not started by the GC (patch by Michael Meeks
6635         <michael.meeks@novell.com>).
6636
6637 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6638
6639         * reflection.c: Make buffer used in emitting types larger for some
6640         big generic types (patch by Michal Moskal).
6641
6642 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6643
6644         * mono-debug.c: Fix some (not all) alignment problems.
6645
6646 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6647
6648         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6649         Invoke mono_image_load_from_data_full passing the refonly
6650         parameter.
6651
6652         * assembly.c
6653         (mono_assembly_open_from_bundle): Add the refonly argument, 
6654         in order to pass it to other methods it calls to.
6655         (do_mono_assembly_open): Add the refonly argument, in order 
6656         to pass it to other methods it calls to.
6657         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6658         the refonly parameter to it.
6659
6660         * image.c: Add loaded_images_refonly_hash and
6661         loaded_images_refonly_guid_hash to cache the reflection
6662         only loaded images.
6663         (mono_images_init): Initialize the hash tables used for
6664         caching the reflection only images.
6665         (load_modules): Invoke mono_image_open_full passing the refonly
6666         parameter to load the modules the correct way.
6667         (build_guid_table): Add the refonly argument, to re-build the 
6668         correct hash table.
6669         (do_mono_image_open): Added the refonly argument, in order to
6670         define it for the loaded image.
6671         (mono_image_loaded_full): New function, which receives an
6672         additional parameter to look for the image in the refonly or
6673         non-refonly section.
6674         (mono_image_loaded): Updated, using mono_image_loaded_full.
6675         (mono_image_loaded_by_guid_full): The same case that happens
6676         with mono_image_loaded_full.
6677         (mono_image_loaded_by_guid): Likewise.
6678         (register_image): Use the ref_only variable inside MonoImage
6679         to decide in which hash table store the current image.
6680         (mono_image_open_from_data_full): Rename
6681         mono_image_open_from_data to mono_image_open_from_data_full,
6682         adding the refonly argument, to define the ref_only variable 
6683         inside MonoImage.
6684         (mono_image_open_from_data): Return 
6685         mono_image_open_from_data_full.
6686         (mono_image_open_full): Rename mono_image_open to
6687         mono_image_open_full, receiving the new refonly argument,
6688         to pass it to inner methods.
6689         (mono_pe_file_open): Update this function, to open
6690         a MonoImage as a non-refonly image.
6691         (mono_image_close): Use the refonly variable inside
6692         MonoImage to remove the image from the correct caches.
6693
6694         * image.h: Add the signatures of mono_image_open_full,
6695         mono_image_open_from_data_full, mono_image_loaded_full,
6696         mono_image_loaded_by_guid_full.
6697
6698         * metadata-internals.h: Add the ref_only field to 
6699         MonoImage.
6700         
6701 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6702
6703         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6704         Fix the last behavior, which used to load the assemblies and
6705         extract MonoReflectionAssemblyName information, instead of
6706         extract it from the metadata tables. Needed for Reflection
6707         Only assemblies.
6708         
6709 2005-07-29  Martin Baulig  <martin@ximian.com>
6710
6711         * mono-debug-debugger.c
6712         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6713         not initialized.
6714
6715         * mono-debug.c
6716         (mono_debug_address_from_il_offset): Check whether we have
6717         debugging support before attempting to take the lock.
6718         (mono_debug_source_location_from_address): Likewise.
6719         (mono_debug_source_location_from_il_offset): Likewise.
6720         (mono_debug_il_offset_from_address): Likewise.
6721         (mono_debug_address_from_il_offset): Likewise.
6722
6723 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6724
6725         * class.c (mono_class_from_name_case): Add support for dynamic images.
6726         Fixes #75650.
6727
6728         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6729         for #75479.
6730
6731 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6732         
6733         * reflection.c (mono_method_get_object): Fix warning.
6734
6735 2005-07-28  Martin Baulig  <martin@ximian.com>
6736
6737         * mono-debug.c
6738         (mono_debug_add_wrapper): Also write the wrapper type.
6739
6740 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6741
6742         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6743         
6744         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6745         data indicates the class has none.
6746
6747 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6748
6749         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6750         loader lock with the debugger lock. Prevents deadlocks for beagle.
6751
6752         Beagle can now run on an smp box for a weekend without any
6753         issues. Woohoo!
6754
6755 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6756
6757         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6758         in a module. Fixes #75629.
6759
6760 2005-07-26  Martin Baulig  <martin@ximian.com>
6761
6762         * mono-debug.c (mono_debug_add_wrapper): New static method.
6763         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6764         interncall or a wrapper.
6765
6766         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6767         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6768         (MONO_DEBUGGER_VERSION): Bump to 51.
6769
6770         * mono-debug-debugger.c
6771         (mono_debugger_add_type): Removed this empty function.
6772         (mono_debugger_add_method): Likewise.
6773
6774 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6775
6776         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6777         before accessing method->slot.
6778
6779 2005-07-21  Jb Evain  <jbevain@gmail.com>
6780
6781         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6782         Fixes #75010.
6783
6784 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6785
6786         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6787         #75587.
6788
6789 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6790
6791         * image.h image.c: Add mono_image_get_guid () API function.
6792
6793 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6794
6795         There were issues when multiple threads tried to load
6796         assemblies. A deadlock was created between assemblies_mutex and
6797         mono_domain_assemblies_lock. This fixes the issue by making the
6798         assembly ref counting be lock free. See bug 75586.
6799         
6800         * image.c (mono_image_close): The add ref function here was using
6801         Interlocked operations while the unref was using a mutex and a
6802         --. I don't think this was ever a bug that would be exposed in a
6803         non-pendantic way (ie, by an embedder doing a ref on one thread
6804         and an unref on another), but for the sake of correctness, this is
6805         now Interlocked.
6806
6807         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6808         (mono_assembly_load_reference): Call mono_assembly_addref rather
6809         than touching the refcount ourselves.
6810         (mono_assembly_close): Use InterlockedDecrement to unref the
6811         assembly. Don't acquire the lock unless it is actually needed.
6812
6813 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6814
6815         * class.c (mono_class_layout_fields): Fix calculation of has_references
6816         for generic types.
6817
6818 2005-07-12  Martin Baulig  <martin@ximian.com>
6819
6820         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6821
6822         * metadata.c
6823         (mono_type_hash): Provide better hashing for generic instances.
6824         (mono_generic_inst_hash): Improve hashing.
6825         (mono_generic_class_hash): Likewise.
6826
6827         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6828         generic instances.
6829
6830 2005-07-12  Martin Baulig  <martin@ximian.com>
6831
6832         * reflection.c (mono_reflection_create_runtime_class): Remove the
6833         hack for generic type definitions and non-`Run' assemblies.
6834         (mono_reflection_bind_generic_parameters): Also use
6835         `klass->wastypebuilder' to check for TypeBuilders.
6836
6837 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6838
6839         * class.c (mono_class_layout_fields): Fix calculation of has_references
6840         for generic types.
6841
6842         * class.c (inflate_generic_class): Fix a leak.
6843         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6844         for generic types.
6845
6846 2005-07-11  Martin Baulig  <martin@ximian.com>
6847
6848         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6849         on error.
6850
6851 2005-07-11  Martin Baulig  <martin@ximian.com>
6852
6853         * loader.c (find_method): Also lookup in
6854         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6855
6856 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6857
6858         * appdomain.c (mono_domain_unload): Don't free the error message
6859         before passing it to mono_get_exception_...
6860
6861         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6862         
6863 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6864
6865         * threads.c: try to better guess an available RT signal (bug #75387).
6866
6867 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6868
6869         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6870         and CACHE_OBJECT.
6871
6872 2005-07-07  Martin Baulig  <martin@ximian.com>
6873
6874         * class.c (mono_type_get_name_full): Return NULL for
6875         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6876         fixes #75408.
6877
6878 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6879
6880         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6881         exit the appdomain as well being aborted.
6882
6883         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6884         change back to the root domain after calling managed code. This enables
6885         appdomains using threadpools to be unloaded.
6886
6887 2005-07-07  Martin Baulig  <martin@ximian.com>
6888
6889         * class-internals.h
6890         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6891         into `MonoDynamicGenericClass' since we only need it for dynamic
6892         types.
6893
6894         * reflection.c (mono_class_bind_generic_parameters): We don't need
6895         to compute the `parent' here.
6896
6897 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6898
6899         * culture-info-table.h : regenerated.
6900
6901 2005-07-06  Martin Baulig  <martin@ximian.com>
6902
6903         * icall.c
6904         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6905
6906         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6907
6908 2005-07-06  Martin Baulig  <martin@ximian.com>
6909
6910         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6911         we're doing a signature-only comparision; fixes #74945.
6912
6913 2005-07-06  Martin Baulig  <martin@ximian.com>
6914
6915         * class-internals.h (MonoGenericClass): Moved some things out into
6916         a new `MonoInflatedGenericClass' type.  
6917         (MonoInflatedGenericClass): New type; the `klass' of a
6918         `MonoGenericClass' is now computed lazyly in
6919         mono_get_inflated_generic_class().      
6920
6921         * class.c (mono_get_inflated_generic_class): New public function.
6922         (mono_class_inflate_generic_method): Removed the unused
6923         `MonoClass *' argument.
6924         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6925         all the methods.
6926         (mono_class_create_generic): Make this static and merge it with
6927         mono_class_create_generic_2(); we're now called automatically from
6928         mono_get_inflated_generic_class().
6929
6930         * loader.c (mono_method_signature): Call
6931         mono_get_inflated_method() here.
6932
6933 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6934
6935         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6936         type of fields with RVA.
6937
6938         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6939         for this pseudo class.
6940         (my_mono_class_from_generic_parameter): Likewise.
6941         (mono_class_init): Allow interfaces to have cctors.
6942
6943 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6944
6945         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6946         lazily for AOT methods.
6947
6948 2005-07-05  Martin Baulig  <martin@ximian.com>
6949
6950         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6951         returns FALSE for a successful match, not TRUE.
6952
6953 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6954
6955         * loader.c (mono_method_get_index): Optimize this a bit.
6956
6957 2005-07-04  Martin Baulig  <martin@ximian.com>
6958
6959         * class.c
6960         (class_compute_field_layout): Move the check for generic type
6961         definitions into mono_class_layout_fields().  Fixes #74684.
6962         (mono_class_from_generic_parameter): Correctly compute
6963         `klass->parent'; fixes #75457.
6964
6965         * reflection.c (register_assembly, register_module): Make sure
6966         `domain->rejobject_hash' is already created.
6967
6968 2005-07-02  Martin Baulig  <martin@ximian.com>
6969
6970         * class-internals.h
6971         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6972         `MonoDynamicGenericClass'.      
6973
6974 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6975
6976         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6977         returned by a field getter is null, since null is a valid value.
6978
6979 2005-07-01  Martin Baulig  <martin@ximian.com>
6980
6981         * reflection.c (mono_reflection_generic_class_initialize): Update
6982         the `dgclass->fields [i].parent' to the correct class.
6983         (mono_image_get_fieldref_token): Use the declaring type, not the
6984         reflected type.
6985
6986 2005-07-01  Martin Baulig  <martin@ximian.com>
6987
6988         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6989
6990 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6991
6992         * threads.c (thread_cleanup): assert that thread != NULL
6993         (wait_for_tids_or_state_change): We were using the wrong variable
6994         when accessing wait->threads. `i' was always out of the bounds of
6995         the array.
6996
6997 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6998
6999         * loader.c: map user32 and kernel32 to libMonoSupportW
7000
7001 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
7002
7003         * appdomain.c (unload_thread_main): Mark this as WINAPI.
7004
7005 2005-06-28  Martin Baulig  <martin@ximian.com>
7006
7007         * loader.c (method_from_methodspec): Fix #75334.
7008
7009 2005-06-28  Martin Baulig  <martin@ximian.com>
7010
7011         Fix #74953 - Arrays now implement the generic IList<T> interface
7012         on the 2.0 platform.
7013
7014         * class-internals.h (MonoDefaults): Added `generic_array_class'.
7015
7016         * reflection.c (mono_class_bind_generic_parameters): New public
7017         function; similar to mono_reflection_bind_generic_parameters(),
7018         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
7019
7020         * domain.c (mono_init_internal): Try to initialize.
7021         `mono_defaults.generic_array_class' here; this'll only succeed if
7022         we're using the 2.0 corlib.
7023
7024         * icall.c
7025         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
7026         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
7027         (mono_lookup_internal_call): Added support for nested classes.
7028
7029         * loader.c
7030         (mono_get_method_from_token): Set `result->signature->pinvoke' if
7031         we're an interncall and have generic arguments.
7032
7033         * class.c
7034         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
7035         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
7036         instance of System.Array.InternalArray<T> for arrays, so they
7037         implement the generic IList<T> interface.
7038
7039 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
7040
7041         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
7042         (chastamar@yahoo.com). Fixes #75374.    
7043
7044 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
7045
7046         * culture-info-table.h: regenerated.
7047
7048 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7049
7050         * icall.c: handle spaces correctly for base64 strings.
7051
7052 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
7053
7054         * *.c: Kill some warnings.
7055
7056 2005-06-23  Duncan Mak  <duncan@novell.com>
7057
7058         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
7059         that this builds on Solaris 10 (x86).
7060
7061 2005-06-23  Martin Baulig  <martin@ximian.com>
7062
7063         * class.c
7064         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
7065         generic type definitions.
7066
7067 2005-06-23  Martin Baulig  <martin@ximian.com>
7068
7069         Fix #75331.
7070
7071         * metadata.c (mono_class_get_overrides): Renamed to
7072         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
7073         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
7074         pass it to mono_get_method_full().
7075
7076 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
7077
7078         * reflection.c (mono_reflection_create_runtime_class): take the
7079         mono_domain_lock in this method. Prevents deadlocks
7080
7081 2005-06-22  Martin Baulig  <martin@ximian.com>
7082
7083         * loader.c (method_from_methodspec): Fix #75330.
7084
7085 2005-06-22  Martin Baulig  <martin@ximian.com>
7086
7087         * reflection.c (type_get_qualified_name): Use
7088         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
7089         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
7090         argument; use it if we don't have an assembly name.
7091
7092 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
7093
7094         * object.c: In mono_message_init, set "copy out" flag for in
7095         parameters with the [Out] flag.
7096
7097 2005-06-21  Martin Baulig  <martin@ximian.com>
7098
7099         * class.c
7100         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
7101         and MONO_TYPE_PTR.
7102
7103 2005-06-21  Martin Baulig  <martin@ximian.com>
7104
7105         * class.c (mono_class_init): Don't initialize `class->fields' for
7106         generic instances since they're initialized again in
7107         compute_field_layout(). 
7108         (compute_field_layout): Set the field's `generic_info' here; fix
7109         #75320. 
7110
7111 2005-06-21  Martin Baulig  <martin@ximian.com>
7112
7113         * class-internals.h
7114         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
7115
7116         * metadata.c (mono_metadata_generic_method_equal): Also
7117         distinguish the `generic_class'; fixes #75334.
7118
7119 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7120
7121         * domain.c:
7122         * appdomain.c:
7123         * domain-internals.h:
7124         * reflection.c: 'domain_assemblies' field is now protected by its own
7125         lock. Don't call into managed code to run the AssemblyLoad event if we
7126         now there are no registered delegates for it.
7127
7128 2005-06-20  Martin Baulig  <martin@ximian.com>
7129
7130         * class.c (mono_class_is_assignable_from): Use a custom version of
7131         mono_class_has_parent() to make things work for generic instances;
7132         fix #75300.
7133
7134 2005-06-20  Martin Baulig  <martin@ximian.com>
7135
7136         * loader.c (method_from_methodspec): Apply a patch from
7137         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
7138
7139 2005-06-20  Martin Baulig  <martin@ximian.com>
7140
7141         * class.c (mono_class_init): Reverted Zoltan's last change; it
7142         breaks generics.
7143
7144 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
7145
7146         * threads.c (wait_for_tids_or_state_change): Add missing locking.
7147
7148 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7149
7150         * socket-io.c: fix the index in the socket array for writable/error
7151         sockets. Fixes bug #75306.
7152
7153 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
7154
7155         * class.c (mono_class_init): Allow interfaces to have static ctors.
7156
7157 2005-06-17  Martin Baulig  <martin@ximian.com>
7158
7159         * loader.c (method_from_methodspec): Use `context->container' when
7160         parsing the `gmethod->inst'.
7161
7162 2005-06-17  Martin Baulig  <martin@ximian.com>
7163
7164         * class.c (mono_type_get_name_recurse): Don't add the assembly
7165         name for type arguments.
7166
7167 2005-06-15  Martin Baulig  <martin@ximian.com>
7168
7169         * reflection.c (mono_image_get_inflated_method_token): Encode
7170         correct klass; fixes #75260.
7171
7172 2005-06-13 Michal Moskal <malekith@nemerle.org>
7173
7174         * icall.c: Make GetCorrespondingMethod/Constructor take
7175         MonoReflectionMethod method not MonoMethod. Removed
7176         MonoType.GetCorrespondingField, and make
7177         MonoGenericType.GetCorrespondingField take name not
7178         MonoClassField.
7179
7180 2005-06-13  Michal Moskal <malekith@nemerle.org>
7181
7182         * reflection.c (field_encode_signature, encode_locals):
7183          Make sizes of buffers for types larger (for big generic types).
7184          (create_generic_typespec,
7185          mono_reflection_sighelper_get_signature_local,
7186          mono_reflection_sighelper_get_signature_field):
7187          Add asserts for too small buffers.
7188
7189 2005-06-15  Martin Baulig  <martin@ximian.com>
7190
7191         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
7192         if our parent is not a dynamic type.
7193
7194 2005-06-15  Martin Baulig  <martin@ximian.com>
7195
7196         * class-internals.h (MonoTypeNameFormat): New enum.
7197
7198         * class.c
7199         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
7200         (mono_type_get_full_name): Removed.
7201         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
7202         argument instead of the boolean's.
7203
7204         * icall.c (ves_icall_System_MonoType_getFullName):
7205         Added `gboolean assembly_qualified'.    
7206
7207         * reflection.h
7208         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
7209
7210         * reflection.c (mono_reflection_parse_type): Parse the new type
7211         name format.
7212
7213 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7214
7215         * icall.c: no need to convert from utf16 to utf8 and then back again
7216         after the call to GetLogicalDrives.
7217
7218 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7219
7220         * icall.c: frombase64. Fix problems exposed by new tests.
7221
7222 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7223
7224         * icall.c: added internal calls for converting char [] and strings in
7225         base64 into byte [].
7226
7227 2005-06-10  Martin Baulig  <martin@ximian.com>
7228
7229         * class.c (mono_class_create_generic_2): Read the nested classes
7230         from the metadata rather than from `gklass->nested_classes' since
7231         `gklass' might not be initialized yet.
7232
7233 2005-06-09  Duncan Mak  <duncan@novell.com>
7234
7235         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
7236         all public headers. Fixes #74919.
7237
7238 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
7239
7240         * domain.c: The key for proxy_vtable_hash is now a pointer
7241         array. Added new GHashFunc and GCompareFunc functions for this.
7242
7243         * class.h: The list of interfaces in MonoRemoteClass is known in
7244         advance and can't grow (we create a new MonoRemoteClass if needed),
7245         so now the interface array can be allocated together with
7246         MonoRemoteClass.
7247         
7248         * object.c: Added a new method create_remote_class_key.
7249         Fixed mono_remote_class so it does not depend on
7250         mono_upgrade_remote_class.
7251         Removed extend_interface_array.
7252         Added new method clone_remote_class(), which makes a copy of a remote
7253         class and adds a new interface or class to it.
7254         mono_upgrade_remote_class() now creates a new remote class (or gets
7255         it from the cache) if an vtable upgrade is needed. In this way
7256         we make sure that other objects sharing the same remote class
7257         don't get the new vtable with unwanted interfaces.
7258         
7259         * object-internals.h:
7260         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
7261         
7262         * marshal.c: Track changes in mono_upgrade_remote_class().
7263
7264 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
7265         * icall.c: Add runtime methods for obtaining members of inflated
7266         class, which were created from supplied non-inflated members. It
7267         is used in internal Get{Method,Constructor,Field} methods in
7268         System.Type
7269
7270 2005-06-09  Martin Baulig  <martin@ximian.com>
7271
7272         * reflection.c
7273         (mono_reflection_bind_generic_method_parameters): Fix #75169.
7274
7275 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7276         * reflection.c (mono_image_basic_init): Define
7277         Version in MonoDynamicAssembly. 
7278         
7279 2005-06-08  Martin Baulig  <martin@ximian.com>
7280
7281         Fix #75136.
7282
7283         * loader.c
7284         (mono_method_signature_full): New public method; takes a
7285         `MonoGenericContext *'.
7286         (find_method): Use mono_method_signature_full() and pass the
7287         klass'es context to it.
7288
7289         * class.c (mono_class_is_inflated_method): Use
7290         mono_method_signature_full() and pass the context to it.
7291
7292 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
7293
7294         * object.c: add proper locking in mono_remote_class_vtable(),
7295         fixes possible memory corruption.
7296
7297 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
7298
7299         * marshal.c (mono_remoting_marshal_init): set
7300         initialized after initialization.
7301
7302 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
7303
7304         * locales.c : hush.
7305
7306 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
7307
7308         * object.c (extend_interface_array): fix really silly
7309         memory corrupting / comparison bug.
7310
7311 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7312
7313         * reflection.c: Functions added to support the creation
7314         of CustomAttributeData, which includes Attribute data
7315         used by ReflectionOnly methods.
7316
7317         * reflection.h:  mono_reflection_get_custom_attrs_data and
7318          mono_custom_attrs_data_construct added (functions exposed).
7319
7320          * icall.c: Added mono_reflection_get_custom_attrs_data
7321          as icall.
7322         
7323 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
7324
7325         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
7326         lupus's request.
7327
7328 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
7329
7330         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
7331
7332         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
7333         dynamic DllImportAttribute.
7334
7335         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
7336         dynamic DllImportAttribute.
7337
7338         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
7339         Fixes #75162.
7340
7341 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7342
7343         * threads.c: avoid segfault when an unstarted thread is aborted.
7344
7345 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
7346
7347         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
7348         Returns the name and version of the runtime for reporting.
7349
7350 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7351
7352         * appdomain.c: bump corlib version.
7353         * object-internals.h: new field in MonoReflectionAssembly.
7354
7355 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7356
7357         * object-internals.h: Carlos forgot to add this field.
7358
7359 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7360
7361         * icall.c: Added create_version to create instances
7362         of Version of MonoReflectionAssemblyName. This change helps
7363         the AssemblyName tests to keep running fine.
7364         
7365 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
7366   
7367         * object.c (mono_method_return_message_restore): A somehow less
7368         intrusive fix for #75138.
7369
7370 2005-06-03  Raja R Harinath  <rharinath@novell.com>
7371
7372         * object.c (mono_method_return_message_restore): Fix computation
7373         of expected number of out args.
7374
7375 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7376
7377         * reflection.c (mono_image_get_method_info): Fix the case when the
7378         charset is empty.
7379
7380 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
7381
7382         * object.c: Added missing null check in
7383           mono_method_return_message_restore.
7384
7385 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
7386
7387         * reflection.c (mono_image_get_method_info): Handle the case when
7388         dllentry is empty.
7389
7390 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
7391
7392         * object.c: When creating the vtable for a proxy, take into account
7393         all inherited interfaces, not only the ones registered in
7394         iclass->interfaces. This fixs bug #74996.
7395         Also, in mono_method_return_message_restore, verify that the array
7396         of out args has the expected lengh.
7397
7398 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7399
7400         * socket-io.c: update the timeout in Poll when the call is interrupte.
7401
7402 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7403
7404         * socket-io.c: support abort/suspend in Select_internal after last
7405         change.
7406
7407 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7408
7409         * threadpool.c: remove warning.
7410
7411 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7412
7413         * icall.c:
7414         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7415         removing the 1024 limit from select(). Runtime part of the fix for
7416         bug #71203.
7417
7418 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7419
7420         * socket-io.c: when resolving the addresses for the same
7421         host returned by gethostname(), get the local IPs from the interface
7422         list. Loopback addresses are discarded if the are interfaces up with
7423         non-loopback ones. Fixes bug #63265.
7424
7425 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7426
7427         * appdomain.c, verify.c, object-internals.h, reflection.c:
7428         bumped corlib number to 36, and added new extra_flags field
7429         to ReflectionMethodBuilder and friends.  Fixes #75060.
7430
7431 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7432
7433         * gc.c: register a new weak link only if the object is non-null
7434         (fixes bug#75047).
7435
7436 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7437
7438         * culture-info.h : short time pattern too.
7439
7440 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7441
7442         * culture-info.h : expand long time pattern string length.
7443
7444 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7445
7446         * culture-info-table.h : update (more French date format; #72788).
7447
7448 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7449
7450         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7451         the method is static. Fixes #75029.
7452
7453 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7454
7455         * reflection.c: Update the table_idx field of method builders after
7456         saving the module, since it can change. This is a workaround for
7457         bug #74914. 
7458
7459 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7460
7461         * culture-info-table.h : update (additional French date format).
7462
7463 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7464
7465         * icall.c (ves_icall_type_Equals): Revert last change.
7466         
7467         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7468
7469         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7470
7471 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7472
7473         * class-internals.h: Added executioncontext_class field to 
7474         MonoDefaults structure.
7475         * domain.c: Cache System.Threading.ExecutionContext class in 
7476         mono_defaults.
7477         * object.c: Capture the ExecutionContext for asynchroneous calls in
7478          mono_async_result_new.
7479         * object-internals.h: Added execution_context and original_context 
7480         fields to MonoAsyncResult. Added execution_context to MonoThread.
7481         * security-manager.c|.h: Added mono_get_context_capture_method to 
7482         return the capture method (if required by the security manager or by
7483         the framework version used).
7484         * threadpool.c: Apply capture (if present) ExecutionContext in 
7485         mono_async_invoke and revert to original context after it completes.
7486
7487 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7488
7489         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7490
7491 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7492
7493         * culture-info-table.h : zh-CHT related workaround.
7494
7495 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7496
7497         * marshal.c (emit_marshal_custom): Add some error checking and call the
7498         methods in the ICustomMarshaler interface. Fixes #74875.
7499         
7500         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7501         native->managed wrappers.
7502
7503 2005-05-12  Martin Baulig  <martin@ximian.com>
7504
7505         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7506         here and use the loader lock.
7507
7508         * mono-debug.c: Properly lock when the debugger is not attached.
7509         (mono_debug_init): Release the initial lock if we're not running
7510         in the debugger.
7511
7512 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7513
7514         * marshal.c (emit_marshal_custom): Pass through NULL values without
7515         calling the custom marshalling routines.
7516
7517         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7518         conversion in structures. Fixes #74882.
7519
7520 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7521
7522         * culture-info-table.h : zh-* cultures were missing.
7523
7524 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7525
7526         * threads.c: Added a new event background_change_event which is signaled
7527         when a thread changes its background mode.
7528         Moved here several checks previously done in managed code. The checks
7529         require the thread lock, and using the thread lock in managed code
7530         can result in deadlocks.
7531         Merged Start_internal and Thread_internal into a single method. Now 
7532         Thread_internal does all work of creating and starting a thread.
7533         Added icalls for setting and getting the state of the object. Moved from
7534         managed code to avoid locking there.
7535         Added wait_for_tids_or_state_change() which is called instad of
7536         wait_for_tids when waiting for non-backround threads to end. This method
7537         will return if one of the threads ends or the background_change_event
7538         is signaled.
7539         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7540         the background mode. This method signals the background_change_event
7541         event.
7542         * icall.c:
7543         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7544         removed Start_internal.
7545         
7546 2005-05-11  Martin Baulig  <martin@ximian.com>
7547
7548         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7549         to order of some fields to get proper alignment on 64-bit machines.
7550
7551 2005-05-11  Martin Baulig  <martin@ximian.com>
7552
7553         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7554         changes as they're broken and completely fuck up the debugger.
7555
7556         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7557
7558 2005-05-10  Martin Baulig  <martin@ximian.com>
7559
7560         * reflection.c (mono_reflection_generic_class_initialize): Don't
7561         call mono_class_setup_parent() here.
7562
7563 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7564
7565         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7566         send/receive timeout use an integer in milliseconds. We were using a
7567         struct timeval.
7568
7569 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7570
7571         * locales.c:
7572         (internal_get_cultures): reserve the first slot of the array for the
7573         InvariantCulture, which will be filled in managed code.
7574
7575 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7576
7577         * reflection.c (mono_image_fill_module_table): Initialize the
7578         GENERATION field as well.
7579
7580 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7581
7582         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7583         Monitor.Enter on the object.
7584
7585 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7586
7587         * threads.c: Enable the wait for running threads when exiting.
7588         * icall.c: Suspend all threads before exiting.
7589
7590 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7591
7592         * assembly.c (mono_assembly_load_reference): Fix warning.
7593
7594 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7595
7596         * threadpool.c: changed the default number of threads per cpu. From now
7597         on, the default will be 20 + (5 * number of cpus) instead of 50.
7598
7599 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7600
7601         * loader.c (mono_method_get_signature_full): Add locking here.
7602
7603 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7604
7605         * appdomain.c: Moved methods for parsing and freeing assembly
7606         names to assembly.c.
7607         * assembly.c, domain-internals.h: Created public methods for parsing
7608         assembly names. Fixed mono_assembly_load_with_partial_name:
7609         it now finds the best match, taking into account the version,
7610         token and culture specified in the partial name. Also return
7611         the latest version if no version information is specified.
7612
7613 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7614
7615         * threadpool.c: replace check for SocketAsyncCall class.
7616
7617 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7618
7619         * threadpool-internals.h:
7620         * Makefile.am: added threadpool-internals.h
7621
7622         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7623         that happen in threadpool threads (tested on MS).
7624         (mono_thread_pool_remove_socket): new function that dispatch any pending
7625         AIO call on a socket that is closing. By now only epoll really needs it,
7626         as select/poll wake up when the socket closes.
7627
7628
7629         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7630
7631 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7632
7633         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7634
7635 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7636
7637         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7638
7639 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7640
7641         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7642         has an abort request, convert it into a suspend request.
7643
7644 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7645
7646         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7647         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7648         is not supported yet.
7649
7650 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7651
7652         * image.c: register assemblies loaded from data (bundles) in the loaded
7653         assemblies hash. Fixes bug #74772.
7654
7655 2005-04-29  Martin Baulig  <martin@ximian.com>
7656
7657         * class.c (mono_type_get_name_recurse): Update to the new naming
7658         schema from the latest .NET 2.x beta2.
7659         (mono_class_setup_vtable_general): If we're a generic instance,
7660         copy the vtable from our generic type definition and inflate all
7661         the methods in it.
7662
7663         * loader.c (find_method): Update to the new naming schema from the
7664         latest .NET 2.x beta2.
7665
7666 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7667
7668         * class.c (mono_class_init): Add a mono_loader_unlock to the
7669         #74734 fix.
7670
7671 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7672
7673         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7674         suspend_all_other_threads () call for the time being, since it can hang.
7675
7676         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7677         the background threads to exit, since it can also hang.
7678
7679         * class.c (mono_class_init): Applied patch from Ankit Jain 
7680         (radical@gmail.com). Avoid pending init errors when a field refers
7681         to a nested class using a typeref. Fixes #74734.
7682
7683         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7684         this for dynamic modules.
7685
7686 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7687
7688         * threads.c: don't wait for threads that are in the process of aborting
7689         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7690         and waiting for background threads to finish. This makes xsp and
7691         mod-mono-server exit without random length delays and/or hangs.
7692
7693 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7694
7695         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7696
7697 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7698
7699         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7700         dynamic types to prevent infinite loops. Fixes #74727.
7701
7702         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7703         ..._is_assignable_to.
7704
7705 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7706
7707         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7708
7709 2005-04-25  Martin Baulig  <martin@ximian.com>
7710
7711         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7712
7713         * domain.c
7714         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7715
7716         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7717
7718         * reflection.c (build_compressed_metadata): Set metadata header
7719         version to 2.0.
7720
7721 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7722
7723         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7724         number into an integral and a decimal part. Fixes #70473.
7725
7726         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7727
7728 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7729
7730         * culture-info-table.h : reflected the latest locale-builder output.
7731
7732 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7733
7734         * threadpool.c: check for SuspendRequested too when deciding if
7735         mono_thread_interruption_checkpoint should be called.
7736
7737 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7738
7739         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7740         * threads.c: remove interruption_mutex and use Interlocked instead. When
7741         suspending all the threads, wait for all the suspended events at once.
7742         If we're shutting down and get an APC that is going to be queued,
7743         call mono_thread_execute_interruption immediately, as the thread might
7744         be sleeping on a pthread condition or mutex.
7745
7746         * icall.c: call mono_runtime_set_shutting_down before suspending the
7747         threads.
7748
7749         Fixes bug #74693. And now xsp is happier when exiting.
7750
7751 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7752
7753         * loader.c (mono_stack_walk): Fix #74690.
7754
7755 2005-04-22  Martin Baulig  <martin@ximian.com>
7756
7757         * mono-debug.h (MonoDebugMethodJitInfo): Added
7758         `MonoDebugMethodJitInfo *jit'.
7759
7760         * mono-debug.c (mono_debug_read_method): Cache the
7761         MonoDebugMethodJitInfo in `address->jit'.
7762         (mono_debug_free_method_jit_info): New public method.
7763
7764 2005-04-22  Martin Baulig  <martin@ximian.com>
7765
7766         * class.c (mono_class_is_assignable_from): Disallow
7767         type parameter -> interface.
7768
7769 2005-04-21  Dick Porter  <dick@ximian.com>
7770
7771         * threads.c (mono_thread_create): Turn an assertion into an error.
7772
7773 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7774
7775         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7776         
7777         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7778         Fix some gcc 4.0 warnings.
7779
7780 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7781
7782         * file-io.c: fix alt dir separator char on unix systems
7783         and cleanup (fixes bug #71214).
7784
7785 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7786
7787         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7788         a call to a remote domain, since the method may be an
7789         interface method in the client domain. This fixes bug #74192.
7790
7791 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7792
7793         * threadpool.c: recv/send are now performed before going back to managed
7794         code to save one transition.
7795
7796 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7797
7798         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7799
7800         * metadata/threadpool.c: removed hack to workaround the bug above.
7801
7802         Fixes bug #74618.
7803
7804 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7805
7806         * reflection.c reflection.h: Fix handling of parameter defaults in
7807         dynamic methods. Also fixes handling of parameter attributes.
7808         Fixes #74609.
7809
7810         * mono-debug.c (mono_debug_close_image): Fix warning.
7811
7812 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7813
7814         * socket-io.h: replaced old unused field with new 'blocking'.
7815         * threadpool.c: restore socket blocking state on windows(tm).
7816
7817 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7818
7819         * icall.c: don't return the codebase in the AssemblyName[] returned by
7820         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7821         * object-internals.h: Removed FIXME (fields were presents) and fixed
7822         versioncompat declaration.
7823
7824 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7825
7826         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7827         not closed, so don't cleanup when it happens.
7828
7829 2005-04-13  Chris Toshok  <toshok@ximian.com>
7830
7831         * mono-debug-debugger.h: change prototype for
7832         mono_debugger_lookup_type.
7833
7834         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7835         this function, although it should probably be named
7836         mono_debugger_init_type.
7837
7838 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7839
7840         * threadpool.c: fix non-AIO case.
7841
7842 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7843
7844         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7845         the built-in profiler to measure just JIT compilation times.
7846
7847 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7848
7849         * threadpool.c: the epollfd might be closed by another thread at
7850         any time, so ignore EBADF at treat it as a "we're closing" sign.
7851
7852 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7853
7854         * threadpool.c: release the semaphores with a count equals to the number
7855         of working threads in both IO and regular pools. Fixed typo that messed
7856         up the count of IO pool threads. Don't initialize the pipe handles if
7857         we're using epoll.
7858
7859 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7860
7861         * threadpool.c: some systems don't like a NULL when deleting the socket
7862         from epoll.
7863
7864 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7865
7866         * threadpool.c: fix semaphore allocation.
7867
7868 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7869
7870         * threadpool.c: added epoll() based implementation for asynchronous IO
7871         that is used instead of the default poll() when available.
7872         It can be disabled by setting MONO_DISABLE_AIO.
7873
7874 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7875
7876         * threadpool.c: windows needs 'closesocket' and instead of returning
7877         0 when the stream is closed while in select, it returns -1. Fixes bug
7878         #74573.
7879
7880 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7881
7882         * class.c (class_compute_field_layout): Fix the regression caused by
7883         the previous try.
7884
7885 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7886
7887         * threadpool.c: separate pool for socket async. IO.
7888         * threadpool.h: mono_max_worker_threads is not a global any more.
7889
7890 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7891
7892         * class.c (class_compute_field_layout): Fix #74549.
7893
7894 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7895
7896         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7897         use 2 connected sockets instead.
7898
7899 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7900
7901         * mono-config.c: Add new entry point for mkbundle
7902         mono_config_parse_memory. 
7903
7904 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7905
7906         * threadpool.c: removed another unused function.
7907
7908 2005-04-08  Ankit Jain  <radical@corewars.org>
7909
7910         * reflection.c (get_default_param_value_blobs): Add 'types'
7911         parameter to get the types encoded in the constant table.
7912         (mono_param_get_objects): Use the type from the constant table,
7913         not the type of the parameter, when creating default values.
7914         Handle null default values correctly.
7915
7916 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7917
7918         * file-io.c:
7919         * file-io.h:
7920         * threadpool.c:
7921         * threadpool.h:
7922         * icall.c:
7923         * socket-io.c: removed dead code for async IO.
7924
7925 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7926
7927         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7928
7929         * threadpool.c: intercept socket async. calls and pass them to a thread
7930         that is polling and dispatching the job items to the threadpool as
7931         socket become ready. Fixes bugs #71217, #71933.
7932
7933         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7934         between char and short/ushort arrays.
7935
7936         * socket-io.c: remove dead code.
7937
7938 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7939
7940         * locales.c,
7941           icall.c : removed InternalToUpper_Comp() and
7942           InternalToLower_Comp().
7943
7944 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7945
7946         * char-conversions.h : The tables were incorrectly generated. Should
7947           be generated against invariant culture.
7948
7949 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7950
7951         * object.c (mono_runtime_invoke_array): Fix return value when 
7952         passing pre-created valuetype objects to ctors.
7953
7954         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7955         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7956         Fixes #74338.
7957
7958 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7959
7960         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7961         only used with --security and hides the wrong corlib version error.
7962
7963 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7964
7965         * class.c: Changed mono_class_name_from_token so that types
7966         outside of a namespace don't have an initial period.  Improved
7967         the g_warning message used in _mono_class_get when loading
7968         fails.
7969         * assembly.c: In mono_assembly_load_reference, when an assembly
7970         can't be found, "No such file or directory" is misleading and
7971         unhelpful because a few paths were checked for the presence of
7972         the assembly.  When that happens (ENOENT), display a nicer
7973         message indicating the directories that were searched.  In all
7974         cases, the warning is made easier to read for non-hackers.
7975
7976 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7977
7978         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7979         project/solution.
7980         * appdomain.h|domain.c: Removed inline from functions.
7981         * appdomain.c: Reduced warnings when compiling on windows.
7982         * icall.c: Fixed output_debug declaration to gunichar2*.
7983         * mono-config.c: Reduced warnings when compiling on windows.
7984         * rand.c: Added missing "windows.h". Added missing return value.
7985         * rawbuffer.c: Added missing winsock2.h for windows.
7986         * sysmath.h: Added mono-compiler.h header to allow/ease 
7987         compilation with non-GCC compilers.
7988         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7989         Removed cast warnings.
7990
7991         Adapted from the work of J Lothian (for VC6).
7992
7993 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7994
7995         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7996         from default_path.
7997
7998 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7999
8000         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
8001         the 2.0 profile.
8002
8003 2005-03-27  Raja R Harinath  <harinath@gmail.com>
8004
8005         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
8006         has to be in $(exec_prefix).  $(prefix) is for arch-independent
8007         stuff, and it would probably use $(prefix)/share rather than
8008         $(prefix)/lib.
8009
8010 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8011
8012         * console-io.c: added 2 includes that might be missing.
8013
8014 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
8015
8016         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
8017         profile.
8018
8019         * reflection.c (create_custom_attr): Allocate the params array using
8020         alloca so it gets GC tracking.
8021
8022 2005-03-23  Chris Toshok  <toshok@ximian.com>
8023
8024         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
8025         out some spew.
8026
8027 2005-03-24  Raja R Harinath  <rharinath@novell.com>
8028
8029         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
8030         changes to pick up any changes in prefix, etc.
8031
8032 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8033
8034         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
8035         
8036         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
8037         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
8038
8039 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
8040
8041         * class-internals.h object-internals.h class.c reflection.c: Extend the
8042         mono_lookup_dynamic_token () function to return the class of the
8043         token as well. 
8044
8045         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
8046         well. Fixes #73848.
8047
8048 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
8049
8050         * security-manager.c: Skip inheritance checks for intra-corlib
8051         class inheritance and method overrides. This skips a lot of checks
8052         and (anyway) permissions cannot work until corlib is loaded.
8053
8054 2005-03-23  Martin Baulig  <martin@ximian.com>
8055
8056         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
8057         MONO_TYPE_GENERICINST.  
8058
8059 2005-03-23  Martin Baulig  <martin@ximian.com>
8060
8061         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
8062
8063 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8064
8065         * class.c: added locking comments to some functions.
8066         Cache the interface offsets arrays (saves about 20 KB
8067         of runtime memory in a typical app).
8068         Reduce the time overhead in mono_class_setup_supertypes ().
8069
8070 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
8071
8072         * icall.c: speedup and fix leaks in GetMethodsByName and
8073         GetPropertiesByName.
8074
8075 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8076
8077         * reflection.c: some locking fixes.
8078
8079 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8080
8081         * metadata.c: added missing break in case statement.
8082
8083 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
8084
8085         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8086         typedbyref return values. Fixes #73941.
8087
8088 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
8089
8090         * security-manager.c|h: Added demandunmanaged method and 
8091         suppressunmanagedcodesecurity class to MonoSecurityManager.
8092         Renamed aptc class to allowpartiallytrustedcallers.
8093
8094 2005-03-17  Martin Baulig  <martin@ximian.com>
8095
8096         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
8097
8098 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8099
8100         * file-io.c: disabled file async. IO using aio_*. It uses the
8101         threadpool now. Workaround for bug #73718.
8102
8103 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8104
8105         * assembly.h, mono-config.c: added code to deal with bundled configs
8106         for bundled assemblies.
8107
8108 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
8109
8110         * *.c, private.h: cleanup, removing old private.h header file.
8111
8112 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
8113
8114         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
8115         and throw_on_unmappable_char attributes.
8116
8117 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
8118
8119         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
8120         _ProcessName_internal.
8121
8122 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
8123
8124         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
8125         #73631.
8126
8127         * icall.c threads.c threads-types.h: Remove slothash icalls as they
8128         are no longer used.
8129
8130 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
8131
8132         * object.c (compute_class_bitmap): Add support for generics. Fixes
8133         #73527.
8134
8135 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8136
8137         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
8138
8139 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8140
8141         * filewatcher.c: commented out the code for windows watcher, as we don't
8142         use it (we use the managed implementation instead).
8143
8144 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
8145
8146         * object-internals.h (MonoThread): Remove 'unused1' field.
8147
8148         * appdomain.c: Bump corlib version.
8149
8150         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
8151
8152         * reflection.c (mono_reflection_create_runtime_class): Remove the
8153         AssemblyBuilder.Save optimization since it causes too many problems.
8154
8155 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
8156
8157         * exception.c|h: Added mono_get_exception_reflection_type_load to
8158         create a ReflectionTypeLoadException object.
8159         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
8160         to return NULL is a InheritanceDemand fails during reflection. Updated
8161         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
8162         ReflectionTypeLoadException if an InheritanceDemand fails during 
8163         reflection. Added icall mapping for GetLinkDemandSecurity.
8164         * security-manager.c|h: Added ves_icall_System_Security_
8165         SecurityManager_GetLinkDemandSecurity internal call to return the
8166         class and methods permissions set for a LinkDemand. Removed unused
8167         fields in MonoSecurityManager.
8168
8169 2005-03-10  Martin Baulig  <martin@ximian.com>
8170
8171         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
8172         it's a generic instance.
8173
8174 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
8175
8176         * reflection.c (mono_get_object_from_blob): Applied patch from
8177         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
8178
8179         * class.c (mono_class_is_assignable_from): Another try at fixing 
8180         #73469 without breaking anything.
8181
8182 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
8183
8184         * class.c: (mono_class_is_assignable_from): Revert the last changes
8185         since they don't work with generics.
8186         
8187         * class.c (mono_class_is_assignable_from): Fix build bustage.
8188
8189         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
8190         the managed IsAssignableFrom method. Fixes #73469.
8191
8192         * reflection.c (mono_reflection_call_is_assignable_from): New helper
8193         function.
8194
8195 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
8196
8197         * object.c (mono_load_remote_field_new): Fix returning uninitialized
8198         memory when the remoting callback does not sets the out arguments.
8199         Fixes #73007.
8200
8201         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
8202         by mistake.
8203
8204         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
8205
8206         * object-internals.h (MonoStackFrame): Sync with managed object layout.
8207
8208         * appdomain.c: Bump corlib version.
8209
8210 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
8211
8212         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
8213         function.
8214
8215         * threads.c (mono_thread_attach): Detect threads which are not started
8216         by the GC pthread wrappers.
8217
8218 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
8219
8220         * icall.c: Added new icall for RNG.
8221         * rand.c|h: Added new icall to open the RNG. This allows to share a 
8222         single handle on Linux to access /dev/urandom and fix #73183.
8223
8224 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
8225
8226         * object.c: setting the new vtable in a transparent proxy object must
8227         not change the GC descriptor.
8228
8229 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8230
8231         * object.c: fixed compilation without GCJ support.
8232         * reflection.c: for runtime-created types ensure klass->has_references
8233         is correct (bug #73215).
8234
8235 2005-03-02  Martin Baulig  <martin@ximian.com>
8236
8237         * class.c (mono_class_is_assignable_from): Make this work if
8238         `oklass' is a generic instance; fixes #72831.
8239
8240 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8241
8242         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
8243         with hasthis set.
8244         
8245         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
8246
8247         * marshal.c: Reorganize native->managed marshalling code to also use
8248         the emit_marshal_... functions.
8249
8250 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8251
8252         * object.c: typed allocs have issues with bitmap sizes > 30,
8253         so check for max_set >= 30.
8254
8255 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
8256
8257         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
8258         managed code. Fixes #73012.
8259
8260         * metadata.h (MonoMarshalSpec): Add elem_mult field.
8261
8262         * metadata.c reflection.c: Load/Emit elem_mult as well.
8263         
8264         * metadata.h (MonoMarshalSpec): Add comment.
8265
8266         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
8267
8268         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
8269         num_elem to -1 if not given.
8270
8271         * object-internals.h (MonoReflectionMarshal): Add has_size field.
8272
8273         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
8274         given values.
8275
8276 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
8277
8278         * null-gc.c (mono_gc_free_fixed): Was not compilable.
8279
8280 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
8281
8282         * reflection.c (encode_marshal_blob): Encode param_num field as well.
8283
8284         * object-internals.h (MonoReflectionMarshal): Add param_num field.
8285
8286 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
8287
8288         * object.c: generalized the reference bitmap creation
8289         and added hooks for the new GC.
8290         * class-internals.c: removed the gc_bitmap field from MonoClass.
8291
8292 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8293
8294         * domain.c: help the compiler to produce better code
8295         in mono_jit_info_table_find ().
8296
8297 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8298
8299         * object.c: make all allocations look typed.
8300
8301 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8302
8303         * socket-io.c: load Mono.Posix if it's not loaded already
8304         (fixes bug#73033).
8305
8306 2005-02-24  Martin Baulig  <martin@ximian.com>
8307
8308         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
8309         * reflection.c (dup_type): Likewise.
8310
8311 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
8312
8313         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
8314         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
8315
8316 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8317
8318         * domain.c, threads.c, object-internals.h: make the critical thread
8319         local vars use the fast access mode (even when we're compiled in
8320         a lib). Provide accessors to be used by the jit during codegen.
8321
8322 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8323
8324         * appdomain.c: Changed hook functios behavior to include
8325         support for the reflection only assemblies. Some icalls were changed
8326         to support the mentioned assemblies too. Signatures of static methods
8327         try_assembly_resolve and real_load now have an additional parameter:
8328         refonly.
8329
8330         * assembly.c: General changes to mono_assembly_ methods to support
8331         reflection only api. Functions mono_assembly_open, mono_assembly_load,
8332         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
8333         suffix, to support an additional gbool parameter to specify whether
8334         the assembli is reflection only or not. Created some new hook functions 
8335         to add support for reflection only assemblies. Signatures of static 
8336         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
8337         have now an additional parameter: refonly.
8338
8339         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
8340         indicating whether the assembly is reflection only or not.
8341
8342         * exception.c: Add mono_get_exception_invalid_operation.
8343
8344         * icall.c: Throw an InvalidOperationException when trying to invoke
8345         a property/method/event, or trying to set/get the value of a field.
8346         Also add an icall to retrieve the ref_only flag to the
8347         MonoReflectionAssembly.
8348
8349 2005-02-23  Chris Toshok  <toshok@ximian.com>
8350
8351         Part of fix for #72827.
8352         * mono-debug.c (mono_debug_add_method): add lexical block data to
8353         the info we write.  Kind of a hack at the moment - we copy the
8354         lexical block info from the MonoDebugMethodInfo to the
8355         MonoDebugMethodJitInfo here, before writing it.
8356         (mono_debug_read_method): read the lexical block info.
8357
8358         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
8359
8360         * debug-mono-symfile.h: add lexical block support.
8361
8362         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
8363         support.
8364
8365 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8366
8367         * loader.c (mono_lookup_pinvoke_call): Fix warning.
8368
8369         * object.c (mono_runtime_free_method): Call mono_free_method () and
8370         put the TODOs there.
8371
8372         * loader.c (mono_free_method): Free up most memory allocated for 
8373         dynamic methods.
8374
8375 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8376
8377         * reflection.c: properly flag a Type argument to a
8378         named custom attr value (bug #72248).
8379
8380 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8381
8382         * reflection.c: reduce code duplication in named custom
8383         attribute encoding.
8384
8385 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
8386
8387         * reflection.c: properly encode custom attrs of type object
8388         (bug #72649).
8389
8390 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
8391
8392         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
8393
8394 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
8395
8396         * socket-io.c: load System.dll if it's not loaded already
8397         (bug #72850 and #70477).
8398
8399 2005-02-21  Martin Baulig  <martin@ximian.com>
8400
8401         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8402         generic instances.
8403
8404 2005-02-21  Martin Baulig  <martin@ximian.com>
8405
8406         * reflection.c (mono_image_build_metadata): We also need to
8407         "fixup" the MethodImpl table after we computed the final method
8408         indices.  Call fixup_methodimpl() to do that.
8409         (fixup_methodimpl): New private method.
8410
8411 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8412
8413         * assembly.c: special case mscorlib.dll (bug#72536),
8414         patch from Carlos Alberto Cortez.
8415
8416 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8417
8418         * threads-types.h threads.c: Fix build bustage.
8419
8420         * threads.c: Use a union for long<->double conversions.
8421
8422         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8423         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8424
8425         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8426         containing the checkpoint call with NOT_TAKEN.
8427         
8428         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8429         checkpoint before pushing the arguments, so they won't have to be
8430         spilled to stack.
8431
8432 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8433
8434         * domain.c, assembly.c, domain-internals.h: make some data
8435         const and relocation-free.
8436
8437 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8438
8439         * object.c, appdomain.c, class-internals.h: introduce the
8440         MonoClassRuntimeInfo structure to hold the info needed to
8441         use a class at runtime. Made mono_class_vtable() lock-free
8442         for all the appdomains.
8443
8444 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8445
8446         * metadata-internals.h, image.c: introduce a per-image mempool to
8447         be used for memory that has the same lifetime as the image.
8448
8449 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8450
8451         * domain.c: In mono_init_internal(), instead of selecting the first
8452         runtime version supported by an executable, get a list of all
8453         supported versions and select the one for which an mscorlib exists
8454         (since even if the runtime supports a given version, it doesn't mean
8455         that the framework for that version is installed).
8456         Modified get_runtimes_from_exe to support this behavior.
8457         In supported_runtimes, added information about additional system
8458         assembly versions.
8459         
8460         * assembly.c: Added support for more than one system assembly version
8461         per runtime version. Updated the assembly list.
8462         In mono_assembly_remap_version, removed the initial version check,
8463         since we don't know to which version we need to compare until we
8464         get the version set on which the assembly is based.
8465         Moved the code for loading corlib into the new method
8466         mono_assembly_load_corlib(), so it can be used by the initialization
8467         code.
8468         
8469         * domain-internals.h: Updated data structures and added declaration
8470         for mono_assembly_load_corlib.
8471
8472 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8473
8474         * reflection.c (resolve_object): Fix the creation of the signature in 
8475         the SignatureHelper case.
8476
8477         * assembly.c (mono_assembly_remap_version): Fix binary search.
8478         
8479 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8480  
8481         * class.c: Added inheritance check when a method is overloaded (from a
8482         virtual method or when implementing an interface) and when a class is
8483         inherited. Added functions to set a failure for a class and to 
8484         retreive the exception from a failure.
8485         * class-internals.h: Added fields to MonoClass to keep the exception
8486         information status for inheritance (or other exceptions) to be thrown
8487         later (i.e. not at load time).
8488         * object.c: Throw the inheritance SecurityException when a type is to 
8489         be created with either class or method inheritance violations.
8490         * reflection.c|h: Fix when getting declsec from a class. Removed 
8491         unrequired code for class. Improved sanity in parameter naming.
8492         * security-manager.c|h: Added functions to check for class and method
8493         inheritance.
8494
8495 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8496
8497         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8498         and has_finalize in dynamic types as well.
8499
8500 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8501
8502         * culture-info-table.h : fixed currency format for en-GB (and so on).
8503
8504 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8505
8506         * gc.c: ensure the GC handles never have 0 as a value.
8507
8508 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8509
8510         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8511         a pointer to a struct to unmanaged code. Fixes #72625.
8512
8513 2005-02-16  Martin Baulig  <martin@ximian.com>
8514
8515         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8516
8517 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8518
8519         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8520
8521 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8522
8523         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8524
8525         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8526         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8527         etc. Fixes #71471.
8528
8529         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8530
8531         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8532
8533 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8534
8535         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8536         changes to make the current context a field in MonoThread.
8537
8538 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8539
8540         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8541         the last change.
8542         
8543         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8544         extracted from mono_marshal_get_native_wrapper.
8545
8546         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8547         to create wrappers around native functions.
8548
8549         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8550         delegates for arbitrary function pointers. Fixes #71472.
8551
8552 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8553
8554         * threads.c: cleaned up the code a little.
8555
8556 2005-02-15  Martin Baulig  <martin@ximian.com>
8557
8558         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8559         the data table.
8560
8561         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8562         allocate larger chunks if needed.
8563
8564 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8565
8566         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8567         in by mistake.
8568
8569 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8570
8571         * domain.c: keep the domains in an array and ensure the domain ids
8572         are kept small, so they can be used as indexes to domain-specific data
8573         with a small memory overhead.
8574
8575 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8576
8577         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8578
8579 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8580
8581         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8582
8583 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8584
8585         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8586
8587         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8588         values.
8589
8590         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8591         
8592 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8593
8594         * domain-internals.h: add the hashtable here.
8595
8596         * class-internals.h: Remove `info' from MonoMethod
8597
8598         * domain.c: Add a new hashtable, jit_trampoline_hash
8599
8600 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8601
8602         * object.c: don't set the value of static fields
8603         (fixes bug#72494).
8604
8605 2005-02-11  Martin Baulig  <martin@ximian.com>
8606
8607         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8608         (mono_debug_add_method): Silently ignore the method if it's too big.
8609         (mono_debug_add_type): Likewise.
8610
8611 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8612
8613         * threads.c, appdomain.c: remove #ifdefs from the code.
8614
8615 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8616
8617         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8618         common security informations. This allows us to stay in unmanaged code
8619         when doing LinkDemand and it's special cases (except for the first 
8620         time for initialization). The flags a very much used with --security.
8621         * reflection.c|h: Added code to get declarative security attributes 
8622         for LinkDemand and InheritanceDemand. This required to refactor the
8623         existing code for Demand.
8624         * security-manager.c|h: Added new method fields for the special cases
8625         of LinkDemand.
8626
8627 2005-02-10  Martin Baulig  <martin@ximian.com>
8628
8629         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8630         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8631
8632 2005-02-10  Martin Baulig  <martin@ximian.com>
8633
8634         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8635         debugging code; this is almost a complete rewrite.
8636
8637         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8638
8639 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8640
8641         * domain.c, object.h: expose mono_string_equal () and 
8642         mono_string_hash ().
8643         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8644         it's implemented in managed code.
8645
8646 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8647
8648         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8649         lo leak objects between appdomains.
8650
8651 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8652
8653         * assembly.c: old compilers compilation fix from 
8654         robertj@gmx.net (Robert Jordan).
8655
8656 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8657
8658         * class-internals.h: Little reminder for the future.
8659
8660         * debug-helpers.c: Fix up wrapper_type_names
8661
8662 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8663
8664         * image.c, metadata-internals.h: when loading an image from a file,
8665         mmap all of it and use the same codepaths as when using a
8666         in-memory image: the code is simpler and we use less memory
8667         (both writable and readonly).
8668
8669 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8670
8671         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8672         API to alloc runtime data structures that need to be tracked by the
8673         GC and contain pointers.
8674         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8675         make the code more readable and eventually use a different GC.
8676
8677 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8678
8679         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8680         for out arguments.
8681         
8682 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8683
8684         * object.c: In release_type_locks(), don't release the cctor lock
8685         if it has already been released. This fixes a crash in the
8686         thread5 test.
8687
8688 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8689
8690         * gc.c, marshal.c, icall.c: register a delegate for finalization
8691         only when the native function pointer has been allocated for it.
8692
8693 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8694
8695         * object.c: cleaned up some code, allocate objects that are
8696         pointer free with the atomic malloc variant. Allocate memory
8697         for static data from the mempool if it's pointer-free.
8698         Allocate the bounds array at the end of the array data, when needed.
8699         * object-internals.h, object.h: move a private function in a private
8700         header.
8701         * class.c: handle missing case in tracking references in fields.
8702
8703 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8704
8705         * class.c, class-internals.h: keep track if a type has
8706         reference fields in either the instance or static fields.
8707
8708 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8709
8710         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8711         and renamed to MonoRuntimeInfo. Added fields to store the expected
8712         framework assembly version. Changed mono_get_framework_version and
8713         mono_get_runtime_version for a single mono_get_runtime_info method.
8714         
8715         * assembly.c: Added method to remap system assembly versions to the
8716         current executing runtime version. Removed old mapping code.
8717         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8718         
8719         * icall.c, reflection.c: Track api changes.
8720
8721 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8722
8723         * loader.c (method_from_memberref): Improve error reporting,
8724         produce the class name instead of the typeref/typedef index. 
8725
8726 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8727
8728         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8729
8730 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8731
8732         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8733         stdcall and charset name mangling.  Reorganize the code and add
8734         some tracing stuff.
8735
8736 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8737
8738         * monodiet.c: More iters!
8739
8740         * marshal.c: Iter usage.
8741
8742         * icall.c: Iter usage.
8743
8744         * object.c: Use iters.
8745
8746         * debug-helpers.c: More iters
8747
8748 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8749
8750         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8751         under win32.
8752
8753 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8754
8755         * mono-debug-debugger.c: use iters
8756
8757         * class.c, class-internals.h: mono_class_setup_events is static
8758         now
8759
8760         * All callers: use iters
8761
8762 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8763
8764         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8765         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8766
8767 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8768
8769         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8770
8771         * marshal.h: Add prototypes for ldfld/stfld_remote.
8772
8773         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8774         this is called during startup.
8775         
8776 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8777
8778         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8779         MonoThreadsSync struct private in monitor.c. Changed the way
8780         MonoThreadsSync is allocated so it's faster and there is no
8781         need to keep track of it with a finalizer and it uses less memory.
8782         This also finally allows us to allocate mono objects as ptrfree when
8783         there are no reference fields.
8784
8785 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8786
8787         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8788         disappearing link to the GC interface and use them to simplify
8789         the gchandles code.
8790
8791 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8792
8793         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8794         stfld_remote which call mono_load/store_field_new. This allows methods
8795         calling ldfld/stfld wrappers to be AOTed.
8796
8797         * console-io.c: Include sys/filio.h under solaris.
8798         
8799         * console-io.c: Include curses.h if needed correctly.
8800
8801 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8802         
8803         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8804         method->klass as well.
8805
8806         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8807
8808         * class.c (mono_class_init): Switch on lazy initialization of 
8809         methods.
8810
8811         * class.c (mono_class_get_finalizer): Handle the case when the 
8812         finalizer is inherited.
8813
8814 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8815
8816         * console-io.c: <curses.h> is needed by term.h on solaris.
8817
8818 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8819
8820         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8821         mono_class_setup_properties where possible. Remove this ftn from
8822         the header file, and make it static.
8823
8824 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8825
8826         * loader.c: Add missing setup_... call.
8827
8828         * class.c: Add missing setup_... calls.
8829
8830         * class.c (mono_class_init): Switch on lazy initialization of 
8831         the generic vtable.
8832         
8833         * class.c (mono_class_init): Fix generics broken by the recent changes.
8834
8835         * monodiet.c (handle_type): Add missing setup_... calls.
8836
8837         * class.c: Back out garbage in previous patch.
8838         
8839         * class.c: Add missing setup_... calls.
8840
8841         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8842         mono_class_setup_methods () if possible.
8843
8844         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8845
8846         * class-internals.h (MonoCachedClassInfo): New structure.
8847
8848         * class.c: Initialize properties and events fields of MonoClass lazily.
8849
8850         * class.c: Add infrastructure for lazily initializing the methods and
8851         vtable fields of MonoClass. Not yet used.
8852
8853         * class.c (mono_class_get_finalizer): New helper function.
8854
8855         * class.c: Add infrastructure for loading some class related data from
8856         an AOT file.
8857
8858         * object.c: Add infrastructure for initializing the vtable from data
8859         in the AOT file.
8860
8861         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8862
8863         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8864         appropriate initialization function before accessing parts of the
8865         MonoClass structure.
8866
8867         * marshal.c: Fix warnings.
8868         
8869         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8870
8871         * mono-debug-debugger.c (get_exception_message): Use 
8872         mono_class_get_method_from_name_flags ().
8873
8874 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8875
8876         * reflection.c, appdomain.c: Replace a few manual searches that
8877         Zoltan missed. (Paolo approved this part of my initial patch).
8878
8879 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8880
8881         * profiler.c: disable recording statistical events at report time.
8882
8883 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8884
8885         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8886         to byteswap arrays of enum values, too (bug #72080).
8887
8888 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8889
8890         * appdomain.c (set_domain_search_path): Allow this to be called if
8891         domain->setup is not yet set.
8892
8893         * loader.c (mono_method_get_index): New helper function.
8894
8895         * loader.c reflection.c: Use mono_method_get_index ().
8896
8897         * class.c (mono_class_get_method_from_name_flags): New helper method.
8898
8899         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8900         this.
8901
8902         * class.c (mono_class_get_cctor): New helper method.
8903
8904         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8905         mono_class_get_method () to look up methods.
8906
8907 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8908
8909         * console-io.c: Fix the build, this should work on Windows.
8910
8911 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8912
8913         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8914         be set to null to keep things valid
8915
8916 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8917
8918         * icall.c: added Console 2.0 icalls.
8919         * Makefile.am: added console-io.[ch]
8920         * console-io.[ch]: internal calls for Console 2.0 API.
8921
8922 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8923
8924         * class.c: make sure we consider all the interfaces
8925         when calculating max_interface_id (bug found by
8926         Jeroen Frijters running ikvm).
8927
8928 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8929
8930         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8931         valuetype fields to null.
8932
8933         * object.c (set_value): Ditto. Fixes #71669.    
8934
8935 2005-01-31  Martin Baulig  <martin@ximian.com>
8936
8937         * metadata.c (mono_metadata_has_generic_params): New public
8938         function; checks whether something is a generic method.
8939
8940 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8941
8942         * appdomain.c: fix infinite recursion when adding assemblies.
8943
8944 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8945
8946         * object.c: Fix small typo to return all items for Environment.
8947         GetCommandLineArgs.
8948
8949 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8950
8951         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8952         reflection.c: more domain and assembly-unload related fixes
8953         and memory leaks plugs.
8954
8955 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8956
8957         * 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.
8958
8959 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8960
8961         * loader.c (mono_method_signature): Make this method lazy
8962         (mono_get_method_from_token): Don't computate the signature here.
8963
8964         Doing this saves quite a bit of memory. I got 90 kb on starting up
8965         monodoc. It should also save some disk reads on startup.
8966
8967         * *: MonoMethod->signature might be NULL now. You *MUST* use
8968         mono_method_signature.
8969
8970 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8971
8972         * object.c (mono_runtime_get_main_args): Return an array from the
8973         current domain here. Fixes #71938.
8974
8975 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8976
8977         * monitor.c: formatting changes to comply with the
8978         mono coding style and remove #ifdefs from the code.
8979
8980 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8981
8982         * metadata.c, private.h: remove some unneeded data
8983         and use a more compact representation for table schemas.
8984
8985 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8986
8987         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8988         to get a better distribution in hash tables.
8989         * *.c: use mono_aligned_addr_hash() where appropriate.
8990         * assembly.c: make var static.
8991
8992 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8993
8994         * domain-internals.h: Put MonoJitInfo on a diet.
8995
8996         * domain.c: Fix a warning.
8997
8998 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8999
9000         * gc.c: rework the gc handles code to reuse handles
9001         when freed.
9002
9003 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
9004
9005         * domain.c: fixed long standing bug in mono_string_equal() which
9006         was brought to light with the ldstr changes.
9007
9008 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
9009
9010         * reflection.c: Remove warning by adding missing include for marshal.h
9011
9012 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
9013
9014         * domain.c, object.c: change the ldstr_table to hold
9015         MonoString* as keys: makes the runtime isinterned lookup
9016         faster and simplifies memory management.
9017
9018 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
9019  
9020         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
9021         possible to add imperative security checks before calling the icall.
9022         * reflection.c: Return security attributes on the original MonoMethod
9023         (and not the wrapped one). This fix permissions on icalls.
9024
9025 2005-01-25  Dick Porter  <dick@ximian.com>
9026
9027         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
9028         the check for mktime() support actually test the mktime() return
9029         value.  "Fixes" bug 71682, though the output is still different to
9030         MS.
9031
9032 2005-01-25  Martin Baulig  <martin@ximian.com>
9033
9034         * class.c (mono_class_is_assignable_from): Make this work for
9035         generic instances.
9036
9037 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
9038
9039         * marshal.c (mono_string_utf8_to_builder)
9040         (mono_string_builder_to_utf16): We might not have ownership of the
9041         string. In thise case, we need to create a new buffer.
9042
9043         * object-internals.h (mono_stringbuilder_capacity): sb->str might
9044         be null, in which case, use the default capacity.
9045
9046 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
9047
9048         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
9049         GC events to the profiler.
9050
9051 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
9052
9053         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
9054         if you don't want the GC to run.
9055
9056 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
9057
9058         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
9059         start providing a GC API and keeping different implementations in
9060         their own file.
9061         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
9062
9063 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
9064
9065         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
9066         mmap rather than allocating a huge buffer.
9067         (mono_debug_close_mono_symbol_file): Free the buffer allocated
9068         above.
9069
9070 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
9071
9072         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
9073         and CheckExecutionRights.
9074         * reflection.c|h: Keep the index of the declarative security to be 
9075         used, instead of the pointer, when AOT compiler is used. Also add 
9076         class initialization when requesting demands.
9077         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
9078         CheckExecutionRights. Both properties are now FALSE by default, and
9079         unmodifiable, unless the --security option is used.
9080
9081 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9082
9083         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
9084         reflection.c: properly refcount images and assemblies, many leaks fixed.
9085
9086 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9087
9088         * threadpool.c: increase the timeout for threads in the thread pool to
9089         10s.  Fixes bug #67159.
9090
9091 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
9092
9093         * class-internals.h: Sun's compiler insists on explicit
9094         signed on bit fields to handle then correctly.
9095
9096 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
9097
9098         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
9099         Make the size of the array fit only the number of invalid path
9100         chars that we have.
9101
9102         * class.c (_mono_class_get): Improve the error reporting when a
9103         class referenced is not found, to assist debugging. 
9104
9105 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
9106
9107         * threads.c: fix off-by-one error.
9108         * domain.c: free data allocated in the domain.
9109
9110 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9111
9112         * reflection.c (mono_method_body_get_object): Fill out exception info
9113         as well.
9114
9115         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
9116         structure.
9117         
9118 2005-01-19  Martin Baulig  <martin@ximian.com>
9119
9120         * loader.c (mono_get_method_constrained): Make this work again.
9121
9122 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
9123
9124         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
9125         guint16 to match the managed side.
9126
9127         * reflection.c (mono_reflection_body_get_object): Fill out local
9128         variables array.
9129
9130         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
9131         as well.
9132
9133         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
9134         'local_var_sig_token'.
9135
9136 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
9137
9138         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
9139         System.Drawing.
9140
9141         * reflection.c (mono_method_body_get_object): Handle abstract and
9142         runtime methods.
9143
9144 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
9145
9146         * marshal.c, loader.c, class-internals.h, reflection.c:
9147         store the emthod data for a wrapper in an array instead of a list.
9148
9149 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
9150
9151         * marshal.c: change the code to allocate memory more
9152         conservatively for method wrappers.
9153
9154 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
9155
9156         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
9157         fields from MonoClass to the marshal info structure where they belong.
9158
9159 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
9160
9161         * class.c, object.c, class-internals.h, marshal.c: rearrange
9162         some fields and tweak some types to lower memory usage.
9163
9164 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
9165
9166         * threads.c (signal_thread_state_change): Handle the case when the
9167         target thread is the current thread.
9168
9169         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
9170
9171         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
9172         emit_ptr_to_object_conv. 
9173
9174         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
9175         marshalling. Fixes #71352.
9176
9177 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
9178
9179         * metadata.h, blob.h: move table enum to blob.h so it can be included
9180         in any header.
9181         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
9182         cut the size of MonoImage/MonoDynamicImage.
9183
9184 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
9185
9186         * profiler.c (mono_profiler_install_simple): Fix default arguments.
9187
9188 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
9189
9190         * reflection.c, reflection.h, icall.c: add a function to check
9191         if an attribute type is defined for a metadata object.
9192
9193 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
9194
9195         * object-internals.h: Added some needed fields from StringBuilder class.
9196         * marshal.c: Set the maxCapacity when creating a StringBuilder.
9197
9198 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
9199
9200         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
9201         threads before shutting down the runtime.
9202
9203         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
9204
9205 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
9206
9207         * object-internal.h, threads.c: implement stacksize and 
9208         parameterized thread start functionality (requires
9209         matching corlib). Marked broken code for later removal.
9210
9211 2005-01-12  Martin Baulig  <martin@ximian.com>
9212
9213         * class-internals.h (MonoGenericClass): Moved the `initialized'
9214         flag to MonoDynamicGenericClass, removed `init_pending'.
9215         (MonoGenericInst): Added `is_reference' flag.
9216
9217 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
9218
9219         * reflection.c (mono_image_create_pefile): Only set the pe_offset
9220         inside the MSDOS header. Fixes #71201.
9221
9222         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
9223         gc thread.
9224         (mono_domain_finalize): Ditto.
9225
9226 2005-01-12  Martin Baulig  <martin@ximian.com>
9227
9228         * class.c (mono_get_shared_generic_class): Use the cache for
9229         non-dynamic generic classes.
9230
9231         * class-internals.h (mono_class_create_generic_2): Removed
9232         function prototype, this function is now static inside class.c.
9233
9234         * class.c (mono_class_create_generic_2): Made this static, only
9235         call it from mono_class_init() and mono_class_setup_parent().
9236         (collect_implemented_interfaces_aux): Call mono_class_init() on
9237         the interfaces we collect.
9238         (mono_class_setup_vtable): Call mono_class_init (class->parent).
9239
9240 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9241
9242         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
9243         it a real thread handle.
9244
9245         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
9246         MonoJitExceptionInfo, since each catch clause needs its own variable.
9247         
9248 2005-01-11  Dick Porter  <dick@ximian.com>
9249
9250         * image.c (mono_pe_file_open): New variant on mono_image_open()
9251         that does not set up the CLI metadata; used for FileVersionInfo so
9252         it can get the data for windows binaries too.
9253         
9254         * process.c (process_read_string_block): Don't read off the end of
9255         the StringTable block.
9256
9257         These both fix bug 70766.
9258
9259 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
9260
9261         * gc.c: set some fields to NULL at GC cleanup time.
9262         * threads.c: if we quit the main thread, call exit ().
9263
9264 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
9265
9266         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
9267
9268 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
9269
9270         * threads.h, threads.c, object.c: added accessor and settor for
9271         main_thread. Handle it specially when exiting from it: wait
9272         for other foreground threads to exit.
9273
9274 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
9275
9276         * process.c, verify.c: remove some bloat.
9277
9278 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
9279
9280         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
9281         the calling convention to cdecl under win32.
9282
9283 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
9284
9285         * object.c (mono_object_get_size): New function to get the size of
9286         an object instance.
9287
9288         * profiler.c (simple_allocation): Use above.
9289
9290 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
9291
9292         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
9293         ves_icall_System_AppDomain_getRootDomain (as it's not required to
9294         get an appdomain by it's id and we can't assume the root's id is 0).
9295         * domain-internals.h: Change the function prototype to match.
9296         * icall.c: Change the icall table for AppDomain.
9297
9298 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
9299
9300         * locales.c (string_invariant_compare_char): Only compute
9301         GUnicodeTypes in the case where we need them.  Test for ordinality
9302         first and return if so.
9303
9304         From the commit:
9305
9306                 /*
9307                  * FIXME: here we must use the information from c1type and c2type
9308                  * to find out the proper collation, even on the InvariantCulture, the
9309                  * sorting is not done by computing the unicode values, but their
9310                  * actual sort order.
9311                  */
9312
9313 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
9314
9315         * loader.c: for P/Invoke methods, allow the "Internal" shared
9316         library name to refer to the calling process symbol namespace.
9317
9318 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
9319
9320         * Makefile.am: Add the security manager to the build.
9321         * security-manager.c|h: New. Initialization of the security manager.
9322
9323 2005-01-07  Dick Porter  <dick@ximian.com>
9324
9325         * threads.c: 
9326         * monitor.c: Update thread state during Monitor and WaitHandle
9327         waits.  Fixes bug 71031.
9328
9329 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
9330
9331         * reflection.c (property_encode_signature): Correctly handle when the
9332         property has no methods.
9333
9334 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
9335
9336         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
9337         
9338         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
9339         fields from mb, not rmb. Fixes #71017.
9340
9341         * marshal.c (emit_ptr_to_str_conv): Add support for 
9342         ByValTStr -> string conversion. Fixes #71015.
9343
9344         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
9345
9346         * mempool.c (mono_mempool_contains_addr): New helper function.
9347
9348 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9349
9350         * metadata.c (mono_metadata_compute_size): Fix size calculation of
9351         HasSematics encoded fields.
9352         
9353         * metadata.c (mono_type_to_unmanaged): Improve error message for 
9354         invalid string marshalling.
9355
9356         * metadata.c: Fix warnings.
9357         
9358 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
9359
9360         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
9361         profiler support.
9362
9363 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
9364
9365         * domain.c object.c domain-internals.h: Revert part of r38077 since the
9366         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
9367         tests.
9368
9369 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
9370
9371         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
9372         so methods containing these can be AOTed.
9373
9374 2005-01-03  Martin Baulig  <martin@ximian.com>
9375
9376         * loader.c (find_method): Removed the hack for generic instances.
9377         (method_from_memberref): If our parent is a generic instance, pass
9378         its generic type definition to find_method() and then inflate the
9379         method.
9380         (mono_get_method_constrained): Pass the generic type definition to
9381         find_method() and inflate the method later.
9382
9383         * class-internals.h (MonoStats): Added `generic_class_count'.
9384
9385         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
9386         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
9387
9388         * reflection.c (mono_custom_attrs_from_params): Don't ignore
9389         generic type definitions.
9390
9391 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
9392
9393         * loader.c icall.c: Fix warnings.
9394
9395 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
9396
9397         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9398         blittable types. Fixes #70864.
9399
9400 2004-12-29  Martin Baulig  <martin@ximian.com>
9401
9402         * icall.c
9403         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9404
9405         * reflection.c (mono_method_get_object): Create a
9406         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9407         call mono_get_inflated_method().
9408
9409         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9410
9411 2004-12-27  Martin Baulig  <martin@ximian.com>
9412
9413         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9414         (MonoMethodInflated): Added `inflated' field.
9415
9416         * class.c (mono_class_inflate_generic_method): Don't really
9417         inflate the method here; just set the `is_inflated' flag in the
9418         MonoMethod.
9419         (mono_class_get_inflated_method): Actually inflate the method here
9420         if it's not already inflated; we use the MonoMethodInflated's new
9421         `inflated' field as a cache.
9422
9423 2004-12-26  Martin Baulig  <martin@ximian.com>
9424
9425         * class.c
9426         (inflate_generic_class): Moved some code out of inflate_generic_type().
9427         (mono_class_inflate_generic_method): If we're already inflated,
9428         inflate the context and use the declaring method; ie. make sure
9429         the declaring method of an inflated method is always the generic
9430         method definition.
9431         (mono_class_create_from_typedef): Create
9432         `class->generic_container->context->gclass'.
9433
9434 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9435
9436         * metadata-internals.h, marshal.c, reflection.c: More
9437         MonoGHashTable->GHashTable.
9438
9439         * domain-internals.h, class.c: Change MonoGHashTable's into
9440         GHashTables for some cases where no gc stuff is used
9441
9442         All users: update apis
9443
9444 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9445
9446         * metadata.c (builtin_types): Make this `const'. Makes this get
9447         put into the shareable section.
9448         (mono_metadata_init): Casts to make gcc happy.
9449
9450 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9451
9452         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9453
9454 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9455
9456         * icall.c: Added an internal call to retrieve the position and length
9457         of assembly-level declarative security attributes (RequestMinimum, 
9458         RequestOptional and RequestRefuse). This is used by the Assembly class
9459         to re-create the corresponding permission sets.
9460
9461 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9462
9463         * marshal.c: fix the stelemref wrapper to be type correct
9464         (and faster).
9465
9466 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9467
9468         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9469         to do key & 0x7fffffff. Hashtable already does this. It just
9470         results in longer code.
9471
9472 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9473
9474         * appdomain.c: Bump corlib version.
9475         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9476         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9477         * reflection.c|h: Add functions to get declarative security infos
9478         (blob position and length) for assemblies, classes and methods.
9479
9480 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9481
9482         * reflection.c: sort the constant table (bug #70693).
9483
9484 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9485
9486         * object-internals.h, threads.c, domain.c: add accessors for
9487         the MonoThread and MonoDomain tls keys.
9488
9489 2004-12-18  Martin Baulig  <martin@ximian.com>
9490
9491         * class.c (inflate_generic_type): If we're inflating a generic
9492         instance, set `ngclass->context->container = context->container';
9493         ie. the container we inflated into.
9494
9495         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9496         inflate_generic_type() changes.
9497
9498 2004-12-17  Martin Baulig  <martin@ximian.com>
9499
9500         * class-internals.h
9501         (MonoGenericClass): Replaced `MonoType *generic_type' with
9502         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9503         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9504         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9505
9506 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9507
9508         * exception.c (mono_exception_from_token): New helper function.
9509
9510 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9511
9512         * assembly.c (mono_assembly_load_with_partial_name): Call 
9513         mono_assembly_loaded before invoking the preload hooks. Fixes
9514         #70564.
9515
9516         * object-internals.h (MonoThread): Change culture_info and 
9517         ui_culture_info into an array.
9518
9519         * threads.c: Cache culture info objects from more than one appdomain.
9520
9521         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9522         current UI culture.
9523
9524 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9525
9526         * threads.h threads.c appdomain.c: Clear the culture_info field of
9527         all threads during unloading if they point to an object in the dying
9528         appdomain.
9529
9530 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9531
9532         * culture-info.h (TextInfoEntry): New struct
9533         * object-internals.h: sync with managed
9534         * locales.c: fill the `text_info_data' field
9535         * culture-info-tables.h: update
9536
9537 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9538
9539         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9540         collector.
9541
9542 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9543
9544         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9545         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9546
9547 2004-12-12  Martin Baulig  <martin@ximian.com>
9548
9549         * mono-debug-debugger.c (write_type): If we're an enum and the
9550         builtin types have already been initialized, call mono_class_init().
9551
9552 2004-12-11  Martin Baulig  <martin@ximian.com>
9553
9554         * metadata.c (mono_metadata_load_generic_params): Added
9555         `MonoGenericContainer *parent_container' argument; automatically
9556         compute `container->is_method'; pass the correct owner to
9557         get_constraints().      
9558
9559         * reflection.c (compare_genericparam): Sort the GenericParam table
9560         according to increasing owners. 
9561
9562 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9563
9564         * profiler.c: allow disabling the default profiler.
9565
9566 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9567
9568         * decimal.c, icall.c: allow disabling System.Decimal support.
9569
9570 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9571
9572         * reflection.c: Add support for null attribute arguments.
9573
9574 2004-12-09  Martin Baulig  <martin@ximian.com>
9575
9576         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9577         names to get rid of compiler warnings.
9578
9579 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9580
9581         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9582         mono_marshal_load_type_info (). Fixes #69625.
9583         (mono_marshal_get_ptr_to_struct): Likewise.
9584
9585 2004-12-08  Martin Baulig  <martin@ximian.com>
9586
9587         * mono-debug.h: Bumped version number to 47.
9588
9589         * mono-debug-debugger.c
9590         (mono_debugger_event_handler, mono_debugger_event): Take two
9591         guint64 arguments insteed of a gpointer and a guint32.  
9592
9593 2004-12-08  Martin Baulig  <martin@ximian.com>
9594
9595         * debug-mono-symfile.h
9596         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9597         `address' to `native_offset'.
9598
9599 2004-12-08  Martin Baulig  <martin@ximian.com>
9600
9601         * class.c (mono_class_create_from_typespec): Only inflate if we
9602         either have `context->gclass' or `context->gmethod'.
9603
9604 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9605
9606         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9607
9608         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9609
9610         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9611
9612         * reflection.c (mono_assembly_get_object): Remove the workaround put
9613         in for the release.
9614         
9615         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9616
9617         * appdomain.c: Bump corlib version.
9618
9619         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9620         be visible in other appdomains.
9621
9622 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9623
9624         * threads.c: Interlocked inc and dec for longs were messed up,
9625         use a KISS based impl for this. Fixes 70234
9626
9627 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9628
9629         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9630
9631 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9632
9633         * icall.c: fix to follow policy not to allow struct
9634         arguments in icalls.
9635
9636 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9637
9638         * process.c: make the patch that handles spaces in file paths work
9639         on mono/windows too.
9640
9641 2004-12-06  Martin Baulig  <martin@ximian.com>
9642
9643         * class.c (mono_class_create_generic): Call
9644         mono_class_setup_supertypes() if we're dynamic.
9645         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9646
9647 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9648
9649         * object-internals.h: Add new fields to MonoThread.
9650
9651         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9652
9653         * icall.c threads-types.h threads.c: Add new icalls.
9654
9655         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9656
9657         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9658         managed side.
9659
9660         * appdomain.c: Bump corlib version.
9661
9662         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9663         internal assemblies. Fixes #69181.
9664
9665 2004-12-05  Martin Baulig  <martin@ximian.com>
9666
9667         * class.c (mono_class_inflate_generic_signature): Make this a
9668         no-op if `context' is NULL or we don't have any type parameters;
9669         also copy `sentinelpos'.        
9670
9671 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9672
9673         * image.c: Add unbox_wrapper_cache.
9674
9675         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9676
9677         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9678         function generator.
9679         
9680         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9681         Fixes #70173.
9682
9683         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9684         
9685 2004-12-04  Martin Baulig  <martin@ximian.com>
9686
9687         * loader.c (mono_method_get_signature_full): New public function;
9688         like mono_method_get_signature(), but with an additional
9689         `MonoGenericContext *' argument.
9690
9691         * class.c (mono_class_inflate_generic_signature): Formerly known
9692         as inflate_generic_signature(); make this public.
9693
9694 2004-12-04  Martin Baulig  <martin@ximian.com>
9695
9696         * metadata.c
9697         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9698         instead of a `MonoGenericContainer *'.  
9699         (mono_metadata_parse_array_full): Likewise.
9700         (mono_metadata_parse_signature_full): Likewise.
9701         (mono_metadata_parse_method_signature_full): Likewise.
9702         (mono_metadata_parse_generic_inst): Likewise.
9703         (mono_metadata_parse_generic_param): Likewise.
9704         (mono_metadata_parse_mh_full): Likewise.
9705         (mono_type_create_from_typespec_full): Likewise.
9706
9707 2004-12-03  Martin Baulig  <martin@ximian.com>
9708
9709         * class-internals.h (MonoGenericContainer): Replaced the
9710         `MonoGenericContext * pointer with a `MonoGenericContext'
9711         structure and made it the first element.
9712
9713 2004-12-03  Martin Baulig  <martin@ximian.com>
9714
9715         * class.c
9716         (inflate_generic_type): Set the `context->container' when creating
9717         a new MonoGenericContext.
9718         (mono_class_inflate_generic_method): Likewise.
9719         (mono_class_create_from_typespec): Just use `context->container'
9720         to get the container.
9721
9722         * loader.c (method_from_methodspec): Set `context->parent' from
9723         `context->container' - and if that's a method container, use its
9724         parent.  Also set the `context->container' when creating a new
9725         MonoGenericContext.
9726         (mono_get_method_from_token): Use just `context->container' to get
9727         the container.
9728
9729         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9730         `gclass->context->container'.
9731
9732         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9733         the `context->container' when creating a new MonoGenericContext.
9734
9735 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9736
9737         * reflection.c (compare_genericparam): Sort params with identical
9738         owner by their number. Fixes gen-111 on sparc.
9739
9740 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9741
9742         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9743         around the domain changes.
9744
9745         * appdomain.c (mono_domain_unload): Handle the case when the thread
9746         calling Unload is itself being aborted during unloading. Fixes #70022.
9747
9748         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9749
9750         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9751         checkpoint_func as an icall so it gets a wrapper.
9752         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9753         in the cross-appdomain wrappers too.
9754
9755         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9756
9757         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9758
9759         * reflection.c: Fix some memory leaks.
9760         
9761 2004-12-02  Martin Baulig  <martin@ximian.com>
9762
9763         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9764
9765         * metadata.c (generic_class_cache): New static hashtable.
9766         (mono_metadata_lookup_generic_class): New public method.
9767
9768 2004-12-02  Martin Baulig  <martin@ximian.com>
9769
9770         * class.c (mono_class_create_from_typedef): Call
9771         mono_class_setup_parent() and mono_class_create_mono_type() before
9772         parsing the interfaces.
9773
9774 2004-12-02  Martin Baulig  <martin@ximian.com>
9775
9776         * metadata.c (generic_inst_cache): New static hashtable.
9777         (mono_metadata_lookup_generic_inst): New public function.
9778         (mono_metadata_inflate_generic_inst): New public function.
9779         (mono_metadata_parse_generic_inst): New public function.
9780         (do_mono_metadata_parse_generic_class): Use the new
9781         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9782         since this'll also use the cache.
9783
9784         * reflection.c (mono_reflection_bind_generic_method_parameters):
9785         Use mono_metadata_lookup_generic_inst() to use the new cache.
9786
9787         * class.c (inflate_mono_type): Use
9788         mono_metadata_inflate_generic_inst() to inflate a generic
9789         instance; this'll also use the new cache.
9790
9791         * loader.c (method_from_methodspec): Use
9792         mono_metadata_parse_generic_inst() and
9793         mono_metadata_inflate_generic_inst() rather than parsing it
9794         manually, so we can use the new cache.
9795
9796 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9797
9798         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9799         the wait times out.
9800
9801 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9802
9803         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9804         iter->args based on whether parameters are passed in registers (i.e.
9805         MONO_ARCH_REGPARMS is defined)
9806
9807 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9808
9809         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9810         the exception message. Fixes #70070.
9811         (method_from_methodspec): Fix warnings.
9812
9813 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9814
9815         * process.c: (complete_path) return the path quoted
9816
9817 2004-12-01  Martin Baulig  <martin@ximian.com>
9818
9819         * class-internals.h (MonoGenericInst): New structure.
9820         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9821         `is_open' with `MonoGenericInst *inst'.
9822         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9823         `is_open' with `MonoGenericInst *inst'.
9824
9825 2004-11-30  Martin Baulig  <martin@ximian.com>
9826
9827         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9828
9829         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9830         to `generic_class_cache'.
9831
9832         * metadata.c
9833         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9834         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9835         (mono_generic_inst_is_valuetype): Renamed to
9836         mono_generic_class_is_valuetype().
9837
9838         * class-internals.h
9839         (MonoGenericInst): Renamed to MonoGenericClass.
9840         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9841         (MonoClass): Renamed `generic_inst' to `generic_class'.
9842         (MonoGenericContext): Renamed `ginst' to `gclass'.
9843
9844         * object-internals.h
9845         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9846
9847         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9848         mono_reflection_generic_class_initialize().
9849
9850         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9851         now known as "System.Reflection.MonoGenericClass".
9852         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9853
9854 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9855
9856         * class-internals.h: Added a flag field to MonoClass to cache the
9857         declarative security attributes actions associated with the class.
9858         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9859         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9860         applicable to the JITted method.
9861         * reflection.c|h: Added functions to extract (as flags) which security
9862         actions are available (declaratively) for a method, class or assembly.
9863         * metadata.c|h: Added functions to search the declarative security
9864         table in the metadata.
9865         
9866 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9867
9868         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9869         EXPORTEDTYPES are already in the class name cache, so there is no
9870         need to add extra code here to look at them. Just removes a bit of
9871         cruft.
9872
9873         (ves_icall_System_Environment_get_TickCount): No need for #if
9874         WINDOWS. We already have the code in io-layer.
9875
9876 2004-11-28  Martin Baulig  <martin@ximian.com>
9877
9878         * loader.c
9879         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9880         Fixes gen-112.cs.
9881
9882 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9883
9884         * assembly.c (do_mono_assembly_open): Instead of having a
9885         conditional WITH_BUNDLE, incorporate support for bundles here, by
9886         having a global `bundles' variable holding a pointer to the actual
9887         bundles. 
9888
9889         (mono_register_bundled_assemblies): New API call used by the
9890         bundle code. 
9891
9892         See mkbundle.1 for details.
9893         
9894 2004-11-27  Martin Baulig  <martin@ximian.com>
9895
9896         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9897         the vtable for generic methods.
9898
9899 2004-11-26  Martin Baulig  <martin@ximian.com>
9900
9901         * metadata.c
9902         (mono_metadata_generic_method_hash): New public function.
9903         (mono_metadata_generic_method_equal): Likewise.
9904
9905         * class-internals.h
9906         (MonoGenericContainer): Added `GHashTable *method_hash'.
9907
9908         * reflection.c (ReflectionMethodBuilder): Added
9909         `MonoGenericContainer *generic_container'.
9910         (reflection_methodbuilder_to_mono_method): Don't create a new
9911         MonoGenericContainer each time we're called.
9912         (mono_reflection_bind_generic_method_parameters): Use
9913         `container->method_hash' to cache the results so we don't create a
9914         different method if we're called several times with the same
9915         arguments.
9916
9917         * loader.c (method_from_methodspec): Use the new
9918         `container->method_hash' here, too.
9919
9920 2004-11-26  Martin Baulig  <martin@ximian.com>
9921
9922         * class.c (inflate_generic_signature): Correctly compute
9923         `res->has_type_parameters'.
9924         (mono_class_vtable): Use the `has_type_parameters' flag to
9925         determine whether we're a generic method.
9926
9927         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9928
9929 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9930
9931         * object.c (mono_runtime_run_main): Fix a small memory leak.
9932
9933 2004-11-25  Martin Baulig  <martin@ximian.com>
9934
9935         * class.c (set_generic_param_owner): Fixed the loop.
9936
9937 2004-11-25  Martin Baulig  <martin@ximian.com>
9938
9939         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9940         generic methods.
9941
9942 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9943
9944         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9945         names. Fixes #69787.
9946
9947 2004-11-24  Martin Baulig  <martin@ximian.com>
9948
9949         * class.c (mono_class_create_generic_2): If we don't have a
9950         `ginst->parent', inflate `gklass->parent' to get our parent.
9951
9952 2004-11-24  Martin Baulig  <martin@ximian.com>
9953
9954         * reflection.c (compare_genericparam): Correctly sort the
9955         GenericParam table; fixes #69779.
9956
9957 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9958
9959         * reflection.c: When writing a PE file, don't create a huge
9960         buffer in memory. Just write the arrays we have to the file.
9961         This reduces memory usage.
9962
9963         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9964         globally.
9965
9966 2004-11-17  Martin Baulig  <martin@ximian.com>
9967
9968         * class.c (mono_class_init): Don't setup `class->parent' for
9969         dynamic instances; moved this to mono_class_generic_2().
9970         (mono_class_create_generic): Also set `klass->inited' for dynamic
9971         generic instances.
9972         (mono_class_create_generic_2): Don't do anything for dynamic
9973         generic instances.  Set `klass->parent' here and also call
9974         mono_class_setup_parent() here. 
9975
9976         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9977         `MonoType *parent' argument; set `ginst->parent' before calling
9978         mono_class_create_generic_2(), so we set the correct parent.
9979
9980 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9981
9982         * reflection.c: allow getting attributes from ModuleBuilder
9983         (used by ikvm).
9984
9985 2004-11-17  Martin Baulig  <martin@ximian.com>
9986
9987         * class.c (mono_class_create_from_typedef): If a type parameter is
9988         inherited from an outer class, set its owner to that class.
9989
9990 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9991
9992         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9993           for (int*) written size. This fixes bug #69592.
9994
9995 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9996
9997         * icall.c: Added IsAuthenticodePresnet internal call.
9998         * image.c|h: New function that check a MonoImage for an Authenticode
9999         signature in the certificate PE data directory.
10000         * security.c|h: New internal call to ask the runtime if an 
10001         Authenticode signature seems referenced in the PE header.
10002
10003 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
10004
10005         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
10006
10007         * reflection.c (mono_image_create_pefile): Free the assembly streams
10008         after writing out the assembly file.
10009
10010         * object.c (mono_runtime_run_main): Fix small memory leak.
10011
10012         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
10013         property access modifiers. Fixes #69389.
10014
10015 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
10016
10017         * domain.c, object.c, object-internals.h, domain-internals.h,
10018         object.h, marshal.c: keep dynamic code info per domain.
10019
10020 2004-11-15  Martin Baulig  <martin@ximian.com>
10021
10022         * class.c (mono_type_get_name_recurse): Put type arguments in
10023         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
10024         see bug #68387.
10025
10026 2004-11-15  Martin Baulig  <martin@ximian.com>
10027
10028         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
10029         (mono_class_setup_vtable): When computing `the_cname' for a
10030         generic instance, don't include the namespace since we'd otherwise
10031         add it twice.
10032
10033 2004-11-15  Martin Baulig  <martin@ximian.com>
10034
10035         * class.c (mono_class_create_generic): Changed return type to void.
10036         (mono_class_create_generic_2): New public function; setup
10037         `class->method', `class->field' and `class->interfaces' here
10038         instead of in mono_class_init().
10039
10040         * class.h (mono_class_create_generic): Moved to class-internals.h.
10041
10042 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
10043
10044         * reflection.c (mono_image_create_pefile): take a file HANDLE.
10045         rather than writing to memory, write to this file. Right now,
10046         we are just writting into a buffer, and copying that. However
10047         we can avoid the buffer later.
10048
10049         (mono_dynamic_stream_reset): new function
10050
10051         * icall.c, object-internals.h: update for the above.
10052
10053 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
10054
10055         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
10056         have been using gc'd memory. First it is slower, unlikely
10057         the comment in the source code said, secondly, it increases
10058         our footprint to do it in the gc.
10059
10060         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
10061         the method so that it does not have to copy to managed code.
10062
10063 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
10064
10065         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
10066
10067 2004-11-12  Martin Baulig  <martin@localhost>
10068
10069         * reflection.c (mono_image_create_token): Allow generic method
10070         definitions here, since they may appear in an `.override'; see
10071         gen-98/gen-99 for an example.
10072
10073 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
10074
10075         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
10076         #69365.
10077
10078         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
10079         descriptive.
10080
10081 2004-11-11  Martin Baulig  <martin@ximian.com>
10082
10083         * class.c (mono_class_setup_vtable): In an explicit interface
10084         implementation, the method name now includes the arity.
10085
10086 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
10087
10088         * object.c (mono_array_full_copy): Fix warning.
10089
10090 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
10091
10092         * appdomain.c: Removed look_for_method_by_name(). Use the new method
10093         mono_class_get_method_from_name() instead.
10094         
10095         * class-internals.h: Added two new types of wrappers. 
10096         Added MonoRemotingTarget enum. Added new trampoline function type, which
10097         takes an additional MonoRemotingTarget value as parameter, so it is
10098         possible to request a trampoline for a specific target.
10099         
10100         * class.c: Added new mono_class_get_method_from_name() method.
10101         
10102         * class.h: In MonoRemoteClass, we can have now to vtables, one for
10103         general remoting sinks and one specific for cross domain calls.
10104         
10105         * debug-helpers.c: Added new wrapper names.
10106         
10107         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
10108         of a remote class.
10109         
10110         * image.c: Porperly delete value objects form the remoting invoke hashtable.
10111         
10112         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
10113         with several other methods (mono_marshal_get_xappdomain_dispatch,
10114         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
10115         and others) can generate a fast remoting wrapper for cross domain calls.
10116         More information can be found in docs/remoting.
10117         Other changes: Removed mono_find_method_by_name, and used
10118         mono_class_get_method_from_name instead.
10119         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
10120         is stored in the remoting invoke hashtable.
10121         
10122         * marshal.h: published the new method for getting the xdomain wrapper,
10123         and also added a method for getting the adequate wrapper for a given
10124         method and target.
10125         
10126         * object-internals.h, object.c: Added a couple of methods for capying and
10127         cloning arrays.
10128         Modified mono_install_remoting_trampoline, which takes the new remoting
10129         trampoline that has a remoting target as parameter.
10130         mono_class_proxy_vtable now also takes a remoting target as parameter, and
10131         will return the most suitable vtable for the target.
10132         Added mono_remote_class_vtable, which returns the vtable of a remote class
10133         (which can be the normal remoting vtable or the xdomain vtable).
10134         
10135         * threads.c: the xdomain invoke and dispatch wrappers must also be
10136         protected against interruptions.
10137
10138 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10139
10140         * icall.c: use memmove in BlockCopyInternal when the source and
10141         destination arrays are the same.
10142
10143 2004-11-09  Martin Baulig  <martin@ximian.com>
10144
10145         * class-internals.h (MonoGenericContainer): Removed `method' and
10146         `signature', replaced them with `is_method' and `is_signature'
10147         flags.  Added `context'.
10148
10149         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
10150         instead of a `MonoGenericContainer *'.
10151
10152         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
10153         for dynamic type parameters.
10154         (mono_metadata_load_generic_params): Setup `container->context'.
10155
10156         * reflection.c (mono_reflection_setup_generic_class): Setup
10157         `tb->generic_container->context'.
10158         (do_mono_reflection_bind_generic_parameters): Use
10159         mono_class_inflate_generic_type() to correctly inflate types,
10160         rather than using our own hack just for MONO_TYPE_VAR.
10161
10162 2004-11-09  Martin Baulig  <martin@ximian.com>
10163
10164         * class.c (mono_class_inflate_generic_method): Small fix; don't
10165         crash here.
10166
10167         * icall.c
10168         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
10169         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
10170         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
10171         (ves_icall_Type_BindGenericParameters): Likewise.
10172         (ves_icall_Type_get_IsGenericInstance): Likewise.
10173         (ves_icall_Type_GetGenericParameterPosition): Likewise.
10174         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
10175         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
10176         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
10177
10178 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
10179
10180         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
10181         assembly versions and public key tokens. Fixes #69113.
10182
10183 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
10184
10185         * metadata.c: fix bug introduced with the type cache changes
10186         on 2004-11-06.
10187
10188 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
10189
10190         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
10191         the MonoClass pointer instead of the token in exception clauses.
10192         * reflection.c: updates for the above and make the code not depend
10193         on the structure of MonoExceptionClause.
10194
10195 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
10196
10197         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10198         Add support for dynamic assemblies. Fixes #69114.
10199
10200         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
10201
10202 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
10203
10204         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
10205         since most only those methods use it. the code member of
10206         MonoMethodPInvoke was dead, so that can be removed too. Also,
10207         remove inline_count (again, not used), and move slot so that it
10208         can share bits with some other flags. This saves 8 bytes in the
10209         structure and gives us about 50 kb back for mcs helloworld.cs
10210
10211         * *.[ch]: Do naming changes for the above.
10212
10213         * loader.c (mono_method_get_header): Lazily init the header
10214         on first access.
10215         (mono_get_method_from_token): don't init the header here
10216         (mono_free_method): the header may never be allocated
10217
10218         Overall, this saves 150 kb of unmanaged allocations
10219         for mcs helloworld.cs. That accounts for 10% of the unmanaged
10220         memory at runtime.
10221         
10222         * loader.c, loader.h (mono_method_get_header): new accessor.
10223
10224         * *.[ch]: use the above method. Prepares us to lazily load
10225         the header.
10226
10227         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
10228         three warnings, which are actual bugs (see 69206).
10229
10230         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
10231         unused. Saves a cool 4 bytes / method.
10232
10233 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
10234
10235         * metadata.c (builtin_types): Add types for System.Object here.
10236         (mono_metadata_parse_type_full): Cache MonoType*'s that are
10237         for a class or valuetype from klass->this_arg or klass->byval_arg.
10238
10239         On mcs for a hello world, this gets us down from 21836 MonoType's
10240         to 14560.
10241
10242         (mono_metadata_free_type): Account for the above change.
10243
10244 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
10245
10246         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
10247         exception instead of asserting if name is null.
10248         (ves_icall_System_AppDomain_GetData): Ditto.
10249
10250 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
10251
10252         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
10253         EnumBuilder.
10254
10255         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
10256         Return NULL when the domain does not have entry_assembly set.
10257
10258         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
10259         Add a 'resource_modules' argument.
10260         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
10261
10262         * reflection.c (mono_reflection_create_runtime_class): Move setting
10263         of wastypebuilder here, so mono_get_type_object () returns a MonoType
10264         for enums too.
10265
10266         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
10267         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
10268         Throw an ArgumentNullException if 'ptr' is null.
10269
10270         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
10271         assemblies here. Fixes #69020.
10272
10273 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
10274
10275         * reflection.c (build_compressed_metadata): Fix the previous patch for
10276         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
10277         the stack.
10278
10279 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
10280
10281         * assembly.c (mono_assembly_names_equal): Allow a match if one of
10282         the cultures is false. Fixes #69090.
10283
10284         * reflection.c (build_compressed_metadata): Fix invalid memory read 
10285         detected by valgrind.
10286         
10287         * reflection.c (mono_reflection_get_type): Avoid triggering a 
10288         TypeResolve multiple times for the same type. Fixes #65577.
10289
10290 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
10291
10292         * marshal.c: Avoid using ldftn to call managed functions. It is
10293         much slower than just a call.
10294
10295         * reflection.c (mono_module_get_object): free the basename we
10296         allocate here from glib.
10297         
10298         * reflection.c (ensure_runtime_vtable): make sure to free
10299         overrides.  Also, we were allocating an array of MonoMethod not an
10300         array of MonoMethod*.
10301
10302         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
10303
10304         * image.c (mono_image_close): free image->guid here.
10305
10306 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
10307
10308         * reflection.c: Fix some spec conformance issues with the PE file
10309         structures so mcs compiled apps run on the Net 2.0 beta.
10310
10311 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
10312
10313         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
10314         Implement this. Fixes #67264.
10315
10316         * debug-helpers.h debug-helpers.c marshal.c: Move 
10317         mono_find_method_by_name to debug-helpers.c.
10318
10319 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
10320
10321         * object.c (mono_release_type_locks): type_initialization_hash is
10322         a GHashTable.
10323
10324         * reflection.c object.c object-internals.h: Fix warnings.
10325
10326         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
10327         without accessors. Fixes #61561.
10328
10329         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
10330         application base from the root domain if not set. Fixes #65641.
10331         (mono_runtime_init): Fix warning.
10332
10333 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10334
10335         * appdomain.c: call mono_thread_pool_init.
10336         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
10337         of worker threads based on the number of CPUs and the environment
10338         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
10339         for non-windows (windows) systems.
10340
10341 2004-10-27  Chris Toshok  <toshok@ximian.com>
10342
10343         * mono-debug-debugger.c (write_class): don't call mono_class_init
10344         here, as even with the check for (!klass->init_pending), we get
10345         into a situation where we're hitting cycles in class
10346         initialization.  Fixes #68816.
10347
10348 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
10349
10350         * image.c: Avoid overwriting values in the loaded_images_hash when an
10351         assembly is loaded multiple times. Fixes #61152.
10352
10353         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
10354         so multiple satellite assemblies for the same name can be loaded.
10355         Fixes #68259.
10356
10357         * mono_domain_assembly_preload: Actually return the loaded assembly, 
10358         not NULL.
10359
10360         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
10361         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
10362
10363         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
10364         pending finalizers are not invoked after the appdomain has been 
10365         unloaded. Fixes #67862.
10366
10367 2004-10-22  Martin Baulig  <martin@ximian.com>
10368
10369         * mono-debug-debugger.c
10370         (mono_debugger_runtime_invoke): Don't box valuetypes.
10371
10372 2004-10-22  Chris Toshok  <toshok@ximian.com>
10373
10374         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
10375         don't hide private methods.
10376
10377 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
10378
10379         * icall.c: Allows the runtime to "share" (when known) the public key
10380         token of an assembly. This avoid the need to recalculate the token 
10381         (from the public key) in managed code.
10382
10383 2004-10-21  Chris Toshok  <toshok@ximian.com>
10384
10385         * debug-helpers.c (append_class_name): argh, revert last patch.
10386         
10387 2004-10-21  Chris Toshok  <toshok@ximian.com>
10388
10389         * debug-helpers.c (append_class_name): use '+' as the delimiter,
10390         not '/', so that it matches what the debugger uses to look up
10391         methods.
10392
10393 2004-10-21  Martin Baulig  <martin@ximian.com>
10394
10395         * mono-debug-debugger.c (mono_debugger_throw_exception): New
10396         public method; this is called each time an exception is thrown and
10397         allows the debugger to use exception catch points.
10398
10399 2004-10-21  Martin Baulig  <martin@ximian.com>
10400
10401         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10402         the stack pointer and the exception object in some struct and pass
10403         that to the debugger.
10404
10405 2004-10-21  Chris Toshok  <toshok@ximian.com>
10406
10407         * mono-debug-debugger.c (do_write_class): add instance/static
10408         event support.  We don't expose "raise" or "other" yet.
10409         (event_is_static): new method.
10410
10411 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10412
10413         * mono-debug-debugger.c
10414         (mono_debugger_handle_exception): Remove
10415         bogus return value for fussy compilers.
10416
10417 2004-10-20  Martin Baulig  <martin@ximian.com>
10418
10419         * mono-debug-debugger.c
10420         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10421         (mono_debugger_handled_exception): Likewise.
10422
10423 2004-10-20  Martin Baulig  <martin@ximian.com>
10424
10425         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10426         MONO_DEBUGGER_EVENT_EXCEPTION.
10427
10428         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10429         public function to send the debugger a notification for an
10430         exception and inform it about a catch/finally clause.
10431
10432 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10433
10434         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10435         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10436         fix 2.95 build. 
10437
10438         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10439
10440 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10441
10442         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10443         marshalled as [In,Out]. Fixes #58325.
10444
10445 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10446
10447         * reflection.c (mono_method_body_get_object): Implement some fields.
10448
10449 2004-10-12  Martin Baulig  <martin@ximian.com>
10450
10451         * reflection.c (mono_reflection_bind_generic_parameters): Small
10452         fix, correctly retrieve our parent from a generic instance.
10453
10454 2004-10-12  Martin Baulig  <martin@ximian.com>
10455
10456         * metadata.c (mono_metadata_generic_param_equal): We always have
10457         an owner.
10458
10459         * class.c
10460         (mono_class_from_generic_parameter): We need to have an owner.
10461         (my_mono_class_from_generic_parameter): Likewise.
10462
10463         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10464         mono_reflection_create_generic_class() and added a new
10465         mono_reflection_setup_generic_class().  
10466         (mono_reflection_initialize_generic_param): If we're a nested
10467         generic type and inherited from the containing class, set our
10468         owner to the outer class.
10469
10470 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10471
10472         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10473
10474         * reflection.c (mono_method_body_get_object): New function to create
10475         a MethodBody object.
10476
10477         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10478
10479 2004-10-11  Martin Baulig  <martin@ximian.com>
10480
10481         * metadata.c (_mono_metadata_type_equal): Renamed to
10482         do_mono_metadata_type_equal() and made static.
10483
10484 2004-10-11  Martin Baulig  <martin@ximian.com>
10485
10486         * appdomain.c: Bump corlib version number to 28.
10487
10488 2004-10-10  Martin Baulig  <martin@ximian.com>
10489
10490         * class-internals.h
10491         (MonoGenericInst): Added `MonoGenericContainer *container'.
10492         (MonoGenericMethod): Likewise.
10493         (MonoGenericContext): Likewise.
10494         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10495
10496         * metadata.c
10497         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10498         (do_mono_metadata_parse_generic_inst): Likewise.
10499         (mono_metadata_parse_type_full): New public method.  This is the actual
10500         mono_metadata_parse_type() implementation - with an additional
10501         `MonoGenericContainer *' argument.
10502         (mono_metadata_parse_array_full): Likewise.
10503         (mono_metadata_parse_signature_full): Likewise.
10504         (mono_metadata_parse_method_signature_full): Likewise.
10505         (mono_metadata_parse_mh_full): Likewise.
10506         (mono_type_create_from_typespec): Likewise.
10507         (mono_metadata_interfaces_from_typedef_full): New public method;
10508         this is similar to the other _full() methods, but we take a
10509         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10510         (mono_metadata_parse_generic_param): Take an additional
10511         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10512         from that container.
10513         (mono_metadata_generic_param_equal): New static method to compare
10514         two type parameters.
10515         (_mono_metadata_type_equal): New static method; takes an
10516         additional `gboolean signature_only' argument - if true, we don't
10517         compare the owners of generic parameters.
10518         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10519         with a TRUE argument - do a signature-only comparision.
10520
10521         * loader.c: Use the new _full() methods and pass the
10522         MonoGenericContainer to them.
10523
10524         * object-internals.h (MonoReflectionTypeBuilder): Added
10525         `MonoGenericContainer *generic_container' field.
10526         (MonoReflectionMethodBuilder): Likewise.
10527
10528 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10529
10530         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10531         case initial images of dynamic assemblies.
10532
10533         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10534
10535         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10536
10537         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10538         length of event->other array.
10539         (typebuilder_setup_events): Ditto.
10540
10541         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10542         'assembly_by_name' and add an 'assemblies' list.
10543
10544         * assembly.h assembly.c: Add a new search hook for determining whenever
10545         an assembly is already loaded. Use this instead of searching in the
10546         loaded_assemblies list.
10547
10548         * domain.c appdomain.c: Implement the new search hook so loaded 
10549         assemblies are now scoped by appdomain. Fixes #67727.
10550
10551 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10552
10553         * threads.c (mono_thread_attach): Initialize synch_lock field so
10554         mono_thread_detach works again.
10555
10556         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10557         'lib' too. Fixes #63130.
10558
10559 2004-10-06  Jackson Harper  <jackson@ximian.com>
10560
10561         * culture-info-tables.h: regenerated.
10562
10563 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10564
10565         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10566         implemented by other interfaces in the result. Fixes #65764.
10567         
10568         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10569         Handle unloadable modules without crashing.
10570
10571         * image.c (load_modules): Revert the previous patch since modules must
10572         have a fixed index inside the array.
10573         
10574         * image.c (load_modules): Don't include native modules in the modules
10575         array.
10576
10577 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10578
10579         * reflection.h: Add param_defaults field.
10580
10581         * reflection.c: Add support for parameter defaults in dynamic methods.
10582         Fixes #64595.
10583
10584         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10585         an empty string when a type has no namespace. Fixes #64230.
10586
10587 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10588
10589         * tabledefs.h: Added "internal" security actions to support non-CAS
10590         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10591         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10592
10593 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10594
10595         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10596         constructor of abstract class. Fixes #61689.
10597
10598 2004-10-04  Martin Baulig  <martin@ximian.com>
10599
10600         * class-internals.h (MonoGenericContainer): New type.
10601         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10602         `MonoGenericContainer *generic_container'.
10603         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10604         `MonoGenericContainer *generic_container'.
10605
10606         * metadata.c (mono_metadata_load_generic_params): Return a
10607         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10608         removed the `num' argument.
10609
10610 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10611
10612         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10613         for dynamic images.
10614
10615         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10616         machine fields.
10617
10618         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10619
10620         * reflection.c: Save pe_kind and machine values into the generated
10621         image file.
10622
10623         * appdomain.c: Bump corlib version number.
10624
10625         * object-internals.h: Reorganize layout of LocalBuilder.
10626
10627         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10628         New helper function.
10629
10630         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10631         created MonoType for dynamic types. Fixes #66180.
10632
10633 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10634
10635         * threadpool.c: the ares hashtable needs a critical section around it.
10636         this prevents some nasty segfaults
10637
10638 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10639
10640         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10641         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10642         bug 67324).
10643         
10644 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10645
10646         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10647         
10648 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10649
10650         * image.c: Always canonicalize image file names, to avoid loading
10651         the same assembly twice when referenced using a relative path.
10652
10653 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10654
10655         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10656
10657         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10658
10659         * marshal.c: Fix warnings.
10660
10661 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10662
10663         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10664         attempting to marshal the delegate_trampoline as the method_addr.
10665         This patch has a static hashtable of marshalled delegates so that 
10666         we can map delegate_trampoline addresses back to delegates.  This
10667         allows a delegate passed to managed code to be passed back into native
10668         code.  Fixes #67039
10669
10670 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10671
10672         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10673
10674         * reflection.c (method_encode_code): Align method headers properly.
10675         Fixes #66025.
10676
10677 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10678
10679         * marshal.c: In the runtime invoke wrapper, reset the abort
10680         exception if it is cached. This avoids the automatic rethrowal of 
10681         the exception after the catch of the wrapper. Also check for pending
10682         interruptions before calling the managed method. This is done using
10683         the new method emit_thread_force_interrupt_checkpoint, since the
10684         normal checkpoint method is ignored when running the invoke wrapper.
10685         * object.c: If the abort exception is rethrown, set the abort_exc
10686         field of the thread, so it will be rethrown aftere every catch.
10687         * threadpool.c: Only run an interruption checkpoint if what has been
10688         requested is a stop of the thread (aborts will be ignored).
10689         * threads.c: By default, a thread will now never be interrumped while
10690         running the runtime invoke wrapper (this ensures that runtime_invoke
10691         will always return to the caller if an exception pointer is provided).
10692         There is a new special method mono_thread_force_interruption_checkpoint()
10693         to force an interruption checkpoint even if running a protected
10694         wrapper, which is used by the same runtime invoke wrapper to do a check
10695         at a safe point.
10696
10697 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10698
10699         * object.c, object-internals.h: Implemented mono_release_type_locks,
10700         which releases the cctor locks held by a thread.
10701         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10702         by a thread. Added mono_thread_exit() method to be used to safely stop
10703         a thread.
10704
10705 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10706
10707         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10708         Move null check before dereference.  Avoid indexing beyond the end
10709         of the 'modules' array.
10710
10711 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10712
10713         * metadata-internals.h (MonoImage): Add module_count field.
10714         * image.c (load_modules): Set image->module_count.
10715         (mono_image_load_file_for_image): Use image->module_count.
10716         * reflection.c (mono_image_load_module): Append to image->modules array 
10717         of dynamic assembly.
10718         (mono_module_get_object): Fix loop to actually increment index.
10719         Use image->module_count.
10720         * assembly.c (mono_assembly_load_references): Use image->module_count.
10721         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10722         Likewise.
10723
10724 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10725
10726         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10727         Avoid assert on generic types.
10728
10729 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10730
10731         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10732
10733         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10734
10735         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10736         function to convert a MarshalSpec structure to its managed counterpart.
10737
10738         * reflection.c: Fix warnings.
10739         
10740         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10741         field.
10742
10743         * icall.c (mono_create_icall_signature): Fix build.
10744
10745 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10746
10747         * icall.c: Add MakePointType icall.
10748
10749         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10750         warnings.
10751
10752 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10753
10754         * threadpool.c: reuse allocated slots in the queue.
10755
10756 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10757
10758         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10759
10760         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10761
10762         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10763         previous change.
10764
10765         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10766         ThrowOnUnmappableChar.
10767
10768         * icall.c (ves_icall_Type_GetPacking): New icall.
10769
10770 2004-09-24  Martin Baulig  <martin@ximian.com>
10771
10772         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10773
10774 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10775
10776         * appdomain.c:
10777         (mono_domain_set): allow setting a domain that is being unloaded.
10778         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10779         being unloaded.
10780
10781 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10782
10783         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10784         the GetCustomAttributes icall.
10785
10786 2004-09-23  Martin Baulig  <martin@ximian.com>
10787
10788         * object-internals.h (MonoReflectionGenericParam): Replaced
10789         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10790         with `guint32 attrs'.
10791
10792 2004-09-23  Martin Baulig  <martin@ximian.com>
10793
10794         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10795
10796 2004-09-23  Martin Baulig  <martin@ximian.com>
10797
10798         * object-internals.h (GenericParameterAttributes): New enum.
10799
10800 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10801
10802         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10803         
10804         * class.c (init_events): Fill out event->other field.
10805
10806         * class.c: Fix warnings.
10807
10808         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10809
10810 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10811
10812         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10813         walk which doesn't supply the IL offset.
10814
10815 2004-09-22  Martin Baulig  <martin@ximian.com>
10816
10817         * reflection.c (mono_reflection_setup_internal_class): If we're
10818         System.ValueType, System.Object or System.Enum, set
10819         `klass->instance_size' and create the vtable.
10820         (mono_reflection_create_internal_class): If we're an enum type,
10821         get the base class from our current corlib.
10822
10823 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10824
10825         * reflection.h (MonoResolveTokenError): New type.
10826
10827         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10828         icall.
10829
10830         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10831
10832 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10833
10834         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10835         Support also calling constructors, but only for already allocated objects.
10836
10837 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10838
10839         * reflection.c (type_get_qualified_name): If the klass is null
10840         return the typename to avoid a NullRefEx.
10841         (encode_cattr_value): Get the qualified name of the boxed type,
10842         not the underlying enumtype.  Fixes #62984.
10843
10844 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10845
10846         * marshal.c: Fix problems with previous checkin.
10847
10848 2004-09-21    <vargaz@freemail.hu>
10849
10850         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10851         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10852
10853         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10854
10855 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10856
10857         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10858         should only return a type for pointers, arrays, and passbyref types.
10859         Fixes bug #63841.
10860
10861 2004-09-21  Martin Baulig  <martin@ximian.com>
10862
10863         * domain.c (mono_debugger_check_runtime_version): New public
10864         function.
10865
10866         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10867
10868 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10869
10870         * reflection.c: Added missing sort to the declarative security 
10871         attributes table. MS implementation stops seeing the attributes if the
10872         token number regress in the table (as shown by ildasm and permview).
10873
10874 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10875
10876         * object-internals.h (MonoReflectionModule): Add 'token' field.
10877         
10878         * reflection.c (mono_reflection_get_token): Add support for Module
10879         and Assembly.
10880         (mono_module_get_object): Set 'token' field.
10881         (mono_module_file_get_object): Set 'token' field.
10882
10883         * icall.c: Add new Assembly and Module icalls.
10884
10885         * appdomain.c: Bump corlib version.
10886
10887 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10888
10889         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10890         tokens of metadata objects.
10891
10892         * reflection.h reflection.c (mono_reflection_get_token): New function
10893         to obtain the token of a metadata object.
10894
10895         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10896
10897 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10898
10899         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10900         
10901         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10902
10903 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10904
10905         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10906         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10907         AssemblyBuilder to access the permissions set in the class lib.
10908         * reflection.c: Added security attributes encoding step in 
10909         mono_image_build_metadata.
10910         * tabledefs.h: Added new security actions defined in 2.0:
10911         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10912
10913 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10914
10915         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10916         macro parameter.
10917
10918 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10919  
10920         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10921           finalized. There where random SIGSEVs at program termination, when
10922           an object being finalized was trying to do a string comparison and
10923           the current culture was already finalized.
10924  
10925 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10926
10927         * threads.c: call thread_cleanup before finishing the thread if we get
10928         there.
10929
10930 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10931
10932         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10933         assemblies from the parent. Fixes #65665.
10934
10935 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10936
10937         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10938         modifiers.
10939
10940 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10941
10942         * reflection.h: add prototype for mono_get_dbnull_object
10943         * reflection.c: add prototypes for get_default_param_value_blobs 
10944         and mono_get_object_from_blob for fussier compilers
10945
10946 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10947  
10948         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10949         false deadlock checks in class initialization.
10950  
10951 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10952
10953         * image.c (mono_image_addref): Fix comment.
10954
10955         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10956         possible.
10957
10958 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10959
10960         * reflection.c (mono_param_get_objects): Modified to return
10961         ParameterInfo.DefaultValue object.
10962
10963         (get_default_param_value_blobs):
10964         (mono_get_object_from_blob):
10965         (mono_get_dbnull_object): New helper routines. 
10966
10967         * object.c (mono_get_constant_value_from_blob): New helper routine
10968         carved out from get_default_field_value ()
10969
10970         * object-internals.h (mono_get_constant_value_from_blob): Added
10971         function declaration.
10972
10973 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10974
10975         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10976         referenced assemblies. Fixes #62135.
10977
10978         * exception.h exception.c (mono_get_exception_file_not_found2): New
10979         helper function.
10980
10981 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10982
10983         * class.h class.c: Add mono_type_get_underlying_type ().
10984
10985 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10986
10987         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10988         Fix GetTypes() to support dynamically created assemblies.
10989
10990 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10991
10992         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10993         
10994         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10995         previous patch.
10996
10997         * reflection.h reflection.c loader.c: Allow dynamic construction of
10998         pinvoke methods. Fixes #65571.
10999         
11000         * reflection.c (mono_reflection_get_type): Revert previous change since
11001         it causes regressions.
11002
11003 2004-09-08  Martin Baulig  <martin@ximian.com>
11004
11005         * class.c (class_compute_field_layout): Don't call
11006         mono_class_layout_fields() for open generic instances.
11007
11008 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
11009         * threads.c appdomain.c: fix typo in GC macro
11010
11011 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11012
11013         * threads.c: don't call mono_thread_detach() in start_wrapper(),
11014         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
11015
11016 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
11017
11018         * image.c (mono_image_close): Applied patch from 
11019         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
11020         assembly is loaded multiple times from data.
11021         
11022         * image.c (mono_image_open): Fix warning.
11023
11024 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11025
11026         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
11027         once. Fixes #58334.
11028         
11029         * reflection.c (mono_reflection_create_runtime_class): Initialize
11030         klass->nested_classes. Fixes #61224.
11031
11032 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11033
11034         * threads.c: sched_yield() on exit, to allow threads to quit.
11035
11036 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11037
11038         * object.c (mono_unhandled_exception): Remove leftover debug code.
11039
11040 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
11041
11042         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
11043
11044 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
11045
11046         * marshal.c (emit_marshal_array): Really null terminate string arrays.
11047         
11048         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
11049
11050 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11051
11052         * marshal.c (emit_marshal_array): Null terminate string arrays.
11053         
11054         * marshal.c (raise_auto_layout_exception): Fix warning.
11055
11056         * reflection.c (mono_param_get_objects): Initialize the default value
11057         with DBNull.Value, not null. Fixes #62123.
11058
11059 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
11060
11061         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
11062         throw an exception with a cute explanation.
11063
11064 2004-09-06  Dick Porter  <dick@ximian.com>
11065
11066         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
11067         Close the new process's thread handle, as we don't use it.  The
11068         handle stays around forever otherwise.
11069
11070 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11071
11072         * object.c (arith_overflow): Fix warning.
11073
11074         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
11075         calling conventions in method refs. Fixes #65352.
11076
11077         * reflection.c: Fix warnings.
11078
11079 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11080
11081         * icall.c: Add a new icall for Array.Clear
11082
11083 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
11084
11085         * object.c: When allocating an array, we have to throw
11086         an overflow exception if any of the lengths are < 0.
11087
11088 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
11089
11090         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
11091         properly. Also move implementation of string array marshalling to 
11092         managed code. Fixes #42316.
11093
11094 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11095
11096         * assembly.c: provide more information when loading an assembly fails.
11097
11098 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11099
11100         * filewatcher.c: don't expect the development fam package to be
11101         installed.
11102
11103 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
11104
11105         * marshal.c: Make a copy of the signature cookie since it will be
11106         freed by the caller.
11107         
11108         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
11109
11110         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
11111
11112         * metadata.c (mono_metadata_free_marshal_spec): New function to free
11113         marshal specs.
11114
11115         * marshal.c: More refactoring.
11116         
11117         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
11118         smaller functions.
11119
11120 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
11121
11122         * object.c: In mono_message_invoke, fill the output parameter array after
11123           calling the managed method (it was done before the call). This fixes
11124           bug #59299.
11125
11126 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11127
11128         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
11129         as well.
11130
11131 2004-09-02  Martin Baulig  <martin@ximian.com>
11132
11133         * class.c (mono_class_instance_size): Don't allow generic type
11134         definitions or open generic instances.
11135         (mono_class_array_element_size): If we're a value type, call
11136         mono_class_instance_size() on the original class.
11137
11138         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
11139         handle generic instances.
11140
11141         * mono-debug-debugger.c (write_type): Handle generic instances
11142         like classes.
11143
11144 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
11145
11146         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
11147         the allocation request fails. Fixes #65089.
11148
11149         * object.c (mono_runtime_free_method): Do not call mono_free_method.
11150         
11151         * object.c (mono_runtime_free_method): New function to free a dynamic
11152         method.
11153
11154         * marshal.c (mono_delegate_free_ftnptr): New function to free the
11155         delegate trampoline.
11156
11157         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
11158         with hasthis as dynamic,
11159
11160         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
11161
11162         * domain.c (mono_jit_info_table_remove): New function to remove an
11163         entry from the jit info table.
11164
11165         * class-internals.h (MonoMethod): Add 'dynamic' field.
11166
11167         * loader.c: Fix warnings.
11168
11169 2004-09-01  Martin Baulig  <martin@ximian.com>
11170
11171         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
11172         instead of mono_debugger_lock() because the latter one is a no-op
11173         unless running in the debugger.
11174
11175 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11176
11177         * class.c (class_compute_field_layout): Classes with auto-layout or
11178         reference fields are not blittable.
11179         
11180 2004-09-01  Dick Porter  <dick@ximian.com>
11181
11182         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
11183         mono_image_get_filename() to get the assembly location.
11184
11185         * icall.c:
11186         * metadata.h: Fix compile warnings
11187
11188 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
11189
11190         * class.c (class_compute_field_layout): System.Object is blittable.
11191
11192         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
11193         as in/out. Fixes #59909.
11194
11195 2004-09-01  Martin Baulig  <martin@ximian.com>
11196
11197         * metadata.h (MONO_TYPE_ISREFERENCE): Call
11198         mono_metadata_generic_inst_is_valuetype() if we're a generic
11199         instance to check whether our underlying type is a reference type.
11200
11201 2004-09-01  Martin Baulig  <martin@ximian.com>
11202
11203         * metadata.c (mono_type_size): If we're a generic instance, call
11204         mono_class_value_size() for value types.
11205
11206 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
11207
11208         * marshal.c: Implement more custom marshalling functionality. Fixes
11209         #64915.
11210
11211 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11212
11213         * mono-debug.c, debug-mono-symfile.c: add some locking love.
11214
11215 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
11216
11217         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
11218
11219         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
11220
11221         * icall.c: Fix some warnings.
11222
11223         * threads.c (abort_appdomain_thread): Fix unref errors.
11224         (mono_thread_current): Fix THREAD_DEBUG define.
11225
11226 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
11227
11228         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
11229
11230         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
11231
11232 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
11233
11234         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
11235         string arrays.
11236
11237 2004-08-28  Martin Baulig  <martin@ximian.com>
11238
11239         * metadata.c
11240         (mono_metadata_generic_inst_is_valuetype): New public function.
11241
11242         * metadata.h (MONO_TYPE_ISSTRUCT): Call
11243         mono_metadata_generic_inst_is_valuetype() if we're a generic
11244         instance to check whether our underlying type is a valuetype.
11245
11246 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
11247
11248         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
11249         #63768.
11250
11251 2004-08-25  Martin Baulig  <martin@ximian.com>
11252
11253         * loader.c (mono_get_method_from_token): Abstract methods can also
11254         be generic and thus have type parameters.
11255
11256         * metadata-internals.h
11257         (MonoDynamicImage): Added `GPtrArray *gen_params'.
11258
11259         * reflection.c (mono_image_get_generic_param_info): Don't create a
11260         metadata row, just add an entry to the `gen_params' array.
11261         (build_compressed_metadata): Sort the `gen_params' array and then
11262         actually create the metadata.
11263
11264 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11265
11266         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
11267
11268 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
11269
11270         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
11271
11272 2004-08-24  Martin Baulig  <martin@ximian.com>
11273
11274         * class.cs (mono_class_is_subclass_of): Like an interface, a
11275         generic instance also derives from System.Object.
11276
11277 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
11278
11279         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
11280         custom modifiers to be in any order. Fixes #61990.
11281
11282 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
11283
11284         * object.c: Register mono_object_new_fast icall.
11285         
11286         * object.c (mono_class_get_allocation_ftn): Return to calling
11287         mono_object_new_fast, since it seems faster to compute the object 
11288         size in unmanaged code than passing it as a parameter.
11289
11290         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
11291
11292         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
11293         this function with Boehm as the oom handler, so we don't have to check
11294         the result of GC_malloc.
11295
11296         * object.c: Remove checks for oom.
11297
11298         * object.h object.c (mono_class_get_allocation_ftn): New function to
11299         return the icall which can be used to allocate an instance of a given
11300         class. 
11301
11302         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
11303
11304         * class-internals.h: Add 'enabled' field.
11305
11306 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
11307
11308         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
11309
11310 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
11311         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
11312         value 0x0010.
11313
11314 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
11315
11316         * appdomain.c: use the Tls function for appdomain too,
11317         at Zoltan's request. Actually return in mono_context_get
11318
11319         * appdomain.c, profiler.c, threads.c: use __thread
11320
11321 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
11322
11323         * appdomain.c threads.c: Call GC_CreateThread on windows.
11324
11325         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
11326         multiple libraries since this don't work on windows.
11327
11328 2004-08-18  Martin Baulig  <martin@ximian.com>
11329
11330         * class-internals.h
11331         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
11332         MonoMethodHeader.
11333
11334         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
11335         MonoMethodNormal since we also need it for abstract and interface
11336         methods.
11337
11338         * reflection.c
11339         (build_compressed_metadata): Sort the GenericParam table.
11340         (mono_image_create_token): Added `gboolean create_methodspec'
11341         argument; this is false when generating a MethodImpl token.
11342         (reflection_methodbuilder_to_mono_method): Abstract and interface
11343         methods may also have generic parameters.
11344
11345 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
11346
11347         * appdomain.c: thread local alloc
11348
11349 2004-08-17  Martin Baulig  <martin@ximian.com>
11350
11351         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
11352
11353         * icall.c
11354         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
11355         argument.
11356
11357         * class.c (mono_type_get_full_name): New public function.
11358         (mono_type_get_name): Don't include the type arguments.
11359
11360 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
11361
11362         * Makefile.am: Build static versions of libmetadata and libmonoruntime
11363         for inclusion into the mono executable.
11364
11365 2004-08-16  Martin Baulig  <martin@ximian.com>
11366
11367         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
11368         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
11369
11370 2004-08-14  Martin Baulig  <martin@ximian.com>
11371
11372         * class.c (dup_type): Also copy the `byref' field.
11373
11374 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
11375
11376         * reflection.c (create_dynamic_mono_image): Revert the last change 
11377         since it breaks bootstrap.
11378
11379 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
11380
11381         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
11382
11383         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
11384         not free them with g_free.
11385
11386 2004-08-11  Martin Baulig  <martin@ximian.com>
11387
11388         * reflection.c (mono_reflection_setup_internal_class): Also call
11389         mono_class_setup_mono_type() if we already have a `tb->type.type'.
11390
11391 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
11392
11393         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
11394         called during default (first) AppDomain creation. Keep track of
11395         Evidence when loading assemblies.
11396
11397 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11398
11399         * opcodes.c, opcodes.h: reduce runtime relocations.
11400
11401 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11402
11403         * culture-info.h, locales.c: fixes and chages to sue the new
11404         optimized format of the locale data.
11405         * culture-info-tables.h: regenerated.
11406
11407 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11408         
11409         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11410
11411 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11412
11413         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11414         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11415         * domain-internals.h: icall declaration.
11416         * icall.c: icall registration.
11417         * object-internals.h: New fields in MonoAssembly for CAS.
11418
11419 2004-08-05  Duncan Mak  <duncan@ximian.com>
11420
11421         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11422         CEE_LDELEM_ANY.
11423
11424 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11425
11426         * reflection.c: fix to deal with object[] arrays in custom ctors
11427         (bug #62550).
11428
11429 2004-08-05  Martin Baulig  <martin@ximian.com>
11430
11431         * class.c (mono_class_array_element_size): Added support for
11432         generic instances and correctly handle "recursive" types.
11433
11434 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11435
11436         * assembly.c: Fix warnings.
11437
11438 2004-08-04  Martin Baulig  <martin@ximian.com>
11439
11440         * class.c
11441         (mono_type_get_name_recurse): Added `gboolean include_arity'
11442         argument specifying whether or not we should include the generic
11443         arity in the type name.
11444         (_mono_type_get_name): New static function.
11445         (mono_class_setup_vtable): If we're a generic instance, don't
11446         include the generic arity in the names of explicit method
11447         implementations.        
11448
11449 2004-08-03  Martin Baulig  <martin@ximian.com>
11450
11451         * class.c (mono_type_get_name_recurse): Enclose the generic type
11452         arguments in `<', '>'.
11453
11454 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11455
11456         * gc.c: make GC warning messages use the trace API, they are just
11457         noise to most of the users.
11458
11459 2004-08-03  Martin Baulig  <martin@ximian.com>
11460
11461         * debug-mono-symfile.c (read_string): Correctly read the string.
11462
11463 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11464
11465         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11466         
11467         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11468         icalls.
11469         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11470
11471 2004-07-30  Martin Baulig  <martin@ximian.com>
11472
11473         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11474         Reflect latest symbol writer changes.   
11475
11476 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11477
11478         * object.c: always create an object if null is passed
11479         to Invoke() where a valuetype is expected.
11480
11481 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11482
11483         * marshal.c (mono_marshal_init): make managed
11484         signatures match native ones better for 64bits.
11485
11486 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11487
11488         * appdomain.c: hack to build correctly the private bin path on windows.
11489         Fixes bug #61991.
11490
11491 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11492
11493         * assembly.c: Load mscorlib from the correct framework directory
11494           (mono/<version>/mscorlib.dll).
11495         * appdomain.h: Added prototypes for new functions.
11496         * internals.h: Added some prototypes.
11497         * domain.c: When initializing the runtime, get from the executable and
11498           the configuration files the runtime version that the app supports.
11499           Added support methods for reading app.exe.config. Added list of versions
11500           supported by the JIT. Added two new methods: mono_init_from_assembly,
11501           which initializes the runtime and determines the required version from
11502           the provided exe file, and mono_init_version, which initializes
11503           the runtime using the provided version.
11504         * icall.c: Get machine.config from version-specific directory.
11505         * reflection.c: When generating an image, embed the version number
11506           of the current runtime.
11507
11508 2004-07-28  Dick Porter  <dick@ximian.com>
11509
11510         * socket-io.c
11511         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11512         returned sockaddr size before creating the remote address object.
11513         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11514         61608.
11515
11516 2004-07-28  Dick Porter  <dick@ximian.com>
11517
11518         * locales.c (string_invariant_compare_char): Fix invariant char
11519         compares between upper and lower cases.  Fixes bug 61458.
11520
11521 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11522         
11523         * marshal.c: actually cache stelem.ref wrappers.
11524         
11525 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11526
11527         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11528         sections and remove the mono_cli_rva_map () function.
11529
11530 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11531
11532         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11533         by Geoff Norton (<gnorton@customerdna.com>).
11534
11535 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11536
11537         * class.c: fix class loads for pointer types (typeof(int) !=
11538         typeof(int*)).
11539
11540 2004-07-27  Martin Baulig  <martin@ximian.com>
11541
11542         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11543         reading the debugging information from an external ".mdb" file.
11544
11545 2004-07-24  Martin Baulig  <martin@ximian.com>
11546
11547         * reflection.c (mono_image_get_type_info): Only write a class
11548         layout entry if we actually have a size or a packing size.
11549
11550 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11551
11552         * reflection.c (type_get_fully_qualified_name): 
11553         insert cast to get type checking of ?: with non-gcc compilers
11554
11555 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11556
11557         * rand.c: use g_getenv for both lookups of
11558         MONO_EGD_SOCKET
11559
11560 2004-07-17  Martin Baulig  <martin@ximian.com>
11561
11562         * reflection.c (mono_reflection_bind_generic_method_parameters):
11563         Set `gmethod->reflection_info'.
11564
11565 2004-07-17  Martin Baulig  <martin@ximian.com>
11566
11567         * class.c (mono_class_create_from_typedef): Insert the newly
11568         created class into the hash table before computing the interfaces
11569         since we could be called recursively.
11570
11571 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11572
11573         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11574         function to implement stelem.ref in managed code
11575         * class-internals.h, debug-helpers.c: a new wrapper type
11576         for the above.
11577
11578 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11579
11580         * gc.c: allow GC handles to work even when no GC is compiled in.
11581         Fix part of bug #61134 (GetAddrOfPinnedObject).
11582
11583 2004-07-13  Peter Williams  <peter@newton.cx>
11584  
11585         * process.c (complete_path): Make sure we don't attempt to execute
11586         directories.
11587  
11588 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11589
11590         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11591           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11592           and will add/subtract the hour if needed
11593
11594 2004-07-12  Martin Baulig  <martin@ximian.com>
11595
11596         * reflection.c (mono_field_get_object): If we have
11597         `field->generic_info', take the attributes from
11598         `field->generic_info->generic_type'.    
11599
11600 2004-07-12  Martin Baulig  <martin@ximian.com>
11601
11602         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11603         This function must be called before initializing the runtime.
11604         (mono_debug_init_1): New function; call this after initializing
11605         the runtime, but before loading the assembly.  It tells the
11606         debugger to load corlib and the builtin types.
11607
11608         * mono-debug-debugger.c: Did some larger changes in the debugging
11609         code; support recursive class declarations, make sure we actually
11610         add all classes.
11611
11612 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11613
11614         * debug-helpers.c: undo my previous patch and fixed the real issue in
11615         ../mini/exceptions-x86.c
11616
11617 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11618
11619         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11620         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11621         called from other .cctors.
11622
11623 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11624
11625         * loader.c: Removed the mono_loader_wine_init hack now that we are
11626         doing a managed version of Windows.Forms.
11627
11628 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11629
11630         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11631         threadpool.c, threads.c: remove static data from rootset.
11632
11633 2004-07-09  Dick Porter  <dick@ximian.com>
11634
11635         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11636         Don't do any more processing if the matched length was 0.  It was
11637         increasing the size of the string before.  Fixes bug 61167.
11638
11639 2004-07-09  Dick Porter  <dick@ximian.com>
11640
11641         * socket-io.h:
11642         * socket-io.c
11643         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11644         Add support for SO_PEERCRED if its available.
11645
11646 2004-07-09  Peter Bartok <pbartok@novell.com>
11647         * loader.c: winelib.exe.so error message is now only displayed if
11648         MONO_DEBUG is set. To help us avoid questions when people are trying
11649         out the new Managed.Windows.Forms.
11650
11651 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11652
11653         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11654         for isinst and castclass wrappers.
11655
11656         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11657         to libmetadata from the JIT, so they could be used by the marshalling
11658         code and the interpreter.
11659
11660         * marshal.c: Register marshalling related JIT icalls here instead of
11661         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11662         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11663
11664         * metadata.h: Remove unneeded marshalling conversions.
11665
11666         * opcodes.c: Update for new opcodes.
11667         
11668 2004-07-08  Martin Baulig  <martin@ximian.com>
11669
11670         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11671         (mono_debug_get_domain_data): Make this function static.
11672
11673 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11674
11675         * gc.c, object.h: add nice GC handle API for embedders.
11676
11677 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11678
11679         * reflection.c: more changes for the new api
11680
11681         * object.c: When we reflect on a field w/ a constant value, it
11682         will not have a memory location, so we must access metadata. Also,
11683         allow easier reading of strings so that we can read them from
11684         the constant data.
11685
11686         * class.c (mono_class_layout_fields): no need for literal fields here.
11687
11688         * class-internals.h: api changes for const fields
11689
11690         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11691
11692 2004-07-06  Martin Baulig  <martin@ximian.com>
11693
11694         * mono-debug.h: Increment version number to 44.
11695
11696         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11697         now a gpointer, rewrote this whole method.
11698
11699         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11700         function.  Add information about the wrapper in a new "misc table".
11701
11702         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11703         for the new misc table.
11704
11705 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11706
11707         * metadata-internals.h image.c: Add a cache for helper signatures.
11708
11709         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11710
11711 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11712
11713         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11714         delegates from a delegate. Fixes #61033.
11715         
11716         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11717         marshalling of stringbuilder arrays. Fixes #59900.
11718
11719 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11720
11721         * icall.c: Add EnumBuilder:setup_enum_type icall.
11722
11723 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11724
11725         * icall.c: Added a new icall for the property version of
11726         OffsetOfStringData.
11727
11728 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11729
11730         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11731         it has a constant size across platforms.
11732
11733         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11734         stack trace.
11735
11736 2004-06-29  Martin Baulig  <martin@ximian.com>
11737
11738         * mono-debug.c (mono_debug_add_method): Protect the whole function
11739         in mono_debugger_lock(), not just parts of it.
11740
11741 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11742
11743         * reflection.c: make sure padding bytes in heaps are zeroed.
11744
11745 2004-06-24  David Waite  <mass@akuma.org>
11746
11747         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11748         image.c, loader.c, locales.c, marshal.c, metadata.c,
11749         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11750         string-icalls.c, threads.c: change to C90-style comments from C99 /
11751         C++ -style
11752
11753 2004-06-24  Dick Porter  <dick@ximian.com>
11754
11755         * threads.c
11756         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11757         return createdNew.  Fixes bug 60412.
11758
11759         * threads-types.h: 
11760         * icall.c: Add createdNew parameter to CreateMutex icall
11761
11762 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11763
11764         * reflection.c, object-internals.h: save default value in params.
11765
11766 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11767
11768         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11769         no need to build a new path combining that with the application base.
11770         Fixes bug #60442.
11771
11772 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11773
11774         * reflection.c: fixed minor standard compliance issues.
11775
11776 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11777
11778         * reflection.c: fixed issue with encoding some custom attributes
11779         (arrays in properties and fields, bug #60411).
11780
11781 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11782
11783         * reflection.c: fix start address when copying the public key token.
11784
11785 2004-06-23  Martin Baulig  <martin@ximian.com>
11786
11787         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11788         the `exc' object in a static object to put it into the GC's root set.
11789
11790 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11791
11792         * reflection.c: make mono_reflection_setup_internal_class ()
11793         callable a second time to setup a new parent class.
11794
11795 2004-06-23  Dick Porter  <dick@ximian.com>
11796
11797         * threads.c: Check for WAIT_IO_COMPLETION return values.
11798
11799 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11800
11801         * appdomain.c: Removed the g_free on the public key token. Now copy 
11802         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11803         * assembly.c: Added public key token string value when loading 
11804         assemblies. Fix bug #60439.
11805         * icall.c: Added missing informations (like public key) in 
11806         GetReferencedAssemblies. Fix #60519.
11807         * image.h: Changed definition for public key token from const char*
11808         public_tok_value to guchar public_key_token [17];
11809         * reflection.c: Updated for changes to public key token.
11810
11811 2004-06-22  Lluis Sanchez Gual
11812
11813         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11814         for the field in base classes.
11815
11816 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11817
11818         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11819         mark headers as not supported, they are installed only for use by the
11820         debugger.
11821
11822 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11823
11824         * *.c, *.h: avoid namespace pollution in public headers.
11825
11826 2004-06-21  Martin Baulig  <martin@ximian.com>
11827
11828         * exception.c (mono_get_exception_security): It's in
11829         "System.Security", not in "System".
11830
11831         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11832         the exception classes.
11833
11834 2004-06-21  Martin Baulig  <martin@ximian.com>
11835
11836         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11837         Protect the exception object from being finalized.
11838
11839 2004-06-21  Martin Baulig  <martin@ximian.com>
11840
11841         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11842         public function.
11843
11844 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11845
11846         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11847         if it was not loaded before. Fix parts of #60439.
11848
11849 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11850
11851         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11852         code that was broken since Ben's change: wrappers are now
11853         dependent on the method signature only again.
11854
11855 2004-06-21  Martin Baulig  <martin@ximian.com>
11856
11857         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11858         added interface support.
11859
11860 2004-06-21  Martin Baulig  <martin@ximian.com>
11861
11862         * class.c (mono_vtable_get_static_field_data): New public method.
11863
11864 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11865
11866         * filewatcher.c : Windows build fix to be compliant with API changes.
11867
11868 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11869
11870         * class.h, class.c: more accessors.
11871         * metadata.h, metadata.c: prepare for hiding MonoType and
11872         MonoMethodSignature: people should use the accessors from now on
11873         outside of the tree.
11874
11875 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11876
11877         * *.c, *.h: more API cleanups.
11878
11879 2004-06-18  Jackson Harper  <jackson@ximian.com>
11880
11881         * assembly.c: Trace loading assemblies.
11882         * loader.c: Trace loading native libraries.
11883         * mono-config.c: Trace loading config files.
11884         
11885 2004-06-18  Dick Porter  <dick@ximian.com>
11886
11887         * locales.c: Tell ICU the lengths of strings, it can cope with
11888         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11889
11890 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11891
11892         * image.c: swapped name/filename;
11893
11894 2004-06-18  Martin Baulig  <martin@ximian.com>
11895
11896         * mono-debug-debugger.c (write_class): Write the parent class at
11897         the end of the header.
11898
11899 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11900
11901         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11902
11903 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11904
11905         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11906         (bundle_obj): New conditional define.
11907         (BUILT_SOURCES): Remove.
11908         ($(bundle_srcs)): Make parallel-make safe.
11909         (libmonoruntime_la_LIBADD): Make unconditional.
11910         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11911         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11912
11913 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11914
11915         * culture-info-tables.h: It was inconsistent with the latest
11916           supp info files.
11917
11918 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11919
11920         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11921         be loaded.
11922
11923         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11924         with gcc 2.95.
11925
11926 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11927
11928         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11929         cleaned up public header threads.h.
11930
11931 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11932
11933         * Makefile.am, *.c, *.h: more API cleanups.
11934
11935 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11936
11937         * Makefile.am: removed monosn from compilation.
11938         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11939         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11940         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11941         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11942         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11943         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11944
11945 2004-06-15  Jackson Harper  <jackson@ximian.com>
11946
11947         * assembly.c: Make locales lower case when searching the GAC for
11948         assemblies. gacutil will always make locales lowercase when
11949         installing so this effectively makes them case insensitive.
11950         
11951 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11952
11953         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11954         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11955           parameter which allows to choose whether the wait can be interrupted or 
11956           not. Also added the method mono_monitor_enter(), which locks the monitor
11957           using an infinite wait and without allowing interruption.
11958           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11959           interrupted.
11960         * object.h: Added new fields in MonoThread. suspend_event holds the event
11961           used to susped/resume the thread. synch_lock is the lock object to use for
11962           modifying the thread state.
11963         * threads.c: Use the new synch_lock object for locking, instead of "this",
11964           which can generate deadlocks.
11965           Moved thread state change in Thread.Sleep and Thread.Join from managed
11966           to unmanaged code. This avoids a deadlock when the thread was suspended
11967           just after acquiring the thread lock.
11968           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11969           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11970           which is not fully implemented in the io-layer.
11971         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11972
11973 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11974
11975         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11976         threads-types.h: more API cleanups.
11977
11978 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11979
11980         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11981         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11982         threadpool.c, threads.c: first pass at the exported API cleanup.
11983
11984 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11985
11986         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11987
11988 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11989
11990         * icall.c: added internalGetHome.
11991
11992 2004-06-14  Dick Porter  <dick@ximian.com>
11993
11994         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11995         possible to return successfully when '.' or '..' were the only
11996         entries in a directory, but were skipped.  The MonoIOStat was not
11997         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11998         Fixes bug 59574.
11999
12000 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
12001
12002         * reflection.c: make binaries run on .Net 1.1 by default.
12003
12004 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12005
12006         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
12007
12008 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
12009
12010         * marshal.c: keep track of struct size with explicit layout
12011         (bug #59979).
12012
12013 2004-06-12  Martin Baulig  <martin@ximian.com>
12014
12015         * mono-debug-debugger.c: Comment out a debugging g_message().
12016
12017 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
12018
12019         * reflection.c, reflection.h: do not free custom attrs that are cached.
12020         * icall.c: use braces to make code clearer.
12021
12022 2004-06-11  Martin Baulig  <martin@ximian.com>
12023
12024         * class.h (MonoInflatedField): New type.
12025         (MonoClassField): Replaced `MonoType *generic_type' with
12026         `MonoInflatedField *generic_info'.
12027
12028         * icall.c
12029         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
12030
12031 2004-06-11  Martin Baulig  <martin@ximian.com>
12032
12033         * reflection.c (mono_image_create_method_token): Correctly encode
12034         varargs methods.
12035
12036 2004-06-11  Martin Baulig  <martin@ximian.com>
12037
12038         * metadata.c (mono_metadata_parse_method_signature): When parsing
12039         a MethodDef which has VarArgs, also set sentinelpos if we don't
12040         have any parameters.
12041
12042 2004-06-11  Martin Baulig  <martin@ximian.com>
12043
12044         * verify.c (mono_method_verify): In CEE_CALL, use
12045         mono_method_get_signature() to get the method's signature, unless
12046         we're a PInvoke method.
12047
12048 2004-06-10  Jackson Harper  <jackson@ximian.com>
12049
12050         * assembly.c: Use <path>/lib/mono/gac for the extra paths
12051         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
12052         logical name as the supplied path is just a prefix to the gac not
12053         the direct path to it.
12054         
12055 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
12056
12057         * reflection.c: make the token for a created method match
12058         the token of the MethodBuilder it was created from
12059         (IKVM requires this behaviour now).
12060
12061 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
12062
12063         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
12064         reflection.c, socket-io.c: leak fixes.
12065
12066 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
12067
12068         * icall.c: handle sentinel pos in vararg methods in position different
12069         from 0.
12070
12071 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12072
12073         * culture-info-tables.h: freshly generated.
12074
12075 2004-06-09  Martin Baulig  <martin@ximian.com>
12076
12077         * loader.c (mono_get_method_constrained): Call `mono_class_init
12078         (constrained_class)'.   
12079
12080 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
12081
12082         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
12083         any methods. Fixes #59629.
12084
12085 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12086
12087         * culture-info-tables.h: reflecting locale-builder updates.
12088
12089 2004-06-08  Dick Porter  <dick@ximian.com>
12090
12091         * object.h:
12092         * locales.c: Fixed compile warnings, including a real bug in
12093         CompareInfo_internal_compare.
12094         
12095 2004-06-08  Dick Porter  <dick@ximian.com>
12096
12097         * locales.c
12098         (ves_icall_System_Globalization_CompareInfo_internal_index):
12099         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12100         Double-check the resuls of usearches, because ICU currently
12101         ignores most of the collator settings here.  Fixes bug 59720.
12102         
12103 2004-06-08  Dick Porter  <dick@ximian.com>
12104
12105         * locales.c
12106         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
12107         Fix memory leak and segfault-causing typo.  No idea how this one
12108         lasted so long without being noticed.
12109
12110 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
12111
12112         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
12113         any methods. Fixes #59629.
12114
12115 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12116
12117         * assembly.c:
12118         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
12119         own the critical section before). Removed dead code (that's done
12120         in the preload hook).
12121
12122         (mono_assembly_load_with_partial_name): call the preload hook.
12123
12124 2004-06-08  Martin Baulig  <martin@ximian.com>
12125
12126         * metadata.c (mono_metadata_signature_alloc): Default
12127         `sentinelpos' to -1.
12128
12129         * reflection.c (mono_image_get_array_token): Likewise.
12130
12131 2004-06-08  Martin Baulig  <martin@ximian.com>
12132
12133         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
12134
12135         * metadata.c (mono_metadata_parse_method_signature): When parsing
12136         a MethodDef which has VarArgs, set sentinelpos.
12137
12138         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
12139         `gint16' since we're using -1 for non-varargs methods.
12140
12141         * reflection.c
12142         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
12143         (method_encode_signature): Added varargs support.
12144         (method_builder_encode_signature): Likewise.
12145         (mono_image_get_varargs_method_token): New static method.
12146         (mono_image_create_method_token): New public method; this is
12147         called via an icall instead of mono_image_create_token() when
12148         calling a varargs method.       
12149
12150 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
12151
12152         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
12153
12154 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12155
12156         * culture-info-tables.h : Reflecting the latest locale-builder that
12157           fixed empty array representation ({} to {0}).
12158
12159 2004-06-07  Jackson Harper  <jackson@ximian.com>
12160
12161         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
12162         looking up extra gac paths. This allows MONO_GAC_PATH to act
12163         exactly like a prefix.
12164         
12165 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12166
12167         * reflection.c (mono_reflection_type_from_name): Make a copy of the
12168         type name before modifying it. Fixes #59405.
12169
12170 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
12171
12172         * culture-info.h: added fields for "all datetime patterns".
12173         * locales.c: (  ves_icall_System_Globalization_CultureInfo
12174           _construct_datetime_format ()): fill xxx_patterns fields.
12175         * object.h: added fields for "all datetime patterns" to
12176           MonoDateTimeFormatInfo.
12177         * culture-info-tables.h: reflecting locale-builder updates.
12178
12179 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
12180
12181         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
12182         the event has no add and remove methods. Fixes #59629.
12183
12184 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
12185
12186         * object.c: Fixed possible integer overflow when allocating large
12187         strings.
12188
12189 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12190
12191         * culture-info-tables.h: reflecting locale-builder updates.
12192
12193 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
12194
12195         * culture-info-tables.h: reflecting locale-builder updates.
12196
12197 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
12198
12199         * culture-info-tables.h: reflecting locale-builder updates.
12200
12201 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
12202
12203         * threads.c: Made Thread.Sleep abortable.
12204
12205 2004-06-02  Martin Baulig  <martin@ximian.com>
12206
12207         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
12208
12209         * debug-mono-symfile.h: Bumped symbol file version number to 37.
12210
12211 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
12212
12213         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
12214
12215 2004-05-30  Jackson Harper  <jackson@ximian.com>
12216
12217         * reflection.c: Do not hardcode assembly versions or public key
12218         tokens anymore. All of this except the corlib section was dead
12219         code anyways.
12220         
12221 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
12222
12223         * object.c (mono_runtime_invoke_array): Automatically create boxed
12224         objects for byref valuetypes if needed. Fixes #59300.
12225         
12226         * object.c (mono_method_return_message_restore): Handle 
12227         MONO_TYPE_OBJECT as well.
12228
12229 2004-05-28  Jackson Harper  <jackson@ximian.com>
12230
12231         * reflection.c: The modified type encoding was causing build
12232         problems. Reverted for now.
12233         
12234 2004-05-28  Jackson Harper  <jackson@ximian.com>
12235
12236         * reflection.c/h: Take an assembly ref so that we dont create
12237         fully qualified names when encoding types in the same assembly as
12238         the custom attribute being emitted.
12239         * appdomain.c: Increment version number.
12240         
12241 2004-05-26  Duncan Mak  <duncan@ximian.com>
12242
12243         * icall.c
12244         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
12245         Set the full version number (major, minor, build, revision).
12246
12247 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
12248
12249         * marshal.c (emit_struct_conv): increment src/dst after blit
12250         (mono_marshal_get_managed_wrapper,
12251         mono_marshal_get_native_wrapper): make sure we have marshalling
12252         info before marshalling params (info computation affects
12253         blittable)
12254
12255         * class.c (class_compute_field_layout): correctly deal with
12256         blittable
12257         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
12258         value types (as per what windows dows by default)
12259         (mono_class_setup_mono_type): System.ValueType is blittable
12260         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
12261         blittable
12262
12263         * marshal.c (mono_marshal_load_type_info): flag types  as
12264         non-blittable if the native layout doesn't match the managed
12265         layout
12266
12267 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12268
12269         * appdomain.c: don't add stuff in the private search path that is
12270         above the application base. If application base is not set, there's
12271         no private search path.
12272
12273 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
12274
12275         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
12276         byref struct arguments in native->managed marshalling.
12277
12278 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
12279
12280         * marshal.c (mono_marshal_get_runtime_invoke): correctly
12281         cache methods using signature (special case for methods
12282         that are value type or string class)
12283         
12284         * image.c (mono_image_close): clean up allocated GSList's
12285         in runtime_invoke_cache.
12286
12287 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12288
12289         * mono-config.c: set the correct path for mono_cfg_dir on windows when
12290         there's no MONO_CFG_DIR environment variable defined.
12291
12292 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12293
12294         * threads.c: windows version must be >= 0x0500 to include OpenThread.
12295
12296 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
12297
12298         * threadpool.c: Really wait for 500ms after the async call, even if the wait
12299           is interrumped.
12300         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
12301           before waiting for it, and call CloseHandle after the wait to unref it.
12302           This will make sure that handles are not disposed too early.
12303
12304 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12305
12306         * appdomain.c:
12307         * appdomain.h:
12308         * icall.c: removed
12309         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
12310         needed now.
12311
12312         * object.c: se the application_base only for the domain that runs
12313         Main. Fixes bug #59216,
12314
12315 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12316
12317         * appdomain.c:
12318         * object.c: only the domain in which Main is run have
12319         SetupInformation.ConfigurationFile set, so moved a few lines from
12320         appdomain.c to object.c.
12321
12322 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12323
12324         * appdomain.c: we tried to load [name].(dll|exe), but according
12325         to bug #57710, we must also try [culture]/[name].(dll|exe) and
12326         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
12327         There's a test case attached to bug #58922.
12328
12329 2004-05-27  Dick Porter  <dick@ximian.com>
12330
12331         * icall.c:
12332         * file-io.c: Implemented icalls for locking and unlocking regions
12333         in a file.
12334         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
12335         FALSE on error (fixes both compiler warning and real bug.)
12336
12337 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
12338
12339         * culture-info-tables.h: reflecting locale-builder updates.
12340
12341           (Added missing ChangeLog entry for 05/26)
12342
12343 2004-05-27  Jackson Harper  <jackson@ximian.com>
12344
12345         * locales.c: Fix some cut and paste errors.
12346         
12347 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12348
12349         * mono-config.c: set the correct path for config. directory on windows.
12350
12351 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12352
12353         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
12354           on win32.
12355
12356 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12357
12358         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
12359         from pinvoke functions.
12360         
12361         * marshal.c (mono_ftnptr_to_delegate): Implement this.
12362
12363 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
12364
12365         * culture-info-tables.h: reflecting locale-builder updates.
12366
12367 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
12368
12369         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
12370         #59086.
12371
12372 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
12373
12374         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
12375         * icall.c: Modified icalls for RNG.
12376         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
12377         Windows (CryptoAPI).
12378
12379 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12380
12381         * locales.c: Fix build.
12382
12383 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
12384
12385         * culture-info-tables.h: reflecting locale-builder updates.
12386
12387 2004-05-25  Jackson Harper  <jackson@ximian.com>
12388
12389         * locales.c: When creating the current culture use the $LANGs
12390         specific culture. So DateTimeFormat and NumberFormat entries are created.
12391         
12392 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
12393
12394         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
12395         a char array as parameter.
12396
12397 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12398
12399         * image.c: In mono_image_open(), always use an absolute path name to
12400           look for already loaded images.
12401
12402 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12403
12404         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12405         missing in the windows build (like older cygwin include files).
12406
12407 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12408
12409         * icall.c: Fixed check for possible integer overflow in Buffer_
12410         BlockCopy icall. Replaced comments style // by /* */.
12411
12412 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12413
12414         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12415         
12416         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12417         check after MONO_VTADDR. Fixes pinvoke2.exe.
12418
12419         * marshal.h marshal.c metadata.h: Add beginnings of support for
12420         ftnptr -> delegate marshalling.
12421
12422 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12423
12424         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12425         * threads.c: Fix warnings.
12426
12427 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12428
12429         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12430         * icall.c: Registered icalls for Suspend and Resume.
12431         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12432           Thread.Abort.
12433         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12434         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12435         * process.c: Use WaitForSingleObjectEx.
12436         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12437           checkpoints.
12438         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12439           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12440           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12441           background threads. Added basic support for Abort in Windows.
12442           Start new threads using a managed delegate invoke wrapper. This wrapper
12443           has an interruption checkpoint that is needed since an interruption
12444           can be requested before the thread leaves the unmanaged code that starts 
12445           the thread.
12446         * marshal.c: Added interruption checkpoint after every native call, and
12447           also before managed calls for wrappers called from unmanaged code to
12448           go into managed code.
12449         * object.h: Added new field in MonoThread to keep track of interruption
12450           requests.
12451
12452 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12453
12454         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12455         calls.
12456
12457 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12458
12459         * appdomain.c:
12460         * assembly.c:
12461         * gc.c:
12462         * locales.c:
12463         * mono-config.c:
12464         * rand.c: getenv -> g_getenv (windows!)
12465
12466         * process.c: complete_path is also used on non-windows platforms.
12467
12468 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12469
12470         * icall.c: new signature for Process_Start.
12471
12472         * process.[ch]: new signature for Process_Start. If we're on windows
12473         and UseShellExecute is false, we have to search for the program by
12474         ourselves if we don't get a full path.
12475
12476 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12477
12478         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12479         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12480
12481 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12482
12483         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12484         Fixes bug #58373.
12485
12486 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12487
12488         * process.c: use double quotes to quote program name and arguments on
12489         windows. Fixes bug #58575.
12490
12491 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12492
12493         * file-io.c: don't return "." and ".." when using windows Find*File.
12494
12495 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12496
12497         * marshal.c: Don't pass wrappers to message init because method 
12498         addressed used to lookup metadata. part of remoting[2|3] fix.
12499
12500 2004-05-15  Jackson Harper  <jackson@ximian.com>
12501
12502         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12503         path is essentially the same as MONO_PATH except that it points to
12504         GACs instead of lib directories.
12505         * loader.h: The user gac is gone so we dont need function to
12506         enable/disable it.
12507         * mono-config.c: user gac option is now gone.
12508         
12509 2004-05-15  Jackson Harper  <jackson@ximian.com>
12510
12511         * culture-info.h: Make defines more consistent, add calendar data
12512         to the culture info table.
12513         * culture-info-tables.h: Add basic calendar data. Basically
12514         everyone gets default gregorian until all the data is
12515         updated.
12516         * locales.c: Use the new consistent defines. Set calendar data for
12517         culture info objects.
12518         * object.h: add a field for calendar data to CultureInfo
12519         
12520 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12521
12522         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12523         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12524         a signature.
12525         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12526         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12527         an extra param that is the pointer of the method to invoke. The IL for
12528         the invoke method is no longer specific to the method, but to the
12529         signature of the method. Thus, we can share the same code for multiple
12530         methods. This reduces the number of methods that have to be compiled.
12531
12532 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12533
12534         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12535
12536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12537
12538         * icall.c: Optimize Buffer.BlockCopy.
12539
12540 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12541
12542         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12543         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12544         quote). Changed them to "MMMM yyyy".
12545
12546 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12547
12548         * rand.c
12549         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12550
12551 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12552
12553         * reflection.h: Updated after changes to managed structures.
12554
12555         * appdomain.c: Bump corlib version.
12556
12557 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12558
12559         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12560         windows.
12561
12562 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12563
12564         * Makefile.am: link to ../os/libmonoos.la on windows.
12565
12566         * assembly.c:
12567                 -If MONO_DEBUG, warn about non-existing directories in
12568                 MONO_PATH.
12569                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12570                 compile time variable.
12571                 -Removed init_default_path and call mono_set_rootdir from
12572                 libmonoos.a instead (windows only).
12573
12574         * assembly.h: declare mono_assembly_getrootdir().
12575
12576         * domain.c:
12577         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12578
12579         * loader.c: s/getenv/g_getenv/
12580
12581 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12582
12583         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12584
12585         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12586
12587         * metadata.h: Add new marshalling conversions.
12588
12589         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12590         function.
12591
12592         * reflection.c (mono_reflection_get_type): Lookup the type in all
12593         modules of a multi-module assembly. Fixes #58291.
12594
12595 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12596
12597         * threads.c: Before aborting a background, set the StopRequested
12598         state.  This avoids throwing the Abort exception.
12599         In mono_thread_manage, don't continue with the shutdown until all
12600         aborted threads have actually stopped.
12601
12602 2004-05-10  Jackson Harper  <jackson@ximian.com>
12603
12604         * locales.c: Remove the modifier from culture names.
12605         
12606 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12607
12608         * Makefile.am: monosn is not installed any more. It has been deprecated
12609         in favor of sn.
12610
12611 2004-05-07  Jackson Harper  <jackson@ximian.com>
12612
12613         * locales.c
12614         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12615         Fix array construction, add bailout if the length is 0.
12616
12617 2004-05-07  Dick Porter  <dick@ximian.com>
12618
12619         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12620         machine doesn't have a DNS entry.  Patch by Urs Muff
12621         (umuff@quark.com), fixes bug 57928.
12622
12623 2004-05-06  Jackson Harper  <jackson@ximian.com>
12624
12625         * reflection.c: Handle null PublicTokens properly. alloc mem for
12626         assembly names culture so we dont crash when freeing it.
12627         
12628 2004-05-06  Jackson Harper  <jackson@ximian.com>
12629
12630         * assembly.c: Check the usergac when loading with partial names.
12631         
12632 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12633
12634         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12635         does nothing for now (not required for Linux/Windows) but the class
12636         library can call it (and a newer or modified runtime could need it).
12637         * icall.c: Registred icall.
12638
12639 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12640
12641         * loader.c: prints a message on module loading error we set MONO_DEBUG
12642         environment variable.
12643
12644 2004-05-05  Jackson Harper  <jackson@ximian.com>
12645
12646         * appdomain.c: Handle PublicKeyToken=null properly.
12647         
12648 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12649
12650         * environment.c|h: Added icall ves_icall_System_Environment_
12651         GetOSVersionString to get the current OS version as a string.
12652         * icall.c: Registred icall.
12653
12654 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12655
12656         * object.c: in mono_object_get_virtual_method(), take into account that
12657         non-virtual methods don't have a slot in the vtable. Check needed when
12658         the object is a proxy.
12659
12660 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12661
12662         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12663         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12664
12665         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12666
12667         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12668         passed when a valuetype is expected.
12669
12670         * object.c (mono_unhandled_exception): Only set the exit code if the
12671         exception happens in the main thread. Fixes thread5.exe.
12672
12673         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12674         invalid names. Fixes #58047.
12675
12676 2004-05-03  Jackson Harper  <jackson@ximian.com>
12677
12678         * assembly.c: This line was committed accidently and is unneeded.
12679         
12680 2004-05-03  Jackson Harper  <jackson@ximian.com>
12681
12682         * icall.c: Add new icall for Assembly::LoadWithPartialName
12683         * assembly.c/.h: new function that probes the GAC to load partial
12684         assembly names by Paolo Molaro.
12685         
12686 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12687
12688         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12689         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12690         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12691         full type name.
12692
12693 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12694
12695         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12696         * reflection.c: fix bug when parsing a full type name and Version is not
12697         the last thing in the string.
12698
12699 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12700
12701         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12702         crashes when it is freed.
12703
12704 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12705
12706         * assembly.c: print the compat warning to stderr.
12707
12708 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12709
12710         * assembly.c (mono_assembly_load_references): Add a compatibility
12711         hack to run old applications that might be still referencing the
12712         3300-based assemblies, only do this for System.xxx.
12713
12714 2004-05-01  Jackson Harper  <jackson@ximian.com>
12715
12716         * appdomain.c: If the culture is neutral we set it to "".
12717         
12718 2004-04-29  Jackson Harper  <jackson@ximian.com>
12719
12720         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12721
12722 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12723  
12724         * string-icalls.c: added low overhead function for copying chars
12725         * icall.c: added needed icall for the above function
12726  
12727 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12728
12729         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12730         Environment.GetLogicalDrives.
12731
12732 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12733
12734         * rand.c: try and talk to egd or prngd
12735         for random bytes if opening devices fail.
12736
12737 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12738
12739         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12740         alignment for the type using the native alignment of its members 
12741         instead of using klass->min_align.
12742
12743         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12744
12745 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12746
12747         * file-io.c:
12748         * socket-io.c: added check for sys/aio.h.
12749
12750 2004-04-28  Dick Porter  <dick@ximian.com>
12751
12752         * threads.c: Don't abort a thread thats already aborting, when
12753         terminating everything.
12754
12755 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12756
12757         * icall.c: added 2 new async calls for Socket.
12758
12759         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12760         IO on *nix systems.
12761
12762         * threadpool.c: removed unused variable.
12763
12764 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12765
12766         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12767
12768 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12769
12770         * locales.c: put back string_invariant_tolower () and
12771         string_invariant_toupper ().
12772
12773 2004-04-26 David Waite <mass@akuma.org>
12774
12775         * file-io.h:
12776         * socket-io.h:
12777         * threads.h:
12778         * unicode.h: remove comma from end of enumeration declarations
12779
12780 2004-04-26 David Waite <mass@akuma.org>
12781
12782         * debug-mono-symfile.h:
12783         * decimal.c:
12784         * mono_debug.h:
12785         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12786
12787
12788 2004-04-26  Jackson Harper  <jackson@ximian.com>
12789
12790         * appdomain.c: Increment version number.
12791         
12792 2004-04-26  Jackson Harper  <jackson@ximian.com>
12793
12794         * appdomain.c: Set assembly references public token value when
12795         PublicKeyToken is specified, not the hash_value. Free public token
12796         values when free assembly name data. Previously the public key
12797         token was hex decoded, however we are using hex encoded public key
12798         tokens, so this is not neccasary.
12799         * assembly.c: Lookup assemblies in the gac if their public token
12800         value is set. Add function to allow enabling user gac
12801         lookups. Specify whether or not the assembly was loaded from the
12802         GAC. Compare full assembly names when checking the cache for
12803         assemblies (Temporarily disabled see comment in code). Remove
12804         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12805         specifies trace-loader they get extra info to stdout on the
12806         loading of assemblies.
12807         * image.h: Add a field for an assembly references public token
12808         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12809         whether an assembly has been loaded from the GAC.
12810         * image.c: Remove a corlib -> mscorlib name mapping.
12811         * loader.h: Add function to enable/disable the user gac.
12812         * mono-config.c: Check if the usergac is enabled in the config
12813         file.
12814         * icall.c: New icall to determine whether or not an assembly has
12815         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12816         * tabldefs.h: Add constant for assemblyref flag that specifies a
12817         full public key is used instead of a public token.
12818         * reflection.c: Remove mscorlib -> corlib mappings. Set
12819         PublicTokenValue instead of hash value. This value is a hex
12820         string so it does not need to be expanded.
12821
12822 2004-04-26  Martin Baulig  <martin@ximian.com>
12823
12824         * mono-debug-debugger.c (mono_debugger_initialize): Set
12825         `mono_debugger_initialized' before calling mono_debug_lock().
12826
12827 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12828
12829         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12830           InternalToUpper/InternalToLower.
12831         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12832           removed invariant culture shortcut.  This is now done in managed code.
12833         * locales.c: (string_invariant_toupper/tolower) removed.
12834
12835 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12836
12837         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12838         Added Poll internal call.
12839
12840         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12841         call for Poll. Select was too heavy for polling a single socket.
12842
12843         * threadpool.[ch]: added mono_threadpool_cleanup.
12844         * threads.c: use it. Don't use Thread_Abort on windows.
12845
12846 2004-04-23  Martin Baulig  <martin@ximian.com>
12847
12848         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12849
12850 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12851
12852         * icall.c: Registred new icalls for key pair protection and added an
12853         icall for Environment.GetFolderPath on Windows.
12854         * security.c|h: Added new icalls for key pair protection.
12855
12856 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12857
12858         * socket-io.c: don't display the non-supported family warning for known
12859         families. Now this is not displayed on windows when checking support
12860         for IPv4/IPv6.
12861
12862 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12863
12864         * class.c: don't display the layout warning for static fields.
12865
12866 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12867
12868         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12869         * locales.c, locales.h: Added new icalls for culture-specific
12870         Char.ToLower and Char.ToUpper.
12871
12872 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12873
12874         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12875         by David Waite.
12876
12877 2004-04-20  Martin Baulig  <martin@ximian.com>
12878
12879         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12880         of the type name before passing it to mono_reflection_type_from_name().
12881
12882 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12883
12884         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12885         encodings here. Fixes #56965.
12886
12887 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12888
12889         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12890         fix test on strstr result not that I can see anything that
12891         relies on the result.
12892
12893 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12894
12895         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12896         Fixes #57081.
12897
12898         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12899
12900         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12901         function to determine which marshalling to use for strings. Fixes
12902         #56965.
12903
12904         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12905
12906         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12907
12908 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12909
12910         * icall.c: #include mono-config.h
12911
12912 2004-04-15  Jackson Harper  <jackson@ximian.com>
12913
12914         * culture-info-tables.h: Fix date formats for en-US culture.
12915         
12916 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12917
12918         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12919         ThreadPool.SetMinThreads.
12920         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12921         ThreadPool.SetMinThreads.
12922
12923 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12924
12925         * mono-config.c: also load the .config file in the directory
12926         where the assembly was found.
12927
12928 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12929
12930         * assembly.c: load per-assembly config files.
12931         * icall.c: decrapified code to get the config dir and moved to
12932         mono-config.c.
12933         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12934         per-assembly config files. When doing a dll map lookup give precedence
12935         to the per-assembly data.
12936
12937 2004-04-14  Martin Baulig  <martin@ximian.com>
12938
12939         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12940         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12941         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12942
12943         * mono-debugger-debugger.c: While the debugger is locked, remember
12944         whether the symbol tables have changes and send one single
12945         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12946
12947 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12948
12949         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12950
12951         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12952         function.
12953
12954         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12955         account when marshalling string arrays. Fixes #56965.
12956
12957 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12958
12959         * icall.c: Add new icalls mapping for security.
12960         * security.c|h: Add internal calls for WindowsIdentity,
12961         WindowsImpersonationContext and WindowsPrincipal.
12962
12963 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12964
12965         * class.c: Added comment to ensure the System.MonoDummy class
12966         is removed when no longer necessary
12967
12968 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12969
12970         * appdomain.c: Pass arguments to the bootstraping exceptions to
12971         minimize JITed methods at boot
12972
12973         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12974         second string to be null.
12975
12976         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12977         Change the protocol to minimize the JIT methods at startup.  Now
12978         it Returns the internal codepage, if the value of "int_code_page"
12979         is 1 at entry, and we can not compute a suitable code page
12980         number, returns the code page as a string.
12981
12982 2004-04-13  Jackson Harper  <jackson@ximian.com>
12983
12984         * culture-info-tables.h: Fix number of decimal digits for all
12985         english locales.
12986
12987 2004-04-13  Jackson Harper  <jackson@ximian.com>
12988
12989         * icall.c: Clairfy out of sync error message. It is not always
12990         your corlib that is out of sync.
12991
12992 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12993
12994         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12995         properties when only the set accessor is overriden. Fixes #55874.
12996
12997 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12998
12999         * assembly.c (mono_assembly_load_references): Make this thread safe.
13000         Fixes #56327.
13001
13002 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
13003
13004         * monosn.c: Add missing initialization calls.
13005
13006 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
13007
13008         * locales.c:
13009         ves_icall_System_Globalization_CultureInfo_construct_number_format
13010         Fix g_assert so it compiles on fussier compilers re int/ptr
13011         mismatch
13012
13013 2004-04-08  Dick Porter  <dick@ximian.com>
13014
13015         * socket-io.h:
13016         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
13017         53992.  Also rearrange the code so that the internal calls return
13018         an error value and exceptions are thrown from managed code.
13019
13020         * icall.c: Add type info to the socket icalls.
13021
13022 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13023
13024         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
13025         owes me a beer.
13026
13027 2004-04-07  Martin Baulig  <martin@ximian.com>
13028
13029         * class.c (mono_class_from_generic_parameter): Don't default
13030         `klass->parent' to `mono_defaults.object_type'.
13031
13032 2004-04-07  Martin Baulig  <martin@ximian.com>
13033
13034         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13035         `param->pklass->reflection_info'.       
13036
13037 2004-04-07  Jackson Harper  <jackson@ximian.com>
13038
13039         * culture-info-tables.h: Fix date separator symbol.
13040         
13041 2004-04-07  Martin Baulig  <martin@ximian.com>
13042
13043         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
13044         from System.Type to System.MonoType.
13045
13046 2004-04-07  Martin Baulig  <martin@ximian.com>
13047
13048         * reflection.h
13049         (MonoReflectionGenericParam): Added `has_reference_type' and
13050         `has_value_type' fields.
13051
13052         * reflection.c (mono_image_get_generic_param_info): Encode the
13053         correct flags if we have the `class' or `struct' constraint.
13054
13055 2004-04-07  Martin Baulig  <martin@ximian.com>
13056
13057         * reflection.h
13058         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
13059
13060 2004-04-07  Jackson Harper  <jackson@ximian.com>
13061
13062         * appdomain.c: Revert extra patches, just wanted to bump the
13063         version number.
13064         
13065 2004-04-07  Jackson Harper  <jackson@ximian.com>
13066
13067         * Makefile.am: Add culture-info private headers.
13068         * icall.c: Add new icalls for contructing locales.
13069         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
13070         * locales.h: Declare new culture info construction methods.
13071         * object.h: Add new fields used to avoid the CultureMap to
13072         MonoCultureInfo.
13073         * culture-info.h: Definition of structs used in the culture info
13074         tables.
13075         * culture-info-tables.h: Autogenerated tables that contain culture
13076         info data. This file was generated with the locale-builder tool.
13077         * appdomain.c: Incement corlib version number.
13078         
13079 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
13080
13081         * appdomain.c: (mono_runtime_init) move mono_thread_init
13082         to before mono_object_new calls so critical sections
13083         are initialized before use.
13084
13085 2004-04-07  Martin Baulig  <martin@ximian.com>
13086
13087         * icall.c
13088         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
13089         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
13090         (ves_icall_MonoGenericParam_initialize): Removed.
13091         (monogenericparam_icalls): Removed.
13092         (generictypeparambuilder_icalls): Added new table for
13093         System.Reflection.Emit.GenericTypeParameterBuilder.
13094
13095         * reflection.c
13096         (mono_reflection_define_generic_parameter): Removed.
13097         (mono_reflection_initialize_generic_parameter): This is now called
13098         from GenericTypeParameterBuilder's .ctor.
13099
13100 2004-04-06  Martin Baulig  <martin@ximian.com>
13101
13102         * class.c (mono_class_init): Don't inflate nested classes in a
13103         generic instance.
13104         (mono_type_get_name_recurse): Include the generic arguments for
13105         generic instances and generic type declarations.
13106         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
13107         (_mono_class_get_instantiation_name): Removed.
13108         (mono_class_create_generic): Always use `gklass->name' as our name.
13109
13110         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
13111
13112         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
13113         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
13114         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
13115         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
13116         closed generic methods here.
13117
13118         * reflection.c
13119         (mono_reflection_generic_inst_get_nested_types): Removed.
13120         (inflate_mono_method): Copy the generic parameters from the
13121         MonoMethodHeader into out MonoGenericMethod.
13122
13123 2004-04-06  Martin Baulig  <martin@ximian.com>
13124
13125         * row-indexes.h
13126         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
13127
13128         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
13129
13130         * reflection.c (build_compressed_metadata): If we have any entries
13131         in the GenericParam, MethodSpec or GenericParamConstraint tables,
13132         set the header version to 1.1.
13133
13134 2004-04-06  Martin Baulig  <martin@ximian.com>
13135
13136         * class.c (mono_class_init): If we're a generic instance,
13137         initialize our nested classes, too.
13138         (_mono_class_get_instantiation_name): Deal with the new `!%d'
13139         suffix. 
13140
13141 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13142
13143         * process.c: quote the argument passed to the shell on windows.
13144
13145 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
13146
13147         * threads.c (mono_alloc_special_static_data): Allow this to be
13148         called during startup.
13149
13150 2004-04-02  Martin Baulig  <martin@ximian.com>
13151
13152         * icall.c
13153         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
13154
13155 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
13156
13157         * icall.c: Fix build.
13158
13159 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
13160
13161         * Makefile.am: Added security.c|h.
13162         * icall.c: Added icall for get_UserName;
13163         * security.c: New file for security related icalls. Added function
13164         get_UserName for System.Environment (fix #56144).
13165         * security.h: New. Header file for security.c
13166
13167 2004-04-02  Dick Porter  <dick@ximian.com>
13168
13169         * icall.c: Deleted the icalls that were obsoleted some time ago
13170         by the ICU string code, and which were mixed into the icall
13171         rearranging.  Fixes bug 55969.
13172
13173         * string-icalls.h: 
13174         * string-icalls.c: Deleted the code that those icalls reference.
13175
13176 2004-04-01  Martin Baulig  <martin@ximian.com>
13177
13178         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
13179
13180         * class.c (mono_class_from_generic_parameter): Don't set 
13181         TYPE_ATTRIBUTE_INTERFACE.
13182         (my_mono_class_from_generic_parameter): Likewise.
13183
13184 2004-04-01  Martin Baulig  <martin@ximian.com>
13185
13186         * loader.c (find_method): Added an optional `MonoClass *ic'
13187         argument to search in a specific interface.
13188         (mono_get_method_constrained): New public function.
13189
13190 2004-04-01  Martin Baulig  <martin@ximian.com>
13191
13192         * reflection.c (mono_image_get_generic_field_token): Use the
13193         `handleref' cache here.
13194
13195 2004-04-01  Martin Baulig  <martin@ximian.com>
13196
13197         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
13198
13199         * reflection.c (create_generic_typespec): Use the `typespec' hash
13200         here, not the `typeref' one.    
13201
13202 2004-04-01  Martin Baulig  <martin@ximian.com>
13203
13204         * class.c (mono_class_inflate_generic_type): Moved the
13205         functionality into a new static inflate_generic_type() which
13206         returns NULL if it didn't do anything.  Only increment the
13207         `mono_stats.inflated_type_count' if we actually inflated
13208         something.
13209         (mono_class_get_full): Check the classes type to see whether we
13210         need to inflate it; also inflate MONO_TYPE_(M)VAR.
13211
13212 2004-04-01  Jackson Harper  <jackson@ximian.com>
13213
13214         * reflection.c: Set culture for assembly references.
13215         
13216 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
13217
13218         * reflection.[ch], icall.[ch], Fix support for pinning variables.
13219
13220 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13221
13222         * assembly.c:
13223         (do_mono_assembly_open): the critical section also covers
13224         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
13225
13226 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13227
13228         * threads.c:
13229         (mono_manage_threads): abort the background threads when finishing.
13230         Fixes bug #47232.
13231
13232 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13233
13234         * gc.c: only close the done_event handle if there was no timeout.
13235         C-ified comments.
13236
13237 2004-03-30  Martin Baulig  <martin@ximian.com>
13238
13239         * icall.c (icall_entries): It's called "System.Activator", not
13240         "System.Activation".    
13241
13242 2004-03-30  Martin Baulig  <martin@ximian.com>
13243
13244         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
13245         (mono_class_create_from_typespec): Likewise.
13246
13247 2004-03-30  Martin Baulig  <martin@ximian.com>
13248
13249         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
13250         `has_ctor_constraint' and `initialized'.
13251
13252 2004-03-30  Martin Baulig  <martin@ximian.com>
13253
13254         * reflection.c (encode_new_constraint): New static function to add
13255         the constructor constraint attribute to a type parameter.
13256         (encode_constraints): Call encode_new_constraint() if necessary.
13257
13258         * reflection.h
13259         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
13260
13261         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
13262         
13263 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
13264
13265         * reflection.c, icall.c: add support for pinning variables. 
13266
13267 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
13268
13269         * marshal.c (mono_marshal_get_managed_wrapper):
13270         init bool local with zero rather than null.
13271
13272 2004-03-29  Martin Baulig  <martin@ximian.com>
13273
13274         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
13275         the "official" behavior here.
13276         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
13277
13278 2004-03-29  Martin Baulig  <martin@ximian.com>
13279
13280         * icall.c: Reflect latest API changes.
13281
13282 2004-03-29  Martin Baulig  <martin@ximian.com>
13283
13284         * loader.c (mono_get_method_from_token): Also call
13285         mono_metadata_load_generic_params () for abstract and interface
13286         methods; replace the type arguments in the method signature with
13287         the ones which are loaded from the metadata.
13288
13289 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
13290
13291         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
13292         of the lock is not the current thread. MS.NET don't do it, in spite of
13293         what the documentation says. See bug #56157.
13294
13295 2004-03-28  Martin Baulig  <martin@ximian.com>
13296
13297         * class.c (mono_class_init): Don't call init_properties() and
13298         init_events() for generic instances; set `prop->parent' when
13299         inflating properties.
13300
13301         * reflection.c (mono_generic_inst_get_object): Call
13302         `mono_class_init (ginst->klass)'.
13303         (mono_type_get_object): Only create a MonoGenericInst if your
13304         generic type is a TypeBuilder.
13305         (do_mono_reflection_bind_generic_parameters): Only set
13306         `ginst->is_dynamic' if our generic type is a TypeBuilder.
13307
13308 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
13309
13310         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
13311         Fixes #56091.
13312
13313 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13314
13315         * icall.c: added Kill_internal icall.
13316         * process.[ch]: added Kill_internal icall.
13317
13318 2004-03-25  Martin Baulig  <martin@ximian.com>
13319
13320         * class.h (MonoStats): Added `generic_instance_count',
13321         `inflated_method_count', `inflated_type_count' and
13322         `generics_metadata_size'.       
13323
13324 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13325
13326         * reflection.c: no warnings now.
13327
13328 2004-03-25  Martin Baulig  <martin@ximian.com>
13329
13330         * class.c (mono_class_get_full): New public function; does a
13331         mono_class_get(), but also takes a `MonoGenericContext *'.
13332
13333         * loader.c (mono_field_from_memberref): Renamed to
13334         `field_from_memberref', made static and added `MonoGenericContext *'
13335         argument.
13336         (mono_field_from_token): Added `MonoGenericInst *' argument.
13337         (method_from_memberef): Likewise.
13338         (mono_get_method_from_token): Likewise.
13339         (mono_get_method_full): New public function; does a
13340         mono_get_method(), but also takes a `MonoGenericContext *'.
13341
13342         * verify.c (mono_method_verify): Get the method's generic context
13343         and pass it to mono_field_from_token(), mono_get_method_full() and
13344         mono_class_get_full().
13345
13346 2004-03-25  Martin Baulig  <martin@ximian.com>
13347
13348         * class.c (mono_class_inflate_generic_type): Take a
13349         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
13350         `MonoGenericMethod *'.
13351
13352 2004-03-25  Martin Baulig  <martin@ximian.com>
13353
13354         * loader.h (MonoMethodInflated): Store the MonoGenericContext
13355         instead of the MonoGenericMethod here.
13356
13357 2004-03-25  Martin Baulig  <martin@ximian.com>
13358
13359         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
13360         each time we create a new MonoGenericInst, we also create a new
13361         context which points back to us.
13362
13363         * class.c (inflate_method): Use `ginst->context' instead of
13364         creating a new context.
13365
13366         * loader.c (method_from_memberref): Use
13367         `klass->generic_inst->context' instead of creating a new context.
13368
13369 2004-03-25  Martin Baulig  <martin@ximian.com>
13370
13371         * class.h (MonoGenericContext): New struct.
13372         (MonoGenericMethod): Removed `generic_inst'.
13373
13374         * class.c (mono_class_inflate_generic_method): Take a
13375         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
13376
13377 2004-03-25  Martin Baulig  <martin@ximian.com>
13378
13379         * loader.h (MonoMethodInflated): New typedef.
13380
13381         * metadata.h (MonoMethodSignature): Removed `gen_method', make
13382         `generic_param_count' consume just 30 bits, added `is_inflated'
13383         and `has_type_parameters' flags (one bit each).
13384
13385         * class.c (mono_class_inflate_generic_method): Create a
13386         MonoMethodInflated instead of a MonoMethodNormal and set
13387         `is_inflated' in the method signature.
13388
13389         * class.h (MonoGenericMethod): Removed `generic_method'.
13390
13391 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
13392
13393         * image.c: Make sure the name of a MonoImage is always an absolute path.
13394           This fixes bug #54415.
13395
13396 2004-03-24  Martin Baulig  <martin@ximian.com>
13397
13398         * class.c (mono_class_setup_vtable): If we're a generic instance,
13399         use our generic type's vtable size.
13400
13401 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13402
13403         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13404         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13405         problems.
13406
13407 2004-03-23  Martin Baulig  <martin@ximian.com>
13408
13409         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13410         `MonoEvent *events'.
13411
13412         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13413         (typebuilder_icalls): Added "get_event_info"; calls
13414         mono_reflection_event_builder_get_event_info(). 
13415
13416         * reflection.c (mono_reflection_generic_inst_initialize): Added
13417         `MonoArray *events'.
13418         (mono_reflection_event_builder_get_event_info): New function.
13419
13420 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13421
13422         * object.h: add mono_type_initialization_init
13423
13424         * object.c (mono_runtime_class_init): 
13425         implement class constructor synchronization rules
13426         to cope with threading issues.  
13427         add mono_type_initialization_init
13428
13429         * appdomain.c (mono_runtime_init): call 
13430         mono_type_initialization_init
13431
13432         * class.h: removing initializing field from MonoVTable
13433
13434 2004-03-23  Martin Baulig  <martin@ximian.com>
13435
13436         * class.c (my_mono_class_from_generic_parameter): Use
13437         `param->name' if it's not NULL. 
13438
13439 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13440
13441         * class.c: do not insert non-virtual methods in the vtable.
13442         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13443         that means the method is non-virtual. This never would have
13444         happened before.
13445
13446 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13447
13448         * profiler.c: Added lock for accessing coverage_hash.
13449
13450 2004-03-22  Martin Baulig  <martin@ximian.com>
13451
13452         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13453         `method->method->signature->generic_param_count != 0' to make it
13454         work for interface methods.
13455
13456 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13457
13458         * process.c: quote the string passed to the shell using g_shell_quote.
13459
13460 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13461
13462         * threads.c:
13463         (mono_threads_manage): don't remove the finalizer thread and self
13464         from the threads hash table so that mono_thread_manage can be called
13465         more than once.
13466
13467 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13468
13469         * process.c: quote the arguments when UseShellExecute is true. Fixes
13470         bug #55790.
13471
13472 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13473
13474         * threads.c: set mono_thread_detach as a cleanup routine for every
13475         thread. This way it's always executed upon thread termination, either
13476         aborted or finished normally. No more xsp hangs!
13477
13478 2004-03-17  Martin Baulig  <martin@ximian.com>
13479
13480         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13481         `int count_nested' and a `MonoType **nested'.
13482
13483         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13484         most of the functionality into a new static
13485         do_mono_reflection_bind_generic_parameters() and don't take a
13486         `MonoType *nested_in' argument any more.  Don't compute nested
13487         types here.
13488         (mono_reflection_generic_inst_get_nested_types): New public method
13489         to get nested types.
13490
13491         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13492         we're a nested class.
13493
13494         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13495         mono_reflection_generic_inst_get_nested_types() to compute the
13496         nested types.
13497
13498 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13499
13500         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13501         descriptive error message under windows.
13502         
13503 2004-03-17  Martin Baulig  <martin@ximian.com>
13504
13505         * class.c (dup_type): Added `const MonoType *original' argument;
13506         copy the attrs from the original type.
13507
13508 2004-03-17  Martin Baulig  <martin@ximian.com>
13509
13510         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13511         `m->generic_inst_cache' here.
13512
13513 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13514
13515         * exception.h exception.c: Add stack_overflow_exception.
13516
13517 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13518
13519         * threadpool.c:
13520         (overlapped_callback): call SetEvent *after* invoking the callback.
13521         No need to call CloseHandle.
13522
13523 2004-03-16  Martin Baulig  <martin@ximian.com>
13524
13525         * reflection.c (mono_image_get_fieldref_token): Take a
13526         `MonoReflectionField *' instead of a `MonoClassField *' and a
13527         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13528
13529 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13530
13531         * appdomain.c: don't add the culture to the filename we're looking for
13532         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13533
13534 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13535
13536         * locales.c: don't ignore symbols when doing case insensitive compares.
13537         Thanks Dick! Fixes bug #54046.
13538
13539         * threads.c: surround 'threads' usage with enter/leave in
13540         mono_thread_manage.
13541
13542 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13543
13544         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13545         implicitly marshalled as [Out]. Fixes #55450.
13546
13547         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13548         an exception.
13549
13550 2004-03-16  Martin Baulig  <martin@ximian.com>
13551
13552         * class.c (mono_class_from_generic_parameter): Use the actual
13553         parameter name. 
13554
13555 2004-03-16  Martin Baulig  <martin@ximian.com>
13556
13557         * reflection.c (type_get_signature_size): New static function.
13558         Compues the size of the type in a method signature.
13559         (method_get_signature_size): New static function; calls
13560         type_get_signature_size() to compute the actual size of the
13561         method's signature.
13562         (method_encode_signature): Use method_get_signature_size() to get
13563         the signature's size rather than using `nparams * 10'.
13564
13565 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13566
13567         * file-io.h: define here WapiOverlapped on windows. I don't want the
13568         regular OVERLAPPED one.
13569
13570         * file-io.c:
13571         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13572         Disabling AIO on windows.
13573
13574 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13575
13576         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13577         bug #55385.
13578
13579 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13580
13581         * appdomain.c: upgraded corlib version.
13582
13583         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13584         and BeginWrite. Allow opening files for asynchrnous operations.
13585
13586         * file-io.h: new struct that maps FileStreamAsyncResult.
13587         * icall.c: added new icalls.
13588         * process.[ch]: support setting child process environment variables
13589         and use the SHELL or COMSPEC when UseShellExecute is true.
13590
13591         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13592         callback for async. IO is here and also BindHandle.
13593
13594         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13595         from here.
13596
13597 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13598
13599         * reflection.c (create_custom_attr): Allow len == 0.
13600
13601         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13602         computation on big-endian machines.
13603
13604 2004-03-13  Martin Baulig  <martin@ximian.com>
13605
13606         * class.h (MonoGenericInst): Added `int count_ifaces'.
13607
13608         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13609         `ginst->count_ifaces' instead `klass->interface_count' since we
13610         may get called before the vtable is created.
13611
13612         * loader.c (mono_method_get_param_names): If we're a generic
13613         instance, return and don't initialize the class.
13614
13615         * reflection.c (mono_reflection_setup_generic_class): Don't call
13616         ensure_runtime_vtable().
13617         (mono_reflection_bind_generic_parameters): Set
13618         `ginst->count_ifaces'.
13619
13620 2004-03-11  Jackson Harper <jackson@ximian.com>
13621
13622         * icall.c:
13623         * unicode.c:
13624         * unicode.h: Remove unused System.Char icalls.
13625         
13626 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13627
13628         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13629         code when we P/Invoke the first library in Windows.Forms, instead
13630         of when we first open the assembly.
13631
13632         * assembly.c: Drop the lookup from here.
13633
13634 2004-03-10  Martin Baulig  <martin@ximian.com>
13635
13636         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13637         class for properties, fields and events.  Finally fixes #54945.
13638
13639 2004-03-10  Martin Baulig  <martin@ximian.com>
13640
13641         * metadata.c (mono_metadata_class_equal): New static function;
13642         checks whether two generic instances or two generic parameters are
13643         equal.
13644         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13645         compare classes.        
13646
13647 2004-03-10  Martin Baulig  <martin@ximian.com>
13648
13649         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13650
13651         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13652         argument and write it into the `reflection_info' field.
13653
13654         * icall.c
13655         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13656         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13657
13658 2004-03-09  Jackson Harper  <jackson@ximian.com>
13659
13660         * char-conversions.h: use 8 bits for numeric data its all we need
13661         * icall.c: numeric data is only 8 bits now.
13662
13663 2004-03-09  Martin Baulig  <martin@ximian.com>
13664
13665         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13666
13667         * class.c (init_properties, init_events): Initialize the new
13668         `parent' field.
13669
13670         * reflection.c (typebuilder_setup_properties): Likewise.
13671         (typebuilder_setup_events): Likewise.
13672
13673         * reflection.h (MonoEventInfo): Replaced `parent with
13674         `declaring_type' and `reflected_type'.
13675
13676         * icall.c (ves_icall_get_property_info): Distinguish between
13677         declaring and reflected type.
13678         (ves_icall_get_event_info): Likewise.
13679
13680 2004-03-09  Martin Baulig  <martin@ximian.com>
13681
13682         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13683         (ves_icall_Type_GetField): Correctly set field->klass.
13684
13685 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13686
13687         * loader.h: Fix warning.
13688
13689 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13690
13691         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13692         library routine if present.  Notice that it will still continue
13693         executing even if its missing, for those working on the Gtk#
13694         edition of Windows.Forms.
13695
13696         * assembly.c (do_mono_assembly_open): If loading the
13697         System.Windows.Forms call mono_loader_wini_init.
13698
13699 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13700
13701         * class.h: Added MonoRemoteClass struct.
13702         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13703         function for MonoStrings.
13704         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13705         Added internal call for getting the proxy type.
13706         * marshal.c: Get the type of transparent proxies from its remote_class.
13707         Added methods that generate the IL for type checks and casts:
13708         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13709         mono_marshal_get_proxy_cancast.
13710         * marshal.h: Declaration of the previous new methods.
13711         * object.c: Added new moethods for creating and updating MonoRemoteClass
13712         instances: mono_remote_class, mono_upgrade_remote_class, 
13713         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13714         * verify.c: FIx transparent_proxy_fields layout.
13715         * appdomain.c: Bump corlib version.
13716
13717 2004-03-04  Jackson Harper  <jackson@ximian.com>
13718
13719         * icall.c: Add icall to access char conversion tables.
13720         * char-conversions.h: Character conversion tables.
13721         * Makefile.am: Add char-conversions.h private header file.
13722         
13723 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13724
13725         * appdomain.c (unload_thread_main): Increase unloading timeout to
13726         10 sec as a temporary workaround for Nant problems.
13727
13728 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13729
13730         * gc.c: Add checks for GC_enable and GC_disable.
13731
13732         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13733         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13734         (bug #54988).
13735         
13736 2004-02-27  Martin Baulig  <martin@ximian.com>
13737
13738         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13739         `MonoReflectionType *' instead of a `MonoType *'.
13740
13741 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13742
13743         * gc.c (run_finalize): Avoid finalizing the object representing the
13744         finalizer thread.
13745         (finalizer_thread): Fix warning.
13746
13747 2004-02-25  Martin Baulig  <martin@ximian.com>
13748
13749         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13750         argument for nested types.
13751         (mono_class_create_generic): Added support for nested generictypes.
13752
13753         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13754         `GList *nested'.
13755
13756         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13757
13758         * reflection.c (method_encode_signature): Increase the minimum
13759         value of `size' from 10 to 11.
13760         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13761         and `MonoType **types' arguments instead of the `MonoArray
13762         *types'; added `MonoType *nested_in'.  Recursively instantiate
13763         nested classes. 
13764
13765 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13766
13767         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13768         stack_overflow_ex members which are used by exception handling.
13769
13770         * appdomain.c (mono_runtime_init): Initialize the new members.
13771
13772         * gc.c (mono_gc_enable): New helper function.
13773         * gc.c (mono_gc_disable): New helper function.
13774
13775 2004-02-23  Martin Baulig  <martin@ximian.com>
13776
13777         * icall.c: I must have been really stupid - make it actually work
13778         this time ;-)
13779
13780 2004-02-23  Martin Baulig  <martin@ximian.com>
13781
13782         * loader.c (method_from_memberref): Only inflate the method if
13783         it's in another klass.
13784
13785 2004-02-23  Martin Baulig  <martin@ximian.com>
13786
13787         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13788         (mono_class_init): If we're a generic instance and an interface,
13789         compute `class->interface_id'; also create `class->interfaces'
13790         here and inflate them.
13791
13792         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13793         `ginst->is_open'.
13794         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13795
13796         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13797
13798 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13799
13800         * reflection.c (method_encode_code): Improved the error message
13801         generated by the exception.
13802
13803 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13804
13805         * icall.c: Martin did not do what he said in the ChangeLog for
13806         2004-02-18, but put back the changes for properties and events.
13807         Commenting those changes out again and adding comment to bug #54518.
13808         
13809         * process.c: removed warning.
13810
13811 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13812
13813         * marshal.c (emit_struct_conv): Print an error message instead of
13814         asserting when a type does not have the StructLayout attribute.
13815
13816 2004-02-20  Martin Baulig  <martin@ximian.com>
13817
13818         * reflection.c (mono_type_get_object): Also use the cache for
13819         generic instances.
13820         (mono_reflection_bind_generic_parameters): Always compute
13821         `ginst->ifaces'.        
13822
13823 2004-02-20  Martin Baulig  <martin@ximian.com>
13824
13825         * class.h (MonoGenericMethod): Removed `klass'.
13826
13827         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13828         *klass' argument.
13829
13830 2004-02-20  Martin Baulig  <martin@ximian.com>
13831
13832         * reflection.c (method_encode_methodspec): Actually use the
13833         uninflated signature for the memberref.
13834
13835 2004-02-20  Martin Baulig  <martin@ximian.com>
13836
13837         * class.h (MonoGenericMethod): Removed `declaring'.
13838
13839         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13840         is NULL, compute it here.
13841
13842 2004-02-20  Martin Baulig  <martin@ximian.com>
13843
13844         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13845
13846         * metadata.c (mono_metadata_generic_inst_hash): New method.
13847         (mono_metadata_generic_inst_equal): New method.
13848
13849         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13850         `klass->image->generic_inst_cache' cache to avoid creating
13851         duplicate MonoGenericInst's.
13852
13853         * class.c (mono_class_inflate_generic_type): Use the cache.
13854
13855 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13856
13857         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13858
13859 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13860
13861         * icall.c: added Socket.WSAIoctl icall.
13862
13863         * socket-io.[ch]: implemented
13864         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13865
13866 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13867
13868         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13869
13870 2004-02-18  Urs C Muff  <umuff@quark.com>
13871
13872         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13873         this work on PPC and other big-endian architectures.
13874
13875         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13876         fields with an underscore to make sure they're only accessed by
13877         the read32() macro.
13878
13879 2004-02-18  Martin Baulig  <martin@ximian.com>
13880
13881         * icall.c: Put the klass->refclass changes back for methods and
13882         fields, but not for properties and events.  We're currently not
13883         distinguishing between DeclaringType and ReflectedType for
13884         properties and events, that's what caused the regressions.
13885
13886 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13887
13888         * object.c:
13889         (mono_async_result_new): the handle can be NULL.
13890
13891         * threadpool.c: Use an event instead of a semaphore, don't initialize
13892         it until needed. This saves quite a few semaphores from being created
13893         when using the threadpool.
13894
13895 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13896
13897         * object.c (mono_string_is_interned_lookup): Fix interning of long
13898         strings. Fixes #54473.
13899
13900         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13901
13902         * icall.c: Revert the klass->refclass changes since they introduce
13903         regressions (bug #54518).
13904
13905 2004-02-18  Martin Baulig  <martin@ximian.com>
13906
13907         * class.c (mono_class_init): If we're a generic instance and don't
13908         come from a TypeBuilder, inflate our members here.
13909         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13910         (mono_class_create_generic): New public method.
13911         (mono_class_initialize_generic): Removed.
13912         (get_instantiation_name): Renamed to
13913         _mono_class_get_instantiation_name() and made it public.
13914
13915 2004-02-18  Martin Baulig  <martin@ximian.com>
13916
13917         * class.c (mono_class_inflate_generic_type): Clear the new
13918         instance's `nginst->klass' when inflating a generic instance.
13919         (mono_class_is_subclass_of): Added (basic) support for generic
13920         instances.
13921
13922 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13923
13924         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13925         MonoMempool to hold compiled native code.
13926
13927 2004-02-17  Martin Baulig  <martin@ximian.com>
13928
13929         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13930         `properties'.
13931
13932         * reflection.c (mono_reflection_generic_inst_initialize): Added
13933         `MonoArray *properties' argument.
13934
13935         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13936
13937 2004-02-17  Martin Baulig  <martin@ximian.com>
13938
13939         * icall.c (ves_icall_Type_GetFields): Renamed to
13940         ves_icall_Type_GetFields_internal() and added a
13941         `MonoReflectionType *rtype' argument; pass it to
13942         mono_field_get_object() to set the field's "reflected" type.
13943         (ves_icall_Type_GetConstructors): Likewise.
13944         (ves_icall_Type_GetEvents): Likewise.
13945         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13946         argument; pass it to mono_method_get_object() to set the method's
13947         "reflected" type.       
13948
13949 2004-02-17  Martin Baulig  <martin@ximian.com>
13950
13951         * class.h (MonoDynamicGenericInst): New type.
13952         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13953
13954         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13955         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13956         (ves_icall_MonoGenericInst_GetFields): New interncall.
13957
13958         * class.c (mono_class_from_generic): Don't call
13959         mono_class_initialize_generic() if this is a dynamic instance;
13960         ie. it's being created from a TypeBuilder.
13961         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13962         `class->byval_arg.type'.
13963
13964         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13965         to `inflate_method' and made static.
13966         (mono_reflection_inflate_field): Removed.
13967         (mono_reflection_generic_inst_initialize): New public method.
13968
13969         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13970         `ctors' and `fields'; added `initialized'.
13971
13972 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13973
13974         * debug-helpers.c (mono_method_full_name): Fix output for empty
13975         namespaces.
13976
13977 2004-02-12  Martin Baulig  <martin@ximian.com>
13978
13979         * class.h (MonoClassField): Added `MonoType *generic_type'.
13980
13981         * reflection.c (mono_image_get_fieldref_token): Added support for
13982         instantiated generic types.
13983         (field_encode_inflated_field): Removed.
13984         (mono_image_get_inflated_field_token): Removed.
13985         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13986
13987         * reflection.h (MonoReflectionInflatedField): Removed.
13988
13989 2004-02-12  Martin Baulig  <martin@ximian.com>
13990
13991         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13992         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13993
13994         * reflection.c (mono_image_get_methodspec_token): Take a
13995         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13996         (mono_image_create_token): Check whether we have a
13997         `method->signature->gen_method' and call
13998         mono_image_get_methodspec_token() if appropriate.
13999         (inflated_method_get_object): Removed.
14000         (mono_reflection_bind_generic_method_parameters): Return a
14001         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
14002         (mono_reflection_inflate_method_or_ctor): Likewise.
14003
14004         * reflection.h (MonoReflectionInflatedMethod): Removed.
14005
14006 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
14007
14008         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
14009         for custom valuetype marshalling.
14010
14011         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
14012
14013 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14014
14015         * icall.c: fixed WSAGetLastError_internal name.
14016
14017 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
14018
14019         * threads.c (mono_thread_attach): Allow this to be called multiple
14020         times for a thread.
14021         
14022         * threads.c (build_wait_tids): Do not wait for ourselves.
14023
14024         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
14025         appdomain list is empty.
14026
14027         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
14028         memory returned by mono_string_builder_to_utf16, since it points into
14029         managed memory. Thanks to Bernie Solomon for noticing this.
14030
14031         * icall.c: Add AppDomainSetup icalls.
14032
14033         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
14034
14035         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
14036         types.
14037
14038         * reflection.c (reflection_methodbuilder_to_mono_method): Save
14039         custom attributes to the method_aux struct. Also fix array indexes etc.
14040
14041         * loader.c (mono_method_get_param_names): Make dynamic case work again.
14042         
14043 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
14044
14045         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
14046         (both static and runtime) and reduce startup time.
14047
14048 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
14049
14050         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
14051         AsAny marshalling conversion instead of crashing.
14052
14053         * marshal.c: Fix warnings.
14054
14055 2004-02-09  Martin Baulig  <martin@ximian.com>
14056
14057         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
14058
14059         * reflection.h (MonoReflectionInflatedMethod): Removed the
14060         `declaring' field, it's now in the unmanaged MonoGenericMethod.
14061
14062         * reflection.c (method_encode_methodspec): Removed the `method'
14063         argument; we get it from `gmethod->declaring'.
14064         (inflated_method_get_object): Removed the `declaring' argument.
14065
14066 2004-02-09  Martin Baulig  <martin@ximian.com>
14067
14068         * class.h (MonoGenericMethod): New type.
14069         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
14070         `generic_method'.
14071
14072         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
14073         a `MonoGenericMethod *gen_method' one.
14074
14075         * class.c (mono_class_inflate_generic_type): Take an additional
14076         `MonoGenericMethod * argument.  This is only non-NULL if we're
14077         inflating types for a generic method.   
14078         (mono_class_inflate_generic_signature): Renamed to
14079         inflate_generic_signature() and made static; take a
14080         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14081         (inflate_generic_header): Take a `MonoGenericMethod *' argument
14082         instead of a `MonoGenericInst *' one.
14083         (mono_class_inflate_generic_method): Likewise.
14084
14085         * reflection.c (encode_generic_method_sig): Take a
14086         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
14087         (method_encode_methodspec): Likewise.
14088         (inflated_method_get_object): Likewise. 
14089
14090         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
14091         field with a `MonoGenericMethod *gmethod' one.  
14092
14093 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
14094
14095         * class.h (mono_class_has_parent): add parens to expansion
14096         so you can ! this.
14097
14098 2004-02-08  Martin Baulig  <martin@ximian.com>
14099
14100         * image.h (MonoImage): Removed `generics_cache'.
14101
14102         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
14103         instead of a `MonoType *' argument; removed the `inflate_methods'
14104         argument.  Don't inflate methods here.
14105
14106         * loader.c (find_method): If it's a generic instance, call
14107         mono_class_init() on the `sclass->generic_inst->generic_type'.
14108
14109         * metadata.c (mono_type_size): Make this work on uninitialized
14110         generic instances; call it on the `ginst->generic_type's class.
14111
14112         * reflection.c (mono_reflection_bind_generic_parameters): Call
14113         mono_class_from_generic() to create the `ginst->klass'.
14114
14115 2004-02-08  Martin Baulig  <martin@ximian.com>
14116
14117         * class.h (MonoClass): Changed type of `generic_inst' from
14118         `MonoType *' to `MonoGenericInst *'.
14119
14120 2004-02-08  Martin Baulig  <martin@ximian.com>
14121
14122         * icall.c (ves_icall_Type_BindGenericParameters): Just call
14123         mono_type_get_object(), this is now creating a `MonoGenericInst'
14124         for MONO_TYPE_GENERICINST.
14125         (ves_icall_MonoGenericInst_GetParentType): Likewise.
14126         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
14127
14128         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
14129         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
14130         (inflated_method_get_object): Added `MonoClass *refclass' argument.
14131         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
14132         and reflected type.
14133
14134         * reflection.h (MonoReflectionInflatedMethod): Removed
14135         `declaring_type' and `reflected_type'.
14136
14137 2004-02-08  Martin Baulig  <martin@ximian.com>
14138
14139         * class.h (MonoGenericInst): Added `MonoType *parent' and
14140         `MonoType **ifaces'.
14141
14142         * reflection.h (MonoReflectionGenericInst): Removed `klass',
14143         `parent' and `interfaces'.
14144
14145         * reflection.c (mono_reflection_bind_generic_parameters): Take a
14146         `MonoType *' argument and return a `MonoType *'.
14147
14148         * icall.c
14149         (ves_icall_MonoGenericInst_GetParentType): New interncall.
14150         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
14151
14152 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14153
14154         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
14155         valuetype marshalling.
14156
14157 2004-02-06  Martin Baulig  <martin@ximian.com>
14158
14159         * class.c
14160         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
14161         (my_mono_class_from_generic_parameter): Likewise.
14162
14163 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
14164
14165         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
14166         contents of the symbol files lazily.
14167
14168         * object.h (MonoThread): Add 'name' and 'name_len' fields.
14169
14170         * threads.h threads.c icall.c: New icalls for getting and setting the
14171         threads name.
14172
14173 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
14174
14175         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
14176         Raise an exception when the domain is not found.
14177
14178 2004-02-03  Martin Baulig  <martin@ximian.com>
14179
14180         * reflection.c (mono_image_get_methodspec_token): Use the
14181         uninflated signature; fixes gen-33.
14182
14183 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
14184
14185         * gc.c threads.c: Make the finalizer thread a normal managed thread so
14186         the finalizer code can use thread functionality.
14187
14188         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
14189         the finalizer thread.
14190
14191         * threads.c: Make some functions more robust.
14192
14193         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
14194
14195         * metadata.h: Add new marshalling conventions.
14196
14197         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
14198         stringbuilder marshalling. Fixes #53700.
14199
14200         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
14201
14202         * reflection.c (mono_image_get_type_info): Save declarative security
14203         info.
14204
14205         * reflection.c (mono_image_get_field_info): Handle uninitialized 
14206         unmanaged fields as well.
14207
14208         * appdomain.c: Bump corlib version.
14209
14210 2004-02-01  Martin Baulig  <martin@ximian.com>
14211
14212         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
14213         method type arguments.  
14214
14215 2004-01-30  Duncan Mak  <duncan@ximian.com>
14216
14217         * marshal.h: Add prototype for
14218         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
14219         and
14220         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
14221         fix the build.
14222
14223 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
14224
14225         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
14226         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
14227
14228 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14229
14230         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14231         custom marshalling of valuetypes.
14232
14233         * marshal.c: Fix some warnings.
14234
14235 2004-01-29  Martin Baulig  <martin@ximian.com>
14236
14237         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
14238         for generic method parameters.
14239
14240         * reflection.c (method_encode_methodspec): Write the uninflated
14241         signature into the methodspec table.
14242         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
14243         is always the uninflated method.
14244         (reflection_methodbuilder_to_mono_method): Copy the generic
14245         parameters from the MethodBuilder into `header->gen_params'.
14246
14247 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
14248
14249         * class.c (mono_class_from_generic_parameter): Fix warning.
14250
14251 2004-01-27  Martin Baulig  <martin@ximian.com>
14252
14253         * class.c (mono_class_from_generic_parameter): Don't create
14254         `klass->methods' here.  
14255
14256 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
14257
14258         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
14259         extension since it does not work with libraries named lib<FOO>.dll.so.
14260
14261 2004-01-25  Martin Baulig  <martin@ximian.com>
14262
14263         * class.c (mono_class_inflate_generic_type): Added support for
14264         MONO_TYPE_GENERICINST.
14265
14266         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
14267         inflate methods on open constructed types.      
14268
14269 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14270
14271         * object.c: fire ProcessExit event in the root AppDomain after running
14272         Main. Fixes bug #53299.
14273
14274 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
14275
14276         * socket-io.c: include the new socket-wrappers.h header.
14277         Use the wrappers instead of the unix socket functions to make the code
14278         more clear.
14279
14280 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
14281
14282         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
14283
14284         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14285         Fixes #22532.
14286
14287 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
14288
14289         * reflection.c (mono_image_create_pefile): Handle the case when the
14290         entry point is not a MethodBuilder.
14291
14292         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14293         field to ReflectionMethod since it is not allways a builder.
14294
14295         * reflection.c (type_get_fully_qualified_name): New helper function to
14296         return the fully qualified name of a type.
14297
14298         * reflection.c (encode_marshal_blob): Always emit the fully qualified
14299         type name for custom marshallers.
14300
14301         * reflection.c (mono_marshal_spec_from_builder): Ditto.
14302
14303         * class.c (mono_class_setup_vtable): If a parent class already 
14304         implements an interface, use the implementing methods from that class.
14305         Fixes #53148.
14306
14307 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14308
14309         * threadpool.c: just return instead of ExitThread to allow for thread
14310         clean up earlier.
14311
14312 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
14313
14314         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
14315         when closing resource modules.
14316
14317         * reflection.c (mono_image_create_pefile): Handle the case when the
14318         entry point is not a MethodBuilder.
14319
14320         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
14321         field to ReflectionMethod since it is not allways a builder.
14322
14323 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
14324
14325         * marshal.c (mono_marshal_get_managed_wrapper): 
14326         mono_marshal_alloc takes native int so CONV_I
14327         the arg for 64bits.
14328
14329 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
14330
14331         * reflection.c (fixup_cattrs): New function to fixup the methoddef
14332         tokens in the cattr table. Fixes #53108.
14333
14334 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14335
14336         * loader.c: don't trim ".dll" before looking up in the config file.
14337         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
14338
14339 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
14340
14341         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
14342         Return the module which contains the resource as well.
14343         (ves_icall_System_Reflection_Module_Close): New icall.
14344
14345         * appdomain.c: Bump corlib version number.
14346
14347         * image.c (mono_image_addref): New public function.
14348
14349         * assembly.c: Call mono_image_addref.
14350
14351         * reflection.c (mono_module_get_object): Increase reference count of 
14352         the image.
14353
14354         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
14355         Fixes #22532.
14356
14357         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
14358         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
14359         proper exceptions on DllImport problems.
14360
14361 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
14362
14363         * class.c, metadata.c: eliminate CSIZE macro.
14364
14365 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
14366
14367         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
14368         * object.h: Added async_callback field in MonoAsyncResult.
14369         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
14370         * verify.c: Added async_callback in MonoAsyncResult layout.
14371
14372 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
14373
14374         * reflection.c (mono_reflection_get_custom_attrs): Add support
14375         for Modules.
14376
14377 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14378
14379         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
14380         marshalling.
14381         (mono_marshal_method_from_wrapper): Add null pointer check.
14382
14383 2004-01-16  Martin Baulig  <martin@ximian.com>
14384
14385         * debug-mono-symfile.h: Set version number to 36 and reflect
14386         latest symbol writer changes.
14387
14388 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
14389
14390         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
14391         multi-dimensional arrays.
14392         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
14393         (mono_class_from_mono_type): Use bounded_array_class_get.
14394         
14395         * class.c (mono_bounded_array_class_get): New function which takes
14396         a 'bounded' bool argument to distinguish vectors from one dimensional
14397         arrays.
14398
14399         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14400         bounded_array_class_get if the array has bounds.
14401
14402         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14403         Search modules loaded using AssemblyBuilder:AddModule as well.
14404
14405 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14406
14407         * appdomain.c: increased corlib version.
14408         * filewatcher.c: removed g_print.
14409         * icall.c:
14410         (get_property_info): only allocate what is actually requested.
14411         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14412
14413 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14414
14415         * Makefile.am: added filewatcher.[ch]
14416         * filewatcher.[ch]: FileSystemWatcher runtime support.
14417         * icall.c: added new FSW icalls.
14418
14419 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14420
14421         * string-icalls.c: fix stringbuilder regression as suggested by
14422         Iain McCoy <iain@mccoy.id.au>.
14423
14424 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14425
14426         * process.c (process_read_stringtable_block): Recognize '007f' as
14427         a language neutral stringtable block.
14428
14429 2004-01-12  Patrik Torstensson
14430
14431         * object.h (MonoStringBuilder) : Changed layout to support our
14432         new stringbuilder class.
14433         * marshal.c: Change marshalling to support the new layout of 
14434         string builder.
14435         * appdomain.c: increased version number because new layout of
14436         string builder.
14437
14438 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14439
14440         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14441         assembly name as an string instead of an AssemblyName, since it is
14442         easier to extract info from it.
14443
14444         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14445         the culture subdirectories too. Fixes #52231.
14446
14447 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14448
14449         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14450         It takes 2 new parameters with an optional name for the method to look
14451         for and case ignoring info.
14452
14453         * threadpool.c: removed unused variable.
14454
14455 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14456
14457         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14458         It takes 2 new parameters with an optional name for the property to look
14459         for and case ignoring info.
14460         Fixes bug #52753.
14461
14462 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14463
14464         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14465         Fix #52451.
14466
14467 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14468
14469         * appdomain.c:
14470         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14471         Fixes bug #52630.
14472
14473 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14474
14475         * reflection.c: Add support for more than one unmanaged resource.
14476
14477         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14478         in field->def_value, as done in all other cases.
14479
14480         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14481         TypeBuilders.
14482
14483         * reflection.c (mono_reflection_create_runtime_class): Remove 
14484         errorneous assignment to klass->element_class, since it is already
14485         done in mono_reflection_setup_internal_class.
14486
14487 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14488
14489         * gc.c: added missing LeaveCriticalSection.
14490         * icall.c: indented a couple of lines.
14491         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14492         if we call EndInvoke inside a callback. Fixes bug #52601.
14493
14494 2004-01-07  Martin Baulig  <martin@ximian.com>
14495
14496         * mono-debug-debugger.h
14497         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14498
14499 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14500
14501         * appdomain.c: Use messages in NotImplementedException.
14502
14503         * exception.c (mono_get_exception_not_implemented): Now this takes
14504         a message argument.
14505
14506         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14507         exception instead of g_asserting an aborting when something is not
14508         implemented.
14509
14510         Add some inline docs.
14511
14512 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14513
14514         * reflection.h: Update after changes to object layout.
14515
14516         * reflection.c: Implement saving of unmanaged aka win32 resources.
14517
14518         * appdomain.c: Bump version number.
14519
14520         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14521         Handle missing domains gracefully.
14522
14523 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14524
14525         * file-io.c : On Windows, there are much more invalid_path_chars.
14526
14527 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14528
14529         * class.h, object.c: prepare for GetType () speedup.
14530
14531 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14532
14533         * profiler.c: workaround for --profile null reference exception on
14534           cygwin. Patch by Patrik Torstensson.
14535
14536 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14537
14538         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14539         make work for unaligned access.
14540
14541 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14542
14543         * class.c: small cleanup (class->fields [i] -> field).
14544         * image.c: check address of metadata is valid.
14545
14546 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14547
14548         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14549         search the list of loaded assemblies.
14550
14551         * reflection.c (mono_reflection_type_from_name): Use 
14552         mono_assembly_loaded instead of mono_image_loaded.
14553
14554         * reflection.c: Fix warnings.
14555
14556 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14557
14558         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14559         is dynamic. This is needed since an assembly can contain both dynamic and
14560         non-dynamic images.
14561
14562         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14563         assembly->dynamic.
14564
14565         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14566
14567         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14568         to store modules loaded using AddModule.
14569
14570         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14571         on Modules.
14572
14573         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14574
14575         * reflection.c (mono_image_fill_export_table_from_module): New function to
14576         fill out the EXPORTEDTYPES table from a module.
14577
14578         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14579         into a separate function. Also handle loaded non-dynamic modules.
14580
14581         * reflection.c (mono_image_basic_init): Fix memory allocation.
14582
14583         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14584
14585         * assembly.c (mono_assembly_load_references): Make this public.
14586
14587 2003-12-19  Martin Baulig  <martin@ximian.com>
14588
14589         * class.c (mono_class_initialize_generic): Made this static, take
14590         a `MonoGenericInst *' instead of a `MonoClass *'.
14591         (mono_class_from_generic): Call mono_class_initialize_generic()
14592         unless we're already initialized or being called from
14593         do_mono_metadata_parse_generic_inst().
14594
14595         * class.h (MonoGenericInst): Added `initialized' and
14596         `init_pending' flags.
14597
14598         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14599         `mono_class_init (gklass)' or mono_class_initialize_generic()
14600         here; set `generic_inst->init_pending' while parsing the
14601         `type_argv'.
14602
14603 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14604
14605         * locales.c: include string.h for memxxx prototypes
14606
14607 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14608
14609         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14610         constructor when accessing literal fields.
14611
14612 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14613
14614         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14615
14616         * reflection.c (assembly_add_resource_manifest): New function to fill
14617         the MANIFESTRESOURCE table.
14618
14619         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14620
14621         * reflection.h: Update to changes in class layout.
14622
14623         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14624         Reenable call to mono_runtime_is_shutting_down ().
14625
14626         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14627         determine if the runtime is shutting down.
14628
14629 2003-12-16  Jackson Harper <jackson@ximian.com>
14630
14631         * icall.c: comment out call to mono_runtime_is_shutting_down to
14632         fix build.
14633         
14634 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14635
14636         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14637         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14638
14639 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14640
14641         * reflection.c: move definition of swap_with_size
14642         to before its first call
14643
14644 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14645
14646         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14647
14648         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14649         icall.
14650
14651         * object.c: Fix warnings.
14652
14653         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14654         members if FlattenHierarchy is set.
14655
14656         * reflection.c (mono_image_add_decl_security): New function to emit
14657         declarative security.
14658
14659         * reflection.h reflection.c: Add support for declarative security.
14660
14661         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14662         
14663 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14664
14665         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14666         
14667         * appdomain.c verify.c: Moved corlib version checking into its own
14668         function in appdomain.c since it needs to create vtables etc.
14669
14670 2003-12-13  Patrik Torstensson <p@rxc.se>
14671
14672         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14673         instead of unwrapped server.
14674
14675 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14676
14677         * verify.c (check_corlib): Fix field index.
14678
14679 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14680
14681         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14682         GetGacPath icall.
14683
14684 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14685
14686         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14687         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14688         cope with sizeof(size_t) != sizeof(guint32).
14689
14690 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14691
14692         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14693         in case of failure.
14694
14695 2003-12-10  Mark Crichton <crichton@gimp.org>
14696
14697         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14698         in managed code.
14699
14700         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14701
14702 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14703
14704         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14705         marked as deleted.
14706
14707 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14708
14709         * verify.c (check_corlib): Handle the case when the version field is 
14710         initialized by a static constructor.
14711
14712 2003-12-08  Patrik Torstensson  <p@rxc.se>
14713
14714     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14715
14716 2003-12-08  Martin Baulig  <martin@ximian.com>
14717
14718         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14719         a MonoReflectionGenericParameter, also take the parameter index
14720         and name as arguments.
14721         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14722         (ves_icall_MonoGenericParam_initialize): New interncall.
14723         (ves_icall_Type_make_byref_type): New interncall.
14724
14725         * reflection.h (MonoReflectionGenericParam): Derive from
14726         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14727         `index' fields.
14728
14729         * reflection.c (mono_reflection_define_generic_parameter): Create
14730         and return a new MonoReflectionGenericParam; don't initialize the
14731         constraints here.
14732         (mono_reflection_initialize_generic_parameter): New public method;
14733         initializes the constraints and creates the `param->pklass'.
14734
14735 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14736
14737         * reflection.h reflection.c: Use the new fields 'num_types', 
14738         'num_fields' and 'num_methods' to track the number of types etc.
14739
14740         * verify.c (check_corlib): Check corlib version number.
14741
14742 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14743
14744         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14745         function works on all methods.
14746
14747 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14748
14749         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14750         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14751         the custom_type_info flag of the transparent proxy.
14752         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14753         objects that supports IRemotingTypeInfo.
14754         * object.h: Added custom_type_info field in transparent proxy.
14755
14756 2003-12-06  Martin Baulig  <martin@ximian.com>
14757
14758         * class.c (mono_class_create_from_generic): Removed.
14759         (mono_class_from_generic): Check `ginst->klass' before doing
14760         anything else.  This is important to fully support "recursive"
14761         generic types.
14762
14763         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14764         empty `generic_inst->klass' before doing anything else.
14765
14766 2003-12-06  Dick Porter  <dick@ximian.com>
14767
14768         * verify.c: 
14769         * object.h:
14770         * icall.c:
14771         * locales.c: Use C structs to access class fields.  Don't do a
14772         conversion between MonoString and UChar because both are
14773         platform-endian UTF-16.  Compare now takes startindex and count
14774         parameters.  Add a char overload for IndexOf.  Speed up the
14775         invariant string IndexOf.
14776
14777 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14778
14779         * Makefile.am (monosn_LDADD): Fix parallel build.
14780
14781 2003-12-04  Martin Baulig  <martin@ximian.com>
14782
14783         * icall.c
14784         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14785         (ves_icall_Type_make_array_type): New interncall.       
14786
14787 2003-12-04  Martin Baulig  <martin@ximian.com>
14788
14789         * locales.c: also change it in the !HAVE_ICU case.
14790
14791 2003-12-04  Dick Porter  <dick@ximian.com>
14792
14793         * icall.c:
14794         * locales.c: construct_compareinfo is now in CompareInfo, not
14795         CultureInfo.
14796
14797 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14798
14799         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14800         image->files array.
14801
14802         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14803         table as well.
14804
14805         * assembly.c (mono_assembly_load_references): Only load references
14806         once.
14807
14808         * class.c (mono_class_from_name): Avoid linear search of the 
14809         EXPORTEDTYPE table.
14810
14811         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14812
14813 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14814
14815         * image.h (MonoImage): Add 'field_cache' field.
14816
14817         * loader.c (mono_field_from_token): Cache field lookups.
14818         
14819         * reflection.c (mono_module_get_object): Fix name property.
14820
14821         * icall.c (ves_icall_get_enum_info): Update after changes to 
14822         mono_metadata_get_constant_index ().
14823
14824         * icall.c: Get rid of get_type_info icall, use a separate icall for
14825         each type property to avoid needless memory allocations. Fixes #51514.
14826
14827         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14828         to avoid needless binary searches.
14829
14830         * class.c (class_compute_field_layout): Move the initialization of
14831         field->def_value to mono_class_vtable ().
14832
14833         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14834         non-corlib types.
14835
14836         * object.c (mono_object_allocate): Make it inline.
14837
14838         * object.c (mono_object_allocate_spec): Make it inline.
14839         
14840 2003-12-02  Dick Porter  <dick@ximian.com>
14841
14842         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14843         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14844
14845 2003-12-01  Dick Porter  <dick@ximian.com>
14846
14847         * threads.c: Fix signature and call in CreateMutex and
14848         CreateEvent.
14849
14850 2003-12-01  Dick Porter  <dick@ximian.com>
14851
14852         * icall.c: 
14853         * locales.c: Implement string compares and searching
14854
14855         * object.h: Add extra Thread field
14856
14857 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14858
14859         * reflection.c (fixup_method): Add support for MonoCMethod.
14860
14861 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14862
14863         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14864
14865         * reflection.c (assembly_name_to_aname): Allow extra characters in
14866         assembly names. Fixes #51468.
14867
14868 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14869
14870         * exception.c (mono_exception_from_name_domain): New helper function.
14871
14872         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14873         exception object in the correct domain.
14874
14875         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14876         formatting + make a copy a the input data.
14877
14878         * loader.c (mono_get_method_from_token): Methods which contain
14879         native code do not have entries in the ImplMap.
14880
14881         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14882         Thanks to Gonzalo for spotting this.
14883         
14884         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14885         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14886
14887         * assembly.h (mono_assembly_load_from): Split the second part of 
14888         assembly loading into a new public function.
14889
14890         * exception.h (mono_get_exception_bad_image_format): New function.
14891
14892 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14893
14894         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14895         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14896         
14897         * icall.c: Add new icall for creating dynamic methods.
14898
14899         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14900
14901         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14902
14903         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14904         create a dynamic method.
14905
14906         * reflection.c (resolve_object): New helper function.
14907
14908         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14909         which manipulate it so they can also work on dynamic methods.
14910
14911         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14912         creating the MonoReflectionMethodAux structure if it is not needed.
14913         
14914         * reflection.h verify.c: Update after changes to object layout.
14915
14916         * reflection.c (method_builder_encode_signature): Fix compilation on
14917         gcc 2.95.x.
14918
14919 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14920
14921         * appdomain.h: Added support for context static fields. Added static_data
14922           field to MonoAppContext and renamed thread_static_fields to a more
14923           generic special_static_fields in MonoAppDomain, since it can now contain
14924           context static fields.
14925         * domain.c: Updated hashtable name.
14926         * object.c: Replaced field_is_thread_static() for a more generic
14927           field_is_special_static() which also checks for context static attribute.
14928           In mono_class_vtable(), added support for static context fields.
14929         * threads.c: Changed methods that manage thread static fields to more
14930           generic methods so they can be reused both for thread and context static
14931           data.
14932         * threads.h: Declared some new methods.
14933
14934 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14935
14936         * reflection.h: Update after changes to the managed types.
14937
14938         * reflection.c (encode_custom_modifiers): New helper function.
14939
14940         * reflection.c (method_encode_signature): Emit custom modifiers.
14941
14942         * reflection.c (field_encode_signature): Emit custom modifiers.
14943
14944 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14945
14946         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14947
14948         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14949         implementation.
14950
14951         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14952         icall.
14953
14954         * object.c (mono_field_get_value_object): New function.
14955
14956         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14957         specific.
14958
14959 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14960
14961         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14962         return a preallocated out-of-memory exception instance.
14963
14964         * object.c (out_of_memory): Use the new function.
14965
14966         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14967         flag is before the custom modifiers. Fixes #49802.
14968
14969 2003-11-16  Martin Baulig  <martin@ximian.com>
14970
14971         * class.c (mono_class_is_open_constructed_type): Implemented the
14972         MONO_TYPE_GENERICINST case.
14973
14974 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14975
14976         * assembly.c (mono_assembly_fill_assembly_name): New function to
14977         fill out the MonoAssemblyName structure.
14978         (mono_assembly_open): Use the new function.
14979
14980         * icall.c (fill_reflection_assembly_name): New helper function.
14981
14982         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14983         new function.
14984
14985         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14986
14987 2003-11-15  Martin Baulig  <martin@ximian.com>
14988
14989         * class.c (mono_class_is_open_constructed_type): New public
14990         function; checks whether a type is an open constructed type,
14991         ie. whether it still contains type parameters.
14992         (mono_class_inflate_generic_type): If we're a type parameter and
14993         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14994         type.
14995
14996         * class.h (MonoGenericInst): Added `guint32 is_open'.
14997
14998         * loader.c (method_from_methodspec): Check whether we're an open
14999         or closed constructed type and set `ginst->is_open'.
15000
15001         * reflection.c (mono_reflection_bind_generic_parameters): Check
15002         whether we're an open or closed constructed type and set
15003         `ginst->is_open'.
15004         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
15005         from open constructed types.
15006
15007 2003-11-15  Martin Baulig  <martin@ximian.com>
15008
15009         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15010         a generic instance (instead of a generic type declaration) with
15011         unbound generic parameters, bind them to our actual types.
15012
15013 2003-11-14  Martin Baulig  <martin@ximian.com>
15014
15015         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
15016
15017         * reflection.c (mono_reflection_bind_generic_parameters): If we're
15018         an interface type, populate `res->interfaces' with instantiated
15019         versions of all the interfaces we inherit.
15020
15021 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
15022
15023         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
15024         when MONO_PATH is set but doesn't contain the install dir.
15025
15026 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15027
15028         * icall.c:
15029         (ves_icall_Type_GetInterfaces): don't return an interface twice when
15030         it's also implemented in base classes. Fixes bug #50927.
15031
15032 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
15033
15034         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
15035         if this method is called from a finalizer. Fixes #50913.
15036
15037 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
15038
15039         * threads.c: Implement VolatileRead/VolatileWrite
15040
15041         * icall.c: Add new icalls for VolatileRead/VolatileWrite
15042
15043 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15044
15045         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
15046         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
15047         2.95.3.
15048
15049         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
15050         from Peter Ross (pro@missioncriticalit.com).
15051         
15052 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
15053
15054         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
15055
15056 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15057
15058         * assembly.c (mono_assembly_load_references): Disable check because it
15059         triggers on older corlibs which lots of people have.
15060
15061 2003-11-12  Jackson Harper  <jackson@ximian.com>
15062
15063         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
15064         load corlib.dll if mscorlib.dll is not found.
15065         * assembly.h: Remove corlib name define.
15066         * class.c:
15067         * domain.c:
15068         * image.c: Change corlib name to mscorlib.
15069         
15070 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
15071
15072         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
15073
15074 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
15075
15076         * appdomain.h: Added loader_optimization here to sync with the C#
15077         code, and add disallow_binding_redirects field.
15078
15079 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15080
15081         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
15082
15083         * reflection.c (mono_image_build_metadata): Fix crash on modules
15084         with no types.
15085
15086         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
15087
15088         * icall.c (ves_icall_get_method_info): Return callingConvention as
15089         well.
15090
15091         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
15092         namespaces from the EXPORTEDTYPE table as well.
15093
15094         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
15095         from all modules inside the assembly.
15096         
15097 2003-11-11  Martin Baulig  <martin@ximian.com>
15098
15099         * reflection.c (mono_reflection_bind_generic_parameters): Make
15100         this work for interfaces.
15101
15102 2003-11-11  Martin Baulig  <martin@ximian.com>
15103
15104         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
15105
15106 2003-11-11  Martin Baulig  <martin@ximian.com>
15107
15108         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
15109         "MonoInflatedMethod" and "MonoInflatedCtor".
15110
15111 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
15112
15113         * reflection.c (resolution_scope_from_image): Use the assembly table
15114         from the manifest module, since other modules don't have it.
15115
15116         * debug-helpers.c (mono_type_full_name): New helper function.
15117
15118         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
15119
15120         * image.c (mono_image_load_file_for_image): New public function which
15121         is a replacement for the load_file_for_image in class.c.
15122
15123         * assembly.c (mono_assembly_load_module): A wrapper for the function
15124         above which does assembly association and reference loading too.
15125
15126         * class.c (mono_class_from_name): Call mono_assembly_load_module.
15127
15128 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15129
15130         * appdomain.c: not all of the attributes for the full assembly name
15131         are required and the order doesn't matter. Fixes bug #50787.
15132
15133 2003-11-10  Dick Porter  <dick@ximian.com>
15134
15135         * locales.c: Use platform-endian UTF16
15136
15137 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15138
15139         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15140         
15141 2003-11-10  Martin Baulig  <martin@ximian.com>
15142
15143         * metadata.c
15144         (mono_metadata_load_generic_params): Make this actually work.
15145
15146         * reflection.c (mono_reflection_bind_generic_parameters): If our
15147         parent is a generic instance, pass all the `types' to it, no
15148         matter whether it has the same number of type parameters or not.
15149
15150 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
15151
15152         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
15153
15154         * assembly.c (mono_assembly_load_references): Move the image<->assembly
15155         assignment code to this function so it gets called recursively for all
15156         modules.
15157
15158         * image.c (load_modules): Remove the assembly assignment since it is
15159         now done by mono_assembly_load_references.
15160         
15161         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
15162         Add 'module' argument.
15163         (mono_module_get_types): New helper function.
15164         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
15165
15166 2003-11-08  Martin Baulig  <martin@ximian.com>
15167
15168         * class.c (mono_class_inflate_generic_method): Interface method
15169         don't have a header.
15170
15171         * reflection.c (mono_image_get_methodspec_token): Take an
15172         additional `MonoGenericInst *' argument instead of reading it from
15173         the header; this is necessary to support interfaces.
15174         (mono_image_create_token): Pass the `MonoGenericInst *' from the
15175         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
15176         (inflated_method_get_object): Take an additional `MonoGenericInst *'
15177         argument.
15178
15179         * reflection.h (MonoReflectionInflatedMethod): Added
15180         `MonoGenericInst *ginst'.
15181
15182 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
15183
15184         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
15185
15186 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
15187
15188         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
15189
15190 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
15191
15192         * reflection.c 
15193         (reflection_methodbuilder_from_method_builder):
15194         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
15195         initialize a ReflectionMethodBuilder structure.
15196         (mono_image_get_methodbuilder_token):
15197         (mono_image_get_ctorbuilder_token): New functions to emit memberref
15198         tokens which point to types in another module inside the same assembly.
15199
15200         * reflection.c: Use the new helper functions.
15201         
15202         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
15203
15204         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
15205         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
15206
15207         * reflection.c (resolution_scope_from_image): Emit a moduleref if
15208         neccesary.
15209
15210         * reflection.c (mono_image_build_metadata): Emit metadata only for the
15211         current module. Emit the manifest only for the main module.
15212
15213         * reflection.c (mono_image_create_token): Add assertion when a 
15214         memberref needs to be created.
15215
15216         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
15217
15218         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
15219         larger buffer for the custom attribute blob. Fixes #50637.
15220         
15221 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15222
15223         * threadpool.c: notify listener on async processing handles after
15224         invoking the async callback. Thanks to Zoltan.
15225
15226 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15227
15228         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
15229         avoid code duplication.
15230
15231         * reflection.h (MonoDynamicImage): New type which is currently unused,
15232         but will be used through the ref.emit code in place of 
15233         MonoDynamicAssembly.
15234
15235         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15236         object layout.
15237
15238         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
15239         a MonoDynamicImage instead of just a MonoImage.
15240         
15241         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
15242         icalls to ModuleBuilder but keep their semantics, so they will work
15243         with moduleb->assemblyb. This will change later.
15244         
15245 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15246
15247         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
15248         object layout.
15249
15250         * reflection.c (mono_image_build_metadata): Avoid creation of a default
15251         main module, since it is now done by the managed code.
15252
15253 2003-11-03  Martin Baulig  <martin@ximian.com>
15254
15255         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
15256         `ginst->klass' here.
15257         (method_encode_methodspec): Don't use the `ginst->generic_method's
15258         klass if it's a generic instance, use `ginst->klass' in this case.
15259
15260 2003-11-03  Martin Baulig  <martin@ximian.com>
15261
15262         * reflection.c (mono_image_get_generic_method_param_info):
15263         Removed, use mono_image_get_generic_param_info() instead.
15264         (mono_image_get_type_info): Write the GenericParam table before
15265         the Method table.  This is neccessary because in the GenericParam
15266         table, type parameters of the class (ie. '!0' etc.) must come
15267         before the ones from its generic methods (ie. '!!0' etc).
15268
15269 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
15270
15271         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
15272
15273 2003-11-02  Martin Baulig  <martin@ximian.com>
15274
15275         * reflection.c (create_generic_typespec): Take a
15276         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
15277         the generic parameters from it.
15278
15279 2003-11-02  Martin Baulig  <martin@ximian.com>
15280
15281         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
15282         instead of a `MonoClassField *' since we just need the type.
15283         (create_generic_typespec): New static function.  Creates a
15284         TypeSpec token for a generic type declaration.
15285         (mono_image_get_generic_field_token): New static function.
15286         (mono_image_create_token): If we're a FieldBuilder in a generic
15287         type declaration, call mono_image_get_generic_field_token() to get
15288         the token.
15289
15290 2003-11-02  Martin Baulig  <martin@ximian.com>
15291
15292         * reflection.h
15293         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
15294         `MonoReflectionGenericInst *declaring_type' and
15295         `MonoReflectionGenericInst *reflected_type' fields.
15296
15297         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
15298         `MonoReflectionGenericInst *declaring_type' and a
15299         `MonoReflectionGenericInst *reflected_type' argument instead of a
15300         single `MonoReflectionGenericInst *type' one.  Set
15301         `res->declaring_type' and `res->reflected_type' from them.
15302         (mono_reflection_inflate_field): Likewise.      
15303
15304 2003-11-02  Martin Baulig  <martin@ximian.com>
15305
15306         * class.c (mono_class_setup_vtable): Don't store generic methods
15307         in the vtable.  
15308
15309 2003-11-02  Martin Baulig  <martin@ximian.com>
15310
15311         * reflection.h (MonoReflectionGenericInst): Added
15312         `MonoReflectionType *declaring_type'.
15313
15314         * reflection.c (mono_reflection_bind_generic_parameters): Use
15315         `if (tb->parent)' instead of `klass->parent'.
15316
15317 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
15318
15319         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
15320         with an empty ASSEMBLY table.
15321
15322         * reflection.c (mono_image_build_metadata): Avoid using the same loop
15323         variable in the inner and outer loops.
15324
15325 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
15326
15327         * metadata.h (mono_metadata_make_token): Put parentheses around macro
15328         argument.
15329
15330         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
15331         
15332         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
15333         icalls. Instead, do everything in managed code. This is needed since
15334         it is hard to restore the original domain etc. in unmanaged code in the
15335         presence of undeniable exceptions.
15336
15337         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
15338         New icalls to push and pop appdomain refs.
15339
15340 2003-10-31  Martin Baulig  <martin@ximian.com>
15341
15342         * class.c (inflate_generic_type): Renamed to
15343         mono_class_inflate_generic_type() and made it public.
15344
15345         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
15346         New interncall.
15347
15348         * loader.c (mono_field_from_memberref): Also set the retklass for
15349         typespecs.
15350
15351         * fielder.c (mono_image_get_inflated_field_token): New static
15352         method; creates a metadata token for an inflated field.
15353         (mono_image_create_token, fixup_method): Added support for
15354         "MonoInflatedField".
15355         (fieldbuilder_to_mono_class_field): New static function.
15356         (mono_reflection_inflate_field): New public function.
15357
15358         * reflection.h
15359         (MonoReflectionGenericInst): Added `MonoArray *fields'.
15360         (MonoReflectionInflatedField): New typedef.     
15361
15362 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
15363
15364         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
15365         for Solaris and other platforms without s6_addr16
15366
15367 2003-10-30  Martin Baulig  <martin@ximian.com>
15368
15369         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
15370         argument instead of two.
15371         (mono_class_inflate_generic_signature): Likewise.
15372         (inflate_generic_header): Likewise.
15373         (mono_class_inflate_generic_method): Likewise.  In addition, if
15374         `ginst->klass' is set, it becomes the new `method->klass'.
15375
15376         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
15377         field.
15378
15379         * reflection.c (encode_generic_method_sig): Write a 0xa as the
15380         first byte. [FIXME]
15381         (method_encode_methodspec): If we have generic parameters, create
15382         a MethodSpec instead of a MethodRef.
15383         (fixup_method): Added support for "MonoInflatedMethod" and
15384         "MonoInflatedCtor".
15385         (mono_image_create_token): Added support for "MonoInflatedMethod"
15386         and "MonoInflatedCtor".
15387         (inflated_method_get_object): New static function; returns a
15388         managed "System.Reflection.MonoInflatedMethod" object.
15389         (mono_reflection_bind_generic_method_parameters): Return a
15390         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
15391         (mono_reflection_inflate_method_or_ctor): Likewise.
15392         (mono_image_get_generic_method_param_info): Initialize unused
15393         fields to zero.
15394         (mono_image_get_generic_param_info): Likewise.
15395
15396         * reflection.h (MonoReflectionInflatedMethod): New public
15397         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15398         "S.R.MonoInflatedCtor" classes.
15399
15400         * loader.c (method_from_memberref): If we're a TypeSpec and it
15401         resolves to a generic instance, inflate the method.
15402
15403 2003-10-28  Dick Porter  <dick@ximian.com>
15404
15405         * object.c (mono_runtime_run_main): Convert command-line arguments
15406         into utf8, falling back to the user's locale encoding to do so.
15407
15408 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15409
15410         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15411         at this time.
15412
15413         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15414
15415         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15416         up icalls at method definition time. Partially fixes #33569.
15417
15418 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15419
15420         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15421         marshalling of arrays. Fixes #50116.
15422
15423         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15424
15425         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15426         points to a vtable in the dying appdomain.
15427
15428         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15429         listeners into unmanaged code inside the lock.
15430
15431         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15432         domains and add some comments.
15433
15434 2003-10-25  Martin Baulig  <martin@ximian.com>
15435
15436         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15437
15438         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15439
15440         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15441         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15442         currently parsing.  Create the generic class and store it in
15443         `generic_inst->klass' before parsing the type arguments.  This is
15444         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15445         for an example.
15446         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15447         to support recursive typespec entries.
15448
15449         * class.c (mono_class_setup_parent): If our parent is a generic
15450         instance, we may get called before it has its name set.
15451         (mono_class_from_generic): Splitted into
15452         mono_class_create_from_generic() and mono_class_initialize_generic().
15453
15454 2003-10-25  Martin Baulig  <martin@ximian.com>
15455
15456         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15457         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15458         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15459         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15460
15461         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15462         (create_typespec): Likewise.
15463         (mono_reflection_bind_generic_parameters): Return a
15464         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15465         (mono_reflection_inflate_method_or_ctor): New public function.
15466
15467         * reflection.h (MonoReflectionGenericInst): New typedef.        
15468
15469 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15470
15471         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15472         inside the domain lock. Fixes #49993.
15473         
15474         * object.c (mono_class_vtable): When typed allocation is used, 
15475         allocate vtables in the GC heap instead of in the mempool, since the
15476         vtables contain GC descriptors which are used by the collector even
15477         after the domain owning the mempool is unloaded.
15478
15479         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15480
15481         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15482         reflect what it does. Also invalidate mempools instead of freeing
15483         them if a define is set.
15484
15485         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15486         of the appdomain.
15487         
15488         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15489         hold the finalizable objects in this domain.
15490
15491         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15492         appdomain.
15493
15494         * appdomain.c (mono_domain_set): New function to set the current
15495         appdomain, but only if it is not being unloaded.
15496
15497         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15498         appdomain which is being unloaded.
15499         
15500         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15501         unloading of the root appdomain.
15502
15503         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15504         icall to execute a method in another appdomain. Intended as a 
15505         replacement for InternalSetDomain, which can confuse the code 
15506         generation in the JIT.
15507
15508         * appdomain.c (mono_domain_is_unloading): New function to determine
15509         whenever an appdomain is unloading.
15510
15511         * appdomain.c (mono_domain_unload): New function to correctly unload
15512         an appdomain.
15513
15514         * assembly.c (mono_assembly_load_references): Check that an assembly
15515         does not references itself.
15516
15517         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15518         domain manually, it asks the finalizer thread to do it, then waits for
15519         the result. Also added a timeout.
15520
15521         * icall.c: Register the new icalls.
15522
15523         * threads.h threads.c: Export the mono_gc_stop_world and 
15524         mono_gc_start_world functions.
15525         
15526         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15527         function to fill out the mempool with 0x2a.
15528
15529 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15530
15531         * reflection.h (MonoReflectionMethodAux): New structure to store
15532         information which is rarely used, thus is not in the MonoMethod
15533         structure.
15534
15535         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15536         store the aux info.
15537
15538         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15539         and marshalling info into the aux structure.
15540
15541         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15542         from the aux structure.
15543
15544         * loader.c (mono_method_get_param_names): Retrieve the param names from
15545         the aux structure.
15546         
15547 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15548
15549         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15550         warning.
15551
15552 2003-10-21  Dick Porter  <dick@ximian.com>
15553
15554         * socket-io.c
15555         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15556         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15557
15558 2003-10-21  Martin Baulig  <martin@ximian.com>
15559
15560         * reflection.c (mono_reflection_bind_generic_parameters):
15561         `klass->parent' is NULL for interfaces.
15562
15563 2003-10-21  Martin Baulig  <martin@ximian.com>
15564
15565         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15566
15567 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15568
15569         * exception.c (mono_exception_from_name_msg): New helper function for
15570         creating exceptions and initializing their message field.
15571
15572         * exception.c: Simplify functions using the new helper.
15573
15574         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15575         New function.
15576
15577         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15578         mono_raise_exception, since otherwise gcc doesn't generate the function
15579         epilog for raise_exception, confusing the stack unwinding in the JIT.
15580         Fixes #45043.
15581
15582         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15583         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15584         Fixes #49499.
15585
15586 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15587
15588         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15589         utf8.
15590
15591 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15592
15593         * icall.c: Removed GetUninitializedObject method because
15594           AllocateUninitializedClassInstance does the same.
15595
15596 2003-10-18  Martin Baulig  <martin@ximian.com>
15597
15598         * class.c (inflate_generic_signature): Renamed to
15599         mono_class_inflate_generic_signature() and made it public.
15600         (my_mono_class_from_generic_parameter): New static function; if we
15601         don't already have the generic parameter's MonoClass, create a
15602         very simple one which is just used internally in the runtime and
15603         not passed back to managed code.
15604
15605         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15606
15607         * metadata.h (MonoMethodSignature): Moved the
15608         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15609         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15610
15611         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15612         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15613         interncall on the MonoMethod class, not on MethodInfo.
15614         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15615         calling mono_reflection_bind_generic_method_parameters() directly.
15616
15617         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15618         return the already computed `method->signature'.
15619         (method_from_methodspec): New static function to load a method
15620         from a MethodSpec entry.
15621         (mono_get_method_from_token): Call the new method_from_methodspec()
15622         for MethodSpec tokens.  
15623         (mono_get_method_from_token): If we're a generic method, load the
15624         type parameters.
15625
15626         * reflection.c (mono_image_get_memberref_token): Allow
15627         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15628         table.
15629         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15630         (mono_image_create_token): First check whether it's a generic
15631         method (so we'd need to create a MethodSpec), then do the other
15632         two alternatives.
15633         (mono_reflection_bind_generic_method_parameters): Return a
15634         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15635         called directly from the interncall.
15636
15637 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15638
15639         * reflection.c (load_public_key): Move loading of the public key
15640         into managed code.
15641
15642         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15643
15644         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15645         fields.
15646
15647         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15648         culture, hash_alg and public_key. Fixes #49555.
15649
15650 2003-10-17  Martin Baulig  <martin@ximian.com>
15651
15652         * class.h (MonoGenericInst): Moved this declaration here and added
15653         `MonoMethod *generic_method'.
15654
15655         * icall.c
15656         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15657         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15658
15659         * metadata.c (mono_metadata_type_equal): Two types of
15660         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15661         index; ie. don't compare the address of the `MonoGenericParam'
15662         structure.
15663         (mono_metadata_load_generic_params): Removed the `MonoMethod
15664         *method' argument.
15665
15666         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15667         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15668
15669         * reflection.c (method_encode_signature): Encode the number of
15670         generic parameters.
15671         (encode_generic_method_sig): New static function.
15672         (method_encode_methodspec): New static function; creates an entry
15673         in the MethodSpec table for a generic method.
15674         (mono_image_get_methodspec_token): New static function.
15675         (mono_image_create_token): Call mono_image_get_methodspec_token()
15676         for generic methods.
15677         (mono_reflection_bind_generic_method_parameters): New public
15678         function.  Instantiates a generic method.
15679
15680 2003-10-16  Martin Baulig  <martin@ximian.com>
15681
15682         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15683         *gen_params' here from MonoMethodHeader.
15684
15685         * metadata.c (mono_metadata_parse_method_signature): If we have
15686         generic parameters, initialize `method->gen_params' and then set
15687         the correct `type->data.generic_param' in all the parameters.
15688
15689 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15690
15691         * threads.c (mono_threads_get_default_stacksize): New function to 
15692         return the default stacksize.
15693
15694         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15695         termination of the finalizer thread, since the previous method had
15696         race conditions. Fixes #49628.
15697
15698         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15699         as for the other managed threads.
15700
15701 2003-10-16  Martin Baulig  <martin@ximian.com>
15702
15703         * class.c (inflate_generic_signature): Copy `generic_param_count'
15704         and `gen_params'.
15705
15706         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15707         New interncall.
15708
15709         * metadata.c (mono_metadata_parse_method_signature): Actually set
15710         the `method->generic_param_count' here.
15711         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15712
15713 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15714
15715         * object.h: Add a new field to TypedRef to simplify the implementation
15716         of the REFANY opcodes in the JIT.
15717
15718         * icall.c: Make use of the new field.
15719
15720         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15721         dynamically.
15722
15723 2003-10-15  Martin Baulig  <martin@ximian.com>
15724
15725         * class.c (mono_class_from_gen_param): Renamed to
15726         mono_class_from_generic_parameter() and moved most of the
15727         functionality from mono_reflection_define_generic_parameter()
15728         here; ie. we create a "real" class here.
15729         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15730         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15731         previously been called.
15732
15733         * class.h (MonoGenericParam): Moved the declaration of this struct
15734         here from metadata.h and added `MonoMethod *method'.
15735
15736         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15737         interncall.
15738
15739         * loader.c (mono_get_method_from_token): If we have any generic
15740         parameters, call mono_metadata_load_generic_params() to read them
15741         from the MONO_TABLE_GENERICPAR.
15742
15743         * metadata.c (mono_metadata_load_generic_params): Added
15744         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15745
15746         * metadata.h (MonoMethodSignature): Replaced
15747         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15748         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15749
15750         * reflection.c (mono_reflection_define_generic_parameter): Moved
15751         most of the functionality into the new
15752         mono_class_from_generic_parameter(); set the `method' field if
15753         we're a method parameter.       
15754
15755 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15756
15757         * marshal.c (emit_struct_conv): if native size is 0
15758         emit no code.
15759
15760 2003-10-14  Martin Baulig  <martin@ximian.com>
15761
15762         * icall.c: The generics API has changed in the spec since it was
15763         added to System.Type; these modifications make it match the spec
15764         again.
15765         (ves_icall_Type_GetGenericParameters): Renamed to
15766         `ves_icall_Type_GetGenericArguments'.
15767         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15768         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15769         `ves_icall_MonoType_get_HasGenericArguments'.
15770         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15771         `ves_icall_MonoType_get_IsGenericParameter'.
15772         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15773         this is no interncall anymore.
15774         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15775         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15776
15777 2003-10-14  Martin Baulig  <martin@ximian.com>
15778
15779         * reflection.c (mono_reflection_bind_generic_parameters): Also
15780         inflate generic methods if we're reading the class from IL.
15781
15782 2003-10-13  Martin Baulig  <martin@ximian.com>
15783
15784         * reflection.c (mono_reflection_define_generic_parameter): This
15785         method isn't called directly from the icall anymore; take a
15786         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15787         method generic parameters.
15788         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15789         (method_builder_encode_signature): Encode generic parameters.
15790         (mono_image_get_method_info): Write generic params to the
15791         MONO_TABLE_GENERICPARAM table.
15792
15793         * reflection.h (MonoReflectionMethodBuilder): Added
15794         `MonoArray *generic_params'.
15795
15796         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15797
15798         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15799         wrapper for mono_reflection_define_generic_parameter().
15800         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15801
15802 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15803
15804         * marshal.h: Add missing function to fix build.
15805
15806         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15807         the SetLastError pinvoke attribute.
15808
15809         * marshal.c (mono_marshal_set_last_error): New helper function called
15810         by the generated code.
15811         
15812         * marshal.c (mono_mb_emit_branch): New helper function.
15813
15814         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15815
15816         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15817         classes as parameters and return values of delegates. Fixes #29256. 
15818
15819 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15820
15821         * locales.c: use gint32 in non HAVE_ICU case
15822
15823 2003-10-11  Martin Baulig  <martin@ximian.com>
15824
15825         * mono-debug.c (mono_debug_add_method): Added a workaround for
15826         bug #48591.
15827
15828 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15829
15830         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15831         delegates passed to native code must use the STDCALL calling 
15832         convention. Fixes #35987.
15833
15834 2003-10-10  Martin Baulig  <martin@ximian.com>
15835
15836         * class.c (inflate_generic_type): If we're inflating for a generic
15837         type instance (and not for a generic method), return
15838         MONO_TYPE_MVAR unchanged.
15839
15840 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15841
15842         * string-icalls.c: Join ignores null strings in the source array.
15843         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15844         * threads.c: GetAvailableTheads is slightly more accurate.
15845
15846 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15847
15848         * threads.h threads.c : add mono_threads_set_default_stacksize
15849         and pass default to CreateThread calls.
15850
15851 2003-10-09  Dick Porter  <dick@ximian.com>
15852
15853         * icall.c:
15854         * locales.h:
15855         * locales.c: Internal calls for constructing CultureInfo and
15856         related objects from libicu (if its available.)
15857
15858 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15859
15860         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15861
15862 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15863
15864         * threadpool.c: added an argument to async_invoke_thread that is the
15865         item to process, pass the MonoAsyncResult to the thread start function
15866         when creating a new thread. This way we don't need to acquire any lock
15867         when we're creating a new thread. Readded a semaphore for faster
15868         response times (instead of that Sleep i added).
15869
15870 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15871
15872         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15873         get daylight change dates better on Windows, fix handling
15874         of platforms without tm_gmtoff.
15875
15876 2003-10-06  Martin Baulig  <martin@ximian.com>
15877
15878         * class.c (inflate_generic_method): Renamed to
15879         mono_class_inflate_generic_method() and made public.
15880         (mono_class_init): Don't inflate the generic methods here.
15881         (mono_class_from_generic): Added `gboolean inflate_methods'
15882         argument.  Inflate the methods here.
15883
15884         * loader.c (mono_method_get_param_names): Ignore instances of
15885         generic types for the moment.
15886
15887         * reflection.c (fixup_method): Added support for inflated methods.
15888         (mono_image_create_token): Use mono_image_get_methodref_token()
15889         for inflated methods.
15890         (mono_custom_attrs_from_param): Ignore instances of generic types
15891         for the moment.
15892         (mono_reflection_bind_generic_parameters): New public function.
15893         Moved all the functionality from
15894         ves_icall_Type_BindGenericParameters() here and added support for
15895         dynamic types.
15896         (mono_reflection_define_generic_parameter): Initialize
15897         `klass->methods' here.
15898
15899         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15900         functionality into mono_reflection_define_generic_parameter().
15901         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15902         TypeBuilder, return that TypeBuilder.
15903
15904 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15905
15906         * appdomain.c: removed mono_delegate_semaphore.
15907
15908         * threadpool.c:
15909         (mono_thread_pool_add): moved hash table creation inside and the thread 
15910         creation outside of the critical region.
15911         (mono_thread_pool_finish): removed obsolete code.
15912         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15913         continue or exit the thread depending on the queue.
15914
15915 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15916
15917         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15918         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15919         handle more bool marshalling options
15920
15921 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15922
15923         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15924         arrays of structs. Also add a more descriptive error message when
15925         a structure member is marshalled as LPArray.
15926
15927 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15928
15929         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15930         marshalling arrays of complex types. Fixes #29098. Also remove an
15931         usused and incomplete function.
15932
15933 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15934
15935         * gc.c: report heap_size - free_bytes as total memory allocated
15936         (bug#49362).
15937
15938 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15939
15940         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15941         fix timezone handling problems on Windows.
15942         
15943         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15944         asserts when the year is outside the range handled by ms the functions.
15945
15946         * class.c (setup_interface_offsets): If the class is an interface,
15947         fill out its interface_offsets slot.
15948
15949 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15950
15951         * threadpool.c: mark threadpool threads as background.
15952
15953 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15954
15955         * decimal.c - define DECINLINE to nothing if not using GCC
15956
15957 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15958
15959         * assembly.c: More refcount fixes.
15960
15961 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15962
15963         * string-icalls.c: if we're not trimming, return the same string.
15964         When not splitting, don't create a new string.
15965
15966 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15967
15968         * image.c:
15969         (mono_image_open): increment the ref_count inside the critical section.
15970
15971 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15972
15973         * image.c (mono_image_open): Fix reference counting bug.
15974
15975 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15976
15977         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15978         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15979         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15980         mono_lookup_pinvoke_call throws.        
15981
15982 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15983
15984         * reflection.c (mono_reflection_parse_type): Fix #49114.
15985
15986         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15987         temporary workaround for cygwin header problem.
15988
15989         * object.c (mono_object_isinst): Synchronize this with the code
15990         generated by the JIT for casts.
15991
15992 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15993
15994         * reflection.c (encode_type): Fix #38332.
15995
15996 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15997
15998         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15999         the original method from the wrapper method.
16000
16001 2003-09-25  Martin Baulig  <martin@ximian.com>
16002
16003         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
16004         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
16005         (ves_icall_Type_get_IsGenericInstance): New interncall.
16006
16007 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
16008
16009         * object.c: fix cast warning in big endian code.
16010
16011 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
16012
16013         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
16014         
16015 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16016
16017         * assembly.c: don't call check_env from mono_assembly_load. It's
16018         already done once in mono_assemblies_init and may cause headaches when
16019         multiple threads are loading assemblies.
16020
16021 2003-09-19  Martin Baulig  <martin@ximian.com>
16022
16023         * reflection.c (mono_reflection_define_generic_parameter): Don't
16024         allocate `klass->methods', set `klass->flags' to
16025         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
16026
16027 2003-09-18  Martin Baulig  <martin@ximian.com>
16028
16029         * class.c (mono_class_init): Don't create `class->methods' if it's
16030         already initialized.
16031
16032         * metadata.c (mono_metadata_load_generic_params): Make this
16033         actually work.
16034
16035         * reflection.c (mono_reflection_define_generic_parameter): Set
16036         parent class and interfaces from the constraints.
16037
16038         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
16039         to keep this struct in sync with the declaration in TypeBuilder.cs.
16040
16041 2003-09-17  Martin Baulig  <martin@ximian.com>
16042
16043         * metadata.h (MonoType): Replaced the data's `int type_param'
16044         field with `MonoGenericParam *generic_param'.
16045         (MonoGenericParam): Added `MonoClass *klass'.
16046
16047         * class.c (mono_class_from_gen_param): Removed the
16048         `MonoImage *image' and `int type_num' arguments.
16049
16050         * metadata.c (mono_metadata_parse_generic_param): New static
16051         method; creates a MonoGenericParam which just contains the index.
16052         (do_mono_metadata_parse_type): Call
16053         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
16054         MONO_TYPE_MVAR.
16055
16056         * reflection.c (mono_image_typedef_or_ref): Generic type
16057         parameters may be in the same assembly, but never use a typedef
16058         for them.
16059         (mono_reflection_define_generic_parameter): We're now creating a
16060         "real" class for the type parameter; it's now safe to call
16061         mono_class_from_mono_type() on the class'es type, it'll do the
16062         right thing.
16063
16064 2003-09-16  Martin Baulig  <martin@ximian.com>
16065
16066         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
16067         `symfile->range_entry_size' and `symfile->class_entry_size' here;
16068         the `symfile' data structure must be fully initialized before it
16069         gets added to the table.
16070
16071 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
16072
16073         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
16074
16075         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
16076         class init trampolines.
16077
16078 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
16079
16080         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
16081         to the built-in profiler to turn off time and allocation profiling
16082         respectively.
16083
16084 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
16085
16086         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
16087         g_direct_equal.
16088
16089         * debug-helpers.c (mono_method_full_name): Print the wrapper type
16090         in human readable form.
16091
16092 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
16093
16094         * reflection.c icall.c: Fixed warnings.
16095
16096         * image.c (load_class_names): Use a temporary hash table to hold the
16097         namespaces in order to avoid doing many string comparisons.
16098
16099         * image.h: Fix typo.
16100
16101         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
16102         Pass NULL instead of g_direct_equal to the GHashTable constructor 
16103         since the NULL case is short-circuited inside g_hash_table_lookup, 
16104         leading to better performance.  
16105
16106         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
16107         obtain the first custom attribute for a given index. Depends on the
16108         CustomAttribute table being sorted by the parent field.
16109
16110         * reflection.c (mono_custom_attrs_from_index): Use the new function 
16111         for better performance.
16112
16113 2003-09-07  Martin Baulig  <martin@ximian.com>
16114
16115         * class.c (mono_class_init): If we're a generic instance, inflate
16116         all our methods instead of loading them from the image.
16117         (mono_class_from_generic): Set `class->methods = gklass->methods'.
16118
16119 2003-09-07  Martin Baulig  <martin@ximian.com>
16120
16121         * mono-debug-debugger.c: Added support for constructors.
16122
16123 2003-09-06  Martin Baulig  <martin@ximian.com>
16124
16125         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
16126         New interncall.
16127
16128         * reflection.c (mono_reflection_setup_generic_class): Call
16129         ensure_runtime_vtable() to create the vtable.
16130
16131 2003-09-05  Martin Baulig  <martin@ximian.com>
16132
16133         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
16134         MONO_TYPE_MVAR.
16135
16136 2003-09-04  Martin Baulig  <martin@ximian.com>
16137
16138         * reflection.c (mono_reflection_define_generic_parameter): Generic
16139         parameters start with zero.
16140
16141 2003-09-04  Martin Baulig  <martin@ximian.com>
16142
16143         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
16144
16145         * reflection.h (MonoReflectionGenericParam): New typedef.
16146         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
16147         the generic parameters from the managed TypeBuilder.
16148
16149         * reflection.c (mono_reflection_define_generic_parameter): New function.
16150         (mono_reflection_create_runtime_class): Encode generic parameters.
16151         (mono_reflection_setup_generic_class): New function; this is
16152         called after adding adding all generic params to the TypeBuilder.
16153         (encode_type): Added MONO_TYPE_VAR.
16154
16155 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
16156
16157         * class.h class.c (mono_class_needs_cctor_run): Moved this method
16158         here from the JIT.
16159
16160         * assembly.h assembly.c: Moved the AOT loading code into an assembly
16161         load hook.
16162
16163 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
16164
16165         * reflection.h reflection.c class.h class.c: Delete duplicate 
16166         definition of mono_type_get_name () from reflection.c and export the
16167         one in class.c.
16168
16169         * class.c: Class loading fixes from Bernie Solomon 
16170         (bernard@ugsolutions.com).
16171
16172         * reflection.c: Endianness fixes from Bernie Solomon 
16173         (bernard@ugsolutions.com).
16174         
16175 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
16176
16177         * assembly.h assembly.c: Define a file format version for AOT
16178         libraries.
16179         
16180         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
16181
16182         * appdomain.h (MonoJitInfo): New field to determine whenever the
16183         code is domain neutral.
16184         
16185 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
16186
16187         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
16188
16189 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
16190
16191         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
16192         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
16193         Avoid caching the result since strings must be domain specific. Fixes
16194         #48050.
16195
16196 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
16197
16198         * marshal.c (mono_marshal_init): Make this callable multiple times
16199         since it is hard to find a correct place to call it.
16200
16201         * object.c (mono_runtime_class_init): Execute static constructors in
16202         the correct appdomain.
16203
16204         * image.c (build_guid_table): Handle the case when multiple images have
16205         the same GUID.
16206
16207 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16208
16209         * icall.c: added a couple of icalls for System.Web.
16210
16211 2003-08-28  Martin Baulig  <martin@ximian.com>
16212
16213         * icall.c (ves_icall_Type_BindGenericParameters): Use
16214         `klass->generic_inst' instead of `&klass->byval_arg' in the
16215         mono_type_get_object() call.  The returned type must be
16216         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
16217
16218 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
16219
16220         * NOTES: New file.
16221
16222         * object.c (mono_class_proxy_vtable): Make it thread safe.
16223
16224         * pedump.c: Fix warning.
16225
16226         * object.c appdomain.h: Get rid of metadata_section. 
16227         It is no longer needed and it was causing deadlocks with domain->lock.
16228
16229         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
16230
16231 2003-08-26  Martin Baulig  <martin@ximian.com>
16232
16233         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
16234
16235 2003-08-26  Martin Baulig  <martin@ximian.com>
16236
16237         * pedump.c (main): Call mono_metadata_init(),
16238         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
16239         and mono_loader_init().
16240
16241 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
16242
16243         * loader.h: Add missing include to fix build.
16244
16245         * image.h: mono_image_load_references is no more.
16246
16247         * assembly.c: Reworked assembly loading to make it really thread safe.
16248         After these changes, the assembly returned by mono_assembly_open is
16249         fully initialized, i.e. all its references assemblies are loaded.
16250
16251         * assembly.c (mono_image_load_references): Renamed to 
16252         mono_assembly_load_references, and made private, since clients no
16253         longer need to call it.
16254
16255         * class.c: Removed calls to mono_assembly_load_references, since it was
16256         a source of deadlocks.
16257
16258         * loader.h loader.c class.h class.c: Protect data structures using a 
16259         new lock, the loader lock.
16260
16261         * class.c (mono_class_setup_vtable): Create temporary hash tables and
16262         GPtrArrays only when needed.
16263
16264         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
16265         into empty structures by mcs. Fixes pinvoke7.cs.
16266         
16267         * domain.c (mono_init): Call a new initialization function.
16268
16269         * appdomain.c (mono_runtime_init): Call the new initializer function
16270         of the marshal module.
16271
16272         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
16273         inserted into empty structures by mcs. Fixes pinvoke7.cs.
16274
16275         * marshal.h marshal.c: Added locks around the wrapper caches to make
16276         this module thread safe.
16277
16278         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
16279         this argument. Fixes pinvoke1.exe.
16280
16281 2003-08-25  Lluis Sanchez <lluis@ximian.com>
16282
16283         * object.h: Added call_type field to MonoMethodMessage and the corresponding
16284         enumeration of values. Removed fields to store remote call output values in
16285         MonoAsyncResult. Not needed any more.
16286         * object.c: Initialize call_type and async_result fields in mono_message_init.
16287         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
16288         dispatching the message.
16289         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
16290         async call to finish. To do it use a message with EndInvoke call type.
16291
16292 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
16293
16294         * loader.h loader.c (mono_method_hash_marhal_info): New function which
16295         determines whenever a method has marshalling info.
16296
16297 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16298
16299         * assembly.c: fix the build on windows.
16300
16301 2003-08-22 Lluis Sanchez <lluis@ximian.com>
16302
16303         * object.cs: Fixed bug #47785.
16304
16305 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
16306
16307         * string-icalls.c (StringReplace): If their are no occurances of
16308         the old string found return a reference to the supplied
16309         string. This saves some memory and matches MS behavoir.
16310         
16311 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16312
16313         * socket-io.c: fixed compilation for systems that define AF_INET6
16314         and don't define SOL_IP/SOL_IPV6.
16315
16316 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
16317
16318         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
16319         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
16320
16321         * rawbuffer.c rawbuffer.h: Make this module thread safe.
16322
16323         * domain.c: Make this module thread safe.
16324
16325         * domain.c (mono_init): Call new initialization function.
16326
16327         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
16328         reference types too. Fixes #38812.
16329
16330         * image.c (mono_image_init): Fixed warnings.
16331
16332         * class.c (mono_class_from_typeref): Handle assembly load failure
16333         correctly.
16334
16335         * appdomain.c (add_assemblies_to_domain): Handle the case when
16336         the references of an assembly are not yet loaded.
16337
16338         * metadata.c image.c assembly.c: Moved initialization of global
16339         variables to a separate function called at startup since lazy 
16340         initialization of these variables is not thread safe.
16341         
16342         * image.c assembly.c: Made this module thread safe by adding locks in 
16343         the appropriate places.
16344
16345         * domain.c (mono_init): Call the new initialization functions of the
16346         three modules.
16347
16348 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
16349
16350         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
16351           make a direct call. It is proxy's work to make the call asynchronous.
16352           mono_delegate_end_invoke(): If the targe is a proxy, just collect
16353           the return values.
16354         * object.cs: mono_method_call_message_new(): read AsyncResult and
16355           state object from parameters list, if this info is requested.
16356         * object.h: Added fields to store remote call output values in
16357           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
16358
16359 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16360
16361         * object.h: add needed fields to MonoThread.
16362         * threads.c, threads.h: allow registering a function to cleanup data
16363         allocated per thread by the JIT.
16364
16365 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16366
16367         * loader.h: portability fix by Bernie Solomon
16368         * <bernard@ugsolutions.com>.
16369
16370 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
16371
16372         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
16373         return a MonoArray. This simplifies the code and also ensures that
16374         the cache allways contains an object reference as a value.
16375
16376         * icall.c (ves_icall_get_parameter_info): Simplified using the new
16377         function.
16378
16379 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16380
16381         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
16382         fixes a problem with byte ordering when getting the address family for
16383         a socket.
16384
16385 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
16386
16387         * .cvsignore: Added monosn.
16388
16389         * reflection.h reflection.c loader.c: Added support for parameter
16390         marshalling to dynamically created types. Fixes #47295.
16391
16392 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
16393
16394         * rand.c: remove useless warnings.
16395
16396 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16397
16398         * class.c: implemented ldtoken for methods and fieldrefs.
16399
16400 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16401
16402         * threadpool.c: when mono_async_invoke was called, no one took care of
16403         monitoring the queue. So if the method invoked took some time and we
16404         got new async invoke requests after 500 ms (the thread created waited
16405         that long in WaitForSingleObject), the new async invoke was not called
16406         until the previous one finished.
16407
16408         This is fixed now. Thanks to Totte for helping with it.
16409
16410 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16411
16412         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16413
16414 2003-08-11  Martin Baulig  <martin@ximian.com>
16415
16416         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16417
16418 2003-08-06  Martin Baulig  <martin@ximian.com>
16419
16420         * mono-debug-debugger.c: Added support for static fields,
16421         properties and methods.
16422
16423 2003-08-06  Martin Baulig  <martin@ximian.com>
16424
16425         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16426         make this work for applications with multiple application domains.
16427
16428 2003-08-04  Martin Baulig  <martin@ximian.com>
16429
16430         * mono-debug-debugger.c: Completely reworked the type support; the
16431         most important thing is that we're now just using one single
16432         `MonoType' instance per type.
16433
16434 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16435
16436         * mono-endian.h, mono-endian.c, icall.c: Added icall
16437         ves_icall_System_Double_AssertEndianity to assert double word endianity
16438         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16439
16440 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16441
16442         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16443         support, icalls and fixes.
16444
16445 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16446
16447         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16448         classes that are a punctuation character in .NET is not the same a
16449         g_unichar_ispunct.
16450
16451 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16452
16453         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16454
16455 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16456
16457         * icall.c: Add new MemCopy internalcall.
16458         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16459         Simplified code; It is not necessary to handle all the cases here,
16460         as the C# code takes care of it.  Only handle the case of the name
16461         resource embedded into the assembly.
16462
16463         Changed signature to return the data pointer and the size of the
16464         data. 
16465
16466 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16467
16468         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16469         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16470
16471 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16472
16473         * socket-io.c: ignore EINTR error in select.
16474
16475 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16476
16477         * class.h, class.c: removed unused subclasses field in MonoClass.
16478
16479 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16480
16481         * icall.c: improve fix of get_base_definition(). If the parent class
16482           doesn't have the mehod, look at the parent of the parent.
16483         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16484           to check if a parameter is an in or out parameter
16485           (PARAM_ATTRIBUTE_IN is not set by default).
16486           mono_method_return_message_restore(): Use mono_class_value_size to
16487           get the size of a value type. mono_type_stack_size (parameterType)
16488           does not return the correct value if parameterType is byRef.
16489           mono_load_remote_field(), mono_load_remote_field_new(),
16490           mono_store_remote_field(), mono_store_remote_field_new():
16491           raise exception if the remote call returns an exception.
16492
16493 2003-07-28  Martin Baulig  <martin@ximian.com>
16494
16495         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16496         method.  This is a wrapper around mono_runtime_invoke() which
16497         boxes the instance object if neccessary.
16498
16499 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16500
16501         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16502         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16503
16504 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16505
16506         * icall.c: disable mcs bug workaround.
16507
16508 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16509
16510         * object.c (mono_runtime_class_init): Take the metadata_section
16511         mutex before obtaining the domain mutex.
16512
16513         * appdomain.h: Added definition of metadata_section mutex here. 
16514
16515         * object.c: define metadata_mutex here.
16516
16517 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16518
16519         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16520         fixed.
16521
16522 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16523
16524         * reflection.c: Fix bug #46669
16525
16526 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16527
16528         * exception.c:
16529         * exception.h:
16530         * icall.c:
16531         * object.h: fill in the type name for TypeLoadException.
16532
16533 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16534
16535         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16536         relationship between TypeBuilders while compiling corlib) and bug
16537         45993 (Array types returned from the runtime while compiling
16538         corlib were from the loaded corlib).
16539
16540 2003-07-22  Martin Baulig  <martin@ximian.com>
16541
16542         * mono-debug-debugger.c: Reworked the type support a bit more;
16543         distinguish between types and classes.
16544
16545 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16546
16547         * icall.c: add IsArrayImpl icall.
16548
16549 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16550
16551         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16552         initializing real_size only once. Also fix bug #46602.
16553
16554 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16555
16556         * object.c: Renamed mono_metadata_section to metadata_section.
16557
16558 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16559
16560         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16561           empty array if the type is an array. Fixed.
16562           ves_icall_MonoMethod_get_base_definition: if the base method
16563           is abstract, get the MethodInfo from the list of methods of
16564           the class.
16565         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16566           and it was 1-based. Fixed in mono_param_get_objects.
16567
16568 2003-07-20  Martin Baulig  <martin@ximian.com>
16569
16570         * mono-debug.h: Set version number to 31.
16571         (mono_debug_init): Added `MonoDomain *' argument.
16572
16573         * mono-debug-debugger.c: Reworked the type support; explicitly
16574         tell the debugger about builtin types; pass the `klass' address to
16575         the debugger.
16576
16577 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16578
16579         * image.c: Allow new metadata tables to be loaded without a
16580         warning. Also update the warning message to give the new constant value.
16581                 
16582 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16583
16584         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16585         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16586         array type representation changes.
16587
16588 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16589
16590         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16591         on Environment.Exit () call.
16592
16593 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16594
16595         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16596         requires a matching corlib.
16597
16598 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16599
16600         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16601           Committed again without the CRs.
16602         
16603 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16604
16605         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16606           getting it from the "this" socket instance. Did not work
16607           if the socket is a subclass of Socket.
16608           Also fixed bug #35371.
16609
16610 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16611
16612         * metadata.c: fixed size for TypedByRef.
16613         * loader.c: when searching for a method, consider the vararg amrker.
16614         * unicode.c, decimal.c: constify some arrays.
16615
16616 2003-07-15  Dick Porter  <dick@ximian.com>
16617
16618         * socket-io.c: Fixed compilation for gcc < 3.2.
16619
16620         Fixed compilation for machines that don't have AF_INET6 (thanks to
16621         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16622
16623         Fixed compile warnings.
16624         
16625         Fixed formatting and line endings.
16626
16627 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16628
16629         * socket-io.h:
16630         * socket-io.c: Added IPv6 support.
16631
16632 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16633
16634         * class.c (mono_class_is_assignable_from): New function to implement
16635         the is_assignable_from logic. Used by mono_object_isinst, 
16636         Type::IsAssignableFrom () and the interpreter.
16637
16638         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16639         Object, even interfaces.
16640         
16641         * object.c (mono_object_isinst): Implement in terms of 
16642         is_assignable_from.
16643
16644         * icall.c (ves_icall_type_is_assignable_from): New icall.
16645
16646 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16647
16648         * domain.c (foreach_domain): fix compiler warning.
16649
16650 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16651
16652         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16653         not available on all plattforms
16654
16655 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16656
16657         * image.h image.c: Store the metadata version string in MonoImage.
16658         * icall.c: New icall to retrieve the image version.
16659         * reflection.c (create_dynamic_image): Fill in the image version field
16660         * reflection.c (build_compressed_metadata): Use the image version
16661         from the image structure.
16662
16663 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16664
16665         * appdomain.c: modified comment.
16666         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16667         That will be its last iteration when mono_gc_cleanup is called from
16668         mono_runtime_cleanup and before the domain is unloaded.
16669
16670         Fixes bug #45962.
16671
16672 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16673
16674         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16675         attributes.
16676
16677 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16678
16679         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16680         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16681         Bernie Solomon <bernard@ugsolutions.com>.
16682
16683 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16684
16685         * object.c, object.h: provide mono_object_new_fast() for faster
16686         allocation in some special cases.
16687
16688 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16689
16690         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16691         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16692
16693 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16694
16695         * threadpool.c: fix leaks.
16696
16697 2003-07-01  Dick Porter  <dick@ximian.com>
16698
16699         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16700         using MonoGHashTables.  Fixes threadpool bug posted to list.
16701
16702 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16703
16704         * image.h, image.c: added support to load an assembly from a byte array.
16705         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16706         assembly bundle support.
16707
16708 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16709
16710         * threadpool.c (mono_thread_pool_add): keep a reference to the
16711         AsyncResult to prevent GC
16712
16713 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16714
16715         * class.c: leak fix.
16716
16717 2003-06-25  Dick Porter  <dick@ximian.com>
16718
16719         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16720         for the async object, the WaitHandle object will close the handle.
16721         Fixes bug 45321.
16722
16723 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16724
16725         * class.c: in mono_array_class_get (), lookup from the hash with the
16726         same type we insert: this works around a bug in
16727         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16728         lluis. The real fix will have to wait for after the release.
16729
16730 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16731
16732         * icall.c: fix memory leak when getting type members.
16733
16734 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16735
16736         * reflection.c: added more pubtoken special cases.
16737
16738 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16739
16740         * class.c: handle field offset correctly when class size
16741         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16742
16743 2003-06-20  Martin Baulig  <martin@ximian.com>
16744
16745         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16746         *image' field.
16747
16748 2003-06-20  Martin Baulig  <martin@ximian.com>
16749
16750         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16751
16752 2003-06-20  Martin Baulig  <martin@ximian.com>
16753
16754         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16755         just distinguish between variables in registers and variables at
16756         an offset relative to a register.
16757
16758 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16759
16760         * icall.c: #ifdef out latest changes until mcs is fixed.
16761
16762 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16763
16764         * icall.c: return members in metadata order.
16765
16766 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16767
16768         * icall.c: avoid infinite loop in GetTimeZoneData.
16769
16770 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16771
16772         * icall.c: added Marshal.Prelink/All icalls.
16773
16774 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16775
16776         * object.c, object.h: fix warnings and do some overflow checking
16777         when creating arrays.
16778
16779 2003-06-17  Dick Porter  <dick@ximian.com>
16780
16781         * file-io.h:
16782         * file-io.c: File attributes need to be tweaked slightly when
16783         passed from the managed to the w32 world.
16784
16785 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16786         * profiler.h profiler-private.h profiler.c: Rework last patch
16787         based on suggestion by Paolo.
16788         
16789 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16790
16791         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16792         instruction level coverage data collection.
16793         * profiler.h profiler.c (: Added new callback function which can be
16794         used by the profiler to limit which functions should have coverage
16795         instrumentation.
16796         * profiler.c (mono_profiler_load): Call g_module_build_path to
16797         generate the file name of the profiler library.
16798
16799 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16800
16801         * profiler.c, profiler.h, profiler-private.h: added basic block 
16802         coverage profiling API.
16803
16804 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16805
16806         * reflection.c (mono_reflection_create_runtime_class): Add support
16807         for events in dynamically generated code.
16808
16809         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16810         not allocated.
16811
16812 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16813
16814         * icall.c: when getting timezone info, return reasonable values if we
16815         can't get the actual data.
16816
16817 2003-06-14  Dick Porter  <dick@ximian.com>
16818
16819         * threads.c (start_wrapper): Remove the reference to the thread
16820         object in the TLS data, so the thread object can be finalized.
16821         This won't be reached if the thread threw an uncaught exception,
16822         so those thread handles will stay referenced :-( (This is due to
16823         missing support for scanning thread-specific data in the Boehm GC
16824         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16825
16826 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16827
16828         * reflection.c: ensure streams and tables are first allocated with
16829         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16830
16831 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16832
16833         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16834
16835 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16836
16837         * reflection.c (mono_reflection_create_runtime_class): Add support for
16838         properties to dynamically created classes.
16839         * reflection.c: Fix a few places where non-MonoObjects were inserted
16840         into the tokens hashtable.
16841
16842 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16843
16844         * object.c: some support to handle out of memory exceptions.
16845
16846 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16847
16848         * marshal.c (mono_marshal_get_native_wrapper): support reference
16849         return types
16850
16851 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16852
16853         * object.h, object.c: more portability stuff from Bernie Solomon.
16854         Unexport mono_object_allocate(). Added mono_object_unbox ().
16855         Set exitcode when an unhandled exception is thrown.
16856
16857 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16858
16859         * marshal.c (mono_marshal_get_native_wrapper): use custom
16860         marshaler for return types.
16861
16862 2003-06-10  Dick Porter  <dick@ximian.com>
16863
16864         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16865         ip_mreq is available
16866
16867 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16868
16869         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16870         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16871         by Bernie Solomon <bernard@ugsolutions.com>.
16872
16873 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16874
16875         * gc.c (mono_gc_init): Avoid error message on shutdown when
16876         GC_DONT_GC=1 is used.
16877
16878         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16879         New icall to return the GUID of a module.
16880
16881 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16882
16883         * class.c: ensure instance size always includes the parent's size
16884         even whem class size is set explicitly (fixes bug#44294).
16885
16886 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16887
16888         * profiler.h, profiler.c: made the simple profiler thread-safe,
16889         get more accurate timing info. Allow the loading of an
16890         externally-developed profiler module.
16891
16892 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16893
16894         * marshal.c (mono_marshal_get_native_wrapper): improved
16895         class/byref arguments.
16896         (mono_marshal_get_native_wrapper): better string marshaling support.
16897
16898 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16899
16900         * class.c: ensure .pack and .size are handled correctly and
16901         simplified layout of static fields.
16902
16903 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16904
16905         * appdomain.c
16906         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16907
16908         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16909         current directory (fix bug 44008)
16910
16911 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16912
16913         * marshal.c (mono_marshal_get_native_wrapper): started support for
16914         custom marshalers.
16915         (mono_delegate_to_ftnptr): consider marshalling specifications
16916
16917 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16918
16919         * reflection.c, reflection.h: emit custom marshal info.
16920
16921 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16922
16923         * object.c: free the GError.
16924         * icall.c: added CloseEvent_internal.
16925         * threads.[ch]:
16926         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16927         call.
16928
16929 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16930
16931         * loader.c (mono_method_get_signature): Add support for dynamic
16932         assemblies.
16933
16934 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16935
16936         * reflection.c: fixed bug #43905.
16937
16938 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16939
16940         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16941         handling TypedReference and ArgIterator.
16942         * loader.c, loader.h: added function to get signature at call site.
16943
16944 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16945
16946         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16947         data readonly. Buglets and warning fixes. Some MethodSpec support.
16948
16949 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16950
16951         * class.h, class.c, object.c: remove relative numbering support.
16952
16953 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16954
16955         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16956         free the string, until we get a chance to fix Gtk#
16957
16958 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16959
16960         * marshal.c: revert last patch.
16961
16962 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16963
16964         * icall.c: updates for new mono_class_vtable() not calling
16965         the type constructor anymore.
16966
16967 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16968
16969         * object.h, object.c: separate vtable creation from type
16970         initialization. Make running the .cctor thread safe.
16971
16972 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16973
16974         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16975
16976 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16977
16978         * loader.c (mono_get_method): consider calling convention
16979
16980 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16981
16982         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16983         to return the invisible global type for a module.
16984
16985         * reflection.c (mono_image_build_metadata): Emit global fields too.
16986
16987 2003-05-20  Peter Williams  <peterw@ximian.com>
16988
16989         * loader.c (mono_lookup_internal_call): Add a few newlines.
16990
16991 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16992
16993         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16994         literal strings.
16995
16996         * appdomain.c (set_domain_search_path): Recalculate search path when
16997         AppDomainSetup.PrivateBinPath changes.
16998
16999         * object.c (mono_class_compute_gc_descriptor): It turns out some
17000         parts of the class libs (like System.Thread) holds pointers to
17001         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
17002         to treat native int a pointer type here.
17003         
17004 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
17005
17006         * appdomain.h, domain.c: add hashtable for jump target resolution.
17007
17008 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
17009
17010         * reflection.h reflection.c icall.c: Added new icalls 
17011         GetManifestResourceInfoInternal, GetModulesInternal and support
17012         infrastructure.
17013
17014 2003-05-16  Dick Porter  <dick@ximian.com>
17015
17016         * icall.c:
17017         * file-io.h:
17018         * file-io.c: Implement System.IO.MonoIO::GetTempPath
17019
17020 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
17021
17022         * object.c: mono_store_remote_field: little fix to previous patch.
17023
17024 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
17025
17026         * class.c: add constructors to array classes.
17027         * icall.c: special case array construction for InternalInvoke (),
17028
17029 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
17030
17031         * class.h class.c reflection.c object.c: Added support for field
17032         defaults in dynamically generated classes.
17033
17034 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
17035
17036         * reflection.c: properly encode charset for ddlimport.
17037
17038 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
17039
17040         * threads.c: allow compiling without GC.
17041
17042 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
17043
17044         * appdomain.h, object.c, object.h, threads.c, threads.h: added
17045         handling of thread static data.
17046
17047 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
17048
17049         * reflection.h, reflection.c: added mono_custom_attrs_free ().
17050
17051 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
17052
17053         * class.c (mono_array_class_get): always set the serializable flags
17054         (mono_array_class_get): always set the SEALED attribute for array types
17055
17056 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
17057
17058         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
17059         attributes (fix for bug 42021).
17060
17061 2003-05-12  Dick Porter  <dick@ximian.com>
17062
17063         * gc.c: Don't run finalizers when the finalizer thread is
17064         finishing up, because the default domain has already been
17065         destroyed.
17066
17067 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
17068
17069         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
17070         value is null, we should throw an exception.   This is slightly
17071         different than the other conventions used for the constructor.
17072
17073 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17074
17075         * socket-io.c: fixed windows build.
17076
17077 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17078
17079         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
17080
17081 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
17082
17083         * object.c (mono_string_new_wrapper): Compatibility fix for MS
17084         compilers.
17085
17086 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
17087
17088         * class.c (mono_class_layout_fields): Add experimental GC aware
17089         auto layout facility. Requires class library changes to work correctly.
17090
17091         (mono_class_setup_vtable): Avoid overriding explicit interface
17092         method implementations. Fixes iface3.exe test.
17093
17094         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
17095         object reference.
17096         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
17097         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
17098
17099         * metadata.h: Add new type classification macro which determines
17100         whenever the type holds an object reference.
17101
17102 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
17103
17104         * marshal.c (mono_marshal_get_native_wrapper): cleanups
17105
17106 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
17107
17108         * gc.c (finalizer_thread): Work around a GC bug.
17109
17110 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
17111
17112         * marshal.c (emit_struct_conv): allow unions
17113
17114         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
17115
17116 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
17117
17118         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
17119
17120 2003-05-06  Martin Baulig  <martin@ximian.com>
17121
17122         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
17123
17124 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17125
17126         * socket-io.c:
17127         (Select_internal): allow NULLs, don't create arrays if not needed.
17128         Coupled with Socket.cs changes.
17129
17130         * threadpool.c:
17131         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
17132         register a finalizer for it that will close the semaphore handle. This
17133         fixes the leak and make Lupus' test run with > 4080 loops.
17134
17135 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
17136
17137         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
17138         Jerome Laban (bug #42287)
17139
17140 2003-05-02  Martin Baulig  <martin@ximian.com>
17141
17142         * debug-mono-symfile.h
17143         (MonoSymbolFile): Moved declaration into mono-debug.h.
17144         (MonoDebugMethodJitInfo): Likewise.
17145         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
17146         argument.
17147         (_mono_debug_address_from_il_offset): Take a
17148         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
17149
17150         * mono-debug.h
17151         (MonoDebugDomainData): New struct.
17152         (mono_debug_get_domain_data): New function.
17153         (mono_debug_add_method): Take an additional `MonoDomain *'
17154         argument.
17155         (mono_debug_source_location_from_address): Likewise.
17156         (mono_debug_il_offset_from_address): Likewise.
17157         (mono_debug_address_from_il_offset): Likewise.
17158
17159 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
17160
17161         * reflection.c: one more check for null type in custom attrs.
17162
17163 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17164
17165         * reflection.c: avoid warning (comparison is always false due to limited
17166         range of data type).
17167
17168 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17169
17170         * icall.c: throw an exception in Type.GetField if the argument 'name'
17171         is NULL.
17172
17173 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
17174
17175         * reflection.c: fixed handling of enums in named arguments to custom
17176         attributes (bug #42123).
17177
17178 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
17179
17180         * reflection.c: use the right array element type and handle
17181         a null for a Type argument, too.
17182
17183 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
17184
17185         * reflection.c: handle arrays as arguments to custom attributes.
17186
17187 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
17188
17189         * reflection.c: handle a string value in a custom attr
17190         ctor that takes an object.
17191
17192 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
17193
17194         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
17195         (fix bug #42063)
17196
17197 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
17198
17199         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
17200
17201 2003-04-27  Martin Baulig  <martin@ximian.com>
17202
17203         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
17204         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
17205         MONO_DEBUGGER_EVENT_BREAKPOINT.
17206         (mono_breakpoint_trampoline_code): Removed.
17207         (mono_debugger_event_handler): The last argument is now a
17208         `guint32'.
17209         (mono_debugger_insert_breakpoint_full): Removed the
17210         `use_trampoline' argument.
17211         (mono_debugger_method_has_breakpoint): Likewise.
17212         (mono_debugger_trampoline_breakpoint_callback): Renamed to
17213         mono_debugger_breakpoint_callback(); take the method and
17214         breakpoint number as arguments.
17215
17216 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
17217
17218         * metadata.c: fix off by one when loading parameters attributes.
17219
17220 2003-04-24  Martin Baulig  <martin@ximian.com>
17221
17222         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
17223
17224 2003-04-24  Martin Baulig  <martin@ximian.com>
17225
17226         * mono-debug-debugger.c: Moved all code which interacts with the
17227         Mono Debugger here.
17228
17229         * debug-mono-symfile.c: This code now just deals with the symbol
17230         file itself, the debugger code is now in mono-debug-debugger.c.
17231
17232 2003-04-23  Martin Baulig  <martin@ximian.com>
17233
17234         * mono-debug.c (mono_debug_source_location_from_il_offset):
17235         New method; like mono_debug_source_location_from_address(), but
17236         takes an IL offset instead of a machine address.
17237
17238 2003-04-23  Martin Baulig  <martin@ximian.com>
17239
17240         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
17241         `line' field; this is now computed by the debugger.
17242
17243 2003-04-23  Martin Baulig  <martin@ximian.com>
17244
17245         * mono-debug.[ch]: New files.  This is the new debugging interface.
17246
17247         * mono-debug-debugger.[ch]: New files.  Moved all code which
17248         interacts with the Mono Debugger here.
17249
17250 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
17251
17252         * domain.c (mono_init): initialize mono_defaults.monitor_class
17253
17254 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
17255
17256         * reflection.c (method_encode_code): Add a spicy exception to help
17257         future compiler authors.
17258
17259 2003-04-21  Martin Baulig  <martin@ximian.com>
17260
17261         * icall.c
17262         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17263         Make this work with relative pathnames; g_filename_to_uri() needs
17264         an absolute filename.
17265
17266 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
17267
17268         * icall.c: Track name changes in Object and ValueType.
17269
17270 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
17271
17272         * metadata.c (mono_type_stack_size): size should be a multiple of
17273         sizeof (gpointer)
17274
17275 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17276
17277         * gc.c:
17278         (internal_domain_finalize): moved into mono_domain_finalize. No need
17279         to create another thread because the finalizers will be run in the
17280         finalizer thread.
17281         
17282         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
17283         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
17284         to be run (MS does this too).
17285
17286 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
17287
17288         * object.c (mono_class_compute_gc_descriptor): Update comment.
17289
17290         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
17291
17292         * image.h: Add synchronized wrapper cache.
17293
17294         * image.c (do_mono_image_open): Initialize cache.
17295
17296         * reflection.c (create_dynamic_mono_image): Initialize cache.
17297
17298 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17299
17300         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
17301         ves_icall_System_Buffer_ByteLengthInternal.
17302
17303 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
17304
17305         * reflection.c: setup klass->nested_in earlier. Allow
17306         a dash in the assembly name.
17307
17308 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
17309
17310         * metadata.c (mono_type_to_unmanaged): dont access
17311         type->data.klass for MONO_TYPE_OBJECT
17312         (mono_type_to_unmanaged): consider System.Delegate class
17313
17314 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
17315
17316         * class.c: just setup supertypes in the proper place instead of
17317         initializing the full element class for arrays.
17318
17319 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
17320
17321         * class.c: ensure the element class of arrays is initialized.
17322         Setup the supertype info for array classes, too.
17323
17324 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
17325
17326         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
17327
17328 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17329
17330         * Makefile.am: re-added -m option when running cygpath. This way,
17331         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
17332         separator.
17333         * mono-config.c: same codepath for locating mono config file for WIN32
17334         and the rest.
17335         * assembly.c: if mono_assembly_setrootdir is called, don't override
17336         the value set.
17337
17338 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17339
17340         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
17341         MONO_ASSEMBLIES variable.
17342
17343 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
17344
17345         * icall.c: added Assembly::GetNamespaces() icall.
17346
17347 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17348
17349         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
17350
17351 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
17352
17353         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
17354         * object.c: fixed bug in the construction of vtable for proxies
17355
17356 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
17357
17358         * object.c (mono_array_new): Mark mono_array_new as an icall.
17359
17360 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17361
17362         * class.c: fixed test for public method when overriding interfaces.
17363         Closes bug #40970.
17364
17365 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
17366
17367         * appdomain.h, domain.c: added mono_domain_foreach() to
17368         be able to access the currently loaded appdomains.
17369         * object.c: make string interning work across sppdomains.
17370         Mark some functions for use as icalls.
17371
17372 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
17373
17374         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
17375
17376         * reflection.h reflection.c: Allocate long living data using 
17377         GC_MALLOC_ATOMIC so the collector does not need to scan it.
17378
17379         * reflection.c: Double the allocation size in streams instead of
17380         increasing it, to prevent unneccesary copying on large assemblies.
17381         
17382         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
17383         creation if the assembly does not have the Run flag set.
17384
17385 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
17386
17387         * class.h: avoid the C++ keywords in header files (Jerome Laban
17388         spotted and fixed this).
17389
17390 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17391
17392         * object.c:
17393         (mono_unhandled_exception): fill in the arguments for the
17394         UnhandledException event. Only trigger that event for the default
17395         domain (as MS does).
17396
17397 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17398
17399         * object.c: Improve typed allocation stuff based on suggestions from
17400         Paolo. Also turn it on if the GC library supports it.
17401
17402 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17403
17404         * object.c object.h class.h: Added experimental typed allocation
17405         facility using the interfaces in gc_gcj.h.
17406
17407         * os/gc_wrapper.h: Added new include files.
17408         
17409 2003-04-03  Martin Baulig  <martin@ximian.com>
17410
17411         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17412         which is not yet enabled by default.
17413
17414         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17415         functions.
17416         (mono_gc_lock, mono_gc_unlock): New static functions.
17417
17418         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17419         functions; stop/start the world for the garbage collector.  This
17420         is using the windows API; we need to complete the SuspendThread()/
17421         ResumeThread() implementation in the io-layer to make this work on Unix.
17422         (mono_gc_push_all_stacks): New public function; tells the garbage
17423         collector about the stack pointers from all managed threads.
17424
17425 2003-04-03  Martin Baulig  <martin@ximian.com>
17426
17427         * object.h (MonoThread): Added `gpointer stack_ptr'.
17428
17429         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17430
17431 2003-04-03  Martin Baulig  <martin@ximian.com>
17432
17433         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17434
17435 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17436
17437         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17438         field.last.
17439
17440 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17441
17442         * loader.c (mono_lookup_internal_call): Report the corlib that is
17443         out of sync.
17444
17445 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17446
17447         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17448         System.DBNull (it's class not valuetype).
17449
17450 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17451
17452         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17453         if the array method was already assigned a token (fixes bug#40646).
17454
17455 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17456
17457         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17458         if no assembly is given.
17459
17460 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17461
17462         * metadata.h: Added the new tables.
17463
17464         * row-indexes.h: Added definitions for new tables.
17465
17466         * metadata.c: Add schemas for new tables, and add support for
17467         computing the sizes of them.
17468
17469         * class.c: Update for handling the new type cases.
17470
17471 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17472
17473         * metadata.h (MONO_TYPE_IS_VOID): new macro
17474
17475 2003-03-31  Martin Baulig  <martin@ximian.com>
17476
17477         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17478
17479         * threads.c (mono_thread_new_init): Call `thread_created' in the
17480         mono_thread_callbacks.
17481
17482 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17483
17484         * loader.h: added marshalbyrefobject_class to mono_defaults
17485         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17486         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17487           generation of output parameters.
17488           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17489         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17490           contextbound and the target object belongs to the context of the caller.
17491         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17492         * object.c: Implemented support for interfaces and abstract classes
17493           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17494           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17495
17496 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17497
17498         * class.h class.c (mono_class_is_subclass_of): New function.
17499         
17500         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17501         routines for most common case (calls from ArrayList::ToArray).
17502
17503         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17504         routine so programs which call Environment::Exit() can be profiled.
17505
17506         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17507         Added MONO_ARCH_SAVE_REGS.
17508
17509         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17510
17511 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17512
17513         * blob.h: Add a couple of new MonoType types definitions.
17514
17515         * tabledefs.h: Add a couple of new call convs.
17516
17517 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17518
17519         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17520         the layout of the class.
17521
17522         * reflection.c (alloc_table): double the size on overflow to avoid
17523         unnecessary copying.
17524
17525         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17526         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17527         null so it can be garbage collected.
17528         
17529 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17530
17531         * reflection.c (mono_reflection_get_type): Return the resolved type
17532         only if it is in the assembly we searched.
17533
17534         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17535
17536         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17537         method.
17538
17539 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17540
17541         * appdomain.c:
17542         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17543         the right one is 'file:///blah', but MS allows it.
17544         * assembly.c:
17545         (mono_assembly_open): allow 'file://blah'
17546
17547         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17548
17549 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17550
17551         * socket-io.c: fixes bug #40310.
17552
17553 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17554
17555         * reflection.c (mono_reflection_parse_type): handle deeply nested
17556         types correctly.
17557
17558         * reflection.c (mono_image_create_token): Use unique token values
17559         since they will be put into a hash table.
17560
17561         * class.c (mono_class_setup_vtable): If a method occurs in more than
17562         one place in the vtable, and it gets overriden, then change the
17563         other occurances too.
17564
17565         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17566         object as return type.
17567
17568 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17569
17570         * icall.c: Deleted "ToString" implementation for double and float
17571         because they are full implemented in managed code.
17572
17573 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17574
17575         * reflection.c, reflection.h: implemented and exported functions
17576         to retrieve info about custom attributes.
17577
17578 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17579
17580         * appdomain.c: moved Uri handling to assembly.c
17581         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17582         work when using a file Uri in *nix and windows.
17583
17584         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17585         GetReferencedAssemblies.
17586
17587 2003-03-18  Dick Porter  <dick@ximian.com>
17588
17589         * icall.c: Rename a couple of internal calls
17590
17591         * threads.c: Set the thread state to Stopped when a thread exits.
17592         Fixes bug 39377.
17593
17594 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17595
17596         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17597         New icall.
17598
17599         * object.c (mono_class_vtable): fix warning.
17600
17601 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17602
17603         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17604
17605         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17606         memory.
17607         (method_encode_clauses): Create exception info structures in the right
17608         order.
17609         (mono_reflection_setup_internal_class): Initialize supertypes field.
17610
17611         * class.c object.c: Handle interfaces which implement other interfaces 
17612         correctly.
17613
17614         * class.h class.c: Move the supertypes array initialization code into 
17615         a separate function so it can be used for dynamic types too. Also call
17616         it earlier, in mono_class_init(), since it can be used before the
17617         type is initialized.
17618
17619 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17620
17621         * Makefile.am:
17622         * assembly.c:
17623         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17624
17625         * appdomain.c:
17626         * appdomain.h:
17627         * marshal.c:
17628         * object.c: remove warnings.
17629
17630 2003-03-13  Martin Baulig  <martin@ximian.com>
17631
17632         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17633         (MonoDebugLexicalBlockEntry): New types.
17634
17635         * debug-mono-symfile.c
17636         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17637
17638 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17639
17640         * process.c: ret can be any non-zero value accroding to MS doc.
17641
17642 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17643
17644         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17645         fixing a warning for a miss-used prototype, would have cause
17646         random memory corruption.
17647
17648 2003-03-07  Martin Baulig  <martin@ximian.com>
17649
17650         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17651         getting really annoying ....
17652
17653 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17654
17655         * reflection.c (fixup_method): added support for array methods.
17656
17657 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17658
17659         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17660         (pointed out by Michael Adams).
17661
17662 2003-03-04  Dick Porter  <dick@ximian.com>
17663
17664         * icall.c: Temporarily reverted the Double and Single ToString()
17665         change, because it broke nunit.
17666
17667 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17668
17669         * object.h, threads.h: make include files compatible with C++
17670         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17671
17672 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17673
17674         * icall.c: Erased ToString helper functions for Double and Single.
17675         Now, that implementations ar all in managed code (Double and Single
17676         Formatters).
17677
17678 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17679
17680         * appdomain.c: Added method for initializing the default context of
17681         a domain. Added internal call for getting the default context.
17682         * appdomain.h: Added context variable in MonoDomain struct.
17683         * domain.c: mono_domain_set also sets the default context of the domain
17684         * icall.c: Mapped internal method InternalGetDefaultContext.
17685         * object.c: mono_object_get_virtual_method returns always a remoting
17686         wrapper if the object is a transparent proxy.
17687         mono_runtime_invoke_array: when creating an object by calling the
17688         constructor, if the created object is a proxy, then the constructor should
17689         be called using the a remoting wrapper.
17690
17691 2003-03-03  Dick Porter  <dick@ximian.com>
17692
17693         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17694         variable so it compiles on solaris.  Problem spotted by
17695         Christopher Taylor <ct@cs.clemson.edu>
17696
17697 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17698
17699         * appdomain.c:
17700         (get_info_from_assembly_name): don't leak value.
17701
17702         * icall.c:
17703         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17704         result.
17705
17706 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17707
17708         * assembly.c: export mono_image_load_references ().
17709         * class.c: handle function pointers. mono_class_from_name() now
17710         supports nested type names directly.
17711
17712 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17713
17714         * reflection.h reflection.c: Encode already created dynamic methods 
17715         and fields correctly as a DEF instead of a REF.
17716
17717         * reflection.c: Get rid of the force_ref argument to 
17718         mono_image_typedef_or_ref since it was wrong in the first place.
17719
17720         * string-icalls.c: add error checking to string constructors according
17721         to the MSDN docs.
17722
17723         * reflection.c: Emit types in the order their TypeBuilders were 
17724         created. Previously, a new table index was assigned to each type before
17725         the tables were emitted. This was wrong because the signature blob
17726         might already refer to a type by its original table index.
17727
17728 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17729
17730         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17731         change.
17732         
17733 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17734
17735         * Makefile.am: make assemblies dir have \ instead of / on windows.
17736
17737 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17738
17739         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17740         iterate over the NESTEDCLASS table using a linear search since the
17741         table is not guaranteed to be sorted by the secondary key.
17742
17743         * class.c (mono_class_create_from_typedef): fixed up call to
17744         mono_metadata_nesting_typedef.
17745         
17746 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17747
17748         * marshal.c (mono_string_to_byvalstr): clear the memory as
17749         suggested by Jerome Laban <jlaban@wanadoo.fr>
17750
17751 2003-02-26  Dick Porter  <dick@ximian.com>
17752
17753         * process.c: Cope with padding in .rsrc blocks
17754
17755 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17756
17757         * metadata.h: reverted the filter_len change, it breaks reflection
17758         
17759 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17760
17761         * metadata.h: added a new field to store the filter_len
17762         
17763
17764 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17765
17766         * reflection.c: handle custom attributes for types and members
17767         created with Reflection.Emit (bug#38422).
17768
17769 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17770
17771         * reflection.c: define RTSpecialName automatically for constructors for
17772         compatibility with MS.NET.
17773
17774         * reflection.c (mono_reflection_create_runtime_class): initialize
17775         nested_in field of dynamically created classes.
17776
17777 2003-02-22  Martin Baulig  <martin@ximian.com>
17778
17779         * debug-mono-symfile.h: Incremented version number.
17780
17781 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17782
17783         * object.h icall.c process.c: fix warnings.
17784
17785 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17786
17787         * appdomain.h appdomain.c:
17788         (mono_domain_try_type_resolve): split the 
17789         name_or_tb argument into a name and a tb argument.
17790         (mono_domain_has_type_resolve): new function to check whenever the
17791         application has registered a TypeResolve event handler.
17792         
17793         * icall.c reflection.h reflection.c: move the type resolve logic into
17794         mono_reflection_get_type () so it will be invoked when 
17795         Assembly::GetType () is called.
17796
17797         * reflection.c:
17798         (mono_reflection_get_type): renamed to get_type_internal.
17799         (mono_reflection_get_type): fixed type name generation so it works 
17800         for nested types too.
17801         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17802         costly type name generation if there is no resolve event handler.
17803
17804 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17805
17806         * class.c, image.c: load exported types from file references.
17807
17808 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17809
17810         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17811           used to cache the managed methods used to create proxies and make 
17812           remote invocation of methods.
17813         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17814           to be remotely created.
17815         * object.c: Modified the method mono_class_vtable(). It now initializes 
17816           the remote flag of the vtable. Modified mono_object_new_specific(), 
17817           so now it checks the remote flag.
17818         * icall.c: Added a couple of internal methods, one for enabling instance 
17819           creation interception for a type, and one for creating objects bypassing
17820           the remote check.
17821
17822 2003-02-18  Martin Baulig  <martin@ximian.com>
17823
17824         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17825         New interncall to get a method's metadata token.
17826
17827         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17828         New interncall for the debugger.
17829
17830 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17831
17832         * class.c (mono_class_setup_vtable): allocate supertype array
17833
17834 2003-02-18  Martin Baulig  <martin@ximian.com>
17835
17836         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17837
17838 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17839
17840         * reflection.c:
17841         (assembly_name_to_aname): jump over unknown properties (i've found
17842         something like: 'type, assembly, version=xxx, custom=null, public...',
17843         so now will ignore custom=null and still get the rest of the values).
17844
17845 2003-02-17  Dick Porter  <dick@ximian.com>
17846
17847         * threads.c: Have Thread.Start() wait for a semaphore to signal
17848         that the thread has set up all its local data.  This fixes bug
17849         34323, where Abort() raced the new thread's TLS data.
17850
17851         Also removes the handle_store() call from start_wrapper, because
17852         threads are now always created suspended and there is no longer a
17853         race between the parent and child threads to store the info.
17854
17855 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17856
17857         * image.c: explain the #- heap issue in a message, hopefully
17858         avoiding FAQs on mono-list.
17859
17860 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17861
17862         * icall.c:
17863         (GetEntryAssembly): if the domain has not invoked
17864         AppDomain.ExecuteAssembly yet, return the assembly of the default
17865         AppDomain.
17866
17867 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17868
17869         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17870
17871 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17872
17873         * metadata.c, reflection.c: simple speedup to type hash
17874         and equals code.
17875
17876 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17877
17878         * image.c, image.h, class.c, assembly.c: move module loading
17879         to MonoImage. When loading metadata, consider alignemnet from
17880         the start of metadata, not from the metadata address in memory.
17881
17882 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17883
17884         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17885         AssemblyBuilder objects. Factored out custom attribute creation into
17886         a separate function.
17887         (create_custom_attr): new function to create custom attributes.
17888
17889 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17890
17891         * Makefile.am: Got tired of typing the full pathname to pedump.
17892         Until there is another option, am installing this.
17893
17894 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17895
17896         * class.c (class_compute_field_layout): always set field->parent 
17897         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17898
17899 2003-02-11  Dick Porter  <dick@ximian.com>
17900
17901         * threads-types.h:
17902         * monitor.c: Rewrote Monitor, making lock much faster and
17903         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17904         creates them as needed.
17905
17906         * exception.c: Added SynchronizationLockException
17907
17908         * threads.c: Deleted old Monitor implementation.  The new one is
17909         in a new file.
17910
17911 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17912
17913         * class.c: handled TypedReference type code. Set the correct size for
17914         class data. Setup interface_offsets for interface classes, too.
17915
17916 2003-02-09  Martin Baulig  <martin@ximian.com>
17917
17918         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17919
17920 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17921
17922         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17923         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17924         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17925         * verify.c: check for code that runs after the end of the method.
17926
17927 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17928
17929         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17930         "System.Math::Round2".
17931         * sysmath.h: Added Floor, Round and Round2 definitions.
17932         * sysmath.c: Modified certain functions that were not 100% compliant
17933         with MS.NET (math precision) and added the implementation of Floor,
17934         Round and Round2.
17935
17936 2003-02-07  Martin Baulig  <martin@ximian.com>
17937
17938         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17939
17940 2003-02-07  Martin Baulig  <martin@ximian.com>
17941
17942         * debug-mono-symfile.c: Reflected latest symwriter changes.
17943         (mono_debug_create_mono_symbol_file): Removed.
17944         (mono_debug_open_mono_symbol_file): Take an argument which
17945         specifies whether to create a dynamic symbol file.
17946
17947 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17948
17949         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17950
17951 2003-02-05  Martin Baulig  <martin@ximian.com>
17952
17953         * reflection.c (mono_image_build_metadata): Make this public,
17954         protect it against being called multiple times, don't create
17955         resources and don't build the compressed metadata here.
17956         (mono_image_create_pefile): Do this here.
17957
17958         * icall.c
17959         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17960
17961 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17962
17963         * socket-io.c: fixed bug #36322.
17964
17965 2003-02-06  Piers Haken <piersh@friskit.com>
17966
17967         * appdomain.[ch]:
17968         * class.h:
17969         * debug-mono-symfile.c:
17970         * icall.c:
17971         * loader.c:
17972         * mono-config.c:
17973         * monosn.c:
17974         * reflection.c:
17975         * socket-io.c: warning cleanups
17976
17977 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17978
17979         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17980         function. works like remoting invoke, but does a check for the Proxy first.
17981
17982 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17983
17984         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17985
17986 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17987
17988         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17989         array of pointers.
17990         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17991         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17992
17993         * object.c (mono_store_remote_field_new): used by the new jit
17994         instead of mono_store_remote_field
17995         (mono_load_remote_field_new): used by the new jit
17996         instead of mono_load_remote_field
17997
17998 2003-02-05  Patrik Torstensson
17999
18000         * appdomain.c: changed unload to take the domain id instead
18001         of domain
18002         
18003         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
18004
18005
18006 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18007
18008         * appdomain.c: don't look for assemblies in ApplicationBase if
18009         PrivateBinPathProbe is set.
18010
18011 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18012
18013         * object.c: make the first argument in main_args contain the absolute
18014         path to the assembly. Fixes bug #37511.
18015
18016 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18017
18018         * icall.c: get correct UTC offset for countries not using daylight
18019         time saving. Fixes bug #30030.
18020
18021 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18022
18023         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
18024         and 1 are the family).
18025
18026 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
18027
18028         * icall.c (ves_icall_InternalExecute): removed wrong assertion
18029
18030         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
18031
18032 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
18033
18034         * reflection.c: added support for SignatureHelper tokens, which is
18035         needed by the Calli opcode.
18036
18037         * reflection.h: track changes to SignatureHelper class.
18038
18039         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
18040
18041 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18042
18043         * appdomain.c: fixed loading assemblies from PrivateBinPath.
18044
18045 2003-02-03  Patrik Torstensson
18046         * appdomain.[c|h], domain.c : 
18047          - Added support for getting a domain via domain id
18048          - Support for setting and getting domain from System.AppDomain 
18049            (used in cross appdomain channel)
18050          - Added support for get/set for a MonoAppContext on a thread 
18051            (Context class in System.Runtime.Remoting.Contexts),
18052          - Removed hack in Get/SetData and ExecuteAssembly.
18053         
18054         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
18055         the managed world to get control when a proxy is created.
18056
18057         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
18058         
18059 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
18060
18061         * icall.c
18062         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
18063         Populate the codebase field as well.
18064
18065 2003-02-02  Martin Baulig  <martin@ximian.com>
18066
18067         * debug-mono-symfile.c
18068         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
18069         (mono_debug_symfile_add_method): Allow interncalls.
18070
18071 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18072
18073         * icall.c: throw parse exception if strtod fails or the string is empty.
18074
18075 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
18076
18077         * marshal.c: handle object type separately from defined
18078         class types.
18079
18080 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
18081
18082         * marshal.c: handle NATIVE_LPSTR for strings when it's
18083         explicitly specified.
18084
18085 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
18086
18087         * reflection.c, reflection.h, icall.c: setup the reflection
18088         handle cache for ModuleBuilders and AssemblyBuilders.
18089
18090 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
18091
18092         * reflection.c (reflection_methodbuilder_to_mono_method): set
18093         pinvoke flag
18094
18095 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18096
18097         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
18098
18099 2003-01-29  Dick Porter  <dick@ximian.com>
18100
18101         * threads.c: No need for the fake_thread kludge now that Thread
18102         doesn't run a class constructor
18103         
18104 2003-01-29  Dick Porter  <dick@ximian.com>
18105
18106         * threads.c: Use g_direct_hash instead of the rather bogus
18107         g_int_hash
18108
18109 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
18110
18111         * marshal.c (mono_marshal_get_native_wrapper): add check for null
18112         (fix pinvoke12.exe)
18113         (mono_marshal_get_struct_to_ptr): generate valid IL code
18114         (mono_marshal_get_ptr_to_struct): generate valid IL code
18115         (*): correctly set sig->pinvoke, we need to memdup the signature
18116         to do that
18117
18118 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18119
18120         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
18121         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
18122
18123 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18124
18125         * profiler.c: provide more callers information.
18126
18127 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
18128
18129         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
18130
18131         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
18132
18133         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
18134
18135 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18136
18137         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
18138         exception instead of going into an infinite loop on dates which it 
18139         can't yet handle.
18140
18141         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
18142         out-of-range exception if needed.
18143
18144         * class.c (mono_class_setup_vtable): allow a virtual method to provide
18145         an implementation for an interface method and to override an inherited
18146         method at the same time. 
18147         Imagine a scenario when a virtual method is used to override a
18148         virtual abstract method in a parent class, and this same method 
18149         provides an implementation for an method inherited from an interface. 
18150         In this case, the interface resolution code will set im->slot, which 
18151         means that the virtual method override pass will skip this method 
18152         which means a pointer to the abstract method inherited from the parent
18153         will remain in the vtable of this non-abstract class.
18154
18155         * class.c: (mono_class_setup_vtable): continue search for a real 
18156         method if only an abstract method is found.     
18157
18158 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
18159
18160         * reflection.c: add size to encoding for ByValStr and ByValArray
18161         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
18162
18163 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18164
18165         * class.c (mono_class_setup_vtable): pass the override info as an
18166         argument.
18167
18168         * class.c (mono_class_setup_vtable): set the slot of overriding methods
18169         correctly.
18170         
18171         * reflection.c (ensure_runtime_vtable); add support for method 
18172         overrides.
18173         
18174 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18175
18176         * reflection.c (resolution_scope_from_image): Hack to work to work with
18177         dynamic assemblies.
18178
18179         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
18180         added a 'force_ref' argument to force this function to allways return 
18181         a TypeRef. This is needed by mono_image_get_memberref_token ().
18182         
18183 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18184
18185         * reflection.c (mono_image_get_type_info): interfaces really don't have
18186         a parent.
18187
18188         * reflection.c (mono_image_basic_init): fill out missing fields of
18189         image structure.
18190
18191         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
18192         dynamic assemblies. This is required so dynamic assemblies show up in
18193         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
18194         Type::GetType() etc. This is consistent with MS behaviour.
18195
18196         * image.c image.h reflection.c: add newly created classes to the name 
18197         cache so mono_class_get () will find them.      
18198
18199 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
18200
18201         First part of changes to get IKVM.NET running under mono.
18202         
18203         * appdomain.h, appdomain.c: added new function 
18204         mono_domain_try_type_resolve() which will emit TypeResolve events. 
18205         This function will call AppDomain::DoTypeResolve to do the actual work.
18206
18207         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
18208         moved existing code dealing with dynamic tokens to a new function 
18209         called mono_reflection_lookup_dynamic_token (). This function will 
18210         raise TypeResolve events when appropriate. Since reflection.c is not 
18211         part of libmetadata, a new hook function called 
18212         mono_lookup_dynamic_token() is added to class.c which will call this.
18213
18214         * assembly.h assembly.c: make the invoke_load_hook function public,
18215         so it can be called for dynamic assemblies.
18216
18217         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
18218
18219         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
18220         type isn't found.
18221
18222         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
18223         MonoGHashTable, since it contains pointers to objects which the GC 
18224         needs to track.
18225
18226         * assembly.c (search_loaded): remove unused variable.
18227         
18228 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
18229
18230         * object.c: fixed issue exposed by gcc-generated IL programs
18231         that use RVA data for pointers.
18232
18233 2003-01-25  Martin Baulig  <martin@ximian.com>
18234
18235         * threads.c (start_wrapper): Moved the initialization of
18236         `start_func' above the mono_new_thread_init() call to which we
18237         pass it as argument.
18238
18239 2003-01-24  Martin Baulig  <martin@ximian.com>
18240
18241         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
18242         the MonoThread pointer.
18243
18244 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
18245
18246         * icall.c: Rename `PowImpl' to Pow.
18247
18248 2003-01-23  Dick Porter  <dick@ximian.com>
18249
18250         * threads.c (start_wrapper): Create a Thread object if needed, so
18251         the Main() thread can do the class initialisation in a subthread
18252         that has been set up to allow managed code execution.
18253
18254         Pass the thread ID instead of the MonoThread pointer to the thread
18255         start and attach callbacks.  This change is required, because the
18256         jit thread start callback must be called _before_ the Thread
18257         object can be created.
18258         
18259         (mono_thread_init): Removed much object creation code that is no
18260         longer needed.  No managed code is called from here now.
18261
18262         * object.c (mono_runtime_exec_managed_code): Create a subthread
18263         for Main, and call back to the runtime to use it.
18264         Set the exit code when Main exits.
18265
18266         * gc.c: Make sure domain finalisation happens in a subthread.
18267         Re-enable threaded GC, fixing bug 31333 (again).
18268
18269         * environment.c: System.Environment internall calls (so far just
18270         ExitCode is here, the others are still in icall.c)
18271
18272         * appdomain.c (mono_runtime_cleanup): All threads running managed
18273         code should have finished before mono_runtime_cleanup() is
18274         reached, so no need to clean up threads.
18275
18276 2003-01-22  Martin Baulig  <martin@ximian.com>
18277
18278         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
18279         `gpointer func' arguments.      
18280         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
18281         but added `MonoThread *thread' argument.
18282         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
18283
18284         * threads.c (mono_new_thread_init): Added `gpointer func' argument
18285         and pass it to the mono_thread_start_cb callback.
18286         (mono_install_thread_callbacks): New public function to install a
18287         set of callbacks which are set by the debugger.
18288         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
18289
18290 2003-01-22  Martin Baulig  <martin@ximian.com>
18291
18292         * Makefile.am: Install debug-mono-symfile.h.
18293
18294 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
18295
18296         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
18297
18298 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
18299
18300         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
18301         * class.c (mono_ptr_class_get): correctly set access levels of pointers
18302         (mono_array_class_get): correctly set access levels of arrays
18303
18304 2003-01-20      Patrik Torstensson
18305         * image.h (MonoAssemblyName): changed major, minor, build, revision
18306         from signed to unsigned.
18307
18308 2003-01-20  sean kasun <skasun@azstarnet.com>
18309
18310         * reflection.c (load_cattr_value): Now this handles
18311         MONO_TYPE_SZARRAY.  Fixes bug #35629
18312
18313 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
18314
18315         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
18316         integer value
18317
18318 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18319
18320         * decimal.c: fixed bug #26056.
18321
18322 2003-01-17  Martin Baulig  <martin@ximian.com>
18323
18324         * gc.c: Raise an ExecutionEngineException instead of using g_error().
18325
18326 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18327
18328         * exception.[ch]:
18329         (mono_get_exception_type_initialization): new function.
18330
18331         * object.c: throw a TypeInitializationException when an exception is
18332         thrown invoking the class constructor.
18333
18334 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18335
18336         * reflection.c: fixed attribute reading.
18337
18338 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18339
18340         * icall.c:
18341         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
18342         provided, look for the type in the calling assembly and then in
18343         mscorlib; if the assembly name is provided, only try that one.
18344
18345 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18346
18347         * object.c: register the vtable before there is a chance it's
18348         queried again recursively.
18349
18350 2003-01-13  Duncan Mak  <duncan@ximian.com>
18351
18352         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
18353         gc-internal.h. 
18354         
18355 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
18356
18357         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
18358
18359 2003-01-11  Martin Baulig  <martin@ximian.com>
18360
18361         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
18362         this to 20 for the release.
18363
18364 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
18365
18366         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
18367
18368         * loader.c (mono_method_get_marshal_info): bug fix
18369
18370         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
18371         structures with explicit layout
18372
18373 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18374
18375         * profiler.c: made the output more readable (and sorted). 
18376         Added caller information for the allocation profiler.
18377
18378 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
18379
18380         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
18381
18382 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18383
18384         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
18385         to get value types.
18386         
18387 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
18388
18389         * object.c, profiler.h, profiler.c, profiler-private.h:
18390         Added object allocation profiler.
18391
18392 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
18393
18394         * reflection.h, reflection.c: handle global methods.
18395         Compress blob entries.
18396
18397 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18398
18399         * marshal.c: fix compilation.
18400
18401 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18402
18403         * loader.c (mono_method_get_marshal_info): impl.
18404
18405         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18406
18407 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18408
18409         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18410         for reference types.
18411
18412 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18413
18414         * loader.c: fixed off by one error in loaded parameter names.
18415
18416 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18417
18418         * marshal.c (mono_marshal_get_icall_wrapper): like
18419         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18420         instead of a MonoMethod.
18421
18422 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18423
18424         * decimal.c: fixed bug #36537.
18425
18426 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18427
18428         * marshal.c: throw a missing method exception if a
18429         P/Invoke method is not found.
18430
18431 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18432
18433         * icall.c: allow a null this for constructors.
18434
18435 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18436
18437         * icall.c: raise the proper exceptions if the arguments to the
18438         internal Invoke are incorrect.
18439
18440 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18441
18442         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18443
18444 2003-01-03  Martin Baulig  <martin@ximian.com>
18445
18446         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18447
18448 2002-12-31  Martin Baulig  <martin@ximian.com>
18449
18450         * debug-mono-symfile.c: Completely rewrote the type section.
18451         Instead of using individual malloc()ed fields, we use one big
18452         continuous memory area and offsets into this area.
18453         See the comments in the source code for details.
18454
18455 2002-12-30  Martin Baulig  <martin@ximian.com>
18456
18457         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18458
18459 2002-12-30  Martin Baulig  <martin@ximian.com>
18460
18461         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18462         line number table in this data blob instead of using an external
18463         pointer.
18464
18465 2002-12-28  Martin Baulig  <martin@ximian.com>
18466
18467         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18468
18469 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18470
18471         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18472         as a boxed return type.
18473
18474 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18475
18476         * appdomain.c
18477         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18478         g_build_filename to properly get separators on the filename created.
18479
18480         * object.h: Small change, introduce MonoMarshalByRefObject to
18481         track the layout of that structure in the C# universe as we make
18482         changes there.
18483
18484 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18485
18486         * object.c: removed assert to allow static fields on interfaces.
18487         * loader.c: a TypeSpec may be used for any type, not just arrays.
18488
18489 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18490
18491         * class.c, class.h: added mono_class_array_element_size ().
18492         Ignore static methods in interfaces.
18493
18494 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18495
18496         * threads.c: fixed the build under cygwin.
18497
18498 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18499
18500         * reflection.c: handle nullref constants. Allocate keys for
18501         reflection handles with the GC.
18502
18503 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18504
18505         * threads.c, threads.h: added mono_thread_get_abort_signal()
18506         to get a suitable signal for thread abort.
18507
18508 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18509
18510         * metadata.c: fix handling of ExportedType table.
18511
18512 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18513
18514         * icall.c: added WriteWindowsDebugString internal call.
18515
18516 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18517
18518         * reflection.h: added fields to match C# implementation.
18519
18520 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18521
18522         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18523
18524 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18525
18526         * gc.h, gc-internal.h: Rename header for GC internal calls to
18527         gc-internal.h from gc.h as to not clash with Boehm GC having its
18528         header installed as <gc.h> in outside include paths.
18529         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18530         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18531
18532 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18533
18534         * icall.c: assign minor, build and revision in FillName.
18535
18536 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18537
18538         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18539         Added support for running code generated by Reflection.Emit.
18540
18541 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18542
18543         * appdomain.c: check for NULL argument in LoadFrom.
18544
18545 2002-12-10  Dick Porter  <dick@ximian.com>
18546
18547         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18548
18549 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18550
18551         * appdomain.c: fix buglet when building exe file name.  Handle full
18552         assembly name (needed after latest changes to AssemblyName).
18553         * image.c:
18554         (mono_image_close): free some hashtables.
18555
18556 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18557
18558         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18559         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18560         on some systems (redhat 7.3) 
18561
18562 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18563
18564         * threads.c: delete the critical section of a sync block,
18565         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18566
18567 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18568
18569         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18570
18571 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18572
18573         * appdomain.[ch]: handle the assembly preload event to try loading the
18574         assemblies using the paths we have in the current domain.
18575
18576         * assembly.[ch]: created an assembly preload hook that is called to try
18577         loading the assembly by other means that the ones provided here.
18578
18579         * domain.c: initialize the domain search path.
18580
18581         From now on, assemblies (TODO: except corlib and System) are loaded
18582         according to these rules when using mono_assembly_load ():
18583
18584                 1. It tries to load the assembly from the ApplicationBase
18585                 of the current domain appending .dll and .exe (TODO: have to
18586                 try loading from name/name.dll and name/name.exe).
18587
18588                 2. It tries the search path specified in PrivateBinPath for the
18589                 current domain (if any).
18590
18591                 3. Previous behavior.
18592
18593 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18594
18595         * icall.c: implemented GetInterfaceMap() related icall.
18596         * domain.c, loader.h: load MethodInfo in mono_defaults.
18597
18598 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18599
18600         * gc.c: disable the finalizer thread for now, untill all the issues
18601         with it are resolved.
18602
18603 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18604
18605         * string-icalls.c: handle embedded nulls in string ctor when the
18606         length is specified.
18607
18608 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18609
18610         * class.c: look for explicit interface implementation in parent
18611         classes, too.
18612
18613 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18614
18615         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18616
18617 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18618
18619         * gc.c: protect handles with a critical section.
18620
18621 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18622
18623         * icall.c:
18624         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18625         parameters. If no assembly specified, try getting the type from all
18626         the assemblies in the current domain, else, load the assembly and get
18627         the type from it.
18628
18629 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18630
18631         * marshal.c: applied patch from Aleksey Demakov that fixes
18632         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18633
18634 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18635
18636         * icall.c: fixed get_location.
18637
18638 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18639
18640         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18641         declarations to make it work with older gcc. 
18642
18643         * loader.c (mono_get_method): set signature->pinvoke for native calls
18644
18645 2002-11-20  Dick Porter  <dick@ximian.com>
18646
18647         * threads.c (mono_thread_init): Set the main thread's handle
18648
18649 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18650
18651         * gc.c: allow compilation without GC support. Changed to match the
18652         mono coding style.
18653
18654 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18655
18656         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18657
18658 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18659
18660         * reflection.c: set a public key token on the core assemblies.
18661
18662 2002-11-18  Dick Porter  <dick@ximian.com>
18663
18664         * threads.c: Split out some thread initialisation so that other
18665         files can set the start callback function.
18666
18667         * gc.c: Run finalisers in a separate thread, to avoid stack
18668         overflow.  Fixes bug 31333.
18669
18670         * appdomain.c: Set up GC finalisation thread.
18671
18672         * reflection.c: 
18673         * object.c: 
18674         * domain.c: Use gc.h macros for GC_malloc
18675         
18676 2002-11-15  Dick Porter  <dick@ximian.com>
18677
18678         * threadpool.c: 
18679         * threads.c:
18680         * appdomain.c: Removed mono_runtime_init_with_attach(),
18681         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18682         merging the extra parameter with the existing function.  Removed
18683         unneeded code in mono_thread_attach().
18684
18685 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18686
18687         * image.c (mono_image_loaded_by_guid): a method to get loaded
18688         images by guid. 
18689         (load_metadata_ptrs): we store the guid as string.
18690
18691 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18692
18693         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18694
18695         * metadata.c (mono_guid_to_string): imported method form Zoltan
18696         Varga (slightly modified)
18697
18698         * assembly.c (mono_assembly_open): load precompiled code
18699
18700         * loader.h (MonoMethod): we store the method token for use in the
18701         aot compiler. 
18702
18703 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18704
18705         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18706         the hook function called when an assembly is loaded.
18707         
18708         * domain.c: Modified file.
18709         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18710
18711         Fixes bug #33196.
18712
18713 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18714
18715         * reflection.c: Map PEFileKind to the value expected by the WinNT
18716         image loader. 
18717
18718 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18719
18720         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18721         Read until the buffer is filled completely.
18722
18723 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18724
18725         * icall.c: implemented MonoType.InternalGetEvent ().
18726
18727 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18728
18729         * appdomain.c: implemented InitAppDomainSetup. Delayed
18730         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18731         the entry_assembly.
18732
18733         * assembly.c: base_dir is now an absolute path ending with
18734         G_DIR_SEPARATOR.
18735
18736         * icall.c: modified get_location according to the above changes.
18737
18738         * object.c: init AppDomain.SetupInformation for the default domain after
18739         we have the entry assembly.
18740
18741         * domain.c: when unloading a domain, setup = NULL.
18742
18743 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18744
18745         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18746
18747 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18748
18749         * object.h, object.c: introduced mono_object_get_virtual_method ()
18750         to lookup the method invoked on an object when a callvirt is done on
18751         a method.
18752         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18753
18754 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18755
18756         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18757         current domain when loaded an assembly and failed to load it.
18758
18759         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18760
18761 2002-10-31  Dick Porter  <dick@ximian.com>
18762
18763         * icall.c: 
18764         * file-io.h: 
18765         * file-io.c: Return the error status in a parameter, as the
18766         GetLastError() value has long since been blown away if we try and
18767         look it up in a subsequent internal call invocation.  Delete the
18768         GetLastError() internal call, because it's useless.
18769
18770 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18771
18772         * class.[ch]: added cast_class to fix bug 29517
18773
18774 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18775
18776         * marshal.c: create valid IL code in the filter clause:
18777         the new JIT is less forgiving:-)
18778
18779 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18780
18781         * icall.c: removed get_property internal call.
18782
18783 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18784
18785         * appdomain.h domain.c: Added an ID to appdomains.
18786         
18787         * threads.c threads.h icall.c: Implement icall
18788         Thread:GetDomainID(), and remove unused icall 
18789         CurrentThreadDomain_internal.
18790
18791 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18792
18793         * icall.c: Don't recurse through the base types in GetConstructor.
18794         Fixes bug #32063. 
18795
18796 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18797
18798         * mempool.h, mempool.c: added mono_mempool_empty() and
18799         mono_mempool_stats().
18800
18801 2002-10-23  Dick Porter  <dick@ximian.com>
18802
18803         * file-io.c: 
18804         * file-io.h: 
18805         * icall.c: Added MonoIO.GetFileType internal call
18806
18807 2002-10-17  Dick Porter  <dick@ximian.com>
18808
18809         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18810         delegate semaphore before waiting for all threads to finish,
18811         because new threads can also call async delegates.  Fixes bug
18812         32004.
18813
18814         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18815         of 3 seconds, in case another async job is queued.  (This part is
18816         needed because the bug fix reintroduced the 3s exit lag.)  This
18817         makes the mono_runtime_shutdown flag superfluous.
18818
18819 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18820
18821         * reflection.c: include ehader size in method section headers.
18822         Really check for suplicated modules entries.
18823
18824 2002-10-17  Martin Baulig  <martin@gnome.org>
18825
18826         * debug-mono-symfile.c: Added back support for locals.
18827
18828 2002-10-14  Martin Baulig  <martin@gnome.org>
18829
18830         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18831         MONO_TYPE_VOID.
18832
18833 2002-10-14  Martin Baulig  <martin@gnome.org>
18834
18835         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18836         mono_class_get() instead of looking in the class cache. 
18837
18838 2002-10-13  Martin Baulig  <martin@gnome.org>
18839
18840         * debug-mono-symfile.c: Set version number to 28, include the
18841         signature in method names.
18842
18843 2002-10-13  Martin Baulig  <martin@gnome.org>
18844
18845         * debug-mono-symfile.h: Set version number to 27.
18846
18847 2002-10-11  Martin Baulig  <martin@gnome.org>
18848
18849         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18850
18851 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18852
18853         * metadata.c, metadata.h: added helper function to allocate signatures.
18854
18855 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18856
18857         * icall.c: added internal call to get the location of machine.config.
18858
18859 2002-10-08  Martin Baulig  <martin@gnome.org>
18860
18861         * debug-mono-symfile.c: Ignore classes with a pending init for the
18862         moment.
18863
18864 2002-10-03  Dick Porter  <dick@ximian.com>
18865
18866         * threads.c: Freebsd pthread_t is a pointer
18867
18868 2002-10-03  Dick Porter  <dick@ximian.com>
18869
18870         * socket-io.c: Implemented GetHostName_internal
18871
18872 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18873
18874         * mono-config.c:
18875         (mono_config_parse_file): don't leak the text.
18876
18877 2002-10-02  Martin Baulig  <martin@gnome.org>
18878
18879         * debug-mono-symfile.c: Added support for methods.
18880
18881 2002-10-01  Martin Baulig  <martin@gnome.org>
18882
18883         * debug-mono-symfile.c: Don't emit methods and line numbers for
18884         the dynamic symbol file, just write the type table.  We can easily
18885         have an external helper program which creates a symbol file for an
18886         IL file.        
18887
18888 2002-10-01  Dick Porter  <dick@ximian.com>
18889
18890         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18891         Only add the handle to the cleanup array when we're about to
18892         launch the thread.  Bug 31425 deadlocked when the test was run on
18893         mono under w32.
18894
18895 2002-10-01  Martin Baulig  <martin@gnome.org>
18896
18897         * debug-mono-symfile.c: Added support for properties.
18898
18899 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18900
18901         * reflection.c: unaligned store fix from Mark Crichton
18902         <crichton@gimp.org>.
18903
18904 2002-09-27  Martin Baulig  <martin@gnome.org>
18905
18906         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18907         New interncall.
18908
18909 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18910
18911         * assembly.h, assembly.c: use a sane API to hook into the assembly
18912         loading process instead of a useless special-purpouse hack
18913         (ngen needs a hook, too, for example).
18914
18915 2002-09-27  Dick Porter  <dick@ximian.com>
18916
18917         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18918         io-layer can set up some process handle info.  Not needed on w32,
18919         but doesn't hurt either.
18920
18921         * process.c: Pass the program name in the second parameter to
18922         CreateProcess, so the path is searched.  Include the working
18923         directory. Implemented process name, process enumeration, and some
18924         process detail internal calls.
18925         
18926         * icall.c: Added internal calls for process lookup, and some
18927         process details
18928
18929 2002-09-26  Martin Baulig  <martin@gnome.org>
18930
18931         * assembly.c (mono_install_open_assembly_hook): New global
18932         function to install a function to be invoked each time a new
18933         assembly is loaded.
18934         (mono_assembly_open): Run this callback function if set.
18935
18936         * debug-mono-symfile.c: Put back line numbers for the dynamic
18937         symbol file and also record the .il file as source file.  This
18938         allows us to install the temporary symbol file as `file.dbg' just
18939         like a compiler-generated one.
18940
18941 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18942
18943         * Corrected typo in gc.c (BOHEM vs BOEHM).
18944
18945 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18946
18947         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18948         GetProperties. Also avoid calling g_slist_length in GetProperties and
18949         GetMethods.
18950
18951 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18952
18953         * reflection.c: avoid unaligned stores (bug spotted by
18954         Mark Crichton  <crichton@gimp.org>).
18955
18956 2002-09-25  Martin Baulig  <martin@gnome.org>
18957
18958         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18959         instead of guint64 for addresses and added prologue/epilogue info.
18960
18961 2002-09-25  Martin Baulig  <martin@gnome.org>
18962
18963         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18964         store line number info.  For the dynamic symbol file, we only need
18965         to provide the JIT generated dynamic line number info for the dynamic
18966         symbol file.
18967
18968 2002-09-25  Martin Baulig  <martin@gnome.org>
18969
18970         * debug-mono-symfile.h: Incremented version number.
18971
18972 2002-09-24  Martin Baulig  <martin@gnome.org>
18973
18974         * class.c (mono_debugger_class_init_func): New global function
18975         pointer variable.
18976         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18977         call it.
18978
18979         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18980         function.  This is called via the mono_debugger_class_init_func
18981         hook to add all types to the dynamic type table.
18982         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18983         from its metadata token.
18984
18985         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18986         New interncall for the debugger.
18987
18988 2002-09-24  Nick Drochak <ndrochak@gol.com>
18989
18990         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18991         before using it in case it is null.
18992         
18993 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18994
18995         * metadata.c: allow custom modifiers in local var signatures
18996         (bug spotted by Zoltan Varga).
18997
18998 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18999
19000         * class.c: deal with the <Module> class that may have a NULL vtable.
19001         Eliminate warnings.
19002
19003 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19004
19005         * image.c, image.h: more strong name helpers.
19006         * monosn.c: more work: convert pem keys to cryptoapi format.
19007
19008 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19009
19010         * string-icalls.c: speedup IndexOf.
19011
19012 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19013
19014         * icall.c: updates from Zoltan.2.Varga@nokia.com.
19015
19016 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19017
19018         * icall.c: cleanup: use mono_object_domain ().
19019
19020 2002-09-23  Martin Baulig  <martin@gnome.org>
19021
19022         * debug-mono-symfile.c: Improved type support.
19023
19024 2002-09-22  Martin Baulig  <martin@gnome.org>
19025
19026         * debug-mono-symfile.c: Added support for reference types and strings.
19027
19028 2002-09-22  Martin Baulig  <martin@gnome.org>
19029
19030         * debug-mono-symfile.c: Started to work on the type table.
19031
19032 2002-09-21  Martin Baulig  <martin@gnome.org>
19033
19034         * debug-mono-symfile.c: Largely reworked the symbol table format.
19035         The symbol table is now incrementally updated each time a new
19036         method is added.  We're now also using our own magic and version
19037         so that you don't need to recompile all your classes if the
19038         dynamic table changes.
19039         (mono_debug_update_mono_symbol_file): Removed.
19040         (mono_debug_symfile_add_method): New function to add a method.
19041
19042 2002-09-21  Martin Baulig  <martin@gnome.org>
19043
19044         * icall.c
19045         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
19046         New interncall.
19047
19048         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
19049         New interncall to get a method from its metadata token.
19050
19051 2002-09-21  Martin Baulig  <martin@gnome.org>
19052
19053         * debug-mono-symfile.c: Create type table.
19054
19055 2002-09-20  Martin Baulig  <martin@gnome.org>
19056
19057         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
19058
19059 2002-09-20  Martin Baulig  <martin@gnome.org>
19060
19061         * debug-mono-symfile.c: Provide information about params and locals.
19062
19063 2002-09-20  Martin Baulig  <martin@gnome.org>
19064
19065         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
19066         New interncall.
19067
19068         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
19069         interncall to get a method from its metadata token.
19070
19071 2002-09-20  Martin Baulig  <martin@gnome.org>
19072
19073         * debug-mono-symfile.c: Added a few checks for method->header
19074         being non-NULL.  This should never happen, but for the moment
19075         let's use a g_warning() rather than a g_assert().
19076
19077 2002-09-19  Mark Crichton  <crichton@gimp.org>
19078
19079         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
19080         even if support for it isn't present.  Added an #ifdef to fix this.
19081
19082         * socket-io.c: Added checks back for Solaris support.
19083
19084 2002-09-19  Martin Baulig  <martin@gnome.org>
19085
19086         * debug-mono-symfile.c (read_string, write_string): Reflect latest
19087         changes in the symbol file format.
19088
19089 2002-09-18  Martin Baulig  <martin@gnome.org>
19090
19091         * debug-mono-symfile.c: Set version number to 21.
19092
19093 2002-09-18  Dick Porter  <dick@ximian.com>
19094
19095         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
19096         on netbsd.  Fixes bug 30051.
19097
19098 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19099
19100         * reflection.c:
19101         (set_version_from_string): little fix.
19102
19103 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19104
19105         * monosn.c, Makefile.am: added strong name utility.
19106         * reflection.h, reflection.c: implemented delayed signing,
19107         locale, version and hash id assembly attributes.
19108
19109 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19110
19111         * loader.c, metadata.c: load param attributes in signatures.
19112
19113 2002-09-16  Martin Baulig  <martin@gnome.org>
19114
19115         * debug-mono-symfile.c: Added string table with all method names.
19116
19117 2002-09-14  Martin Baulig  <martin@gnome.org>
19118
19119         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
19120         fast method lookup.
19121
19122 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19123
19124         * reflection.c: record the public key token of referenced assemblies.
19125
19126 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19127
19128         * image.c, image.h: added functions to get the strong name and the
19129         public key of an assembly.
19130         * pedump.c: use them.
19131
19132 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
19133
19134         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
19135
19136 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
19137
19138         * marshal.c (mono_marshal_get_managed_wrapper): Added
19139         MONO_TYPE_BOOLEAN 
19140
19141 2002-09-11  Martin Baulig  <martin@gnome.org>
19142
19143         * gc.c: Call GC_unregister_disappearing_link() on all links when
19144         finalizing them, this is necessary to aviod a crash in boehm's
19145         finalize handler.
19146
19147 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19148
19149         * gc.c: handle GetTarget for finalized objects spotted and fixed by
19150         nick@chemlab.org.
19151
19152 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19153
19154         * icall.c: implemented MonoType::Module.
19155         * reflection.c, reflection.h: mono_module_get_object () from
19156         Tomi Pakarinen <tomi.pakarinen@welho.com>.
19157
19158 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19159
19160         * icall.c: ignore overridden methods in GetMethods ().
19161         Fix for FieldInfo::SetValue().
19162         * object.c: handle float/double in runtime invoke.
19163
19164 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19165
19166         * object.c: allow a constructor to be called again on an object.
19167
19168 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19169
19170         * class.h, class.c: move field layout code to it's own function and
19171         export it. Get an interface id earlier. Move fields in MonoClass
19172         so they are more cache friendly and align the bitfields.
19173         * loader.c: temporary handle get_param_names() for a runtime method.
19174         * reflection.c, reflection.h: more code to handle runtime creation of
19175         types.
19176
19177 2002-09-09  Martin Baulig  <martin@gnome.org>
19178
19179         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
19180         signature with the pinvoke field being set for the actual call.
19181
19182 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19183
19184         * icall.c: removed some unused icalls. Start of map of glib charsets
19185         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
19186
19187 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19188
19189         * debug-helpers.c: break infinite loop (found and fixed by
19190         Holger Arnold <harnold@gmx.de>).
19191
19192 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19193
19194         * icall.c: target may be null in create_delegate.
19195
19196 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19197
19198         * marshal.c: handle a boolean return type.
19199
19200 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19201
19202         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
19203
19204 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19205
19206         * gc.c: fix weakreferences.
19207
19208 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19209
19210         * icall.c: added icall to get default codepage.
19211
19212 2002-09-03  Dick Porter  <dick@ximian.com>
19213
19214         * threads.h: 
19215         * threads.c: Use MonoThread instead of MonoObject where
19216         apropriate.
19217
19218         Store running thread objects in a hash table, so that we have all
19219         the info to hand when waiting for them to finish
19220         (means we don't need OpenThread() any more, so mingw builds should
19221         be fully functional again.)
19222
19223         * verify.c:
19224         * object.h: Added thread ID to MonoThread
19225
19226 2002-09-03  Martin Baulig  <martin@gnome.org>
19227
19228         * icall.c (System.Reflection.Assembly::get_location): New interncall.
19229
19230 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19231
19232         * icall.c: fixed leak in get_temp_path. Thanks lupus.
19233
19234 2002-09-03  Martin Baulig  <martin@gnome.org>
19235
19236         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
19237         argument to store the end address of the disassembled instruction.
19238
19239         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
19240         here from debug-symfile.h.
19241         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
19242         JIT into this struct.
19243         (MonoSymbolFile): Added `char *image_file' field.
19244         (MonoDebugGetMethodFunc): Removed.
19245         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
19246         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
19247         (mono_debug_find_method): New method.
19248
19249         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
19250         create a full symbol file.
19251         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
19252         and static symbol files.
19253         (mono_debug_find_method): The symbol file keeps an internal method hash,
19254         call this to get a MonoDebugMethodInfo from a MonoMethod.
19255
19256         * debug-symfile.[ch]: Removed.
19257
19258 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
19259
19260         * image.c (do_mono_image_open): Remove linker version check.
19261
19262 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
19263
19264         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
19265         wrappers for instance methods.
19266         
19267 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19268
19269         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
19270
19271 2002-08-28  Dick Porter  <dick@ximian.com>
19272
19273         * Makefile.am: Export HOST_CC for w32 builds
19274
19275 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19276
19277         * file-io.c process.c: MonoString are null terminated, no
19278         need for mono_string_to_utf16() anymore.
19279
19280 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19281
19282         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
19283
19284 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
19285
19286         * icall.c, reflection.h: speedup System.MonoType.
19287
19288 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19289
19290         * reflection.c: allow null as the value of a string argument in
19291         custom attributes constructors.
19292
19293 2002-08-27  Martin Baulig  <martin@gnome.org>
19294
19295         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
19296         `trampoline_address' field.
19297
19298 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
19299
19300         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
19301         check (fixes bug #29486) 
19302
19303 2002-08-27  Martin Baulig  <martin@gnome.org>
19304
19305         * debug-mono-symfile.c: Changed the file format in a way that allows us
19306         open it read-only and to use a specially malloced area for all the
19307         dynamic data.  We can now also generate a symbol file on-the-fly if we're
19308         debugging IL code and there is no MCS generated symbol file for it.
19309
19310 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19311
19312         * object.c: added a define for a good string and array
19313         creation speedup (not enabled by default because we need to deal with
19314         the synch stuff).
19315
19316 2002-08-26  Martin Baulig  <martin@gnome.org>
19317
19318         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
19319         function to create a dynamic symbol file.  This is used by the
19320         debugger to create a symbol file for IL code on-the-fly.
19321
19322 2002-08-26  Martin Baulig  <martin@gnome.org>
19323
19324         * loader.c (mono_lookup_pinvoke_call): Include the error message
19325         from g_module_error() in the error message.
19326
19327 2002-08-24  Martin Baulig  <martin@gnome.org>
19328
19329         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
19330         function to update the symbol file.  The symbol file is mmap()ed
19331         writable, but private.  This allows us to install the symbol file
19332         together with the assembly.
19333
19334 2002-08-24  Martin Baulig  <martin@gnome.org>
19335
19336         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
19337         but they can read the new symbol file format which mcs is now creating.
19338
19339         * debug-symfile.c (mono_debug_find_source_location): Moved to
19340         debug-mono-symfile.c; this is now operating on the new symbol file.
19341
19342 2002-08-23  Martin Baulig  <martin@gnome.org>
19343
19344         * debug-helpers.c (mono_method_desc_from_method): New function to get
19345         a MonoMethodDesc from a MonoMethod.
19346
19347 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19348
19349         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
19350         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
19351
19352 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19353
19354         * string-icalls.[ch]: make helper methods static.
19355
19356 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19357
19358         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
19359         types to it and to SetValueInternal.
19360
19361         * object.c: Moved handle_enum label to its proper place. This was the
19362         f... bug! ;-)
19363
19364         This time i compiled mcs and gtk-sharp and they both work.
19365
19366 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19367
19368         * icall.c: reverted partially my previous patch until 
19369         object.c:set_value handles enums correcly.
19370
19371 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19372
19373         * icall.c:
19374         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
19375         (ves_icall_System_Environment_get_MachineName): removed warning when
19376         compiling under cygwin.
19377
19378 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19379
19380         * object.c: fixed field_get_value() for reference types.
19381
19382 2002-08-22  Dick Porter  <dick@ximian.com>
19383
19384         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
19385         Don't free a buffer while it's still needed.  Patch from Jonathan
19386         Liger <Jonathan.liger@wanadoo.fr>
19387
19388 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
19389
19390         * icall.c (ves_icall_System_Environment_get_Platform): Add new
19391         internal call.
19392
19393 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
19394
19395         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
19396         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19397
19398         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19399         we call unmanaged code which throws exceptions.
19400
19401 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19402
19403         * appdomain.h: added per-domain entry_assembly.
19404         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19405         arguments.
19406         * icall.c: Assembly::GetEntryAssembly icall.
19407         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19408         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19409
19410 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19411
19412         * appdomain.h, gc.c: added mono_domain_finalize ().
19413
19414 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19415
19416         * object.c:
19417         (mono_print_unhandled_exception): changed g_warning by g_printerr
19418         because g_log has a 1024 characters limit (yeah, i got a big stack
19419         trace). Don't print exception name, that should be in ToString 
19420         returned string.
19421
19422 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19423
19424         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19425         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19426
19427 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19428
19429         * object.c:
19430         (mono_print_unhandled_exception): after previous commit, i realized
19431         that MS calls ToString on the exception. I changed this function to
19432         do that. This way we get stack_trace for free.
19433
19434 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19435
19436         * object.c:
19437         (mono_print_unhandled_exception): invoke Message property instead of
19438         getting 'message' field from Exception. Don't allocate memory for
19439         'trace' and 'message' if not needed.
19440
19441 2002-08-18  Dick Porter  <dick@ximian.com>
19442
19443         * unicode.c: Fix asserts to match Encoder.cs checks
19444
19445 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19446
19447         * marshal.c: fix unaligned store issue and a few wrong
19448         opcode argument types.
19449
19450 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19451
19452         * icall.c: added GetUninitializedObjectInternal internal call.
19453
19454 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19455
19456         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19457         to the right domain.
19458
19459 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19460
19461         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19462
19463         * class.c (class_compute_field_layout): set blittable to false for Strings
19464
19465         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19466
19467 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19468
19469         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19470         first chunk of code to create types at runtime. Code to
19471         handle ReflectedType/DeclaringType. Make reflection handles
19472         domain specific.
19473
19474 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19475
19476         * class.c: set correct name in arrays.
19477
19478 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19479
19480         * appdomain.c (mono_domain_transfer_object): make it work with
19481         valuetypes. bug fixes.
19482
19483 2002-08-12  Dick Porter  <dick@ximian.com>
19484
19485         * object.h: Rename some parameters to avoid c++ keywords (Patch
19486         from Joseph Wenninger <kde@jowenn.at>)
19487
19488 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19489
19490         * icall.c: added icall to implement Assembly.GetFile*.
19491
19492 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19493
19494         * reflection.h, reflection.c: code to embed managed resources.
19495
19496 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19497
19498         * class.c: move all the type size stuff into
19499         class_compute_field_layout().
19500
19501 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19502
19503         * class.c: ensure enums have always the correct instance size.
19504         * unicode.c: remove wrong assert.
19505
19506 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19507
19508         * assembly.c: fix mem corruption issue.
19509         * image.h, image.c: added mono_image_get_resource () to access
19510         managed resources.
19511         * icall.c: implemented Assembly.EntryPoint property and some
19512         Managed Resources related internalcalls.
19513
19514
19515 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19516
19517         * image.c, image.h: impemented mono_image_get_entry_point ().
19518         * appdomain.c: use mono_image_get_entry_point.
19519
19520 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19521
19522         * reflection.c: support the object type argument when loading
19523         custom attributes.
19524
19525 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19526
19527         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19528         String as return type.
19529
19530 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19531
19532         * reflection.c: fix encoding of named args for custom attrs to match
19533         the ms implementation. Read them back when instantiating custom
19534         attributes.
19535
19536 2002-08-02  Radek Doulik  <rodo@ximian.com>
19537
19538         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19539         by Dietmar as quick fix
19540         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19541         16 as stack size, used on more places as quick fix before Dietmar
19542         will fix it properly
19543
19544 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19545
19546         * object.h, object.c: added accessors for fields and properties.
19547
19548 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19549
19550         * class.c, class.h: made mono_class_get_field_from_name ()
19551         loop on parent types.
19552         Added mono_class_get_property_from_name ().
19553
19554 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19555
19556         * class.c, class.h: move the code to setup the type vtable in its own
19557         function so that it can be reused also for types created at runtime.
19558         Eliminate the "class" identifier from the header file.
19559         * reflection.c: setup the vtable for enums so that we can create
19560         objects for use in SetConstant ().
19561
19562 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19563
19564         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19565         instead of the delegate itself as this pointer (bug #28383)
19566
19567 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19568
19569         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19570         conversions.
19571
19572 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19573
19574         * loader.c: don't set the pinvoke bit on icalls.
19575
19576 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19577
19578         * debug-helpers.c (mono_method_full_name): only print a number to
19579         indicate wrapper type (so that the output is more readable in traces).
19580
19581 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19582
19583         * class.c (mono_class_init): include method override patch from Paolo
19584
19585 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19586
19587         * icall.c: fixed GetTypeCode().
19588
19589 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19590
19591         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19592         use real delegate invoke function to make it work with multicast
19593         delegates (fix bug# 28291).
19594
19595 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19596
19597         * object.c: load constant strings.
19598
19599 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19600
19601         * reflection.c: no magic numbers.
19602         * tabledefs.h: security action enum.
19603
19604 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19605
19606         * assembly.c: fix possible memory corruption.
19607
19608 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19609
19610         * reflection.h, reflection.c: added support for linking resources.
19611         * verify.c: check we have an updated corlib.
19612
19613 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19614
19615         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19616         string arrays.
19617         (mono_marshal_string_array): null terminate unmanaged string arrays.
19618         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19619
19620 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19621
19622         * icall.c: Type.GetType () can now return also types from the
19623         calling assembly.
19624
19625 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19626
19627         * loader.h, loader.c: stack walking support.
19628         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19629         GetCallingAssembly.
19630
19631 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19632
19633         * marshal.c: added optimisations for blittable types 
19634
19635         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19636         (mono_class_setup_mono_type): set blittable attribute for single
19637         and double.
19638
19639         * marshal.c (mono_string_utf8_to_builder): impl.
19640         (mono_string_builder_to_utf8): impl.
19641         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19642
19643 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19644
19645         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19646         (mono_marshal_get_managed_wrapper): impl. byref types
19647
19648 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19649
19650         * icall.c:
19651         (search_method): don't display debug message. 
19652
19653 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19654
19655         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19656
19657 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19658
19659         * appdomain.c: set the missing filename when throwing exception.
19660
19661 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19662
19663         * metadata.c (mono_type_size): code cleanup
19664         (mono_type_stack_size): removed some test code
19665
19666 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19667
19668         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19669         mono_get_exception_file_not_found now.
19670
19671         * exception.c (mono_exception_from_name_two_strings): New version
19672         that will call a constructor with two string arguments. 
19673         (mono_get_exception_file_not_found): New helper routine, used to
19674         report file-not-found errors.
19675
19676 2002-07-20  Dick Porter  <dick@ximian.com>
19677
19678         * process.h:
19679         * process.c: Pass file handles to CreateProcess
19680         
19681         * icall.c:
19682         * file-io.h:
19683         * file-io.c: Implemented CreatePipe
19684
19685 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19686
19687         * metadata.c (mono_get_param_info): set alignment for value types
19688
19689 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19690
19691         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19692         Constify mono_domain_assembly_open().
19693         * loader.c: handle null namespace in icalls.
19694
19695 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19696
19697         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19698         (emit_str_to_ptr_conv): marshal object as structs
19699
19700         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19701
19702         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19703
19704 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19705
19706         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19707         (mono_marshal_get_native_wrapper): we an now return value types
19708
19709 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19710
19711         * verify.c: more checks implemented.
19712
19713 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19714
19715         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19716         (fix bug #27695)
19717         (mono_marshal_get_native_wrapper): allow byref arguments
19718         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19719         impl. PtrToStringXXX methods
19720         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19721         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19722         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19723         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19724         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19725
19726 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19727
19728         * reflection.c: fix buglet in parsing an assembly name.
19729
19730 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19731
19732         * marshal.c (emit_ptr_to_str_conv): first impl.
19733
19734 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19735
19736         * object.c, class.h: cache the vtable in the class as suggested by
19737         vargaz@freemail.hu (Zoltan Varga).
19738
19739 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19740
19741         * class.h, loader.c: added mono_field_from_token().
19742         * verify.c: first cut of type checking code.
19743
19744 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19745
19746         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19747
19748 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19749
19750         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19751         (fix bug #27782)
19752         (mono_marshal_get_remoting_invoke): impl.
19753         (mono_delegate_begin_invoke): impl.
19754         (mono_mb_emit_save_args): impl.
19755         (mono_delegate_end_invoke): impl.
19756         (mono_marshal_get_delegate_begin_invoke):
19757         (mono_marshal_get_delegate_end_invoke):
19758         (mono_marshal_get_delegate_invoke): generate a special name for
19759         those methods (including the signature) and associate them whith
19760         the delegate class. 
19761
19762 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19763
19764         * reflection.[ch]: 
19765         (mono_reflection_type_from_name): now it has a MonoImage parameter
19766         which is used as the default image to search the type in. If the image
19767         is NULL or getting the type from it fails, it defaults to corlib.
19768
19769         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19770         new parameter.
19771
19772 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19773
19774         * reflection.c: update the parameter table index.
19775
19776 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19777
19778         * domain.c: don't include the mark byte in the string hash.
19779
19780 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19781
19782         * icall.cs: icall for Type.GetTypeCode ().
19783         * verify: a couple of fixes and disabled local initialization checks.
19784
19785 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19786
19787         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19788
19789         * debug-helpers.c (mono_method_full_name): print the type of the
19790         runtime wrapper
19791
19792         * metadata.c (mono_signature_hash): a hash function for signatures
19793         (mono_signature_hash): better hash algorithm
19794
19795         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19796
19797         * debug-helpers.c (mono_method_full_name): this can now generate
19798         method names with signatures
19799
19800         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19801         method dont have this pointers.
19802
19803 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19804
19805         * reflection.c: fixup typebuilder tokens.
19806         * image.c: fix buglet.
19807         * marshal.h: remove whitespace.
19808         * metadata.h, metadata.c: reinstate code that was removed.
19809         * verify.c: handle catch directives and fix another couple of bugs.
19810
19811 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19812
19813         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19814         (mono_marshal_get_native_wrapper): make it comp. with the old code
19815         (mono_marshal_get_native_wrapper): support boolean
19816         (mono_marshal_get_managed_wrapper): support more types
19817
19818 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19819
19820         * class.c (class_compute_field_layout): compute class->blittable attribute.
19821
19822 2002-07-09  Dick Porter  <dick@ximian.com>
19823
19824         * threads.c: Make the thread cleaning up cope with threads that
19825         call ExitThread()
19826
19827 2002-07-08  Radek Doulik  <rodo@ximian.com>
19828
19829         * reflection.c (method_encode_code): use non-translated values to
19830         compute finally_start, this fixes exception handling on ppc, yay!
19831
19832         * decimal.h (struct signscale): fix endianess
19833
19834 2002-07-07  Radek Doulik  <rodo@ximian.com>
19835
19836         * reflection.c: swap box_val and not val
19837
19838 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19839
19840         * reflection.c, reflection.h: handle full assembly info in type name.
19841         Handle Type arguments when loading custom attributes.
19842         * icall.c: updated to use new mono_reflection_type_from_name () method.
19843
19844 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19845
19846         * loader.c:
19847         (method_from_memberref): also print assembly name when method not found.
19848
19849 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19850
19851         * icall.c:
19852         (ves_icall_TypeGetProperties): fixed bug #27473. 
19853
19854 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19855
19856         * reflection.c: display image name and token when cannot find the
19857         .ctor for an attribute.
19858
19859 2002-07-05  Martin Baulig  <martin@gnome.org>
19860
19861         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19862
19863 2002-07-04  Dick Porter  <dick@ximian.com>
19864
19865         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19866         compile on mingw.  This will cause mingw builds to not wait for
19867         subthreads to terminate after the main thread does.  I've lodged a
19868         bug with the mingw developers for them to wrap OpenThread().
19869
19870 2002-07-03  Dick Porter  <dick@ximian.com>
19871
19872         * threads.c: Store thread IDs instead of handles, because
19873         GetCurrentThread() returns a pseudohandle and therefore stores
19874         useless values.  mono_thread_cleanup() continues checking the
19875         array of threads until it is empty, to cope with subthreads
19876         spawning new threads after the main thread has finished.
19877
19878         * profiler.h:
19879         * profiler.c:
19880         * profiler-private.h: Pass the thread ID to thread profiler
19881         functions, instead of a handle
19882
19883 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19884
19885         * verify.c: fixes to make it more usable.
19886         * pedump.c: added --verify code to verify IL code in an assembly.
19887
19888 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19889
19890         * reflection.c: turn errors into warnings to allow compiling corlib.
19891
19892 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19893
19894         * reflection.c: add special cases to compile corlib.
19895
19896 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19897
19898         * reflection.c: handle properties with only a set method.
19899
19900 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19901
19902         * opcodes.h: add enum with opcodes in opval order.
19903
19904 2002-07-01  Dick Porter  <dick@ximian.com>
19905         
19906         * object.h:
19907         * object.c (mono_runtime_run_main): Removed unneeded argument
19908
19909 2002-06-28  Martin Baulig  <martin@gnome.org>
19910
19911         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19912
19913 2002-06-27  Dick Porter  <dick@ximian.com>
19914
19915         * threads.c: Store the handle in both the parent thread and in the
19916         subthread, to minimise the time between starting a new thread and
19917         storing its ID.
19918
19919 2002-06-26  Dick Porter  <dick@ximian.com>
19920
19921         * appdomain.c (mono_runtime_cleanup): Close the socket library
19922         after all the threads have finished, not before
19923
19924 2002-06-26  Martin Baulig  <martin@gnome.org>
19925
19926         * debug-symfile.c (mono_debug_find_source_location): Added
19927         `guint32 *line_number' argument.  If it's not NULL, store the line number
19928         there and return the file name without the line number.
19929
19930 2002-06-25  Dick Porter  <dick@ximian.com>
19931
19932         * icall.c:
19933         * process.h:
19934         * process.c: Process forking and other support functions
19935
19936 2002-06-25  Dick Porter  <dick@ximian.com>
19937
19938         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19939         things dont happen when the image is closed.
19940         (mono_image_lookup_resource): Walk the resource section looking
19941         for a particular entry
19942
19943         * cil-coff.h: PE resource section decoding
19944
19945 2002-06-25  Dick Porter  <dick@ximian.com>
19946         
19947         * assembly.h:
19948         * assembly.c: 
19949         (mono_assembly_foreach): Accessor functions to walk the list of
19950         loaded assemblies
19951         (mono_assembly_set_main):
19952         (mono_assembly_get_main): Process methods need to know which
19953         assembly is the "main" one
19954
19955         * object.c (mono_runtime_run_main): Record the main assembly
19956
19957         * debug-helpers.c: Fix typo
19958
19959 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19960
19961         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19962         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19963
19964 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19965
19966         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19967
19968 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19969
19970         * image.c (do_mono_image_open): Initialize reference count,
19971         otherwise we leak the MonoImage.
19972
19973 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19974
19975         * reflection.c: small tweak to handle self-hosting.
19976
19977 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19978
19979         * reflection.c: fix type name parse code.
19980
19981 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19982
19983         * reflection.c: break out of the loop.
19984         * image.c: special case corlib.
19985
19986 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19987
19988         * reflection.c: add all the custom attrs at the end to ensure the
19989         ctors have been properly initialized when the attributes are defined
19990         in the current assembly.
19991
19992 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19993
19994         * reflection.c: handle correctly multiple-nested types.
19995
19996 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19997
19998         * row-indexes.h: fix typos.
19999         * reflection.c: adjust for typos and fix method_def_or_ref
20000         encoding in MethodImpl table.
20001
20002 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20003
20004         * reflection.c: fix entry point patching (thanks Serge!).
20005
20006 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
20007
20008         * verify.c: add check for System.Exception
20009
20010 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
20011
20012         * image.c, class.c: minifix for code just c&p'ed.
20013         * reflection.c: warning fix.
20014         * object.h, loader.h, domain.c: load also StringBuilder.
20015
20016 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
20017
20018         * marshal.h, marshal.c: some support code to handle complex marshaling.
20019
20020 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20021
20022         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
20023         Better signatures with vtable error dump.
20024
20025 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
20026
20027         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
20028
20029 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
20030
20031         * icall.c (ves_icall_Type_GetField): impl.
20032
20033 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20034
20035         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
20036         to retrieve a marshal description blob for a field or param.
20037
20038 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
20039
20040         * reflection.h, reflection.c: change order of nested type emission
20041         to avoid table corruption. The NestedTypes table is sorted.
20042         * icall.c: change order of GetConstructor results to workaround mcs bug.
20043
20044 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20045
20046         * reflection.h, reflection.c: handle field and param marshal
20047         information.
20048
20049 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20050
20051         * icall.c, marshal.c marshal.h: more Marshal class implementation.
20052
20053 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20054
20055         * reflection.c: fix call convention.
20056
20057 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20058
20059         * reflection.h, reflection.c: mono_image_get_memberref_token()
20060         takes a type instead of a class, now. Added
20061         mono_image_get_array_token() to create tokens for the special
20062         multi-dim array methods.
20063
20064 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20065
20066         * assembly.c: handle modules (no assembly table). Split
20067         loading references in its own function.
20068         * class.c: handle moduleref resolution scope.
20069         * image.c, image.h: cache module name in image.
20070
20071 2002-06-07  Martin Baulig  <martin@gnome.org>
20072
20073         * reflection.c (mono_image_get_type_info): Only add a class layout entry
20074         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
20075
20076 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20077
20078         * icall.c: more signature fixes that used uint instead of int.
20079
20080 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20081
20082         * reflection.c: fixed signature of field refs.
20083
20084 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20085
20086         * class.c, reflection.c: handle typerefs of nested types
20087         (both on read and when writing files).
20088
20089 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
20090
20091         * icall.c: fix method signatures that tried to workaround the previous
20092         typo, d'oh!
20093
20094 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20095
20096         * debug-helpers.c: fix typo.
20097
20098 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20099
20100         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
20101         rewrote the PE/COFF writing code (our programs are understood by the
20102         ms runtime, now).
20103
20104 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
20105
20106         * gc.c, gc.h, icall.c: weakreference support.
20107
20108 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
20109
20110         * Makefile.am, mono-config.c: use $(sysconfdir).
20111
20112 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20113
20114         * icall.c: changed default precision of Double.ToString() to 15.
20115         Fixed memory leak. Unified with Single.ToString.
20116
20117 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
20118
20119         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
20120
20121 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
20122
20123         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
20124         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
20125         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
20126         and myself.
20127
20128 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20129
20130         * debug-symfile.c, sysmath.c: yet more compilation fixes.
20131
20132 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20133
20134         * reflection.c, socket-io.c: more compilation fixes.
20135
20136 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20137
20138         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
20139         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
20140         unicode.c: warning and compiler compatibility fixes.
20141
20142 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20143
20144         * class.h, metadata.c: fixed warnings/compilation errors.
20145
20146 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
20147
20148         * Makefile.am, mono-config.c, mono-config.h: configuration file
20149         support routines.
20150         * loader.c, loader.h: make Dll mapping configurable at runtime in the
20151         config file. Export methods to insert and lookup mappings.
20152
20153 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
20154
20155         * reflection.c: handle types and boxed objects in custom attr
20156         constructors.
20157
20158 2002-05-30  Martin Baulig  <martin@gnome.org>
20159
20160         * debug-symfile.c
20161         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
20162
20163 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
20164
20165         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
20166         to lookup the implmap row for a P/Invoke method.
20167         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
20168         P/Invoke method from the runtime on an as needed basis.
20169
20170 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
20171
20172         * metadata.c (mono_metadata_parse_signature): impl.
20173
20174 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20175
20176         * class.c: handle .pack directive.
20177
20178 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
20179
20180         * object.c: initialize static fields with RVA data.
20181
20182 2002-05-25  Martin Baulig  <martin@gnome.org>
20183
20184         * debug-symfile.c
20185         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
20186
20187 2002-05-24  Martin Baulig  <martin@gnome.org>
20188
20189         * debug-symfile.c
20190         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
20191         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
20192         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
20193
20194 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20195
20196         * object.c: special case string ctros in invoke.
20197         * gc.c: silly whitespace changes.
20198
20199 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
20200
20201         * threadpool.[ch]: impl. a threadpool that can
20202         be used by mint and mono.
20203
20204 2002-05-22  Martin Baulig  <martin@gnome.org>
20205
20206         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
20207         The first argument is now a `MonoReflectionModuleBuilder *', the return
20208         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
20209         `methods' field to get the method builder.  The `token' argument is the
20210         unfixed token.
20211
20212         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
20213         invalid characters instead of g_assert_not_reached()ing.  This seems
20214         to be the behaviour of mscorlib.
20215
20216 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
20217
20218         * object.c (mono_runtime_invoke_array): applied patch from Rachel
20219         Hestilow to fix bug #25104
20220
20221 2002-05-21  Martin Baulig  <martin@gnome.org>
20222
20223         * debug-symfile.c (mono_debug_find_source_location): New function.
20224         Looks up an IL offset in the line number table and returns the source
20225         location as a string.
20226
20227 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20228
20229         * icall.c:
20230         (mono_double_ToStringImpl): changed %f by %g until we have something
20231         better.
20232
20233 2002-05-21  Nick Drochak  <ndrochak@gol.com>
20234
20235         * icall.c : Use different name for Math.Pow's icall.  Needed to check
20236         parameters first in C#.
20237
20238 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20239
20240         * icall.c, reflection.h: added icall to get info about an event.
20241
20242 2002-05-20  Radek Doulik  <rodo@ximian.com>
20243
20244         * object.c (mono_value_box): don't use memcpy for boxing on BIG
20245         endian
20246         (mono_value_box): don't use memcpy for small sizes on
20247         architectures with unaligned access
20248
20249 2002-05-20  Martin Baulig  <martin@gnome.org>
20250
20251         * reflection.c (mono_reflection_setup_internal_class): Don't crash
20252         if `tb->parent == NULL'.
20253         (mono_reflection_create_internal_class): New function.  This is
20254         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
20255         for enum types.
20256
20257         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
20258         New interncall.
20259
20260 2002-05-19  Martin Baulig  <martin@gnome.org>
20261
20262         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
20263         argument to get the length, don't default to the array length.
20264
20265 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
20266
20267         * assembly.c (mono_assembly_setrootdir): New function used to
20268         override the MONO_ASSEMBLIES directory.
20269
20270 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20271
20272         * icall.c: ValueType_GetHashCode() initialize local var.
20273
20274 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20275
20276         * reflection.c: sort custom attributes table.
20277
20278 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20279
20280         * reflection.c: support named args in custom attributes (write support).
20281
20282 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
20283
20284         * reflection.c: fix finally position calculation.
20285
20286 2002-05-15  Radek Doulik  <rodo@ximian.com>
20287
20288         * reflection.c: fixed endianess at many places
20289
20290         * icall.c (ves_icall_InitializeArray): comment out debug msg
20291
20292 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
20293
20294         * object.c (mono_unhandled_exception): new function to handle
20295         unhandled exceptions.
20296         (mono_unhandled_exception): call the UnhandledException event.
20297         (mono_runtime_delegate_invoke): impl.
20298
20299 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
20300
20301         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
20302         returns the RVA, not the direct pointer to the data. Handle the case
20303         when the class size is fixed.
20304
20305 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
20306
20307         * reflection.c: fix some endianess issues.
20308
20309 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
20310
20311         * object.c (mono_runtime_invoke): is now able to catch exceptions.
20312
20313         * threads.c (mono_thread_init): added a callback which is invoked
20314         at thread start.
20315
20316 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20317         
20318         * icall.c: make GetHashCode return non-negative values.
20319
20320 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
20321
20322         * object.c, icall.c, gc.c: revert to address-based hashcode.
20323
20324 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
20325
20326         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
20327
20328 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20329
20330         * icall.c, class.c: special case <Module>.
20331
20332 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
20333
20334         * icall.c: fix bug in GetNow().
20335
20336 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
20337
20338         * object.c (mono_runtime_class_init): make sure that we call all
20339         static class constructors.
20340
20341 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
20342
20343         * reflection.c: sort methodsemantics table.
20344
20345 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
20346
20347         * reflection.h, reflection.c: honour init locals setting.
20348
20349 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
20350
20351         * icall.c: copied Double ToStringImpl for Single ToStringImpl
20352
20353 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20354
20355         * reflection.c: support ContructorBuilders in attribute blob creation.
20356
20357 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20358
20359         * reflection.c: some changes to build a binary that can be run
20360         directly in windows.
20361
20362 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20363
20364         * loader.c: print a big message when an icall can't be found.
20365
20366 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20367
20368         * string-icalls.c: fix bug 24248.
20369
20370 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
20371
20372         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
20373         icall.c, reflection.h: separate assembly loading by pathname and by
20374         assembly name. Use the MONO_PATH env var to search for assemblies.
20375
20376 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20377
20378         * assembly.c, image.h: add some support for assemblies
20379         with multiple modules.
20380         * class.c, class.h: export mono_class_from_typeref().
20381         * loader.c: remove duplicated code and use mono_class_from_typeref(),
20382         instead.
20383
20384 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20385
20386         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
20387         documentation says (the ECMA one is correct).
20388
20389 2002-05-02  Dick Porter  <dick@ximian.com>
20390
20391         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
20392         Don't name the synchronisation mutex.
20393
20394 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
20395
20396         * rand.c
20397         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20398         Make the prototypes match.
20399         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20400         Same.
20401
20402         * icall.c
20403         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20404         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20405         all systems have tm.tm_zone, so use strftime() with %Z to print
20406         the timezone abreviation into a temp string.
20407
20408         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20409         rather than mono_array_addr() on a MonoString on Big Endian
20410         machines.
20411
20412 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20413
20414         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20415         fix bug 24041
20416
20417 2002-04-30  Dick Porter  <dick@ximian.com>
20418
20419         * socket-io.c: Cope with SOCKET being an integer rather than a
20420         pointer now.
20421
20422         * threads.c: Added Thread_free_internal, to deal with thread
20423         handle cleanup.  Moved calls to handle_store() and handle_remove()
20424         to start_wrapper(), so each can only be called once.  Allocate
20425         synchronisation blocks with GC_malloc(), and use GC finalisation
20426         to close the handles.
20427
20428         * icall.c: added System.Threading.Thread::Thread_free_internal
20429
20430 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20431
20432         * icall.c: support Environment.Exit, CommandLineArgs().
20433
20434 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20435
20436         * object.c, object.h: added mono_runtime_run_main () and
20437         mono_runtime_get_main_args () for use in System.Environment.
20438
20439 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20440
20441         * gc.c: fix thinko, enable actual finalization since the jit is now
20442         fixed.
20443
20444 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20445
20446         * gc.c, object.c: take into account that an object may be offset wrt the address
20447         returned by GC_malloc().
20448
20449 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20450
20451         * image.c: handle files without entries in the assembly table (modules).
20452
20453 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20454
20455         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20456         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20457         allowed to be null when it's System.Object class setup.
20458
20459 2002-04-27  Martin Baulig  <martin@gnome.org>
20460
20461         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20462         if `tb->parent == NULL' rather than crashing.
20463
20464 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20465
20466         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20467         calling acos() where asin() should have been called.
20468
20469 2002-04-26  Martin Baulig  <martin@gnome.org>
20470
20471         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20472         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20473         there's a subdirectory called `System', but we don't want to read that
20474         subdirectory as an assembly.
20475
20476 2002-04-25  Martin Baulig  <martin@gnome.org>
20477
20478         * debug-symfile.c: Reflect latest MonoString changes.
20479
20480 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20481
20482         * rand.c, rand.h: instance method icalls need to have an explicit
20483         this pointer as first argument in the C implementation.
20484
20485 2002-04-25  Nick Drochak <ndrochak@gol.com>
20486
20487         * icall.c: Fix typo in map for GetNonZeroBytes
20488
20489 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20490
20491         * string-icalls.c : String does now passes unit tests without any 
20492         errors, the following changes has been made:
20493         
20494         Implemented replace methods.
20495         Renaming of methods to (try) follow the standard.
20496         Fixed compare ordinal
20497         Made all memory allocated directly to function instead of via icall function.
20498         Small performance fix in is_in_array function
20499                         
20500  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20501
20502         c (mono_string_Internal_ctor_charp_int_int):
20503         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20504         sindex < 0, throw ArgumentOutOfRangeException instead of
20505         ArgumentNullException.
20506
20507         Added new check for length == 0, however
20508         I need to make it return String.Empty from the C code.
20509         
20510         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20511         that calculate the length for us here.
20512         
20513         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20514         mono_string_new_utf16 with mono_string_new, since value is utf8.
20515
20516 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20517
20518         * object.c: register the object for finalization if needed.
20519         Allocate one more char in the string for the terminating 0 char.
20520
20521 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20522
20523         * class.c, class.h, image.c: check if a type implemenst a destructor.
20524         Use the proper key for array class lookups.
20525         * icall.c: register the icalls in the System.GC class.
20526         * gc.c, gc.h: GC-related functions and icalls.
20527
20528 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20529
20530         * icall.c:
20531         * socket-io.c:
20532         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20533         changed a couple of free () by g_free ().
20534
20535         * decimal.c: one-liner in the comments for decimal2string ().
20536
20537 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20538
20539         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20540
20541 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20542
20543         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20544         * object.c (mono_runtime_invoke_array) : handle null in params
20545
20546 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20547
20548         * string-icalls.c: fixed bug in split (one off bug)
20549
20550 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20551
20552         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20553         * icalls.c: added String::Equals as internal method
20554
20555 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20556
20557         * threads.c: fixed bug in the double interlocked functions
20558
20559 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20560
20561         * threads.c: implemented all of the new interlocked icalls.
20562         * string-icalls.c: fix a bug in insert.
20563         * icalls.c: added the icalls for interlocked, removed old string functions.
20564         
20565 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20566
20567         * loader.c: fix off-by-one error when reading argument names.
20568
20569 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20570
20571         * profiler.c: win32 counter implementation (untested).
20572         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20573         (the latter needs testing and more complete impl. from win32 folks).
20574
20575 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20576
20577         * object.c: mono_array_new_full workaround mono_array_class_get
20578         problem.
20579
20580 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20581
20582         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20583         * object.h (mono_string_chars): Changed casting type.
20584
20585 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20586
20587         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20588                            method signatures to use gunichar2 instead of gint16.
20589
20590 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20591
20592         * object.h, object.c: domain-specific versions of mono_object_new and
20593         mono_array_new.
20594
20595 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20596
20597         * object.c: changed String layout
20598
20599         * string-icalls.c (mono_string_Internal_ctor_chara): added
20600         internal string constructors.
20601
20602 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20603
20604         * threads.c: pass 'this' to the thread start routine.
20605
20606 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20607
20608         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20609         InternalCompareStr don't call twice mono_string_cmp_char for the last
20610         character. Improved performance in mono_string_cmp_char.
20611
20612 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20613
20614         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20615         code into its own library: libmonoruntime.
20616
20617 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20618
20619         * object.h, object.c: changed array format so that szarrays do not
20620         require a bounds structure.
20621         * icall.c, appdomain.c: support for new szarray format.
20622
20623 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20624
20625         * metadata.c: compare also the retuns type when comparing signatures:
20626         we didn't do this as an optimization since really overloaded methods
20627         must differ also in the arguments, but this doesn't work with
20628         low-level IL code (or when using explicit conversion operators: see
20629         bug#23498 for an example).
20630
20631 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20632
20633         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20634
20635 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20636
20637         * icall.c: make MonoType::GetElementType its own icall.
20638
20639 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20640
20641         * icall.c: remove MonoMethod_get_Name().
20642         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20643         object.
20644
20645 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20646
20647         * string-icalls.c: optimized a few methods.
20648
20649 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20650
20651         * icall.c: added all new string internal calls
20652         * string-icalls.c: added, new string internal call implementation.
20653         * object.c: added mono_string_new_size for allocating a string a size
20654
20655 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20656
20657         * object.c (mono_object_isinst): use the same code as in the
20658         optimized x86 version.
20659
20660 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20661
20662         * profiler.c: TSC-based timer code (faster and more accurate).
20663         Not hooked up in configure, yet (set USE_X86TSC to 1).
20664
20665 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20666
20667         * profiler.c, profiler.h: track time spent compiling methods.
20668         * threads.c: track thread creation/destruction.
20669
20670 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20671
20672         * profiler.c, profiler.h, profiler-private.h: profiling interface
20673         and sample implementation. Moved here so that it can be used also by
20674         the jit.
20675
20676 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20677
20678         * reflection.c, reflection.h: keep types and other handles separate in
20679         the hash tables for referred tokens. Add guid for modules.
20680
20681 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20682
20683         * assembly.c: fix bugs found with valgrind.
20684         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20685
20686 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20687
20688         * threads: added icall support for getting current domain for
20689                    the thread.
20690  
20691 2002-04-13  Martin Baulig  <martin@gnome.org>
20692
20693         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20694         (MonoDebugVarInfo): Added `index' field for register based addresses.
20695         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20696         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20697         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20698         `MonoDebugVarInfo *this_var'.
20699
20700         * debug-symfile.c (relocate_variable): New static function to write
20701         a location description for a local variable or method parameter.
20702
20703 2002-04-12  Martin Baulig  <martin@gnome.org>
20704
20705         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20706         stack offset and begin/end scope address of a local variable.
20707         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20708         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20709         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20710
20711         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20712         Added new relocation types for start/end scope of a local variable.
20713
20714 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20715
20716         * object.h: add mono_object_domain() macro.
20717         * reflection.c: handle typespecs.
20718         * icall.c: MonoMethod::get_Name() implementation.
20719
20720 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20721
20722         * icall.c: String::GetHashCode() icall implementation.
20723
20724 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20725
20726         * icall.c: String::IndexOfAny icall.
20727         * object.c, object.h: make array->max_length more useful.
20728         Intrduced mono_object_class() and mono_string_length() macros.
20729
20730 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20731
20732         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20733         instead of g_unichar_isdigit.
20734
20735 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20736
20737         * icall.c: Implement a simple Double.ToString().
20738
20739 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20740
20741         * appdomain.h: only io-layer.h is supposed to be included.
20742         * icall.c: explicitly import environ. Fix warning.
20743
20744 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20745
20746         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20747                 return true even if it's not Daylight Savings time.
20748                 Only return false for the case where the function isn't
20749                 implemented for a plaform (read Windows).
20750
20751 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20752
20753         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20754         data with a mutex.
20755
20756 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20757
20758         * mempool.c (mono_mempool_alloc): only use g_malloc when
20759         absolutely necessary.
20760
20761 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20762
20763         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20764
20765         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20766         (mono_class_proxy_vtable): use domain mempool
20767
20768 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20769
20770         * appdomain.h, appdomain.c: split initialization that requires the
20771         execution engine support into mono_runtime_init().
20772
20773 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20774
20775         * class.c (mono_class_init): don't include vtable inside MonoClass
20776         to save some memory, gather some statistics.
20777         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20778
20779 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20780
20781         * icall.c: internalcall implementation for ValueType.Equals().
20782
20783 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20784
20785         * object.c (mono_message_init): moved 
20786         (mono_runtime_exec_main): new arch. independent impl.
20787         (mono_runtime_invoke_array): new method - like
20788         mono_runtime_invoke, but you can pass an array of objects.
20789         (mono_remoting_invoke): new arch. independent impl.
20790         (mono_message_invoke): new arch. independent impl.
20791         (mono_runtime_class_init): new arch. independent impl.
20792         (mono_runtime_object_init): new arch. independent impl.
20793
20794 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20795
20796         * metadata.c, object.c, reflection.c: documented the exported
20797         functions.
20798
20799 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20800
20801         * icall.c: simpler code to pass the assembly builder data to corlib.
20802         Implement GetNestedTypes() internalcall.
20803
20804 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20805
20806         * class.c: warn if a type can't be loaded.
20807
20808 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20809
20810         * image.h: typedef MonoImageOpenStatus
20811         * types.h: removed unused file
20812         
20813 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20814
20815         * icall.c: Enum_ToObject accepts enum value arguments.
20816
20817 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20818
20819         * class.c: move initialization of properties, events and nested
20820         classes, so that they happen for interfaces, too.
20821
20822 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20823
20824         * icall.c: cleanup some ugly casts in Array_SetValue*.
20825
20826 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20827
20828         * icall.c: the values array fro enums is of the correct type, now.
20829         Implement (correctly) getFullName instead of assQualifiedName for
20830         MonoType.
20831         * reflection.h, reflection.c: added mono_type_get_name ().
20832
20833 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20834
20835         * assembly.c, image.h: for each MonoImage, record from wich assembly
20836         it was loaded.
20837         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20838         Make Type.Assembly work.
20839
20840 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20841
20842         * debug-symfile.h: use char* instead of gpointer to avoid
20843         unnecessary casts.
20844
20845         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20846
20847         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20848         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20849
20850 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20851
20852         * icall.c (mono_message_init): impl. (code cleanup)
20853         (ves_icall_InternalExecute): impl. FieldGetter
20854
20855         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20856         defined we call all (non-static)methods through the vtable. 
20857
20858 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20859
20860         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20861         finalizer even though the memory is still referenced (and the chunk of
20862         memory is not freed).
20863
20864 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20865
20866         * assembly.c: fix brokeness.
20867
20868 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20869
20870         * class.c: kill some warnings. Check explicit interface method
20871         implementation also without considering the namespace.
20872         Load also literal strings in static class data.
20873
20874 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20875
20876         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20877         (default_assembly_name_resolver): Make the resolver take the
20878         "base" directory where the assembly was originally defined, so we
20879         can load DLLs that are in the same directory as the assembly that
20880         is being referenced.
20881
20882 2002-03-28  Dick Porter  <dick@ximian.com>
20883
20884         * file-io.h: 
20885         * file-io.c:
20886         * socket-io.c: 
20887         * unicode.h: 
20888         * unicode.c: Warning cleanups
20889
20890 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20891
20892         * object.h, reflection.h: use the correct type instead of MonoObject.
20893
20894 2002-03-28  Martin Baulig  <martin@gnome.org>
20895
20896         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20897         (mono_debug_update_symbol_file): Initialize classes if necessary.
20898
20899 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20900
20901         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20902         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20903
20904 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20905
20906         * assembly.h: fix function prototype.
20907         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20908         * mono-endian.h: use const cast.
20909
20910 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20911
20912         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20913
20914 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20915
20916         * loader.c: don't assert when a typeref can't be loaded, give
20917         a chance to the runtime to trow an exception instead.
20918         * loader.h: fix warning.
20919
20920 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20921
20922         * class.c (mono_class_proxy_vtable): added proxy support
20923
20924 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20925
20926         * icall.c: removed last of PAL calls, added System.Environment
20927         * file-io.h, file-io.c: MonoIO implementation
20928         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20929
20930 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20931
20932         * appdomain.c: do not use the byte marker in ldstr table lookup.
20933         * debug-helpers.c: allow two ':' to separate class and method name.
20934         * object.c: allocate arrays bounds with the GC, too.
20935         * verify: add a few more checks.
20936
20937 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20938
20939         * reflection.c: output also literal strings. Allocate parameter data
20940         with GC_malloc() (thanks, Martin, for catching this!).
20941
20942 2002-03-26  Martin Baulig  <martin@gnome.org>
20943
20944         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20945         include the `this' offset in the `param_offsets'.
20946
20947 2002-03-25  Martin Baulig  <martin@gnome.org>
20948
20949         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20950         mono_debug_get_class() function to get the classes. Added new
20951         relocation types for arrays and strings.
20952         (mono_debug_get_class): New static function to search in all
20953         referenced assemblies for a metadata token.
20954
20955         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20956
20957 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20958
20959         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20960         hold gc-allocated objects. Make the string heap a stream like the
20961         others. Removed duplicated code when writing stream info.
20962         Added asserts to catch possible buffer overflows. Set the sorted map
20963         for tables that need sorting. Added some documentation.
20964
20965 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20966
20967         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20968         for interned strings and vtables.
20969
20970 2002-03-24  Martin Baulig  <martin@gnome.org>
20971
20972         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20973         it in the array since it was created with g_slist_prepend().
20974
20975 2002-03-24  Martin Baulig  <martin@gnome.org>
20976
20977         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20978         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20979         (mono_debug_method_from_token): Renamed to
20980         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20981         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20982
20983         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20984         relocation types.
20985
20986         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20987
20988 2002-03-24  Martin Baulig  <martin@gnome.org>
20989
20990         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20991         (mono_debug_method_from_token): New func.
20992
20993         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20994         New interncall, calls mono_debug_local_type_from_signature().
20995         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20996         calls mono_debug_method_from_token().
20997
20998 2002-03-23  Martin Baulig  <martin@gnome.org>
20999
21000         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
21001         specifies the number of bytes to be converted, not the array size.
21002         Return the number of chars, not the number of bytes.
21003         (ves_icall_iconv_get_chars): The `byteCount' argument
21004         specifies the number of bytes to be converted, not the array size.
21005
21006 2002-03-23  Martin Baulig  <martin@gnome.org>
21007
21008         * reflection.h (MonoReflectionSigHelper): New type.
21009
21010         * reflection.c (mono_reflection_sighelper_get_signature_local),
21011         (mono_reflection_sighelper_get_signature_local): New functions.
21012
21013         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
21014         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
21015         interncalls.
21016
21017 2002-03-23  Martin Baulig  <martin@gnome.org>
21018
21019         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
21020         is_writeable is set.
21021         (mono_raw_buffer_update): New function to write the modified map
21022         back to disk.
21023
21024         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
21025
21026         * debug-symfile.c (mono_debug_update_symbol_file): Call
21027         mono_raw_buffer_update() when done writing.
21028
21029 2002-03-23  Martin Baulig  <martin@gnome.org>
21030
21031         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
21032
21033         * debug-symfile.c: Added support for arguments and local variables.
21034
21035 2002-03-23  Dick Porter  <dick@ximian.com>
21036
21037         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
21038         protected by ifdefs, hence breaking the w32 build.
21039
21040 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21041
21042         * object.c: implement is_interned() the right way.
21043
21044 2002-03-21  Martin Baulig  <martin@gnome.org>
21045
21046         * debug-symfile.[ch]: New files to handle debugging information
21047         files. There's also support to dynamically update these symbol
21048         files to include machine dependent information.
21049
21050 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
21051
21052         * threads.c (mono_thread_create): new function to create thread
21053         from C
21054
21055 2002-03-20  Martin Baulig  <martin@gnome.org>
21056
21057         * icall.c (ves_icall_InternalInvoke): Create a new object if the
21058         method is a constructor.
21059         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
21060         points to ves_icall_InternalInvoke().
21061
21062 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
21063
21064         * file-io.c: Flush shouldn't throw exceptions.
21065
21066 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
21067
21068         * file-io.c: FileStream flush support; FileSetLength now
21069         restores file pointer.
21070
21071 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21072
21073         * class.c: set image for pointer classes.
21074
21075 2002/03/19  Nick Drochak <ndrochak@gol.com>
21076
21077         * sysmath.c: Forgot one.
21078
21079 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
21080
21081         * sysmath.c: Avoid redefining existing names.
21082
21083 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
21084
21085         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
21086         handled by runtime as icall rather than dllimport from libm.so
21087         * file-io.c, file-io.h: fixed handle argument type.
21088
21089 2002-03-18  Dick Porter  <dick@ximian.com>
21090
21091         * reflection.c (mono_image_get_type_info): rename interface to
21092         iface, because of "#define interface struct" on windows.
21093
21094 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
21095
21096         * class.c, class.h: rename and export mono_ptr_class_get().
21097         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
21098         * reflection.c, reflection.h, icall.c: better/saner type name
21099         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
21100         method signatures.
21101
21102 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
21103
21104         * class.c (mono_class_init): removed hardcoded GHC_SLOT
21105
21106         * icall.c (ves_icall_InternalInvoke): impl.
21107
21108 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21109
21110         * reflection.c: output the interface map table, too.
21111
21112 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21113
21114         * class.c (class_compute_field_layout): separate computation of 
21115         static field layout
21116
21117 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
21118
21119         * icall.c: added System.Buffer support.
21120         * file-io.c: moved file icalls from PAL to FileStream.
21121
21122 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
21123
21124         * icall.c (ves_icall_System_Object_GetHashCode): impl.
21125
21126 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
21127
21128         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
21129
21130 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21131
21132         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
21133
21134 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21135
21136         * debug-helpers.{c,h}: moved here from monograph some useful functions
21137         to locate a method by name/signature in a class or image. Included
21138         also a small and flexible IL disassembler.
21139
21140 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21141
21142         * reflection.c: fixup tokens in methods with small header size, too.
21143
21144 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
21145
21146         * object.c (mono_string_to_utf8): remove assert(!error), instead
21147         print a warning. 
21148
21149 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
21150
21151         * icall.c: update to the new mono_Array_class_get interface.
21152
21153 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21154
21155         * appdomain.c, object.c: Boehm-GC enable.
21156         * icall.c: make get_data_chunk() support split data requests.
21157         Ensure a class is initialized in more cases. Return only the first
21158         property found in GetProperties() or the compiler gets confused. 
21159         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
21160         * reflection.h, reflection.c: add fixup mechanism for field and method
21161         tokens. Initialize assembly->typeref in a single place. Output
21162         properties after events. Support custom attributes for events, too.
21163         Typo fix for paramter custom attrs.
21164
21165 2002-03-07  Martin Baulig  <martin@gnome.org>
21166
21167         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
21168
21169 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
21170
21171         * class.c (mono_array_class_get): fix. for multi. dim. arrays
21172
21173 2002-03-06  Martin Baulig  <martin@gnome.org>
21174
21175         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
21176         non-zero lower bounds. See testcases #F10-#F13.
21177
21178 2002-03-05  Martin Baulig  <martin@gnome.org>
21179
21180         * exception.c (mono_get_exception_argument_out_of_range): New exception.
21181
21182         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
21183         ves_icall_System_Array_GetValue(), only calculate the absolute array position
21184         here.
21185         (ves_icall_System_Array_SetValue): Likewise.
21186         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
21187         as argument and does the actual work. This function is used when copying a
21188         multi-dimensional array.
21189         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
21190         now do all the widening conversions of value types.
21191         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
21192
21193 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21194
21195         * class.c: remove some magic numbers and use the smbolic names,
21196         instead. Added init_events() to load event info at class init time.
21197         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
21198         and mono_metadata_methods_from_event().
21199         * reflection.h, reflection.c: added support for writing out the evnets
21200         related information.
21201
21202 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
21203
21204         * reflection.h, icall.c: use a different method (GetInterfaces)
21205         to gather interface info and add isbyref, isprimitive and
21206         ispointer to the ves_icall_get_type_info() return value.
21207
21208 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
21209
21210         * class.h: stared adding support for events.
21211         * icall.c: split find_members implementation. Added debug icall to get
21212         the address of an object.
21213         * reflection.c: handle TypeBuilders in mono_type_get_object().
21214
21215 2002-03-01  Martin Baulig  <martin@gnome.org>
21216
21217         * icall.c (ves_icall_System_Array_GetLength): This must throw an
21218         ArgumentOutOfRangeException(), not an ArgumentException().
21219         (ves_icall_System_Array_GetLowerBound): Likewise.
21220         (ves_icall_System_Array_GetValue): Improved argument checking.
21221         (ves_icall_System_Array_SetValue): Improved argument checking.
21222
21223 2002-03-01  Martin Baulig  <martin@gnome.org>
21224
21225         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
21226         called with invalid arguments rather than just dying with g_assert().
21227         (ves_icall_System_Array_SetValue): Likewise.
21228         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
21229         raise a NotImplementedException instead.
21230         (ves_icall_System_Array_GetLength): Added argument checking.
21231         (ves_icall_System_Array_GetLowerBound): Added argument checking.
21232
21233 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
21234
21235         * object.h (mono_assert): new macros mono_assert and
21236         mono_assert_not_reached
21237
21238 2002-02-28  Martin Baulig  <martin@gnome.org>
21239
21240         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
21241         and "System::String::IsInterned" to "System::String::_IsInterned".
21242
21243 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
21244
21245         * icall.c: remove hacks for typebuilder. Added icall to create a
21246         modified type from a tybebuilder.
21247         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
21248         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
21249         to create a backing MonoClass for a TypeBuilder.
21250
21251 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21252
21253         * class.c, class.h: more refactoring of class init.
21254         Export mono_class_setup_mono_type() and mono_class_setup_parent().
21255
21256 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
21257
21258         * marshal.c, marshal.h: start of marshaling interface.
21259
21260 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21261
21262         * icall.c: fix order in assembly qualified name icall.
21263
21264 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21265
21266         * class.c: do not free str, since we store it in the hash table.
21267         * reflection.h: add label field to MonoILExceptionInfo.
21268         * reflection.c: handle references to more than one assembly. Handle
21269         case when there isn't a module created in the assembly.
21270
21271 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
21272
21273         * class.c: Fix typo. Start refactoring of class init code.
21274
21275 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
21276
21277         * appdomain.c: exit with 1 on error.
21278         * class.c: we already have the name in MonoClassField.
21279         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
21280         MonoStreamHeader instead of an offset of image->raw_metadata.
21281
21282 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
21283
21284         * appdomain.c (mono_init): Be even more descriptive about the error.
21285
21286 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
21287
21288         * appdomain.c: give the user an informative message when corlib can't
21289         be loaded.
21290
21291 2002-02-26  Martin Baulig  <martin@gnome.org>
21292
21293         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
21294         New icall to get the time zone data.
21295
21296 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21297
21298         * reflection.c: set virtual and raw size of section correctly.
21299         * threads.c: transfer domain information to newly created threads.
21300
21301 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21302
21303         * class.c: when instancing a class in a domain, load the default
21304         vaules for static fields from the constant table. Fix System.Enum to
21305         not be an enum.
21306         * icall.c: implement Object::GetType() internalcall. Implemented
21307         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
21308         Fixed checking of binding flags in find_members().
21309         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
21310         * reflection.c: handle enumerations when writing to the constant
21311         table. Use a different object cache for types.
21312
21313
21314 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
21315
21316         * object.c (mono_object_isinst): fix for arrays
21317
21318         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
21319
21320 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21321
21322         * object.c: don't use mprotect ()  and fix intern pool hash table
21323         lookup for big endian systems.
21324
21325 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21326
21327         * icall.c: change type_is_subtype_of () signature.
21328
21329 2002-02-21  Mark Crichton  <crichton@gimp.org>
21330
21331         * rand.c, rand.h: Added random number generator for
21332         System.Security.Cryptography classes.
21333
21334         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
21335
21336         * icall.c: Added System.Security.Cryptography calls.
21337
21338 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21339
21340         * class.c, icall.c, metadata.c: better support for pointer types.
21341         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
21342         * reflection.c: Add support for getting custom attrs for properties
21343         and simplify some code.
21344
21345 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
21346
21347         * icall.c: change getToken () and add custom attribute GetBlob()helper
21348         method.
21349         * reflection.h: add custom attrs array to the reflection builder structures.
21350         * reflection.c: encode and emit custom attributes for all the relevant
21351         reflection objects. Cache fieldref and methodref tokens. Change
21352         mono_image_create_token() interface to take a MonoDynamicAssembly.
21353         More complete custom attributes decoder. Load custom attributes for
21354         Assembly, Field, Method and Constructor objects, too. Make the
21355         returned array an Attribute[] one, not object[]. Added
21356         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
21357         custom attribute constructor.
21358
21359 2002-02-20  Dick Porter  <dick@ximian.com>
21360
21361         * icall.c:
21362         * rawbuffer.c:
21363         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
21364         problem code out for now).
21365
21366 2002-02-19  Radek Doulik  <rodo@ximian.com>
21367
21368         * object.c (mono_ldstr): use hash table to avoid multiple swapping
21369
21370 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
21371
21372         * icall.c: register the GetCustomAttributes method.
21373         * object.c, object.h: add mono_string_new_len ().
21374         * reflection.h, reflection.c: added mono_runtime_invoke(),
21375         mono_install_runtime_invoke(). Added
21376         mono_reflection_get_custom_attrs () to load custom attributes and
21377         create the attribute objects.
21378
21379 2002-02-19  Dick Porter  <dick@ximian.com>
21380         * threads-dummy-types.c:
21381         * threads-dummy-types.h:
21382         * threads-dummy.c:
21383         * threads-dummy.h:
21384         * threads-pthread-types.c:
21385         * threads-pthread-types.h:
21386         * threads-pthread.c:
21387         * threads-pthread.h:  Deleted obsolete files
21388
21389 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
21390
21391         * class.c (mono_class_vtable): runtime init the class when we
21392         allocate static class data.
21393
21394         * icall.c (ves_icall_System_Array_SetValue): check for null values.
21395
21396         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21397         and String - but we will need generic marshalling support in the
21398         future. 
21399         (mono_init): set the domain name in a ms compatible way
21400
21401         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21402         String[].
21403
21404 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21405
21406         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21407         for sizes
21408
21409         * appdomain.c (mono_domain_unload): impl.
21410
21411 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21412
21413         * appdomain.c, object.c: fix intern pool implementation.
21414         * class.c: fix alignment code.
21415
21416 2002-02-16  Radek Doulik  <rodo@ximian.com>
21417
21418         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21419         and s2 > s1, just copy lower bytes to be compatible with little
21420         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21421         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21422
21423         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21424         force big_endian to be 1 for big endian machines 
21425         (ves_icall_iconv_new_decoder): ditto
21426
21427 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21428
21429         * socket-io.c (convert_sockopt_level_and_name): If the system
21430         doesn't define SOL_IP or SOL_TCP, get them by hand using
21431         getprotobyname() and caching the values (because this could be a
21432         slow operation).
21433         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21434         Use the appropriate struct when the system does support it. Ie,
21435         not all systems have struct ip_mreqn so use struct ip_mreq when
21436         appropriate.
21437
21438 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21439
21440         * reflection.c: handle finally clauses.
21441
21442 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21443
21444         * socket-io.c: use g_snprintf() instead of snprintf.
21445
21446 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21447
21448         * reflection.c (mono_param_get_objects): Cast second argument to
21449         mono_method_get_param_names to a const char** to silence the
21450         compiler warning.
21451
21452         * appdomain.c (mono_domain_assembly_open): Put parens around the
21453         truth statement in the for-loop.
21454
21455         * unicode.c (iconv_convert): Got rid of a compiler warning about
21456         int i being unused when the system has a new iconv.
21457         (iconv_get_length): Same.
21458
21459         * image.c (load_class_names): Cast the second argument to
21460         g_hash_table_insert() to char* to hush compiler warnings about the
21461         arg being a const.
21462         (mono_image_open): Same here.
21463
21464         * socket-io.c: Don't conditionally include sys/filio.h or
21465         sys/sockio.h here anymore since we now get them from
21466         io-layer/io-layer.h
21467         (inet_pton): If the system doesn't support inet_aton, implement
21468         using inet_addr and also #define INADDR_NONE if it isn't defined
21469         by the system.
21470
21471 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21472
21473         * metadata.c, metadata.h: added function to get packing and size info
21474         of a typedef.
21475         * reflection.h, reflection.c: handle field RVA data. Save info about
21476         the table layout if needed. Assign typedef indexes to all the types
21477         before dumping the info about them to avoid forward reference problems.
21478
21479 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21480
21481         * socket-io.c (convert_sockopt_level_and_name): ifdef
21482         SO_ACCEPTCONN because it is not defined on my system (old debian)
21483
21484 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21485
21486         * opcode.c: use stddef.h to get NULL.
21487
21488 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21489
21490         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21491         for FIONBIO, FIONREAD and SIOCATMARK.
21492         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21493         define INADDR_NONE and besides, inet_addr() is deprecated and
21494         should not be used. Use inet_pton() instead - it also has the
21495         added bonus that it can easily handle IPv6 addresses as well.
21496         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21497
21498 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21499
21500         * decimal.c: remove _MSC_VER conditional.
21501
21502 2002-02-13  Dick Porter  <dick@ximian.com>
21503
21504         * socket-io.c: 
21505         * icall.c: Internal calls for Blocking, Select, Shutdown,
21506         GetSocketOption and SetSocketOption
21507
21508 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21509
21510         * assembly.cs: better resolver: use it instead of some kludgy
21511         code.
21512
21513 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21514
21515         * reflection.c: the best way to speed-up the compiler is to avoid
21516         infinite loops.
21517
21518 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21519
21520         * class.c (mono_class_vtable): changed the object layout
21521         (obj->vtable->class). 
21522         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21523
21524 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21525
21526         * assembly.c: look for assemblies in the assembly dir, too.
21527
21528 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21529
21530         * class.c: fix thinko in mono_class_from_type().
21531
21532 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21533
21534         * exception.h, exception.c: added TypeLoadException.
21535         * object.h, object.c: added mono_array_clone ().
21536         * icall.c: handle throwOnError in AssemblyGetType().
21537         Added Array.Clone().
21538         * opcode.h, opcode.c: use a single value for the opcode val.
21539         Compile fix for non-gcc compilers.
21540
21541 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21542
21543         * opcodes.c, opcodes.h: export interesting info about opcodes.
21544
21545 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21546
21547         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21548         icalls. 
21549
21550         * class.c (class_compute_field_layout): set element_class for enums
21551         (mono_class_create_from_typedef): set element_class for normal classes
21552
21553         * icall.c (ves_icall_System_Enum_get_value): impl.
21554
21555         * class.c (mono_class_create_from_typedef): do not set valuetype
21556         flag for System.ValueType and System.Enum
21557
21558 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21559
21560         * unicode.c (iconv_convert): fix big endian problem.
21561
21562 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21563
21564         * class.c: add asserts if we are ever going to scribble over memory.
21565         * socket-io.c: not all systems have AF_IRDA defined.
21566
21567 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21568
21569         * class.c (class_compute_field_layout): do not consider static
21570         fields to compute alignment
21571
21572 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21573
21574         * appdomain.c (mono_appdomain_get): impl.
21575         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21576
21577 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21578
21579         * icall.c: ignore "file://" prefix when loading an assembly.
21580
21581 2002-01-23  Dick Porter  <dick@ximian.com>
21582
21583         * socket-io.c:
21584         * icall.c:
21585         * Makefile.am: Added socket support
21586
21587 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21588
21589         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21590         code back.  This should return the assemblies that are loaded by
21591         the runtime on behalf of an application domain. 
21592
21593         The current implementation is still broken, it just returns every
21594         assembly loaded, but until we get real applications domain this
21595         will do.
21596
21597 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21598
21599         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21600         AppDomain object.
21601
21602 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21603
21604         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21605         the mono_class_from_name lookup.
21606         (ves_icall_get_parameter_info): ditto.
21607         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21608         method.
21609         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21610
21611 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21612
21613         * class.c: load also nested classes on class init.
21614         System.ValueType instance methods gets passed boxed
21615         values, unless methods in derived classed that get a pointer to the
21616         data.
21617         * icall.c: use better name parsing code in GetType().
21618         * image.c, image.h: add mono_image_loaded ().
21619         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21620         * reflection.c, reflection.h: added mono_reflection_parse_type().
21621
21622 2002-01-22  Veronica De Santis <veron78@interfree.it>
21623
21624         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21625         * threads.c : Added the implementation of internal calls for events
21626         * threads.h : Added prototypes of internal calls for events
21627         
21628 2002-01-21  Radek Doulik  <rodo@ximian.com>
21629
21630         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21631
21632 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21633
21634         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21635         (mono_class_value_size): use min_align
21636
21637 2002-01-20  Dick Porter  <dick@ximian.com>
21638
21639         * threads.h:
21640         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21641         so it compiles on w32.
21642
21643 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21644
21645         * metadata.c (mono_type_stack_size): impl.
21646
21647         * class.c (mono_class_get_field): impl. memberref token
21648
21649 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21650
21651         * icall.h : Added the internal calls mapping for CreateMutex_internal
21652                     and ReleaseMutex_internal.
21653         * threads.h : Added the prototype of mutexes internal calls.
21654         * threads.c : Added the implementations of mutexes internal calls.
21655
21656 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21657
21658         * metaparse.h: removed unused file.
21659         * reflection.c, reflection.h: added stream_data_align () function 
21660         to align data in streams and keep stream aligned. Add support for
21661         exception support in method headers.
21662
21663 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21664
21665         * unicode.c: make iconv_convert () return the number of bytess written
21666         in the output buffer.
21667
21668 2002-01-15  Dick Porter  <dick@ximian.com>
21669         * threads.c: Make the runtime's idea of infinite timeouts coincide
21670         with the class library's
21671
21672         Fix a particularly egregious bug in mono_thread_cleanup(). That
21673         code was so utterly bogus it must have been written on a Monday.
21674
21675 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21676
21677         * reflection.h: add subtypes field to TypeBuilder.
21678         * reflection.c: encode constants for literal fields.
21679         Handle subtypes. Fix user string token (and add a zero byte)
21680         at the end.
21681         
21682 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21683
21684         * class.c (mono_class_init): bug fix: assign slot numbers for
21685         abstract methods.
21686
21687 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21688
21689         * reflection.c: don't try to output a code RVA for abstract methods.
21690         Small fixes for method header format. Output parameter info to the
21691         ParamDef table. Save method overriding info to MethodImpl table.
21692         Fix property support. Allow typedef.extends to be a type in the
21693         building assembly.
21694         * verify.c: fix off-by-one error.
21695
21696 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21697
21698         * class.c: fix mono_class_from_mono_type () for szarray types.
21699         Remove unused cache check in mono_class_from_type_spec().
21700         * icall.c: *type_from_name () functions handle simple arrays and byref.
21701         * reflection.c: handle byref and szarray types. Handle methods without
21702         body (gets P/Invoke compilation working). Handle types and fields in
21703         get_token ().
21704         * reflection.h: add rank to MonoTypeInfo.
21705
21706 2002-01-10  Dick Porter  <dick@ximian.com>
21707
21708         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21709         internal calls
21710
21711 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21712
21713         * icall.c: initialize class in type_from_handle ().
21714         Loop also in parent classes for get_method ().
21715         * reflection.c: properly encode class and valuetype types.
21716         Start on encoding TypeBuilder types. Handle fieldrefs.
21717         Use correct length when registering a user string.
21718         Handle ConstructorBuilder and MonoMethod in get_token ().
21719         Make mono_type_get_object () aware of cached types.
21720         * object.c: back out change to mono_string_new ().
21721
21722 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21723         * object.c: mono_string_new should return a NULL when the string 
21724         passed in is NULL -- not try to deference it.
21725         
21726 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21727
21728         * icall.c: hack to make IsSubType work for TypeBuilders.
21729         * reflection.c: emit constructors before methods.
21730         Retrieve param names in mono_param_get_objects().
21731
21732 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21733
21734         * Makefile.am: fix list of headers and sources so automake 1.5
21735         doesn't complain. Removed \# at end of list.
21736
21737 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21738
21739         * reflection.c: get token for a method ref. Set return type of
21740         constructor to void.
21741         * loader.c: debug message.
21742         * class.c: typo fix.
21743
21744 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21745
21746         * icall.c: fix array init with rank > 1. FindMembers
21747         loops in parent class as well.
21748         * image.c: do not insert nested types in name cache.
21749         * reflection.c: warning fix.
21750         * reflection.h: add override method (for interface impl).
21751
21752 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21753
21754         * metadata.c: fix customattr decoding.
21755
21756 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21757
21758         * rawbuffer.cs: Added native Win32 implementation, avoids using
21759         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21760
21761 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21762
21763         * class.c: make the low-level routines handle the cache.
21764
21765 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21766
21767         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21768
21769 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21770
21771         * class.c: fix mono_array_element_size() for objects.
21772         * class.h, class.c: add properties to MonoClass and load them
21773         at init time.
21774         * icall.c: check with isinst() when assigning a value to an array
21775         instead of requiring the classes to match exactly.
21776         Implemented icall for System.Type::GetType().
21777         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21778         enums. Handle bindingflags when looking for methods and fields.
21779         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21780         and mono_metadata_methods_from_property().
21781         * reflection.h, reflection.c: added structures for propreties,
21782         parameters and enums. Implemented mono_property_get_object() and
21783         mono_param_get_objects().
21784
21785 2001-12-18  Dick Porter  <dick@ximian.com>
21786
21787         * file-io.c: Use mono_string_to_utf16() instead of
21788         mono_string_chars()
21789
21790         * object.c: Added mono_string_to_utf16(), which copies the non
21791         NULL-terminated MonoString into a new double-null-terminated
21792         buffer.
21793
21794 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21795
21796         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21797
21798 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21799
21800         * file-io.c: raise exceptions if handle is invalid.
21801
21802 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21803
21804         * assembly.c: yet another check for mscorlib.
21805         * class.c, class.h: load nesting info for classes.
21806         * icall.c: many new functions to support the Reflection classes.
21807         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21808         * reflection.h, reflection.c: mono_image_create_token(),
21809         mono_assembly_get_object(), mono_type_get_object(),
21810         mono_method_get_object(), mono_field_get_object(): methods to return
21811         objects that parallel the C representation of assemblies, types,
21812         methods, fields.
21813
21814 2001-12-11  Dick Porter  <dick@ximian.com>
21815
21816         * icall.c:
21817         * file-io.c: Internal calls for file IO.
21818
21819 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21820
21821         * tabledefs.h: missing FileAttributes.
21822         * verify.h, verify.c: use is_valid_string () to simplify and check for
21823         valid strings more correctly. Fix warnings and speeling.
21824         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21825         Check code: branches, maxstack, method calls.
21826
21827 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21828
21829         * object.c (mono_object_allocate): removed static, so that the jit
21830         can allocate value types.
21831
21832         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21833
21834 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21835
21836         * class.c: init enum types right away and register the
21837         token->MonoClass map in mono_class_create_from_typedef ().
21838         * verify.h, verify.c: first cut of the verifier.
21839         * pedump.c: add --verify switch to verify metadata tables.
21840         * tabledefs.h: add some missing enums.
21841
21842 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21843
21844         * class.c (mono_install_runtime_class_init): impl.
21845         (mono_class_init): renamed mono_class_metadata_init to
21846         mono_class_init, also removed the metadata_inited flag
21847
21848         * object.c (mono_object_isinst): use faster algorithm
21849
21850 2001-11-30  Radek Doulik  <rodo@ximian.com>
21851
21852         * mono-endian.h: reverted last change
21853         added function prototypes
21854
21855         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21856         add mono-endian.c back
21857
21858         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21859         for unaligned access, I've mistaked it with endianess. I am
21860         sorry.
21861         (mono_read16): fix reverted endianess
21862         (mono_read64): ditto
21863         (mono_read32): ditto
21864
21865 2001-11-30  Dick Porter  <dick@ximian.com>
21866
21867         * exception.c: Implement mono_exception_from_name()
21868
21869 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21870
21871         * metadata.h, metadata.c: remove params_size and locals_size and their
21872         calculation from the metadata code: they are only usefult to the
21873         interp.
21874
21875 2001-11-29  Radek Doulik  <rodo@ximian.com>
21876
21877         * object.c (mono_ldstr): swap bytes here, it's probably not the
21878         best place, but works for me now, I'll redo it once I know mono
21879         better, also note that I add PROT_WRITE and don't reset back, also
21880         note that it's only affects big endians, so x86 should be OK
21881
21882         * mono-endian.h (read16): use just glib macros for both endians
21883
21884         * mono-endian.c: removed as glib macros are used in in
21885         mono-endian.h so we don't need to care about endianess for read
21886         macros as glib does that for us already
21887
21888 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21889
21890         * class.h, class.h: take minimum alignment into consideration so
21891         that the fields of a class remain aligned also when in an array.
21892
21893 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21894
21895         * loader.h, loader.c: add mono_method_get_param_names().
21896         * class.c: 0-init class fields.
21897
21898 2001-11-26  Dick Porter  <dick@ximian.com>
21899
21900         * icall.c:
21901         * threads-types.h:
21902         * threads.c: New file that handles System.Threading on all platforms
21903
21904         * object.c: 
21905         * object.h: Remove the synchronisation struct from MonoObject,
21906         replace it with a pointer that gets initialised on demand
21907
21908         * Makefile.am: Replace all the system-specific threading code with
21909         a single file that uses the new wrapper library
21910
21911 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21912
21913         * class.c, class.h: add mono_install_trampoline() so that the runtime
21914         can register a function to create a trampoline: removes the ugly
21915         requirement that a runtime needed to export arch_create_jit_trampoline.
21916         * object.h, object.c: added mono_install_handler() so that the runtime
21917         can install an handler for exceptions generated in C code (with
21918         mono_raise_exception()). Added C struct for System.Delegate.
21919         * pedump.c: removed arch_create_jit_trampoline.
21920         * reflection.c: some cleanups to allow registering user strings and
21921         later getting a token for methodrefs and fieldrefs before the assembly
21922         is built.
21923         * row-indexes.h: updates and fixes from the new ECMA specs.
21924
21925 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21926
21927         * class.h, class.c: add enum_basetype field to MonoClass.
21928         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21929         to get index in the constant table reated to a field, param or
21930         property.
21931         * reflection.h, reflection.c: handle constructors. Set public-key and
21932         version number of the built assembly to 0.
21933         * row-indexes.h: update from new ECMA spec.
21934
21935 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21936
21937         * class.h, class.c: add a max_interface_id to MonoClass.
21938         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21939         since it's used to do that. Added mono_type_type_from_obj().
21940         Make GetType() return NULL instead of segfaulting if the type was not
21941         found. Handle simple arrays in assQualifiedName.
21942         * object.h: add a struct to represent an Exception.
21943         * reflection.c: output call convention in method signature.
21944         Add code to support P/Invoke methods and fixed offsets for fields.
21945
21946 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21947
21948         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21949         the value.
21950         * icall.c: use mono_array_addr instead of array->vector: fixes the
21951         reflection image writing.
21952         * reflection.c: init call convention byte to 0 in method signature.
21953         Encode the property signature. Don't output property-related methods
21954         twice. Really process the properties for a type (don't cast a field to
21955         a property, my mom always told me that).
21956         Fix 64 bit issues in pointer alignment in a different and more
21957         readable way.
21958
21959 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21960
21961         * loader.h: Removed type class from MonoDefaults, added monotype
21962
21963         * loader.c: Loaded MonoType, removed loading of Type
21964
21965         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21966         and fills in System.Type._impl with a RuntimeTypeHandle rather
21967         than the actual MonoClass *
21968
21969         (ves_icall_type_from_handle): change from type_class to
21970         monotype_class
21971
21972         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21973         implemented
21974
21975         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21976         implemented
21977
21978         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21979
21980         (ves_icall_System_Reflection_Assembly_GetType): implemented
21981
21982         (ves_icall_System_MonoType_assQualifiedName): implemented
21983
21984         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21985
21986 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21987
21988         * assembly.c (mono_assembly_open): Implement a cache for the
21989         assemblies. 
21990
21991         (mono_assembly_close): only destroy the assembly when the last
21992         reference is gone.
21993         
21994 2001-11-09  Dick Porter  <dick@ximian.com>
21995
21996         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21997
21998 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21999
22000         * class.c (mono_class_metadata_init): bug fix: compute the right slot
22001
22002 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
22003
22004         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
22005         from Martin Weindel.
22006         * object.h: add mono_string_chars ().
22007
22008 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
22009
22010         * reflection.c (build_compressed_metadata): Eliminates warnings
22011         and uses 64-bit clean code.
22012
22013         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
22014         (mono_type_equal): Change signature to eliminate warnings.
22015
22016 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
22017
22018         * icall.c, loader.c: remove the internalcall array constructors.
22019         Changes to match the new MonoArray structure.
22020         * object.h, object.c: an array object doesn't allocate an extra
22021         vector. Add mono_array_new_full () to create jagged arrays easily.
22022
22023 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
22024
22025         * metadata.h, metadata.c: add mono_metadata_field_info () to
22026         retreive all the info about a field from vairous tables.
22027         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
22028         * class.h, class.c: augment MonoClassField with more info.
22029         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
22030         policy and load a field's RVA if needed.
22031
22032 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
22033
22034         * class.c (mono_class_metadata_init): create a trampoline for all
22035         virtual functions instead of actually compiling them.
22036
22037 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
22038
22039         * class.h, class.c: include name in MonoClassField.
22040         * class.c: fix fundamental type of System.Object and System.String.
22041         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
22042         tokens in ldtoken.
22043         * icall.c: remove internalcalls for the Reflection stuff that is now
22044         done in C# code.
22045         * loader.c: mono_field_from_memberref () implementation.
22046         * mono-endian.c: thinko (s/struct/union/g).
22047         * object.c, object.h: make the mono_string_* prototypes actually use
22048         MonoString instead of MonoObject.
22049         * reflection.c, reflection.h: updates for changes in the reflection
22050         code in corlib: we use C structures that map to the actual C# classes.
22051         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
22052         fat method header if needed and use the info from the ILGenerator for
22053         methods. Handle fields in types. Misc fixes.
22054
22055 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
22056
22057         * class.c (mono_class_metadata_init): bug fix: always allocate
22058         space for static class data
22059
22060 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
22061
22062         * class.c (mono_compute_relative_numbering): use relative
22063         numbering to support fast runtime type checks.
22064
22065 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
22066
22067         * class.c (mono_class_create_from_typeref): added debugging output
22068         to print class name when MonoDummy is returned instead of real class
22069
22070 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
22071
22072         * class.c (mono_class_metadata_init): interface offset table now
22073         contains pointers into the vtable - this is more efficient for the jit
22074
22075 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
22076
22077         * class.c (mono_class_metadata_init): use a temporary vtable (the
22078         old algorithm only worked for the interpreter, but not for the jit)
22079
22080 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
22081
22082         * loader.c (method_from_memberref): use mono_class_get to get the
22083         class of an array instead of using System.Array directly.
22084         (mono_get_method): also add MEMBERREF methods to the method cache
22085         which usefull for arrays.
22086
22087 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
22088
22089         * pedump.c (arch_compile_method): added to compute vtable entry
22090
22091         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
22092         number of interfaces.
22093         
22094         * class.h: merged MonoArrayClass into MonoClass
22095
22096         * class.c (mono_class_create_from_typedef): compute the vtable size and
22097         allocate space to include the vtable inside MonoClass
22098         (mono_class_metadata_init): initialize the vtable
22099
22100 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
22101
22102         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
22103         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
22104         * image.c: endian fixes by Laurent Rioux.
22105         * object.h, object.c: rename MonoStringObject to MonoString and
22106         MonoArrayObject to MonoArray. Change some function names to conform to
22107         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
22108         guint16* as first argument, so don't use char*.
22109         Provide macros to do the interesting things on arrays in a portable way.
22110         * threads-pthread.c: updates for the API changes and #include <sched.h>
22111         (required for sched_yield()).
22112         * icall.c: updates for the API changes above.
22113         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
22114         platforms that need them.
22115
22116 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22117
22118         * class.c: set the correct type for all the fundamental
22119         type when loading the class.
22120
22121 2001-10-05  Dick Porter  <dick@ximian.com>
22122
22123         * threads-pthread.c (pthread_mutex_timedlock): Simple
22124         compatibility version for C libraries that lack this call.
22125
22126 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22127
22128         * class.c: MonoTypes stored in MonoClass are stored as
22129         fundamental MonoTypes when the class represents a
22130         fundamental type (System.Int32, ...).
22131         The TypeHandle return by ldtoken is a MonoType*.
22132         * icall.c: ves_icall_get_data_chunk () write out all the
22133         PE/COFF stuff. Implement ves_icall_define_method (),
22134         ves_icall_set_method_body (), ves_icall_type_from_handle ().
22135         * image.c: properly skip unknown streams.
22136         * loader.h, loader.c: add type_class to mono_defaults.
22137         * metadata.c, metadata.h: export compute_size () as
22138         mono_metadata_compute_size () with a better interface.
22139         Typo and C&P fixes.
22140         * pedump.c: don't try to print the entry point RVA if there is no entry point.
22141         * reflection.c, reflection.h: many cleanups, fixes, output method
22142         signatures and headers, typedef and typeref info, compress the metadata
22143         tables, output all the heap streams, cli header etc.
22144         * row-indexes.h: typo fixes.
22145
22146 2001-10-04  Dick Porter  <dick@ximian.com>
22147
22148         * object.h: Add a synchronisation mutex struct to MonoObject
22149
22150         * object.c (mono_new_object): Initialise the object
22151         synchronisation mutexes
22152
22153         * icall.c: System.Threading.Monitor internal calls
22154         
22155         * threads-pthread.h:
22156         * threads-pthread.c: System.Threading.Monitor internal calls
22157
22158         * threads-types.h: New file, includes the system-specific thread
22159         structures
22160         
22161         * threads-pthread-types.h:
22162         * threads-pthread-types.c: New files, handle pthread-specific
22163         synchronisation types
22164
22165         * threads-dummy-types.h: 
22166         * threads-dummy-types.c: New files of dummy support for
22167         thread-specific types
22168
22169         * metadata.c:
22170         * image.c:
22171         * pedump.c: include mono-endian.h not endian.h
22172         
22173         * Makefile.am: More threads files.
22174         Name mono-endian.h not endian.h
22175
22176 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
22177
22178         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
22179         stuff and implement a few more bits.
22180         * icall.c: a field needs to be dereferenced twice. Do not use the same
22181         name for two variables in the same scope.
22182         * image.c, image.h: cleanups.
22183
22184 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
22185
22186         * class.c (mono_class_metadata_init): bug fix: compute the right size
22187
22188 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
22189
22190         * icall.c: implemented some of the Reflection internalcalls.
22191         * image.c, image.h: start writing out the PE/COFF image.
22192         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
22193         that does the reverse than decode_blob_size ().
22194         * object.c: use mono_metadata_encode_value (). Move here
22195         temporary implementation of mono_string_to_utf8 ().
22196         * rawbuffer.c: make malloc_map static.
22197
22198 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22199
22200         * metadata.c: fix type comparison for arrays.
22201         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
22202         Added a couple of new classes to monodefaults.
22203         * icall.c: added a couple of Reflection-related internalcalls.
22204         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
22205         Added a byval_arg MonoType to MonoClass.
22206
22207 2001-09-28  Dick Porter  <dick@ximian.com>
22208
22209         * icall.c:
22210         * threads-pthread.h: 
22211         * threads-pthread.c: Implemented internal calls for
22212         LocalDataStoreSlot operations.  Applied mutexes around all shared
22213         data.  Reworked the thread creation and Start() operations to
22214         avoid a race condition.
22215         
22216         * threads-dummy.h:
22217         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
22218
22219 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
22220
22221         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
22222
22223 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
22224
22225         * class.c, loader.c: warn and return NULL instead of erroring out.
22226         * icall.c: added System.AppDomain::getCurDomain().
22227         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
22228
22229 2001-09-25  Dick Porter  <dick@ximian.com>
22230
22231         * threads-pthread.h:
22232         * threads-pthread.c: Implemented timed thread joining and added
22233         System.Threading.Thread::Join_internal internal call
22234
22235         * icall.c: Added System.Threading.Thread::Join_internal internal call
22236
22237         * threads-dummy.h:
22238         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
22239
22240 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
22241
22242         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
22243         mono_string_intern () to implement the semantics of the ldstr opcode
22244         and the interning of System.Strings.
22245         * icall.c: provide hooks to make String::IsIntern and String::Intern
22246         internalcalls.
22247
22248 2001-09-23  Dick Porter  <dick@ximian.com>
22249
22250         * threads-dummy.c: 
22251         * threads-dummy.h: New files of dummy threading routines
22252
22253         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
22254         support code based on system specifics
22255
22256         Rename PTHREAD_LIBS to THREAD_LIBS
22257         
22258 2001-09-23  Dick Porter  <dick@ximian.com>
22259
22260         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
22261         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
22262         internal calls.
22263         (mono_thread_init): Set up a Thread object instance to return when
22264         the main thread calls Thread.CurrentThread
22265         (mono_thread_cleanup): Wait for all subthreads to exit
22266
22267         * icall.c: New internal calls for System.Threading.Thread::Sleep
22268         (including Schedule) and CurrentThread
22269
22270         * threads.h: New file, to insulate thread-specific stuff from the
22271         rest of the code
22272
22273 2001-09-21  Dick Porter  <dick@ximian.com>
22274
22275         * threads-pthread.h: 
22276         * threads-pthread.c: New file, for handling pthreads-style
22277         threading support.  Start() now starts a new thread and executes
22278         the ThreadStart delegate instance.
22279
22280         * icall.c: Added the internalcall for
22281         System.Threading.Thread::Start_internal
22282
22283         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
22284
22285 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
22286
22287         * loader.c: work around the different signatures for delegates
22288         constructors csc generates in compiled code vs the ones compiled in mscorlib.
22289
22290 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22291
22292         * class.h, class.c: add mono_class_get_field_from_name ().
22293         * *: Fix C comments and other ANSI C issues.
22294
22295 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
22296
22297         * endian.h, assembly.c: fix some endianness issues.
22298
22299 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
22300
22301         * loader.h, load.c: add delegate_class to mono_defaults.
22302         Handle runtime provided methods in mono_get_method ().
22303
22304 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
22305
22306         * loader.c (mono_get_method): use pinvoke for internal call
22307
22308         * icall.c: use pinvoke for internal call
22309
22310         * loader.c (method_from_memberref): set the method name
22311
22312 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
22313
22314         * metadata.c: help the compiler generate better code for
22315         mono_class_from_mono_type ().
22316
22317 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
22318
22319         * class.c (mono_class_metadata_init): delayed computing of the
22320         class size to mono_class_metadata_init ()
22321
22322 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
22323
22324         * class.c, class.h: add an interfaces member to MonoClass.
22325         * image.c, image.h: add assembly_name field to MonoImage
22326         from the assembly table.
22327         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
22328
22329 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22330
22331         * class.c: Handle Array in mono_class_from_mono_type ().
22332         * metadata.c, pedump.c: some endian fixes.
22333
22334 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
22335
22336         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
22337         * metadata.c: fix small problem introduced with the latest commit.
22338
22339 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
22340
22341         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
22342         We don't need a MonoMetadata pointer anymore to compare signatures in
22343         mono_metadata_signature_equal (), update callers.
22344         Reduced memory usage an number of allocations for MonoMethodHeader and
22345         MonoMethodSignature.
22346
22347 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
22348
22349         * metadata.c: added compare for szarray.
22350
22351 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
22352
22353         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
22354         and add a couple more types to it and mono_defaults. Give an hint on
22355         classes that need implementing in our corlib and are referenced
22356         in mscorlib.
22357
22358 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
22359
22360         * class.h, class.c: keep track if a class is also an Enum.
22361         * loader.c: Implement a couple more types for use in libffi
22362         marshalling. Gives better diagnostics when failing to dlopen
22363         a library. Set method->klass for P/Invoke methods, too.
22364
22365 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
22366
22367         * class.c, class.h: add a MonoType this_arg to MonoClass that
22368         represents a pointer to an object of the class' type that
22369         can be used by the interpreter and later the type cache.
22370         Add best guess alignment info for valuetype objects.
22371
22372 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
22373
22374         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
22375         into MonoType: one less level of indirection and allocation and
22376         simplifies quite a bit of code. Added cache for MonoTypes that are
22377         used frequently, so that we don't need to allocate them all the time.
22378
22379 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
22380
22381         * class.c (mono_class_create_from_typedef): System.Enum is also a
22382         value type, although it does not derive from System.ValueType
22383         (maybe a bug in the ms compiler?)
22384
22385         * metadata.c (mono_type_size): return the right size for value types
22386
22387         * loader.c (mono_get_method): only initialize method header if not abstract
22388
22389         * class.c (mono_class_from_mono_type): use mono_default values. 
22390
22391 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
22392
22393         * *: use MonoClass pointers instead of <type_tokens>
22394         
22395         * class.h: new flag: metadata_inited.
22396
22397         * class.c (mono_class_metadata_init): impl.
22398         (mono_class_instance_size): impl.
22399         (mono_class_data_size): impl.
22400
22401 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22402
22403         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22404         MonoClass now has the name and name_space fields. 
22405         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22406         mono_get_method () takes and optional MonoClass as argument.
22407         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22408         instead that takes advantage of a map from class names to typedef
22409         tokens in MonoImage.
22410
22411 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22412
22413         * metadata.c: zero is not a valid alignment boundary.
22414         Merge MONO_TYPE_VOID in default decoding code.
22415
22416 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22417
22418         * image.h: merged MonoMetadata into MonoImage
22419
22420         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22421         identify the type of elements.
22422
22423 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22424
22425         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22426         * cil-coff.h: split MonoMSDOSHeader and add size info.
22427         * image.c: add some consistency checks.
22428         * metadata.c: fix row size computation: one programmer
22429         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22430         add explanation for the locator routine.
22431         Fix decoding of size in method header.
22432         
22433 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22434
22435         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22436         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22437         function from gnome-libs.  This uses the right path separator
22438         based on the OS, and also works around a bug in some systems where
22439         a double slash is not allowed. 
22440         (default_assembly_name_resolver): Use g_concat_dir_and_file
22441         (mono_assembly_open): ditto.
22442
22443 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22444
22445         * metadata.c (mono_metadata_signature_equal): impl.
22446
22447         * *: void is now a realy MonoType (instead of using NULL)
22448         
22449         * metadata.c (do_mono_metadata_parse_type): use
22450         mono_metadata_parse_type to parse void value.
22451
22452 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22453
22454         * metadata.c, metadata.h: in the signature and method header store
22455         only the space required for holding the loca vars and incoming arguments.
22456
22457 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22458
22459         * metadata.c (do_mono_metadata_parse_type): treat void like any
22460         other type (instead of assigning NULL);
22461
22462 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22463
22464         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22465
22466 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22467
22468         * image.c (do_mono_image_open): added a cache for arrays.
22469
22470 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22471
22472         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22473         decode a single column from a row in a metadata table and changes
22474         to take advantage of it in the typedef locator (gives a nice speed up).
22475         Store offset info for function params.
22476
22477 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22478
22479         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22480
22481 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22482
22483         * assembly.c: how could mono_assembly_close () had ever worked?
22484         * metadata.c, metadata.h: provide offset info for local vars.
22485         Implement mono_type_size () to take care of alignment as well
22486         as size (it was mono_field_type_size in cli/class.c before).
22487
22488 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22489
22490         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22491
22492         * assembly.h (CORLIB_NAME): set to corlib.dll
22493
22494         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22495
22496 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22497
22498         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22499         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22500         tokentype.h: massive namespace cleanup.
22501
22502 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22503
22504         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22505
22506 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22507
22508         * metadata.c (mono_metadata_free_type): added check for type !=
22509         NULL (void) before calling mono_metadata_free_type()
22510
22511 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22512
22513         * metadata.h, row_indexes.h: added header with enumerations to use
22514         to index in the columns from tables in metadata and to decode coded
22515         tokens: we should start using this instead of embedding magic numbers
22516         all over the code.
22517
22518 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22519
22520         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22521         Move metadata_t info from cli_image_info_t to MonoImage, where
22522         it's easily accessible. Changed all the uses accordingly.
22523         Added the method and class caches to MonoImage.
22524         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22525         and mono_metadata_decode_value () signature to be more consistent
22526         with the other parse functions (and simplify code). Taken advantage
22527         of zero-length array allocation with GCC. Removed reduntant (and
22528         wrong) MonoFieldType struct and use MonoParam instead. Changed
22529         mono_metadata_parse_field_type () to use common code for parsing.
22530         Added mono_metadata_typedef_from_field () and
22531         mono_metadata_typedef_from_method () to lookup a typedef index from a
22532         field or method token.
22533         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22534
22535 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22536
22537         * metadata.c (mono_metadata_parse_field_type): Implement. 
22538         (do_mono_metadata_parse_type): Split engine from
22539         mono_metadata_parse_type, so that we can create smaller structures
22540         for things that just have one pointer to the MonoType (look at
22541         the MonoFieldType)
22542
22543 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22544
22545         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22546         as Jan Gray found out, it is incorrect. 
22547
22548 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22549
22550         * assembly.c: Implement asssembly loading.  This loads an image
22551         and loads all the referenced assemblies.  Come to think of it, we
22552         could always do lazy loading of the assemblies. 
22553
22554         * image.c (mono_image_open): Keep loaded images in a hashtable.
22555
22556         * image.h (MonoImage): Add reference count.
22557
22558 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22559
22560         * assembly.c (mono_assembly_open): Keep track of the file name in
22561         case the assembly has no ASSEMBLY table.
22562
22563         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22564         from get.c here.
22565
22566 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22567
22568         * metadata.c, metadata.h: decode local vars in method header
22569         parse function. Change callers accordingly.
22570
22571 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22572
22573         * metadata.h, cil-coff.h: protect against multiple inclusion.
22574         Added some new structures to hold information decoded from metadata:
22575         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22576         and relevant decoding/free functions.
22577         * metadata.c: implement decoding functions. Add warning for out of bounds
22578         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22579         all the info about a method signature and invocation. Remove check on
22580         uninitialized local var in parse_mh() and fix memory leak.
22581
22582 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22583
22584         * metadata.h: More macros.
22585
22586         * tokentype.h: New file.
22587
22588 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22589
22590         * assembly.c: added a consistency check and initialize
22591         some structures with g_new0().
22592         * metadata.c: fixed a couple more bugs in table size computation
22593         and add other checks for out-of bound access to metadata.
22594
22595 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22596
22597         * metatada.c: fix bugs computing table sizes. Spew a
22598         warning when index in string heap is out of bounds.
22599
22600 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22601
22602         * metadata.h: Add a couple of macros to manipulate tokens. 
22603
22604 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22605
22606         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22607         cli_section_tables).
22608
22609 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22610
22611         * metadata.c (mono_metadata_user_string): New function, provides
22612         access to the UserString heap. 
22613
22614 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22615
22616         * metadata.c: Add inline documentation.
22617
22618 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22619
22620         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22621         files. 
22622
22623 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22624
22625         * typeattr.h: New file, TypeAttribute flags. 
22626
22627 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22628
22629         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22630         mono_assembly_ensure_section): Section loading code.
22631         (load_section_tables): Load the sections.
22632
22633         * mono/metadata/metadata.c (mono_metadata_locate_token,
22634         mono_metadata_locate): Functions to locate the information
22635         definition given a token or a table and an index.
22636         (mono_metadata_compute_table_bases): New.
22637         (compute_size): New function to compute the sizes of the various
22638         tables.
22639
22640         * mono/metadata/metadata.h: Finish listing the different index
22641         types. 
22642
22643         * mono/metadata/pedump.c: Improve to dump new information.
22644
22645 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22646
22647         * mono/metadata/metadata.c: Entered all the tables matching
22648         Beta2. 
22649
22650         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22651
22652
22653