2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * verify.c (do_newarr):added, do type verification of
4         newarr ops, push the right value on the eval stack.
5         * verify.c (mono_method_verify): use do_newarr
6
7
8 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
9
10         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
11         factored the common code into get_boxable_mono_type, which
12         is now using mono_type_get_full, this fixed byref related tests.
13
14 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15
16         * class.c: added mono_type_get_full, this function has the same
17         behavior of mono_class_get_full but the returned MonoType has
18         all metadata of the associated token in case of a typespec token.
19         * class.c: added mono_type_retrieve_from_typespec, used by 
20         mono_type_get_full to retrieve the token type.
21         * class.c (mono_class_create_from_typespec): changed to use
22         mono_type_retrieve_from_typespec.
23         * class.c (mono_ldtoken): changed to use mono_type_get_full
24         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
25         * class-internals.h: exported mono_type_get_full for internal use.
26
27 2007-08-16  Jb Evain  <jbevain@novell.com>
28
29         * domain.c (supported_runtimes): add entry for
30         the 'moonlight' runtime version.
31
32 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
33
34         * verify.c (mono_method_verify): small typo sliped in.  
35
36 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
37
38         * verify.c (do_unbox_value): added, do type verification of
39         unboxing ops
40         * verify.c (mono_method_verify): use do_unbox_value
41
42
43 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
44
45         * verify.c (dump_stack_value): fixed typo, was printing string
46         instead of object on stack.
47         * verify.c (do_box_value): moved the byref check up as it leads
48         to invalid code and should be done earlier.
49         * verify.c: improved error messages for and ldobj
50
51 2007-08-15  William Holmes  <billholmes54@gmail.com>
52
53         * marshal.c (emit_marshal_custom): Omit the call to 
54           marshal_native_to_managed when calling native to managed 
55           and the argument is specified as an out argument.
56
57         Code is contributed under MIT/X11 license.
58
59 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
60
61         * verify.c: fixed the type checks for generics, function pointers and vectors.
62         Added type verification for ldobj and ldtoken. The verifier
63         would segfault if header or signature of a method contained references
64         to non-existant types.
65
66 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
67
68         * marshal.c (cominterop_get_ccw): Patch from
69         Bill Holmes to no walk up interface hierarchy. 
70         All parent methods should be present in the interface for COM.
71    
72         Code is contributed under MIT/X11 license.
73
74 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
75
76         * marshal.c (emit_marshal_com_interface): Patch from
77         Bill Holmes to handle COM Interfaces as return values
78         for native->managed calls.
79    
80         Code is contributed under MIT/X11 license.
81
82 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
83
84         * marshal.c (cominterop_get_idispatch_for_object): Implement
85         for runtime callable wrappers.
86    
87         Code is contributed under MIT/X11 license.
88
89 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
90
91         * pedump.c (main): changed from mono_init to mono_init_from_assembly
92         so 2.0 types are accessible
93
94
95 2007-08-13  Miguel de Icaza  <miguel@novell.com>
96
97         * domain.c (mono_init_internal): Call mono_assembly_load_friends
98         once we load mscorlib.   Due to the order in which we initialize,
99         the mono_assembly_load_full routine that loads mscorlib did not
100         load friends.   We now load it once we load the
101         mono_defaults.internals_visible_class class. 
102
103         * assembly.c: Expose the mono_load_friend_assemblies method.
104
105 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * verify.c: improved the handling of boxing, better
108         type checking for unary ops and conversion. Fix bug
109         regarding managed pointer compatibility checking
110
111 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
112
113         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
114
115         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
116
117 2007-08-09  Raja R Harinath  <rharinath@novell.com>
118
119         * reflection.c (dup_type): Remove.
120         * class.c (dup_type): Remove.
121         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
122         instead of the dodgy 'dup_type'.
123         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
124         handle the case where 'dup_type' needed the second argument.
125
126 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
127
128         * domain.c: Fix a warning.
129
130 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
131
132         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
133         checking that methods with the same fqname are not overridden
134         with a method from an ancestor.
135
136 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
137
138         * threads.c (free_thread_static_data_helper): Avoid a crash if
139         thread->static_data is not yet set.
140
141 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
142
143         * marshal.c: Use correct image when emitting
144         native wrapper for COM calls.
145    
146         Code is contributed under MIT/X11 license.
147
148 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
149
150         * icall-def.h, security.c, security.h :
151           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
152
153 2007-08-07  Martin Baulig  <martin@ximian.com>
154
155         * mono-debug-debugger.h
156         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
157
158         * domain.c (mono_domain_free): Call
159         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
160
161 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
162
163         * verify.c (check_underflow, check_overflow): error message now returns IL offset
164         * verify.c (in_same_block): code should test if either offset is inside the clauses
165         * verify.c (mono_method_verify): push the exception into the eval stack of exception
166         and filter blocks
167
168 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
169
170         * image.c (mono_image_close): Fix a leak.
171
172         * object.c (mono_runtime_invoke_array): Avoid using alloca.
173
174         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
175
176 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
177
178         * domain.c, threads.c, threads-types.h: fix memory retention issue
179         with thread static variables not being cleared on domain unload.
180         Reuse thread static slots after domain unload.
181
182 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
183
184         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
185         nullable type.
186
187         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
188         now done in mono_runtime_invoke_array.
189
190         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
191         receiver is a nullable type.
192
193         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
194         generic parameter.
195
196 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
197
198         * marshal.c: Implement COM Objects as return type for 
199         managed->unmanaged calls. Added Release calls for COM Object
200         out/return values in managed->unmanaged calls.
201
202         Code is contributed under MIT/X11 license.
203
204 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
205
206         * threads.h, threads-type.h: move the hazard pointer declarations
207         to the private header.
208
209 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
210
211         * file-io.c, appdomain.c: memory leak fixes.
212
213 2007-08-02  Dick Porter  <dick@ximian.com>
214
215         * socket-io.c
216         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
217         SO_REUSEADDR setting into io-layer/sockets.c.
218
219 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
220
221         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
222         from Object when called on a generic parameter. Fixes #82211.
223
224 2007-08-01  Dick Porter  <dick@ximian.com>
225
226         * file-io.c (convert_share): Test FileShare values bit-by-bit.
227         Fixes bug 79250 yet again.
228
229 2007-07-30  Martin Baulig  <martin@ximian.com>
230
231         Merged the `debugger-dublin' branch.
232
233         * mono-debug.h
234         (MonoDebugDataTable): New typedef.
235         (MonoDebugMethodAddressList): New typedef.
236         (MonoDebugWrapperData): Removed.
237         (MonoDebugSymbolTable): Removed `current_data_table',
238         `current_data_table_size', `current_data_table_offset'.
239         (MonoDebugDataItemType): Moved into mono-debug.c.
240         (MonoDebugMethodJitInfo): Remove `address'.
241         (mono_debug_data_table): New global variable.
242         (mono_debug_lookup_method_addresses): New public function.
243         (mono_debug_find_method): Take a `MonoMethod *', not a
244         `MonoDebugMethodInfo *'.
245
246         * mono-debug.c: Drop support for the old symbol tables.
247
248 2007-06-28  Martin Baulig  <martin@ximian.com>
249
250         * mono-debug.c (mono_debug_debugger_version): New public variable.
251
252 2007-07-31  William Holmes  <billholmes54@gmail.com>
253
254         * metadata.c Changed mono_type_create_from_typespec to not insert
255           the type into the hash map until after
256           do_mono_metadata_parse_type has completed.
257         Fixes Bug #82194
258         Code is contributed under MIT/X11 license.
259
260 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
261
262         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
263         generic parameter. Fixes #82211.
264
265 2007-07-27  Jb Evain  <jbevain@novell.com>
266
267         * pedump.c (dump_metadata, dump_metadata_header): dump
268         versions contained in the metadata header.
269
270 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
271
272         * threads.c: register small_id_table with the GC.
273
274 2007-07-27  Mark Probst  <mark.probst@gmail.com>
275
276         * threads.c, threads.h, class-internals.h, object-internals.h:
277         Hazard pointers, to be used by lock-free parallel algorithms.
278
279 2007-07-26  Dick Porter  <dick@ximian.com>
280
281         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
282         routine on non-windows platforms, as I've not managed to think of
283         a non-kludgy way of doing this.  Finishes off bug 78739.
284
285 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
286
287         * object.c: properly setup interface_bitmap in proxy vtables.
288
289 2007-07-25  Marek Habersack  <mhabersack@novell.com>
290
291         * appdomain.c (get_shadow_assembly_location): do not use TickCount
292         to create unique shadow copy target directories, use the domain's
293         serial number instead. Each domain gets a unique target directory
294         that way.
295
296         * domain.c (mono_domain_create): added code to increment domain
297         shadow copy serial number and cache the value in the current
298         domain structure.
299
300         * domain-internals.h (struct _MonoDomain): added a new field -
301         shadow_serial to hold the serial number used in generation of
302         shadow-copy directories. This is to make sure that the directory
303         name is unique for each and every domain created. We avoid a race
304         condition with overriding assemblies already in use by other app
305         domains.
306
307 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
308
309         * class.c (mono_bounded_array_class_get): fixed memory leak when 
310         binding generic parameters.
311
312 2007-07-24  Raja R Harinath  <rharinath@novell.com>
313
314         * metadata.c (do_mono_metadata_parse_generic_class): Use
315         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
316         error.
317
318 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
319
320         * loader.c, class-internals.h, reflection.c: removed the per-method
321         generics hashtable: we use the global one through the call of
322         mono_class_inflate_generic_method ().
323
324 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
325
326         * class.c, metadata.c, class-internals.h: introduce yet another
327         generics global cache for inflated methods (fixes 98% of the perf
328         issue in bug #81806).
329
330 2007-07-23  Raja R Harinath  <rharinath@novell.com>
331
332         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
333         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
334         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
335         return a MonoGenericInst containing (a copy) of those types.
336         (mono_metadata_inflate_generic_inst): Update to changes.
337         (mono_metadata_parse_generic_inst): Likewise.
338         (mono_get_shared_generic_inst): Likewise.
339         * reflection.c (mono_class_bind_generic_parameters): Likewise.
340         (mono_reflection_bind_generic_method_parameters): Likewise.
341         * metadata-internals.h: Likewise.
342         * icall.c (free_generic_context): Kill.
343         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
344
345         * reflection.c (reflection_methodbuilder_to_mono_method): Use
346         mono_metadata_type_dup.
347         * marshal.c (mono_mb_create_method): Likewise.
348
349         * metadata.c (mono_metadata_type_dup): Rename from
350         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
351         MonoImage.  Handle a few more cases, esp. when no mempool is given.
352         * marshal.c, metadata-internals.h: Update to changes.
353
354 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
355
356         * class.c: fixed a small leak for array classes and removed warning.
357
358 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
359
360         * loader.c (mono_method_get_param_token): Make this work on generic methods.
361         Return 0x8000000 for return parameters. Fixes #82161.
362
363 2007-07-21  Marek Habersack  <grendello@gmail.com>
364
365         * appdomain.c (get_shadow_assembly_location): append the current
366         ticks value to the path. Avoids overwriting the same assemblies by
367         several threads at the same time.
368
369 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
370         and Raja R Harinath  <rharinath@novell.com>
371
372         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
373         Simplify slightly.
374         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
375         property for testing if a method is a generic method definition.
376
377 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
378
379         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
380
381 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
382
383         * verify.c: used function from private branch, reverted to the one in class.h 
384
385 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * verify.c: a typo slipped in and the code wont compile
388
389 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
390
391         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
392         disabled box instruction as it is doing the wrong thing
393         improved stack dump messages, now it is easier to debug type related issues
394
395
396 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
397
398         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
399
400 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
401
402         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
403         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
404         grouped with class and valuetype. This change will simply 
405         the code as it should be handled just like unmanaged pointers.
406
407 2007-07-19  Mark Probst  <mark.probst@gmail.com>
408
409         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
410
411 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
412
413         * verify.c: several stack merge issues fixed, reference comparisons now
414         check the type size. strict type check now works correctly.
415         added more uses of IS_MANAGED_POINTER macro.
416         fixed issues pointed by running the test suite against .net.
417         
418
419 2007-07-19  Mark Probst  <mark.probst@gmail.com>
420
421         * class.c, loader.c, class-internals.h: Removed the
422         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
423         defines.
424
425         * icall.c: Better error checking in some internal reflection
426         methods.
427
428 2007-07-18  William Holmes  <billholmes54@gmail.com>
429
430         * filewatcher.c : removed unused variable 'filename' in 
431           ves_icall_System_IO_FSW_SupportsFSW
432
433 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
434
435         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
436         obsolete, removed.
437
438 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
439
440         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
441         
442         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
443
444 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
445
446         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
447         Implement generics support.
448         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
449
450         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
451         type_args and method_args arguments.
452         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
453         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
454         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
455
456 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
459           It adds a rootimage parameter to mono_reflection_get_type_internal,
460           adds new function mono_reflection_get_type_with_rootimage and use
461           the rootimage to resolve the types instead of the current image
462
463 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
464
465         * culture-info-table.h: Forgot to update after r78304.
466
467 2007-07-13  Raja R Harinath  <rharinath@novell.com>
468
469         * class.c (mono_class_is_open_constructed_type)
470         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
471
472 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
473
474         * class.c (mono_bounded_array_class_get):  method fails if used with
475         an incomplete TypeBuilder enum (no basetype field), fixed it by 
476         avoiding calculating the size for such array as it cannot be instantiated.
477         Fix bug #82015
478
479 2007-07-12  Raja R Harinath  <rharinath@novell.com>
480
481         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
482         field.
483         * metadata.c, reflection.c: Update to changes.
484
485 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
486
487         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
488         mono_class_is_valid_enum, they are used to valide a enum when loading.
489         * reflection.c: used new functions to throw TypeLoadException when and
490         invalid enum is build with TypeBuilder. Fixes #82018
491   
492 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
493
494         * object.c: forgot commit of mono_class_setup_methods () to access
495         iface->methods.
496         * object-internals.h: added a few more handy fields to
497         MonoIMTCheckItem.
498
499 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
500
501         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
502         iface->methods.
503
504 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
505
506         * class-internals.h, object-internals.h, object.c: IMT-based
507         interface invocation core from Massimiliano Mantione
508         (massi@ximian.com) with a reworked arch-specific interface,
509         bsearch implementation and a few bugfixes and memory savings by me.
510
511 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
512
513         * class.c (mono_class_create_from_typedef): mono would segfault if 
514         an enum did not have a __value field. It now throws a TypeLoadException
515         for such cases. Fix bug #82022
516
517 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
518
519         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
520
521 2007-07-09  Mark Probst  <mark.probst@gmail.com>
522
523         * class.c (mono_class_init): If a class is already inited but has
524         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
525
526 2007-07-09  Mark Probst  <mark.probst@gmail.com>
527
528         * class.c: Properly handle the case of an unimplemented interface
529         method.  Fixes: 81673.
530
531 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
532
533         * class-internals.h, object.c: cleanup patch from massi: use
534         MonoVTable->interface_bitmap since the vtable interfaces offset array
535         is going away.
536
537 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
538
539         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
540         GetMDStreamVersion icall instead.
541
542 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
543
544         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
545         not use mono_dl_build_path() with a full library name: makes
546         fallbacks to libgaim and libfam work.
547
548 2007-07-06  William Holmes  <billholmes54@gmail.com>
549
550         * assembly.c: Added a continue statement in probe_for_partial_name when
551          parse_assembly_directory_name fails.  Fixes : 82002
552
553 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
554
555         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
556         and added a verification  for TYPEDBYREF.
557         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
558         make native int interchangeable with int32 and some small cleanup and formating.
559         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
560         handle byref of byref.
561         * verify.c (push_local): handle byref of byref.
562         * verify.c (do_binop): invalid mix of values is unverifiable
563         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
564         added visibility checks
565         * verify.c (field related method): added visibility checks
566         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
567
568 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
569
570         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
571         string.
572
573 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
574
575         * profiler.c (mono_profiler_load): Fix an off-by-one error.
576
577         * marshal.c (emit_marshal_string): When returning a string from managed code,
578         allways make a copy even for unicode strings. Fixes #81990.
579
580 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
581
582         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
583         of byref generic inst types (bug #81997).
584
585 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
586
587         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
588         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
589
590 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
591
592         * marshal.c (emit_marshal_string): Add support for unicode strings in
593         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
594
595 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
596
597         * verify.c: field load/store are now verified, missing only access checks now
598
599 2007-06-28  Martin Baulig  <martin@ximian.com>
600
601         * mono-debug.c (mono_debug_debugger_version): New public variable.
602
603 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
604
605         * locales.c: When constructing DateTimeFormat or NumberFormat for
606         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
607         MonoCultureInfo contructed from the current locale is always
608         read-only and has UseUserOverride set to true. All MonoCultureInfo
609         instances returned for GetCultures have both IsReadOnly and
610         UseUserOverride set to true. Fixes part of bug #81930.
611
612 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
613
614        * icall-def.h: Update System.__ComObject icalls
615        * marshal.c: Avoid managed transition (and object creation)
616        when looking up COM interface in RCW.
617        * marshal.h: Ditto.
618        
619        Code is contributed under MIT/X11 license.
620
621 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
622
623         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
624         to avoid crashes during assembly unloading.
625
626 2007-06-22  Raja R Harinath  <rharinath@novell.com>
627
628         Fix MethodInfo.IsGenericMethodDefinition
629         * reflection.c (mono_reflection_bind_generic_method_parameters):
630         Rearrange code to ensure we always uses a generic method definition.
631         * class.c (mono_class_inflate_generic_method_full): Set
632         'generic_container' field only for generic method definitions.
633         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
634         Use presense of 'generic_container' field as indication of being a
635         generic method definition.
636
637 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
638
639         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
640
641         * object-internals.h: Reflect changes in the layout of the managed Delegate
642         class.
643         
644         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
645         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
646         runtime memory used by the dynamic method. Fixes #77146.
647
648 2007-06-21  Dick Porter  <dick@ximian.com>
649
650         * file-io.h: 
651         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
652         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
653         81767.
654
655 2007-06-21  Raja R Harinath  <rharinath@novell.com>
656
657         * reflection.c (method_encode_methodspec): Add a tripwire.
658         * class.c (inflate_generic_type): The fully open generic type is
659         not the same as the generic type definition.
660
661 2007-06-21  Martin Baulig  <martin@ximian.com>
662
663         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
664
665         * mono-debug-debugger.h
666         (MonoDebuggerBreakpointInfo): Removed.
667         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
668         (mono_debugger_remove_breakpoint): Likewise.
669         (mono_debugger_breakpoint_callback): Likewise.
670         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
671
672 2007-06-21  Raja R Harinath  <rharinath@novell.com>
673
674         * metadata.c (mono_metadata_lookup_generic_class): The fully open
675         generic type is not the same as the generic type definition.
676         * class.c (mono_generic_class_get_class): Likewise.
677
678 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
679
680         * icall.c: The second argument to 
681         System.Reflection.MethodBase.GetMethodFromHandleInternalType
682         is a MonoType not a MonoClass.
683
684 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
685
686         * verify.c: support for function pointers in the verifier
687
688 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
689
690         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
691
692 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
693
694         * assembly.c: removed Mono.Data.SqliteClient from the list of
695         forward-compatible assemblies as it breaks the ABI (bug #81899).
696
697 2007-06-19  Raja R Harinath  <rharinath@novell.com>
698
699         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
700         lookup/update with the loader lock.
701         * reflection.c (mono_class_bind_generic_parameters): No need to
702         protect mono_metadata_lookup_* with the loader lock.
703         * class.c (inflate_generic_type): Likewise.
704         
705         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
706         on a generic instantiated type.
707
708 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
709
710         *verify.c: produce meanfull error messages on verification error
711         *verify.c: fixed some cases of verification errors reported as validation errors
712         *pedump.c: fixed the error name array, now it shows validation errors properly
713         *verify.h: fixed the contant that should be used for verification errors
714
715 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
716
717         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
718         for bug #77596, 81858 and 80743 (generics data structures on domain
719         unload).
720
721 2007-06-15  Raja R Harinath  <rharinath@novell.com>
722
723         Avoid allocating 'MonoGenericContext' on the heap.
724         * class-internals (_MonoMethodInflated::context): Make field
725         inline, not a pointer.
726         * loader.c (method_from_methodspec): Allocate 'new_context' on the
727         stack.  Use the context embedded within the inflated method as the
728         hash key, rather than 'new_context'.
729         * class.c (inflate_generic_context): Simplify.  Return a struct
730         rather than allocating on the heap.
731         (mono_class_inflate_generic_method_full): Update to changes.  Now,
732         doesn't salt away a copy of the context -- simplifying the
733         lifetime rules of a 'MonoGenericContext *'.
734         (mono_method_get_context): Return pointer to embedded context.
735         (setup_generic_array_ifaces): Allocate temporary context on stack.
736         * reflection.c (inflate_mono_method): Likewise.
737         (mono_reflection_bind_generic_method_parameters): Likewise.
738         Use the context embedded within the inflated method as the hash key.
739
740         Avoid a source of allocation of 'MonoGenericContext'.
741         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
742         and 'cached_context' fields into embedded 'MonoGenericContext' field.
743         * class.c: Update to changes.
744         (mono_generic_class_get_context): Simplify drastically.  Now just
745         returns a pointer to the field.
746         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
747         argument as a const pointer.
748         (mono_metadata_generic_context_equal): Likewise.
749         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
750         Update to changes.
751
752 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
753
754         * verify.c improved the handling of brtrue/brfalse, factored out common code
755
756 2007-06-14  Raja R Harinath  <rharinath@novell.com>
757
758         Kill MonoGenericMethod.
759         * class-internals.h (MonoGenericContext::method_inst): Rename from
760         'gmethod' and convert to a MonoGenericInst.
761         (MonoGenericMethod): Remove.
762         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
763         * loader.c (method_from_methodspec): Update to changes.  Use a
764         MonoGenericContext as the key to the hashtable.
765         * metadata.c (mono_metadata_generic_context_equal): Rename from 
766         'mono_metadata_generic_method_equal' and take MonoGenericContext.
767         (mono_metadata_generic_context_hash): Likewise from
768         'mono_metadata_generic_method_hash'.  Change hash function.
769         (mono_metadata_load_generic_params): Update to changes.
770         (mono_get_shared_generic_method): Remove.
771         * metadata-internals.h (mono_get_shared_generic_method): Remove.
772         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
773         (inflate_generic_context): Likewise.
774         (mono_class_inflate_generic_method_full): Likewise.
775         (setup_generic_array_ifaces): Likewise.
776         (mono_class_create_from_typespec): Likewise.
777         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
778         (method_encode_methodspec): Update callsite.
779         (reflection_methodbuilder_to_mono_method): Update to changes.
780         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
781         MonoGenericContext as the key to the hashtable.
782         (inflate_mono_method): Update to changes.
783
784         * class-internals.h (MonoGenericMethod::container): Remove.
785         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
786
787 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
788
789         * profiler-private.h, profiler.c, profiler.h: added API to profile
790         exception events.
791
792 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
793
794         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
795
796 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
797
798         * verify.c: method invocation is now validated, now we verify parameter types on stack.
799         Fixed overflow and underflow not aborting the verification process.
800
801 2007-06-13  Mark Probst  <mark.probst@gmail.com>
802
803         * class-internals.h (MonoStats): Added stats entries for dynamic
804         code allocations.
805
806 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
807
808         * loader.c (mono_free_method): Free header->locals and header->clauses.
809
810         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
811         dynamic case.
812
813         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
814
815         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
816
817 2007-06-12  Raja R Harinath  <rharinath@novell.com>
818
819         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
820         the tables.
821
822 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
823
824         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
825
826 2007-06-11  Raja R Harinath  <harinath@gmail.com>
827
828         MonoGenericMethod on a diet
829         * class-internals.h (_MonoMethodInflated::reflection_info): Move
830         here ...
831         (_MonoGenericMethod::reflection_info): ... from here.
832         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
833         Update to changes.
834         * reflection.c (inflate_mono_method): Likewise.
835         (mono_reflection_bind_generic_method_parameters): Likewise.
836
837 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
838
839         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
840         *verify.c: factored long ldarg forms to share code with short forms
841
842 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
843
844         *verify.c: fixed code formating factored some duplicate code
845         into a new function
846
847         *verify.h: fixed binary incompatibility introduced earlier
848
849         *pedump.c: fixed formating
850
851 2007-06-11  Raja R Harinath  <harinath@gmail.com>
852
853         Fix assertion when disassembling Mono.C5.dll
854         * loader.c (method_from_methodspec): Avoid inflating a method
855         twice with the same context.  If the methodref is inflated, use
856         the declaring method instead.
857
858         * class.c (mono_class_from_generic_parameter): Fix case similar to
859         bug #81830 handled below, but for method containers.
860
861 2007-06-10  Raja R Harinath  <harinath@gmail.com>
862
863         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
864         get_shared_generic_class.  Directly inflate the instance.
865         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
866         (inflate_generic_class): Delete.
867         (get_shared_generic_class): Delete.  Move setting of
868         'cached_class' and 'cached_context' ...
869         * metadata.c (mono_metadata_lookup_generic_class): ... here.
870
871         * metadata.c (mono_metadata_lookup_generic_class): Change
872         signature to take the components of a MonoGenericClass rather than
873         an allocated MonoGenericClass.  Change semantics to be intern-like.
874         * reflection.c (mono_class_bind_generic_parameters): Update to
875         changes.  Make locking region tighter.
876         * class.c (inflate_generic_class): Update to changes.
877         (get_shared_generic_class): Likewise.
878         * metadata-internals.h: Likewise.
879
880         * reflection.c (mono_class_bind_generic_parameters): Take and
881         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
882         (mono_reflection_bind_generic_parameters): Use
883         'mono_class_bind_generic_parameters' rather than duplicate the code.
884         * class.c (mono_bounded_array_class_get): Update to changes.
885         * object-internals.h: Likewise.
886
887         * reflection.c (mono_class_bind_generic_parameters): Only support
888         parameterizing generic type definitions.  Remove support for other
889         open types.
890
891 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
892
893         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
894
895         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
896         in the dynamic case.
897
898 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
899
900         * threads.c: When cleaning up thread, reset the Background bit.
901         Fixes bug #81720.
902
903 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
904
905        * metadata.c: Move variable declarations to top of scope.
906        * verify.c: Move variable declarations to top of scope.
907
908        Code is contributed under MIT/X11 license.
909
910 2007-06-08  Raja R Harinath  <rharinath@novell.com>
911
912         * reflection.c (mono_class_bind_generic_parameters): Replace
913         open-coded loop with mono_metadata_inflate_generic_inst.
914
915         * class.c (get_shared_generic_class): Don't call
916         mono_get_shared_generic_inst.  Use the container's own
917         'class_inst'.
918
919         * metadata.c (mono_metadata_load_generic_params): Move
920         initialization of 'context' field here from ...
921         * class.c (mono_class_create_from_typedef): ... here, and ...
922         * loader.c (mono_get_method_from_token): ... here.
923
924         * class.c (get_shared_generic_class): Rename from
925         mono_get_shared_generic_class and make static.
926         (mono_get_shared_generic_inst): Move to metadata.c.
927         * loader.c (mono_get_shared_generic_method): Likewise.
928         * class-internals.h, metadata-internals.h: Update to changes.
929
930         Fix #81830
931         * class.c (mono_class_from_generic_parameter): Don't assume a
932         generic container owner exists.  Generic containers from monodis
933         don't have any.
934
935 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
936
937         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
938         * verify.h: new typedefs to returns the non-verifiable status
939         * verify.c: initial implementation of generics, stack merging and object compatibility check
940
941 2007-06-06  Mark Probst  <mark.probst@gmail.com>
942
943         * class.c, image.c, class-internals.h (MonoImage): class_cache is
944         a MonoInternalHashTable again (fixed bug in internal hash table
945         code).
946
947 2007-06-06  Mark Probst  <mark.probst@gmail.com>
948
949         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
950         MonoInternalHashTable again (fixed bug in internal hash table
951         code).
952
953 2007-06-06  Mark Probst  <mark.probst@gmail.com>
954
955         * class.c, image.c, class-internals.h, domain.c,
956         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
957         changes.  Have to figure out what makes them break the SWF
958         regression.
959
960 2007-06-04  Mark Probst  <mark.probst@gmail.com>
961
962         * class.c, image.c, class-internals.h (MonoImage): class_cache is
963         a MonoInternalHashTable now.
964
965 2007-06-04  Mark Probst  <mark.probst@gmail.com>
966
967         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
968         MonoInternalHashTable now.
969
970 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
971
972         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
973         invoke_impl code.
974
975         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
976
977         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
978         dependent trampoline.
979
980         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
981
982         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
983
984 2007-05-29  Robert Jordan  <robertj@gmx.net>
985
986         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
987
988 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
989
990         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
991
992 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
993
994        * marshal.c: Fix interface lookup loops for
995        cominterop_get_com_slot_for_method and 
996        cominterop_get_method_interface. Only need to lookup
997        if type is a class, else use interface type method is on.
998
999        Code is contributed under MIT/X11 license.
1000
1001 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
1002
1003         * reflection.c: HasSecurity can be present even if no specially 
1004         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
1005         SecurityAttribute). Fix CAS regression tests on buildbot.
1006
1007 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
1008
1009        * appdomain.c: Add configure checks for header files.
1010        * image.c: Add configure checks for header files.
1011        * file-io.c: Add configure checks for header files.
1012        * debug-mono-symfile.c: Add configure checks for header files.
1013        * threadpool.c: Add configure checks for header files.
1014        * console-io.c: Add configure checks for header files.
1015        * profiler.c: Add configure checks for header files.
1016        * rawbuffer.c: Add configure checks for header files.
1017        * icall.c: Add configure checks for header files.
1018        * rand.c: Add configure checks for header files.
1019        * socket-io.c: Add configure checks for header files.
1020
1021        Code is contributed under MIT/X11 license.
1022
1023 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
1024
1025         * reflection.c (mono_custom_attrs_from_builders): Remove the 
1026         assertion as it breaks the build.
1027         
1028         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
1029
1030         * reflection.c (lookup_custom_attr): Make a copy here too.
1031
1032         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
1033         dynamic images.
1034
1035         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
1036         images.
1037
1038         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
1039         info.
1040
1041 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
1042
1043         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
1044         (load_cattr_value): Ditto.
1045
1046 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
1047
1048         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
1049
1050 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
1051
1052         * threads.c: In "start_wrapper", set apartment_state to MTA if
1053         apartment_state is Unknown and we're running on 2.0 profile or
1054         higher.
1055         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
1056         to main method, then set apartment_state to Unknown on 1.0 profile,
1057         and MTA on 2.0 profile.
1058
1059 2007-05-16  Jb Evain  <jb@nurv.fr>
1060
1061         * class-internals.h (MonoDefaults): Add an attribute_class and
1062           customattribute_data_class.
1063         * domain.c (mono_init_internal): Populate them.
1064         * reflection.c: Use them to remove duplicates. Make a vew
1065         MonoClass variables `static'.
1066
1067 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
1068
1069         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
1070         step in implementing IMT, so that all isinst checks now can go
1071         through the bitmap.
1072         This was needed because vtables for TransparentProxy need to look
1073         like the vtable of the "target" class, so they need to point to
1074         its interface bitmap directly.
1075
1076         * object.c: inside "mono_class_create_runtime_vtable" and
1077         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
1078
1079 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
1080
1081         * object-internals.h
1082           culture-info.h : added territory field in MonoCulture and
1083           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
1084         * locales.c : fill territory field above too.
1085         * culture-info-table.h : regenerated.
1086
1087 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
1088
1089         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
1090         Fixes #81599.
1091
1092 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
1093
1094         * object.c: Always initialize apartment, even if 
1095         there is no custom attributes on entry point.
1096         
1097         Code is contributed under MIT/X11 license.
1098
1099 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
1100
1101         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
1102         * metadata.c: If no encoding is set, check for unicode
1103         on class.
1104         
1105         Code is contributed under MIT/X11 license.
1106
1107 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1108
1109         * threads.c: Handle if mono_thread_current returns NULL 
1110         
1111         Code is contributed under MIT/X11 license.
1112
1113 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
1114
1115         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
1116         in start_wrapper. Added mono_thread_init_apartment_state and
1117         mono_thread_cleanup_apartment_state.
1118         * object.c: Initialize thread apartment state on main thread
1119         by checking for STAThreadAttribute on entry point.
1120         * object-internals.h: Add apartment_state field to MonoThread.
1121         * threads-types.h: Add unmanaged definition of 
1122         System.Threading.ApartmentState, MonoThreadApartmentState.
1123         
1124         Code is contributed under MIT/X11 license.
1125         
1126 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
1127
1128         * class.c: Fix windows build.
1129         * class-internals.h: Fix windows build.
1130         
1131         Code is contributed under MIT/X11 license.
1132
1133 2007-05-08  Robert Jordan  <robertj@gmx.net>
1134
1135         * process.c (CreateProcess_internal):
1136         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
1137         .CreateNoWindow was specified. Fixes #81496.
1138
1139 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1140
1141         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
1142         step in implementing IMT, replaced it with two compact arrays
1143         (interfaces_packed and interface_offsets_packed) and a bitmap that
1144         is used for isinst checks (interface_bitmap).
1145
1146         * class.c: (compare_interface_ids): compare function to pass to
1147         bsearch when looking for an interface with a given id.
1148         (mono_class_interface_offset): reimplemented using bsearch on
1149         interfaces_packed, getting the offset from interface_offsets_packed.
1150         (print_implemented_interfaces): utility debugging function.
1151         (setup_interface_offsets): reworked to initialize interfaces_packed,
1152         interface_offsets_packed and interface_bitmap.
1153
1154         * object.c: replaced all accesses to "MonoClass.interface_offsets"
1155         with uses of interfaces_packed and interface_offsets_packed.
1156
1157 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
1158
1159         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
1160         mono_class_interface_offset prototype to wrap all accesses to
1161         "MonoClass.interface_offsets".
1162
1163         * class.c: Implemented mono_class_interface_offset, and wrapped all
1164         accesses to "MonoClass.interface_offsets".
1165
1166         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
1167         "MonoClass.interface_offsets".
1168
1169 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
1170
1171         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
1172         GetMethodFromHandle overloads (bug #78637).
1173
1174 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
1175
1176         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
1177         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
1178
1179 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
1180
1181         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
1182         #81498.
1183
1184         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
1185         gracefully.
1186         (mono_custom_attrs_from_index): Ditto.
1187
1188         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
1189         Fixes #81501.
1190
1191 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
1192
1193         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
1194         is now allocated from a mempool.
1195
1196 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
1197
1198         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
1199         caller holds threads_lock, leading to deadlocks. Fixes #81476.
1200
1201 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
1202
1203         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
1204         mono_loader_clear_error () too late. Fixes #81463.
1205
1206 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
1207
1208         * culture-info-table.h : regenerated.
1209
1210 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
1211
1212         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
1213         is missing.
1214
1215 2007-04-25  Dick Porter  <dick@ximian.com>
1216
1217         * Makefile.am: Put the mingw enforced-optimisation back into the
1218         PLATFORM_WIN32 section.
1219
1220 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
1221
1222         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
1223         patch.
1224
1225         * image.c (mono_image_load_module): New API function to load a module reference.
1226
1227         * image.c (load_modules): Load modules lazily. Fixes #80812.
1228
1229         * class.c (mono_class_from_typeref): Use mono_image_load_module.
1230         
1231         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
1232
1233         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
1234         to mono_image_load_module_dynamic.
1235
1236 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
1237
1238         * marshal.c: Fix calling convention for CCW on non-windows
1239         platforms. STDCALL on windows, CDECL everywhere else to work 
1240         with XPCOM and MainWin COM.
1241         
1242         Code is contributed under MIT/X11 license.
1243
1244 2007-04-23  Martin Baulig  <martin@ximian.com>
1245
1246         Fix #80969.
1247
1248         * loader.c
1249         (method_from_memberref): Added `gboolean *used_context' argument.
1250         (mono_get_method_from_token): Likewise.
1251         (mono_get_method_full): Don't insert the method in the cache when
1252         `used_context' is true.
1253
1254 2007-04-23  Raja R Harinath  <rharinath@novell.com>
1255
1256         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
1257
1258         * reflection.c (mono_reflection_bind_generic_parameters): Don't
1259         create new MonoTypes for returned types.
1260         * class.c (mono_generic_class_get_class): Export mono-internal.
1261         * class-internals.h: Update to changes.
1262
1263 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
1264
1265         * threadpool.c, threadpool.h, icall-def.h: patch from
1266         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
1267
1268 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
1269
1270         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
1271         
1272         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
1273
1274         * threads.c (mono_thread_get_stack_bounds): New helper function.
1275
1276         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
1277         Correctly compute stack bounds when attaching. Fixes #81394.
1278
1279 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
1280
1281         * reflection.c: fix handling of doubles in custom attributes
1282         for the arm-fpa format (bug #81368).
1283
1284 2007-04-18  Raja R Harinath  <rharinath@novell.com>
1285
1286         * reflection.c (assembly_add_win32_resources): Mildly relax an
1287         bounds check to let the end pointer point just past the end of the
1288         allocated buffer.  (may fix #81384)
1289
1290 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
1291
1292         * culture-info-table.h : regenerated.
1293
1294 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
1295
1296         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
1297         the thread is aborted early.
1298
1299 2007-04-05  Dick Porter  <dick@ximian.com>
1300
1301         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
1302         FindFirstFile()/FindNextFile() to find entries.  This lets the
1303         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
1304         81038.
1305
1306         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
1307         the parameters of
1308         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
1309
1310 2007-04-04  Martin Baulig  <martin@ximian.com>
1311
1312         * debug-helpers.c
1313         (mono_method_desc_full_match): Add support for nested classes.
1314
1315 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
1316
1317         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
1318
1319 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
1320
1321         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
1322         waiting for too many threads.
1323
1324 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
1325
1326         * environment.c: Fix return value check on uname so we can get the 
1327         executing version on Solaris operating systems.
1328
1329 2007-03-28  Jb Evain  <jbevain@gmail.com>
1330
1331         * class.c (mono_type_get_name_recurse): Complete the
1332         fix for the creation of assembly qualified names for
1333         pointer types. Fixes #81208.
1334
1335 2007-03-27  Dick Porter  <dick@ximian.com>
1336
1337         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
1338         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
1339         changed.
1340
1341         * threads.c
1342         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
1343         the value of ReleaseMutex().
1344
1345 2007-03-27  Dick Porter  <dick@ximian.com>
1346
1347         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
1348         in little-endian order, not network endian, so must be converted
1349         to host endian here.  Fixes bug 80593.
1350
1351 2007-03-22  Jb Evain  <jbevain@gmail.com>
1352
1353         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
1354         qualified names for pointer types. Fixes #81208.
1355
1356 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
1357
1358         * marshal.c: Add support for PreserveSigAttribute. 
1359         
1360         Code is contributed under MIT/X11 license.
1361
1362 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
1363
1364         * process.c: Fix endianness issues. Fixes #81126.
1365
1366         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
1367         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
1368
1369         * image.c (mono_image_lookup_resource): Make this work on big-endian
1370         machines.Change API contract so the caller needs to free the return value.
1371         
1372         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
1373         API change.
1374         
1375 2007-03-14  Martin Baulig  <martin@ximian.com>
1376
1377         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
1378         mono_type_get_desc() as well.
1379
1380 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
1381
1382         * icall.c:  Fix environ access in VS.  
1383         
1384 2007-03-13  Alp Toker  <alp@atoker.com>
1385
1386         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
1387         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
1388         #63841.
1389
1390 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
1391
1392         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
1393         circular references among dynamic methods. Fixes #81091.
1394
1395         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
1396
1397 2007-03-09  Martin Baulig  <martin@ximian.com>
1398
1399         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
1400
1401 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
1402
1403         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
1404         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
1405         
1406         Code is contributed under MIT/X11 license.
1407         
1408 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
1409
1410         * loader.c: Reapply patch for bug #79424.
1411
1412 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1413
1414         * metadata.c (mono_type_to_unmanaged): Only convert object to
1415         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
1416
1417 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
1418
1419         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
1420         (and incorrectly set) is_reference field from MonoGenericInst.
1421
1422 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
1423
1424         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
1425         a little earlier.
1426
1427         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
1428
1429         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
1430
1431 2007-03-05  Miguel de Icaza  <miguel@novell.com>
1432
1433         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
1434         FileOptions.1 value to mean "temporary", map that to
1435         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
1436
1437         Fixes 80688
1438
1439 2007-03-03  Marek Habersack  <mhabersack@novell.com>
1440
1441         * appdomain.c: implement MS .Net style shadow copying. Copies of
1442         the assemblies are made in a subdirectory of the dynamic base
1443         directory, the assembly names are preserved.
1444         Copy .mdb and .config files along with the assemblies being shadowed.
1445
1446 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1447
1448         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
1449         (emit_marshal_handleref): Ditto.
1450
1451         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
1452         on Visual C++. Fixes #80671.
1453
1454 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
1455
1456         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
1457         for clone operations.
1458
1459 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
1460
1461         * marshal.c: Fix warnings.
1462
1463 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
1464
1465         * loader.c: allow case-insensitive matching of the dll name
1466         in dllmap handling when prefixed with "i:".
1467
1468 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
1469
1470         * threads.c: Fix #ifdef for dummy_apc function for VS.
1471
1472 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
1473
1474         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
1475
1476 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
1477         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
1478         giving precedence to the methods with a fully qualified name
1479         (InterfaceName.MethodName) when building the interface sections
1480         of the vtable.
1481
1482 2007-02-16  Dick Porter  <dick@ximian.com>
1483
1484         * threadpool.c (append_job): Fix fast-path array handling, so it's
1485         less likely the array will grow exponentially when the load is
1486         heavy.
1487
1488 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1489
1490         * metadata-internals.h, loader.c: fix dllmap lookup order
1491         for non-function maps, too, and prepare for fallback code.
1492
1493 2007-02-12  Robert Jordan  <robertj@gmx.net>
1494
1495         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
1496         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
1497         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
1498         GlobalFree. Fixes a part of bug #77075.
1499
1500 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
1501
1502         * loader.c: implemented typedef parent in field memberref.
1503
1504 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
1505
1506         * marshal.c: Fix warnings and remember to call Release on
1507         IUnknown of RCW.
1508         
1509         Code is contributed under MIT/X11 license.
1510
1511 2007-02-10  Miguel de Icaza  <miguel@novell.com>
1512
1513         * class-internals.h: Add MonoHandleRef definition, and
1514         handleref_class to mono_defaults. 
1515
1516         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
1517         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
1518
1519         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
1520         (do nothing on this stage)
1521         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
1522         (emit_marshal_handleref): New method, used for argument handling
1523         of HandleRefs. 
1524
1525 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
1526
1527         * class.c (mono_class_setup_parent): Lazily init com types.
1528         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
1529         init com types.
1530         * object.c (mono_remote_class_vtable): Lazily init com types.
1531         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
1532         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
1533         * domain-internals.h: Expose mono_init_com_types.
1534         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
1535         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
1536         Add support for COM Callable Wrapper marshalling.
1537         * marshal.h: Add icall definitions.
1538         * gc.c: Handle freeing of CCWs in finalizer code.
1539         
1540         Code is contributed under MIT/X11 license.
1541
1542 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
1543
1544         * reflection.c: changed all the signature encoding code to use
1545         a variable-sized buffer.
1546
1547 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1548
1549         * marshal.c: locking fixes: never take the loader lock
1550         or other runtime locks when holding the marshal lock
1551         (fixes bug#80664).
1552
1553 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
1554
1555         * marshal.c: make the delegate function pointer mapping
1556         work for the moving GC.
1557
1558 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
1559
1560         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
1561         for bug #80618.
1562
1563 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1564
1565         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
1566         gmodule.
1567
1568 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
1569
1570         * threadpool.c: made the code moving-GC safe.
1571
1572 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1573
1574         * assembly.c, boehm-gc.c, class-internals.h, class.c,
1575         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
1576         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
1577         warning cleanup.
1578         * reflection.c: warning cleanup, some threading and moving GC fixes.
1579
1580 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
1581
1582         * class.c, loader.c: create the needed Set/Get/Address array methods
1583         as well as the .ctors in mono_class_init (), fixes bug #80567.
1584
1585 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
1586
1587         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
1588         we doesn't decrease its alignment. Should fix the sparc build.
1589
1590 2007-01-24  Dick Porter  <dick@ximian.com>
1591
1592         * socket-io.c
1593         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
1594         Create the returned object if we need to ignore an unsupported
1595         socket option.  Fixes a segfault reported by Atsushi.
1596
1597 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
1598
1599         * class.c, object.c: restrict GC-tracked fields to
1600         UIntPtr fields used inside corlib, so we provide better
1601         type info to the GC and also allow broken packing as in
1602         bug #80580.
1603
1604 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
1605
1606         * sgen-gc.c: removed duplicated function.
1607
1608 2007-01-19  Miguel de Icaza  <miguel@novell.com>
1609
1610         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
1611         value that means that the value is not supported, but that we
1612         should not return a failure, but instead report this as a
1613         successful operation.
1614
1615 2007-01-19  Raja R Harinath  <rharinath@novell.com>
1616
1617         Fix tests/bug79956.2.il
1618         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
1619         (mono_generic_class_get_class): If the generic definition in an
1620         enum, copy over other fields related to it.
1621
1622 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
1623
1624         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
1625         genericinst enums (bug #79215).
1626
1627 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
1628         * class.c: Fix bug 80307.
1629
1630 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
1631
1632         * image.c: if the file table is not present, try to load
1633         all the modules, since we don't have info about them
1634         having or not metadata (bug #80517).
1635         * assembly.c: allow mono_assembly_load_references () to
1636         work for netmodules.
1637
1638 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1639
1640         * image.c, metadata-internals.h, object.c: execute module
1641         cctors when running on the 2 runtime if present (bug #80487).
1642
1643 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
1644
1645         * icall.c: optimized InitializeArray() on bigendian.
1646
1647 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
1648
1649         * icall.c: fix for the broken ARM FPA double format.
1650
1651 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
1652
1653         * icall.c: handle endian issues for r4 and r8 types, too, in
1654         the InitializeArray() icall.
1655
1656 2007-01-15  Miguel de Icaza  <miguel@novell.com>
1657
1658         * loader.c (mono_loader_error_prepare_exception): Clear the error
1659         once we have extracted the information from it, do this before we
1660         call into the JIT's class loading mechanisms.
1661
1662         * object.c (mono_class_create_runtime_vtable): Do not clear the
1663         loader error before calling mono_class_get_exception_for_failure
1664         as the loader error is needed inside
1665         mono_class_get_exception_for_failure to throw the error (thinko).
1666
1667         Fixes #80521
1668         
1669 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
1670
1671         * reflection.c: align fields rva data so it's faster to load at
1672         runtime.
1673
1674 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1675
1676         Prepare to simplify GenericMethod handling.
1677         * class-internals.h (mono_method_get_context): New accessor function.
1678         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
1679         rather than directly accessing '->context' field.
1680
1681         * class-internals.h (_MonoGenericParam.method): Move ...
1682         (_MonoGenericContainer): ... here.  Add into union with klass field.
1683         * class.c, icall.c, loader.c, metadata.c, reflection.c:
1684         Update to changes.
1685
1686 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1687
1688         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1689         the wrapper type enum and reduce relocations.
1690
1691 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1692
1693         * reflection.c (inflate_mono_method): Reuse method instantiation
1694         from the generic method, if available.
1695
1696 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1697
1698         * marshal.c (emit_marshal_variant): Fix conv_arg
1699         type in last commit, based on whether parameter is byref.
1700         
1701 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1702
1703         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1704         marshalling.
1705         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1706         MONO_TYPE_OBJECT back for VARIANT support.
1707
1708 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1709
1710         * marshal.c, marshal.h, icall-def.h: Implement 
1711         Marshal.ReAllocCoTaskMem.
1712
1713 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1714
1715         * marshal.c: memory retention fixes: use the proper
1716         image cache for runtime_invoke method lookups.
1717
1718 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1719
1720         * mempool.c: added code to help debug mempool allocations.
1721
1722 2007-01-11  Dick Porter  <dick@ximian.com>
1723
1724         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
1725         support (experimenting with faking it with IP_MTU_DISCOVER for
1726         systems that don't have IP_DONTFRAGMENT.)
1727         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
1728         icall.
1729
1730         * icall-def.h: new System.Net.Sockets.Disconnect icall.
1731
1732         * socket-io.h: Add new fields to MonoSocketAsyncResult
1733         corresponding to the new ones in Socket.cs.
1734
1735 2007-01-11  Raja R Harinath  <rharinath@novell.com>
1736
1737         Fix IronPython regression mentioned in #80249
1738         * metadata.c (do_mono_metadata_parse_generic_class): Clear
1739         'cached_context' field, since it may have been initialized as a
1740         side-effect of metadata parsing.
1741
1742         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
1743         (_MonoGenericClass.cached_class): Move here and rename from lone
1744         remaining field of ...
1745         (_MonoInflatedGenericClass): ... this.  Remove.
1746         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
1747         to changes.
1748
1749         Fix mcs/tests/test-128.cs regression.
1750         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
1751         2007-01-10 change below.
1752         [MONO_TYPE_OBJECT]: Recurse into array case.
1753
1754 2007-01-11  Raja R Harinath  <harinath@gmail.com>
1755
1756         * class-internals.h (mono_get_inflated_generic_class): Remove.
1757         * class.c (mono_get_inflated_generic_class): Remove.
1758         (mono_generic_class_get_class): Rename from
1759         mono_class_create_generic.
1760         (mono_class_from_mono_type) [GENERICINST]: Use it.
1761         * reflection.c, metadata.c: Update to changes.  Use
1762         'mono_class_from_mono_type'.
1763
1764 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1765
1766         * reflection.c: use passed type when encoding an array element
1767         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
1768
1769 2007-01-09  Robert Jordan  <robertj@gmx.net>
1770
1771         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
1772         result arguments (someDelegate.EndInvoke (unrelatedAres)).
1773         Fixes bug #80392.
1774
1775 2007-01-09  Raja R Harinath  <rharinath@novell.com>
1776
1777         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
1778
1779         * object.c (set_value): Avoid aliasing between type->data.klass
1780         and type->data.generic_class.
1781
1782         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
1783
1784 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1785
1786         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
1787         between type->data.klass and type->data.generic_class.
1788
1789 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
1790
1791         * marshal.c: In MS.NET, StringBuilder objects are not copied by
1792         value in out parameters.
1793
1794 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1795
1796         Simplify invariant for MonoGenericClass::klass field.
1797         * class.c (mono_class_create_generic): Verify 'klass' is null.
1798         * metadata.c (do_mono_metadata_parse_generic_class): Don't
1799         initialize 'klass' field.
1800
1801 2007-01-05  Raja R Harinath  <rharinath@novell.com>
1802
1803         Ongoing work to avoid redundant data and simplify invariants.
1804         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
1805         'generic_class', and change type to a GenericInst.
1806         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
1807         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1808
1809 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1810
1811         * class.c : skip io-layer under PLATFORM_WIN32.
1812
1813 2007-01-03  Tor Lillqvist  <tml@novell.com>
1814
1815         Fix #80305: In a bundled executable, look in the bundled exe
1816         assembly to determine the runtime version. Add the possibility to
1817         bundle also the machine.config file.
1818         
1819         * assembly.c (mono_assembly_open_from_bundle): Make
1820         non-static. Allow being called even if we have no bundled
1821         assemblies, and return NULL right away in that case.
1822
1823         * domain-internals.h: Declare mono_assembly_open_from_bundle()
1824         here.
1825
1826         * domain.c (app_config_parse): Take an assembly exe file name as
1827         parameter instead of a config file name. Check for a bundled
1828         config file for that assembly by calling
1829         mono_config_string_for_assembly_file() (see below) before looking
1830         for one in the file system.
1831         (get_runtimes_from_exe): Corrsponding change to call of
1832         app_config_parse().
1833         (get_runtimes_from_exe): Check for bundled assembly exe file first
1834         by calling mono_assembly_open_from_bundle(). If no bundled
1835         assembly exe file is found, call mono_image_open() as before to
1836         look it up in the file system.
1837
1838         * mono-config.c: Add variable bundled_machinec_onfig.
1839         (mono_config_string_for_assembly_file): New function.
1840         (mono_config_for_assembly): Move code snippet that looks for a
1841         bundled assembly .config file into the above new function. Call
1842         it.
1843         (mono_register_machine_config, mono_get_machine_config): New
1844         functions to set and retrieve
1845
1846         * assembly.h: Declare mono_register_machine_config().
1847
1848         * mono-config.h: Declare mono_get_machine_config() and
1849         mono_config_string_for_assembly_file().
1850
1851         * icall.c: No declaration of environ necessary on Win32. It is
1852         declared (as a macro expanding to a function call) in stdlib.h.
1853         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
1854         New internal mono function. Returns the value of
1855         mono_get_machine_config() as a Mono string.
1856
1857         * icall-def.h: Add get_bundled_machine_config().
1858
1859 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1860
1861         Remove redundant field
1862         * class-internals.h (_MonoGenericContext.container): Remove field.
1863         * loader.c (mono_method_get_signature_full): Don't parse a
1864         "container" for a signature parse when the signature is inflated
1865         immediately.
1866         (method_from_methodspec): Likewise, for a generic_inst.
1867         * class.c, metadata.c, reflection.c: Update to changes.
1868
1869 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1870
1871         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1872         'cached_context', and change semantics -- it starts off NULL, and
1873         is initialized on demand.
1874         * class.c (mono_generic_class_get_context): New accessor to
1875         replace 'context' field accesses.
1876         (mono_class_get_context): New helper.
1877         (*): Update to changes.
1878         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1879
1880 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1881
1882         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1883         before the memcpy.   Fixes Marshal2 regression.
1884
1885 2007-01-02  Jb Evain  <jbevain@gmail.com>
1886
1887         * blob.h: add a MONO_TYPE_ENUM definition
1888         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1889         fix the encoding of arrays of enums in custom attributes.
1890
1891         Fixes #79666.
1892
1893 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1894
1895         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1896         string is null terminated, but only cut the string short if it
1897         overflows the buffer.   
1898         
1899         (mono_string_to_byvalstr): Also fix this routine.   The code here
1900         was not properly terminating a string (it was only terminated
1901         because of the previous catch-all memset). 
1902
1903         I left the memset, because I do not know if applications expect
1904         the runtime to clear this region. 
1905
1906         Fixes #79944.
1907
1908         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1909         Clear the error before returning to unmanaged code to prevent the
1910         runtime from being confused later on (fixes  80420).
1911         (ves_icall_type_from_name): Always call mono_loader_clear_error
1912         after parsing a type that could have failed.
1913         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1914
1915         * loader.c (mono_loader_clear_error): Fix indentation.
1916
1917 2006-12-28  Martin Baulig  <martin@ximian.com>
1918
1919         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1920
1921 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1922
1923         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1924         getting a token for an EnumBuilder.
1925
1926 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1927
1928         * reflection.c: be more careful in case resource generation
1929         fails to create the data array.
1930
1931 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1932
1933         * sgen-gc.c: write barrier for clone and fix unregister handles.
1934
1935 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1936
1937         * reflection.c: some fixes needed in the generics code for the moving GC.
1938
1939 2006-12-22  Robert Jordan  <robertj@gmx.net>
1940
1941         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1942         account. Fixes bug #80299.
1943
1944 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1945
1946         Fix WaitHandle usage in delegates.
1947         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1948         * object.c (mono_wait_handle_new): Use the property set method to
1949         initialize the handle.
1950         (mono_wait_handle_get_handle): New.
1951         * threadpool.c (mono_async_invoke): Use it.
1952         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1953         Likewise.
1954         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1955
1956 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1957
1958         * marshal.c (emit_marshal): Call emit_marshal_variant and
1959         emit_marshal_com_interface when applicable.
1960         (emit_marshal_variant, emit_marshal_com_interface): Add
1961         methods for this case and remove if's from emit_marshal_object.
1962         
1963 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1964
1965         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1966
1967 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1968
1969         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1970         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1971         and GlobalFree on Windows. Remove FIXME.
1972
1973 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1974
1975         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1976         implementation for managed objects.
1977
1978 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1979
1980         * object.c: implemented code to be used for checking
1981         that no reference field overlaps with non-references.
1982
1983 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1984
1985         * threadpool.c: fix queue code to be compatible with the
1986         moving GC.
1987
1988 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1989
1990         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1991         in structures by throwing ArgumentNullException.
1992
1993         (emit_marshal_safehandle): Also when they are null parameters.
1994
1995         (emit_marshal_safehandle): Add support for ref
1996         SafeHandles parameters
1997
1998 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1999
2000         * profiler.c: updated to use the mono-dl API instead of
2001         gmodule.
2002
2003 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2004
2005         * profiler.c: updated to use the mono-dl dynamic loading
2006         API instead of gmodule.
2007
2008 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
2009
2010         * profiler.c: use readlink, older versions of glib don't have
2011         g_file_read_link ().
2012
2013 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2014
2015         * profiler.c: try to detect the path to mono if libc fails to provide
2016         a useful name (bug #80286).
2017
2018 2006-12-16  Raja R Harinath  <rharinath@novell.com>
2019
2020         Fix #80242
2021         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
2022         instance, use the generic type definition instead.
2023         (ves_icall_Type_GetNestedTypes): Likewise.
2024         * class.c (mono_class_create_generic): Always set the
2025         nested_classes of a generic instance to NULL, even if the generic
2026         type definition has nested types.
2027
2028 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
2029
2030         * marshal.c (mono_string_from_bstr): Revert previous Windows change
2031         and fix on Linux.
2032         
2033 2006-12-15  Miguel de Icaza  <miguel@novell.com>
2034
2035         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
2036         my arguments were in the wrong order.   I also fixed the Windows
2037         version which seems to have had the same issue.
2038
2039         (mono_free_bstr): On Unix, this is g_free.
2040         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
2041         conversions (for the tests in corlib to pass).
2042
2043 2006-12-14  Miguel de Icaza  <miguel@novell.com>
2044
2045         * marshal.c (emit_ptr_to_object_conv): For now, ignore
2046         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
2047         exception if a ref SafeHandle in a struct has changed).
2048         
2049         (emit_struct_conv): Do not perform layout checks for classes
2050         derived from SafeHandle, as those are specially handled. 
2051
2052         (emit_object_to_ptr_conv): Add support for
2053         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
2054
2055         (emit_marshal_safehandle): Implement conversion of return values
2056         of safehandles (MARSHAL_ACTION_CONV_RESULT).
2057         
2058         * threads.c: WaitHandle now is compiled with two different handles
2059         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
2060         for 2.0.
2061         
2062         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
2063         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
2064         these routines to cope with both kinds of fields.
2065
2066 2006-12-12  Miguel de Icaza  <miguel@novell.com>
2067
2068         * metadata.c (mono_type_to_unmanaged): Handle the case where
2069         type->data.klass is a SafeHandle, and in that case, return the
2070         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
2071         MONO_MARSHAL_CONV_SAFEHANDLE. 
2072
2073 2006-12-11  Miguel de Icaza  <miguel@novell.com>
2074
2075         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
2076         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
2077         calling emit_marshal_object.
2078
2079         (emit_marshal_safehandle): Implement marshalling of
2080         SafeHandle parameters (no ref support yet).
2081
2082         (MarshalAction): Document the defines as I implement
2083         them for SafeHandle.
2084
2085         (emit_marshal_object): indentation police.
2086
2087         * class-internals.h: Define MonoSafeHandle.
2088         Add safehandle_class to MonoDefaults type.
2089
2090         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
2091         list of classes to check for fields. 
2092
2093         * domain.c (mono_init_internal): Add SafeHandle to the list of
2094         mono_defaults loaded.
2095
2096 2006-12-15  Raja R Harinath  <rharinath@novell.com>
2097
2098         Fix #80253
2099         * reflection.c (mono_reflection_bind_generic_parameters): If the
2100         generic type definition is a type builder, ensure that it is fully
2101         initialized before instantiating it.  Kill some dead code.
2102
2103 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
2104
2105         * object.c: clear the loader_error () before loading
2106         more metadata stuff (bug #80258).
2107
2108 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
2109
2110         * icall.c, icall-defs.h: type modifiers icalls for
2111         parameters and properties.
2112
2113 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
2114
2115         * object.c, icall.c: fixed warnings.
2116
2117 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2118
2119         * marshal.c: fixed a couple of leaks and coding style in a few places.
2120
2121 2006-12-08  Dick Porter  <dick@ximian.com>
2122
2123         * process.c: Cope with NULL ProcessStartInfo arguments on windows
2124         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
2125         80173.
2126
2127 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2128
2129         * process.c: ProcessStartInfo may have only filename set and
2130         arguments can be NULL.
2131
2132 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2133
2134         * icall.c: fix leak found by Robert Jordan.
2135
2136 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
2137
2138         * marshal.c, marshal.h: generate managed method to access an element
2139         of a multi-dimensional array.
2140
2141 2006-11-30  Paolo Molaro (lupus@ximian.com)
2142
2143         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
2144
2145 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2146
2147         * icall.c: back out GetFields () fix until the serialization code is
2148         fixed to not depend on the incorrect behaviour.
2149
2150 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
2151
2152         * profiler.c: provide defaults if none are set.
2153
2154 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
2155
2156         * Makefile.am, attrdefs.h: new public header file with
2157         constants for attributes for use by embedders.
2158
2159 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
2160
2161         * icall.c: GetFields () fix for bug #80064.
2162
2163 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
2164
2165         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
2166         removed long unused icalls.
2167
2168 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
2169   
2170         * marshal.c: 
2171                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
2172                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
2173                 can be generated without a delegate class.
2174                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
2175         
2176         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2177
2178 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2179
2180         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
2181         #80069.
2182
2183 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2184
2185         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
2186         icall-def.h: added icalls needed by System.GC.
2187
2188 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
2189
2190         * loader.c: ensure the class in catch clauses is handled
2191         correctly for generics methods (fixes bug#79980).
2192
2193 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
2194
2195         * monitor.h, monitor.c: added mono_locks_dump () function
2196         to help debug deadlocks involving managed locks.
2197
2198 2006-11-13  Dick Porter  <dick@ximian.com>
2199
2200         * file-io.c (get_file_attributes): If the file is a symlink try
2201         and get the stat data for the target, but also add the
2202         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
2203         the specs for the windows symlink support, but will probably have
2204         to be reworked when I have test data from a vista machine.  Fixes
2205         bug 79887.
2206
2207 2006-11-13  Dick Porter  <dick@ximian.com>
2208
2209         * gc.c (mono_domain_finalize): 
2210         * marshal.c (mono_delegate_begin_invoke): 
2211         * threadpool.c (socket_io_init, mono_thread_pool_init)
2212         (mono_thread_pool_finish): 
2213         * monitor.c (mono_monitor_try_enter_internal): 
2214         * threads.c (mono_thread_resume, mono_thread_init)
2215         (mono_thread_suspend_all_other_threads)
2216         (mono_thread_execute_interruption): 
2217         * appdomain.c (mono_domain_unload): Check for NULL error returns
2218         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
2219         75733.
2220
2221 2006-11-11  Miguel de Icaza  <miguel@novell.com>
2222
2223         * process.c
2224         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
2225         Only close the handle if the value of the handle is not
2226         INVALID_HANDLE_VALUE.  This just makes the process a bit more
2227         robust.
2228
2229         Improvement for #75733, so that we do not run into this problem. 
2230
2231         
2232         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
2233         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
2234         internal variables.  Fixes #79462 
2235         
2236
2237 2006-11-09  Dick Porter  <dick@ximian.com>
2238
2239         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2240         Use poll() not select().  Fixes bug 79397.
2241
2242 2006-11-09  Raja R Harinath  <rharinath@novell.com>
2243
2244         Fix #79872
2245         * assembly.c (mono_assembly_load_from_full): Check that the given
2246         image has an assembly manifest.
2247
2248 2006-11-09  Ankit Jain  <jankit@novell.com>
2249
2250         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
2251         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
2252         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
2253
2254 2006-11-07  Dick Porter  <dick@ximian.com>
2255
2256         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2257         Put the old resolver behaviour back for pre-2.0 profiles.
2258
2259 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2260
2261         * threadpool.c: precise GC and locking fixes.
2262
2263 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
2264
2265         * class.c: don't load types that have an explicit unaligned
2266         managed reference. Provide better info in the TypeLoad exception.
2267         Part of the fix for bug #79744.
2268         * object.c: use the correct check for class type load issues.
2269
2270 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2271
2272         * class.c: enforce alignment of fields with managed references
2273         even when Pack=1 is forced by the user (bug #77788).
2274
2275 2006-11-03  Dick Porter  <dick@ximian.com>
2276
2277         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
2278         If the address reverse lookup fails, return it as the hostname
2279         anyway.  Fixes bug 79721.
2280
2281 2006-11-03  Dick Porter  <dick@ximian.com>
2282
2283         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
2284         Fix build on Windows.
2285
2286 2006-11-02  Dick Porter  <dick@ximian.com>
2287
2288         * icall-def.h: 
2289         * object-internals.h: 
2290         * exception.c (mono_get_exception_thread_interrupted): 
2291         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
2292         Fixes bug 74525.
2293
2294         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
2295         Check for pending Thread.Interrupt.
2296
2297 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
2298         * loader.c: Fixed bug 79684.
2299
2300 2006-10-27  Dick Porter  <dick@ximian.com>
2301
2302         * file-io.c (get_file_attributes): Force symlinks to directories
2303         to be returned as a regular file.  Fixes bug 79733.
2304 2006-10-26  Dick Porter  <dick@ximian.com>
2305
2306         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
2307         CreateFile to open a directory then we need to set the
2308         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
2309
2310 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
2311
2312         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
2313         friends.
2314
2315 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2316
2317         * sgengc.c: small cleanup of timer code.
2318
2319 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2320
2321         * sgen-gc.c: fix some warnings and start adding support for
2322         complete object removal on domain unload.
2323
2324 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
2325
2326         * assembly.c: build_assembly_name should not consider a version
2327         number without build or revision number invalid. Fixes bug #79715.
2328
2329 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
2330
2331         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
2332         call kernel32 function OutputDebugString directly.
2333         
2334         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
2335         
2336 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
2337
2338         * reflection.c: small cleanup, using a function to insert a MonoString
2339         in the string heap.
2340
2341 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
2342
2343         * reflection.c: moving GC fixes.
2344
2345 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
2346
2347         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
2348         all the objects with finalizers belonging to an unloading appdomain.
2349
2350 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
2351
2352         * sgen-gc.c: added ability to allocate even when the nursery is fully
2353         pinned and fixed a couple of bugs.
2354
2355 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2356
2357         * threads.h: Revert the last change for now.
2358
2359         * threads.h (mono_thread_get_pending_exception): Rename this to
2360         mono_thread_get_undeniable_exception ().
2361
2362 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
2363
2364         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
2365         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
2366         when fname does not refer to valid assembly. This result in a more
2367         meaningful error message.
2368         * exception.c: added mono_get_exception_bad_image_format2 which 
2369         constructs a BadImageFormatException using the ctor taking a custom
2370         message and the file name. Passing in a NULL msg results in a default
2371         message.
2372         * exception.h: define mono_get_exception_bad_image_format2 function.
2373         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
2374         when file name pointed to an invalid IL image. Use 
2375         mono_get_exception_file_not_found2 to construct FileNotFoundException,
2376         as this results in a more meaningful error message.
2377
2378 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
2379
2380         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
2381         #79465.
2382
2383 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
2384
2385         * metadata.c (mono_type_size): Change the align parameter to guint32 for
2386         consistency with the other _size functions.
2387         (mono_type_stack_size): Ditto.
2388
2389         * class.c object.c icall.c: Fix warnings caused by the above change.
2390
2391         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
2392
2393         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
2394
2395         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
2396
2397 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2398
2399         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
2400         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
2401         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
2402         threadpool.h, threads-types.h: mark more internal functions.
2403
2404 2006-10-11  Dick Porter  <dick@ximian.com>
2405
2406         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
2407         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
2408         reproduce the bug even before applying the fix.)
2409
2410 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
2411
2412         * reflection.c: allow retrieving attributes for arguments in generic
2413         methods (bug #79241).
2414
2415 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
2416
2417         * debug-mono-symfile.c: properly check fopen () result (found by
2418         coverity).
2419
2420 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
2421
2422         * reflection.c: make error message clearer and fixed two
2423         issuelets found by Coverity.
2424
2425 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
2426
2427         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
2428
2429 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2430
2431         * object-internals.h, gc-internal.h, profiler-private.h:
2432         mark internal functions.
2433
2434 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2435
2436         * reflection.c: put data in the text section.
2437         * icall.c: recognize more types in type_from_typename ().
2438         * process.c, marshal.c: added some GC FIXMEs.
2439
2440 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2441
2442         * loader.c: check for NULL before initializing.
2443
2444 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
2445
2446         * gc.c (finalizer_thread): Use a non-alertable wait here.
2447
2448         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
2449         until the correct solution is found.
2450
2451 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2452
2453         * reflection.c (mono_module_get_object): Avoid an assert when operating on
2454         modules with no metadata. Fixes #79596.
2455
2456         * image.c (load_metadata_ptrs): Put back the error message when
2457         the #- heap is encountered since the support is not complete yet.
2458
2459 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
2460
2461         * gc.c: do not allow the user to SuppressFinalize () a
2462         delegate because it would leak the trampoline if present.
2463
2464 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
2465
2466         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
2467         PropertyPtr table.
2468
2469 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
2470
2471         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
2472
2473         * metadata.c (mono_metadata_get_param_attrs): Ditto.
2474
2475         * row-indexes.h: Add definitions for *Ptr tables.
2476
2477         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
2478
2479         * metadata.c (mono_metadata_translate_token_index): New helper function to
2480         translate table indexes used in uncompressed metadata.
2481         (mono_metadata_decode_table_row): Ditto.
2482         (mono_metadata_decode_table_row_col): Ditto.
2483
2484         * metadata.c: Add table schema for *Ptr tables.
2485
2486         * class.c loader.c: Use the new helper function to access the affected metadata
2487         tables.
2488         
2489         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
2490         #38532.
2491         
2492 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
2493
2494         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
2495         sequences which can be unbounded in size. Fixes #79583.
2496
2497 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
2498
2499         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
2500         static initialization.
2501
2502         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
2503
2504         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
2505
2506         * domain.c (mono_domain_free): Free up type_init_exception_hash.
2507
2508         * object.c (mono_runtime_class_init): Implement correct semantics when a static
2509         ctor fails, i.e. throw the same exception on subsequent accesses.
2510         
2511 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
2512
2513         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
2514         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
2515         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
2516         Handle marshalling of interfaces and VARIANTs contained in structs.
2517         
2518         Code is contributed under MIT/X11 license.
2519         
2520 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
2521
2522         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
2523         
2524         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
2525         mempool.
2526
2527 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2528
2529         * console-io.c: ignore previous SIGINT handler.
2530
2531 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
2532
2533         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
2534         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
2535         #79460, #79461, #79485.
2536
2537         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
2538
2539         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
2540         #79217.
2541
2542 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
2543
2544         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
2545         could be generated from it.
2546
2547 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
2548
2549         * rand.c: fix read loop to correctly handle EINTR.
2550
2551 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2552
2553         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
2554         internal calls are defined to keep methods closer to the declaring
2555         type and allow a significant reduction in runtime relocations and
2556         memory usage.
2557
2558 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
2559
2560         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
2561         exception message to have FileNotFoundException use the default
2562         assembly load error message. Fixes bug #79426.
2563         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
2564
2565 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2566
2567         * threadpool.c: (start_thread_or_queue) use the root domain when
2568         creating the thread instead of the async object one.
2569
2570 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
2571
2572         * class.c, object.c, class-internals.h, reflection.c:
2573         for arrays, store element_size inside MonoClass (speedup
2574         for array object creation).
2575
2576 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
2577
2578         * icall.c: fixed CodeBase to use the file name and not the module
2579         name (bug #79365).
2580
2581 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2582
2583         * mono-debug.c, mono-debug.h: export find_method as
2584         mono_debug_find_method ().
2585
2586 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
2587
2588         * debug-helpers.c, class-internals.h: added a few functions useful
2589         when debugging under gdb.
2590
2591 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2592
2593         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
2594         characters that need special handling.
2595
2596 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
2597
2598         * mono-config.c: make the os/cpu specification more flexible,
2599         allowing lists and negation.
2600
2601 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
2602
2603         * marshal.c: COM Interop fixes. Handle case where method->klass.
2604         is interface. Handle BSTR/MonoString when null. Use CDECL as 
2605         calling convention on non-windows platforms. This is for
2606         compatibility with XPCOM and MainWin COM.
2607         
2608         Code is contributed under MIT/X11 license.
2609         
2610
2611 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
2612
2613         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
2614         correctly. Fixes #79217.
2615
2616         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
2617
2618 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
2619
2620         * mono-config.c: allow both an os and cpu attribute for dllmap
2621         and dllentry elemnets to enable a single config file to be used
2622         for multiple architectures.
2623
2624 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
2625
2626         * loader.c: MonoLoaderError was cleared too soon on load failure.
2627         Fixes bug #79424.
2628
2629 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
2630
2631         * icall.c: use the defining class vtable when accessing a
2632         static field, not a pobblibly derived class.
2633
2634 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
2635
2636         * icall.c string-icalls.c: Remove references to unicode.h.
2637
2638         * unicode.h unicode.c Makefile.am: Remove these unused source files.
2639
2640         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
2641
2642         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
2643         indicating the image where custom marshaller types should be looked up.
2644         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
2645         custom marshallers, instead of corlib. Fixes #79425.
2646
2647 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
2648
2649         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
2650
2651 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
2652
2653         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
2654         Implement Environment.ProcessorCount.
2655         
2656         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
2657         Implement Environment.ProcessorCount.
2658         
2659         * icall.c: 
2660         Add Environment.ProcessorCount icall.
2661         
2662         Patch by Jason McFall.
2663
2664 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2665
2666         * assembly.c: don't append .exe/.dll when the filename already contains
2667         one of those extensions.
2668
2669 2006-09-12  Martin Baulig  <martin@ximian.com>
2670
2671         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
2672         to array interfaces.
2673
2674 2006-09-11  Martin Baulig  <martin@ximian.com>
2675
2676         * reflection.c (mono_image_build_metadata): Create the
2677         MethodImpl's after emitting all types and methods, so we don't
2678         need another fixup pass for them.
2679
2680 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
2681
2682         * class.c (mono_class_from_name_case): Fix regression introduced by the last
2683         change.
2684
2685 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
2686
2687         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2688         unload.
2689
2690 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2691
2692         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2693         args is not set. Fixes #78926.
2694
2695 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2696
2697         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2698
2699         * image.c (load_class_names): Move this to class.c, and rename it to 
2700         'mono_image_init_name_cache'.
2701         (load_modules): Fix a warning.
2702
2703         * class.c icall.c image.c: Initialize image->name_cache lazily.
2704
2705         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2706         on its name using information in the AOT file.
2707
2708         * class.c (mono_class_from_name): Use the new hook function.
2709
2710 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2711
2712         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2713         correctly.
2714
2715         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2716         Fixes #79289.
2717         
2718 2006-09-06  Martin Baulig  <martin@ximian.com>
2719
2720         * icall.c (mono_lookup_internal_call): Small fix.
2721
2722 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2723
2724         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
2725         double g_free.
2726
2727 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2728
2729         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
2730         when --debug is specified.
2731
2732 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2733
2734         * class.c (setup_generic_array_ifaces): Fix a warning.
2735
2736 2006-09-04  Miguel de Icaza  <miguel@novell.com>
2737
2738         * Temporarily remove the patch to assemly.c that checks the
2739         assembly versions as it breaks our gacutil.
2740
2741 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2742
2743         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
2744
2745         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
2746         a net 1.0 runtime.
2747
2748         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
2749         created using the default ctor. Fixes #79152.
2750         (mono_string_builder_to_utf16): Ditto.
2751
2752 2006-09-01  Martin Baulig  <martin@ximian.com>
2753
2754         Fix handling of the generic array interfaces.
2755
2756         * class-internals.h
2757         (MonoDefaults): Removed `generic_array_class' and added
2758         `generic_ilist' class.
2759
2760         * class.c
2761         (mono_bounded_array_class_get): Add the new generic array interfaces.
2762         (setup_generic_array_ifaces): New static method; create vtable
2763         entries for each method in the generic array interfaces.
2764
2765         * metadata.c
2766         (select_container): Allow "parent-less" generic methods.
2767
2768         * marshal.c
2769         (mono_marshal_get_generic_array_helper): New public method.
2770
2771         * icall.c
2772         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
2773         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
2774         moved the interncall into System.Array.
2775
2776 2006-09-01  Raja R Harinath  <rharinath@novell.com>
2777
2778         A few more cases of avoiding work on types with ->byref set.
2779         Has the real fix for #79238
2780         * icall.c (is_generic_parameter): New helper.
2781         (ves_icall_Type_GetGenericParameterPosition): Use it.
2782         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
2783         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2784         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2785         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
2786         reference types.
2787         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
2788         reference types.
2789         (ves_icall_Type_get_IsGenericInstance): Likewise.
2790         (ves_icall_Type_get_IsGenericType): Likewise.
2791
2792 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2793
2794         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
2795         class if possible.
2796
2797         * mempool.h (mono_mempool_get_allocated): New helper function.
2798
2799         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
2800         change.
2801
2802         * mempool.c: Fix warnings and the calculation of stats.
2803
2804         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
2805
2806         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
2807
2808         * loader.c (mono_get_method_from_token): Update method_count stat.
2809
2810         * class-internals.h (MonoStats): Add some stats.
2811
2812 2006-08-31 Robert Jordan  <robertj@gmx.net>
2813
2814         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
2815         with managed variants.
2816         All code is contributed under the MIT/X11 license.
2817         
2818 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2819
2820         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
2821         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
2822
2823         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
2824
2825         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
2826         with cycles in classes.
2827
2828         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
2829
2830         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
2831         missing a [MarshalAs] directive. Fixes #79203.
2832
2833         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
2834         klass->marshal_info. Fixes #79217.
2835
2836 2006-08-30  Martin Baulig  <martin@ximian.com>
2837
2838         Committing a patch from Joachim Ante <joe@otee.dk>:
2839         Add support for binary data symbol stores.
2840
2841         * debug-mono-symfile.c
2842         (mono_debug_open_mono_symbol_file): Renamed into
2843         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
2844         arguments.
2845
2846         * mono-debug.c
2847         (mono_debug_open_image): Added `raw_contents' and `size' args.
2848         (mono_debug_init_2_memory): New public function.
2849
2850 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
2851
2852         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
2853
2854 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2855
2856         * appdomain.c: implement support for ShadowCopyFiles.
2857
2858 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2859
2860         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2861         when value is NULL (and should remove CID #51).
2862
2863 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2864
2865         * image.c: moved 2 functions to ../utils.
2866
2867 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2868
2869         * gc.c: cope with the target object of a GC handle being NULL
2870         (bug #78877).
2871
2872 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2873
2874         * class.c: recursively check parent's explicit implementations
2875         of interface methods (fixes bug #79125).
2876
2877 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2878
2879         * filewatcher.c: Avoid warnings when building, do not redefine
2880         constants that are defined.
2881
2882         Remove warnings.
2883
2884 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2885
2886         * image.c: don't fail when the link points to an absolute path.
2887
2888 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2889
2890         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2891         Fix CID #3.
2892
2893 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2894
2895         * image.c (full_path): A new method used to obtain the actual path
2896         of an assembly even in the presence of symbolic links.  
2897
2898         This is necessary for the case where we are running a binary that
2899         has been GACed, but we are using the "published" path name
2900         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2901         file in the GAC.
2902
2903         This was the source of the failure for the `xsp' command with the
2904         recent AppDomain changes, as far as the runtime was concerned,
2905         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2906         $prefix/mono/gac/blah/version/blah.exe.
2907
2908         (do_mono_image_open): use full path
2909
2910 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2911
2912         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2913
2914 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2915
2916         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2917         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2918
2919 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2920
2921         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2922         small structures. Fixes #78990.
2923
2924 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2925
2926         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2927
2928         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2929
2930 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2931
2932         * appdomain.c:
2933         * marshal.c: don't load all the assemblies from a domain into newly
2934         created ones. The new domains might have different rules and load
2935         assemblies from different locations. Fixes bug #76757.
2936
2937         Patch by Lluis. Conflicts resolved by Brian Crowell.
2938
2939 2006-08-16  Alp Toker  <alp@atoker.com>
2940
2941         * socket-io.c: First half of the fix for #79084.
2942         Set sa_size to the length of the content, not that of the struct.
2943         Don't add NULL suffix to the content, this should be done in
2944         managed code if needed.
2945
2946 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2947
2948         Fix part of #79012
2949         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2950         mono_metadata_parse_type returns NULL.
2951
2952 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2953
2954         * normalization-tables.h : new file for string normalization data.
2955         * locales.c, locales.h, icall.c :
2956           added load_normalization_resource() for string normalization,
2957           and icall as well.
2958         * Makefile.am : added normalization-tables.h to the sources.
2959
2960 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2961
2962         * marshal.c: Add more helper functions to reduce code duplication and use them
2963         everywhere.
2964
2965 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2966
2967         * marshal.c: Fix non-x86 stdcall warnings.
2968         
2969         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2970         them everywhere.
2971
2972 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2973
2974         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2975         type check on multi-dimensional arrays. Fixes #79000.
2976
2977 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2978
2979         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2980         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2981         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2982         * class-internals.h: add is_com_object to class structure.
2983         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2984         null checks to COM object marshalling. Fix .ctor call on RCW.
2985         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2986         
2987         All code is contributed under the MIT/X11 license.
2988
2989 2006-08-09  Dick Porter  <dick@ximian.com>
2990
2991         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2992         racing mono_monitor_allocator_lock() somewhere, so don't delete
2993         the critical section for now.  Found by running and exiting
2994         monodevelop.
2995
2996 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2997
2998         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2999         (ves_icall_System_ComObject_FindInterface): Ditto.
3000         (ves_icall_System_ComObject_CacheInterface): Ditto.
3001
3002         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
3003         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
3004
3005 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3006
3007         * threadpool.c: treat pipes from process asynchronous reads as sockets
3008         when reading from them, so we get select/poll or epoll to wait for
3009         data.
3010
3011 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
3012
3013         * loader.c: Fix a typo (CID #233) in the null check.
3014
3015 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
3018         Hopefully fixes #78949.
3019         
3020         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
3021         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
3022         bytes. Fixes #78972.
3023
3024 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3025
3026         * filewatcher.c: we need to set errno here.
3027
3028 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3029
3030         * filewatcher.c: let Win32Exception get the error value.
3031
3032 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3033
3034         * filewatcher.c: translate errno into win32 errors for Win32Exception
3035         to know what happened.
3036
3037 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
3038
3039         * threadpool.c: Fix more warnings.
3040
3041         * assembly.c (search_loaded): Fix warnings.
3042
3043         * threadpool.c (mono_thread_pool_finish): Fix warnings.
3044         (mono_async_invoke): Ditto.
3045
3046 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
3047
3048         * object.c (mono_remote_class_vtable): Need to create proxy vtable
3049         entries for __ComObject type in addition to ComImport types.
3050         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
3051         about hash table.
3052         
3053         All code is contributed under the MIT/X11 license.
3054
3055 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
3056
3057         * image.c: avoid tentative loading of modulerefs that contain
3058         no metadata (P/Invoke library names).
3059
3060 2006-07-28  Dick Porter  <dick@ximian.com>
3061
3062         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
3063         mono_loader_lock() somewhere, so don't delete the critical section
3064         for now.  Found by running and exiting monodevelop.
3065
3066 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3067
3068         * filewatcher.c: define the inotify syscalls when we're building on
3069         linux and have sys/syscall.h. The build system might not have support
3070         for inotify but the target system might have it.
3071
3072 2006-07-26  Miguel de Icaza  <miguel@novell.com>
3073
3074         * domain.c: Documentation updates.
3075
3076         * loader.c (mono_free_method): Do not release the method
3077         information if we are being profiled, as profilers will use this
3078         information at shut down to present some data to the user.
3079
3080         This is needed so that the profiler does not crash, as the
3081         profiler tends to keep MonoMethods around, and they might become
3082         invalid if we free these.
3083
3084         (mono_get_method_constrained): Return the original CIL stream
3085         method as well, so verification can be performed against it.
3086
3087 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3088
3089         * filewatcher.[ch]: support for inotify file system watcher.
3090         * icall.c: add new internal calls for the inotify file system watcher.
3091
3092 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3093
3094         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
3095         #78888.
3096
3097 2006-07-20  Dick Porter  <dick@ximian.com>
3098
3099         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
3100         warning.
3101
3102 2006-07-20  Dick Porter  <dick@ximian.com>
3103
3104         * threads.c (start_wrapper): Do the thread cleanup while we still
3105         hold a reference to its object.  Fixes bug 78123.
3106
3107 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
3108
3109         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
3110         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
3111           "managed-to-managed".
3112         * icall.c: Redirect string constructors that take sbyte* to
3113           ves_icall_System_String_ctor_RedirectToCreateString.
3114         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
3115           to CreateString () methods with matching signature.
3116         * reflection.c: Use original security informations for
3117           MONO_WRAPPER_MANAGED_TO_MANAGED.
3118         * security-manager.c: Use original security informations for
3119           MONO_WRAPPER_MANAGED_TO_MANAGED.
3120         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
3121           that is a placeholder and only its address should be used.
3122         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
3123           that is a placeholder and only its address should be used.
3124
3125 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
3126
3127         Begin implementing COM Interop.
3128         * appdomain.c: Increment corlib version.
3129         * class.c: Set ComImport classes' parent to __ComObject.
3130         * loader.c: Mark cominterop methods as such.
3131         * domain.c: Add __ComObject class to MonoDefaults structure.
3132         * image.c: Add 2 hashtables to the image for COM Interop related methods
3133         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
3134         using the mempool allocator
3135         
3136         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
3137         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
3138         declaration for mono_metadata_type_dup_mp.
3139         
3140         * debug-helpers.c: Added strings for two additional wrapper types
3141         * object.c: Create proxy objects for ComImport classes
3142         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
3143         and added __ComObject class to MonoDefaults structure.
3144         
3145         * object-internals.h: Finish MonoRealProxy definition, and add definition of
3146         MonoComInteropProxy and MonoComObject.
3147         
3148         * marshal.c: Added support for COM Interop
3149         (signature_cominterop): Converts managed signature to corresponding
3150         unmanaged COM signature.
3151         (cominterop_get_function_pointer): gets unmanaged function pointer via
3152         COM object vtable
3153         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
3154         (cominterop_get_method_interface): returns interface type that method is defined on
3155         (mono_mb_emit_cominterop_call): emits native call to function pointer
3156         gotten from vtable
3157         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
3158         that matches signature of unmanaged function.
3159         (cominterop_get_native_wrapper): wrapper around adjusted method call.
3160         (cominterop_get_invoke): forwards call from proxy to __ComObject
3161         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
3162         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
3163         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
3164         
3165         * marshal.h: Added Marshal icall declarations.
3166         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
3167         so we can access them in finalizer
3168         
3169 2006-07-14  Dick Porter  <dick@ximian.com>
3170
3171         * object.c (mono_type_initialization_cleanup): Fix a race
3172         condition by temporarily commenting out the critical section
3173         deletion.
3174
3175 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
3176
3177         * reflection.c (create_custom_attr): Fix some warnings.
3178         (create_custom_attr_data): Ditto.
3179         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
3180         types. Fixes #78855.
3181
3182 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
3183
3184         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
3185
3186         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
3187
3188 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
3189
3190         * reflection.c (resolve_object): Add support for DynamicMethod.
3191
3192         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
3193         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
3194
3195 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
3196
3197         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
3198         don't leak GPtrArray's pdata has we have no use (nor free) for it.
3199
3200 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
3201
3202         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
3203         Fixes #77888.
3204
3205 2006-06-30  Raja R Harinath  <rharinath@novell.com>
3206
3207         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
3208         slightly: remove a shadow local variable.
3209
3210 2006-06-29  Raja R Harinath  <rharinath@novell.com>
3211
3212         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
3213         definition that introduces the virtual function slot.
3214         Also fix Coverity #105.
3215
3216 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
3217
3218         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
3219         for dynamic assemblies. Fixes #78724.
3220
3221 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
3222
3223         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
3224         Fixes #78722.
3225
3226 2006-06-21  Martin Baulig  <martin@ximian.com>
3227
3228         * reflection.c
3229         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
3230         fixes #76484.
3231
3232 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
3233
3234         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
3235
3236 2006-06-20  Raja R Harinath  <rharinath@novell.com>
3237
3238         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
3239         nor TYPEREFs.
3240         * class.c (mono_class_create_from_typespec): Add 'context' argument.
3241         Inflate result if necessary.
3242         (mono_class_get_full): Remove old version.  Rename from
3243         'mono_class_get' and add 'context' argument.  Pass it to
3244         ..._create_from_typespec.
3245         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
3246         (mono_ldtoken): Revert change below.
3247
3248 2006-06-20  Martin Baulig  <martin@ximian.com>
3249
3250         * class.c (mono_ldtoken): Don't pass the generic context to
3251         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
3252
3253 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
3254
3255         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
3256         and later freeing it. Fixes #78638.
3257
3258 2006-06-15  Miguel de Icaza  <miguel@novell.com>
3259
3260         * icall.c (mono_class_get_throw): Revert over-zealous error
3261         throwing, the caller for mono_class_get_throw will cope with
3262         errors when classes are not properly initialized already.
3263
3264         The code still copes with loader exceptions though.
3265
3266         Fixes the regression in reftype1 and reftype3 from the CAS tests.
3267         
3268 2006-06-14  Miguel de Icaza  <miguel@novell.com>
3269
3270         Fixes the `make run1' version of RuntimeAbort (to be commited,
3271         source is in Bugzilla).
3272         
3273         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
3274         FALSE on class loading failure instead of returning true.
3275
3276         * class.c (mono_class_create_from_typedef): It is possible for
3277         mono_metadata_interfaces_from_typedef_full to fail if a class is
3278         not found, cope with this.
3279         
3280
3281 2006-06-14  Dick Porter  <dick@ximian.com>
3282
3283         * socket-io.c: 
3284         * process.c: Fix a bunch of signed/unsigned warnings from gcc
3285         4.1.1
3286
3287 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
3288
3289         * culture-info-table.h : oops, forgot to make it nsync with r61548.
3290
3291 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3292
3293         * icall.c: Another fix for building mono in Visual Studio.
3294
3295 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
3296
3297         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
3298         
3299 2006-06-09  Martin Baulig  <martin@ximian.com>
3300
3301         * debug-mono-symfile.c: Put this back and really fix it this
3302         time. Sorry for all the trouble.
3303
3304 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
3305
3306         * icall.c (mono_class_get_throw): Fix a warning.
3307         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
3308         ReflectionTypeLoadException if needed. Fixes #78606.
3309
3310         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
3311         (mono_class_init): Ditto.
3312
3313         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
3314         ref_only exceptions.
3315         (mono_loader_clear_error): Make this work even if there is no error.
3316
3317 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
3318
3319         * object-internals.h marshal.c marshal.h icall.c: Implement method 
3320         Marshal.GetComSlotForMethodInfo using internal call.
3321
3322 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
3323
3324         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
3325         a function for signalling it.
3326
3327         * class.c (mono_class_from_typeref): Use the new kind of loader error when
3328         a referenced assembly is not found.
3329
3330         * loader.c (mono_loader_error_prepare_exception): Add support for 
3331         LOADER_ERROR_ASSEMBLY. Fix formatting.
3332
3333 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
3334
3335         * domain.c appdomain.c class-internals.h marshal.c: Add support 
3336         for VARIANT marshalling on windows and increment corlib version
3337         since Variant struct was added.
3338
3339 2006-06-03  Miguel de Icaza  <miguel@novell.com>
3340
3341         * debug-mono-symfile.c: Revert Martin's previous patch which broke
3342         stack trace line information:
3343
3344         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
3345         (Martin) when looking up B which is between A and C, return A not C.
3346
3347         Bug is #78573.
3348
3349         Thanks to Alexander Olk for tracking this down.
3350
3351 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
3352
3353         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
3354         
3355         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
3356         avoid clobbering its value.
3357         (mono_string_to_lpstr): Fix a warning on windows.
3358
3359 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3360
3361         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
3362
3363         * reflection.c loader.c: Removed references to 'dummy' flag.
3364
3365         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
3366
3367         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
3368         it gets GC tracking.
3369
3370         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
3371         GC tracking.
3372         
3373         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
3374
3375         * marshal.c threadpool.c: Update callers of mono_async_result_new.
3376
3377         * appdomain.c: Bump corlib version.
3378
3379 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3380
3381         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3382         CEE_STIND_REF when working with object references.
3383
3384 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
3385
3386         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
3387         Fixes #78539.
3388
3389 2006-05-30  Miguel de Icaza  <miguel@novell.com>
3390
3391         * loader.c (method_from_memberref): Fix argument value for
3392         mono_loader_set_error_method_load (I was passing the MonoClass
3393         instead of the class name char *).
3394
3395 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
3396
3397         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
3398         CEE_STIND_REF when working with object references.
3399
3400 2006-05-30  Martin Baulig  <martin@ximian.com>
3401
3402         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
3403         mono_method_full_name() change and replace the ':' with a '.'
3404         here.
3405
3406 2006-05-30  Martin Baulig  <martin@ximian.com>
3407
3408         * debug-mono-symfile.c
3409         (mono_debug_symfile_lookup_location): Fix the algorithm:
3410         when looking up B which is between A and C, return A not C.
3411
3412 2006-05-29  Martin Baulig  <martin@ximian.com>
3413
3414         * mono-debug.h
3415         (MonoDebugMethodInfo): Make the typedef public.
3416         (MonoDebugSourceLocation): New public struct.
3417
3418         * mono-debug.c
3419         (mono_debug_source_location_from_address): Removed.
3420         (mono_debug_source_location_from_il_offset): Removed.
3421         (mono_debug_il_offset_from_address): Removed.
3422         (mono_debug_address_from_il_offset): Removed.
3423         (mono_debug_lookup_method): New public function.
3424         (mono_debug_lookup_source_location): New public function; replaces
3425         the old mono_debug_source_location_from_*() functions; see the
3426         inline documentation.
3427         (mono_debug_free_source_location): New public function.
3428         (mono_debug_print_stack_frame): New public function; see the
3429         inline documentation.
3430
3431         * debug-mono-symfile.c
3432         (mono_debug_find_source_location): Renamed into
3433         mono_debug_symfile_lookup_location(); only take a
3434         `MonoDebugMethodInfo *' and an `offset' argument; added inline
3435         documentation.
3436         (mono_debug_find_method): Renamed into
3437         mono_debug_symfile_lookup_method().
3438
3439 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
3440
3441         * assembly.c (mono_assembly_open_full): Dont overwrite the status
3442         returned by mono_image_open_full ().
3443
3444         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
3445         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
3446         #78517.
3447
3448         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
3449         #78518.
3450
3451 2006-05-27  Miguel de Icaza  <miguel@novell.com>
3452
3453         * class.c (mono_class_from_typeref): handle missing images
3454         earlier, deals with bug #78418.   Refactor code; 
3455
3456         Fix a warning introduced in my previous commit (some stale code
3457         from before I revisited my patch).
3458
3459         * class.c (mono_class_create_from_typedef): On failure, remove the
3460         class from the MonoImage->class_cache as the class is not
3461         initialized;   Fixes the leak pointed out by Paolo.
3462
3463 2006-05-25  Dick Porter  <dick@ximian.com>
3464
3465         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
3466         DeleteCriticalSections until I figure out which one may still be
3467         sometimes locked when mono_thread_cleanup is called.
3468
3469 2006-05-24  Dick Porter  <dick@ximian.com>
3470
3471         * threads.c (mono_thread_cleanup): Move the threading cleanup out
3472         of mono_thread_manage and back into its own function, so it can be
3473         called after the finalizer thread has finished.
3474
3475         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
3476
3477 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
3478
3479         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
3480         Fixes #78495.
3481
3482         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
3483         with non-blittable elements.
3484         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
3485
3486 2006-05-24  Martin Baulig  <martin@ximian.com>
3487
3488         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3489         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
3490
3491         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
3492         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
3493         `mono_debugger_event_handler' to NULL.
3494
3495 2006-05-24  Martin Baulig  <martin@ximian.com>
3496
3497         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
3498
3499 2006-05-24  Martin Baulig  <martin@ximian.com>
3500
3501         * mono-debug-debugger.h
3502         (mono_debugger_create_notification_function): Added
3503         `MonoCodeManager *' argument.
3504
3505 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
3506
3507         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
3508
3509 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
3510
3511         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
3512         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
3513         implementation.
3514
3515 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
3516
3517         * icall.c: precise GC support: objects can't be stored in unmanaged
3518         memory anymore, even if they are kept alive by other references: since
3519         they can move the GC needs to be able to always find them.
3520
3521 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
3522
3523         * object.c: precise GC support for static fields. Support
3524         for moving GCs: write barriers and pinned allocation for interned
3525         strings.
3526
3527 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
3528
3529         * domain.c, domain-internals.h: precise GC support for the MonoDomain
3530         structure.
3531
3532 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
3533
3534         * class.c, gc.c: sgen and precise GC updates.
3535
3536 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
3537
3538         * marshal.h, marshal.c: added write barrier wrapper and precise type
3539         fixes.
3540
3541 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
3542
3543         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
3544         support.
3545
3546 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
3547
3548         * reflection.c: precise and sgen GC updates.
3549
3550 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
3551
3552         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
3553
3554 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
3555
3556         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
3557
3558 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
3559
3560         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
3561         MONO_TYPE_OBJECT. Fixes #78462.
3562
3563 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
3564
3565         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
3566         and blittable types.
3567
3568 2006-05-17  Miguel de Icaza  <miguel@novell.com>
3569
3570         * class.c (mono_class_get_exception_for_failure): Implement parts
3571         of a TODO: if the loader error is set (instead of the class
3572         error), we return a Loader exception that can be properly thrown
3573         elsewhere.
3574
3575         This was exposed by some Winforms 2.0 code that I tried to run
3576         (Atsushi pointed me to it).
3577
3578 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
3579
3580         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
3581         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
3582         
3583         * marshal.c (emit_marshal_vtype): Add limited support for 
3584         UnmanagedType.LPStruct. Fixes #78427.
3585
3586         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
3587         Applied a patch from kangaroo to fix #77523.
3588
3589 2006-05-17  Martin Baulig  <martin@ximian.com>
3590
3591         * threads.c
3592         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
3593         (debugger_thread_created): Removed.
3594         (debugger_thread_exited): Removed.
3595
3596 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
3597
3598         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3599
3600         * object-internals.h (MonoReflectionResource): Sync with managed version.
3601
3602 2006-05-12  Wade Berrier <wberrier@novell.com>
3603
3604         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
3605
3606 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
3609         functions try to allocate from the image mempool.
3610
3611 2006-05-12  Dick Porter  <dick@ximian.com>
3612
3613         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
3614
3615 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
3616
3617         * object.c: The FieldGetter and FieldSetter methods require the full
3618         name of the class, not only the name. Fixes bug #78277.
3619
3620 2006-05-11  Miguel de Icaza  <miguel@novell.com>
3621
3622         * loader.c (method_from_memberref): Do not pass the NULL klass to
3623         mono_loader_set_error_() methods.  Pass the non-NULL value
3624         (class). 
3625
3626 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
3627
3628         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
3629         (mono_assembly_close): Null out assembly->image->references after freeing it.
3630
3631         * image.c (mono_image_close): Free image->references.
3632         
3633         * reflection.c (mono_image_basic_init): Fix a small memory leak.
3634
3635 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3636
3637         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
3638         before checking if it's NULL (g_assert).
3639
3640 2006-05-10  Martin Baulig  <martin@ximian.com>
3641
3642         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
3643         I thought I already killed that two months ago, but now it somehow reappeared.
3644
3645 2006-05-10  Martin Baulig  <martin@ximian.com>
3646
3647         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
3648
3649 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
3650
3651         * reflection.c: Allocate memory for dynamically created methods in the image
3652         mempools.
3653
3654 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
3655
3656         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
3657         don't use the ad pointer before checking if it's NULL (g_assert).
3658
3659 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
3660
3661         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
3662         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
3663
3664         * marshal.c: Allocate all signatures from mempools.
3665
3666         * marshal.c: Allocate some more signatures from mempools.
3667
3668 2006-05-09  Miguel de Icaza  <miguel@novell.com>
3669
3670         * object.c (mono_load_remote_field): The code used to provide a
3671         temporary variable for returning results if the user did not
3672         provide a result pointer.  But our temporary variable was allocted
3673         on the satck.
3674
3675         Fix calling code to always pass a result area.   Coverity ID 103.
3676
3677 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
3678
3679         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
3680         value, not the old. Fixes #78312.
3681         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
3682
3683         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
3684         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
3685         per-image cache.
3686
3687         * assembly.c (mono_assembly_close): Free image->references.
3688
3689         * assembly.c (mono_assembly_names_equal): Fix a warning.
3690         (mono_assemblies_cleanup): Cleanup more global data.
3691
3692         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3693
3694         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3695         ptr_cache and image->modules.
3696
3697         * image.c (mono_image_init): Allocate array_cache lazily.
3698         
3699 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3700
3701         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3702         behavior was changed recently and has bad side effects.
3703
3704 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3705
3706         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3707         
3708         * assembly.c (mono_assembly_close): Remove a debug printf.
3709
3710         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3711
3712         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3713         to also allow for temporary references between mono_image_open ()/close ().
3714
3715         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3716
3717 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3718
3719         * marshal.c: Fix support for dynamic methods.
3720
3721         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
3722
3723         * marshal.c (mono_marshal_cleanup): New cleanup function.
3724
3725         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
3726         image mempools.
3727
3728         * class.c (mono_class_init): Fix leaking class->nested_classes.
3729
3730         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
3731
3732         * image.c (mono_image_init): Initialize the new cashes.
3733
3734         * image.c (mono_image_close): Destroy the new cashes.
3735
3736         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
3737
3738         * mempool.c (mono_mempool_strdup): New helper function.
3739
3740         * class-internals.h: Add prototype for mono_loader_unlock ().
3741
3742         * domain.c (mono_jit_info_table_find): Fix a warning.
3743         (mono_debugger_check_runtime_version): Ditto.
3744
3745         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
3746         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
3747         functions to these modules.
3748
3749         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
3750         metadata modules.
3751         
3752         * marshal.c (mono_free_bstr): Fix a warning.
3753
3754         * assembly.c (mono_assembly_open_full): Fix another small leak.
3755
3756         * object.c: Fix some unload leaks in the remoting code.
3757
3758         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
3759         function.
3760
3761         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
3762
3763         * reflection.c: Fix some unload leaks in dynamic assemblies.
3764
3765 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
3766
3767         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
3768         * marshal.h: Add BSTR support on Win32
3769         * icall.c: Add BSTR icalls
3770         * metadata.h: Add BSTR enums
3771
3772 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3773
3774         Work to catch the crash from #76795 and turn it into an
3775         exception.   As I stubbed out pieces of the VisualBasic support,
3776         I found a number of places where the code was failing and I added
3777         checks to those places. 
3778         
3779         * metadata.c (do_mono_metadata_parse_generic_class): Make this
3780         function return a status code.  If we fail to parse the signature
3781         from mono_metadata_parse_generic_inst, return FALSE.
3782
3783         * loader.c (mono_get_method_from_token): If we fail to load the
3784         method (mono_class_get) return NULL.   
3785
3786         * (method_from_memberref): Return NULL if we are unable to parse
3787         the method signature
3788
3789         (mono_loader_error_prepare_exception): Since we now use the
3790         loader_error flag internally to stop processing, and obtaining
3791         exceptions that might be thrown will walk this code path the
3792         proper way of going from a MonoLoaderError into a
3793         MonoException was convoluted.   This new routine encapsulates the
3794         process of turning the error into an exception and *clearing* the
3795         error afterwards.
3796         
3797 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3798
3799         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
3800         with missing assemblies), and to cope with:
3801
3802                 * Missing fieldref from a non-existing assembly.
3803                 * Missing methodref from a non-existing assembly.
3804
3805         The first batch of work to address *some* of the issues from 76661.
3806         
3807         * object.c (mono_class_create_runtime_vtable): If we fail to
3808         initialize the class raise the exception here. 
3809
3810         * metadata.c (mono_class_get_overrides_full): If any methods fail
3811         to load return the failure to the caller.
3812
3813         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
3814         flagging assemblies that failed to load.   
3815
3816         Do not crash if we are unable to load the assembly.
3817
3818         (mono_assembly_close): Do nothing with REFERENCE_MISSING
3819         assemblies. 
3820
3821         * loader.c (mono_loader_set_error_type_load): Change the
3822         convention to always pass unallocated strings, so we make our own
3823         copies (I know our own code had duplicated strings before, but
3824         this keeps the normal conventions).
3825         (method_from_memberref): Call mono_loader_set_error_method_load
3826         for all possible failures of loading the class. 
3827         Remove assert, turn into a loader error.
3828
3829         (mono_loader_error_to_exception): Move this routine from mini
3830         (mini_loader_error_to_exception) there was no need to have that in
3831         mini. 
3832
3833         * class.c (mono_class_from_typeref): If we were not able to load
3834         the assembly with mono_assembly_load_reference, call the
3835         mono_loader_set_error_type_load to register the problem.
3836
3837         (mono_class_setup_fields): If we fail to load the type from
3838         mono_metadata_parse_type_full, call mono_class_set_failure and
3839         break from the loop.
3840
3841         If class->exception_type is set, we do not layout the fields as
3842         that might crash the runtime, and instead return (from breaking
3843         from the previous loop).
3844
3845         (mono_class_setup_vtable): This now returns a boolean indicating
3846         whether the table was properly setup.   The decision is driven by
3847         mono_class_get_overrides_full which might run into non-existing
3848         methods. 
3849         
3850         (mono_class_init): Returns TRUE on success or FALSE if there was a
3851         problem in loading the type (incorrect assemblies, missing
3852         assemblies, methods, etc).
3853
3854         When we call mono_class_setup_fields we also check for a potential
3855         error inside this call (either a class exception or a general
3856         loader exception).
3857
3858         (mono_class_create_from_typedef): If the parent fails to load
3859         (calling mono_class_get_full) return NULL.
3860         
3861         ** Important **
3862
3863         calls to mono_metadata_parse_type_full should be checked
3864         everywhere and set the mono_class_set_failure
3865         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3866
3867         The current patch checks the places where my manually constructed
3868         tests show the errors are showing up, but we should do it
3869         everywhere. 
3870
3871         ** Important2 **
3872
3873         mono_class_init return values should be tested everywhere, like
3874         the previous case this is something that we should audit
3875         everywhere and not only on the cases exposed by the tests I
3876         created. 
3877
3878 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3879
3880         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3881         boolean parameter and instead pass the information on `options'
3882         parameter (FileOptions).
3883
3884         * icall.c: Register the new signature for MonoIO.Open.
3885
3886         * debug-helpers.c (dis_one): Trying to understand how coverity
3887         works.  Fix Run 5, item 78.
3888
3889 2006-04-26  Dick Porter  <dick@ximian.com>
3890
3891         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3892         dereference.
3893
3894 2006-04-25  Martin Baulig  <martin@ximian.com>
3895
3896         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3897
3898         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3899         debugger_thread_created().
3900         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3901         special way.
3902         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3903         (mono_debugger_finalize_threads): New function; undo the effects
3904         of mono_debugger_init_threads().
3905         (mono_debugger_create_all_threads): Removed.
3906
3907 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3908
3909         * image.c (mono_image_close): Tidy up trace messages.
3910
3911         * assembly.c (mono_assembly_close): Ditto.
3912
3913         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3914         no longer references an already freed assembly. Fixes #78168.
3915
3916 2006-04-21  Dick Porter  <dick@ximian.com>
3917
3918         * threads.c (mono_thread_detach): Fix reference counting when
3919         detaching threads.
3920
3921 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3922
3923         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3924         #78155.
3925
3926 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3927
3928         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3929         (mono_type_to_stind): Ditto.
3930
3931         * marshal.c: Use the new helper functions to simplify code.
3932
3933         * image.c (mono_image_close): Add some code for help debug assembly unloading
3934         problems.
3935
3936         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3937         image mempool.
3938
3939         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3940         assembly was already loaded in another appdomain. Fixes #78083.
3941
3942 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3943
3944         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3945         referenced assemblies.
3946         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3947
3948         * domain.c (mono_domain_free): Add a trace message.
3949
3950         * appdomain.c (add_assemblies_to_domain): Ditto.        
3951
3952         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3953         field.  
3954
3955 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3956
3957         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3958
3959 2006-04-12  Martin Baulig  <martin@ximian.com>
3960
3961         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3962         `USE_INCLUDED_LIBGC'.   
3963
3964 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3965
3966         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3967         the patch contains ../ and a small directory name later. Hopefully fixes
3968         #78035.
3969
3970 2006-04-10  Martin Baulig  <martin@ximian.com>
3971
3972         Clean up the debugger's thread-handling code.
3973
3974         The debugger's thread-handling code has been moved from
3975         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3976         over the `threads' hash, keep track of exiting threads and also
3977         use proper locking.
3978
3979         We can now debug XSP and XSP based applications with the debugger.
3980
3981         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3982
3983         * threads.h
3984         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3985         (mono_install_thread_callbacks): Likewise.      
3986
3987         * threads.c (mono_thread_callbacks): Removed.
3988         (debugger_thread_created, debugger_thread_exited): New static functions.
3989         (start_wrapper): Call debugger_thread_created().
3990         (thread_cleanup): Call debugger_thread_exited().
3991         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3992         (mono_debugger_init_threads): New public function.
3993         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3994         iterate directly over the `threads' hash and also use proper locking.
3995
3996         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3997
3998         * mono-debug-debugger.h
3999         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
4000
4001 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
4002
4003         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
4004         argument type=array. Fixes #78057.
4005
4006 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
4007
4008         * culture-info-table.h : regenerated. Fixed bug #69652.
4009
4010 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
4011
4012         * loader.c metadata.c: Reapply a variant r59116.
4013         
4014         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
4015
4016         * class.c (mono_class_setup_interface_offsets): New internal function.
4017
4018         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
4019         interfaces too. Fixes #77398.
4020
4021         * reflection.c (encode_cattr_value): Add support for 
4022         parameter type=object, argument type=array.
4023         (load_cattr_value): Ditto. Fixes #77916.
4024
4025         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
4026         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
4027
4028         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
4029         a byval char array and CharSet is Ansi.
4030
4031         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
4032
4033 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
4034
4035         * metadata.c: Add some locking comments.
4036         
4037         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
4038         mempool.
4039         (mono_metadata_free_method_signature): Don't free the signature itself.
4040
4041         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
4042
4043         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
4044         reference the same MonoImage.
4045         (mono_assembly_load_from_full): Add an assert.
4046
4047 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
4048
4049         * image.c (mono_image_close): Don't put the image we are about to free into the
4050         loaded_images_guid_hash.
4051
4052         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
4053         to reduce code duplication.
4054
4055         * marshal.c: Register the native functions called by this module as icalls, to
4056         somewhat centralize the creation of MonoMethodSignature's.
4057
4058         * loader.c (mono_method_signature): Add a cache for method signatures.
4059
4060         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
4061         the parameter attributes of a method.
4062         (mono_metadata_parse_method_signature_full): Refactored the computation of
4063         parameter attributes into a separate function. Also avoid one allocation in
4064         most cases.
4065
4066         * assembly.c (mono_assembly_close): Ditto.
4067
4068         * image.c (mono_image_close): Log trace messages with INFO level.
4069
4070         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
4071
4072         * image.c reflection.c: Correct reference counting of image modules.
4073         
4074         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
4075         of this function from the image mempool.
4076         
4077         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
4078         to allow more cached types to be used.
4079
4080         * mono-debug.c (mono_debug_add_method): Appled patch from
4081         David S. Miller  <davem@sunset.davemloft.net>: Access 
4082         minfo->lexical_blocks[] entry elements using read32().
4083
4084 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
4085
4086         * loader.c (mono_free_method): No longer free the method header for non-dynamic
4087         methods as it is allocated from the mempool.
4088
4089         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
4090         image mempool.
4091
4092         * metadata-internals.h: Add comments describing the reference counting scheme
4093         used for MonoImage and MonoAssembly.
4094
4095         * image.c assembly.c reflection.c: Rework reference counting of images and 
4096         assemblies so they are freed when the runtime is shut down. Free some 
4097         additional memory structures when an image is unloaded.
4098         
4099 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
4100
4101         * class.c loader.c reflection.c: Allocate more data structures in
4102         the image mempool.
4103
4104 2006-03-31  Miguel de Icaza  <miguel@novell.com>
4105
4106         * icall.c
4107         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
4108         build on pre glib 2.4 systems.
4109
4110 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
4111
4112         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
4113
4114         * icall.c: Fix some warnings.
4115
4116 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
4117
4118         * culture-info-table.h : regenerated.
4119
4120 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
4121
4122         * threads.c, object-internals.h, verify.c: changed the culture caching
4123         code to use a normal MonoArray for storage so the GC can keep track of
4124         them easily. Fixed bits of the cache logic, too and simplified the
4125         code.
4126
4127 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
4128
4129         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
4130         thread for non-Boehm GCs.
4131
4132 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
4133
4134         * domain.c, object.c, domain-internals.h: reduce the amount of memory
4135         needed to keep track of the data for static fields.
4136
4137 2006-03-29  Raja R Harinath  <rharinath@novell.com>
4138
4139         Fix #75172
4140         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
4141         for interface classes.  Use 'num_methods' instead.
4142         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
4143         before using '->vtable_size' field.
4144
4145 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
4146
4147         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
4148         doesn't contain managed pointers, so use a normal hashtable.
4149
4150 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
4151
4152         * reflection.c, class-internals.h, domain.c: fixed handling of types
4153         used as values for objects in custom attributes (bug #77915):
4154
4155 2006-03-24  Martin Baulig  <martin@ximian.com>
4156
4157         * class.c (mono_class_setup_fields): Added support for generic
4158         instances; fixes #77580.
4159
4160 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4161
4162         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
4163
4164 2006-03-24  Dick Porter  <dick@ximian.com>
4165
4166         * file-io.c (get_file_attributes): More stat macro breakage.
4167         Fixes bug 77759.
4168
4169 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
4170
4171         * profiler.c: added the file=filename option in the default profiler
4172         to output the profile data to filename.
4173
4174 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4175
4176         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
4177         bug #77877.
4178
4179 2006-03-22  Martin Baulig  <martin@ximian.com>
4180
4181         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
4182         allocated `MonoClassField *' in `fb->handle'.
4183
4184 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
4185
4186         * class.c, image.c, metadata-internals.h: implemented new mechanism to
4187         allocate interface ID to save memory and allow better ID reuse on
4188         appdomain unload. setup_generic_vtable () removal from Martin.
4189
4190 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4191
4192         * object.h, appdomain.c, domain.c, exception.c, icall.c,
4193         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
4194         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
4195         write barriers for reference stores with managed objects accessed with
4196         C structures in the runtime and in embedding programs.
4197
4198 2006-03-20  Raja R Harinath  <rharinath@novell.com>
4199
4200         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
4201         'interface_id' and 'max_interface_id' fields of MonoClasses
4202         representing open generic types.
4203
4204 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
4205
4206         * object.h, object.c, icall.c: added functions to deal with
4207         storing valuetypes that contain references in managed objects.
4208         * reflection.c, string-icalls.c, threads.c, marshal.c: small
4209         fixes and comments around uses of mono_array_addr ().
4210
4211 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
4212
4213         * object.h, icall.c, monitor.c: object.GetHashCode ()
4214         implementation that supports the moving garbage collector.
4215
4216 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
4217
4218         * icall.c, threads-types.h, threads.c: implemented finalizer for
4219         LocalDataStoreSlot.
4220
4221 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
4222
4223         * metadata.c (mono_type_size): Add a fixme.
4224         (mono_type_stack_size): Ditto.
4225
4226         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
4227         'type_forwarders' field.
4228
4229         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
4230         attribute from net 2.0.
4231
4232         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
4233         from class.c.
4234
4235         * class.c (mono_class_setup_fields): Fix a warning.
4236         
4237         * class.c (mono_class_from_name): Add support for assemblyref entries
4238         in the EXPORTEDTYPE table.
4239
4240         * reflection.c: Add support for handling type forwarders under net 2.0.
4241
4242         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
4243         
4244 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
4245
4246         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
4247         overwriting entries in ModuleBuild->types, also clean up the code
4248         a little. Fixes #77774.
4249
4250 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
4251
4252         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
4253         load friend assembly info when present.
4254
4255 2006-03-14  Raja R Harinath  <rharinath@novell.com>
4256
4257         Fix crasher on gtest-158.cs.
4258         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
4259         the return value if the MonoClass we want is yet in an
4260         inconsistent state.
4261         * class.c (mono_class_create_from_typedef): Add an comment
4262         explaining an order dependency between mono_class_setup_parent and
4263         mono_class_setup_mono_type.
4264
4265 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
4266
4267         * class.c: documentation updates and events bug fix.
4268
4269 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
4270
4271         * class.c: some cleanup, locking fixes.
4272
4273 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
4274
4275         * class.c: fix the generics code to setup nested
4276         type info to the instantiated type (bug #77770).
4277
4278 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
4279
4280         * marshal.c: fixed a few type correctness issues.
4281
4282 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4283
4284         * loader.c: the Set/Get/Addrtess array methods should be public.
4285
4286 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
4287
4288         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
4289         
4290         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
4291         info->wrapper.
4292
4293 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
4294
4295         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
4296
4297         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
4298
4299         * mempool.c (mono_mempool_alloc): Speed this up a bit.
4300         (mono_mempool_alloc0): Ditto.
4301
4302 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4303
4304         * socket-io.c:
4305         (create_object_from_sockaddr): it was allocating 4 extra bytes
4306         for the AF_UNIX data. Fixes bug #77747.
4307
4308 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
4309
4310         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
4311
4312 2006-03-09  Dick Porter  <dick@ximian.com>
4313
4314         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
4315         Fixes bug 76966 again.
4316
4317 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
4318
4319         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
4320         names from r57532
4321         * appdomain.c: Bumped corlib version to 48 (due to r57532)
4322
4323 2006-03-07  Martin Baulig  <martin@ximian.com>
4324
4325         * object.c
4326         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
4327
4328 2006-03-07  Martin Baulig  <martin@ximian.com>
4329
4330         * class.c
4331         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
4332         regression introduced in r56970; see gtest-252.cs.
4333
4334         * loader.c (mono_get_method_constrained): Correctly handle generic
4335         methods; see gtest-253.cs.
4336
4337 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
4338
4339         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
4340
4341 2006-03-04  Martin Baulig  <martin@ximian.com>
4342
4343         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
4344         compute the parent type at runtime, just like we're already doing
4345         it for interfaces.
4346
4347         * reflection.c
4348         (mono_reflection_bind_generic_parameters): Don't compute the
4349         parent type anymore.
4350
4351         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
4352
4353 2006-03-04  Martin Baulig  <martin@ximian.com>
4354
4355         * mono-debug-debugger.h
4356         (mono_debugger_create_notification_function): Allocate memory at
4357         runtime and return a pointer to it.
4358
4359 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
4360
4361         * assembly.c: Fix windows build.
4362         
4363         * assembly.c: Fix build.
4364
4365         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
4366
4367         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
4368         
4369 2006-03-03  Dick Porter  <dick@ximian.com>
4370
4371         * process.c
4372         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4373         Check parameters before dereferencing them.  Fixes Aaron's part of
4374         bug 77393.
4375
4376 2006-03-03  Raja R Harinath  <rharinath@novell.com>
4377
4378         Fix performance regression.
4379         * loader.c (find_method_in_class): Add 'from_class' argument.
4380         Rename 'klass' argument to 'in_class'.  The signature is compared
4381         against the method in 'in_class', and the corresponding method is
4382         returned from 'from_class'.
4383         (find_method): Walk both 'in_class' and 'from_class' in parallel.
4384         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
4385         type definition and generic instantiation in parallel.
4386         (mono_get_method_constrained): Update to changes.
4387
4388 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
4389
4390         * threads.c: make sure the domain is correct, too when doing
4391         mono_thread_attach ().
4392
4393 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
4394
4395         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
4396         windows. Fixes #77683.
4397
4398 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
4399
4400         * object.h, *: introduced specific way to set elements of an array
4401         of references to be used as write barrier. Still need to audit the
4402         uses of mono_array_addr.
4403
4404 2006-03-01  Miguel de Icaza  <miguel@novell.com>
4405
4406         * object-internals.h: New field to cache the assmebly name, patch
4407         from Tambet Ingo (tambet@ximian.com)
4408
4409 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
4410
4411         * decimal.h, class-internals.h, metadata-internals.h,
4412         file-io.h: mark a few function declarations as internal, to
4413         reduce the number of PLT entries.
4414
4415 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4416
4417         * file-io.c: fix typo in warning message.
4418
4419 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
4420
4421         * loader.c: on unix, lookup the "*A" version of a function
4422         if charset is auto as a second option before failing.
4423
4424 2006-02-28  Raja R Harinath  <rharinath@novell.com>
4425
4426         * class.h (mono_class_inflate_generic_method): Revert to two
4427         argument version.
4428         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
4429         (mono_class_inflate_generic_method_full): Add.
4430         * class.c (mono_class_inflate_generic_method_full): Rename from
4431         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
4432         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
4433         * loader.c, reflection.c: Update to changes.
4434
4435 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
4436
4437         * icall.c: const fixes and small improvements.
4438
4439 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4440
4441         * threadpool.c: for asynchronous connect(), enable the same workaround
4442         for BSD 6 as for the Mac. Fixes bug #77637.
4443
4444 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
4445
4446         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
4447         formatted classes. Fixes #77524.
4448
4449 2006-02-24  Raja R Harinath  <rharinath@novell.com>
4450
4451         * class.c (inflate_generic_type): Add a couple more
4452         micro-optimizations.
4453         (inflate_generic_context): Don't use the 'gmethod' from
4454         'inflate_with'.
4455         (mono_class_inflate_generic_method): If the method has generic
4456         parameters, but the passed-in context doesn't have a 'gmethod',
4457         create one.  Use the possibly simplified generic instantiation
4458         from the declaring class instead of the one passed in.
4459
4460 2006-02-24  Raja R Harinath  <harinath@gmail.com>
4461
4462         Make generic method signature and method header handling lazy.
4463         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
4464         (inflate_generic_header): Likewise.
4465         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
4466         parameter to avoid inflating types.
4467         (mono_get_inflated_method): Empty out.
4468         * class.h (mono_class_inflate_generic_method): Update to changes.
4469         * loader.c (mono_get_method_from_token): Don't parse signature for
4470         generic methods, nor methods of generic classes.
4471         (mono_method_signature): Rename from 'mono_method_signature'.
4472         Inflate signature on demand.
4473         (mono_method_get_header): Inflate method header on demand.
4474         * reflection.c: Update to changes.
4475
4476 2006-02-23  Raja R Harinath  <rharinath@novell.com>
4477
4478         * metadata.c (mono_metadata_inflate_generic_inst): If the
4479         instantiation is closed, don't bother expanding it in the new
4480         context.
4481         * class.c (inflate_generic_class): If the generic instantiation
4482         doesn't change after inflation, return the argument itself.
4483         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
4484         Add bounds checks.
4485         (inflate_generic_context): If neither the generic class nor the
4486         generic method instantiations change, return the original context.
4487         * reflection.c (mono_method_get_object): Do
4488         'mono_get_inflated_method' before accessing the ->klass field.
4489         (inflate_mono_method): Don't create a MonoGenericMethod unless
4490         necessary.
4491         (inflate_method): Don't pass a constructed type as the declaring
4492         type of a methodbuilder.
4493
4494 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
4495
4496         * object.c: fix memory overwrite.
4497
4498 2006-02-22  Dick Porter  <dick@ximian.com>
4499
4500         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
4501         it doesn't work any more.
4502         (mono_threads_request_thread_dump): Fix unused variable warnings.
4503
4504 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
4505
4506         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
4507         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
4508         the public header file.
4509
4510 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
4511
4512         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
4513
4514 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
4515
4516         * class-internals.h, object.c: reduce the size of MonoVTable
4517         and store the interface_offsets array at negative offsets.
4518
4519 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
4520
4521         * metadata.c: tweak table descriptors data structures to reduce
4522         size and runtime relocations.
4523
4524 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4525
4526         * marshal.c: fix some types and opcodes to be type-safe
4527         in marshaling wrappers.
4528
4529 2006-02-21  Ankit Jain  <jankit@novell.com>
4530
4531         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
4532
4533 2006-02-21  Raja R Harinath  <rharinath@novell.com>
4534
4535         * metadata.c (get_constraints): Relax debugging checks for monodis.
4536
4537 2006-02-21  Ankit Jain  <jankit@novell.com>
4538
4539         * metadata.c (mono_metadata_load_generic_params): Move the code
4540         checking for ambiguous generic params from here to mono/dis/get.c
4541         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
4542
4543 2006-02-21  Raja R Harinath  <harinath@gmail.com>
4544
4545         Fix assertion triggered when compiling nemerle.
4546         * class.c (mono_get_shared_generic_inst): Rename from
4547         get_shared_inst and make non-static.
4548         * loader.c (mono_get_shared_generic_method): New.  Used to create
4549         the MonoGenericContext-equivalent of a MonoGenericContainer.
4550         (mono_get_method_from_token): Initialize the 'context' field of
4551         the created MonoGenericContainer.
4552         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
4553         * metadata.c (get_constraints): Add sanity check.
4554         * class-internals.h: Add new internal methods.
4555
4556         * reflection.c (verify_safe_for_managed_space): New sanity check.
4557         Currently checks that owner-less generic parameters aren't allowed
4558         in managed space.
4559         (mono_type_get_object): Use it.
4560         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
4561         that are now in mono_type_get_object.
4562         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
4563
4564 2006-02-19  Raja R Harinath  <harinath@gmail.com>
4565
4566         * metadata.c (mono_type_create_from_typespec): Rename from
4567         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
4568         argument and caching of types in the generic container.
4569         (unwrap_arrays, find_generic_param): Remove.
4570         * metadata-internals.h: Update.
4571         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
4572
4573 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
4574
4575         * class.c (mono_class_get_exception_for_failure): Fix a warning.
4576
4577         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
4578         return values. Fixes #77581.
4579
4580         * class.c (mono_fnptr_class_get): Switch name and name_space.
4581
4582         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
4583         classes and add support for [In, Out] attributes.
4584         (mono_marshal_free_asany): Ditto. Fixes #77524.
4585
4586 2006-02-18  Raja R Harinath  <harinath@gmail.com>
4587
4588         * class.c (mono_class_from_generic_parameter): Make more robust to
4589         incomplete MonoGenericContainers from monodis.
4590
4591 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4592
4593         * class-internals.h: added some more exception types.
4594         * class.c, metadata.c: added a few checks to handle missing
4595         types.
4596
4597 2006-02-17  Raja R Harinath  <rharinath@novell.com>
4598
4599         Use owner-less generic-params some more.
4600         * class.c (my_mono_class_from_generic_parameter): Remove.
4601         (mono_class_from_generic_parameter): Handle null image,
4602         param->name and param->owner.
4603         (mono_class_from_mono_type): Update.
4604         (mono_class_create_from_typespec): Remove 'container' parameter.
4605         If that parameter is non-null, the result is always inflated by
4606         'mono_class_get_full' anyway.
4607         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
4608         parameter.
4609         (mono_class_get_full): Update.
4610
4611         * class.c (inflate_generic_type) [GENERICINST]: If the generic
4612         instance is not open, don't bother inflating.
4613         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
4614         parse metadata for inflated classes.
4615         (_mono_class_get): Change GenericContext* parameter to
4616         GenericContainer*.
4617         (mono_class_create_from_typespec): Likewise.  Simplify, and
4618         implement trivially.  All the cases are handled in
4619         mono_class_from_mono_type.  Don't inflate returned class.
4620         (mono_class_get_full): Delegate GENERICINST optimization to
4621         inflate_generic_type.
4622         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
4623
4624 2006-02-16  Dick Porter  <dick@ximian.com>
4625
4626         * socket-io.c (create_object_from_sockaddr): Fix typo.
4627         (create_sockaddr_from_object): Check array lengths before
4628         potentially accessing items off the end.
4629         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
4630         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
4631         (ves_icall_System_Net_Sockets_Socket_Send_internal)
4632         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
4633         length checks to avoid wraparound overflows.
4634         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
4635         contents of the array of sockets
4636         (hostent_to_IPHostEntry2)
4637         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
4638         Check return value of inet_ntop ().
4639         (addrinfo_to_IPHostEntry): Fix typo
4640
4641 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4642
4643         Type metadata parsing doesn't use generic-instantiation information.
4644         * metadata.c (mono_metadata_parse_array_full): Change
4645         MonoGenericContext* parameter to MonoGenericContainer*.
4646         (mono_metadata_parse_type_full): Likewise.
4647         (mono_type_create_from_typespec_full): Likewise.
4648         (mono_metadata_parse_mh_full): Likewise.
4649         (mono_metadata_parse_generic_inst): Likewise.
4650         (do_mono_metadata_parse_generic_class): Likewise.
4651         (do_mono_metadata_parse_type): Likewise.
4652         * metadata-internals.h: Update to changes.
4653         * class.c (mono_class_find_enum_basetype): Likewise.
4654         (mono_class_setup_fields): Likewise.
4655         (mono_class_create_from_typespec): Likewise.
4656         * loader.c (method_from_methodspec): Likewise.
4657         (mono_get_method_from_token): Likewise.
4658         (mono_method_get_header): Likewise.
4659
4660 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
4661
4662         * marshal.c: handle additional GENERICINST case (patch from
4663         Thong Nguyen <tum@veridicus.com>).
4664         Fix a few cases where LDIND_I/STIND_I was used for references.
4665
4666 2006-02-16  Raja R Harinath  <rharinath@novell.com>
4667
4668         * reflection.c (mono_reflection_get_token): Remove unused variable.
4669
4670 2006-02-16  Martin Baulig  <martin@ximian.com>
4671
4672         * reflection.c (mono_reflection_get_token): Add support for fields
4673         in instantiated generic types.
4674
4675         * icall.c
4676         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
4677
4678 2006-02-15  Martin Baulig  <martin@ximian.com>
4679
4680         * icall.c
4681         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
4682         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
4683         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
4684         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
4685
4686 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4687
4688         * class.c, metadata.c, metadata.h, object.c, icall.c,
4689         marshal.c: changed mono_type_get_underlying_type () to do
4690         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4691         Fixed handling of instantiated generic valuetypes (bug #75479).
4692
4693 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4694
4695         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4696         Delegate to mono_metadata_decode_value, and work on the returned value.
4697
4698         * icall.c (ves_icall_MonoType_GetGenericArguments):
4699         Add consistency check here too.
4700         
4701 2006-02-15  Ankit Jain  <jankit@novell.com>
4702
4703         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4704         char/short etc.
4705
4706 2006-02-15  Ankit Jain  <jankit@novell.com>
4707
4708         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4709         signed values, used only for representing lower bounds of arrays.
4710         (mono_metadata_parse_array_full): Use new
4711         mono_metadata_decode_signed_value to decode lower bounds.
4712
4713 2006-02-14  Martin Baulig  <martin@ximian.com>
4714
4715         * reflection.c
4716         (mono_reflection_get_token): Support "MonoGenericMethod" and
4717         "MonoGenericCMethod" and allow generic instances / methods.
4718
4719 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
4720
4721         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
4722         to obtain the terminal size using an ioctl.
4723
4724         * object.c (mono_nullable_init): Revert this as nullable reference
4725         types are not valid.
4726         (mono_nullable_box): Ditto.
4727
4728 2006-02-09  Dick Porter  <dick@ximian.com>
4729
4730         * threads.c (mono_thread_detach): Drop a reference to the thread
4731         we're detaching.
4732
4733 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
4734
4735         * object.c (mono_nullable_init): Handle nullable reference types.
4736         (mono_nullable_box): Ditto. Fixes #77446.
4737
4738 2006-02-07  Martin Baulig  <martin@ximian.com>
4739
4740         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
4741
4742 2006-02-07  Ankit Jain  <jankit@novell.com>
4743
4744         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
4745         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
4746         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
4747         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
4748         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
4749         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
4750
4751 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
4752
4753         * class.c (mono_class_create_generic): Set type_token as well.
4754
4755         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
4756         compatible with MS.
4757
4758 2006-02-02  Martin Baulig  <martin@ximian.com>
4759
4760         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
4761         has never been used so far.
4762
4763 2006-02-02  Martin Baulig  <martin@ximian.com>
4764
4765         * mono-debug-debugger.h: Changed comment at the top of this file;
4766         the header is not installed, but it's safe to #include it from
4767         within the JIT.
4768
4769         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
4770         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
4771
4772 2006-02-02  Martin Baulig  <martin@ximian.com>
4773
4774         * mono-debug.h
4775         (MonoSymbolTable): Removed the `metadata_info' field.
4776
4777         * mono-debug.c
4778         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
4779
4780         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4781         (mono_debugger_add_builtin_types): Removed.
4782         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
4783         (mono_debugger_create_notification_function): We now operate on a
4784         pre-allocated area; take a `gpointer' and return `void'.
4785
4786         * mono-debug-debugger.c
4787         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
4788         (mono_debugger_add_builtin_types): Removed.
4789
4790 2006-02-02  Martin Baulig  <martin@ximian.com>
4791
4792         * threads.c (mono_debugger_create_all_threads): New public method.
4793
4794 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4795
4796         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
4797         breaks on several platforms.
4798
4799 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
4800
4801         * assembly.c: the VS.NET build doesn't supply default values for
4802         MONO_ASSEMBLIES and MONO_CFG_DIR.
4803
4804 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
4805
4806         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
4807         helper function.
4808
4809         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
4810
4811         * loader.c (method_from_memberref): Fix a warning.
4812
4813         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
4814
4815         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
4816         with explicit layout. Fixes #77433.
4817
4818 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
4819
4820         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
4821         max_interface_id is initialized before using it. Fixes #77398.
4822         (ves_icall_Type_GetInterfaces): Ditto.
4823
4824 2006-01-30  Raja R Harinath  <rharinath@novell.com>
4825
4826         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4827         allocate memory for parameter attributes when parsing memberref
4828         signatures.
4829         * loader.c (mono_loader_set_error_method_load): Don't warn.
4830         (method_from_memberref): Ensure MissingMethodException gets thrown
4831         if method is not found.  Make warning more informative.
4832
4833 2006-01-29  Raja R Harinath  <harinath@gmail.com>
4834
4835         Fix #77397
4836         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
4837         return true if is byref.
4838         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4839         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
4840         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
4841
4842 2006-01-27  Raja R Harinath  <rharinath@novell.com>
4843
4844         Fix tests/find-method.2.il
4845         * loader.c (find_method, find_method_in_class): Remove is_inflated
4846         argument.  Revert 2006-01-18 change.
4847         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
4848         is generic, search for method in its generic definition.
4849         * class.c (mono_class_setup_vtable_general): Print generic
4850         arguments of generic types in debugging printf.
4851
4852 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4853
4854         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4855
4856         * threads.c (mono_threads_request_thread_dump): New helper function.
4857
4858 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4859
4860         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4861
4862 2006-01-25  Ankit Jain  <jankit@novell.com>
4863
4864         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4865         move definition to ..
4866         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4867         
4868 2006-01-25  Ankit Jain  <jankit@novell.com>
4869             Raja R Harinath  <rharinath@novell.com>
4870
4871         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4872         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4873         as necessary.
4874
4875 2006-01-25  Martin Baulig  <martin@ximian.com>
4876
4877         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4878         `MonoDebuggerThread' into debug-debugger.c.
4879
4880 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4881
4882         * profiler.c: fix printing of data.
4883
4884 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4885
4886         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4887           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4888
4889 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4890
4891         * object.c: fix deadlock related to string interning.
4892
4893 2006-01-23  Martin Baulig  <martin@ximian.com>
4894
4895         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4896
4897         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4898
4899 2006-01-23  Martin Baulig  <martin@ximian.com>
4900
4901         * mono-debug.h: Moved the prototypes of some functions which are
4902         used by the JIT here from mono-debug-debugger.h.
4903
4904 2006-01-21  Martin Baulig  <martin@ximian.com>
4905
4906         * Makefile.am: Don't install mono-debug-debugger.h.
4907
4908 2006-01-21  Martin Baulig  <martin@ximian.com>
4909
4910         * mono-debug-debugger.h: Enforce the private status of this header
4911         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4912         Moved some stuff from mono-debugger-jit-wrapper.h here.
4913
4914 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4915
4916         * class.c (mono_class_from_typeref): Add a sanity test to help
4917         catch lack of assembly load/search hooks.
4918
4919 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4920
4921         * marshal.c (emit_struct_conv): Relax the fields with same offset
4922         check even more. Fixes #77230.
4923
4924 2006-01-18  Martin Baulig  <martin@ximian.com>
4925
4926         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4927         argument; if false, we compare the uninstantiated signatures.
4928         (method_from_memberref): Compare the uninstantiated signatures;
4929         fixes #76417.
4930
4931 2006-01-18  Robert Jordan  <robertj@gmx.net>
4932
4933         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4934         Clear the weak link. Fixes bug #77170.
4935
4936         * gc.c (mono_gchandle_free):
4937         Reflect *-gc.c changes (tiny optimization).
4938
4939 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4940
4941         * metadata.c (mono_metadata_signature_dup): Applied patch from
4942         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4943         Fixes #77288.
4944
4945 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4946
4947         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4948         marshalling from native to managed code. Fixes #77230.
4949
4950 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4951
4952         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4953         connect. Fixes bug #77020.
4954
4955 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4956
4957         * class.c: fixed id assignement for nested interfaces (bug #77275).
4958         Added also better info for --print-vtable debugging.
4959
4960 2006-01-12  Martin Baulig  <martin@ximian.com>
4961
4962         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4963         interfaces on-the-fly; fixes #76625.
4964
4965         * class-internals.h
4966         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4967         don't need that anymore.
4968
4969 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4970
4971         * socket-io.c
4972         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4973         To avoid initing the nested_classes when not needed I turned the
4974         PeerCredData as a toplevel internal class, as it has to be shared
4975         anyways. 
4976
4977         Fixes the CASA issue.
4978
4979 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4980
4981         * domain.c: Accessors for MonoJitInfo
4982
4983         * profiler-private.h: Add jitinfo to the end jit hook
4984
4985         * profiler.[ch]: Define new hooks, called after jitting which give
4986         the MonoJitInfo that was compiled
4987
4988 2006-01-10  Martin Baulig  <martin@ximian.com>
4989
4990         * class.c (mono_class_setup_events): Add support for generic
4991         classes; fixes #76440.
4992
4993 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4994
4995         Fix #77160.
4996         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4997         on passed-in method.
4998
4999 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5000
5001         * object.c (mono_runtime_invoke_array): Add Nullable support.
5002
5003         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
5004
5005 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
5006
5007         * file-io.c: Don't consider sockets as directory and avoid an endless
5008         loop. Fix bug #76966.
5009
5010 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
5011
5012         * object.c (mono_nullable_init): New helper function.
5013         (mono_nullable_box): Ditto.
5014
5015         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
5016
5017         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
5018
5019         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
5020         
5021 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
5022
5023         * class.c (mono_class_is_assignable_from): Make T assignable to 
5024         Nullable<T>.
5025
5026 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
5027
5028         * appdomain.c: Bump corlib version to 46.
5029         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
5030         serialization purpose) and changed ves_icall_System_Reflection_
5031         Assembly_get_code_base signature to accept a boolean (to escape, or 
5032         not, the assembly code base).
5033
5034 2005-12-23  Dick Porter  <dick@ximian.com>
5035
5036         * icall.c: 
5037         * threads-types.h: 
5038         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
5039         CreateEvent icall now returns "created" boolean parameter.
5040
5041 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
5042
5043         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
5044         #76967.
5045
5046         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
5047         when attr_klass is an interface. Fixes #77045.
5048
5049 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
5050
5051         * marshal.c (emit_struct_conv): Fix previous patch.
5052         
5053         * marshal.c (emit_struct_conv): Add a check for fields with the same
5054         offset.
5055
5056 2005-12-20  Raja R Harinath  <rharinath@novell.com>
5057
5058         Fix regression in Mono.C5.
5059         * class.c (mono_class_create_generic): If 'klass' is an interface
5060         set up the interface offsets.
5061         (mono_class_is_assignable_from): Don't throw away generic arguments.
5062
5063 2005-12-19  Raja R Harinath  <rharinath@novell.com>
5064
5065         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
5066         type parameters.
5067
5068 2005-12-15  Raja R Harinath  <rharinath@novell.com>
5069
5070         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
5071         dead store.
5072         (do_mono_metadata_parse_generic_class): Don't pass the current
5073         generic context when parsing the type being instantiated: it
5074         cannot use it, anyway.
5075
5076         * loader.c (method_from_memberref): Don't inflate a signature if
5077         it doesn't contain any type parameters.
5078
5079 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
5080
5081         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
5082
5083 2005-12-14  Martin Baulig  <martin@ximian.com>
5084
5085         * class.c
5086         (mono_type_get_name_recurse): Don't return null for type
5087         parameters and open generic classes.
5088         (mono_class_setup_methods): Don't exclude generic instances.
5089         (mono_get_unique_iid): Use different IDs for different
5090         instantiations of the same generic type.
5091         (mono_class_setup_vtable): Only use setup_generic_vtable() for
5092         open generic instances; create a normal vtable for closed generic
5093         instances.
5094         (mono_class_setup_vtable_general): We're now also called for
5095         closed generic instances.
5096
5097         * reflection.c
5098         (mono_reflection_bind_generic_parameters): Correctly use
5099         mono_metadata_lookup_generic_inst() everywhere.
5100
5101 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
5102
5103         * object.c (mono_class_create_runtime_vtable): Call 
5104         mono_class_setup_vtable ().
5105
5106         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
5107         function.
5108         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
5109         #76959.
5110
5111         * loader.c (mono_loader_set_error_type_load): Print the type load
5112         warnings to the console so they are more visible to the user.
5113         (mono_loader_set_error_method_load): Ditto.
5114
5115         * reflection.c (ensure_runtime_vtable): Revert the last change as it
5116         is still broken.
5117         
5118         * reflection.c (ensure_runtime_vtable): Fix build.
5119
5120         * reflection.c (ensure_runtime_vtable): Disable an optimization which
5121         doesn't work in all cases.
5122
5123 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
5124
5125         * object.c (mono_array_new_full): Treat a single dimensional array
5126         with 0 lower bounds as an szarray. Fixes #76973.
5127
5128         * reflection.c (custom_attr_visible): Really fix this.
5129
5130 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
5131
5132         * reflection.c (custom_attr_visible): Allow nested public attributes
5133         as well.
5134
5135         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
5136         interface check.
5137
5138 2005-12-12  Raja R Harinath  <harinath@gmail.com>
5139
5140         * class.c (set_generic_param_owner): Delete.
5141         (mono_class_create_from_typedef): Don't set ->owner field of
5142         generic parameters to "param containers" of enclosing classes.
5143         * reflection.c (mono_reflection_initialize_generic_parameter):
5144         Likewise.
5145
5146 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
5147
5148         * reflection.c (custom_attr_visible): Fix build.
5149
5150 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
5151
5152         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
5153         private attributes.
5154         
5155         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
5156         handling of null parameter defaults.
5157
5158 2005-12-09  Raja R Harinath  <rharinath@novell.com>
5159
5160         * class.c (mono_class_from_generic_parameter): Don't set
5161         klass->generic_container.
5162         (my_mono_class_from_generic_parameter): Likewise.
5163
5164 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
5165
5166         * reflection.c (load_public_key): Fix a warning.
5167         (method_encode_code): Fix unaligned accesses.
5168
5169 2005-12-07  Martin Baulig  <martin@ximian.com>
5170
5171         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
5172
5173         * reflection.c
5174         (write_generic_param_entry): Encode our custom attrs.
5175
5176         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
5177
5178 2005-12-07  Martin Baulig  <martin@ximian.com>
5179
5180         * reflection.c (encode_new_constraint): Removed; we don't use the
5181         `NewConstraintAttribute' anymore.
5182
5183 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
5184
5185         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
5186         not fire a TypeResolve event when Assembly.GetType () is called.
5187
5188 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
5189
5190         Beginning of support for nullable types in the runtime. Parts of
5191         this patch are from Martin.
5192
5193         * appdomain.c (MONO_CORLIB_VERSION): Bump
5194
5195         * domain.c (mono_init_internal): get the nullable type
5196
5197         * class.c (mono_class_is_nullable): New method
5198         (mono_class_get_nullable_param): New mehod
5199         (mono_class_create_generic): In types T? set cast_class to T
5200
5201         * class-internals.h (MonoDefaults): new nullable default class
5202         (mono_class_get_nullable_param, mono_class_get_nullable_param):
5203         new methods.
5204
5205 2005-12-05  Raja R Harinath  <rharinath@novell.com>
5206
5207         * metadata.c (select_container): New.  Refactor code to select the
5208         appropriate GenericContainer given the type of generic parameter
5209         we are looking for.
5210         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
5211         not a MonoGenericContext.  Use select_container.  Update parameters.
5212         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
5213         and MONO_TYPE_MVAR.
5214         (unwrap_arrays): Remove duplicate tests.
5215         (find_generic_param): Rename from 'has_same_context'.  Now walks a
5216         generic instantiated class to find any arguments that are generic
5217         parameters.
5218         (mono_type_create_from_typespec_full): Use find_generic_param to
5219         avoid evicting some generic instantiations from the typespec
5220         cache.
5221
5222 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
5223
5224         * reflection.c: fixed writing of doubles on ARM FPA.
5225
5226 2005-12-02  Robert Jordan  <robertj@gmx.net>
5227
5228         * icall.c: Fixed EventInfo.ReflectedType (#76829).
5229
5230 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5231
5232         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
5233         least on SUSE 10 they are not the same (on debian, they are just the
5234         same thing).
5235
5236 2005-12-01  Raja R Harinath  <rharinath@novell.com>
5237
5238         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
5239         DeclaringType for VARs and MVARs.
5240         * class.c (set_generic_param_owner): Fix initialization of owner
5241         fields.
5242
5243 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
5244
5245         * icall.c: fixed Enum.ToObject() to correctly convert the values.
5246
5247 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5248
5249         * threadpool.c: workaround for a bug that shows up on the Mac:
5250         select()+connect() on a blocking socket is not like it should
5251         be, so we proceed to connect() in that case, wasting the I/O
5252         threadpool thread until connect succeedes. Fixes bug #75436.
5253
5254 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5255
5256         * threadpool.c: fix typo when setting file descriptor states.
5257
5258 2005-11-28  Raja R Harinath  <rharinath@novell.com>
5259
5260         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
5261         * metadata.c (mono_metadata_parse_method_signature_full): Don't
5262         create a temporary signature container.
5263         (mono_metadata_parse_generic_param): Update to changes.
5264         (mono_type_create_from_typespec_full): Update to changes.
5265         * loader.c (method_from_memberref): Don't use a
5266         MonoGenericContainer while parsing a memberref signature.
5267         (method_from_methodspec): Remove dead-store of the 'container'
5268         variable.  It's overwritten before use.
5269
5270         * metadata.c (mono_type_create_from_typespec_full): Make debugging
5271         checks tighter.
5272         (mono_metadata_parse_generic_param): Likewise.
5273         * loader.c (find_method_in_class): Does not need a
5274         MonoGenericContainer.  Use 'mono_method_signature' rather than
5275         'mono_method_signature_full'.
5276         (find_method, mono_get_method_constrained, method_from_memberref):
5277         Update to changes.
5278
5279         * metadata.c (mono_type_create_from_typespec_full): Ensure that
5280         owner-less generic-parameters are never evicted from the typespec
5281         cache.
5282
5283         * loader.c (method_from_memberref): Don't use the current context
5284         when parsing signatures.
5285         (method_from_methodspec, mono_get_method_from_token): Update to changes.
5286
5287         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
5288         side-effects in g_assert.
5289         * loader.c (mono_get_method_from_token): Resolve klass earlier so
5290         that we don't potentially lose information.
5291
5292 2005-11-26  Dick Porter  <dick@ximian.com>
5293
5294         * icall.c:
5295         * threads.c: icalls to implement basic (ie, not named)
5296         System.Threading.Semaphore.
5297
5298 2005-11-24  Dick Porter  <dick@ximian.com>
5299
5300         * process.c
5301         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
5302         Use GetProcessId() if it's available.
5303
5304 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
5305
5306         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
5307
5308 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5309             Ankit Jain  <jankit@novell.com>
5310
5311         * loader.c (mono_get_method_from_token): Initialize 'method' field
5312         of all generic parameters before parsing the signature.  Remove
5313         code that "fixed"-up MVAR references.
5314
5315 2005-11-23  Ankit Jain  <jankit@novell.com>
5316
5317         * metadata.c (mono_metadata_has_generic_params):
5318         (mono_metadata_load_generic_param_constraints):
5319         (mono_metadata_load_generic_params): Move duplicate code ...
5320         (mono_metadata_get_generic_param_row): ... here. Returns the
5321         first row-id in GenericParam table for a given owner (token).
5322         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
5323         prototype.
5324
5325 2005-11-23  Raja R Harinath  <rharinath@novell.com>
5326             Ankit Jain  <jankit@novell.com>
5327
5328         * metadata.c (mono_metadata_class_equal): Pass signature_only when
5329         comparing VARs too.
5330         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
5331         type->data.generic_param only if the type is an MVAR.
5332         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
5333         leak owner-less VARs and MVARs into managed space.
5334
5335 2005-11-21  Martin Baulig  <martin@ximian.com>
5336
5337         * class-internals.h
5338         (MonoMethod): Moved the `generic_container' here from
5339         `MonoMethodNormal' since we now also need it for
5340         `MonoMethodPInvoke';
5341         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
5342         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
5343         an union containing both `MonoMethodNormal' and
5344         `MonoMethodPInvoke'.
5345
5346         * loader.c
5347         (mono_get_method_from_token): Allow implementing generic methods
5348         as interncalls.
5349
5350         * threads.c
5351         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
5352         icall.
5353
5354 2005-11-17  Dick Porter  <dick@ximian.com>
5355
5356         * icall.c: 
5357         * process.h: 
5358         * process.c: Split the Process Start_internal icall into
5359         ShellExecuteEx_internal and CreateProcess_internal, which are
5360         called depending on whether UseShellExecute is true.  Fixes bug
5361         76670.
5362
5363         * appdomain.c (MONO_CORLIB_VERSION): Incremented
5364
5365 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
5366
5367         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
5368         'msize' parameters, use the information in 'mspec' instead.
5369         (emit_object_to_ptr_conv): Ditto.
5370
5371         * marshal.c (emit_struct_conv): Handle explicit layout structs with
5372         fields out of order. Fixes #76733.
5373
5374 2005-11-17  Ankit Jain  <jankit@novell.com>
5375
5376         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
5377
5378 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
5379
5380         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
5381           bug #76575.
5382
5383 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5384
5385         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
5386         for types with non-auto layout. Fixes #76717.
5387
5388 2005-11-16  Ankit Jain  <jankit@novell.com>
5389
5390         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
5391         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
5392         if generic_context is null.
5393           (mono_metadata_generic_param_equal): param->owner can be null.
5394           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
5395         null.
5396
5397 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
5398
5399         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
5400         the correct value.
5401
5402 2005-11-15  Martin Baulig  <martin@ximian.com>
5403
5404         * object.c (set_value): Use mono_class_from_mono_type() instead of
5405         the hack for generic instances; fixes #76136.
5406
5407 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
5408
5409         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
5410         fields.
5411
5412         * image.c (load_metadata_ptrs): Initialize the new fields.
5413
5414         * reflection.c (create_dynamic_mono_image): Ditto.
5415
5416         * reflection.c (build_compressed_metadata): Use the new fields.
5417
5418         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
5419         icall.
5420
5421         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
5422         icall.
5423         
5424 2005-11-15  Ankit Jain  <jankit@novell.com>
5425             Raja R Harinath  <harinath@gmail.com>
5426
5427         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
5428         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
5429         new per-generic_container cache if the cached MonoType's context matches
5430         the current context.
5431           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
5432         to the expected context.
5433           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
5434
5435 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5436
5437         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
5438         we changed the signature of an icall.
5439         * icall.c: Modify to mono_double_ParseImpl return true/false 
5440         depending on the success, instead of throwing the exception. This will
5441         help us in Double.TryParse methods.
5442         
5443 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
5444
5445         * marshal.c (emit_marshal_object): Throw an exception when
5446         marshalling 'object' instead of crashing. Fixes #76696.
5447
5448 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5449
5450         * class-internals.h: Add prototype for mono_type_get_full_name ().
5451
5452 2005-11-11  Dick Porter  <dick@ximian.com>
5453
5454         * threads.c (mono_thread_manage): Make sure the main thread has
5455         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
5456
5457 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
5458
5459         * loader.c (mono_loader_set_error_type_load): Log a warning to the
5460         console about the missing type.
5461         (mono_loader_set_error_method_load): Ditto.
5462
5463 2005-11-09  Miguel de Icaza  <miguel@novell.com>
5464
5465         * mono-config.c (mono_get_config_dir): Set the system defaults if
5466         none is specified.
5467
5468         * assembly.c (mono_set_dirs): New API entry point to set the
5469         assembly and the config directory in one call
5470
5471 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
5472
5473         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
5474         the ftnptr was created from a delegate in a domain other than the
5475         current domain. Fixes #75377.
5476
5477         * exception.h exception.c: Add mono_get_exception_not_supported ().
5478
5479 2005-11-08  Martin Baulig  <martin@ximian.com>
5480
5481         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
5482
5483 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
5484
5485         * security-manager.h: Added definitions to deal with strongname key 
5486         pairs bigger (and smaller) than 1024 bits.
5487         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
5488         adjust wrt the public key length being used.
5489
5490 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
5491
5492         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
5493           Windows build (r51396-51397).
5494
5495 2005-11-03  Martin Baulig  <martin@ximian.com>
5496
5497         * class.c (mono_class_setup_vtable_general): Also add generic
5498         methods to the vtable; fixes #76581.
5499
5500 2005-11-01  Miguel de Icaza  <miguel@novell.com>
5501
5502         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
5503         sure that we lookup GetString method from the System.Text.Encoding
5504         class, not the derived class or we get an empty method.
5505
5506         Fixed class #76612.
5507
5508 2005-10-25  Miguel de Icaza  <miguel@novell.com>
5509
5510         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
5511         if it has been previously set (embedders). 
5512
5513         Make mono_set_rootdir available also on Unix.
5514
5515 005-10-24  Robert Jordan  <robertj@gmx.net>
5516
5517         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
5518
5519 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
5520
5521         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
5522         only calls which are made to native code use this flag.
5523
5524         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
5525
5526 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
5527
5528         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
5529         Add support for FieldBuilders.
5530
5531 2005-10-29  Martin Baulig  <martin@ximian.com>
5532
5533         * mono-debug.c
5534         (mono_debug_using_mono_debugger): New public method; returns
5535         whether we're running inside the debugger.
5536
5537 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
5538
5539         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
5540         for Method/Constructor/FieldBuilders.
5541
5542 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
5543
5544         * reflection.c (module_add_cattrs): Save custom attributes for global methods
5545         and fields as well.
5546
5547 2005-10-26  Martin Baulig  <martin@ximian.com>
5548
5549         * mono-debug-debugger.c
5550         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
5551
5552 2005-10-24  Raja R Harinath  <harinath@gmail.com>
5553
5554         * icall.c (base64_to_byte_array): Don't pass an out-of-range
5555         integer to isspace.
5556
5557 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
5558
5559         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
5560         when passing valuetypes byref. Fixes #76502.
5561
5562 2005-10-19  Jackson Harper  <jackson@ximian.com>
5563
5564         * profiler.c: Don't put a . in front of types that are not in a
5565         namespace.
5566
5567 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
5568
5569         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
5570
5571 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
5572
5573         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
5574         #76436.
5575         (mono_marshal_get_ldflda_wrapper): Fix a warning.
5576
5577 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5578
5579         * assembly.c metadata-internals.h icall.c: Define an additional
5580         parameter for mono_assembly_name_parse_full, so we can avoid creating
5581         S.R.AssemblyName.Version when no version info wasn't passed.
5582         
5583 2005-10-09  Miguel de Icaza  <miguel@novell.com>
5584
5585         * class.c (mono_type_get_full_name): Reimplement method that was
5586         removed. 
5587
5588         * image.c: Some docs
5589
5590 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
5591
5592         * profiler.c (output_newobj_profile): Fix printing of Total memory
5593         on x86.
5594
5595 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5596
5597         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
5598
5599 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
5600
5601         * threads.c: remove debug output.
5602
5603 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
5604
5605         * threads.c (mono_thread_manage): Fix crashes if more than 64
5606         threads need to be aborted. Hopefully fixes #75899.
5607
5608         * assembly.c (mono_stringify_assembly_name): New helper function.
5609
5610         * class.c: Use mono_stringify_assembly_name instead of the similar
5611         static function.
5612
5613         * assembly.h assembly.c: Add support for calling a postload search 
5614         hook if an assembly cannot be loaded.
5615
5616         * appdomain.c: Register new search hooks which call the AssemblyResolve
5617         events in AppDomain. Fixes #75231
5618
5619 2005-10-07  Martin Baulig  <martin@ximian.com>
5620
5621         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
5622         methods without debug info.
5623
5624 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
5625
5626         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
5627         wrappers.
5628
5629 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5630
5631         * file-io.c: now that we return symlinks, use lstat and, when the file
5632         is a symbolic link, stat, to get the file attributes. Also avoid the
5633         conversion to/from utf16/external.
5634
5635 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
5636
5637         * class.c (mono_class_layout_fields): Compute klass->has_references
5638         correctly if an embedded valuetype is not yet initialized. Fixes
5639         #76331.
5640
5641 2005-10-04  Martin Baulig  <martin@ximian.com>
5642
5643         * metadata.c
5644         (mono_metadata_load_generic_param_constraints): New public
5645         function; splitted the constraints loading out from
5646         mono_metadata_load_generic_params().
5647
5648         * class.c (mono_class_create_from_typedef): Call
5649         mono_metadata_load_generic_param_constraints() after setting up
5650         the type and creating our parent; fixes #75329.
5651
5652 2005-10-04  Martin Baulig  <martin@ximian.com>
5653
5654         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
5655         non-dynamic parent classes.
5656
5657 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
5658
5659         * file-io.c : win32 build fix (ETXTBSY seems not found).
5660
5661 2005-10-04  Martin Baulig  <martin@ximian.com>
5662
5663         * reflection.c
5664         (mono_image_get_methodspec_token): Make the cache actually work;
5665         fixes #75974.
5666
5667 2005-10-04  Martin Baulig  <martin@ximian.com>
5668
5669         * class.c (mono_class_name_from_token): Removed the unneccessary
5670         `MonoGenericContext *' argument.
5671
5672 2005-10-04  Martin Baulig  <martin@ximian.com>
5673
5674         * loader.c
5675         (method_from_methodspec): Make the caching work again; fixes the
5676         performance regression from #76262.
5677
5678 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5679
5680         * file-io.c:
5681         * file-io.h:
5682         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
5683         GetFileSystemEntries that performs the same work but without going
5684         into io-layer, locking, etc.
5685
5686 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5687
5688         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5689         ThreadState_Stopped as well. Fixes #76047.
5690
5691 2005-09-29  Martin Baulig  <martin@ximian.com>
5692
5693         * class.c
5694         (inflate_generic_context): If the new context has a `gmethod', set
5695         its `container' that that gmethod's `container'.
5696
5697         * metadata.c
5698         (mono_metadata_parse_generic_param): Simplify things;
5699         `generic_container = generic_context->container;' is just fine.
5700
5701         * loader.c (method_from_methodspec): Code cleanups.
5702
5703 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5704
5705         * decimal.c: fix warning (and let gcc generate correct
5706         code on ARM with optimizations).
5707
5708 2005-09-28  Martin Baulig  <martin@ximian.com>
5709
5710         * loader.c
5711         (method_from_memberref): Added `MonoGenericContext *class_context'
5712         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5713         (method_from_methodspec): If we're a memberref, use the enclosing
5714         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5715
5716 2005-09-28  Martin Baulig  <martin@ximian.com>
5717
5718         * object.c (mono_runtime_invoke_array): Added support for
5719         MONO_TYPE_GENERICINST; fixes #75917.
5720
5721 2005-09-27  Martin Baulig  <martin@ximian.com>
5722
5723         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
5724         `k->byval_arg.type' to determine the actual type.
5725
5726         * loader.c (method_from_methodspec): Removed some hacks.
5727
5728 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
5729
5730         * class-internals.h (mono_field_is_deleted): Do the test for
5731         rtspecialname before we check the actual name of the field. This
5732         prevents us from dereferencing a pointer into the string table,
5733         saving us from accessing a few pages
5734
5735         * *.c: Replace the use of {Enter,Leave}CriticalSection with
5736         macros. This will allow a deadlock debugger to easily be plugged
5737         in.
5738
5739 2005-09-27  Martin Baulig  <martin@ximian.com>
5740
5741         * loader.c (method_from_methodspec): Create a "signature"
5742         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
5743
5744 2005-09-27  Martin Baulig  <martin@ximian.com>
5745
5746         * class.c
5747         (inflate_generic_class): Correctly set the new context's
5748         container.
5749
5750         * loader.c
5751         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
5752         instead of a `MonoGenericContext *'.
5753         (mono_method_signature_full): Take a `MonoGenericContainer *'
5754         instead of a `MonoGenericContext *'.
5755
5756         * metadata.c
5757         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
5758         instead of a `MonoGenericContext *'.
5759         (mono_metadata_parse_method_signature_full): Likewise.
5760
5761 2005-09-26  Martin Baulig  <martin@ximian.com>
5762
5763         * class.c
5764         (mono_class_from_generic_parameter): Set `klass->generic_container'
5765         (mono_class_from_generic_parameter): Likewise.
5766         (mono_bounded_array_class_get): We inherit the generic container
5767         from the element class.
5768
5769         * loader.c
5770         (find_method, find_method_in_class): Take a `MonoGenericContext *'
5771         argument rather than computing it here.
5772         (method_from_memberref): Correctly set the generic context before
5773         parsing the signature.  Fixes #75681.
5774
5775 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
5776
5777         * object.c (mono_class_has_special_static_fields): Fix warnings.
5778
5779 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5780
5781         * assembly.c: Add parse_public_key function, to
5782         par the public keys. Also added mono_assembly_name_parse_full,
5783         to define it the parsed key should be freed or not.
5784         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
5785         to parse a long format assembly name.
5786         * metadata-internals.h: Keep mono_assembly_name_parse_full as
5787         private, since calling it to preserve the key requires
5788         freeing it manually.
5789         
5790 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
5791
5792         * locales.c : removed HAVE_ICU part.
5793
5794 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
5795
5796         * object.c (mono_class_create_runtime_vtable): Avoid calling 
5797         field_is_special_static if the klass has no special static fields.
5798
5799         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
5800         (MonoCachedClassInfo): Likewise.
5801
5802         * object.c (mono_class_has_special_static_fields): New helper function.
5803
5804 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5805
5806         * class.c (mono_class_create_from_typedef): Don't call 
5807         interfaces_from_typedef_full for enums.
5808         (mono_class_create_from_typedef): Compute the base types of enums directly
5809         without calling mono_class_setup_fields ().
5810         (mono_class_find_enum_basetype): New helper function.
5811
5812         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
5813         one place inside the string heap.
5814         
5815 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
5816
5817         * class.c: locking fixes, code cleanups, some docs added.
5818         Allocate some data structures in the image mempool.
5819
5820 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5821
5822         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5823         the example code.
5824         
5825 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
5826
5827         * class-internals.h, class.c, reflection.c: reduce memory taken by
5828         MonoClass.
5829
5830 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
5831
5832         * metadata.c, metadata.h, loader.h: documentation updates, code and
5833         API cleanups.
5834
5835 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5836
5837         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5838         the example code.
5839
5840         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
5841         page faults caused by the runtime while reading metadata.
5842
5843 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5844
5845         * socket-io.c: the field names were changed 3 months ago and no one
5846         realized until bug #76077 got filed!
5847
5848 2005-09-20  Martin Baulig  <martin@ximian.com>
5849
5850         * icall.c (assembly_icalls): Removed some unused debugger icalls.
5851
5852 2005-09-20  Martin Baulig  <martin@ximian.com>
5853
5854         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5855         write the rank into the class entry.
5856
5857 2005-09-20  Martin Baulig  <martin@ximian.com>
5858
5859         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5860
5861 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5862
5863         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5864
5865         * icall.c (custom_attrs_defined_internal): New icall.
5866
5867         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5868         function.
5869         (mono_custom_attrs_construct_by_type): New helper function.
5870
5871 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5872
5873         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5874         terminate the resulting string. Fixes #76123.
5875
5876 2005-09-16  Martin Baulig  <martin@ximian.com>
5877
5878         * mono-debug.c
5879         (mono_debug_add_method): Ignore inflated methods for the moment.
5880
5881 2005-09-14  Martin Baulig  <martin@ximian.com>
5882
5883         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5884
5885 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5886
5887         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5888         return a success/failure indication.
5889         (mono_metadata_interfaces_from_typedef_full): Ditto.
5890         (get_constraints): Ditto.
5891
5892 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5893
5894         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5895         
5896         * marshal.c (emit_marshal_array): Add support for returning string
5897         arrays from delegates. Fixes #76063.
5898
5899         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5900
5901 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5902
5903         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5904         icall.
5905
5906 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5907
5908         * reflection.c icall.c: Fix after mono_get_exception_type_load
5909         signature change.
5910
5911         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5912         (mono_assembly_load_reference): Use the new helper.
5913
5914         * class-internals.h (MonoLoaderError): New structure containing 
5915         information about type loading errors.
5916
5917         * class-internals.h loader.c: Add APIs to store per-thread loader
5918         error information.
5919
5920         * loader.c class.c: Set the loader error if needed.
5921
5922         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5923
5924 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5925
5926         * decimal.c: fixed to handle the broken ARM fp format.
5927
5928 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5929
5930         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5931         broken.
5932
5933 2005-09-06  Martin Baulig  <martin@ximian.com>
5934
5935         * domain.c (supported_runtimes): Added v2.0.50727.
5936
5937 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5938
5939         * culture-info.h: reduce the size of some structures.
5940
5941 2005-09-05  Martin Baulig  <martin@ximian.com>
5942
5943         Reflect latest API changes in the August CTP.
5944
5945         * icall.c
5946         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5947         ("MonoType.HasGenericArguments"): Removed.
5948         ("MonoMethod.BindGenericParameters"): Renamed to
5949         "MakeGenericMethod".
5950         ("MethodBuilder.BindGenericParameters"): Renamed to
5951         "MakeGenericMethod".    
5952
5953 2005-09-05  Martin Baulig  <martin@ximian.com>
5954
5955         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5956
5957 2005-09-05  Martin Baulig  <martin@ximian.com>
5958
5959         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5960
5961         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5962         generic_container is non-NULL.
5963
5964 2005-09-05  Martin Baulig  <martin@ximian.com>
5965
5966         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5967
5968         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5969
5970 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5971
5972         * reflection.c (encode_locals,
5973         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5974         for large generic types.
5975
5976 2005-09-05  Martin Baulig  <martin@ximian.com>
5977
5978         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5979
5980         * class.c (mono_dup_array_type): New public method.
5981         (mono_metadata_signature_deep_dup): New public method.
5982         (dup_type): Correctly duplicate array and function types.
5983
5984 2005-09-05  Martin Baulig  <martin@ximian.com>
5985
5986         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5987
5988         * reflection.c (get_default_param_value_blobs): Handle generic types
5989         and generic methods.
5990
5991 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5992
5993         * class.c: Fixed error reporting (method/class were inversed) for 
5994         inheritance demands.
5995         * security-manager.c|h: Added the AppDomain when calling the managed
5996         System.Security.SecurityManager.InheritanceDemand method.
5997
5998 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5999
6000         * reflection.c (encode_marshal_blob): 'marshaltype' and
6001         'marshaltyperef' are alternate sources for the custom marshaler
6002         name.
6003
6004 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
6005
6006         * class.c: fix creation of array classes with rank == 1
6007         (patch by Ankit Jain <jankit@novell.com>).
6008
6009 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
6010
6011         * object.c: fix check for creating the bound data for arrays vs
6012         szarrays.
6013
6014 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6015
6016         * object.c: configuration file name is now based on the executable name,
6017         not the image name. Fixes bug #75931.
6018
6019 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
6020
6021         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
6022         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
6023
6024 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
6025
6026         * rand.c: Use wincrypt.h instead of WinCrypt.h.
6027
6028 2005-08-24  Ankit Jain  <jankit@novell.com>
6029             Raja R Harinath  <rharinath@novell.com>
6030
6031         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
6032           called by it recursively.
6033           (mono_class_init): Remove special case in pending_init handling, since it's
6034           superseded by the fix to mono_class_from_typeref.
6035
6036 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
6037
6038         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
6039         BROKEN_THREAD_START stuff.
6040
6041 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
6042
6043         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
6044         trampoline.
6045
6046         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
6047         
6048         * object.c (mono_delegate_ctor): Replace the original function address with
6049         a delegate trampoline.
6050
6051 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
6052
6053         * icall.c: add boolean argument to base64_to_byte_array and 
6054         InternalFromBase64String to control whether a whitespace-only string
6055         is allowed (or should casue a FormatException to be thrown). We need
6056         this as the behavior has changed between MS.NET 1.x and 2.0, and we
6057         to match the MS behaviour in both profiles.
6058         * appdomain.c: Bump corlib version.
6059
6060 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6061
6062         This patch implements a big portion of publisher policy
6063         support, used to bind assembly versions and redirect
6064         one assembly from version A to version B.
6065
6066         * assembly.c:
6067         New GSList loaded_assembly_bindings, for storing the cached
6068         assembly bindings.
6069         (assembly_binding_maps_name): New static function for checking if a 
6070         assembly binding information maps an assembly name.
6071         (mono_assembly_binding_info_free): New function for freeing
6072         assembly binding information resources.
6073         (get_publisher_policy_info): New static function for retrieving 
6074         assembly binding information from a MonoImage.
6075         (compare_versions): New static function for comparing an assembly
6076         binding information data and the version of an assembly name.
6077         (check_policy_versions): New static function for checking if an
6078         assembly binding info mapping an assembly name is valid for it.
6079         (mono_assembly_load_publisher_policy): New static function for
6080         loading the 'policy.major.minor.MyAssembly' image for an assembly
6081         with an assembly name 'aname'.
6082         (mono_assembly_bind_version): New static function for updating
6083         assembly redirection.
6084         (mono_assembly_apply_binding): New static function for applying
6085         assembly binding.
6086         (search_binding_loaded): New static function for searching 
6087         loaded assembly binding infos in the cache domain.
6088         (mono_assembly_load_full): Don't apply assembly binding for
6089         reflection only assemblies.
6090
6091         * metadata-internals.h: Add MonoAssemblyBindingInfo,
6092         which contains information about assembly binding. Also
6093         declare signature for mono_config_parse_publisher_policy ()
6094         function, used to retrieve pub policy info.
6095         
6096         * mono-config.c:
6097         (publisher_policy_start): New static function used to parse publisher 
6098         policy config files.
6099         (publisher_policy_parser): New static MonoParseHandler containing 
6100         the functions used when parsing config files.
6101         (mono_config_parse_publisher_policy): New function for parsing
6102         publisher policy files.
6103         
6104 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
6105
6106         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
6107
6108         * marshal.c (mono_delegate_free_ftnptr): Ditto.
6109
6110         * object.c (mono_get_addr_from_ftnptr): New helper function.
6111
6112         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
6113
6114         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6115
6116 2005-08-19  Dick Porter  <dick@ximian.com>
6117
6118         * threads.c, threads.h, appdomain.c, appdomain.h,
6119         profiler-private.h, monitor.c, object.c, object-internals.h,
6120         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
6121         store the thread ID, so it can hold a 64 bit value if needed.
6122
6123 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
6124
6125         * reflection.c (mono_reflection_create_dynamic_method): Store the
6126         handle class into the method references as well so ldtoken works in
6127         dynamic methods.
6128
6129         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
6130         types.
6131
6132 2005-08-19  Ankit Jain <jankit@novell.com>
6133
6134         Fix #75847.
6135         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
6136           here rather than using the method signature of a arbitrary function
6137           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
6138           two arguments.
6139           Hack done with Harinath.
6140
6141 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6142
6143         * threadpool.c: disable printing stack traces when we get a exception
6144         in a threadpool thread. I need to do more testing to figure out which
6145         cases actually print this. Fixes bug #75828.
6146
6147 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6148
6149         * icall.c: there might be ignored whitespace after the last '='. This
6150         fixes length computation and bug #75840.
6151
6152 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
6153
6154         * assembly.c (mono_assembly_load_full): Consider .exe extension as
6155         well. Fixes #75809.
6156
6157         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
6158         #75784.
6159         
6160         * reflection.c (create_custom_attr_data): Ditto.
6161
6162 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
6163
6164         * locales.c, culture-info.h : removed RegionLCIDMap.
6165         * culture-info-tables.h : regenerated.
6166
6167 2005-08-16  Martin Baulig  <martin@ximian.com>
6168
6169         * class.c (mono_type_get_name_recurse): Small fix.
6170
6171 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6172
6173         * locales.c : indentation fixie.
6174
6175 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
6176
6177         * object-internals.h,
6178           locales.h,
6179           locales.c,
6180           culture-info.h,
6181           icall.c : added RegionInfo table support.
6182         * culture-info-table.h : regenerated for region support.
6183
6184 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
6185
6186         * reflection.c (resolve_object): handle all kinds of MonoMethod
6187         including generic ones
6188
6189 2005-08-12  Ankit Jain <jankit@novell.com>
6190
6191         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
6192           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
6193
6194 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
6195
6196         * process.c: Don't close a thread handle when it's NULL. This is a
6197         workaround for bug #75733.
6198
6199 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
6200
6201         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
6202
6203 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
6204
6205         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
6206
6207 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6208
6209         * threadpool.c: if a work item in the thread pool has a callback that
6210         catches a exception, don't propagate it after invoking the callback.
6211         Fixes bug #75336.
6212
6213 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
6214
6215         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
6216
6217         * class-internals.h (MonoCachedClassInfo): Add some new fields.
6218
6219         * class.c (mono_class_init): Load field info lazily in the AOT case.    
6220
6221         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
6222
6223 2005-08-03  Ankit Jain  <jankit@novell.com>
6224
6225         Fix #75683.
6226         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
6227           PInvoke calling convention is 0.
6228
6229 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
6230
6231         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
6232         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
6233
6234 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
6235
6236         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
6237         to handle threads not started by the GC (patch by Michael Meeks
6238         <michael.meeks@novell.com>).
6239
6240 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
6241
6242         * reflection.c: Make buffer used in emitting types larger for some
6243         big generic types (patch by Michal Moskal).
6244
6245 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
6246
6247         * mono-debug.c: Fix some (not all) alignment problems.
6248
6249 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6250
6251         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
6252         Invoke mono_image_load_from_data_full passing the refonly
6253         parameter.
6254
6255         * assembly.c
6256         (mono_assembly_open_from_bundle): Add the refonly argument, 
6257         in order to pass it to other methods it calls to.
6258         (do_mono_assembly_open): Add the refonly argument, in order 
6259         to pass it to other methods it calls to.
6260         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
6261         the refonly parameter to it.
6262
6263         * image.c: Add loaded_images_refonly_hash and
6264         loaded_images_refonly_guid_hash to cache the reflection
6265         only loaded images.
6266         (mono_images_init): Initialize the hash tables used for
6267         caching the reflection only images.
6268         (load_modules): Invoke mono_image_open_full passing the refonly
6269         parameter to load the modules the correct way.
6270         (build_guid_table): Add the refonly argument, to re-build the 
6271         correct hash table.
6272         (do_mono_image_open): Added the refonly argument, in order to
6273         define it for the loaded image.
6274         (mono_image_loaded_full): New function, which receives an
6275         additional parameter to look for the image in the refonly or
6276         non-refonly section.
6277         (mono_image_loaded): Updated, using mono_image_loaded_full.
6278         (mono_image_loaded_by_guid_full): The same case that happens
6279         with mono_image_loaded_full.
6280         (mono_image_loaded_by_guid): Likewise.
6281         (register_image): Use the ref_only variable inside MonoImage
6282         to decide in which hash table store the current image.
6283         (mono_image_open_from_data_full): Rename
6284         mono_image_open_from_data to mono_image_open_from_data_full,
6285         adding the refonly argument, to define the ref_only variable 
6286         inside MonoImage.
6287         (mono_image_open_from_data): Return 
6288         mono_image_open_from_data_full.
6289         (mono_image_open_full): Rename mono_image_open to
6290         mono_image_open_full, receiving the new refonly argument,
6291         to pass it to inner methods.
6292         (mono_pe_file_open): Update this function, to open
6293         a MonoImage as a non-refonly image.
6294         (mono_image_close): Use the refonly variable inside
6295         MonoImage to remove the image from the correct caches.
6296
6297         * image.h: Add the signatures of mono_image_open_full,
6298         mono_image_open_from_data_full, mono_image_loaded_full,
6299         mono_image_loaded_by_guid_full.
6300
6301         * metadata-internals.h: Add the ref_only field to 
6302         MonoImage.
6303         
6304 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6305
6306         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
6307         Fix the last behavior, which used to load the assemblies and
6308         extract MonoReflectionAssemblyName information, instead of
6309         extract it from the metadata tables. Needed for Reflection
6310         Only assemblies.
6311         
6312 2005-07-29  Martin Baulig  <martin@ximian.com>
6313
6314         * mono-debug-debugger.c
6315         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
6316         not initialized.
6317
6318         * mono-debug.c
6319         (mono_debug_address_from_il_offset): Check whether we have
6320         debugging support before attempting to take the lock.
6321         (mono_debug_source_location_from_address): Likewise.
6322         (mono_debug_source_location_from_il_offset): Likewise.
6323         (mono_debug_il_offset_from_address): Likewise.
6324         (mono_debug_address_from_il_offset): Likewise.
6325
6326 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
6327
6328         * class.c (mono_class_from_name_case): Add support for dynamic images.
6329         Fixes #75650.
6330
6331         * object.c (mono_class_compute_gc_descriptor): Add a workaround
6332         for #75479.
6333
6334 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6335         
6336         * reflection.c (mono_method_get_object): Fix warning.
6337
6338 2005-07-28  Martin Baulig  <martin@ximian.com>
6339
6340         * mono-debug.c
6341         (mono_debug_add_wrapper): Also write the wrapper type.
6342
6343 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
6344
6345         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
6346         
6347         * class.c (mono_class_init): Avoid reading nested classes if the AOT
6348         data indicates the class has none.
6349
6350 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
6351
6352         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
6353         loader lock with the debugger lock. Prevents deadlocks for beagle.
6354
6355         Beagle can now run on an smp box for a weekend without any
6356         issues. Woohoo!
6357
6358 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
6359
6360         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
6361         in a module. Fixes #75629.
6362
6363 2005-07-26  Martin Baulig  <martin@ximian.com>
6364
6365         * mono-debug.c (mono_debug_add_wrapper): New static method.
6366         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
6367         interncall or a wrapper.
6368
6369         * mono-debug.h (MonoDebugWrapperData): New public typedef.
6370         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
6371         (MONO_DEBUGGER_VERSION): Bump to 51.
6372
6373         * mono-debug-debugger.c
6374         (mono_debugger_add_type): Removed this empty function.
6375         (mono_debugger_add_method): Likewise.
6376
6377 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
6378
6379         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
6380         before accessing method->slot.
6381
6382 2005-07-21  Jb Evain  <jbevain@gmail.com>
6383
6384         * reflection.c (method_encode_clauses/class): Handle filters clauses.
6385         Fixes #75010.
6386
6387 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
6388
6389         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
6390         #75587.
6391
6392 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
6393
6394         * image.h image.c: Add mono_image_get_guid () API function.
6395
6396 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
6397
6398         There were issues when multiple threads tried to load
6399         assemblies. A deadlock was created between assemblies_mutex and
6400         mono_domain_assemblies_lock. This fixes the issue by making the
6401         assembly ref counting be lock free. See bug 75586.
6402         
6403         * image.c (mono_image_close): The add ref function here was using
6404         Interlocked operations while the unref was using a mutex and a
6405         --. I don't think this was ever a bug that would be exposed in a
6406         non-pendantic way (ie, by an embedder doing a ref on one thread
6407         and an unref on another), but for the sake of correctness, this is
6408         now Interlocked.
6409
6410         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
6411         (mono_assembly_load_reference): Call mono_assembly_addref rather
6412         than touching the refcount ourselves.
6413         (mono_assembly_close): Use InterlockedDecrement to unref the
6414         assembly. Don't acquire the lock unless it is actually needed.
6415
6416 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6417
6418         * class.c (mono_class_layout_fields): Fix calculation of has_references
6419         for generic types.
6420
6421 2005-07-12  Martin Baulig  <martin@ximian.com>
6422
6423         Applying a patch from Michal Moskal <malekith@nemerle.org>.
6424
6425         * metadata.c
6426         (mono_type_hash): Provide better hashing for generic instances.
6427         (mono_generic_inst_hash): Improve hashing.
6428         (mono_generic_class_hash): Likewise.
6429
6430         * reflection.c (mymono_metadata_type_hash): Improve hashing for
6431         generic instances.
6432
6433 2005-07-12  Martin Baulig  <martin@ximian.com>
6434
6435         * reflection.c (mono_reflection_create_runtime_class): Remove the
6436         hack for generic type definitions and non-`Run' assemblies.
6437         (mono_reflection_bind_generic_parameters): Also use
6438         `klass->wastypebuilder' to check for TypeBuilders.
6439
6440 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
6441
6442         * class.c (mono_class_layout_fields): Fix calculation of has_references
6443         for generic types.
6444
6445         * class.c (inflate_generic_class): Fix a leak.
6446         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
6447         for generic types.
6448
6449 2005-07-11  Martin Baulig  <martin@ximian.com>
6450
6451         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
6452         on error.
6453
6454 2005-07-11  Martin Baulig  <martin@ximian.com>
6455
6456         * loader.c (find_method): Also lookup in
6457         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
6458
6459 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6460
6461         * appdomain.c (mono_domain_unload): Don't free the error message
6462         before passing it to mono_get_exception_...
6463
6464         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
6465         
6466 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
6467
6468         * threads.c: try to better guess an available RT signal (bug #75387).
6469
6470 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6471
6472         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
6473         and CACHE_OBJECT.
6474
6475 2005-07-07  Martin Baulig  <martin@ximian.com>
6476
6477         * class.c (mono_type_get_name_full): Return NULL for
6478         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
6479         fixes #75408.
6480
6481 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
6482
6483         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
6484         exit the appdomain as well being aborted.
6485
6486         * threadpool.c: Create all threadpool threads inside the root appdomain, and
6487         change back to the root domain after calling managed code. This enables
6488         appdomains using threadpools to be unloaded.
6489
6490 2005-07-07  Martin Baulig  <martin@ximian.com>
6491
6492         * class-internals.h
6493         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
6494         into `MonoDynamicGenericClass' since we only need it for dynamic
6495         types.
6496
6497         * reflection.c (mono_class_bind_generic_parameters): We don't need
6498         to compute the `parent' here.
6499
6500 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
6501
6502         * culture-info-table.h : regenerated.
6503
6504 2005-07-06  Martin Baulig  <martin@ximian.com>
6505
6506         * icall.c
6507         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
6508
6509         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
6510
6511 2005-07-06  Martin Baulig  <martin@ximian.com>
6512
6513         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
6514         we're doing a signature-only comparision; fixes #74945.
6515
6516 2005-07-06  Martin Baulig  <martin@ximian.com>
6517
6518         * class-internals.h (MonoGenericClass): Moved some things out into
6519         a new `MonoInflatedGenericClass' type.  
6520         (MonoInflatedGenericClass): New type; the `klass' of a
6521         `MonoGenericClass' is now computed lazyly in
6522         mono_get_inflated_generic_class().      
6523
6524         * class.c (mono_get_inflated_generic_class): New public function.
6525         (mono_class_inflate_generic_method): Removed the unused
6526         `MonoClass *' argument.
6527         (setup_generic_vtable): Don't call mono_get_inflated_method() on
6528         all the methods.
6529         (mono_class_create_generic): Make this static and merge it with
6530         mono_class_create_generic_2(); we're now called automatically from
6531         mono_get_inflated_generic_class().
6532
6533         * loader.c (mono_method_signature): Call
6534         mono_get_inflated_method() here.
6535
6536 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
6537
6538         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
6539         type of fields with RVA.
6540
6541         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
6542         for this pseudo class.
6543         (my_mono_class_from_generic_parameter): Likewise.
6544         (mono_class_init): Allow interfaces to have cctors.
6545
6546 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6547
6548         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
6549         lazily for AOT methods.
6550
6551 2005-07-05  Martin Baulig  <martin@ximian.com>
6552
6553         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
6554         returns FALSE for a successful match, not TRUE.
6555
6556 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
6557
6558         * loader.c (mono_method_get_index): Optimize this a bit.
6559
6560 2005-07-04  Martin Baulig  <martin@ximian.com>
6561
6562         * class.c
6563         (class_compute_field_layout): Move the check for generic type
6564         definitions into mono_class_layout_fields().  Fixes #74684.
6565         (mono_class_from_generic_parameter): Correctly compute
6566         `klass->parent'; fixes #75457.
6567
6568         * reflection.c (register_assembly, register_module): Make sure
6569         `domain->rejobject_hash' is already created.
6570
6571 2005-07-02  Martin Baulig  <martin@ximian.com>
6572
6573         * class-internals.h
6574         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
6575         `MonoDynamicGenericClass'.      
6576
6577 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
6578
6579         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
6580         returned by a field getter is null, since null is a valid value.
6581
6582 2005-07-01  Martin Baulig  <martin@ximian.com>
6583
6584         * reflection.c (mono_reflection_generic_class_initialize): Update
6585         the `dgclass->fields [i].parent' to the correct class.
6586         (mono_image_get_fieldref_token): Use the declaring type, not the
6587         reflected type.
6588
6589 2005-07-01  Martin Baulig  <martin@ximian.com>
6590
6591         * loader.c (find_method): Also look in the interfaces; fixes #75429.
6592
6593 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
6594
6595         * threads.c (thread_cleanup): assert that thread != NULL
6596         (wait_for_tids_or_state_change): We were using the wrong variable
6597         when accessing wait->threads. `i' was always out of the bounds of
6598         the array.
6599
6600 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6601
6602         * loader.c: map user32 and kernel32 to libMonoSupportW
6603
6604 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
6605
6606         * appdomain.c (unload_thread_main): Mark this as WINAPI.
6607
6608 2005-06-28  Martin Baulig  <martin@ximian.com>
6609
6610         * loader.c (method_from_methodspec): Fix #75334.
6611
6612 2005-06-28  Martin Baulig  <martin@ximian.com>
6613
6614         Fix #74953 - Arrays now implement the generic IList<T> interface
6615         on the 2.0 platform.
6616
6617         * class-internals.h (MonoDefaults): Added `generic_array_class'.
6618
6619         * reflection.c (mono_class_bind_generic_parameters): New public
6620         function; similar to mono_reflection_bind_generic_parameters(),
6621         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
6622
6623         * domain.c (mono_init_internal): Try to initialize.
6624         `mono_defaults.generic_array_class' here; this'll only succeed if
6625         we're using the 2.0 corlib.
6626
6627         * icall.c
6628         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
6629         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
6630         (mono_lookup_internal_call): Added support for nested classes.
6631
6632         * loader.c
6633         (mono_get_method_from_token): Set `result->signature->pinvoke' if
6634         we're an interncall and have generic arguments.
6635
6636         * class.c
6637         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
6638         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
6639         instance of System.Array.InternalArray<T> for arrays, so they
6640         implement the generic IList<T> interface.
6641
6642 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
6643
6644         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
6645         (chastamar@yahoo.com). Fixes #75374.    
6646
6647 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
6648
6649         * culture-info-table.h: regenerated.
6650
6651 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6652
6653         * icall.c: handle spaces correctly for base64 strings.
6654
6655 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
6656
6657         * *.c: Kill some warnings.
6658
6659 2005-06-23  Duncan Mak  <duncan@novell.com>
6660
6661         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
6662         that this builds on Solaris 10 (x86).
6663
6664 2005-06-23  Martin Baulig  <martin@ximian.com>
6665
6666         * class.c
6667         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
6668         generic type definitions.
6669
6670 2005-06-23  Martin Baulig  <martin@ximian.com>
6671
6672         Fix #75331.
6673
6674         * metadata.c (mono_class_get_overrides): Renamed to
6675         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
6676         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
6677         pass it to mono_get_method_full().
6678
6679 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
6680
6681         * reflection.c (mono_reflection_create_runtime_class): take the
6682         mono_domain_lock in this method. Prevents deadlocks
6683
6684 2005-06-22  Martin Baulig  <martin@ximian.com>
6685
6686         * loader.c (method_from_methodspec): Fix #75330.
6687
6688 2005-06-22  Martin Baulig  <martin@ximian.com>
6689
6690         * reflection.c (type_get_qualified_name): Use
6691         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6692         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6693         argument; use it if we don't have an assembly name.
6694
6695 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6696
6697         * object.c: In mono_message_init, set "copy out" flag for in
6698         parameters with the [Out] flag.
6699
6700 2005-06-21  Martin Baulig  <martin@ximian.com>
6701
6702         * class.c
6703         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6704         and MONO_TYPE_PTR.
6705
6706 2005-06-21  Martin Baulig  <martin@ximian.com>
6707
6708         * class.c (mono_class_init): Don't initialize `class->fields' for
6709         generic instances since they're initialized again in
6710         compute_field_layout(). 
6711         (compute_field_layout): Set the field's `generic_info' here; fix
6712         #75320. 
6713
6714 2005-06-21  Martin Baulig  <martin@ximian.com>
6715
6716         * class-internals.h
6717         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
6718
6719         * metadata.c (mono_metadata_generic_method_equal): Also
6720         distinguish the `generic_class'; fixes #75334.
6721
6722 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6723
6724         * domain.c:
6725         * appdomain.c:
6726         * domain-internals.h:
6727         * reflection.c: 'domain_assemblies' field is now protected by its own
6728         lock. Don't call into managed code to run the AssemblyLoad event if we
6729         now there are no registered delegates for it.
6730
6731 2005-06-20  Martin Baulig  <martin@ximian.com>
6732
6733         * class.c (mono_class_is_assignable_from): Use a custom version of
6734         mono_class_has_parent() to make things work for generic instances;
6735         fix #75300.
6736
6737 2005-06-20  Martin Baulig  <martin@ximian.com>
6738
6739         * loader.c (method_from_methodspec): Apply a patch from
6740         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
6741
6742 2005-06-20  Martin Baulig  <martin@ximian.com>
6743
6744         * class.c (mono_class_init): Reverted Zoltan's last change; it
6745         breaks generics.
6746
6747 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
6748
6749         * threads.c (wait_for_tids_or_state_change): Add missing locking.
6750
6751 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6752
6753         * socket-io.c: fix the index in the socket array for writable/error
6754         sockets. Fixes bug #75306.
6755
6756 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
6757
6758         * class.c (mono_class_init): Allow interfaces to have static ctors.
6759
6760 2005-06-17  Martin Baulig  <martin@ximian.com>
6761
6762         * loader.c (method_from_methodspec): Use `context->container' when
6763         parsing the `gmethod->inst'.
6764
6765 2005-06-17  Martin Baulig  <martin@ximian.com>
6766
6767         * class.c (mono_type_get_name_recurse): Don't add the assembly
6768         name for type arguments.
6769
6770 2005-06-15  Martin Baulig  <martin@ximian.com>
6771
6772         * reflection.c (mono_image_get_inflated_method_token): Encode
6773         correct klass; fixes #75260.
6774
6775 2005-06-13 Michal Moskal <malekith@nemerle.org>
6776
6777         * icall.c: Make GetCorrespondingMethod/Constructor take
6778         MonoReflectionMethod method not MonoMethod. Removed
6779         MonoType.GetCorrespondingField, and make
6780         MonoGenericType.GetCorrespondingField take name not
6781         MonoClassField.
6782
6783 2005-06-13  Michal Moskal <malekith@nemerle.org>
6784
6785         * reflection.c (field_encode_signature, encode_locals):
6786          Make sizes of buffers for types larger (for big generic types).
6787          (create_generic_typespec,
6788          mono_reflection_sighelper_get_signature_local,
6789          mono_reflection_sighelper_get_signature_field):
6790          Add asserts for too small buffers.
6791
6792 2005-06-15  Martin Baulig  <martin@ximian.com>
6793
6794         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
6795         if our parent is not a dynamic type.
6796
6797 2005-06-15  Martin Baulig  <martin@ximian.com>
6798
6799         * class-internals.h (MonoTypeNameFormat): New enum.
6800
6801         * class.c
6802         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
6803         (mono_type_get_full_name): Removed.
6804         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
6805         argument instead of the boolean's.
6806
6807         * icall.c (ves_icall_System_MonoType_getFullName):
6808         Added `gboolean assembly_qualified'.    
6809
6810         * reflection.h
6811         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
6812
6813         * reflection.c (mono_reflection_parse_type): Parse the new type
6814         name format.
6815
6816 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6817
6818         * icall.c: no need to convert from utf16 to utf8 and then back again
6819         after the call to GetLogicalDrives.
6820
6821 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6822
6823         * icall.c: frombase64. Fix problems exposed by new tests.
6824
6825 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6826
6827         * icall.c: added internal calls for converting char [] and strings in
6828         base64 into byte [].
6829
6830 2005-06-10  Martin Baulig  <martin@ximian.com>
6831
6832         * class.c (mono_class_create_generic_2): Read the nested classes
6833         from the metadata rather than from `gklass->nested_classes' since
6834         `gklass' might not be initialized yet.
6835
6836 2005-06-09  Duncan Mak  <duncan@novell.com>
6837
6838         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
6839         all public headers. Fixes #74919.
6840
6841 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
6842
6843         * domain.c: The key for proxy_vtable_hash is now a pointer
6844         array. Added new GHashFunc and GCompareFunc functions for this.
6845
6846         * class.h: The list of interfaces in MonoRemoteClass is known in
6847         advance and can't grow (we create a new MonoRemoteClass if needed),
6848         so now the interface array can be allocated together with
6849         MonoRemoteClass.
6850         
6851         * object.c: Added a new method create_remote_class_key.
6852         Fixed mono_remote_class so it does not depend on
6853         mono_upgrade_remote_class.
6854         Removed extend_interface_array.
6855         Added new method clone_remote_class(), which makes a copy of a remote
6856         class and adds a new interface or class to it.
6857         mono_upgrade_remote_class() now creates a new remote class (or gets
6858         it from the cache) if an vtable upgrade is needed. In this way
6859         we make sure that other objects sharing the same remote class
6860         don't get the new vtable with unwanted interfaces.
6861         
6862         * object-internals.h:
6863         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6864         
6865         * marshal.c: Track changes in mono_upgrade_remote_class().
6866
6867 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6868         * icall.c: Add runtime methods for obtaining members of inflated
6869         class, which were created from supplied non-inflated members. It
6870         is used in internal Get{Method,Constructor,Field} methods in
6871         System.Type
6872
6873 2005-06-09  Martin Baulig  <martin@ximian.com>
6874
6875         * reflection.c
6876         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6877
6878 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6879         * reflection.c (mono_image_basic_init): Define
6880         Version in MonoDynamicAssembly. 
6881         
6882 2005-06-08  Martin Baulig  <martin@ximian.com>
6883
6884         Fix #75136.
6885
6886         * loader.c
6887         (mono_method_signature_full): New public method; takes a
6888         `MonoGenericContext *'.
6889         (find_method): Use mono_method_signature_full() and pass the
6890         klass'es context to it.
6891
6892         * class.c (mono_class_is_inflated_method): Use
6893         mono_method_signature_full() and pass the context to it.
6894
6895 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6896
6897         * object.c: add proper locking in mono_remote_class_vtable(),
6898         fixes possible memory corruption.
6899
6900 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6901
6902         * marshal.c (mono_remoting_marshal_init): set
6903         initialized after initialization.
6904
6905 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6906
6907         * locales.c : hush.
6908
6909 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6910
6911         * object.c (extend_interface_array): fix really silly
6912         memory corrupting / comparison bug.
6913
6914 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6915
6916         * reflection.c: Functions added to support the creation
6917         of CustomAttributeData, which includes Attribute data
6918         used by ReflectionOnly methods.
6919
6920         * reflection.h:  mono_reflection_get_custom_attrs_data and
6921          mono_custom_attrs_data_construct added (functions exposed).
6922
6923          * icall.c: Added mono_reflection_get_custom_attrs_data
6924          as icall.
6925         
6926 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6927
6928         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6929         lupus's request.
6930
6931 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6932
6933         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6934
6935         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6936         dynamic DllImportAttribute.
6937
6938         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6939         dynamic DllImportAttribute.
6940
6941         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6942         Fixes #75162.
6943
6944 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6945
6946         * threads.c: avoid segfault when an unstarted thread is aborted.
6947
6948 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6949
6950         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6951         Returns the name and version of the runtime for reporting.
6952
6953 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6954
6955         * appdomain.c: bump corlib version.
6956         * object-internals.h: new field in MonoReflectionAssembly.
6957
6958 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6959
6960         * object-internals.h: Carlos forgot to add this field.
6961
6962 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6963
6964         * icall.c: Added create_version to create instances
6965         of Version of MonoReflectionAssemblyName. This change helps
6966         the AssemblyName tests to keep running fine.
6967         
6968 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6969   
6970         * object.c (mono_method_return_message_restore): A somehow less
6971         intrusive fix for #75138.
6972
6973 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6974
6975         * object.c (mono_method_return_message_restore): Fix computation
6976         of expected number of out args.
6977
6978 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6979
6980         * reflection.c (mono_image_get_method_info): Fix the case when the
6981         charset is empty.
6982
6983 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6984
6985         * object.c: Added missing null check in
6986           mono_method_return_message_restore.
6987
6988 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6989
6990         * reflection.c (mono_image_get_method_info): Handle the case when
6991         dllentry is empty.
6992
6993 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6994
6995         * object.c: When creating the vtable for a proxy, take into account
6996         all inherited interfaces, not only the ones registered in
6997         iclass->interfaces. This fixs bug #74996.
6998         Also, in mono_method_return_message_restore, verify that the array
6999         of out args has the expected lengh.
7000
7001 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7002
7003         * socket-io.c: update the timeout in Poll when the call is interrupte.
7004
7005 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7006
7007         * socket-io.c: support abort/suspend in Select_internal after last
7008         change.
7009
7010 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7011
7012         * threadpool.c: remove warning.
7013
7014 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7015
7016         * icall.c:
7017         * socket-io.[ch]: Select_internal uses poll() now when available, thus
7018         removing the 1024 limit from select(). Runtime part of the fix for
7019         bug #71203.
7020
7021 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7022
7023         * socket-io.c: when resolving the addresses for the same
7024         host returned by gethostname(), get the local IPs from the interface
7025         list. Loopback addresses are discarded if the are interfaces up with
7026         non-loopback ones. Fixes bug #63265.
7027
7028 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
7029
7030         * appdomain.c, verify.c, object-internals.h, reflection.c:
7031         bumped corlib number to 36, and added new extra_flags field
7032         to ReflectionMethodBuilder and friends.  Fixes #75060.
7033
7034 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
7035
7036         * gc.c: register a new weak link only if the object is non-null
7037         (fixes bug#75047).
7038
7039 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7040
7041         * culture-info.h : short time pattern too.
7042
7043 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
7044
7045         * culture-info.h : expand long time pattern string length.
7046
7047 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7048
7049         * culture-info-table.h : update (more French date format; #72788).
7050
7051 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
7052
7053         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
7054         the method is static. Fixes #75029.
7055
7056 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
7057
7058         * reflection.c: Update the table_idx field of method builders after
7059         saving the module, since it can change. This is a workaround for
7060         bug #74914. 
7061
7062 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7063
7064         * culture-info-table.h : update (additional French date format).
7065
7066 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
7067
7068         * icall.c (ves_icall_type_Equals): Revert last change.
7069         
7070         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
7071
7072         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
7073
7074 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
7075
7076         * class-internals.h: Added executioncontext_class field to 
7077         MonoDefaults structure.
7078         * domain.c: Cache System.Threading.ExecutionContext class in 
7079         mono_defaults.
7080         * object.c: Capture the ExecutionContext for asynchroneous calls in
7081          mono_async_result_new.
7082         * object-internals.h: Added execution_context and original_context 
7083         fields to MonoAsyncResult. Added execution_context to MonoThread.
7084         * security-manager.c|.h: Added mono_get_context_capture_method to 
7085         return the capture method (if required by the security manager or by
7086         the framework version used).
7087         * threadpool.c: Apply capture (if present) ExecutionContext in 
7088         mono_async_invoke and revert to original context after it completes.
7089
7090 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
7091
7092         * culture-info-table.h : updated (real hacky solution for zh-CHT).
7093
7094 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
7095
7096         * culture-info-table.h : zh-CHT related workaround.
7097
7098 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7099
7100         * marshal.c (emit_marshal_custom): Add some error checking and call the
7101         methods in the ICustomMarshaler interface. Fixes #74875.
7102         
7103         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
7104         native->managed wrappers.
7105
7106 2005-05-12  Martin Baulig  <martin@ximian.com>
7107
7108         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
7109         here and use the loader lock.
7110
7111         * mono-debug.c: Properly lock when the debugger is not attached.
7112         (mono_debug_init): Release the initial lock if we're not running
7113         in the debugger.
7114
7115 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
7116
7117         * marshal.c (emit_marshal_custom): Pass through NULL values without
7118         calling the custom marshalling routines.
7119
7120         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
7121         conversion in structures. Fixes #74882.
7122
7123 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
7124
7125         * culture-info-table.h : zh-* cultures were missing.
7126
7127 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
7128
7129         * threads.c: Added a new event background_change_event which is signaled
7130         when a thread changes its background mode.
7131         Moved here several checks previously done in managed code. The checks
7132         require the thread lock, and using the thread lock in managed code
7133         can result in deadlocks.
7134         Merged Start_internal and Thread_internal into a single method. Now 
7135         Thread_internal does all work of creating and starting a thread.
7136         Added icalls for setting and getting the state of the object. Moved from
7137         managed code to avoid locking there.
7138         Added wait_for_tids_or_state_change() which is called instad of
7139         wait_for_tids when waiting for non-backround threads to end. This method
7140         will return if one of the threads ends or the background_change_event
7141         is signaled.
7142         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
7143         the background mode. This method signals the background_change_event
7144         event.
7145         * icall.c:
7146         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
7147         removed Start_internal.
7148         
7149 2005-05-11  Martin Baulig  <martin@ximian.com>
7150
7151         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
7152         to order of some fields to get proper alignment on 64-bit machines.
7153
7154 2005-05-11  Martin Baulig  <martin@ximian.com>
7155
7156         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
7157         changes as they're broken and completely fuck up the debugger.
7158
7159         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
7160
7161 2005-05-10  Martin Baulig  <martin@ximian.com>
7162
7163         * reflection.c (mono_reflection_generic_class_initialize): Don't
7164         call mono_class_setup_parent() here.
7165
7166 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7167
7168         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
7169         send/receive timeout use an integer in milliseconds. We were using a
7170         struct timeval.
7171
7172 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7173
7174         * locales.c:
7175         (internal_get_cultures): reserve the first slot of the array for the
7176         InvariantCulture, which will be filled in managed code.
7177
7178 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
7179
7180         * reflection.c (mono_image_fill_module_table): Initialize the
7181         GENERATION field as well.
7182
7183 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7184
7185         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
7186         Monitor.Enter on the object.
7187
7188 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
7189
7190         * threads.c: Enable the wait for running threads when exiting.
7191         * icall.c: Suspend all threads before exiting.
7192
7193 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
7194
7195         * assembly.c (mono_assembly_load_reference): Fix warning.
7196
7197 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7198
7199         * threadpool.c: changed the default number of threads per cpu. From now
7200         on, the default will be 20 + (5 * number of cpus) instead of 50.
7201
7202 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
7203
7204         * loader.c (mono_method_get_signature_full): Add locking here.
7205
7206 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
7207
7208         * appdomain.c: Moved methods for parsing and freeing assembly
7209         names to assembly.c.
7210         * assembly.c, domain-internals.h: Created public methods for parsing
7211         assembly names. Fixed mono_assembly_load_with_partial_name:
7212         it now finds the best match, taking into account the version,
7213         token and culture specified in the partial name. Also return
7214         the latest version if no version information is specified.
7215
7216 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
7217
7218         * threadpool.c: replace check for SocketAsyncCall class.
7219
7220 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7221
7222         * threadpool-internals.h:
7223         * Makefile.am: added threadpool-internals.h
7224
7225         * threadpool.c: call mono_unhandled_exception on exceptions not handled
7226         that happen in threadpool threads (tested on MS).
7227         (mono_thread_pool_remove_socket): new function that dispatch any pending
7228         AIO call on a socket that is closing. By now only epoll really needs it,
7229         as select/poll wake up when the socket closes.
7230
7231
7232         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
7233
7234 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
7235
7236         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
7237
7238 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
7239
7240         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
7241
7242 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
7243
7244         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
7245         has an abort request, convert it into a suspend request.
7246
7247 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
7248
7249         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
7250         warning for the usage of `UnmanagedFunctionPointerAttribute' which
7251         is not supported yet.
7252
7253 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7254
7255         * image.c: register assemblies loaded from data (bundles) in the loaded
7256         assemblies hash. Fixes bug #74772.
7257
7258 2005-04-29  Martin Baulig  <martin@ximian.com>
7259
7260         * class.c (mono_type_get_name_recurse): Update to the new naming
7261         schema from the latest .NET 2.x beta2.
7262         (mono_class_setup_vtable_general): If we're a generic instance,
7263         copy the vtable from our generic type definition and inflate all
7264         the methods in it.
7265
7266         * loader.c (find_method): Update to the new naming schema from the
7267         latest .NET 2.x beta2.
7268
7269 2005-04-29  Raja R Harinath  <harinath@gmail.com>
7270
7271         * class.c (mono_class_init): Add a mono_loader_unlock to the
7272         #74734 fix.
7273
7274 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
7275
7276         * icall.c (ves_icall_System_Environment_Exit): Remove the 
7277         suspend_all_other_threads () call for the time being, since it can hang.
7278
7279         * threads.c (mono_thread_manage): Similarly, disable the waiting for
7280         the background threads to exit, since it can also hang.
7281
7282         * class.c (mono_class_init): Applied patch from Ankit Jain 
7283         (radical@gmail.com). Avoid pending init errors when a field refers
7284         to a nested class using a typeref. Fixes #74734.
7285
7286         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
7287         this for dynamic modules.
7288
7289 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7290
7291         * threads.c: don't wait for threads that are in the process of aborting
7292         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
7293         and waiting for background threads to finish. This makes xsp and
7294         mod-mono-server exit without random length delays and/or hangs.
7295
7296 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7297
7298         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
7299
7300 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
7301
7302         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
7303         dynamic types to prevent infinite loops. Fixes #74727.
7304
7305         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
7306         ..._is_assignable_to.
7307
7308 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
7309
7310         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
7311
7312 2005-04-25  Martin Baulig  <martin@ximian.com>
7313
7314         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
7315
7316         * domain.c
7317         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
7318
7319         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
7320
7321         * reflection.c (build_compressed_metadata): Set metadata header
7322         version to 2.0.
7323
7324 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
7325
7326         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
7327         number into an integral and a decimal part. Fixes #70473.
7328
7329         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
7330
7331 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
7332
7333         * culture-info-table.h : reflected the latest locale-builder output.
7334
7335 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7336
7337         * threadpool.c: check for SuspendRequested too when deciding if
7338         mono_thread_interruption_checkpoint should be called.
7339
7340 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7341
7342         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
7343         * threads.c: remove interruption_mutex and use Interlocked instead. When
7344         suspending all the threads, wait for all the suspended events at once.
7345         If we're shutting down and get an APC that is going to be queued,
7346         call mono_thread_execute_interruption immediately, as the thread might
7347         be sleeping on a pthread condition or mutex.
7348
7349         * icall.c: call mono_runtime_set_shutting_down before suspending the
7350         threads.
7351
7352         Fixes bug #74693. And now xsp is happier when exiting.
7353
7354 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
7355
7356         * loader.c (mono_stack_walk): Fix #74690.
7357
7358 2005-04-22  Martin Baulig  <martin@ximian.com>
7359
7360         * mono-debug.h (MonoDebugMethodJitInfo): Added
7361         `MonoDebugMethodJitInfo *jit'.
7362
7363         * mono-debug.c (mono_debug_read_method): Cache the
7364         MonoDebugMethodJitInfo in `address->jit'.
7365         (mono_debug_free_method_jit_info): New public method.
7366
7367 2005-04-22  Martin Baulig  <martin@ximian.com>
7368
7369         * class.c (mono_class_is_assignable_from): Disallow
7370         type parameter -> interface.
7371
7372 2005-04-21  Dick Porter  <dick@ximian.com>
7373
7374         * threads.c (mono_thread_create): Turn an assertion into an error.
7375
7376 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
7377
7378         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
7379         
7380         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
7381         Fix some gcc 4.0 warnings.
7382
7383 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
7384
7385         * file-io.c: fix alt dir separator char on unix systems
7386         and cleanup (fixes bug #71214).
7387
7388 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
7389
7390         * marshal.c: Use CALLVIRT instead of CALL when dispatching
7391         a call to a remote domain, since the method may be an
7392         interface method in the client domain. This fixes bug #74192.
7393
7394 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7395
7396         * threadpool.c: recv/send are now performed before going back to managed
7397         code to save one transition.
7398
7399 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7400
7401         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
7402
7403         * metadata/threadpool.c: removed hack to workaround the bug above.
7404
7405         Fixes bug #74618.
7406
7407 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
7408
7409         * reflection.c reflection.h: Fix handling of parameter defaults in
7410         dynamic methods. Also fixes handling of parameter attributes.
7411         Fixes #74609.
7412
7413         * mono-debug.c (mono_debug_close_image): Fix warning.
7414
7415 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7416
7417         * socket-io.h: replaced old unused field with new 'blocking'.
7418         * threadpool.c: restore socket blocking state on windows(tm).
7419
7420 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
7421
7422         * icall.c: don't return the codebase in the AssemblyName[] returned by
7423         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
7424         * object-internals.h: Removed FIXME (fields were presents) and fixed
7425         versioncompat declaration.
7426
7427 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7428
7429         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
7430         not closed, so don't cleanup when it happens.
7431
7432 2005-04-13  Chris Toshok  <toshok@ximian.com>
7433
7434         * mono-debug-debugger.h: change prototype for
7435         mono_debugger_lookup_type.
7436
7437         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
7438         this function, although it should probably be named
7439         mono_debugger_init_type.
7440
7441 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7442
7443         * threadpool.c: fix non-AIO case.
7444
7445 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
7446
7447         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
7448         the built-in profiler to measure just JIT compilation times.
7449
7450 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7451
7452         * threadpool.c: the epollfd might be closed by another thread at
7453         any time, so ignore EBADF at treat it as a "we're closing" sign.
7454
7455 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7456
7457         * threadpool.c: release the semaphores with a count equals to the number
7458         of working threads in both IO and regular pools. Fixed typo that messed
7459         up the count of IO pool threads. Don't initialize the pipe handles if
7460         we're using epoll.
7461
7462 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7463
7464         * threadpool.c: some systems don't like a NULL when deleting the socket
7465         from epoll.
7466
7467 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7468
7469         * threadpool.c: fix semaphore allocation.
7470
7471 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7472
7473         * threadpool.c: added epoll() based implementation for asynchronous IO
7474         that is used instead of the default poll() when available.
7475         It can be disabled by setting MONO_DISABLE_AIO.
7476
7477 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7478
7479         * threadpool.c: windows needs 'closesocket' and instead of returning
7480         0 when the stream is closed while in select, it returns -1. Fixes bug
7481         #74573.
7482
7483 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
7484
7485         * class.c (class_compute_field_layout): Fix the regression caused by
7486         the previous try.
7487
7488 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7489
7490         * threadpool.c: separate pool for socket async. IO.
7491         * threadpool.h: mono_max_worker_threads is not a global any more.
7492
7493 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
7494
7495         * class.c (class_compute_field_layout): Fix #74549.
7496
7497 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7498
7499         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
7500         use 2 connected sockets instead.
7501
7502 2005-04-08  Miguel de Icaza  <miguel@novell.com>
7503
7504         * mono-config.c: Add new entry point for mkbundle
7505         mono_config_parse_memory. 
7506
7507 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7508
7509         * threadpool.c: removed another unused function.
7510
7511 2005-04-08  Ankit Jain  <radical@corewars.org>
7512
7513         * reflection.c (get_default_param_value_blobs): Add 'types'
7514         parameter to get the types encoded in the constant table.
7515         (mono_param_get_objects): Use the type from the constant table,
7516         not the type of the parameter, when creating default values.
7517         Handle null default values correctly.
7518
7519 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7520
7521         * file-io.c:
7522         * file-io.h:
7523         * threadpool.c:
7524         * threadpool.h:
7525         * icall.c:
7526         * socket-io.c: removed dead code for async IO.
7527
7528 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7529
7530         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
7531
7532         * threadpool.c: intercept socket async. calls and pass them to a thread
7533         that is polling and dispatching the job items to the threadpool as
7534         socket become ready. Fixes bugs #71217, #71933.
7535
7536         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
7537         between char and short/ushort arrays.
7538
7539         * socket-io.c: remove dead code.
7540
7541 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7542
7543         * locales.c,
7544           icall.c : removed InternalToUpper_Comp() and
7545           InternalToLower_Comp().
7546
7547 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
7548
7549         * char-conversions.h : The tables were incorrectly generated. Should
7550           be generated against invariant culture.
7551
7552 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
7553
7554         * object.c (mono_runtime_invoke_array): Fix return value when 
7555         passing pre-created valuetype objects to ctors.
7556
7557         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
7558         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
7559         Fixes #74338.
7560
7561 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
7562
7563         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
7564         only used with --security and hides the wrong corlib version error.
7565
7566 2005-03-30  Joshua Tauberer  <tauberer@for.net>
7567
7568         * class.c: Changed mono_class_name_from_token so that types
7569         outside of a namespace don't have an initial period.  Improved
7570         the g_warning message used in _mono_class_get when loading
7571         fails.
7572         * assembly.c: In mono_assembly_load_reference, when an assembly
7573         can't be found, "No such file or directory" is misleading and
7574         unhelpful because a few paths were checked for the presence of
7575         the assembly.  When that happens (ENOENT), display a nicer
7576         message indicating the directories that were searched.  In all
7577         cases, the warning is made easier to read for non-hackers.
7578
7579 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
7580
7581         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
7582         project/solution.
7583         * appdomain.h|domain.c: Removed inline from functions.
7584         * appdomain.c: Reduced warnings when compiling on windows.
7585         * icall.c: Fixed output_debug declaration to gunichar2*.
7586         * mono-config.c: Reduced warnings when compiling on windows.
7587         * rand.c: Added missing "windows.h". Added missing return value.
7588         * rawbuffer.c: Added missing winsock2.h for windows.
7589         * sysmath.h: Added mono-compiler.h header to allow/ease 
7590         compilation with non-GCC compilers.
7591         * threads.c: Fixed declarations to compile with VS.NET C compiler.
7592         Removed cast warnings.
7593
7594         Adapted from the work of J Lothian (for VC6).
7595
7596 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
7597
7598         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
7599         from default_path.
7600
7601 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
7602
7603         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
7604         the 2.0 profile.
7605
7606 2005-03-27  Raja R Harinath  <harinath@gmail.com>
7607
7608         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
7609         has to be in $(exec_prefix).  $(prefix) is for arch-independent
7610         stuff, and it would probably use $(prefix)/share rather than
7611         $(prefix)/lib.
7612
7613 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7614
7615         * console-io.c: added 2 includes that might be missing.
7616
7617 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
7618
7619         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
7620         profile.
7621
7622         * reflection.c (create_custom_attr): Allocate the params array using
7623         alloca so it gets GC tracking.
7624
7625 2005-03-23  Chris Toshok  <toshok@ximian.com>
7626
7627         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
7628         out some spew.
7629
7630 2005-03-24  Raja R Harinath  <rharinath@novell.com>
7631
7632         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
7633         changes to pick up any changes in prefix, etc.
7634
7635 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7636
7637         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
7638         
7639         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
7640         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
7641
7642 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
7643
7644         * class-internals.h object-internals.h class.c reflection.c: Extend the
7645         mono_lookup_dynamic_token () function to return the class of the
7646         token as well. 
7647
7648         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
7649         well. Fixes #73848.
7650
7651 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
7652
7653         * security-manager.c: Skip inheritance checks for intra-corlib
7654         class inheritance and method overrides. This skips a lot of checks
7655         and (anyway) permissions cannot work until corlib is loaded.
7656
7657 2005-03-23  Martin Baulig  <martin@ximian.com>
7658
7659         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
7660         MONO_TYPE_GENERICINST.  
7661
7662 2005-03-23  Martin Baulig  <martin@ximian.com>
7663
7664         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
7665
7666 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7667
7668         * class.c: added locking comments to some functions.
7669         Cache the interface offsets arrays (saves about 20 KB
7670         of runtime memory in a typical app).
7671         Reduce the time overhead in mono_class_setup_supertypes ().
7672
7673 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
7674
7675         * icall.c: speedup and fix leaks in GetMethodsByName and
7676         GetPropertiesByName.
7677
7678 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7679
7680         * reflection.c: some locking fixes.
7681
7682 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7683
7684         * metadata.c: added missing break in case statement.
7685
7686 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7687
7688         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7689         typedbyref return values. Fixes #73941.
7690
7691 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7692
7693         * security-manager.c|h: Added demandunmanaged method and 
7694         suppressunmanagedcodesecurity class to MonoSecurityManager.
7695         Renamed aptc class to allowpartiallytrustedcallers.
7696
7697 2005-03-17  Martin Baulig  <martin@ximian.com>
7698
7699         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7700
7701 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7702
7703         * file-io.c: disabled file async. IO using aio_*. It uses the
7704         threadpool now. Workaround for bug #73718.
7705
7706 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7707
7708         * assembly.h, mono-config.c: added code to deal with bundled configs
7709         for bundled assemblies.
7710
7711 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7712
7713         * *.c, private.h: cleanup, removing old private.h header file.
7714
7715 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7716
7717         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
7718         and throw_on_unmappable_char attributes.
7719
7720 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
7721
7722         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
7723         _ProcessName_internal.
7724
7725 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
7726
7727         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
7728         #73631.
7729
7730         * icall.c threads.c threads-types.h: Remove slothash icalls as they
7731         are no longer used.
7732
7733 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
7734
7735         * object.c (compute_class_bitmap): Add support for generics. Fixes
7736         #73527.
7737
7738 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7739
7740         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
7741
7742 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7743
7744         * filewatcher.c: commented out the code for windows watcher, as we don't
7745         use it (we use the managed implementation instead).
7746
7747 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7748
7749         * object-internals.h (MonoThread): Remove 'unused1' field.
7750
7751         * appdomain.c: Bump corlib version.
7752
7753         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
7754
7755         * reflection.c (mono_reflection_create_runtime_class): Remove the
7756         AssemblyBuilder.Save optimization since it causes too many problems.
7757
7758 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
7759
7760         * exception.c|h: Added mono_get_exception_reflection_type_load to
7761         create a ReflectionTypeLoadException object.
7762         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
7763         to return NULL is a InheritanceDemand fails during reflection. Updated
7764         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
7765         ReflectionTypeLoadException if an InheritanceDemand fails during 
7766         reflection. Added icall mapping for GetLinkDemandSecurity.
7767         * security-manager.c|h: Added ves_icall_System_Security_
7768         SecurityManager_GetLinkDemandSecurity internal call to return the
7769         class and methods permissions set for a LinkDemand. Removed unused
7770         fields in MonoSecurityManager.
7771
7772 2005-03-10  Martin Baulig  <martin@ximian.com>
7773
7774         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
7775         it's a generic instance.
7776
7777 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
7778
7779         * reflection.c (mono_get_object_from_blob): Applied patch from
7780         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
7781
7782         * class.c (mono_class_is_assignable_from): Another try at fixing 
7783         #73469 without breaking anything.
7784
7785 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
7786
7787         * class.c: (mono_class_is_assignable_from): Revert the last changes
7788         since they don't work with generics.
7789         
7790         * class.c (mono_class_is_assignable_from): Fix build bustage.
7791
7792         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
7793         the managed IsAssignableFrom method. Fixes #73469.
7794
7795         * reflection.c (mono_reflection_call_is_assignable_from): New helper
7796         function.
7797
7798 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
7799
7800         * object.c (mono_load_remote_field_new): Fix returning uninitialized
7801         memory when the remoting callback does not sets the out arguments.
7802         Fixes #73007.
7803
7804         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
7805         by mistake.
7806
7807         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
7808
7809         * object-internals.h (MonoStackFrame): Sync with managed object layout.
7810
7811         * appdomain.c: Bump corlib version.
7812
7813 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
7814
7815         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
7816         function.
7817
7818         * threads.c (mono_thread_attach): Detect threads which are not started
7819         by the GC pthread wrappers.
7820
7821 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
7822
7823         * icall.c: Added new icall for RNG.
7824         * rand.c|h: Added new icall to open the RNG. This allows to share a 
7825         single handle on Linux to access /dev/urandom and fix #73183.
7826
7827 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
7828
7829         * object.c: setting the new vtable in a transparent proxy object must
7830         not change the GC descriptor.
7831
7832 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7833
7834         * object.c: fixed compilation without GCJ support.
7835         * reflection.c: for runtime-created types ensure klass->has_references
7836         is correct (bug #73215).
7837
7838 2005-03-02  Martin Baulig  <martin@ximian.com>
7839
7840         * class.c (mono_class_is_assignable_from): Make this work if
7841         `oklass' is a generic instance; fixes #72831.
7842
7843 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7844
7845         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
7846         with hasthis set.
7847         
7848         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
7849
7850         * marshal.c: Reorganize native->managed marshalling code to also use
7851         the emit_marshal_... functions.
7852
7853 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7854
7855         * object.c: typed allocs have issues with bitmap sizes > 30,
7856         so check for max_set >= 30.
7857
7858 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7859
7860         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7861         managed code. Fixes #73012.
7862
7863         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7864
7865         * metadata.c reflection.c: Load/Emit elem_mult as well.
7866         
7867         * metadata.h (MonoMarshalSpec): Add comment.
7868
7869         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7870
7871         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7872         num_elem to -1 if not given.
7873
7874         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7875
7876         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7877         given values.
7878
7879 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7880
7881         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7882
7883 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7884
7885         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7886
7887         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7888
7889 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7890
7891         * object.c: generalized the reference bitmap creation
7892         and added hooks for the new GC.
7893         * class-internals.c: removed the gc_bitmap field from MonoClass.
7894
7895 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7896
7897         * domain.c: help the compiler to produce better code
7898         in mono_jit_info_table_find ().
7899
7900 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7901
7902         * object.c: make all allocations look typed.
7903
7904 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7905
7906         * socket-io.c: load Mono.Posix if it's not loaded already
7907         (fixes bug#73033).
7908
7909 2005-02-24  Martin Baulig  <martin@ximian.com>
7910
7911         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7912         * reflection.c (dup_type): Likewise.
7913
7914 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7915
7916         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7917         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7918
7919 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7920
7921         * domain.c, threads.c, object-internals.h: make the critical thread
7922         local vars use the fast access mode (even when we're compiled in
7923         a lib). Provide accessors to be used by the jit during codegen.
7924
7925 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7926
7927         * appdomain.c: Changed hook functios behavior to include
7928         support for the reflection only assemblies. Some icalls were changed
7929         to support the mentioned assemblies too. Signatures of static methods
7930         try_assembly_resolve and real_load now have an additional parameter:
7931         refonly.
7932
7933         * assembly.c: General changes to mono_assembly_ methods to support
7934         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7935         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7936         suffix, to support an additional gbool parameter to specify whether
7937         the assembli is reflection only or not. Created some new hook functions 
7938         to add support for reflection only assemblies. Signatures of static 
7939         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7940         have now an additional parameter: refonly.
7941
7942         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7943         indicating whether the assembly is reflection only or not.
7944
7945         * exception.c: Add mono_get_exception_invalid_operation.
7946
7947         * icall.c: Throw an InvalidOperationException when trying to invoke
7948         a property/method/event, or trying to set/get the value of a field.
7949         Also add an icall to retrieve the ref_only flag to the
7950         MonoReflectionAssembly.
7951
7952 2005-02-23  Chris Toshok  <toshok@ximian.com>
7953
7954         Part of fix for #72827.
7955         * mono-debug.c (mono_debug_add_method): add lexical block data to
7956         the info we write.  Kind of a hack at the moment - we copy the
7957         lexical block info from the MonoDebugMethodInfo to the
7958         MonoDebugMethodJitInfo here, before writing it.
7959         (mono_debug_read_method): read the lexical block info.
7960
7961         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7962
7963         * debug-mono-symfile.h: add lexical block support.
7964
7965         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7966         support.
7967
7968 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7969
7970         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7971
7972         * object.c (mono_runtime_free_method): Call mono_free_method () and
7973         put the TODOs there.
7974
7975         * loader.c (mono_free_method): Free up most memory allocated for 
7976         dynamic methods.
7977
7978 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7979
7980         * reflection.c: properly flag a Type argument to a
7981         named custom attr value (bug #72248).
7982
7983 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7984
7985         * reflection.c: reduce code duplication in named custom
7986         attribute encoding.
7987
7988 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7989
7990         * reflection.c: properly encode custom attrs of type object
7991         (bug #72649).
7992
7993 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7994
7995         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7996
7997 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7998
7999         * socket-io.c: load System.dll if it's not loaded already
8000         (bug #72850 and #70477).
8001
8002 2005-02-21  Martin Baulig  <martin@ximian.com>
8003
8004         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
8005         generic instances.
8006
8007 2005-02-21  Martin Baulig  <martin@ximian.com>
8008
8009         * reflection.c (mono_image_build_metadata): We also need to
8010         "fixup" the MethodImpl table after we computed the final method
8011         indices.  Call fixup_methodimpl() to do that.
8012         (fixup_methodimpl): New private method.
8013
8014 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
8015
8016         * assembly.c: special case mscorlib.dll (bug#72536),
8017         patch from Carlos Alberto Cortez.
8018
8019 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
8020
8021         * threads-types.h threads.c: Fix build bustage.
8022
8023         * threads.c: Use a union for long<->double conversions.
8024
8025         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
8026         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
8027
8028         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
8029         containing the checkpoint call with NOT_TAKEN.
8030         
8031         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
8032         checkpoint before pushing the arguments, so they won't have to be
8033         spilled to stack.
8034
8035 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8036
8037         * domain.c, assembly.c, domain-internals.h: make some data
8038         const and relocation-free.
8039
8040 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
8041
8042         * object.c, appdomain.c, class-internals.h: introduce the
8043         MonoClassRuntimeInfo structure to hold the info needed to
8044         use a class at runtime. Made mono_class_vtable() lock-free
8045         for all the appdomains.
8046
8047 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
8048
8049         * metadata-internals.h, image.c: introduce a per-image mempool to
8050         be used for memory that has the same lifetime as the image.
8051
8052 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
8053
8054         * domain.c: In mono_init_internal(), instead of selecting the first
8055         runtime version supported by an executable, get a list of all
8056         supported versions and select the one for which an mscorlib exists
8057         (since even if the runtime supports a given version, it doesn't mean
8058         that the framework for that version is installed).
8059         Modified get_runtimes_from_exe to support this behavior.
8060         In supported_runtimes, added information about additional system
8061         assembly versions.
8062         
8063         * assembly.c: Added support for more than one system assembly version
8064         per runtime version. Updated the assembly list.
8065         In mono_assembly_remap_version, removed the initial version check,
8066         since we don't know to which version we need to compare until we
8067         get the version set on which the assembly is based.
8068         Moved the code for loading corlib into the new method
8069         mono_assembly_load_corlib(), so it can be used by the initialization
8070         code.
8071         
8072         * domain-internals.h: Updated data structures and added declaration
8073         for mono_assembly_load_corlib.
8074
8075 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8076
8077         * reflection.c (resolve_object): Fix the creation of the signature in 
8078         the SignatureHelper case.
8079
8080         * assembly.c (mono_assembly_remap_version): Fix binary search.
8081         
8082 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
8083  
8084         * class.c: Added inheritance check when a method is overloaded (from a
8085         virtual method or when implementing an interface) and when a class is
8086         inherited. Added functions to set a failure for a class and to 
8087         retreive the exception from a failure.
8088         * class-internals.h: Added fields to MonoClass to keep the exception
8089         information status for inheritance (or other exceptions) to be thrown
8090         later (i.e. not at load time).
8091         * object.c: Throw the inheritance SecurityException when a type is to 
8092         be created with either class or method inheritance violations.
8093         * reflection.c|h: Fix when getting declsec from a class. Removed 
8094         unrequired code for class. Improved sanity in parameter naming.
8095         * security-manager.c|h: Added functions to check for class and method
8096         inheritance.
8097
8098 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
8099
8100         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
8101         and has_finalize in dynamic types as well.
8102
8103 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
8104
8105         * culture-info-table.h : fixed currency format for en-GB (and so on).
8106
8107 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
8108
8109         * gc.c: ensure the GC handles never have 0 as a value.
8110
8111 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8112
8113         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
8114         a pointer to a struct to unmanaged code. Fixes #72625.
8115
8116 2005-02-16  Martin Baulig  <martin@ximian.com>
8117
8118         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
8119
8120 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
8121
8122         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
8123
8124 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8125
8126         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
8127
8128         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
8129         UnmanagedFunctionPointerAttribute, use it for determining calling convention
8130         etc. Fixes #71471.
8131
8132         * reflection.c (mono_custom_attrs_get_attr): New helper function.
8133
8134         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
8135
8136 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
8137
8138         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
8139         changes to make the current context a field in MonoThread.
8140
8141 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
8142
8143         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
8144         the last change.
8145         
8146         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
8147         extracted from mono_marshal_get_native_wrapper.
8148
8149         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
8150         to create wrappers around native functions.
8151
8152         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
8153         delegates for arbitrary function pointers. Fixes #71472.
8154
8155 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8156
8157         * threads.c: cleaned up the code a little.
8158
8159 2005-02-15  Martin Baulig  <martin@ximian.com>
8160
8161         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
8162         the data table.
8163
8164         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
8165         allocate larger chunks if needed.
8166
8167 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8168
8169         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
8170         in by mistake.
8171
8172 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
8173
8174         * domain.c: keep the domains in an array and ensure the domain ids
8175         are kept small, so they can be used as indexes to domain-specific data
8176         with a small memory overhead.
8177
8178 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
8179
8180         * icall.c: Handle byref types in Type icalls. Fixes #72544.
8181
8182 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
8183
8184         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
8185
8186 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
8187
8188         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
8189
8190         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
8191         values.
8192
8193         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
8194         
8195 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
8196
8197         * domain-internals.h: add the hashtable here.
8198
8199         * class-internals.h: Remove `info' from MonoMethod
8200
8201         * domain.c: Add a new hashtable, jit_trampoline_hash
8202
8203 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8204
8205         * object.c: don't set the value of static fields
8206         (fixes bug#72494).
8207
8208 2005-02-11  Martin Baulig  <martin@ximian.com>
8209
8210         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
8211         (mono_debug_add_method): Silently ignore the method if it's too big.
8212         (mono_debug_add_type): Likewise.
8213
8214 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
8215
8216         * threads.c, appdomain.c: remove #ifdefs from the code.
8217
8218 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
8219
8220         * metadata-internals.h: Added flags to MonoAssembly to cache the most
8221         common security informations. This allows us to stay in unmanaged code
8222         when doing LinkDemand and it's special cases (except for the first 
8223         time for initialization). The flags a very much used with --security.
8224         * reflection.c|h: Added code to get declarative security attributes 
8225         for LinkDemand and InheritanceDemand. This required to refactor the
8226         existing code for Demand.
8227         * security-manager.c|h: Added new method fields for the special cases
8228         of LinkDemand.
8229
8230 2005-02-10  Martin Baulig  <martin@ximian.com>
8231
8232         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
8233         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
8234
8235 2005-02-10  Martin Baulig  <martin@ximian.com>
8236
8237         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
8238         debugging code; this is almost a complete rewrite.
8239
8240         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
8241
8242 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8243
8244         * domain.c, object.h: expose mono_string_equal () and 
8245         mono_string_hash ().
8246         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
8247         it's implemented in managed code.
8248
8249 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8250
8251         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
8252         lo leak objects between appdomains.
8253
8254 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8255
8256         * assembly.c: old compilers compilation fix from 
8257         robertj@gmx.net (Robert Jordan).
8258
8259 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
8260
8261         * class-internals.h: Little reminder for the future.
8262
8263         * debug-helpers.c: Fix up wrapper_type_names
8264
8265 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8266
8267         * image.c, metadata-internals.h: when loading an image from a file,
8268         mmap all of it and use the same codepaths as when using a
8269         in-memory image: the code is simpler and we use less memory
8270         (both writable and readonly).
8271
8272 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8273
8274         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
8275         API to alloc runtime data structures that need to be tracked by the
8276         GC and contain pointers.
8277         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
8278         make the code more readable and eventually use a different GC.
8279
8280 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
8281
8282         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
8283         for out arguments.
8284         
8285 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
8286
8287         * object.c: In release_type_locks(), don't release the cctor lock
8288         if it has already been released. This fixes a crash in the
8289         thread5 test.
8290
8291 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
8292
8293         * gc.c, marshal.c, icall.c: register a delegate for finalization
8294         only when the native function pointer has been allocated for it.
8295
8296 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8297
8298         * object.c: cleaned up some code, allocate objects that are
8299         pointer free with the atomic malloc variant. Allocate memory
8300         for static data from the mempool if it's pointer-free.
8301         Allocate the bounds array at the end of the array data, when needed.
8302         * object-internals.h, object.h: move a private function in a private
8303         header.
8304         * class.c: handle missing case in tracking references in fields.
8305
8306 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
8307
8308         * class.c, class-internals.h: keep track if a type has
8309         reference fields in either the instance or static fields.
8310
8311 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
8312
8313         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
8314         and renamed to MonoRuntimeInfo. Added fields to store the expected
8315         framework assembly version. Changed mono_get_framework_version and
8316         mono_get_runtime_version for a single mono_get_runtime_info method.
8317         
8318         * assembly.c: Added method to remap system assembly versions to the
8319         current executing runtime version. Removed old mapping code.
8320         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
8321         
8322         * icall.c, reflection.c: Track api changes.
8323
8324 2005-02-06  Miguel de Icaza  <miguel@novell.com>
8325
8326         * loader.c (method_from_memberref): Improve error reporting,
8327         produce the class name instead of the typeref/typedef index. 
8328
8329 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
8330
8331         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
8332
8333 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8334
8335         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
8336         stdcall and charset name mangling.  Reorganize the code and add
8337         some tracing stuff.
8338
8339 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8340
8341         * monodiet.c: More iters!
8342
8343         * marshal.c: Iter usage.
8344
8345         * icall.c: Iter usage.
8346
8347         * object.c: Use iters.
8348
8349         * debug-helpers.c: More iters
8350
8351 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8352
8353         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
8354         under win32.
8355
8356 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
8357
8358         * mono-debug-debugger.c: use iters
8359
8360         * class.c, class-internals.h: mono_class_setup_events is static
8361         now
8362
8363         * All callers: use iters
8364
8365 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
8366
8367         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
8368         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
8369
8370 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8371
8372         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
8373
8374         * marshal.h: Add prototypes for ldfld/stfld_remote.
8375
8376         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
8377         this is called during startup.
8378         
8379 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
8380
8381         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
8382         MonoThreadsSync struct private in monitor.c. Changed the way
8383         MonoThreadsSync is allocated so it's faster and there is no
8384         need to keep track of it with a finalizer and it uses less memory.
8385         This also finally allows us to allocate mono objects as ptrfree when
8386         there are no reference fields.
8387
8388 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
8389
8390         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
8391         disappearing link to the GC interface and use them to simplify
8392         the gchandles code.
8393
8394 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
8395
8396         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
8397         stfld_remote which call mono_load/store_field_new. This allows methods
8398         calling ldfld/stfld wrappers to be AOTed.
8399
8400         * console-io.c: Include sys/filio.h under solaris.
8401         
8402         * console-io.c: Include curses.h if needed correctly.
8403
8404 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8405         
8406         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
8407         method->klass as well.
8408
8409         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
8410
8411         * class.c (mono_class_init): Switch on lazy initialization of 
8412         methods.
8413
8414         * class.c (mono_class_get_finalizer): Handle the case when the 
8415         finalizer is inherited.
8416
8417 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8418
8419         * console-io.c: <curses.h> is needed by term.h on solaris.
8420
8421 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
8422
8423         * icall.c, class-internals.h, monodiet.c, class.c: Remove
8424         mono_class_setup_properties where possible. Remove this ftn from
8425         the header file, and make it static.
8426
8427 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
8428
8429         * loader.c: Add missing setup_... call.
8430
8431         * class.c: Add missing setup_... calls.
8432
8433         * class.c (mono_class_init): Switch on lazy initialization of 
8434         the generic vtable.
8435         
8436         * class.c (mono_class_init): Fix generics broken by the recent changes.
8437
8438         * monodiet.c (handle_type): Add missing setup_... calls.
8439
8440         * class.c: Back out garbage in previous patch.
8441         
8442         * class.c: Add missing setup_... calls.
8443
8444         * class.c (mono_class_get_method_from_name_flags): Avoid calling
8445         mono_class_setup_methods () if possible.
8446
8447         * class-internals.h (MonoClass): Add 'has_cctor' flag.
8448
8449         * class-internals.h (MonoCachedClassInfo): New structure.
8450
8451         * class.c: Initialize properties and events fields of MonoClass lazily.
8452
8453         * class.c: Add infrastructure for lazily initializing the methods and
8454         vtable fields of MonoClass. Not yet used.
8455
8456         * class.c (mono_class_get_finalizer): New helper function.
8457
8458         * class.c: Add infrastructure for loading some class related data from
8459         an AOT file.
8460
8461         * object.c: Add infrastructure for initializing the vtable from data
8462         in the AOT file.
8463
8464         * gc.c (run_finalize): Use mono_class_get_finalizer ().
8465
8466         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
8467         appropriate initialization function before accessing parts of the
8468         MonoClass structure.
8469
8470         * marshal.c: Fix warnings.
8471         
8472         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
8473
8474         * mono-debug-debugger.c (get_exception_message): Use 
8475         mono_class_get_method_from_name_flags ().
8476
8477 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
8478
8479         * reflection.c, appdomain.c: Replace a few manual searches that
8480         Zoltan missed. (Paolo approved this part of my initial patch).
8481
8482 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
8483
8484         * profiler.c: disable recording statistical events at report time.
8485
8486 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8487
8488         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
8489         to byteswap arrays of enum values, too (bug #72080).
8490
8491 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
8492
8493         * appdomain.c (set_domain_search_path): Allow this to be called if
8494         domain->setup is not yet set.
8495
8496         * loader.c (mono_method_get_index): New helper function.
8497
8498         * loader.c reflection.c: Use mono_method_get_index ().
8499
8500         * class.c (mono_class_get_method_from_name_flags): New helper method.
8501
8502         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
8503         this.
8504
8505         * class.c (mono_class_get_cctor): New helper method.
8506
8507         * string-icalls.c object.c class.c marshal.c reflection.c: Use
8508         mono_class_get_method () to look up methods.
8509
8510 2005-02-01  Miguel de Icaza  <miguel@novell.com>
8511
8512         * console-io.c: Fix the build, this should work on Windows.
8513
8514 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
8515
8516         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
8517         be set to null to keep things valid
8518
8519 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8520
8521         * icall.c: added Console 2.0 icalls.
8522         * Makefile.am: added console-io.[ch]
8523         * console-io.[ch]: internal calls for Console 2.0 API.
8524
8525 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8526
8527         * class.c: make sure we consider all the interfaces
8528         when calculating max_interface_id (bug found by
8529         Jeroen Frijters running ikvm).
8530
8531 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
8532
8533         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
8534         valuetype fields to null.
8535
8536         * object.c (set_value): Ditto. Fixes #71669.    
8537
8538 2005-01-31  Martin Baulig  <martin@ximian.com>
8539
8540         * metadata.c (mono_metadata_has_generic_params): New public
8541         function; checks whether something is a generic method.
8542
8543 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
8544
8545         * appdomain.c: fix infinite recursion when adding assemblies.
8546
8547 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
8548
8549         * object.c: Fix small typo to return all items for Environment.
8550         GetCommandLineArgs.
8551
8552 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
8553
8554         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
8555         reflection.c: more domain and assembly-unload related fixes
8556         and memory leaks plugs.
8557
8558 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
8559
8560         * 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.
8561
8562 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
8563
8564         * loader.c (mono_method_signature): Make this method lazy
8565         (mono_get_method_from_token): Don't computate the signature here.
8566
8567         Doing this saves quite a bit of memory. I got 90 kb on starting up
8568         monodoc. It should also save some disk reads on startup.
8569
8570         * *: MonoMethod->signature might be NULL now. You *MUST* use
8571         mono_method_signature.
8572
8573 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
8574
8575         * object.c (mono_runtime_get_main_args): Return an array from the
8576         current domain here. Fixes #71938.
8577
8578 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
8579
8580         * monitor.c: formatting changes to comply with the
8581         mono coding style and remove #ifdefs from the code.
8582
8583 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8584
8585         * metadata.c, private.h: remove some unneeded data
8586         and use a more compact representation for table schemas.
8587
8588 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
8589
8590         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
8591         to get a better distribution in hash tables.
8592         * *.c: use mono_aligned_addr_hash() where appropriate.
8593         * assembly.c: make var static.
8594
8595 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
8596
8597         * domain-internals.h: Put MonoJitInfo on a diet.
8598
8599         * domain.c: Fix a warning.
8600
8601 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8602
8603         * gc.c: rework the gc handles code to reuse handles
8604         when freed.
8605
8606 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
8607
8608         * domain.c: fixed long standing bug in mono_string_equal() which
8609         was brought to light with the ldstr changes.
8610
8611 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
8612
8613         * reflection.c: Remove warning by adding missing include for marshal.h
8614
8615 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
8616
8617         * domain.c, object.c: change the ldstr_table to hold
8618         MonoString* as keys: makes the runtime isinterned lookup
8619         faster and simplifies memory management.
8620
8621 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
8622  
8623         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
8624         possible to add imperative security checks before calling the icall.
8625         * reflection.c: Return security attributes on the original MonoMethod
8626         (and not the wrapped one). This fix permissions on icalls.
8627
8628 2005-01-25  Dick Porter  <dick@ximian.com>
8629
8630         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
8631         the check for mktime() support actually test the mktime() return
8632         value.  "Fixes" bug 71682, though the output is still different to
8633         MS.
8634
8635 2005-01-25  Martin Baulig  <martin@ximian.com>
8636
8637         * class.c (mono_class_is_assignable_from): Make this work for
8638         generic instances.
8639
8640 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
8641
8642         * marshal.c (mono_string_utf8_to_builder)
8643         (mono_string_builder_to_utf16): We might not have ownership of the
8644         string. In thise case, we need to create a new buffer.
8645
8646         * object-internals.h (mono_stringbuilder_capacity): sb->str might
8647         be null, in which case, use the default capacity.
8648
8649 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
8650
8651         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
8652         GC events to the profiler.
8653
8654 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
8655
8656         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
8657         if you don't want the GC to run.
8658
8659 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
8660
8661         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
8662         start providing a GC API and keeping different implementations in
8663         their own file.
8664         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
8665
8666 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
8667
8668         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
8669         mmap rather than allocating a huge buffer.
8670         (mono_debug_close_mono_symbol_file): Free the buffer allocated
8671         above.
8672
8673 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
8674
8675         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
8676         and CheckExecutionRights.
8677         * reflection.c|h: Keep the index of the declarative security to be 
8678         used, instead of the pointer, when AOT compiler is used. Also add 
8679         class initialization when requesting demands.
8680         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
8681         CheckExecutionRights. Both properties are now FALSE by default, and
8682         unmodifiable, unless the --security option is used.
8683
8684 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8685
8686         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8687         reflection.c: properly refcount images and assemblies, many leaks fixed.
8688
8689 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8690
8691         * threadpool.c: increase the timeout for threads in the thread pool to
8692         10s.  Fixes bug #67159.
8693
8694 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8695
8696         * class-internals.h: Sun's compiler insists on explicit
8697         signed on bit fields to handle then correctly.
8698
8699 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8700
8701         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8702         Make the size of the array fit only the number of invalid path
8703         chars that we have.
8704
8705         * class.c (_mono_class_get): Improve the error reporting when a
8706         class referenced is not found, to assist debugging. 
8707
8708 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8709
8710         * threads.c: fix off-by-one error.
8711         * domain.c: free data allocated in the domain.
8712
8713 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8714
8715         * reflection.c (mono_method_body_get_object): Fill out exception info
8716         as well.
8717
8718         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
8719         structure.
8720         
8721 2005-01-19  Martin Baulig  <martin@ximian.com>
8722
8723         * loader.c (mono_get_method_constrained): Make this work again.
8724
8725 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8726
8727         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
8728         guint16 to match the managed side.
8729
8730         * reflection.c (mono_reflection_body_get_object): Fill out local
8731         variables array.
8732
8733         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
8734         as well.
8735
8736         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
8737         'local_var_sig_token'.
8738
8739 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
8740
8741         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
8742         System.Drawing.
8743
8744         * reflection.c (mono_method_body_get_object): Handle abstract and
8745         runtime methods.
8746
8747 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
8748
8749         * marshal.c, loader.c, class-internals.h, reflection.c:
8750         store the emthod data for a wrapper in an array instead of a list.
8751
8752 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
8753
8754         * marshal.c: change the code to allocate memory more
8755         conservatively for method wrappers.
8756
8757 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
8758
8759         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
8760         fields from MonoClass to the marshal info structure where they belong.
8761
8762 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8763
8764         * class.c, object.c, class-internals.h, marshal.c: rearrange
8765         some fields and tweak some types to lower memory usage.
8766
8767 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
8768
8769         * threads.c (signal_thread_state_change): Handle the case when the
8770         target thread is the current thread.
8771
8772         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
8773
8774         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
8775         emit_ptr_to_object_conv. 
8776
8777         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
8778         marshalling. Fixes #71352.
8779
8780 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8781
8782         * metadata.h, blob.h: move table enum to blob.h so it can be included
8783         in any header.
8784         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
8785         cut the size of MonoImage/MonoDynamicImage.
8786
8787 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
8788
8789         * profiler.c (mono_profiler_install_simple): Fix default arguments.
8790
8791 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8792
8793         * reflection.c, reflection.h, icall.c: add a function to check
8794         if an attribute type is defined for a metadata object.
8795
8796 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
8797
8798         * object-internals.h: Added some needed fields from StringBuilder class.
8799         * marshal.c: Set the maxCapacity when creating a StringBuilder.
8800
8801 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
8802
8803         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
8804         threads before shutting down the runtime.
8805
8806         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
8807
8808 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8809
8810         * object-internal.h, threads.c: implement stacksize and 
8811         parameterized thread start functionality (requires
8812         matching corlib). Marked broken code for later removal.
8813
8814 2005-01-12  Martin Baulig  <martin@ximian.com>
8815
8816         * class-internals.h (MonoGenericClass): Moved the `initialized'
8817         flag to MonoDynamicGenericClass, removed `init_pending'.
8818         (MonoGenericInst): Added `is_reference' flag.
8819
8820 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
8821
8822         * reflection.c (mono_image_create_pefile): Only set the pe_offset
8823         inside the MSDOS header. Fixes #71201.
8824
8825         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
8826         gc thread.
8827         (mono_domain_finalize): Ditto.
8828
8829 2005-01-12  Martin Baulig  <martin@ximian.com>
8830
8831         * class.c (mono_get_shared_generic_class): Use the cache for
8832         non-dynamic generic classes.
8833
8834         * class-internals.h (mono_class_create_generic_2): Removed
8835         function prototype, this function is now static inside class.c.
8836
8837         * class.c (mono_class_create_generic_2): Made this static, only
8838         call it from mono_class_init() and mono_class_setup_parent().
8839         (collect_implemented_interfaces_aux): Call mono_class_init() on
8840         the interfaces we collect.
8841         (mono_class_setup_vtable): Call mono_class_init (class->parent).
8842
8843 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8844
8845         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
8846         it a real thread handle.
8847
8848         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
8849         MonoJitExceptionInfo, since each catch clause needs its own variable.
8850         
8851 2005-01-11  Dick Porter  <dick@ximian.com>
8852
8853         * image.c (mono_pe_file_open): New variant on mono_image_open()
8854         that does not set up the CLI metadata; used for FileVersionInfo so
8855         it can get the data for windows binaries too.
8856         
8857         * process.c (process_read_string_block): Don't read off the end of
8858         the StringTable block.
8859
8860         These both fix bug 70766.
8861
8862 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8863
8864         * gc.c: set some fields to NULL at GC cleanup time.
8865         * threads.c: if we quit the main thread, call exit ().
8866
8867 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8868
8869         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8870
8871 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8872
8873         * threads.h, threads.c, object.c: added accessor and settor for
8874         main_thread. Handle it specially when exiting from it: wait
8875         for other foreground threads to exit.
8876
8877 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8878
8879         * process.c, verify.c: remove some bloat.
8880
8881 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8882
8883         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8884         the calling convention to cdecl under win32.
8885
8886 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8887
8888         * object.c (mono_object_get_size): New function to get the size of
8889         an object instance.
8890
8891         * profiler.c (simple_allocation): Use above.
8892
8893 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8894
8895         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8896         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8897         get an appdomain by it's id and we can't assume the root's id is 0).
8898         * domain-internals.h: Change the function prototype to match.
8899         * icall.c: Change the icall table for AppDomain.
8900
8901 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8902
8903         * locales.c (string_invariant_compare_char): Only compute
8904         GUnicodeTypes in the case where we need them.  Test for ordinality
8905         first and return if so.
8906
8907         From the commit:
8908
8909                 /*
8910                  * FIXME: here we must use the information from c1type and c2type
8911                  * to find out the proper collation, even on the InvariantCulture, the
8912                  * sorting is not done by computing the unicode values, but their
8913                  * actual sort order.
8914                  */
8915
8916 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8917
8918         * loader.c: for P/Invoke methods, allow the "Internal" shared
8919         library name to refer to the calling process symbol namespace.
8920
8921 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8922
8923         * Makefile.am: Add the security manager to the build.
8924         * security-manager.c|h: New. Initialization of the security manager.
8925
8926 2005-01-07  Dick Porter  <dick@ximian.com>
8927
8928         * threads.c: 
8929         * monitor.c: Update thread state during Monitor and WaitHandle
8930         waits.  Fixes bug 71031.
8931
8932 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8933
8934         * reflection.c (property_encode_signature): Correctly handle when the
8935         property has no methods.
8936
8937 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8938
8939         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8940         
8941         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8942         fields from mb, not rmb. Fixes #71017.
8943
8944         * marshal.c (emit_ptr_to_str_conv): Add support for 
8945         ByValTStr -> string conversion. Fixes #71015.
8946
8947         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8948
8949         * mempool.c (mono_mempool_contains_addr): New helper function.
8950
8951 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8952
8953         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8954         HasSematics encoded fields.
8955         
8956         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8957         invalid string marshalling.
8958
8959         * metadata.c: Fix warnings.
8960         
8961 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8962
8963         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8964         profiler support.
8965
8966 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8967
8968         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8969         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8970         tests.
8971
8972 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8973
8974         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8975         so methods containing these can be AOTed.
8976
8977 2005-01-03  Martin Baulig  <martin@ximian.com>
8978
8979         * loader.c (find_method): Removed the hack for generic instances.
8980         (method_from_memberref): If our parent is a generic instance, pass
8981         its generic type definition to find_method() and then inflate the
8982         method.
8983         (mono_get_method_constrained): Pass the generic type definition to
8984         find_method() and inflate the method later.
8985
8986         * class-internals.h (MonoStats): Added `generic_class_count'.
8987
8988         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8989         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8990
8991         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8992         generic type definitions.
8993
8994 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8995
8996         * loader.c icall.c: Fix warnings.
8997
8998 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8999
9000         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
9001         blittable types. Fixes #70864.
9002
9003 2004-12-29  Martin Baulig  <martin@ximian.com>
9004
9005         * icall.c
9006         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
9007
9008         * reflection.c (mono_method_get_object): Create a
9009         "System.Reflection.MonoGenericMethod" for inflated methods; don't
9010         call mono_get_inflated_method().
9011
9012         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
9013
9014 2004-12-27  Martin Baulig  <martin@ximian.com>
9015
9016         * class-internals.h (MonoMethod): Added `is_inflated' flag.
9017         (MonoMethodInflated): Added `inflated' field.
9018
9019         * class.c (mono_class_inflate_generic_method): Don't really
9020         inflate the method here; just set the `is_inflated' flag in the
9021         MonoMethod.
9022         (mono_class_get_inflated_method): Actually inflate the method here
9023         if it's not already inflated; we use the MonoMethodInflated's new
9024         `inflated' field as a cache.
9025
9026 2004-12-26  Martin Baulig  <martin@ximian.com>
9027
9028         * class.c
9029         (inflate_generic_class): Moved some code out of inflate_generic_type().
9030         (mono_class_inflate_generic_method): If we're already inflated,
9031         inflate the context and use the declaring method; ie. make sure
9032         the declaring method of an inflated method is always the generic
9033         method definition.
9034         (mono_class_create_from_typedef): Create
9035         `class->generic_container->context->gclass'.
9036
9037 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
9038
9039         * metadata-internals.h, marshal.c, reflection.c: More
9040         MonoGHashTable->GHashTable.
9041
9042         * domain-internals.h, class.c: Change MonoGHashTable's into
9043         GHashTables for some cases where no gc stuff is used
9044
9045         All users: update apis
9046
9047 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
9048
9049         * metadata.c (builtin_types): Make this `const'. Makes this get
9050         put into the shareable section.
9051         (mono_metadata_init): Casts to make gcc happy.
9052
9053 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
9054
9055         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
9056
9057 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
9058
9059         * icall.c: Added an internal call to retrieve the position and length
9060         of assembly-level declarative security attributes (RequestMinimum, 
9061         RequestOptional and RequestRefuse). This is used by the Assembly class
9062         to re-create the corresponding permission sets.
9063
9064 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
9065
9066         * marshal.c: fix the stelemref wrapper to be type correct
9067         (and faster).
9068
9069 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
9070
9071         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
9072         to do key & 0x7fffffff. Hashtable already does this. It just
9073         results in longer code.
9074
9075 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
9076
9077         * appdomain.c: Bump corlib version.
9078         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
9079         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
9080         * reflection.c|h: Add functions to get declarative security infos
9081         (blob position and length) for assemblies, classes and methods.
9082
9083 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
9084
9085         * reflection.c: sort the constant table (bug #70693).
9086
9087 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
9088
9089         * object-internals.h, threads.c, domain.c: add accessors for
9090         the MonoThread and MonoDomain tls keys.
9091
9092 2004-12-18  Martin Baulig  <martin@ximian.com>
9093
9094         * class.c (inflate_generic_type): If we're inflating a generic
9095         instance, set `ngclass->context->container = context->container';
9096         ie. the container we inflated into.
9097
9098         * metadata.c (mono_metadata_parse_generic_param): Reflect above
9099         inflate_generic_type() changes.
9100
9101 2004-12-17  Martin Baulig  <martin@ximian.com>
9102
9103         * class-internals.h
9104         (MonoGenericClass): Replaced `MonoType *generic_type' with
9105         `MonoClass *generic_class'.  Removed `dynamic_info'; if
9106         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
9107         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
9108
9109 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
9110
9111         * exception.c (mono_exception_from_token): New helper function.
9112
9113 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
9114
9115         * assembly.c (mono_assembly_load_with_partial_name): Call 
9116         mono_assembly_loaded before invoking the preload hooks. Fixes
9117         #70564.
9118
9119         * object-internals.h (MonoThread): Change culture_info and 
9120         ui_culture_info into an array.
9121
9122         * threads.c: Cache culture info objects from more than one appdomain.
9123
9124         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
9125         current UI culture.
9126
9127 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
9128
9129         * threads.h threads.c appdomain.c: Clear the culture_info field of
9130         all threads during unloading if they point to an object in the dying
9131         appdomain.
9132
9133 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
9134
9135         * culture-info.h (TextInfoEntry): New struct
9136         * object-internals.h: sync with managed
9137         * locales.c: fill the `text_info_data' field
9138         * culture-info-tables.h: update
9139
9140 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
9141
9142         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
9143         collector.
9144
9145 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
9146
9147         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
9148         (ves_icall_ModuleBuilder_getMethodToken): Ditto
9149
9150 2004-12-12  Martin Baulig  <martin@ximian.com>
9151
9152         * mono-debug-debugger.c (write_type): If we're an enum and the
9153         builtin types have already been initialized, call mono_class_init().
9154
9155 2004-12-11  Martin Baulig  <martin@ximian.com>
9156
9157         * metadata.c (mono_metadata_load_generic_params): Added
9158         `MonoGenericContainer *parent_container' argument; automatically
9159         compute `container->is_method'; pass the correct owner to
9160         get_constraints().      
9161
9162         * reflection.c (compare_genericparam): Sort the GenericParam table
9163         according to increasing owners. 
9164
9165 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
9166
9167         * profiler.c: allow disabling the default profiler.
9168
9169 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
9170
9171         * decimal.c, icall.c: allow disabling System.Decimal support.
9172
9173 2004-12-09  Marek Safar <marek.safar@seznam.cz>
9174
9175         * reflection.c: Add support for null attribute arguments.
9176
9177 2004-12-09  Martin Baulig  <martin@ximian.com>
9178
9179         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
9180         names to get rid of compiler warnings.
9181
9182 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9183
9184         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
9185         mono_marshal_load_type_info (). Fixes #69625.
9186         (mono_marshal_get_ptr_to_struct): Likewise.
9187
9188 2004-12-08  Martin Baulig  <martin@ximian.com>
9189
9190         * mono-debug.h: Bumped version number to 47.
9191
9192         * mono-debug-debugger.c
9193         (mono_debugger_event_handler, mono_debugger_event): Take two
9194         guint64 arguments insteed of a gpointer and a guint32.  
9195
9196 2004-12-08  Martin Baulig  <martin@ximian.com>
9197
9198         * debug-mono-symfile.h
9199         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
9200         `address' to `native_offset'.
9201
9202 2004-12-08  Martin Baulig  <martin@ximian.com>
9203
9204         * class.c (mono_class_create_from_typespec): Only inflate if we
9205         either have `context->gclass' or `context->gmethod'.
9206
9207 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
9208
9209         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
9210
9211         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
9212
9213         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
9214
9215         * reflection.c (mono_assembly_get_object): Remove the workaround put
9216         in for the release.
9217         
9218         * appdomain.c: Use the corlib_internal field from MonoAssembly.
9219
9220         * appdomain.c: Bump corlib version.
9221
9222         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
9223         be visible in other appdomains.
9224
9225 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
9226
9227         * threads.c: Interlocked inc and dec for longs were messed up,
9228         use a KISS based impl for this. Fixes 70234
9229
9230 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
9231
9232         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
9233
9234 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
9235
9236         * icall.c: fix to follow policy not to allow struct
9237         arguments in icalls.
9238
9239 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9240
9241         * process.c: make the patch that handles spaces in file paths work
9242         on mono/windows too.
9243
9244 2004-12-06  Martin Baulig  <martin@ximian.com>
9245
9246         * class.c (mono_class_create_generic): Call
9247         mono_class_setup_supertypes() if we're dynamic.
9248         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
9249
9250 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
9251
9252         * object-internals.h: Add new fields to MonoThread.
9253
9254         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9255
9256         * icall.c threads-types.h threads.c: Add new icalls.
9257
9258         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
9259
9260         * object-internals.h (MonoReflectionAssembly): Sync object layout with
9261         managed side.
9262
9263         * appdomain.c: Bump corlib version.
9264
9265         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
9266         internal assemblies. Fixes #69181.
9267
9268 2004-12-05  Martin Baulig  <martin@ximian.com>
9269
9270         * class.c (mono_class_inflate_generic_signature): Make this a
9271         no-op if `context' is NULL or we don't have any type parameters;
9272         also copy `sentinelpos'.        
9273
9274 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
9275
9276         * image.c: Add unbox_wrapper_cache.
9277
9278         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
9279
9280         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
9281         function generator.
9282         
9283         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
9284         Fixes #70173.
9285
9286         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
9287         
9288 2004-12-04  Martin Baulig  <martin@ximian.com>
9289
9290         * loader.c (mono_method_get_signature_full): New public function;
9291         like mono_method_get_signature(), but with an additional
9292         `MonoGenericContext *' argument.
9293
9294         * class.c (mono_class_inflate_generic_signature): Formerly known
9295         as inflate_generic_signature(); make this public.
9296
9297 2004-12-04  Martin Baulig  <martin@ximian.com>
9298
9299         * metadata.c
9300         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
9301         instead of a `MonoGenericContainer *'.  
9302         (mono_metadata_parse_array_full): Likewise.
9303         (mono_metadata_parse_signature_full): Likewise.
9304         (mono_metadata_parse_method_signature_full): Likewise.
9305         (mono_metadata_parse_generic_inst): Likewise.
9306         (mono_metadata_parse_generic_param): Likewise.
9307         (mono_metadata_parse_mh_full): Likewise.
9308         (mono_type_create_from_typespec_full): Likewise.
9309
9310 2004-12-03  Martin Baulig  <martin@ximian.com>
9311
9312         * class-internals.h (MonoGenericContainer): Replaced the
9313         `MonoGenericContext * pointer with a `MonoGenericContext'
9314         structure and made it the first element.
9315
9316 2004-12-03  Martin Baulig  <martin@ximian.com>
9317
9318         * class.c
9319         (inflate_generic_type): Set the `context->container' when creating
9320         a new MonoGenericContext.
9321         (mono_class_inflate_generic_method): Likewise.
9322         (mono_class_create_from_typespec): Just use `context->container'
9323         to get the container.
9324
9325         * loader.c (method_from_methodspec): Set `context->parent' from
9326         `context->container' - and if that's a method container, use its
9327         parent.  Also set the `context->container' when creating a new
9328         MonoGenericContext.
9329         (mono_get_method_from_token): Use just `context->container' to get
9330         the container.
9331
9332         * metadata.c (do_mono_metadata_parse_generic_class): Also set
9333         `gclass->context->container'.
9334
9335         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
9336         the `context->container' when creating a new MonoGenericContext.
9337
9338 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
9339
9340         * reflection.c (compare_genericparam): Sort params with identical
9341         owner by their number. Fixes gen-111 on sparc.
9342
9343 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9344
9345         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
9346         around the domain changes.
9347
9348         * appdomain.c (mono_domain_unload): Handle the case when the thread
9349         calling Unload is itself being aborted during unloading. Fixes #70022.
9350
9351         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
9352
9353         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
9354         checkpoint_func as an icall so it gets a wrapper.
9355         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
9356         in the cross-appdomain wrappers too.
9357
9358         * threads.c (mono_thread_has_appdomain_ref): Make this public.
9359
9360         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
9361
9362         * reflection.c: Fix some memory leaks.
9363         
9364 2004-12-02  Martin Baulig  <martin@ximian.com>
9365
9366         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
9367
9368         * metadata.c (generic_class_cache): New static hashtable.
9369         (mono_metadata_lookup_generic_class): New public method.
9370
9371 2004-12-02  Martin Baulig  <martin@ximian.com>
9372
9373         * class.c (mono_class_create_from_typedef): Call
9374         mono_class_setup_parent() and mono_class_create_mono_type() before
9375         parsing the interfaces.
9376
9377 2004-12-02  Martin Baulig  <martin@ximian.com>
9378
9379         * metadata.c (generic_inst_cache): New static hashtable.
9380         (mono_metadata_lookup_generic_inst): New public function.
9381         (mono_metadata_inflate_generic_inst): New public function.
9382         (mono_metadata_parse_generic_inst): New public function.
9383         (do_mono_metadata_parse_generic_class): Use the new
9384         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
9385         since this'll also use the cache.
9386
9387         * reflection.c (mono_reflection_bind_generic_method_parameters):
9388         Use mono_metadata_lookup_generic_inst() to use the new cache.
9389
9390         * class.c (inflate_mono_type): Use
9391         mono_metadata_inflate_generic_inst() to inflate a generic
9392         instance; this'll also use the new cache.
9393
9394         * loader.c (method_from_methodspec): Use
9395         mono_metadata_parse_generic_inst() and
9396         mono_metadata_inflate_generic_inst() rather than parsing it
9397         manually, so we can use the new cache.
9398
9399 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
9400
9401         * threads.c (wait_for_tids): Do not incorrectly free threads when 
9402         the wait times out.
9403
9404 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
9405
9406         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
9407         iter->args based on whether parameters are passed in registers (i.e.
9408         MONO_ARCH_REGPARMS is defined)
9409
9410 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
9411
9412         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
9413         the exception message. Fixes #70070.
9414         (method_from_methodspec): Fix warnings.
9415
9416 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9417
9418         * process.c: (complete_path) return the path quoted
9419
9420 2004-12-01  Martin Baulig  <martin@ximian.com>
9421
9422         * class-internals.h (MonoGenericInst): New structure.
9423         (MonoGenericClass): Replaced `type_argc', `type_argv' and
9424         `is_open' with `MonoGenericInst *inst'.
9425         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
9426         `is_open' with `MonoGenericInst *inst'.
9427
9428 2004-11-30  Martin Baulig  <martin@ximian.com>
9429
9430         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
9431
9432         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
9433         to `generic_class_cache'.
9434
9435         * metadata.c
9436         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
9437         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
9438         (mono_generic_inst_is_valuetype): Renamed to
9439         mono_generic_class_is_valuetype().
9440
9441         * class-internals.h
9442         (MonoGenericInst): Renamed to MonoGenericClass.
9443         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
9444         (MonoClass): Renamed `generic_inst' to `generic_class'.
9445         (MonoGenericContext): Renamed `ginst' to `gclass'.
9446
9447         * object-internals.h
9448         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
9449
9450         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
9451         mono_reflection_generic_class_initialize().
9452
9453         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
9454         now known as "System.Reflection.MonoGenericClass".
9455         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
9456
9457 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
9458
9459         * class-internals.h: Added a flag field to MonoClass to cache the
9460         declarative security attributes actions associated with the class.
9461         * domain-internals.h: Added booleans to MonoJitInfo to cache the
9462         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
9463         applicable to the JITted method.
9464         * reflection.c|h: Added functions to extract (as flags) which security
9465         actions are available (declaratively) for a method, class or assembly.
9466         * metadata.c|h: Added functions to search the declarative security
9467         table in the metadata.
9468         
9469 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
9470
9471         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
9472         EXPORTEDTYPES are already in the class name cache, so there is no
9473         need to add extra code here to look at them. Just removes a bit of
9474         cruft.
9475
9476         (ves_icall_System_Environment_get_TickCount): No need for #if
9477         WINDOWS. We already have the code in io-layer.
9478
9479 2004-11-28  Martin Baulig  <martin@ximian.com>
9480
9481         * loader.c
9482         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
9483         Fixes gen-112.cs.
9484
9485 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
9486
9487         * assembly.c (do_mono_assembly_open): Instead of having a
9488         conditional WITH_BUNDLE, incorporate support for bundles here, by
9489         having a global `bundles' variable holding a pointer to the actual
9490         bundles. 
9491
9492         (mono_register_bundled_assemblies): New API call used by the
9493         bundle code. 
9494
9495         See mkbundle.1 for details.
9496         
9497 2004-11-27  Martin Baulig  <martin@ximian.com>
9498
9499         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
9500         the vtable for generic methods.
9501
9502 2004-11-26  Martin Baulig  <martin@ximian.com>
9503
9504         * metadata.c
9505         (mono_metadata_generic_method_hash): New public function.
9506         (mono_metadata_generic_method_equal): Likewise.
9507
9508         * class-internals.h
9509         (MonoGenericContainer): Added `GHashTable *method_hash'.
9510
9511         * reflection.c (ReflectionMethodBuilder): Added
9512         `MonoGenericContainer *generic_container'.
9513         (reflection_methodbuilder_to_mono_method): Don't create a new
9514         MonoGenericContainer each time we're called.
9515         (mono_reflection_bind_generic_method_parameters): Use
9516         `container->method_hash' to cache the results so we don't create a
9517         different method if we're called several times with the same
9518         arguments.
9519
9520         * loader.c (method_from_methodspec): Use the new
9521         `container->method_hash' here, too.
9522
9523 2004-11-26  Martin Baulig  <martin@ximian.com>
9524
9525         * class.c (inflate_generic_signature): Correctly compute
9526         `res->has_type_parameters'.
9527         (mono_class_vtable): Use the `has_type_parameters' flag to
9528         determine whether we're a generic method.
9529
9530         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
9531
9532 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
9533
9534         * object.c (mono_runtime_run_main): Fix a small memory leak.
9535
9536 2004-11-25  Martin Baulig  <martin@ximian.com>
9537
9538         * class.c (set_generic_param_owner): Fixed the loop.
9539
9540 2004-11-25  Martin Baulig  <martin@ximian.com>
9541
9542         * object.c (mono_class_vtable): Don't create any JIT wrappers for
9543         generic methods.
9544
9545 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
9546
9547         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
9548         names. Fixes #69787.
9549
9550 2004-11-24  Martin Baulig  <martin@ximian.com>
9551
9552         * class.c (mono_class_create_generic_2): If we don't have a
9553         `ginst->parent', inflate `gklass->parent' to get our parent.
9554
9555 2004-11-24  Martin Baulig  <martin@ximian.com>
9556
9557         * reflection.c (compare_genericparam): Correctly sort the
9558         GenericParam table; fixes #69779.
9559
9560 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
9561
9562         * reflection.c: When writing a PE file, don't create a huge
9563         buffer in memory. Just write the arrays we have to the file.
9564         This reduces memory usage.
9565
9566         * metadata-internals.h: MonoDynamicStream pefile is no longer used
9567         globally.
9568
9569 2004-11-17  Martin Baulig  <martin@ximian.com>
9570
9571         * class.c (mono_class_init): Don't setup `class->parent' for
9572         dynamic instances; moved this to mono_class_generic_2().
9573         (mono_class_create_generic): Also set `klass->inited' for dynamic
9574         generic instances.
9575         (mono_class_create_generic_2): Don't do anything for dynamic
9576         generic instances.  Set `klass->parent' here and also call
9577         mono_class_setup_parent() here. 
9578
9579         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
9580         `MonoType *parent' argument; set `ginst->parent' before calling
9581         mono_class_create_generic_2(), so we set the correct parent.
9582
9583 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
9584
9585         * reflection.c: allow getting attributes from ModuleBuilder
9586         (used by ikvm).
9587
9588 2004-11-17  Martin Baulig  <martin@ximian.com>
9589
9590         * class.c (mono_class_create_from_typedef): If a type parameter is
9591         inherited from an outer class, set its owner to that class.
9592
9593 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
9594
9595         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
9596           for (int*) written size. This fixes bug #69592.
9597
9598 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
9599
9600         * icall.c: Added IsAuthenticodePresnet internal call.
9601         * image.c|h: New function that check a MonoImage for an Authenticode
9602         signature in the certificate PE data directory.
9603         * security.c|h: New internal call to ask the runtime if an 
9604         Authenticode signature seems referenced in the PE header.
9605
9606 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
9607
9608         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
9609
9610         * reflection.c (mono_image_create_pefile): Free the assembly streams
9611         after writing out the assembly file.
9612
9613         * object.c (mono_runtime_run_main): Fix small memory leak.
9614
9615         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
9616         property access modifiers. Fixes #69389.
9617
9618 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
9619
9620         * domain.c, object.c, object-internals.h, domain-internals.h,
9621         object.h, marshal.c: keep dynamic code info per domain.
9622
9623 2004-11-15  Martin Baulig  <martin@ximian.com>
9624
9625         * class.c (mono_type_get_name_recurse): Put type arguments in
9626         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
9627         see bug #68387.
9628
9629 2004-11-15  Martin Baulig  <martin@ximian.com>
9630
9631         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
9632         (mono_class_setup_vtable): When computing `the_cname' for a
9633         generic instance, don't include the namespace since we'd otherwise
9634         add it twice.
9635
9636 2004-11-15  Martin Baulig  <martin@ximian.com>
9637
9638         * class.c (mono_class_create_generic): Changed return type to void.
9639         (mono_class_create_generic_2): New public function; setup
9640         `class->method', `class->field' and `class->interfaces' here
9641         instead of in mono_class_init().
9642
9643         * class.h (mono_class_create_generic): Moved to class-internals.h.
9644
9645 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
9646
9647         * reflection.c (mono_image_create_pefile): take a file HANDLE.
9648         rather than writing to memory, write to this file. Right now,
9649         we are just writting into a buffer, and copying that. However
9650         we can avoid the buffer later.
9651
9652         (mono_dynamic_stream_reset): new function
9653
9654         * icall.c, object-internals.h: update for the above.
9655
9656 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
9657
9658         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
9659         have been using gc'd memory. First it is slower, unlikely
9660         the comment in the source code said, secondly, it increases
9661         our footprint to do it in the gc.
9662
9663         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
9664         the method so that it does not have to copy to managed code.
9665
9666 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
9667
9668         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
9669
9670 2004-11-12  Martin Baulig  <martin@localhost>
9671
9672         * reflection.c (mono_image_create_token): Allow generic method
9673         definitions here, since they may appear in an `.override'; see
9674         gen-98/gen-99 for an example.
9675
9676 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
9677
9678         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
9679         #69365.
9680
9681         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
9682         descriptive.
9683
9684 2004-11-11  Martin Baulig  <martin@ximian.com>
9685
9686         * class.c (mono_class_setup_vtable): In an explicit interface
9687         implementation, the method name now includes the arity.
9688
9689 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9690
9691         * object.c (mono_array_full_copy): Fix warning.
9692
9693 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9694
9695         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9696         mono_class_get_method_from_name() instead.
9697         
9698         * class-internals.h: Added two new types of wrappers. 
9699         Added MonoRemotingTarget enum. Added new trampoline function type, which
9700         takes an additional MonoRemotingTarget value as parameter, so it is
9701         possible to request a trampoline for a specific target.
9702         
9703         * class.c: Added new mono_class_get_method_from_name() method.
9704         
9705         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9706         general remoting sinks and one specific for cross domain calls.
9707         
9708         * debug-helpers.c: Added new wrapper names.
9709         
9710         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9711         of a remote class.
9712         
9713         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9714         
9715         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9716         with several other methods (mono_marshal_get_xappdomain_dispatch,
9717         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
9718         and others) can generate a fast remoting wrapper for cross domain calls.
9719         More information can be found in docs/remoting.
9720         Other changes: Removed mono_find_method_by_name, and used
9721         mono_class_get_method_from_name instead.
9722         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
9723         is stored in the remoting invoke hashtable.
9724         
9725         * marshal.h: published the new method for getting the xdomain wrapper,
9726         and also added a method for getting the adequate wrapper for a given
9727         method and target.
9728         
9729         * object-internals.h, object.c: Added a couple of methods for capying and
9730         cloning arrays.
9731         Modified mono_install_remoting_trampoline, which takes the new remoting
9732         trampoline that has a remoting target as parameter.
9733         mono_class_proxy_vtable now also takes a remoting target as parameter, and
9734         will return the most suitable vtable for the target.
9735         Added mono_remote_class_vtable, which returns the vtable of a remote class
9736         (which can be the normal remoting vtable or the xdomain vtable).
9737         
9738         * threads.c: the xdomain invoke and dispatch wrappers must also be
9739         protected against interruptions.
9740
9741 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9742
9743         * icall.c: use memmove in BlockCopyInternal when the source and
9744         destination arrays are the same.
9745
9746 2004-11-09  Martin Baulig  <martin@ximian.com>
9747
9748         * class-internals.h (MonoGenericContainer): Removed `method' and
9749         `signature', replaced them with `is_method' and `is_signature'
9750         flags.  Added `context'.
9751
9752         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
9753         instead of a `MonoGenericContainer *'.
9754
9755         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
9756         for dynamic type parameters.
9757         (mono_metadata_load_generic_params): Setup `container->context'.
9758
9759         * reflection.c (mono_reflection_setup_generic_class): Setup
9760         `tb->generic_container->context'.
9761         (do_mono_reflection_bind_generic_parameters): Use
9762         mono_class_inflate_generic_type() to correctly inflate types,
9763         rather than using our own hack just for MONO_TYPE_VAR.
9764
9765 2004-11-09  Martin Baulig  <martin@ximian.com>
9766
9767         * class.c (mono_class_inflate_generic_method): Small fix; don't
9768         crash here.
9769
9770         * icall.c
9771         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
9772         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
9773         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
9774         (ves_icall_Type_BindGenericParameters): Likewise.
9775         (ves_icall_Type_get_IsGenericInstance): Likewise.
9776         (ves_icall_Type_GetGenericParameterPosition): Likewise.
9777         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
9778         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9779         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9780
9781 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
9782
9783         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
9784         assembly versions and public key tokens. Fixes #69113.
9785
9786 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
9787
9788         * metadata.c: fix bug introduced with the type cache changes
9789         on 2004-11-06.
9790
9791 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
9792
9793         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
9794         the MonoClass pointer instead of the token in exception clauses.
9795         * reflection.c: updates for the above and make the code not depend
9796         on the structure of MonoExceptionClause.
9797
9798 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
9799
9800         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9801         Add support for dynamic assemblies. Fixes #69114.
9802
9803         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
9804
9805 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
9806
9807         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
9808         since most only those methods use it. the code member of
9809         MonoMethodPInvoke was dead, so that can be removed too. Also,
9810         remove inline_count (again, not used), and move slot so that it
9811         can share bits with some other flags. This saves 8 bytes in the
9812         structure and gives us about 50 kb back for mcs helloworld.cs
9813
9814         * *.[ch]: Do naming changes for the above.
9815
9816         * loader.c (mono_method_get_header): Lazily init the header
9817         on first access.
9818         (mono_get_method_from_token): don't init the header here
9819         (mono_free_method): the header may never be allocated
9820
9821         Overall, this saves 150 kb of unmanaged allocations
9822         for mcs helloworld.cs. That accounts for 10% of the unmanaged
9823         memory at runtime.
9824         
9825         * loader.c, loader.h (mono_method_get_header): new accessor.
9826
9827         * *.[ch]: use the above method. Prepares us to lazily load
9828         the header.
9829
9830         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
9831         three warnings, which are actual bugs (see 69206).
9832
9833         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
9834         unused. Saves a cool 4 bytes / method.
9835
9836 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
9837
9838         * metadata.c (builtin_types): Add types for System.Object here.
9839         (mono_metadata_parse_type_full): Cache MonoType*'s that are
9840         for a class or valuetype from klass->this_arg or klass->byval_arg.
9841
9842         On mcs for a hello world, this gets us down from 21836 MonoType's
9843         to 14560.
9844
9845         (mono_metadata_free_type): Account for the above change.
9846
9847 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
9848
9849         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
9850         exception instead of asserting if name is null.
9851         (ves_icall_System_AppDomain_GetData): Ditto.
9852
9853 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
9854
9855         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9856         EnumBuilder.
9857
9858         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9859         Return NULL when the domain does not have entry_assembly set.
9860
9861         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9862         Add a 'resource_modules' argument.
9863         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9864
9865         * reflection.c (mono_reflection_create_runtime_class): Move setting
9866         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9867         for enums too.
9868
9869         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9870         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9871         Throw an ArgumentNullException if 'ptr' is null.
9872
9873         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9874         assemblies here. Fixes #69020.
9875
9876 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9877
9878         * reflection.c (build_compressed_metadata): Fix the previous patch for
9879         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9880         the stack.
9881
9882 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9883
9884         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9885         the cultures is false. Fixes #69090.
9886
9887         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9888         detected by valgrind.
9889         
9890         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9891         TypeResolve multiple times for the same type. Fixes #65577.
9892
9893 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9894
9895         * marshal.c: Avoid using ldftn to call managed functions. It is
9896         much slower than just a call.
9897
9898         * reflection.c (mono_module_get_object): free the basename we
9899         allocate here from glib.
9900         
9901         * reflection.c (ensure_runtime_vtable): make sure to free
9902         overrides.  Also, we were allocating an array of MonoMethod not an
9903         array of MonoMethod*.
9904
9905         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9906
9907         * image.c (mono_image_close): free image->guid here.
9908
9909 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9910
9911         * reflection.c: Fix some spec conformance issues with the PE file
9912         structures so mcs compiled apps run on the Net 2.0 beta.
9913
9914 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9915
9916         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9917         Implement this. Fixes #67264.
9918
9919         * debug-helpers.h debug-helpers.c marshal.c: Move 
9920         mono_find_method_by_name to debug-helpers.c.
9921
9922 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9923
9924         * object.c (mono_release_type_locks): type_initialization_hash is
9925         a GHashTable.
9926
9927         * reflection.c object.c object-internals.h: Fix warnings.
9928
9929         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9930         without accessors. Fixes #61561.
9931
9932         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9933         application base from the root domain if not set. Fixes #65641.
9934         (mono_runtime_init): Fix warning.
9935
9936 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9937
9938         * appdomain.c: call mono_thread_pool_init.
9939         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9940         of worker threads based on the number of CPUs and the environment
9941         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9942         for non-windows (windows) systems.
9943
9944 2004-10-27  Chris Toshok  <toshok@ximian.com>
9945
9946         * mono-debug-debugger.c (write_class): don't call mono_class_init
9947         here, as even with the check for (!klass->init_pending), we get
9948         into a situation where we're hitting cycles in class
9949         initialization.  Fixes #68816.
9950
9951 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9952
9953         * image.c: Avoid overwriting values in the loaded_images_hash when an
9954         assembly is loaded multiple times. Fixes #61152.
9955
9956         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9957         so multiple satellite assemblies for the same name can be loaded.
9958         Fixes #68259.
9959
9960         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9961         not NULL.
9962
9963         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9964         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9965
9966         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9967         pending finalizers are not invoked after the appdomain has been 
9968         unloaded. Fixes #67862.
9969
9970 2004-10-22  Martin Baulig  <martin@ximian.com>
9971
9972         * mono-debug-debugger.c
9973         (mono_debugger_runtime_invoke): Don't box valuetypes.
9974
9975 2004-10-22  Chris Toshok  <toshok@ximian.com>
9976
9977         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9978         don't hide private methods.
9979
9980 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9981
9982         * icall.c: Allows the runtime to "share" (when known) the public key
9983         token of an assembly. This avoid the need to recalculate the token 
9984         (from the public key) in managed code.
9985
9986 2004-10-21  Chris Toshok  <toshok@ximian.com>
9987
9988         * debug-helpers.c (append_class_name): argh, revert last patch.
9989         
9990 2004-10-21  Chris Toshok  <toshok@ximian.com>
9991
9992         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9993         not '/', so that it matches what the debugger uses to look up
9994         methods.
9995
9996 2004-10-21  Martin Baulig  <martin@ximian.com>
9997
9998         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9999         public method; this is called each time an exception is thrown and
10000         allows the debugger to use exception catch points.
10001
10002 2004-10-21  Martin Baulig  <martin@ximian.com>
10003
10004         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
10005         the stack pointer and the exception object in some struct and pass
10006         that to the debugger.
10007
10008 2004-10-21  Chris Toshok  <toshok@ximian.com>
10009
10010         * mono-debug-debugger.c (do_write_class): add instance/static
10011         event support.  We don't expose "raise" or "other" yet.
10012         (event_is_static): new method.
10013
10014 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
10015
10016         * mono-debug-debugger.c
10017         (mono_debugger_handle_exception): Remove
10018         bogus return value for fussy compilers.
10019
10020 2004-10-20  Martin Baulig  <martin@ximian.com>
10021
10022         * mono-debug-debugger.c
10023         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
10024         (mono_debugger_handled_exception): Likewise.
10025
10026 2004-10-20  Martin Baulig  <martin@ximian.com>
10027
10028         * mono-debug-debugger.h (MonoDebuggerEvent): Added
10029         MONO_DEBUGGER_EVENT_EXCEPTION.
10030
10031         * mono-debug-debugger.c (mono_debugger_handle_exception): New
10032         public function to send the debugger a notification for an
10033         exception and inform it about a catch/finally clause.
10034
10035 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
10036
10037         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
10038         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
10039         fix 2.95 build. 
10040
10041         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
10042
10043 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
10044
10045         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
10046         marshalled as [In,Out]. Fixes #58325.
10047
10048 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
10049
10050         * reflection.c (mono_method_body_get_object): Implement some fields.
10051
10052 2004-10-12  Martin Baulig  <martin@ximian.com>
10053
10054         * reflection.c (mono_reflection_bind_generic_parameters): Small
10055         fix, correctly retrieve our parent from a generic instance.
10056
10057 2004-10-12  Martin Baulig  <martin@ximian.com>
10058
10059         * metadata.c (mono_metadata_generic_param_equal): We always have
10060         an owner.
10061
10062         * class.c
10063         (mono_class_from_generic_parameter): We need to have an owner.
10064         (my_mono_class_from_generic_parameter): Likewise.
10065
10066         * reflection.c (mono_reflection_setup_generic_class): Renamed to
10067         mono_reflection_create_generic_class() and added a new
10068         mono_reflection_setup_generic_class().  
10069         (mono_reflection_initialize_generic_param): If we're a nested
10070         generic type and inherited from the containing class, set our
10071         owner to the outer class.
10072
10073 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
10074
10075         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
10076
10077         * reflection.c (mono_method_body_get_object): New function to create
10078         a MethodBody object.
10079
10080         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
10081
10082 2004-10-11  Martin Baulig  <martin@ximian.com>
10083
10084         * metadata.c (_mono_metadata_type_equal): Renamed to
10085         do_mono_metadata_type_equal() and made static.
10086
10087 2004-10-11  Martin Baulig  <martin@ximian.com>
10088
10089         * appdomain.c: Bump corlib version number to 28.
10090
10091 2004-10-10  Martin Baulig  <martin@ximian.com>
10092
10093         * class-internals.h
10094         (MonoGenericInst): Added `MonoGenericContainer *container'.
10095         (MonoGenericMethod): Likewise.
10096         (MonoGenericContext): Likewise.
10097         (MonoGenericParam): Added `MonoGenericContainer *owner'.
10098
10099         * metadata.c
10100         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
10101         (do_mono_metadata_parse_generic_inst): Likewise.
10102         (mono_metadata_parse_type_full): New public method.  This is the actual
10103         mono_metadata_parse_type() implementation - with an additional
10104         `MonoGenericContainer *' argument.
10105         (mono_metadata_parse_array_full): Likewise.
10106         (mono_metadata_parse_signature_full): Likewise.
10107         (mono_metadata_parse_method_signature_full): Likewise.
10108         (mono_metadata_parse_mh_full): Likewise.
10109         (mono_type_create_from_typespec): Likewise.
10110         (mono_metadata_interfaces_from_typedef_full): New public method;
10111         this is similar to the other _full() methods, but we take a
10112         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
10113         (mono_metadata_parse_generic_param): Take an additional
10114         `MonoGenericContainer *' argument and lookup the MonoGenericParam
10115         from that container.
10116         (mono_metadata_generic_param_equal): New static method to compare
10117         two type parameters.
10118         (_mono_metadata_type_equal): New static method; takes an
10119         additional `gboolean signature_only' argument - if true, we don't
10120         compare the owners of generic parameters.
10121         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
10122         with a TRUE argument - do a signature-only comparision.
10123
10124         * loader.c: Use the new _full() methods and pass the
10125         MonoGenericContainer to them.
10126
10127         * object-internals.h (MonoReflectionTypeBuilder): Added
10128         `MonoGenericContainer *generic_container' field.
10129         (MonoReflectionMethodBuilder): Likewise.
10130
10131 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
10132
10133         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
10134         case initial images of dynamic assemblies.
10135
10136         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
10137
10138         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
10139
10140         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
10141         length of event->other array.
10142         (typebuilder_setup_events): Ditto.
10143
10144         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
10145         'assembly_by_name' and add an 'assemblies' list.
10146
10147         * assembly.h assembly.c: Add a new search hook for determining whenever
10148         an assembly is already loaded. Use this instead of searching in the
10149         loaded_assemblies list.
10150
10151         * domain.c appdomain.c: Implement the new search hook so loaded 
10152         assemblies are now scoped by appdomain. Fixes #67727.
10153
10154 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
10155
10156         * threads.c (mono_thread_attach): Initialize synch_lock field so
10157         mono_thread_detach works again.
10158
10159         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
10160         'lib' too. Fixes #63130.
10161
10162 2004-10-06  Jackson Harper  <jackson@ximian.com>
10163
10164         * culture-info-tables.h: regenerated.
10165
10166 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
10167
10168         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
10169         implemented by other interfaces in the result. Fixes #65764.
10170         
10171         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10172         Handle unloadable modules without crashing.
10173
10174         * image.c (load_modules): Revert the previous patch since modules must
10175         have a fixed index inside the array.
10176         
10177         * image.c (load_modules): Don't include native modules in the modules
10178         array.
10179
10180 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
10181
10182         * reflection.h: Add param_defaults field.
10183
10184         * reflection.c: Add support for parameter defaults in dynamic methods.
10185         Fixes #64595.
10186
10187         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
10188         an empty string when a type has no namespace. Fixes #64230.
10189
10190 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
10191
10192         * tabledefs.h: Added "internal" security actions to support non-CAS
10193         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
10194         Note: they do not seems to be used anymore in 2.0 (new metadata format)
10195
10196 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
10197
10198         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
10199         constructor of abstract class. Fixes #61689.
10200
10201 2004-10-04  Martin Baulig  <martin@ximian.com>
10202
10203         * class-internals.h (MonoGenericContainer): New type.
10204         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
10205         `MonoGenericContainer *generic_container'.
10206         (MonoClass): Replaced `gen_params' and `num_gen_params' with
10207         `MonoGenericContainer *generic_container'.
10208
10209         * metadata.c (mono_metadata_load_generic_params): Return a
10210         `MonoGenericContainer *' instead of a `MonoGenericParam *';
10211         removed the `num' argument.
10212
10213 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
10214
10215         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
10216         for dynamic images.
10217
10218         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
10219         machine fields.
10220
10221         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
10222
10223         * reflection.c: Save pe_kind and machine values into the generated
10224         image file.
10225
10226         * appdomain.c: Bump corlib version number.
10227
10228         * object-internals.h: Reorganize layout of LocalBuilder.
10229
10230         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
10231         New helper function.
10232
10233         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
10234         created MonoType for dynamic types. Fixes #66180.
10235
10236 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
10237
10238         * threadpool.c: the ares hashtable needs a critical section around it.
10239         this prevents some nasty segfaults
10240
10241 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
10242
10243         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
10244         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
10245         bug 67324).
10246         
10247 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10248
10249         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
10250         
10251 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
10252
10253         * image.c: Always canonicalize image file names, to avoid loading
10254         the same assembly twice when referenced using a relative path.
10255
10256 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
10257
10258         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
10259
10260         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
10261
10262         * marshal.c: Fix warnings.
10263
10264 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
10265
10266         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
10267         attempting to marshal the delegate_trampoline as the method_addr.
10268         This patch has a static hashtable of marshalled delegates so that 
10269         we can map delegate_trampoline addresses back to delegates.  This
10270         allows a delegate passed to managed code to be passed back into native
10271         code.  Fixes #67039
10272
10273 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10274
10275         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
10276
10277         * reflection.c (method_encode_code): Align method headers properly.
10278         Fixes #66025.
10279
10280 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10281
10282         * marshal.c: In the runtime invoke wrapper, reset the abort
10283         exception if it is cached. This avoids the automatic rethrowal of 
10284         the exception after the catch of the wrapper. Also check for pending
10285         interruptions before calling the managed method. This is done using
10286         the new method emit_thread_force_interrupt_checkpoint, since the
10287         normal checkpoint method is ignored when running the invoke wrapper.
10288         * object.c: If the abort exception is rethrown, set the abort_exc
10289         field of the thread, so it will be rethrown aftere every catch.
10290         * threadpool.c: Only run an interruption checkpoint if what has been
10291         requested is a stop of the thread (aborts will be ignored).
10292         * threads.c: By default, a thread will now never be interrumped while
10293         running the runtime invoke wrapper (this ensures that runtime_invoke
10294         will always return to the caller if an exception pointer is provided).
10295         There is a new special method mono_thread_force_interruption_checkpoint()
10296         to force an interruption checkpoint even if running a protected
10297         wrapper, which is used by the same runtime invoke wrapper to do a check
10298         at a safe point.
10299
10300 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
10301
10302         * object.c, object-internals.h: Implemented mono_release_type_locks,
10303         which releases the cctor locks held by a thread.
10304         * threads.c, threads.h: In thread_cleanup, release cctor locks held
10305         by a thread. Added mono_thread_exit() method to be used to safely stop
10306         a thread.
10307
10308 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10309
10310         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10311         Move null check before dereference.  Avoid indexing beyond the end
10312         of the 'modules' array.
10313
10314 2004-09-28  Raja R Harinath  <rharinath@novell.com>
10315
10316         * metadata-internals.h (MonoImage): Add module_count field.
10317         * image.c (load_modules): Set image->module_count.
10318         (mono_image_load_file_for_image): Use image->module_count.
10319         * reflection.c (mono_image_load_module): Append to image->modules array 
10320         of dynamic assembly.
10321         (mono_module_get_object): Fix loop to actually increment index.
10322         Use image->module_count.
10323         * assembly.c (mono_assembly_load_references): Use image->module_count.
10324         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
10325         Likewise.
10326
10327 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
10328
10329         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
10330         Avoid assert on generic types.
10331
10332 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
10333
10334         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
10335
10336         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
10337
10338         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
10339         function to convert a MarshalSpec structure to its managed counterpart.
10340
10341         * reflection.c: Fix warnings.
10342         
10343         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
10344         field.
10345
10346         * icall.c (mono_create_icall_signature): Fix build.
10347
10348 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
10349
10350         * icall.c: Add MakePointType icall.
10351
10352         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
10353         warnings.
10354
10355 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10356
10357         * threadpool.c: reuse allocated slots in the queue.
10358
10359 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
10360
10361         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
10362
10363         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
10364
10365         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
10366         previous change.
10367
10368         * tabledefs.h: Add constants for pinvoke attributes BestFit and
10369         ThrowOnUnmappableChar.
10370
10371         * icall.c (ves_icall_Type_GetPacking): New icall.
10372
10373 2004-09-24  Martin Baulig  <martin@ximian.com>
10374
10375         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
10376
10377 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10378
10379         * appdomain.c:
10380         (mono_domain_set): allow setting a domain that is being unloaded.
10381         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
10382         being unloaded.
10383
10384 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10385
10386         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
10387         the GetCustomAttributes icall.
10388
10389 2004-09-23  Martin Baulig  <martin@ximian.com>
10390
10391         * object-internals.h (MonoReflectionGenericParam): Replaced
10392         'has_ctor_constraint', `has_reference_type' and `has_value_type'
10393         with `guint32 attrs'.
10394
10395 2004-09-23  Martin Baulig  <martin@ximian.com>
10396
10397         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
10398
10399 2004-09-23  Martin Baulig  <martin@ximian.com>
10400
10401         * object-internals.h (GenericParameterAttributes): New enum.
10402
10403 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
10404
10405         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
10406         
10407         * class.c (init_events): Fill out event->other field.
10408
10409         * class.c: Fix warnings.
10410
10411         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
10412
10413 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
10414
10415         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
10416         walk which doesn't supply the IL offset.
10417
10418 2004-09-22  Martin Baulig  <martin@ximian.com>
10419
10420         * reflection.c (mono_reflection_setup_internal_class): If we're
10421         System.ValueType, System.Object or System.Enum, set
10422         `klass->instance_size' and create the vtable.
10423         (mono_reflection_create_internal_class): If we're an enum type,
10424         get the base class from our current corlib.
10425
10426 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
10427
10428         * reflection.h (MonoResolveTokenError): New type.
10429
10430         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
10431         icall.
10432
10433         * icall.c: Add an 'error' argument to the ResolveToken icalls.
10434
10435 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
10436
10437         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
10438         Support also calling constructors, but only for already allocated objects.
10439
10440 2004-09-17  Geoff Norton <gnorton@customerdna.com>
10441
10442         * reflection.c (type_get_qualified_name): If the klass is null
10443         return the typename to avoid a NullRefEx.
10444         (encode_cattr_value): Get the qualified name of the boxed type,
10445         not the underlying enumtype.  Fixes #62984.
10446
10447 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
10448
10449         * marshal.c: Fix problems with previous checkin.
10450
10451 2004-09-21    <vargaz@freemail.hu>
10452
10453         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
10454         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
10455
10456         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
10457
10458 2004-09-21  Geoff Norton <gnorton@customerdna.com>
10459
10460         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
10461         should only return a type for pointers, arrays, and passbyref types.
10462         Fixes bug #63841.
10463
10464 2004-09-21  Martin Baulig  <martin@ximian.com>
10465
10466         * domain.c (mono_debugger_check_runtime_version): New public
10467         function.
10468
10469         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
10470
10471 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
10472
10473         * reflection.c: Added missing sort to the declarative security 
10474         attributes table. MS implementation stops seeing the attributes if the
10475         token number regress in the table (as shown by ildasm and permview).
10476
10477 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
10478
10479         * object-internals.h (MonoReflectionModule): Add 'token' field.
10480         
10481         * reflection.c (mono_reflection_get_token): Add support for Module
10482         and Assembly.
10483         (mono_module_get_object): Set 'token' field.
10484         (mono_module_file_get_object): Set 'token' field.
10485
10486         * icall.c: Add new Assembly and Module icalls.
10487
10488         * appdomain.c: Bump corlib version.
10489
10490 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
10491
10492         * loader.h loader.c class.h class.c: Add helper functions for obtaining
10493         tokens of metadata objects.
10494
10495         * reflection.h reflection.c (mono_reflection_get_token): New function
10496         to obtain the token of a metadata object.
10497
10498         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
10499
10500 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
10501
10502         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
10503         
10504         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
10505
10506 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
10507
10508         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
10509         * object-internals.h: Added 3 MonoArray* members to MonoReflection
10510         AssemblyBuilder to access the permissions set in the class lib.
10511         * reflection.c: Added security attributes encoding step in 
10512         mono_image_build_metadata.
10513         * tabledefs.h: Added new security actions defined in 2.0:
10514         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
10515
10516 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10517
10518         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
10519         macro parameter.
10520
10521 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
10522  
10523         * locales.c: nullify the ICU_collator member of CompareInfo when it is
10524           finalized. There where random SIGSEVs at program termination, when
10525           an object being finalized was trying to do a string comparison and
10526           the current culture was already finalized.
10527  
10528 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10529
10530         * threads.c: call thread_cleanup before finishing the thread if we get
10531         there.
10532
10533 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
10534
10535         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
10536         assemblies from the parent. Fixes #65665.
10537
10538 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
10539
10540         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
10541         modifiers.
10542
10543 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
10544
10545         * reflection.h: add prototype for mono_get_dbnull_object
10546         * reflection.c: add prototypes for get_default_param_value_blobs 
10547         and mono_get_object_from_blob for fussier compilers
10548
10549 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
10550  
10551         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
10552         false deadlock checks in class initialization.
10553  
10554 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
10555
10556         * image.c (mono_image_addref): Fix comment.
10557
10558         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
10559         possible.
10560
10561 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
10562
10563         * reflection.c (mono_param_get_objects): Modified to return
10564         ParameterInfo.DefaultValue object.
10565
10566         (get_default_param_value_blobs):
10567         (mono_get_object_from_blob):
10568         (mono_get_dbnull_object): New helper routines. 
10569
10570         * object.c (mono_get_constant_value_from_blob): New helper routine
10571         carved out from get_default_field_value ()
10572
10573         * object-internals.h (mono_get_constant_value_from_blob): Added
10574         function declaration.
10575
10576 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
10577
10578         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
10579         referenced assemblies. Fixes #62135.
10580
10581         * exception.h exception.c (mono_get_exception_file_not_found2): New
10582         helper function.
10583
10584 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
10585
10586         * class.h class.c: Add mono_type_get_underlying_type ().
10587
10588 2004-09-09  Geoff Norton <gnorton@customerndna.com>
10589
10590         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
10591         Fix GetTypes() to support dynamically created assemblies.
10592
10593 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
10594
10595         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
10596         
10597         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
10598         previous patch.
10599
10600         * reflection.h reflection.c loader.c: Allow dynamic construction of
10601         pinvoke methods. Fixes #65571.
10602         
10603         * reflection.c (mono_reflection_get_type): Revert previous change since
10604         it causes regressions.
10605
10606 2004-09-08  Martin Baulig  <martin@ximian.com>
10607
10608         * class.c (class_compute_field_layout): Don't call
10609         mono_class_layout_fields() for open generic instances.
10610
10611 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
10612         * threads.c appdomain.c: fix typo in GC macro
10613
10614 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10615
10616         * threads.c: don't call mono_thread_detach() in start_wrapper(),
10617         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
10618
10619 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
10620
10621         * image.c (mono_image_close): Applied patch from 
10622         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
10623         assembly is loaded multiple times from data.
10624         
10625         * image.c (mono_image_open): Fix warning.
10626
10627 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10628
10629         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
10630         once. Fixes #58334.
10631         
10632         * reflection.c (mono_reflection_create_runtime_class): Initialize
10633         klass->nested_classes. Fixes #61224.
10634
10635 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10636
10637         * threads.c: sched_yield() on exit, to allow threads to quit.
10638
10639 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10640
10641         * object.c (mono_unhandled_exception): Remove leftover debug code.
10642
10643 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
10644
10645         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
10646
10647 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
10648
10649         * marshal.c (emit_marshal_array): Really null terminate string arrays.
10650         
10651         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
10652
10653 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10654
10655         * marshal.c (emit_marshal_array): Null terminate string arrays.
10656         
10657         * marshal.c (raise_auto_layout_exception): Fix warning.
10658
10659         * reflection.c (mono_param_get_objects): Initialize the default value
10660         with DBNull.Value, not null. Fixes #62123.
10661
10662 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
10663
10664         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
10665         throw an exception with a cute explanation.
10666
10667 2004-09-06  Dick Porter  <dick@ximian.com>
10668
10669         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
10670         Close the new process's thread handle, as we don't use it.  The
10671         handle stays around forever otherwise.
10672
10673 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10674
10675         * object.c (arith_overflow): Fix warning.
10676
10677         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
10678         calling conventions in method refs. Fixes #65352.
10679
10680         * reflection.c: Fix warnings.
10681
10682 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10683
10684         * icall.c: Add a new icall for Array.Clear
10685
10686 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10687
10688         * object.c: When allocating an array, we have to throw
10689         an overflow exception if any of the lengths are < 0.
10690
10691 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10692
10693         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10694         properly. Also move implementation of string array marshalling to 
10695         managed code. Fixes #42316.
10696
10697 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10698
10699         * assembly.c: provide more information when loading an assembly fails.
10700
10701 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10702
10703         * filewatcher.c: don't expect the development fam package to be
10704         installed.
10705
10706 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10707
10708         * marshal.c: Make a copy of the signature cookie since it will be
10709         freed by the caller.
10710         
10711         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10712
10713         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10714
10715         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10716         marshal specs.
10717
10718         * marshal.c: More refactoring.
10719         
10720         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
10721         smaller functions.
10722
10723 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
10724
10725         * object.c: In mono_message_invoke, fill the output parameter array after
10726           calling the managed method (it was done before the call). This fixes
10727           bug #59299.
10728
10729 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10730
10731         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
10732         as well.
10733
10734 2004-09-02  Martin Baulig  <martin@ximian.com>
10735
10736         * class.c (mono_class_instance_size): Don't allow generic type
10737         definitions or open generic instances.
10738         (mono_class_array_element_size): If we're a value type, call
10739         mono_class_instance_size() on the original class.
10740
10741         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
10742         handle generic instances.
10743
10744         * mono-debug-debugger.c (write_type): Handle generic instances
10745         like classes.
10746
10747 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10748
10749         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
10750         the allocation request fails. Fixes #65089.
10751
10752         * object.c (mono_runtime_free_method): Do not call mono_free_method.
10753         
10754         * object.c (mono_runtime_free_method): New function to free a dynamic
10755         method.
10756
10757         * marshal.c (mono_delegate_free_ftnptr): New function to free the
10758         delegate trampoline.
10759
10760         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
10761         with hasthis as dynamic,
10762
10763         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
10764
10765         * domain.c (mono_jit_info_table_remove): New function to remove an
10766         entry from the jit info table.
10767
10768         * class-internals.h (MonoMethod): Add 'dynamic' field.
10769
10770         * loader.c: Fix warnings.
10771
10772 2004-09-01  Martin Baulig  <martin@ximian.com>
10773
10774         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
10775         instead of mono_debugger_lock() because the latter one is a no-op
10776         unless running in the debugger.
10777
10778 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10779
10780         * class.c (class_compute_field_layout): Classes with auto-layout or
10781         reference fields are not blittable.
10782         
10783 2004-09-01  Dick Porter  <dick@ximian.com>
10784
10785         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
10786         mono_image_get_filename() to get the assembly location.
10787
10788         * icall.c:
10789         * metadata.h: Fix compile warnings
10790
10791 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10792
10793         * class.c (class_compute_field_layout): System.Object is blittable.
10794
10795         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
10796         as in/out. Fixes #59909.
10797
10798 2004-09-01  Martin Baulig  <martin@ximian.com>
10799
10800         * metadata.h (MONO_TYPE_ISREFERENCE): Call
10801         mono_metadata_generic_inst_is_valuetype() if we're a generic
10802         instance to check whether our underlying type is a reference type.
10803
10804 2004-09-01  Martin Baulig  <martin@ximian.com>
10805
10806         * metadata.c (mono_type_size): If we're a generic instance, call
10807         mono_class_value_size() for value types.
10808
10809 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
10810
10811         * marshal.c: Implement more custom marshalling functionality. Fixes
10812         #64915.
10813
10814 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10815
10816         * mono-debug.c, debug-mono-symfile.c: add some locking love.
10817
10818 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
10819
10820         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
10821
10822         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
10823
10824         * icall.c: Fix some warnings.
10825
10826         * threads.c (abort_appdomain_thread): Fix unref errors.
10827         (mono_thread_current): Fix THREAD_DEBUG define.
10828
10829 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
10830
10831         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
10832
10833         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
10834
10835 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
10836
10837         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
10838         string arrays.
10839
10840 2004-08-28  Martin Baulig  <martin@ximian.com>
10841
10842         * metadata.c
10843         (mono_metadata_generic_inst_is_valuetype): New public function.
10844
10845         * metadata.h (MONO_TYPE_ISSTRUCT): Call
10846         mono_metadata_generic_inst_is_valuetype() if we're a generic
10847         instance to check whether our underlying type is a valuetype.
10848
10849 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
10850
10851         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
10852         #63768.
10853
10854 2004-08-25  Martin Baulig  <martin@ximian.com>
10855
10856         * loader.c (mono_get_method_from_token): Abstract methods can also
10857         be generic and thus have type parameters.
10858
10859         * metadata-internals.h
10860         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10861
10862         * reflection.c (mono_image_get_generic_param_info): Don't create a
10863         metadata row, just add an entry to the `gen_params' array.
10864         (build_compressed_metadata): Sort the `gen_params' array and then
10865         actually create the metadata.
10866
10867 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10868
10869         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10870
10871 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10872
10873         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10874
10875 2004-08-24  Martin Baulig  <martin@ximian.com>
10876
10877         * class.cs (mono_class_is_subclass_of): Like an interface, a
10878         generic instance also derives from System.Object.
10879
10880 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10881
10882         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10883         custom modifiers to be in any order. Fixes #61990.
10884
10885 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10886
10887         * object.c: Register mono_object_new_fast icall.
10888         
10889         * object.c (mono_class_get_allocation_ftn): Return to calling
10890         mono_object_new_fast, since it seems faster to compute the object 
10891         size in unmanaged code than passing it as a parameter.
10892
10893         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10894
10895         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10896         this function with Boehm as the oom handler, so we don't have to check
10897         the result of GC_malloc.
10898
10899         * object.c: Remove checks for oom.
10900
10901         * object.h object.c (mono_class_get_allocation_ftn): New function to
10902         return the icall which can be used to allocate an instance of a given
10903         class. 
10904
10905         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10906
10907         * class-internals.h: Add 'enabled' field.
10908
10909 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10910
10911         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10912
10913 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10914         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10915         value 0x0010.
10916
10917 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10918
10919         * appdomain.c: use the Tls function for appdomain too,
10920         at Zoltan's request. Actually return in mono_context_get
10921
10922         * appdomain.c, profiler.c, threads.c: use __thread
10923
10924 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10925
10926         * appdomain.c threads.c: Call GC_CreateThread on windows.
10927
10928         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10929         multiple libraries since this don't work on windows.
10930
10931 2004-08-18  Martin Baulig  <martin@ximian.com>
10932
10933         * class-internals.h
10934         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10935         MonoMethodHeader.
10936
10937         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10938         MonoMethodNormal since we also need it for abstract and interface
10939         methods.
10940
10941         * reflection.c
10942         (build_compressed_metadata): Sort the GenericParam table.
10943         (mono_image_create_token): Added `gboolean create_methodspec'
10944         argument; this is false when generating a MethodImpl token.
10945         (reflection_methodbuilder_to_mono_method): Abstract and interface
10946         methods may also have generic parameters.
10947
10948 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10949
10950         * appdomain.c: thread local alloc
10951
10952 2004-08-17  Martin Baulig  <martin@ximian.com>
10953
10954         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10955
10956         * icall.c
10957         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10958         argument.
10959
10960         * class.c (mono_type_get_full_name): New public function.
10961         (mono_type_get_name): Don't include the type arguments.
10962
10963 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10964
10965         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10966         for inclusion into the mono executable.
10967
10968 2004-08-16  Martin Baulig  <martin@ximian.com>
10969
10970         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10971         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10972
10973 2004-08-14  Martin Baulig  <martin@ximian.com>
10974
10975         * class.c (dup_type): Also copy the `byref' field.
10976
10977 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10978
10979         * reflection.c (create_dynamic_mono_image): Revert the last change 
10980         since it breaks bootstrap.
10981
10982 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10983
10984         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10985
10986         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10987         not free them with g_free.
10988
10989 2004-08-11  Martin Baulig  <martin@ximian.com>
10990
10991         * reflection.c (mono_reflection_setup_internal_class): Also call
10992         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10993
10994 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10995
10996         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10997         called during default (first) AppDomain creation. Keep track of
10998         Evidence when loading assemblies.
10999
11000 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11001
11002         * opcodes.c, opcodes.h: reduce runtime relocations.
11003
11004 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
11005
11006         * culture-info.h, locales.c: fixes and chages to sue the new
11007         optimized format of the locale data.
11008         * culture-info-tables.h: regenerated.
11009
11010 2004-08-06  Geoff Norton <gnorton@customerdna.com>
11011         
11012         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
11013
11014 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
11015
11016         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
11017         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
11018         * domain-internals.h: icall declaration.
11019         * icall.c: icall registration.
11020         * object-internals.h: New fields in MonoAssembly for CAS.
11021
11022 2004-08-05  Duncan Mak  <duncan@ximian.com>
11023
11024         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
11025         CEE_LDELEM_ANY.
11026
11027 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11028
11029         * reflection.c: fix to deal with object[] arrays in custom ctors
11030         (bug #62550).
11031
11032 2004-08-05  Martin Baulig  <martin@ximian.com>
11033
11034         * class.c (mono_class_array_element_size): Added support for
11035         generic instances and correctly handle "recursive" types.
11036
11037 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
11038
11039         * assembly.c: Fix warnings.
11040
11041 2004-08-04  Martin Baulig  <martin@ximian.com>
11042
11043         * class.c
11044         (mono_type_get_name_recurse): Added `gboolean include_arity'
11045         argument specifying whether or not we should include the generic
11046         arity in the type name.
11047         (_mono_type_get_name): New static function.
11048         (mono_class_setup_vtable): If we're a generic instance, don't
11049         include the generic arity in the names of explicit method
11050         implementations.        
11051
11052 2004-08-03  Martin Baulig  <martin@ximian.com>
11053
11054         * class.c (mono_type_get_name_recurse): Enclose the generic type
11055         arguments in `<', '>'.
11056
11057 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11058
11059         * gc.c: make GC warning messages use the trace API, they are just
11060         noise to most of the users.
11061
11062 2004-08-03  Martin Baulig  <martin@ximian.com>
11063
11064         * debug-mono-symfile.c (read_string): Correctly read the string.
11065
11066 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
11067
11068         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
11069         
11070         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
11071         icalls.
11072         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
11073
11074 2004-07-30  Martin Baulig  <martin@ximian.com>
11075
11076         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
11077         Reflect latest symbol writer changes.   
11078
11079 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11080
11081         * object.c: always create an object if null is passed
11082         to Invoke() where a valuetype is expected.
11083
11084 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
11085
11086         * marshal.c (mono_marshal_init): make managed
11087         signatures match native ones better for 64bits.
11088
11089 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11090
11091         * appdomain.c: hack to build correctly the private bin path on windows.
11092         Fixes bug #61991.
11093
11094 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
11095
11096         * assembly.c: Load mscorlib from the correct framework directory
11097           (mono/<version>/mscorlib.dll).
11098         * appdomain.h: Added prototypes for new functions.
11099         * internals.h: Added some prototypes.
11100         * domain.c: When initializing the runtime, get from the executable and
11101           the configuration files the runtime version that the app supports.
11102           Added support methods for reading app.exe.config. Added list of versions
11103           supported by the JIT. Added two new methods: mono_init_from_assembly,
11104           which initializes the runtime and determines the required version from
11105           the provided exe file, and mono_init_version, which initializes
11106           the runtime using the provided version.
11107         * icall.c: Get machine.config from version-specific directory.
11108         * reflection.c: When generating an image, embed the version number
11109           of the current runtime.
11110
11111 2004-07-28  Dick Porter  <dick@ximian.com>
11112
11113         * socket-io.c
11114         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
11115         returned sockaddr size before creating the remote address object.
11116         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
11117         61608.
11118
11119 2004-07-28  Dick Porter  <dick@ximian.com>
11120
11121         * locales.c (string_invariant_compare_char): Fix invariant char
11122         compares between upper and lower cases.  Fixes bug 61458.
11123
11124 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
11125         
11126         * marshal.c: actually cache stelem.ref wrappers.
11127         
11128 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
11129
11130         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
11131         sections and remove the mono_cli_rva_map () function.
11132
11133 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11134
11135         * debug-mono-symfile.c: fix one more endianess issue, from a patch
11136         by Geoff Norton (<gnorton@customerdna.com>).
11137
11138 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11139
11140         * class.c: fix class loads for pointer types (typeof(int) !=
11141         typeof(int*)).
11142
11143 2004-07-27  Martin Baulig  <martin@ximian.com>
11144
11145         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
11146         reading the debugging information from an external ".mdb" file.
11147
11148 2004-07-24  Martin Baulig  <martin@ximian.com>
11149
11150         * reflection.c (mono_image_get_type_info): Only write a class
11151         layout entry if we actually have a size or a packing size.
11152
11153 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11154
11155         * reflection.c (type_get_fully_qualified_name): 
11156         insert cast to get type checking of ?: with non-gcc compilers
11157
11158 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
11159
11160         * rand.c: use g_getenv for both lookups of
11161         MONO_EGD_SOCKET
11162
11163 2004-07-17  Martin Baulig  <martin@ximian.com>
11164
11165         * reflection.c (mono_reflection_bind_generic_method_parameters):
11166         Set `gmethod->reflection_info'.
11167
11168 2004-07-17  Martin Baulig  <martin@ximian.com>
11169
11170         * class.c (mono_class_create_from_typedef): Insert the newly
11171         created class into the hash table before computing the interfaces
11172         since we could be called recursively.
11173
11174 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
11175
11176         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
11177         function to implement stelem.ref in managed code
11178         * class-internals.h, debug-helpers.c: a new wrapper type
11179         for the above.
11180
11181 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
11182
11183         * gc.c: allow GC handles to work even when no GC is compiled in.
11184         Fix part of bug #61134 (GetAddrOfPinnedObject).
11185
11186 2004-07-13  Peter Williams  <peter@newton.cx>
11187  
11188         * process.c (complete_path): Make sure we don't attempt to execute
11189         directories.
11190  
11191 2004-07-12  Geoff Norton <gnorton@customerdna.com>
11192
11193         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
11194           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
11195           and will add/subtract the hour if needed
11196
11197 2004-07-12  Martin Baulig  <martin@ximian.com>
11198
11199         * reflection.c (mono_field_get_object): If we have
11200         `field->generic_info', take the attributes from
11201         `field->generic_info->generic_type'.    
11202
11203 2004-07-12  Martin Baulig  <martin@ximian.com>
11204
11205         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
11206         This function must be called before initializing the runtime.
11207         (mono_debug_init_1): New function; call this after initializing
11208         the runtime, but before loading the assembly.  It tells the
11209         debugger to load corlib and the builtin types.
11210
11211         * mono-debug-debugger.c: Did some larger changes in the debugging
11212         code; support recursive class declarations, make sure we actually
11213         add all classes.
11214
11215 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11216
11217         * debug-helpers.c: undo my previous patch and fixed the real issue in
11218         ../mini/exceptions-x86.c
11219
11220 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11221
11222         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
11223         when no HOME env. variable was set and a NullRef was thrown in a .cctor
11224         called from other .cctors.
11225
11226 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
11227
11228         * loader.c: Removed the mono_loader_wine_init hack now that we are
11229         doing a managed version of Windows.Forms.
11230
11231 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
11232
11233         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
11234         threadpool.c, threads.c: remove static data from rootset.
11235
11236 2004-07-09  Dick Porter  <dick@ximian.com>
11237
11238         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
11239         Don't do any more processing if the matched length was 0.  It was
11240         increasing the size of the string before.  Fixes bug 61167.
11241
11242 2004-07-09  Dick Porter  <dick@ximian.com>
11243
11244         * socket-io.h:
11245         * socket-io.c
11246         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
11247         Add support for SO_PEERCRED if its available.
11248
11249 2004-07-09  Peter Bartok <pbartok@novell.com>
11250         * loader.c: winelib.exe.so error message is now only displayed if
11251         MONO_DEBUG is set. To help us avoid questions when people are trying
11252         out the new Managed.Windows.Forms.
11253
11254 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
11255
11256         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
11257         for isinst and castclass wrappers.
11258
11259         * class-internals.h icall.c: Move registration and lookup of JIT icalls
11260         to libmetadata from the JIT, so they could be used by the marshalling
11261         code and the interpreter.
11262
11263         * marshal.c: Register marshalling related JIT icalls here instead of
11264         in mini.c. Use CEE_MONO_ICALL instead of the family of 
11265         CEE_MONO_PROC<x> opcodes to call marshalling functions.
11266
11267         * metadata.h: Remove unneeded marshalling conversions.
11268
11269         * opcodes.c: Update for new opcodes.
11270         
11271 2004-07-08  Martin Baulig  <martin@ximian.com>
11272
11273         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
11274         (mono_debug_get_domain_data): Make this function static.
11275
11276 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11277
11278         * gc.c, object.h: add nice GC handle API for embedders.
11279
11280 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
11281
11282         * reflection.c: more changes for the new api
11283
11284         * object.c: When we reflect on a field w/ a constant value, it
11285         will not have a memory location, so we must access metadata. Also,
11286         allow easier reading of strings so that we can read them from
11287         the constant data.
11288
11289         * class.c (mono_class_layout_fields): no need for literal fields here.
11290
11291         * class-internals.h: api changes for const fields
11292
11293         * icall.c (ves_icall_get_enum_info): use new apis for const fields
11294
11295 2004-07-06  Martin Baulig  <martin@ximian.com>
11296
11297         * mono-debug.h: Increment version number to 44.
11298
11299         * mono-debug.c (mono_debug_add_wrapper): The second argument is
11300         now a gpointer, rewrote this whole method.
11301
11302         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
11303         function.  Add information about the wrapper in a new "misc table".
11304
11305         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
11306         for the new misc table.
11307
11308 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
11309
11310         * metadata-internals.h image.c: Add a cache for helper signatures.
11311
11312         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
11313
11314 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
11315
11316         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
11317         delegates from a delegate. Fixes #61033.
11318         
11319         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
11320         marshalling of stringbuilder arrays. Fixes #59900.
11321
11322 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
11323
11324         * icall.c: Add EnumBuilder:setup_enum_type icall.
11325
11326 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
11327
11328         * icall.c: Added a new icall for the property version of
11329         OffsetOfStringData.
11330
11331 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
11332
11333         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
11334         it has a constant size across platforms.
11335
11336         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
11337         stack trace.
11338
11339 2004-06-29  Martin Baulig  <martin@ximian.com>
11340
11341         * mono-debug.c (mono_debug_add_method): Protect the whole function
11342         in mono_debugger_lock(), not just parts of it.
11343
11344 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
11345
11346         * reflection.c: make sure padding bytes in heaps are zeroed.
11347
11348 2004-06-24  David Waite  <mass@akuma.org>
11349
11350         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
11351         image.c, loader.c, locales.c, marshal.c, metadata.c,
11352         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
11353         string-icalls.c, threads.c: change to C90-style comments from C99 /
11354         C++ -style
11355
11356 2004-06-24  Dick Porter  <dick@ximian.com>
11357
11358         * threads.c
11359         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
11360         return createdNew.  Fixes bug 60412.
11361
11362         * threads-types.h: 
11363         * icall.c: Add createdNew parameter to CreateMutex icall
11364
11365 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11366
11367         * reflection.c, object-internals.h: save default value in params.
11368
11369 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11370
11371         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
11372         no need to build a new path combining that with the application base.
11373         Fixes bug #60442.
11374
11375 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
11376
11377         * reflection.c: fixed minor standard compliance issues.
11378
11379 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
11380
11381         * reflection.c: fixed issue with encoding some custom attributes
11382         (arrays in properties and fields, bug #60411).
11383
11384 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11385
11386         * reflection.c: fix start address when copying the public key token.
11387
11388 2004-06-23  Martin Baulig  <martin@ximian.com>
11389
11390         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
11391         the `exc' object in a static object to put it into the GC's root set.
11392
11393 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
11394
11395         * reflection.c: make mono_reflection_setup_internal_class ()
11396         callable a second time to setup a new parent class.
11397
11398 2004-06-23  Dick Porter  <dick@ximian.com>
11399
11400         * threads.c: Check for WAIT_IO_COMPLETION return values.
11401
11402 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
11403
11404         * appdomain.c: Removed the g_free on the public key token. Now copy 
11405         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
11406         * assembly.c: Added public key token string value when loading 
11407         assemblies. Fix bug #60439.
11408         * icall.c: Added missing informations (like public key) in 
11409         GetReferencedAssemblies. Fix #60519.
11410         * image.h: Changed definition for public key token from const char*
11411         public_tok_value to guchar public_key_token [17];
11412         * reflection.c: Updated for changes to public key token.
11413
11414 2004-06-22  Lluis Sanchez Gual
11415
11416         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
11417         for the field in base classes.
11418
11419 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11420
11421         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
11422         mark headers as not supported, they are installed only for use by the
11423         debugger.
11424
11425 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
11426
11427         * *.c, *.h: avoid namespace pollution in public headers.
11428
11429 2004-06-21  Martin Baulig  <martin@ximian.com>
11430
11431         * exception.c (mono_get_exception_security): It's in
11432         "System.Security", not in "System".
11433
11434         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
11435         the exception classes.
11436
11437 2004-06-21  Martin Baulig  <martin@ximian.com>
11438
11439         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
11440         Protect the exception object from being finalized.
11441
11442 2004-06-21  Martin Baulig  <martin@ximian.com>
11443
11444         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
11445         public function.
11446
11447 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
11448
11449         * reflection.c: Load the assembly in mono_reflection_type_from_name,
11450         if it was not loaded before. Fix parts of #60439.
11451
11452 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
11453
11454         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
11455         code that was broken since Ben's change: wrappers are now
11456         dependent on the method signature only again.
11457
11458 2004-06-21  Martin Baulig  <martin@ximian.com>
11459
11460         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
11461         added interface support.
11462
11463 2004-06-21  Martin Baulig  <martin@ximian.com>
11464
11465         * class.c (mono_vtable_get_static_field_data): New public method.
11466
11467 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
11468
11469         * filewatcher.c : Windows build fix to be compliant with API changes.
11470
11471 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11472
11473         * class.h, class.c: more accessors.
11474         * metadata.h, metadata.c: prepare for hiding MonoType and
11475         MonoMethodSignature: people should use the accessors from now on
11476         outside of the tree.
11477
11478 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
11479
11480         * *.c, *.h: more API cleanups.
11481
11482 2004-06-18  Jackson Harper  <jackson@ximian.com>
11483
11484         * assembly.c: Trace loading assemblies.
11485         * loader.c: Trace loading native libraries.
11486         * mono-config.c: Trace loading config files.
11487         
11488 2004-06-18  Dick Porter  <dick@ximian.com>
11489
11490         * locales.c: Tell ICU the lengths of strings, it can cope with
11491         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
11492
11493 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
11494
11495         * image.c: swapped name/filename;
11496
11497 2004-06-18  Martin Baulig  <martin@ximian.com>
11498
11499         * mono-debug-debugger.c (write_class): Write the parent class at
11500         the end of the header.
11501
11502 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
11503
11504         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
11505
11506 2004-06-17  Raja R Harinath  <rharinath@novell.com>
11507
11508         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
11509         (bundle_obj): New conditional define.
11510         (BUILT_SOURCES): Remove.
11511         ($(bundle_srcs)): Make parallel-make safe.
11512         (libmonoruntime_la_LIBADD): Make unconditional.
11513         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
11514         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
11515
11516 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
11517
11518         * culture-info-tables.h: It was inconsistent with the latest
11519           supp info files.
11520
11521 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
11522
11523         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
11524         be loaded.
11525
11526         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
11527         with gcc 2.95.
11528
11529 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
11530
11531         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
11532         cleaned up public header threads.h.
11533
11534 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
11535
11536         * Makefile.am, *.c, *.h: more API cleanups.
11537
11538 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
11539
11540         * Makefile.am: removed monosn from compilation.
11541         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
11542         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
11543         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
11544         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
11545         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
11546         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
11547
11548 2004-06-15  Jackson Harper  <jackson@ximian.com>
11549
11550         * assembly.c: Make locales lower case when searching the GAC for
11551         assemblies. gacutil will always make locales lowercase when
11552         installing so this effectively makes them case insensitive.
11553         
11554 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
11555
11556         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
11557         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
11558           parameter which allows to choose whether the wait can be interrupted or 
11559           not. Also added the method mono_monitor_enter(), which locks the monitor
11560           using an infinite wait and without allowing interruption.
11561           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
11562           interrupted.
11563         * object.h: Added new fields in MonoThread. suspend_event holds the event
11564           used to susped/resume the thread. synch_lock is the lock object to use for
11565           modifying the thread state.
11566         * threads.c: Use the new synch_lock object for locking, instead of "this",
11567           which can generate deadlocks.
11568           Moved thread state change in Thread.Sleep and Thread.Join from managed
11569           to unmanaged code. This avoids a deadlock when the thread was suspended
11570           just after acquiring the thread lock.
11571           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
11572           Implemented Thread.Suspend using an event instead of ThreadSuspend,
11573           which is not fully implemented in the io-layer.
11574         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
11575
11576 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
11577
11578         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
11579         threads-types.h: more API cleanups.
11580
11581 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
11582
11583         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
11584         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
11585         threadpool.c, threads.c: first pass at the exported API cleanup.
11586
11587 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
11588
11589         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
11590
11591 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11592
11593         * icall.c: added internalGetHome.
11594
11595 2004-06-14  Dick Porter  <dick@ximian.com>
11596
11597         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
11598         possible to return successfully when '.' or '..' were the only
11599         entries in a directory, but were skipped.  The MonoIOStat was not
11600         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
11601         Fixes bug 59574.
11602
11603 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
11604
11605         * reflection.c: make binaries run on .Net 1.1 by default.
11606
11607 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11608
11609         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
11610
11611 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
11612
11613         * marshal.c: keep track of struct size with explicit layout
11614         (bug #59979).
11615
11616 2004-06-12  Martin Baulig  <martin@ximian.com>
11617
11618         * mono-debug-debugger.c: Comment out a debugging g_message().
11619
11620 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
11621
11622         * reflection.c, reflection.h: do not free custom attrs that are cached.
11623         * icall.c: use braces to make code clearer.
11624
11625 2004-06-11  Martin Baulig  <martin@ximian.com>
11626
11627         * class.h (MonoInflatedField): New type.
11628         (MonoClassField): Replaced `MonoType *generic_type' with
11629         `MonoInflatedField *generic_info'.
11630
11631         * icall.c
11632         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
11633
11634 2004-06-11  Martin Baulig  <martin@ximian.com>
11635
11636         * reflection.c (mono_image_create_method_token): Correctly encode
11637         varargs methods.
11638
11639 2004-06-11  Martin Baulig  <martin@ximian.com>
11640
11641         * metadata.c (mono_metadata_parse_method_signature): When parsing
11642         a MethodDef which has VarArgs, also set sentinelpos if we don't
11643         have any parameters.
11644
11645 2004-06-11  Martin Baulig  <martin@ximian.com>
11646
11647         * verify.c (mono_method_verify): In CEE_CALL, use
11648         mono_method_get_signature() to get the method's signature, unless
11649         we're a PInvoke method.
11650
11651 2004-06-10  Jackson Harper  <jackson@ximian.com>
11652
11653         * assembly.c: Use <path>/lib/mono/gac for the extra paths
11654         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
11655         logical name as the supplied path is just a prefix to the gac not
11656         the direct path to it.
11657         
11658 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
11659
11660         * reflection.c: make the token for a created method match
11661         the token of the MethodBuilder it was created from
11662         (IKVM requires this behaviour now).
11663
11664 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
11665
11666         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
11667         reflection.c, socket-io.c: leak fixes.
11668
11669 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
11670
11671         * icall.c: handle sentinel pos in vararg methods in position different
11672         from 0.
11673
11674 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11675
11676         * culture-info-tables.h: freshly generated.
11677
11678 2004-06-09  Martin Baulig  <martin@ximian.com>
11679
11680         * loader.c (mono_get_method_constrained): Call `mono_class_init
11681         (constrained_class)'.   
11682
11683 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
11684
11685         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
11686         any methods. Fixes #59629.
11687
11688 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11689
11690         * culture-info-tables.h: reflecting locale-builder updates.
11691
11692 2004-06-08  Dick Porter  <dick@ximian.com>
11693
11694         * object.h:
11695         * locales.c: Fixed compile warnings, including a real bug in
11696         CompareInfo_internal_compare.
11697         
11698 2004-06-08  Dick Porter  <dick@ximian.com>
11699
11700         * locales.c
11701         (ves_icall_System_Globalization_CompareInfo_internal_index):
11702         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11703         Double-check the resuls of usearches, because ICU currently
11704         ignores most of the collator settings here.  Fixes bug 59720.
11705         
11706 2004-06-08  Dick Porter  <dick@ximian.com>
11707
11708         * locales.c
11709         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11710         Fix memory leak and segfault-causing typo.  No idea how this one
11711         lasted so long without being noticed.
11712
11713 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11714
11715         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11716         any methods. Fixes #59629.
11717
11718 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11719
11720         * assembly.c:
11721         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
11722         own the critical section before). Removed dead code (that's done
11723         in the preload hook).
11724
11725         (mono_assembly_load_with_partial_name): call the preload hook.
11726
11727 2004-06-08  Martin Baulig  <martin@ximian.com>
11728
11729         * metadata.c (mono_metadata_signature_alloc): Default
11730         `sentinelpos' to -1.
11731
11732         * reflection.c (mono_image_get_array_token): Likewise.
11733
11734 2004-06-08  Martin Baulig  <martin@ximian.com>
11735
11736         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
11737
11738         * metadata.c (mono_metadata_parse_method_signature): When parsing
11739         a MethodDef which has VarArgs, set sentinelpos.
11740
11741         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
11742         `gint16' since we're using -1 for non-varargs methods.
11743
11744         * reflection.c
11745         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
11746         (method_encode_signature): Added varargs support.
11747         (method_builder_encode_signature): Likewise.
11748         (mono_image_get_varargs_method_token): New static method.
11749         (mono_image_create_method_token): New public method; this is
11750         called via an icall instead of mono_image_create_token() when
11751         calling a varargs method.       
11752
11753 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
11754
11755         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
11756
11757 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11758
11759         * culture-info-tables.h : Reflecting the latest locale-builder that
11760           fixed empty array representation ({} to {0}).
11761
11762 2004-06-07  Jackson Harper  <jackson@ximian.com>
11763
11764         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
11765         looking up extra gac paths. This allows MONO_GAC_PATH to act
11766         exactly like a prefix.
11767         
11768 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11769
11770         * reflection.c (mono_reflection_type_from_name): Make a copy of the
11771         type name before modifying it. Fixes #59405.
11772
11773 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11774
11775         * culture-info.h: added fields for "all datetime patterns".
11776         * locales.c: (  ves_icall_System_Globalization_CultureInfo
11777           _construct_datetime_format ()): fill xxx_patterns fields.
11778         * object.h: added fields for "all datetime patterns" to
11779           MonoDateTimeFormatInfo.
11780         * culture-info-tables.h: reflecting locale-builder updates.
11781
11782 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11783
11784         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
11785         the event has no add and remove methods. Fixes #59629.
11786
11787 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
11788
11789         * object.c: Fixed possible integer overflow when allocating large
11790         strings.
11791
11792 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11793
11794         * culture-info-tables.h: reflecting locale-builder updates.
11795
11796 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11797
11798         * culture-info-tables.h: reflecting locale-builder updates.
11799
11800 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
11801
11802         * culture-info-tables.h: reflecting locale-builder updates.
11803
11804 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
11805
11806         * threads.c: Made Thread.Sleep abortable.
11807
11808 2004-06-02  Martin Baulig  <martin@ximian.com>
11809
11810         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
11811
11812         * debug-mono-symfile.h: Bumped symbol file version number to 37.
11813
11814 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
11815
11816         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
11817
11818 2004-05-30  Jackson Harper  <jackson@ximian.com>
11819
11820         * reflection.c: Do not hardcode assembly versions or public key
11821         tokens anymore. All of this except the corlib section was dead
11822         code anyways.
11823         
11824 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
11825
11826         * object.c (mono_runtime_invoke_array): Automatically create boxed
11827         objects for byref valuetypes if needed. Fixes #59300.
11828         
11829         * object.c (mono_method_return_message_restore): Handle 
11830         MONO_TYPE_OBJECT as well.
11831
11832 2004-05-28  Jackson Harper  <jackson@ximian.com>
11833
11834         * reflection.c: The modified type encoding was causing build
11835         problems. Reverted for now.
11836         
11837 2004-05-28  Jackson Harper  <jackson@ximian.com>
11838
11839         * reflection.c/h: Take an assembly ref so that we dont create
11840         fully qualified names when encoding types in the same assembly as
11841         the custom attribute being emitted.
11842         * appdomain.c: Increment version number.
11843         
11844 2004-05-26  Duncan Mak  <duncan@ximian.com>
11845
11846         * icall.c
11847         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11848         Set the full version number (major, minor, build, revision).
11849
11850 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
11851
11852         * marshal.c (emit_struct_conv): increment src/dst after blit
11853         (mono_marshal_get_managed_wrapper,
11854         mono_marshal_get_native_wrapper): make sure we have marshalling
11855         info before marshalling params (info computation affects
11856         blittable)
11857
11858         * class.c (class_compute_field_layout): correctly deal with
11859         blittable
11860         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11861         value types (as per what windows dows by default)
11862         (mono_class_setup_mono_type): System.ValueType is blittable
11863         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11864         blittable
11865
11866         * marshal.c (mono_marshal_load_type_info): flag types  as
11867         non-blittable if the native layout doesn't match the managed
11868         layout
11869
11870 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11871
11872         * appdomain.c: don't add stuff in the private search path that is
11873         above the application base. If application base is not set, there's
11874         no private search path.
11875
11876 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11877
11878         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11879         byref struct arguments in native->managed marshalling.
11880
11881 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11882
11883         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11884         cache methods using signature (special case for methods
11885         that are value type or string class)
11886         
11887         * image.c (mono_image_close): clean up allocated GSList's
11888         in runtime_invoke_cache.
11889
11890 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11891
11892         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11893         there's no MONO_CFG_DIR environment variable defined.
11894
11895 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11896
11897         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11898
11899 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11900
11901         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11902           is interrumped.
11903         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11904           before waiting for it, and call CloseHandle after the wait to unref it.
11905           This will make sure that handles are not disposed too early.
11906
11907 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11908
11909         * appdomain.c:
11910         * appdomain.h:
11911         * icall.c: removed
11912         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11913         needed now.
11914
11915         * object.c: se the application_base only for the domain that runs
11916         Main. Fixes bug #59216,
11917
11918 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11919
11920         * appdomain.c:
11921         * object.c: only the domain in which Main is run have
11922         SetupInformation.ConfigurationFile set, so moved a few lines from
11923         appdomain.c to object.c.
11924
11925 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11926
11927         * appdomain.c: we tried to load [name].(dll|exe), but according
11928         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11929         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11930         There's a test case attached to bug #58922.
11931
11932 2004-05-27  Dick Porter  <dick@ximian.com>
11933
11934         * icall.c:
11935         * file-io.c: Implemented icalls for locking and unlocking regions
11936         in a file.
11937         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11938         FALSE on error (fixes both compiler warning and real bug.)
11939
11940 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11941
11942         * culture-info-tables.h: reflecting locale-builder updates.
11943
11944           (Added missing ChangeLog entry for 05/26)
11945
11946 2004-05-27  Jackson Harper  <jackson@ximian.com>
11947
11948         * locales.c: Fix some cut and paste errors.
11949         
11950 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11951
11952         * mono-config.c: set the correct path for config. directory on windows.
11953
11954 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11955
11956         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11957           on win32.
11958
11959 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11960
11961         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11962         from pinvoke functions.
11963         
11964         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11965
11966 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11967
11968         * culture-info-tables.h: reflecting locale-builder updates.
11969
11970 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11971
11972         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11973         #59086.
11974
11975 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11976
11977         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11978         * icall.c: Modified icalls for RNG.
11979         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11980         Windows (CryptoAPI).
11981
11982 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11983
11984         * locales.c: Fix build.
11985
11986 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11987
11988         * culture-info-tables.h: reflecting locale-builder updates.
11989
11990 2004-05-25  Jackson Harper  <jackson@ximian.com>
11991
11992         * locales.c: When creating the current culture use the $LANGs
11993         specific culture. So DateTimeFormat and NumberFormat entries are created.
11994         
11995 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11996
11997         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11998         a char array as parameter.
11999
12000 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
12001
12002         * image.c: In mono_image_open(), always use an absolute path name to
12003           look for already loaded images.
12004
12005 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
12006
12007         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
12008         missing in the windows build (like older cygwin include files).
12009
12010 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
12011
12012         * icall.c: Fixed check for possible integer overflow in Buffer_
12013         BlockCopy icall. Replaced comments style // by /* */.
12014
12015 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
12016
12017         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
12018         
12019         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
12020         check after MONO_VTADDR. Fixes pinvoke2.exe.
12021
12022         * marshal.h marshal.c metadata.h: Add beginnings of support for
12023         ftnptr -> delegate marshalling.
12024
12025 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
12026
12027         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
12028         * threads.c: Fix warnings.
12029
12030 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
12031
12032         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
12033         * icall.c: Registered icalls for Suspend and Resume.
12034         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
12035           Thread.Abort.
12036         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
12037         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
12038         * process.c: Use WaitForSingleObjectEx.
12039         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
12040           checkpoints.
12041         * threads.c, threads.h: Make use of new Ex wait methods. Improved
12042           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
12043           for Suspend and Resume. Added new mono_thread_stop, used for stoping
12044           background threads. Added basic support for Abort in Windows.
12045           Start new threads using a managed delegate invoke wrapper. This wrapper
12046           has an interruption checkpoint that is needed since an interruption
12047           can be requested before the thread leaves the unmanaged code that starts 
12048           the thread.
12049         * marshal.c: Added interruption checkpoint after every native call, and
12050           also before managed calls for wrappers called from unmanaged code to
12051           go into managed code.
12052         * object.h: Added new field in MonoThread to keep track of interruption
12053           requests.
12054
12055 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
12056
12057         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
12058         calls.
12059
12060 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12061
12062         * appdomain.c:
12063         * assembly.c:
12064         * gc.c:
12065         * locales.c:
12066         * mono-config.c:
12067         * rand.c: getenv -> g_getenv (windows!)
12068
12069         * process.c: complete_path is also used on non-windows platforms.
12070
12071 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12072
12073         * icall.c: new signature for Process_Start.
12074
12075         * process.[ch]: new signature for Process_Start. If we're on windows
12076         and UseShellExecute is false, we have to search for the program by
12077         ourselves if we don't get a full path.
12078
12079 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
12080
12081         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
12082         marshalling and call CleanUpNativeData if needed. Fixes #58646.
12083
12084 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12085
12086         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
12087         Fixes bug #58373.
12088
12089 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12090
12091         * process.c: use double quotes to quote program name and arguments on
12092         windows. Fixes bug #58575.
12093
12094 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12095
12096         * file-io.c: don't return "." and ".." when using windows Find*File.
12097
12098 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
12099
12100         * marshal.c: Don't pass wrappers to message init because method 
12101         addressed used to lookup metadata. part of remoting[2|3] fix.
12102
12103 2004-05-15  Jackson Harper  <jackson@ximian.com>
12104
12105         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
12106         path is essentially the same as MONO_PATH except that it points to
12107         GACs instead of lib directories.
12108         * loader.h: The user gac is gone so we dont need function to
12109         enable/disable it.
12110         * mono-config.c: user gac option is now gone.
12111         
12112 2004-05-15  Jackson Harper  <jackson@ximian.com>
12113
12114         * culture-info.h: Make defines more consistent, add calendar data
12115         to the culture info table.
12116         * culture-info-tables.h: Add basic calendar data. Basically
12117         everyone gets default gregorian until all the data is
12118         updated.
12119         * locales.c: Use the new consistent defines. Set calendar data for
12120         culture info objects.
12121         * object.h: add a field for calendar data to CultureInfo
12122         
12123 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
12124
12125         * image.c: image->runtime_invoke_cache is keyed on signatures now.
12126         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
12127         a signature.
12128         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
12129         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
12130         an extra param that is the pointer of the method to invoke. The IL for
12131         the invoke method is no longer specific to the method, but to the
12132         signature of the method. Thus, we can share the same code for multiple
12133         methods. This reduces the number of methods that have to be compiled.
12134
12135 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
12136
12137         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
12138
12139         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12140
12141         * icall.c: Optimize Buffer.BlockCopy.
12142
12143 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12144
12145         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
12146         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
12147         quote). Changed them to "MMMM yyyy".
12148
12149 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
12150
12151         * rand.c
12152         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
12153
12154 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
12155
12156         * reflection.h: Updated after changes to managed structures.
12157
12158         * appdomain.c: Bump corlib version.
12159
12160 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12161
12162         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
12163         windows.
12164
12165 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12166
12167         * Makefile.am: link to ../os/libmonoos.la on windows.
12168
12169         * assembly.c:
12170                 -If MONO_DEBUG, warn about non-existing directories in
12171                 MONO_PATH.
12172                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
12173                 compile time variable.
12174                 -Removed init_default_path and call mono_set_rootdir from
12175                 libmonoos.a instead (windows only).
12176
12177         * assembly.h: declare mono_assembly_getrootdir().
12178
12179         * domain.c:
12180         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
12181
12182         * loader.c: s/getenv/g_getenv/
12183
12184 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
12185
12186         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
12187
12188         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
12189
12190         * metadata.h: Add new marshalling conversions.
12191
12192         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
12193         function.
12194
12195         * reflection.c (mono_reflection_get_type): Lookup the type in all
12196         modules of a multi-module assembly. Fixes #58291.
12197
12198 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
12199
12200         * threads.c: Before aborting a background, set the StopRequested
12201         state.  This avoids throwing the Abort exception.
12202         In mono_thread_manage, don't continue with the shutdown until all
12203         aborted threads have actually stopped.
12204
12205 2004-05-10  Jackson Harper  <jackson@ximian.com>
12206
12207         * locales.c: Remove the modifier from culture names.
12208         
12209 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12210
12211         * Makefile.am: monosn is not installed any more. It has been deprecated
12212         in favor of sn.
12213
12214 2004-05-07  Jackson Harper  <jackson@ximian.com>
12215
12216         * locales.c
12217         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
12218         Fix array construction, add bailout if the length is 0.
12219
12220 2004-05-07  Dick Porter  <dick@ximian.com>
12221
12222         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
12223         machine doesn't have a DNS entry.  Patch by Urs Muff
12224         (umuff@quark.com), fixes bug 57928.
12225
12226 2004-05-06  Jackson Harper  <jackson@ximian.com>
12227
12228         * reflection.c: Handle null PublicTokens properly. alloc mem for
12229         assembly names culture so we dont crash when freeing it.
12230         
12231 2004-05-06  Jackson Harper  <jackson@ximian.com>
12232
12233         * assembly.c: Check the usergac when loading with partial names.
12234         
12235 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12236
12237         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
12238         does nothing for now (not required for Linux/Windows) but the class
12239         library can call it (and a newer or modified runtime could need it).
12240         * icall.c: Registred icall.
12241
12242 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12243
12244         * loader.c: prints a message on module loading error we set MONO_DEBUG
12245         environment variable.
12246
12247 2004-05-05  Jackson Harper  <jackson@ximian.com>
12248
12249         * appdomain.c: Handle PublicKeyToken=null properly.
12250         
12251 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
12252
12253         * environment.c|h: Added icall ves_icall_System_Environment_
12254         GetOSVersionString to get the current OS version as a string.
12255         * icall.c: Registred icall.
12256
12257 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
12258
12259         * object.c: in mono_object_get_virtual_method(), take into account that
12260         non-virtual methods don't have a slot in the vtable. Check needed when
12261         the object is a proxy.
12262
12263 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
12264
12265         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
12266         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
12267
12268         * object.c (mono_class_compute_gc_descriptor): Fix warning.
12269
12270         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
12271         passed when a valuetype is expected.
12272
12273         * object.c (mono_unhandled_exception): Only set the exit code if the
12274         exception happens in the main thread. Fixes thread5.exe.
12275
12276         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
12277         invalid names. Fixes #58047.
12278
12279 2004-05-03  Jackson Harper  <jackson@ximian.com>
12280
12281         * assembly.c: This line was committed accidently and is unneeded.
12282         
12283 2004-05-03  Jackson Harper  <jackson@ximian.com>
12284
12285         * icall.c: Add new icall for Assembly::LoadWithPartialName
12286         * assembly.c/.h: new function that probes the GAC to load partial
12287         assembly names by Paolo Molaro.
12288         
12289 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12290
12291         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
12292         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
12293         (type_get_fully_qualified_name): Added PublicKeyToken when building a
12294         full type name.
12295
12296 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12297
12298         * appdomain.c: fixed check for 'neutral' culture and removed warning.
12299         * reflection.c: fix bug when parsing a full type name and Version is not
12300         the last thing in the string.
12301
12302 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
12303
12304         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
12305         crashes when it is freed.
12306
12307 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12308
12309         * assembly.c: print the compat warning to stderr.
12310
12311 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
12312
12313         * assembly.c (mono_assembly_load_references): Add a compatibility
12314         hack to run old applications that might be still referencing the
12315         3300-based assemblies, only do this for System.xxx.
12316
12317 2004-05-01  Jackson Harper  <jackson@ximian.com>
12318
12319         * appdomain.c: If the culture is neutral we set it to "".
12320         
12321 2004-04-29  Jackson Harper  <jackson@ximian.com>
12322
12323         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
12324
12325 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
12326  
12327         * string-icalls.c: added low overhead function for copying chars
12328         * icall.c: added needed icall for the above function
12329  
12330 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12331
12332         * icall.c: fix return value of get_global_assembly_cache.  Implemented
12333         Environment.GetLogicalDrives.
12334
12335 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
12336
12337         * rand.c: try and talk to egd or prngd
12338         for random bytes if opening devices fail.
12339
12340 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
12341
12342         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
12343         alignment for the type using the native alignment of its members 
12344         instead of using klass->min_align.
12345
12346         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
12347
12348 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12349
12350         * file-io.c:
12351         * socket-io.c: added check for sys/aio.h.
12352
12353 2004-04-28  Dick Porter  <dick@ximian.com>
12354
12355         * threads.c: Don't abort a thread thats already aborting, when
12356         terminating everything.
12357
12358 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12359
12360         * icall.c: added 2 new async calls for Socket.
12361
12362         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
12363         IO on *nix systems.
12364
12365         * threadpool.c: removed unused variable.
12366
12367 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
12368
12369         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
12370
12371 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
12372
12373         * locales.c: put back string_invariant_tolower () and
12374         string_invariant_toupper ().
12375
12376 2004-04-26 David Waite <mass@akuma.org>
12377
12378         * file-io.h:
12379         * socket-io.h:
12380         * threads.h:
12381         * unicode.h: remove comma from end of enumeration declarations
12382
12383 2004-04-26 David Waite <mass@akuma.org>
12384
12385         * debug-mono-symfile.h:
12386         * decimal.c:
12387         * mono_debug.h:
12388         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
12389
12390
12391 2004-04-26  Jackson Harper  <jackson@ximian.com>
12392
12393         * appdomain.c: Increment version number.
12394         
12395 2004-04-26  Jackson Harper  <jackson@ximian.com>
12396
12397         * appdomain.c: Set assembly references public token value when
12398         PublicKeyToken is specified, not the hash_value. Free public token
12399         values when free assembly name data. Previously the public key
12400         token was hex decoded, however we are using hex encoded public key
12401         tokens, so this is not neccasary.
12402         * assembly.c: Lookup assemblies in the gac if their public token
12403         value is set. Add function to allow enabling user gac
12404         lookups. Specify whether or not the assembly was loaded from the
12405         GAC. Compare full assembly names when checking the cache for
12406         assemblies (Temporarily disabled see comment in code). Remove
12407         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
12408         specifies trace-loader they get extra info to stdout on the
12409         loading of assemblies.
12410         * image.h: Add a field for an assembly references public token
12411         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
12412         whether an assembly has been loaded from the GAC.
12413         * image.c: Remove a corlib -> mscorlib name mapping.
12414         * loader.h: Add function to enable/disable the user gac.
12415         * mono-config.c: Check if the usergac is enabled in the config
12416         file.
12417         * icall.c: New icall to determine whether or not an assembly has
12418         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
12419         * tabldefs.h: Add constant for assemblyref flag that specifies a
12420         full public key is used instead of a public token.
12421         * reflection.c: Remove mscorlib -> corlib mappings. Set
12422         PublicTokenValue instead of hash value. This value is a hex
12423         string so it does not need to be expanded.
12424
12425 2004-04-26  Martin Baulig  <martin@ximian.com>
12426
12427         * mono-debug-debugger.c (mono_debugger_initialize): Set
12428         `mono_debugger_initialized' before calling mono_debug_lock().
12429
12430 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
12431
12432         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
12433           InternalToUpper/InternalToLower.
12434         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
12435           removed invariant culture shortcut.  This is now done in managed code.
12436         * locales.c: (string_invariant_toupper/tolower) removed.
12437
12438 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12439
12440         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
12441         Added Poll internal call.
12442
12443         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
12444         call for Poll. Select was too heavy for polling a single socket.
12445
12446         * threadpool.[ch]: added mono_threadpool_cleanup.
12447         * threads.c: use it. Don't use Thread_Abort on windows.
12448
12449 2004-04-23  Martin Baulig  <martin@ximian.com>
12450
12451         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
12452
12453 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
12454
12455         * icall.c: Registred new icalls for key pair protection and added an
12456         icall for Environment.GetFolderPath on Windows.
12457         * security.c|h: Added new icalls for key pair protection.
12458
12459 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12460
12461         * socket-io.c: don't display the non-supported family warning for known
12462         families. Now this is not displayed on windows when checking support
12463         for IPv4/IPv6.
12464
12465 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12466
12467         * class.c: don't display the layout warning for static fields.
12468
12469 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
12470
12471         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
12472         * locales.c, locales.h: Added new icalls for culture-specific
12473         Char.ToLower and Char.ToUpper.
12474
12475 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12476
12477         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
12478         by David Waite.
12479
12480 2004-04-20  Martin Baulig  <martin@ximian.com>
12481
12482         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
12483         of the type name before passing it to mono_reflection_type_from_name().
12484
12485 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
12486
12487         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
12488         encodings here. Fixes #56965.
12489
12490 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
12491
12492         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12493         fix test on strstr result not that I can see anything that
12494         relies on the result.
12495
12496 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
12497
12498         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
12499         Fixes #57081.
12500
12501         * marshal.c (mono_marshal_get_string_encoding): New helper function.
12502
12503         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
12504         function to determine which marshalling to use for strings. Fixes
12505         #56965.
12506
12507         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
12508
12509         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
12510
12511 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
12512
12513         * icall.c: #include mono-config.h
12514
12515 2004-04-15  Jackson Harper  <jackson@ximian.com>
12516
12517         * culture-info-tables.h: Fix date formats for en-US culture.
12518         
12519 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
12520
12521         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
12522         ThreadPool.SetMinThreads.
12523         * threadpool.c: Implemented ThreadPool.GetMinThreads and
12524         ThreadPool.SetMinThreads.
12525
12526 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
12527
12528         * mono-config.c: also load the .config file in the directory
12529         where the assembly was found.
12530
12531 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
12532
12533         * assembly.c: load per-assembly config files.
12534         * icall.c: decrapified code to get the config dir and moved to
12535         mono-config.c.
12536         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
12537         per-assembly config files. When doing a dll map lookup give precedence
12538         to the per-assembly data.
12539
12540 2004-04-14  Martin Baulig  <martin@ximian.com>
12541
12542         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
12543         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
12544         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
12545
12546         * mono-debugger-debugger.c: While the debugger is locked, remember
12547         whether the symbol tables have changes and send one single
12548         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
12549
12550 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
12551
12552         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
12553
12554         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
12555         function.
12556
12557         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
12558         account when marshalling string arrays. Fixes #56965.
12559
12560 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
12561
12562         * icall.c: Add new icalls mapping for security.
12563         * security.c|h: Add internal calls for WindowsIdentity,
12564         WindowsImpersonationContext and WindowsPrincipal.
12565
12566 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
12567
12568         * class.c: Added comment to ensure the System.MonoDummy class
12569         is removed when no longer necessary
12570
12571 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
12572
12573         * appdomain.c: Pass arguments to the bootstraping exceptions to
12574         minimize JITed methods at boot
12575
12576         * metadata.c (mono_exception_from_name_two_strings): Allow for the
12577         second string to be null.
12578
12579         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
12580         Change the protocol to minimize the JIT methods at startup.  Now
12581         it Returns the internal codepage, if the value of "int_code_page"
12582         is 1 at entry, and we can not compute a suitable code page
12583         number, returns the code page as a string.
12584
12585 2004-04-13  Jackson Harper  <jackson@ximian.com>
12586
12587         * culture-info-tables.h: Fix number of decimal digits for all
12588         english locales.
12589
12590 2004-04-13  Jackson Harper  <jackson@ximian.com>
12591
12592         * icall.c: Clairfy out of sync error message. It is not always
12593         your corlib that is out of sync.
12594
12595 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
12596
12597         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
12598         properties when only the set accessor is overriden. Fixes #55874.
12599
12600 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
12601
12602         * assembly.c (mono_assembly_load_references): Make this thread safe.
12603         Fixes #56327.
12604
12605 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
12606
12607         * monosn.c: Add missing initialization calls.
12608
12609 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
12610
12611         * locales.c:
12612         ves_icall_System_Globalization_CultureInfo_construct_number_format
12613         Fix g_assert so it compiles on fussier compilers re int/ptr
12614         mismatch
12615
12616 2004-04-08  Dick Porter  <dick@ximian.com>
12617
12618         * socket-io.h:
12619         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
12620         53992.  Also rearrange the code so that the internal calls return
12621         an error value and exceptions are thrown from managed code.
12622
12623         * icall.c: Add type info to the socket icalls.
12624
12625 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12626
12627         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
12628         owes me a beer.
12629
12630 2004-04-07  Martin Baulig  <martin@ximian.com>
12631
12632         * class.c (mono_class_from_generic_parameter): Don't default
12633         `klass->parent' to `mono_defaults.object_type'.
12634
12635 2004-04-07  Martin Baulig  <martin@ximian.com>
12636
12637         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12638         `param->pklass->reflection_info'.       
12639
12640 2004-04-07  Jackson Harper  <jackson@ximian.com>
12641
12642         * culture-info-tables.h: Fix date separator symbol.
12643         
12644 2004-04-07  Martin Baulig  <martin@ximian.com>
12645
12646         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
12647         from System.Type to System.MonoType.
12648
12649 2004-04-07  Martin Baulig  <martin@ximian.com>
12650
12651         * reflection.h
12652         (MonoReflectionGenericParam): Added `has_reference_type' and
12653         `has_value_type' fields.
12654
12655         * reflection.c (mono_image_get_generic_param_info): Encode the
12656         correct flags if we have the `class' or `struct' constraint.
12657
12658 2004-04-07  Martin Baulig  <martin@ximian.com>
12659
12660         * reflection.h
12661         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
12662
12663 2004-04-07  Jackson Harper  <jackson@ximian.com>
12664
12665         * appdomain.c: Revert extra patches, just wanted to bump the
12666         version number.
12667         
12668 2004-04-07  Jackson Harper  <jackson@ximian.com>
12669
12670         * Makefile.am: Add culture-info private headers.
12671         * icall.c: Add new icalls for contructing locales.
12672         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
12673         * locales.h: Declare new culture info construction methods.
12674         * object.h: Add new fields used to avoid the CultureMap to
12675         MonoCultureInfo.
12676         * culture-info.h: Definition of structs used in the culture info
12677         tables.
12678         * culture-info-tables.h: Autogenerated tables that contain culture
12679         info data. This file was generated with the locale-builder tool.
12680         * appdomain.c: Incement corlib version number.
12681         
12682 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
12683
12684         * appdomain.c: (mono_runtime_init) move mono_thread_init
12685         to before mono_object_new calls so critical sections
12686         are initialized before use.
12687
12688 2004-04-07  Martin Baulig  <martin@ximian.com>
12689
12690         * icall.c
12691         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12692         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12693         (ves_icall_MonoGenericParam_initialize): Removed.
12694         (monogenericparam_icalls): Removed.
12695         (generictypeparambuilder_icalls): Added new table for
12696         System.Reflection.Emit.GenericTypeParameterBuilder.
12697
12698         * reflection.c
12699         (mono_reflection_define_generic_parameter): Removed.
12700         (mono_reflection_initialize_generic_parameter): This is now called
12701         from GenericTypeParameterBuilder's .ctor.
12702
12703 2004-04-06  Martin Baulig  <martin@ximian.com>
12704
12705         * class.c (mono_class_init): Don't inflate nested classes in a
12706         generic instance.
12707         (mono_type_get_name_recurse): Include the generic arguments for
12708         generic instances and generic type declarations.
12709         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12710         (_mono_class_get_instantiation_name): Removed.
12711         (mono_class_create_generic): Always use `gklass->name' as our name.
12712
12713         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12714
12715         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12716         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12717         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
12718         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
12719         closed generic methods here.
12720
12721         * reflection.c
12722         (mono_reflection_generic_inst_get_nested_types): Removed.
12723         (inflate_mono_method): Copy the generic parameters from the
12724         MonoMethodHeader into out MonoGenericMethod.
12725
12726 2004-04-06  Martin Baulig  <martin@ximian.com>
12727
12728         * row-indexes.h
12729         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
12730
12731         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
12732
12733         * reflection.c (build_compressed_metadata): If we have any entries
12734         in the GenericParam, MethodSpec or GenericParamConstraint tables,
12735         set the header version to 1.1.
12736
12737 2004-04-06  Martin Baulig  <martin@ximian.com>
12738
12739         * class.c (mono_class_init): If we're a generic instance,
12740         initialize our nested classes, too.
12741         (_mono_class_get_instantiation_name): Deal with the new `!%d'
12742         suffix. 
12743
12744 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12745
12746         * process.c: quote the argument passed to the shell on windows.
12747
12748 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
12749
12750         * threads.c (mono_alloc_special_static_data): Allow this to be
12751         called during startup.
12752
12753 2004-04-02  Martin Baulig  <martin@ximian.com>
12754
12755         * icall.c
12756         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
12757
12758 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
12759
12760         * icall.c: Fix build.
12761
12762 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
12763
12764         * Makefile.am: Added security.c|h.
12765         * icall.c: Added icall for get_UserName;
12766         * security.c: New file for security related icalls. Added function
12767         get_UserName for System.Environment (fix #56144).
12768         * security.h: New. Header file for security.c
12769
12770 2004-04-02  Dick Porter  <dick@ximian.com>
12771
12772         * icall.c: Deleted the icalls that were obsoleted some time ago
12773         by the ICU string code, and which were mixed into the icall
12774         rearranging.  Fixes bug 55969.
12775
12776         * string-icalls.h: 
12777         * string-icalls.c: Deleted the code that those icalls reference.
12778
12779 2004-04-01  Martin Baulig  <martin@ximian.com>
12780
12781         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
12782
12783         * class.c (mono_class_from_generic_parameter): Don't set 
12784         TYPE_ATTRIBUTE_INTERFACE.
12785         (my_mono_class_from_generic_parameter): Likewise.
12786
12787 2004-04-01  Martin Baulig  <martin@ximian.com>
12788
12789         * loader.c (find_method): Added an optional `MonoClass *ic'
12790         argument to search in a specific interface.
12791         (mono_get_method_constrained): New public function.
12792
12793 2004-04-01  Martin Baulig  <martin@ximian.com>
12794
12795         * reflection.c (mono_image_get_generic_field_token): Use the
12796         `handleref' cache here.
12797
12798 2004-04-01  Martin Baulig  <martin@ximian.com>
12799
12800         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
12801
12802         * reflection.c (create_generic_typespec): Use the `typespec' hash
12803         here, not the `typeref' one.    
12804
12805 2004-04-01  Martin Baulig  <martin@ximian.com>
12806
12807         * class.c (mono_class_inflate_generic_type): Moved the
12808         functionality into a new static inflate_generic_type() which
12809         returns NULL if it didn't do anything.  Only increment the
12810         `mono_stats.inflated_type_count' if we actually inflated
12811         something.
12812         (mono_class_get_full): Check the classes type to see whether we
12813         need to inflate it; also inflate MONO_TYPE_(M)VAR.
12814
12815 2004-04-01  Jackson Harper  <jackson@ximian.com>
12816
12817         * reflection.c: Set culture for assembly references.
12818         
12819 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
12820
12821         * reflection.[ch], icall.[ch], Fix support for pinning variables.
12822
12823 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12824
12825         * assembly.c:
12826         (do_mono_assembly_open): the critical section also covers
12827         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
12828
12829 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12830
12831         * threads.c:
12832         (mono_manage_threads): abort the background threads when finishing.
12833         Fixes bug #47232.
12834
12835 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12836
12837         * gc.c: only close the done_event handle if there was no timeout.
12838         C-ified comments.
12839
12840 2004-03-30  Martin Baulig  <martin@ximian.com>
12841
12842         * icall.c (icall_entries): It's called "System.Activator", not
12843         "System.Activation".    
12844
12845 2004-03-30  Martin Baulig  <martin@ximian.com>
12846
12847         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
12848         (mono_class_create_from_typespec): Likewise.
12849
12850 2004-03-30  Martin Baulig  <martin@ximian.com>
12851
12852         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
12853         `has_ctor_constraint' and `initialized'.
12854
12855 2004-03-30  Martin Baulig  <martin@ximian.com>
12856
12857         * reflection.c (encode_new_constraint): New static function to add
12858         the constructor constraint attribute to a type parameter.
12859         (encode_constraints): Call encode_new_constraint() if necessary.
12860
12861         * reflection.h
12862         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12863
12864         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12865         
12866 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12867
12868         * reflection.c, icall.c: add support for pinning variables. 
12869
12870 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12871
12872         * marshal.c (mono_marshal_get_managed_wrapper):
12873         init bool local with zero rather than null.
12874
12875 2004-03-29  Martin Baulig  <martin@ximian.com>
12876
12877         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12878         the "official" behavior here.
12879         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12880
12881 2004-03-29  Martin Baulig  <martin@ximian.com>
12882
12883         * icall.c: Reflect latest API changes.
12884
12885 2004-03-29  Martin Baulig  <martin@ximian.com>
12886
12887         * loader.c (mono_get_method_from_token): Also call
12888         mono_metadata_load_generic_params () for abstract and interface
12889         methods; replace the type arguments in the method signature with
12890         the ones which are loaded from the metadata.
12891
12892 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12893
12894         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12895         of the lock is not the current thread. MS.NET don't do it, in spite of
12896         what the documentation says. See bug #56157.
12897
12898 2004-03-28  Martin Baulig  <martin@ximian.com>
12899
12900         * class.c (mono_class_init): Don't call init_properties() and
12901         init_events() for generic instances; set `prop->parent' when
12902         inflating properties.
12903
12904         * reflection.c (mono_generic_inst_get_object): Call
12905         `mono_class_init (ginst->klass)'.
12906         (mono_type_get_object): Only create a MonoGenericInst if your
12907         generic type is a TypeBuilder.
12908         (do_mono_reflection_bind_generic_parameters): Only set
12909         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12910
12911 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12912
12913         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12914         Fixes #56091.
12915
12916 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12917
12918         * icall.c: added Kill_internal icall.
12919         * process.[ch]: added Kill_internal icall.
12920
12921 2004-03-25  Martin Baulig  <martin@ximian.com>
12922
12923         * class.h (MonoStats): Added `generic_instance_count',
12924         `inflated_method_count', `inflated_type_count' and
12925         `generics_metadata_size'.       
12926
12927 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12928
12929         * reflection.c: no warnings now.
12930
12931 2004-03-25  Martin Baulig  <martin@ximian.com>
12932
12933         * class.c (mono_class_get_full): New public function; does a
12934         mono_class_get(), but also takes a `MonoGenericContext *'.
12935
12936         * loader.c (mono_field_from_memberref): Renamed to
12937         `field_from_memberref', made static and added `MonoGenericContext *'
12938         argument.
12939         (mono_field_from_token): Added `MonoGenericInst *' argument.
12940         (method_from_memberef): Likewise.
12941         (mono_get_method_from_token): Likewise.
12942         (mono_get_method_full): New public function; does a
12943         mono_get_method(), but also takes a `MonoGenericContext *'.
12944
12945         * verify.c (mono_method_verify): Get the method's generic context
12946         and pass it to mono_field_from_token(), mono_get_method_full() and
12947         mono_class_get_full().
12948
12949 2004-03-25  Martin Baulig  <martin@ximian.com>
12950
12951         * class.c (mono_class_inflate_generic_type): Take a
12952         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12953         `MonoGenericMethod *'.
12954
12955 2004-03-25  Martin Baulig  <martin@ximian.com>
12956
12957         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12958         instead of the MonoGenericMethod here.
12959
12960 2004-03-25  Martin Baulig  <martin@ximian.com>
12961
12962         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12963         each time we create a new MonoGenericInst, we also create a new
12964         context which points back to us.
12965
12966         * class.c (inflate_method): Use `ginst->context' instead of
12967         creating a new context.
12968
12969         * loader.c (method_from_memberref): Use
12970         `klass->generic_inst->context' instead of creating a new context.
12971
12972 2004-03-25  Martin Baulig  <martin@ximian.com>
12973
12974         * class.h (MonoGenericContext): New struct.
12975         (MonoGenericMethod): Removed `generic_inst'.
12976
12977         * class.c (mono_class_inflate_generic_method): Take a
12978         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12979
12980 2004-03-25  Martin Baulig  <martin@ximian.com>
12981
12982         * loader.h (MonoMethodInflated): New typedef.
12983
12984         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12985         `generic_param_count' consume just 30 bits, added `is_inflated'
12986         and `has_type_parameters' flags (one bit each).
12987
12988         * class.c (mono_class_inflate_generic_method): Create a
12989         MonoMethodInflated instead of a MonoMethodNormal and set
12990         `is_inflated' in the method signature.
12991
12992         * class.h (MonoGenericMethod): Removed `generic_method'.
12993
12994 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12995
12996         * image.c: Make sure the name of a MonoImage is always an absolute path.
12997           This fixes bug #54415.
12998
12999 2004-03-24  Martin Baulig  <martin@ximian.com>
13000
13001         * class.c (mono_class_setup_vtable): If we're a generic instance,
13002         use our generic type's vtable size.
13003
13004 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
13005
13006         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
13007         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
13008         problems.
13009
13010 2004-03-23  Martin Baulig  <martin@ximian.com>
13011
13012         * class.h (MonoDynamicGenericInst): Added `int count_events' and
13013         `MonoEvent *events'.
13014
13015         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
13016         (typebuilder_icalls): Added "get_event_info"; calls
13017         mono_reflection_event_builder_get_event_info(). 
13018
13019         * reflection.c (mono_reflection_generic_inst_initialize): Added
13020         `MonoArray *events'.
13021         (mono_reflection_event_builder_get_event_info): New function.
13022
13023 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
13024
13025         * object.h: add mono_type_initialization_init
13026
13027         * object.c (mono_runtime_class_init): 
13028         implement class constructor synchronization rules
13029         to cope with threading issues.  
13030         add mono_type_initialization_init
13031
13032         * appdomain.c (mono_runtime_init): call 
13033         mono_type_initialization_init
13034
13035         * class.h: removing initializing field from MonoVTable
13036
13037 2004-03-23  Martin Baulig  <martin@ximian.com>
13038
13039         * class.c (my_mono_class_from_generic_parameter): Use
13040         `param->name' if it's not NULL. 
13041
13042 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
13043
13044         * class.c: do not insert non-virtual methods in the vtable.
13045         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
13046         that means the method is non-virtual. This never would have
13047         happened before.
13048
13049 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
13050
13051         * profiler.c: Added lock for accessing coverage_hash.
13052
13053 2004-03-22  Martin Baulig  <martin@ximian.com>
13054
13055         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
13056         `method->method->signature->generic_param_count != 0' to make it
13057         work for interface methods.
13058
13059 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13060
13061         * process.c: quote the string passed to the shell using g_shell_quote.
13062
13063 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13064
13065         * threads.c:
13066         (mono_threads_manage): don't remove the finalizer thread and self
13067         from the threads hash table so that mono_thread_manage can be called
13068         more than once.
13069
13070 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13071
13072         * process.c: quote the arguments when UseShellExecute is true. Fixes
13073         bug #55790.
13074
13075 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13076
13077         * threads.c: set mono_thread_detach as a cleanup routine for every
13078         thread. This way it's always executed upon thread termination, either
13079         aborted or finished normally. No more xsp hangs!
13080
13081 2004-03-17  Martin Baulig  <martin@ximian.com>
13082
13083         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
13084         `int count_nested' and a `MonoType **nested'.
13085
13086         * reflection.c (mono_reflection_bind_generic_parameters): Moved
13087         most of the functionality into a new static
13088         do_mono_reflection_bind_generic_parameters() and don't take a
13089         `MonoType *nested_in' argument any more.  Don't compute nested
13090         types here.
13091         (mono_reflection_generic_inst_get_nested_types): New public method
13092         to get nested types.
13093
13094         * class.c (mono_class_create_generic): Set `klass->nested_in' if
13095         we're a nested class.
13096
13097         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
13098         mono_reflection_generic_inst_get_nested_types() to compute the
13099         nested types.
13100
13101 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13102
13103         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
13104         descriptive error message under windows.
13105         
13106 2004-03-17  Martin Baulig  <martin@ximian.com>
13107
13108         * class.c (dup_type): Added `const MonoType *original' argument;
13109         copy the attrs from the original type.
13110
13111 2004-03-17  Martin Baulig  <martin@ximian.com>
13112
13113         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
13114         `m->generic_inst_cache' here.
13115
13116 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
13117
13118         * exception.h exception.c: Add stack_overflow_exception.
13119
13120 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13121
13122         * threadpool.c:
13123         (overlapped_callback): call SetEvent *after* invoking the callback.
13124         No need to call CloseHandle.
13125
13126 2004-03-16  Martin Baulig  <martin@ximian.com>
13127
13128         * reflection.c (mono_image_get_fieldref_token): Take a
13129         `MonoReflectionField *' instead of a `MonoClassField *' and a
13130         `MonoClass *'; store the `MonoReflectionField *' in the hash.
13131
13132 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13133
13134         * appdomain.c: don't add the culture to the filename we're looking for
13135         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
13136
13137 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13138
13139         * locales.c: don't ignore symbols when doing case insensitive compares.
13140         Thanks Dick! Fixes bug #54046.
13141
13142         * threads.c: surround 'threads' usage with enter/leave in
13143         mono_thread_manage.
13144
13145 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
13146
13147         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
13148         implicitly marshalled as [Out]. Fixes #55450.
13149
13150         (mono_marshal_get_runtime_invoke): Zero out the result if there is
13151         an exception.
13152
13153 2004-03-16  Martin Baulig  <martin@ximian.com>
13154
13155         * class.c (mono_class_from_generic_parameter): Use the actual
13156         parameter name. 
13157
13158 2004-03-16  Martin Baulig  <martin@ximian.com>
13159
13160         * reflection.c (type_get_signature_size): New static function.
13161         Compues the size of the type in a method signature.
13162         (method_get_signature_size): New static function; calls
13163         type_get_signature_size() to compute the actual size of the
13164         method's signature.
13165         (method_encode_signature): Use method_get_signature_size() to get
13166         the signature's size rather than using `nparams * 10'.
13167
13168 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13169
13170         * file-io.h: define here WapiOverlapped on windows. I don't want the
13171         regular OVERLAPPED one.
13172
13173         * file-io.c:
13174         * threadpool.c: somehow, BindIoCompletionCallback is not found.
13175         Disabling AIO on windows.
13176
13177 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13178
13179         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
13180         bug #55385.
13181
13182 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13183
13184         * appdomain.c: upgraded corlib version.
13185
13186         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
13187         and BeginWrite. Allow opening files for asynchrnous operations.
13188
13189         * file-io.h: new struct that maps FileStreamAsyncResult.
13190         * icall.c: added new icalls.
13191         * process.[ch]: support setting child process environment variables
13192         and use the SHELL or COMSPEC when UseShellExecute is true.
13193
13194         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
13195         callback for async. IO is here and also BindHandle.
13196
13197         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
13198         from here.
13199
13200 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
13201
13202         * reflection.c (create_custom_attr): Allow len == 0.
13203
13204         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
13205         computation on big-endian machines.
13206
13207 2004-03-13  Martin Baulig  <martin@ximian.com>
13208
13209         * class.h (MonoGenericInst): Added `int count_ifaces'.
13210
13211         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
13212         `ginst->count_ifaces' instead `klass->interface_count' since we
13213         may get called before the vtable is created.
13214
13215         * loader.c (mono_method_get_param_names): If we're a generic
13216         instance, return and don't initialize the class.
13217
13218         * reflection.c (mono_reflection_setup_generic_class): Don't call
13219         ensure_runtime_vtable().
13220         (mono_reflection_bind_generic_parameters): Set
13221         `ginst->count_ifaces'.
13222
13223 2004-03-11  Jackson Harper <jackson@ximian.com>
13224
13225         * icall.c:
13226         * unicode.c:
13227         * unicode.h: Remove unused System.Char icalls.
13228         
13229 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
13230
13231         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
13232         code when we P/Invoke the first library in Windows.Forms, instead
13233         of when we first open the assembly.
13234
13235         * assembly.c: Drop the lookup from here.
13236
13237 2004-03-10  Martin Baulig  <martin@ximian.com>
13238
13239         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
13240         class for properties, fields and events.  Finally fixes #54945.
13241
13242 2004-03-10  Martin Baulig  <martin@ximian.com>
13243
13244         * metadata.c (mono_metadata_class_equal): New static function;
13245         checks whether two generic instances or two generic parameters are
13246         equal.
13247         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
13248         compare classes.        
13249
13250 2004-03-10  Martin Baulig  <martin@ximian.com>
13251
13252         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
13253
13254         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
13255         argument and write it into the `reflection_info' field.
13256
13257         * icall.c
13258         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
13259         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
13260
13261 2004-03-09  Jackson Harper  <jackson@ximian.com>
13262
13263         * char-conversions.h: use 8 bits for numeric data its all we need
13264         * icall.c: numeric data is only 8 bits now.
13265
13266 2004-03-09  Martin Baulig  <martin@ximian.com>
13267
13268         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
13269
13270         * class.c (init_properties, init_events): Initialize the new
13271         `parent' field.
13272
13273         * reflection.c (typebuilder_setup_properties): Likewise.
13274         (typebuilder_setup_events): Likewise.
13275
13276         * reflection.h (MonoEventInfo): Replaced `parent with
13277         `declaring_type' and `reflected_type'.
13278
13279         * icall.c (ves_icall_get_property_info): Distinguish between
13280         declaring and reflected type.
13281         (ves_icall_get_event_info): Likewise.
13282
13283 2004-03-09  Martin Baulig  <martin@ximian.com>
13284
13285         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
13286         (ves_icall_Type_GetField): Correctly set field->klass.
13287
13288 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
13289
13290         * loader.h: Fix warning.
13291
13292 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
13293
13294         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
13295         library routine if present.  Notice that it will still continue
13296         executing even if its missing, for those working on the Gtk#
13297         edition of Windows.Forms.
13298
13299         * assembly.c (do_mono_assembly_open): If loading the
13300         System.Windows.Forms call mono_loader_wini_init.
13301
13302 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
13303
13304         * class.h: Added MonoRemoteClass struct.
13305         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
13306         function for MonoStrings.
13307         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
13308         Added internal call for getting the proxy type.
13309         * marshal.c: Get the type of transparent proxies from its remote_class.
13310         Added methods that generate the IL for type checks and casts:
13311         mono_marshal_get_isinst, mono_marshal_get_castclass, 
13312         mono_marshal_get_proxy_cancast.
13313         * marshal.h: Declaration of the previous new methods.
13314         * object.c: Added new moethods for creating and updating MonoRemoteClass
13315         instances: mono_remote_class, mono_upgrade_remote_class, 
13316         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
13317         * verify.c: FIx transparent_proxy_fields layout.
13318         * appdomain.c: Bump corlib version.
13319
13320 2004-03-04  Jackson Harper  <jackson@ximian.com>
13321
13322         * icall.c: Add icall to access char conversion tables.
13323         * char-conversions.h: Character conversion tables.
13324         * Makefile.am: Add char-conversions.h private header file.
13325         
13326 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
13327
13328         * appdomain.c (unload_thread_main): Increase unloading timeout to
13329         10 sec as a temporary workaround for Nant problems.
13330
13331 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
13332
13333         * gc.c: Add checks for GC_enable and GC_disable.
13334
13335         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
13336         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
13337         (bug #54988).
13338         
13339 2004-02-27  Martin Baulig  <martin@ximian.com>
13340
13341         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13342         `MonoReflectionType *' instead of a `MonoType *'.
13343
13344 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
13345
13346         * gc.c (run_finalize): Avoid finalizing the object representing the
13347         finalizer thread.
13348         (finalizer_thread): Fix warning.
13349
13350 2004-02-25  Martin Baulig  <martin@ximian.com>
13351
13352         * class.c (_mono_class_get_instantiation_name): Added `int offset'
13353         argument for nested types.
13354         (mono_class_create_generic): Added support for nested generictypes.
13355
13356         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
13357         `GList *nested'.
13358
13359         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
13360
13361         * reflection.c (method_encode_signature): Increase the minimum
13362         value of `size' from 10 to 11.
13363         (mono_reflection_bind_generic_parameters): Take `int type_argc'
13364         and `MonoType **types' arguments instead of the `MonoArray
13365         *types'; added `MonoType *nested_in'.  Recursively instantiate
13366         nested classes. 
13367
13368 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
13369
13370         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
13371         stack_overflow_ex members which are used by exception handling.
13372
13373         * appdomain.c (mono_runtime_init): Initialize the new members.
13374
13375         * gc.c (mono_gc_enable): New helper function.
13376         * gc.c (mono_gc_disable): New helper function.
13377
13378 2004-02-23  Martin Baulig  <martin@ximian.com>
13379
13380         * icall.c: I must have been really stupid - make it actually work
13381         this time ;-)
13382
13383 2004-02-23  Martin Baulig  <martin@ximian.com>
13384
13385         * loader.c (method_from_memberref): Only inflate the method if
13386         it's in another klass.
13387
13388 2004-02-23  Martin Baulig  <martin@ximian.com>
13389
13390         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
13391         (mono_class_init): If we're a generic instance and an interface,
13392         compute `class->interface_id'; also create `class->interfaces'
13393         here and inflate them.
13394
13395         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
13396         `ginst->is_open'.
13397         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
13398
13399         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
13400
13401 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
13402
13403         * reflection.c (method_encode_code): Improved the error message
13404         generated by the exception.
13405
13406 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13407
13408         * icall.c: Martin did not do what he said in the ChangeLog for
13409         2004-02-18, but put back the changes for properties and events.
13410         Commenting those changes out again and adding comment to bug #54518.
13411         
13412         * process.c: removed warning.
13413
13414 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
13415
13416         * marshal.c (emit_struct_conv): Print an error message instead of
13417         asserting when a type does not have the StructLayout attribute.
13418
13419 2004-02-20  Martin Baulig  <martin@ximian.com>
13420
13421         * reflection.c (mono_type_get_object): Also use the cache for
13422         generic instances.
13423         (mono_reflection_bind_generic_parameters): Always compute
13424         `ginst->ifaces'.        
13425
13426 2004-02-20  Martin Baulig  <martin@ximian.com>
13427
13428         * class.h (MonoGenericMethod): Removed `klass'.
13429
13430         * class.c (mono_class_inflate_generic_method): Added `MonoClass
13431         *klass' argument.
13432
13433 2004-02-20  Martin Baulig  <martin@ximian.com>
13434
13435         * reflection.c (method_encode_methodspec): Actually use the
13436         uninflated signature for the memberref.
13437
13438 2004-02-20  Martin Baulig  <martin@ximian.com>
13439
13440         * class.h (MonoGenericMethod): Removed `declaring'.
13441
13442         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
13443         is NULL, compute it here.
13444
13445 2004-02-20  Martin Baulig  <martin@ximian.com>
13446
13447         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
13448
13449         * metadata.c (mono_metadata_generic_inst_hash): New method.
13450         (mono_metadata_generic_inst_equal): New method.
13451
13452         * reflection.c (mono_reflection_bind_generic_parameters): Use the
13453         `klass->image->generic_inst_cache' cache to avoid creating
13454         duplicate MonoGenericInst's.
13455
13456         * class.c (mono_class_inflate_generic_type): Use the cache.
13457
13458 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
13459
13460         * object.c: fixed gc descriptor calculation for embedded valuetypes.
13461
13462 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13463
13464         * icall.c: added Socket.WSAIoctl icall.
13465
13466         * socket-io.[ch]: implemented
13467         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
13468
13469 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
13470
13471         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
13472
13473 2004-02-18  Urs C Muff  <umuff@quark.com>
13474
13475         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
13476         this work on PPC and other big-endian architectures.
13477
13478         * debug-mono-symfile.h: Prepended the names of all the `guint32'
13479         fields with an underscore to make sure they're only accessed by
13480         the read32() macro.
13481
13482 2004-02-18  Martin Baulig  <martin@ximian.com>
13483
13484         * icall.c: Put the klass->refclass changes back for methods and
13485         fields, but not for properties and events.  We're currently not
13486         distinguishing between DeclaringType and ReflectedType for
13487         properties and events, that's what caused the regressions.
13488
13489 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13490
13491         * object.c:
13492         (mono_async_result_new): the handle can be NULL.
13493
13494         * threadpool.c: Use an event instead of a semaphore, don't initialize
13495         it until needed. This saves quite a few semaphores from being created
13496         when using the threadpool.
13497
13498 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
13499
13500         * object.c (mono_string_is_interned_lookup): Fix interning of long
13501         strings. Fixes #54473.
13502
13503         * domain.c (ldstr_equal): Optimize if the two strings are equal.
13504
13505         * icall.c: Revert the klass->refclass changes since they introduce
13506         regressions (bug #54518).
13507
13508 2004-02-18  Martin Baulig  <martin@ximian.com>
13509
13510         * class.c (mono_class_init): If we're a generic instance and don't
13511         come from a TypeBuilder, inflate our members here.
13512         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
13513         (mono_class_create_generic): New public method.
13514         (mono_class_initialize_generic): Removed.
13515         (get_instantiation_name): Renamed to
13516         _mono_class_get_instantiation_name() and made it public.
13517
13518 2004-02-18  Martin Baulig  <martin@ximian.com>
13519
13520         * class.c (mono_class_inflate_generic_type): Clear the new
13521         instance's `nginst->klass' when inflating a generic instance.
13522         (mono_class_is_subclass_of): Added (basic) support for generic
13523         instances.
13524
13525 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
13526
13527         * appdomain.h, domain.c: use a MonoCodeManager instead of a
13528         MonoMempool to hold compiled native code.
13529
13530 2004-02-17  Martin Baulig  <martin@ximian.com>
13531
13532         * class.h (MonoDynamicGenericInst): Added `count_properties' and
13533         `properties'.
13534
13535         * reflection.c (mono_reflection_generic_inst_initialize): Added
13536         `MonoArray *properties' argument.
13537
13538         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
13539
13540 2004-02-17  Martin Baulig  <martin@ximian.com>
13541
13542         * icall.c (ves_icall_Type_GetFields): Renamed to
13543         ves_icall_Type_GetFields_internal() and added a
13544         `MonoReflectionType *rtype' argument; pass it to
13545         mono_field_get_object() to set the field's "reflected" type.
13546         (ves_icall_Type_GetConstructors): Likewise.
13547         (ves_icall_Type_GetEvents): Likewise.
13548         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
13549         argument; pass it to mono_method_get_object() to set the method's
13550         "reflected" type.       
13551
13552 2004-02-17  Martin Baulig  <martin@ximian.com>
13553
13554         * class.h (MonoDynamicGenericInst): New type.
13555         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
13556
13557         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
13558         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
13559         (ves_icall_MonoGenericInst_GetFields): New interncall.
13560
13561         * class.c (mono_class_from_generic): Don't call
13562         mono_class_initialize_generic() if this is a dynamic instance;
13563         ie. it's being created from a TypeBuilder.
13564         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
13565         `class->byval_arg.type'.
13566
13567         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
13568         to `inflate_method' and made static.
13569         (mono_reflection_inflate_field): Removed.
13570         (mono_reflection_generic_inst_initialize): New public method.
13571
13572         * reflection.h (MonoReflectionGenericInst): Removed `methods',
13573         `ctors' and `fields'; added `initialized'.
13574
13575 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
13576
13577         * debug-helpers.c (mono_method_full_name): Fix output for empty
13578         namespaces.
13579
13580 2004-02-12  Martin Baulig  <martin@ximian.com>
13581
13582         * class.h (MonoClassField): Added `MonoType *generic_type'.
13583
13584         * reflection.c (mono_image_get_fieldref_token): Added support for
13585         instantiated generic types.
13586         (field_encode_inflated_field): Removed.
13587         (mono_image_get_inflated_field_token): Removed.
13588         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
13589
13590         * reflection.h (MonoReflectionInflatedField): Removed.
13591
13592 2004-02-12  Martin Baulig  <martin@ximian.com>
13593
13594         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
13595         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
13596
13597         * reflection.c (mono_image_get_methodspec_token): Take a
13598         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
13599         (mono_image_create_token): Check whether we have a
13600         `method->signature->gen_method' and call
13601         mono_image_get_methodspec_token() if appropriate.
13602         (inflated_method_get_object): Removed.
13603         (mono_reflection_bind_generic_method_parameters): Return a
13604         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
13605         (mono_reflection_inflate_method_or_ctor): Likewise.
13606
13607         * reflection.h (MonoReflectionInflatedMethod): Removed.
13608
13609 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
13610
13611         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
13612         for custom valuetype marshalling.
13613
13614         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
13615
13616 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13617
13618         * icall.c: fixed WSAGetLastError_internal name.
13619
13620 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
13621
13622         * threads.c (mono_thread_attach): Allow this to be called multiple
13623         times for a thread.
13624         
13625         * threads.c (build_wait_tids): Do not wait for ourselves.
13626
13627         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
13628         appdomain list is empty.
13629
13630         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
13631         memory returned by mono_string_builder_to_utf16, since it points into
13632         managed memory. Thanks to Bernie Solomon for noticing this.
13633
13634         * icall.c: Add AppDomainSetup icalls.
13635
13636         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
13637
13638         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
13639         types.
13640
13641         * reflection.c (reflection_methodbuilder_to_mono_method): Save
13642         custom attributes to the method_aux struct. Also fix array indexes etc.
13643
13644         * loader.c (mono_method_get_param_names): Make dynamic case work again.
13645         
13646 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
13647
13648         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
13649         (both static and runtime) and reduce startup time.
13650
13651 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
13652
13653         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
13654         AsAny marshalling conversion instead of crashing.
13655
13656         * marshal.c: Fix warnings.
13657
13658 2004-02-09  Martin Baulig  <martin@ximian.com>
13659
13660         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
13661
13662         * reflection.h (MonoReflectionInflatedMethod): Removed the
13663         `declaring' field, it's now in the unmanaged MonoGenericMethod.
13664
13665         * reflection.c (method_encode_methodspec): Removed the `method'
13666         argument; we get it from `gmethod->declaring'.
13667         (inflated_method_get_object): Removed the `declaring' argument.
13668
13669 2004-02-09  Martin Baulig  <martin@ximian.com>
13670
13671         * class.h (MonoGenericMethod): New type.
13672         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
13673         `generic_method'.
13674
13675         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
13676         a `MonoGenericMethod *gen_method' one.
13677
13678         * class.c (mono_class_inflate_generic_type): Take an additional
13679         `MonoGenericMethod * argument.  This is only non-NULL if we're
13680         inflating types for a generic method.   
13681         (mono_class_inflate_generic_signature): Renamed to
13682         inflate_generic_signature() and made static; take a
13683         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13684         (inflate_generic_header): Take a `MonoGenericMethod *' argument
13685         instead of a `MonoGenericInst *' one.
13686         (mono_class_inflate_generic_method): Likewise.
13687
13688         * reflection.c (encode_generic_method_sig): Take a
13689         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13690         (method_encode_methodspec): Likewise.
13691         (inflated_method_get_object): Likewise. 
13692
13693         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13694         field with a `MonoGenericMethod *gmethod' one.  
13695
13696 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13697
13698         * class.h (mono_class_has_parent): add parens to expansion
13699         so you can ! this.
13700
13701 2004-02-08  Martin Baulig  <martin@ximian.com>
13702
13703         * image.h (MonoImage): Removed `generics_cache'.
13704
13705         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13706         instead of a `MonoType *' argument; removed the `inflate_methods'
13707         argument.  Don't inflate methods here.
13708
13709         * loader.c (find_method): If it's a generic instance, call
13710         mono_class_init() on the `sclass->generic_inst->generic_type'.
13711
13712         * metadata.c (mono_type_size): Make this work on uninitialized
13713         generic instances; call it on the `ginst->generic_type's class.
13714
13715         * reflection.c (mono_reflection_bind_generic_parameters): Call
13716         mono_class_from_generic() to create the `ginst->klass'.
13717
13718 2004-02-08  Martin Baulig  <martin@ximian.com>
13719
13720         * class.h (MonoClass): Changed type of `generic_inst' from
13721         `MonoType *' to `MonoGenericInst *'.
13722
13723 2004-02-08  Martin Baulig  <martin@ximian.com>
13724
13725         * icall.c (ves_icall_Type_BindGenericParameters): Just call
13726         mono_type_get_object(), this is now creating a `MonoGenericInst'
13727         for MONO_TYPE_GENERICINST.
13728         (ves_icall_MonoGenericInst_GetParentType): Likewise.
13729         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
13730
13731         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
13732         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
13733         (inflated_method_get_object): Added `MonoClass *refclass' argument.
13734         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
13735         and reflected type.
13736
13737         * reflection.h (MonoReflectionInflatedMethod): Removed
13738         `declaring_type' and `reflected_type'.
13739
13740 2004-02-08  Martin Baulig  <martin@ximian.com>
13741
13742         * class.h (MonoGenericInst): Added `MonoType *parent' and
13743         `MonoType **ifaces'.
13744
13745         * reflection.h (MonoReflectionGenericInst): Removed `klass',
13746         `parent' and `interfaces'.
13747
13748         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13749         `MonoType *' argument and return a `MonoType *'.
13750
13751         * icall.c
13752         (ves_icall_MonoGenericInst_GetParentType): New interncall.
13753         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
13754
13755 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13756
13757         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
13758         valuetype marshalling.
13759
13760 2004-02-06  Martin Baulig  <martin@ximian.com>
13761
13762         * class.c
13763         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
13764         (my_mono_class_from_generic_parameter): Likewise.
13765
13766 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13767
13768         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
13769         contents of the symbol files lazily.
13770
13771         * object.h (MonoThread): Add 'name' and 'name_len' fields.
13772
13773         * threads.h threads.c icall.c: New icalls for getting and setting the
13774         threads name.
13775
13776 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
13777
13778         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
13779         Raise an exception when the domain is not found.
13780
13781 2004-02-03  Martin Baulig  <martin@ximian.com>
13782
13783         * reflection.c (mono_image_get_methodspec_token): Use the
13784         uninflated signature; fixes gen-33.
13785
13786 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
13787
13788         * gc.c threads.c: Make the finalizer thread a normal managed thread so
13789         the finalizer code can use thread functionality.
13790
13791         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
13792         the finalizer thread.
13793
13794         * threads.c: Make some functions more robust.
13795
13796         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
13797
13798         * metadata.h: Add new marshalling conventions.
13799
13800         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
13801         stringbuilder marshalling. Fixes #53700.
13802
13803         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
13804
13805         * reflection.c (mono_image_get_type_info): Save declarative security
13806         info.
13807
13808         * reflection.c (mono_image_get_field_info): Handle uninitialized 
13809         unmanaged fields as well.
13810
13811         * appdomain.c: Bump corlib version.
13812
13813 2004-02-01  Martin Baulig  <martin@ximian.com>
13814
13815         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
13816         method type arguments.  
13817
13818 2004-01-30  Duncan Mak  <duncan@ximian.com>
13819
13820         * marshal.h: Add prototype for
13821         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
13822         and
13823         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
13824         fix the build.
13825
13826 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
13827
13828         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
13829         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
13830
13831 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13832
13833         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13834         custom marshalling of valuetypes.
13835
13836         * marshal.c: Fix some warnings.
13837
13838 2004-01-29  Martin Baulig  <martin@ximian.com>
13839
13840         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
13841         for generic method parameters.
13842
13843         * reflection.c (method_encode_methodspec): Write the uninflated
13844         signature into the methodspec table.
13845         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
13846         is always the uninflated method.
13847         (reflection_methodbuilder_to_mono_method): Copy the generic
13848         parameters from the MethodBuilder into `header->gen_params'.
13849
13850 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13851
13852         * class.c (mono_class_from_generic_parameter): Fix warning.
13853
13854 2004-01-27  Martin Baulig  <martin@ximian.com>
13855
13856         * class.c (mono_class_from_generic_parameter): Don't create
13857         `klass->methods' here.  
13858
13859 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13860
13861         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13862         extension since it does not work with libraries named lib<FOO>.dll.so.
13863
13864 2004-01-25  Martin Baulig  <martin@ximian.com>
13865
13866         * class.c (mono_class_inflate_generic_type): Added support for
13867         MONO_TYPE_GENERICINST.
13868
13869         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13870         inflate methods on open constructed types.      
13871
13872 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13873
13874         * object.c: fire ProcessExit event in the root AppDomain after running
13875         Main. Fixes bug #53299.
13876
13877 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13878
13879         * socket-io.c: include the new socket-wrappers.h header.
13880         Use the wrappers instead of the unix socket functions to make the code
13881         more clear.
13882
13883 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13884
13885         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13886
13887         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13888         Fixes #22532.
13889
13890 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13891
13892         * reflection.c (mono_image_create_pefile): Handle the case when the
13893         entry point is not a MethodBuilder.
13894
13895         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13896         field to ReflectionMethod since it is not allways a builder.
13897
13898         * reflection.c (type_get_fully_qualified_name): New helper function to
13899         return the fully qualified name of a type.
13900
13901         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13902         type name for custom marshallers.
13903
13904         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13905
13906         * class.c (mono_class_setup_vtable): If a parent class already 
13907         implements an interface, use the implementing methods from that class.
13908         Fixes #53148.
13909
13910 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13911
13912         * threadpool.c: just return instead of ExitThread to allow for thread
13913         clean up earlier.
13914
13915 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13916
13917         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13918         when closing resource modules.
13919
13920         * reflection.c (mono_image_create_pefile): Handle the case when the
13921         entry point is not a MethodBuilder.
13922
13923         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13924         field to ReflectionMethod since it is not allways a builder.
13925
13926 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13927
13928         * marshal.c (mono_marshal_get_managed_wrapper): 
13929         mono_marshal_alloc takes native int so CONV_I
13930         the arg for 64bits.
13931
13932 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13933
13934         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13935         tokens in the cattr table. Fixes #53108.
13936
13937 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13938
13939         * loader.c: don't trim ".dll" before looking up in the config file.
13940         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13941
13942 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13943
13944         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13945         Return the module which contains the resource as well.
13946         (ves_icall_System_Reflection_Module_Close): New icall.
13947
13948         * appdomain.c: Bump corlib version number.
13949
13950         * image.c (mono_image_addref): New public function.
13951
13952         * assembly.c: Call mono_image_addref.
13953
13954         * reflection.c (mono_module_get_object): Increase reference count of 
13955         the image.
13956
13957         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13958         Fixes #22532.
13959
13960         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13961         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13962         proper exceptions on DllImport problems.
13963
13964 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13965
13966         * class.c, metadata.c: eliminate CSIZE macro.
13967
13968 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13969
13970         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13971         * object.h: Added async_callback field in MonoAsyncResult.
13972         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13973         * verify.c: Added async_callback in MonoAsyncResult layout.
13974
13975 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13976
13977         * reflection.c (mono_reflection_get_custom_attrs): Add support
13978         for Modules.
13979
13980 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13981
13982         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13983         marshalling.
13984         (mono_marshal_method_from_wrapper): Add null pointer check.
13985
13986 2004-01-16  Martin Baulig  <martin@ximian.com>
13987
13988         * debug-mono-symfile.h: Set version number to 36 and reflect
13989         latest symbol writer changes.
13990
13991 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13992
13993         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13994         multi-dimensional arrays.
13995         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13996         (mono_class_from_mono_type): Use bounded_array_class_get.
13997         
13998         * class.c (mono_bounded_array_class_get): New function which takes
13999         a 'bounded' bool argument to distinguish vectors from one dimensional
14000         arrays.
14001
14002         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
14003         bounded_array_class_get if the array has bounds.
14004
14005         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14006         Search modules loaded using AssemblyBuilder:AddModule as well.
14007
14008 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14009
14010         * appdomain.c: increased corlib version.
14011         * filewatcher.c: removed g_print.
14012         * icall.c:
14013         (get_property_info): only allocate what is actually requested.
14014         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
14015
14016 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14017
14018         * Makefile.am: added filewatcher.[ch]
14019         * filewatcher.[ch]: FileSystemWatcher runtime support.
14020         * icall.c: added new FSW icalls.
14021
14022 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
14023
14024         * string-icalls.c: fix stringbuilder regression as suggested by
14025         Iain McCoy <iain@mccoy.id.au>.
14026
14027 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
14028
14029         * process.c (process_read_stringtable_block): Recognize '007f' as
14030         a language neutral stringtable block.
14031
14032 2004-01-12  Patrik Torstensson
14033
14034         * object.h (MonoStringBuilder) : Changed layout to support our
14035         new stringbuilder class.
14036         * marshal.c: Change marshalling to support the new layout of 
14037         string builder.
14038         * appdomain.c: increased version number because new layout of
14039         string builder.
14040
14041 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
14042
14043         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
14044         assembly name as an string instead of an AssemblyName, since it is
14045         easier to extract info from it.
14046
14047         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
14048         the culture subdirectories too. Fixes #52231.
14049
14050 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14051
14052         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
14053         It takes 2 new parameters with an optional name for the method to look
14054         for and case ignoring info.
14055
14056         * threadpool.c: removed unused variable.
14057
14058 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14059
14060         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
14061         It takes 2 new parameters with an optional name for the property to look
14062         for and case ignoring info.
14063         Fixes bug #52753.
14064
14065 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
14066
14067         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
14068         Fix #52451.
14069
14070 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14071
14072         * appdomain.c:
14073         * assembly.c: escape the uri before passing it to g_filename_from_uri.
14074         Fixes bug #52630.
14075
14076 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
14077
14078         * reflection.c: Add support for more than one unmanaged resource.
14079
14080         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
14081         in field->def_value, as done in all other cases.
14082
14083         * reflection.c (mono_reflection_get_custom_attrs): Add support for
14084         TypeBuilders.
14085
14086         * reflection.c (mono_reflection_create_runtime_class): Remove 
14087         errorneous assignment to klass->element_class, since it is already
14088         done in mono_reflection_setup_internal_class.
14089
14090 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14091
14092         * gc.c: added missing LeaveCriticalSection.
14093         * icall.c: indented a couple of lines.
14094         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
14095         if we call EndInvoke inside a callback. Fixes bug #52601.
14096
14097 2004-01-07  Martin Baulig  <martin@ximian.com>
14098
14099         * mono-debug-debugger.h
14100         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
14101
14102 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
14103
14104         * appdomain.c: Use messages in NotImplementedException.
14105
14106         * exception.c (mono_get_exception_not_implemented): Now this takes
14107         a message argument.
14108
14109         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
14110         exception instead of g_asserting an aborting when something is not
14111         implemented.
14112
14113         Add some inline docs.
14114
14115 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
14116
14117         * reflection.h: Update after changes to object layout.
14118
14119         * reflection.c: Implement saving of unmanaged aka win32 resources.
14120
14121         * appdomain.c: Bump version number.
14122
14123         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
14124         Handle missing domains gracefully.
14125
14126 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
14127
14128         * file-io.c : On Windows, there are much more invalid_path_chars.
14129
14130 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
14131
14132         * class.h, object.c: prepare for GetType () speedup.
14133
14134 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
14135
14136         * profiler.c: workaround for --profile null reference exception on
14137           cygwin. Patch by Patrik Torstensson.
14138
14139 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
14140
14141         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
14142         make work for unaligned access.
14143
14144 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
14145
14146         * class.c: small cleanup (class->fields [i] -> field).
14147         * image.c: check address of metadata is valid.
14148
14149 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
14150
14151         * assembly.h assembly.c (mono_assembly_loaded): New public function to
14152         search the list of loaded assemblies.
14153
14154         * reflection.c (mono_reflection_type_from_name): Use 
14155         mono_assembly_loaded instead of mono_image_loaded.
14156
14157         * reflection.c: Fix warnings.
14158
14159 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
14160
14161         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
14162         is dynamic. This is needed since an assembly can contain both dynamic and
14163         non-dynamic images.
14164
14165         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
14166         assembly->dynamic.
14167
14168         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
14169
14170         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
14171         to store modules loaded using AddModule.
14172
14173         * reflection.c (mono_image_fill_file_table): Generalize this so it works
14174         on Modules.
14175
14176         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
14177
14178         * reflection.c (mono_image_fill_export_table_from_module): New function to
14179         fill out the EXPORTEDTYPES table from a module.
14180
14181         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
14182         into a separate function. Also handle loaded non-dynamic modules.
14183
14184         * reflection.c (mono_image_basic_init): Fix memory allocation.
14185
14186         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14187
14188         * assembly.c (mono_assembly_load_references): Make this public.
14189
14190 2003-12-19  Martin Baulig  <martin@ximian.com>
14191
14192         * class.c (mono_class_initialize_generic): Made this static, take
14193         a `MonoGenericInst *' instead of a `MonoClass *'.
14194         (mono_class_from_generic): Call mono_class_initialize_generic()
14195         unless we're already initialized or being called from
14196         do_mono_metadata_parse_generic_inst().
14197
14198         * class.h (MonoGenericInst): Added `initialized' and
14199         `init_pending' flags.
14200
14201         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
14202         `mono_class_init (gklass)' or mono_class_initialize_generic()
14203         here; set `generic_inst->init_pending' while parsing the
14204         `type_argv'.
14205
14206 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
14207
14208         * locales.c: include string.h for memxxx prototypes
14209
14210 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
14211
14212         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
14213         constructor when accessing literal fields.
14214
14215 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
14216
14217         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14218
14219         * reflection.c (assembly_add_resource_manifest): New function to fill
14220         the MANIFESTRESOURCE table.
14221
14222         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
14223
14224         * reflection.h: Update to changes in class layout.
14225
14226         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
14227         Reenable call to mono_runtime_is_shutting_down ().
14228
14229         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
14230         determine if the runtime is shutting down.
14231
14232 2003-12-16  Jackson Harper <jackson@ximian.com>
14233
14234         * icall.c: comment out call to mono_runtime_is_shutting_down to
14235         fix build.
14236         
14237 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
14238
14239         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
14240         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
14241
14242 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
14243
14244         * reflection.c: move definition of swap_with_size
14245         to before its first call
14246
14247 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
14248
14249         * appdomain.c (mono_runtime_is_shutting_down): New public function.
14250
14251         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
14252         icall.
14253
14254         * object.c: Fix warnings.
14255
14256         * icall.c (ves_icall_Type_Get...): Only consider inherited static
14257         members if FlattenHierarchy is set.
14258
14259         * reflection.c (mono_image_add_decl_security): New function to emit
14260         declarative security.
14261
14262         * reflection.h reflection.c: Add support for declarative security.
14263
14264         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14265         
14266 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
14267
14268         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
14269         
14270         * appdomain.c verify.c: Moved corlib version checking into its own
14271         function in appdomain.c since it needs to create vtables etc.
14272
14273 2003-12-13  Patrik Torstensson <p@rxc.se>
14274
14275         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
14276         instead of unwrapped server.
14277
14278 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
14279
14280         * verify.c (check_corlib): Fix field index.
14281
14282 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
14283
14284         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
14285         GetGacPath icall.
14286
14287 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
14288
14289         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
14290         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
14291         cope with sizeof(size_t) != sizeof(guint32).
14292
14293 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14294
14295         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
14296         in case of failure.
14297
14298 2003-12-10  Mark Crichton <crichton@gimp.org>
14299
14300         * icall.c: removed the GetNonZeroBytes.  We now handle this case
14301         in managed code.
14302
14303         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
14304
14305 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
14306
14307         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
14308         marked as deleted.
14309
14310 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
14311
14312         * verify.c (check_corlib): Handle the case when the version field is 
14313         initialized by a static constructor.
14314
14315 2003-12-08  Patrik Torstensson  <p@rxc.se>
14316
14317     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
14318
14319 2003-12-08  Martin Baulig  <martin@ximian.com>
14320
14321         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
14322         a MonoReflectionGenericParameter, also take the parameter index
14323         and name as arguments.
14324         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
14325         (ves_icall_MonoGenericParam_initialize): New interncall.
14326         (ves_icall_Type_make_byref_type): New interncall.
14327
14328         * reflection.h (MonoReflectionGenericParam): Derive from
14329         MonoReflectionType, not just from MonoObject.  Added `refobj' and
14330         `index' fields.
14331
14332         * reflection.c (mono_reflection_define_generic_parameter): Create
14333         and return a new MonoReflectionGenericParam; don't initialize the
14334         constraints here.
14335         (mono_reflection_initialize_generic_parameter): New public method;
14336         initializes the constraints and creates the `param->pklass'.
14337
14338 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
14339
14340         * reflection.h reflection.c: Use the new fields 'num_types', 
14341         'num_fields' and 'num_methods' to track the number of types etc.
14342
14343         * verify.c (check_corlib): Check corlib version number.
14344
14345 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
14346
14347         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
14348         function works on all methods.
14349
14350 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
14351
14352         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
14353         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
14354         the custom_type_info flag of the transparent proxy.
14355         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
14356         objects that supports IRemotingTypeInfo.
14357         * object.h: Added custom_type_info field in transparent proxy.
14358
14359 2003-12-06  Martin Baulig  <martin@ximian.com>
14360
14361         * class.c (mono_class_create_from_generic): Removed.
14362         (mono_class_from_generic): Check `ginst->klass' before doing
14363         anything else.  This is important to fully support "recursive"
14364         generic types.
14365
14366         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
14367         empty `generic_inst->klass' before doing anything else.
14368
14369 2003-12-06  Dick Porter  <dick@ximian.com>
14370
14371         * verify.c: 
14372         * object.h:
14373         * icall.c:
14374         * locales.c: Use C structs to access class fields.  Don't do a
14375         conversion between MonoString and UChar because both are
14376         platform-endian UTF-16.  Compare now takes startindex and count
14377         parameters.  Add a char overload for IndexOf.  Speed up the
14378         invariant string IndexOf.
14379
14380 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
14381
14382         * Makefile.am (monosn_LDADD): Fix parallel build.
14383
14384 2003-12-04  Martin Baulig  <martin@ximian.com>
14385
14386         * icall.c
14387         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14388         (ves_icall_Type_make_array_type): New interncall.       
14389
14390 2003-12-04  Martin Baulig  <martin@ximian.com>
14391
14392         * locales.c: also change it in the !HAVE_ICU case.
14393
14394 2003-12-04  Dick Porter  <dick@ximian.com>
14395
14396         * icall.c:
14397         * locales.c: construct_compareinfo is now in CompareInfo, not
14398         CultureInfo.
14399
14400 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
14401
14402         * image.c (mono_image_load_file_for_image): Cache loaded images in the
14403         image->files array.
14404
14405         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
14406         table as well.
14407
14408         * assembly.c (mono_assembly_load_references): Only load references
14409         once.
14410
14411         * class.c (mono_class_from_name): Avoid linear search of the 
14412         EXPORTEDTYPE table.
14413
14414         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
14415
14416 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
14417
14418         * image.h (MonoImage): Add 'field_cache' field.
14419
14420         * loader.c (mono_field_from_token): Cache field lookups.
14421         
14422         * reflection.c (mono_module_get_object): Fix name property.
14423
14424         * icall.c (ves_icall_get_enum_info): Update after changes to 
14425         mono_metadata_get_constant_index ().
14426
14427         * icall.c: Get rid of get_type_info icall, use a separate icall for
14428         each type property to avoid needless memory allocations. Fixes #51514.
14429
14430         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
14431         to avoid needless binary searches.
14432
14433         * class.c (class_compute_field_layout): Move the initialization of
14434         field->def_value to mono_class_vtable ().
14435
14436         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
14437         non-corlib types.
14438
14439         * object.c (mono_object_allocate): Make it inline.
14440
14441         * object.c (mono_object_allocate_spec): Make it inline.
14442         
14443 2003-12-02  Dick Porter  <dick@ximian.com>
14444
14445         * locales.c (create_NumberFormat): NumberFormatInfo construction.
14446         Patch by Mohammad DAMT (mdamt@cdl2000.com).
14447
14448 2003-12-01  Dick Porter  <dick@ximian.com>
14449
14450         * threads.c: Fix signature and call in CreateMutex and
14451         CreateEvent.
14452
14453 2003-12-01  Dick Porter  <dick@ximian.com>
14454
14455         * icall.c: 
14456         * locales.c: Implement string compares and searching
14457
14458         * object.h: Add extra Thread field
14459
14460 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
14461
14462         * reflection.c (fixup_method): Add support for MonoCMethod.
14463
14464 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
14465
14466         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
14467
14468         * reflection.c (assembly_name_to_aname): Allow extra characters in
14469         assembly names. Fixes #51468.
14470
14471 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
14472
14473         * exception.c (mono_exception_from_name_domain): New helper function.
14474
14475         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
14476         exception object in the correct domain.
14477
14478         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
14479         formatting + make a copy a the input data.
14480
14481         * loader.c (mono_get_method_from_token): Methods which contain
14482         native code do not have entries in the ImplMap.
14483
14484         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
14485         Thanks to Gonzalo for spotting this.
14486         
14487         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
14488         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
14489
14490         * assembly.h (mono_assembly_load_from): Split the second part of 
14491         assembly loading into a new public function.
14492
14493         * exception.h (mono_get_exception_bad_image_format): New function.
14494
14495 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
14496
14497         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14498         Enumerate all modules inside a dynamic assembly. Fixes #51293.
14499         
14500         * icall.c: Add new icall for creating dynamic methods.
14501
14502         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
14503
14504         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
14505
14506         * reflection.c (mono_reflection_create_dynamic_method): New icall to
14507         create a dynamic method.
14508
14509         * reflection.c (resolve_object): New helper function.
14510
14511         * reflection.c: Generalize ReflectionMethodBuilder and the functions
14512         which manipulate it so they can also work on dynamic methods.
14513
14514         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
14515         creating the MonoReflectionMethodAux structure if it is not needed.
14516         
14517         * reflection.h verify.c: Update after changes to object layout.
14518
14519         * reflection.c (method_builder_encode_signature): Fix compilation on
14520         gcc 2.95.x.
14521
14522 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
14523
14524         * appdomain.h: Added support for context static fields. Added static_data
14525           field to MonoAppContext and renamed thread_static_fields to a more
14526           generic special_static_fields in MonoAppDomain, since it can now contain
14527           context static fields.
14528         * domain.c: Updated hashtable name.
14529         * object.c: Replaced field_is_thread_static() for a more generic
14530           field_is_special_static() which also checks for context static attribute.
14531           In mono_class_vtable(), added support for static context fields.
14532         * threads.c: Changed methods that manage thread static fields to more
14533           generic methods so they can be reused both for thread and context static
14534           data.
14535         * threads.h: Declared some new methods.
14536
14537 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
14538
14539         * reflection.h: Update after changes to the managed types.
14540
14541         * reflection.c (encode_custom_modifiers): New helper function.
14542
14543         * reflection.c (method_encode_signature): Emit custom modifiers.
14544
14545         * reflection.c (field_encode_signature): Emit custom modifiers.
14546
14547 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
14548
14549         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
14550
14551         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
14552         implementation.
14553
14554         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
14555         icall.
14556
14557         * object.c (mono_field_get_value_object): New function.
14558
14559         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
14560         specific.
14561
14562 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
14563
14564         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
14565         return a preallocated out-of-memory exception instance.
14566
14567         * object.c (out_of_memory): Use the new function.
14568
14569         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
14570         flag is before the custom modifiers. Fixes #49802.
14571
14572 2003-11-16  Martin Baulig  <martin@ximian.com>
14573
14574         * class.c (mono_class_is_open_constructed_type): Implemented the
14575         MONO_TYPE_GENERICINST case.
14576
14577 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
14578
14579         * assembly.c (mono_assembly_fill_assembly_name): New function to
14580         fill out the MonoAssemblyName structure.
14581         (mono_assembly_open): Use the new function.
14582
14583         * icall.c (fill_reflection_assembly_name): New helper function.
14584
14585         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
14586         new function.
14587
14588         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
14589
14590 2003-11-15  Martin Baulig  <martin@ximian.com>
14591
14592         * class.c (mono_class_is_open_constructed_type): New public
14593         function; checks whether a type is an open constructed type,
14594         ie. whether it still contains type parameters.
14595         (mono_class_inflate_generic_type): If we're a type parameter and
14596         the inflated type is also a MONO_TYPE_(M)VAR, return the original
14597         type.
14598
14599         * class.h (MonoGenericInst): Added `guint32 is_open'.
14600
14601         * loader.c (method_from_methodspec): Check whether we're an open
14602         or closed constructed type and set `ginst->is_open'.
14603
14604         * reflection.c (mono_reflection_bind_generic_parameters): Check
14605         whether we're an open or closed constructed type and set
14606         `ginst->is_open'.
14607         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
14608         from open constructed types.
14609
14610 2003-11-15  Martin Baulig  <martin@ximian.com>
14611
14612         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14613         a generic instance (instead of a generic type declaration) with
14614         unbound generic parameters, bind them to our actual types.
14615
14616 2003-11-14  Martin Baulig  <martin@ximian.com>
14617
14618         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
14619
14620         * reflection.c (mono_reflection_bind_generic_parameters): If we're
14621         an interface type, populate `res->interfaces' with instantiated
14622         versions of all the interfaces we inherit.
14623
14624 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
14625
14626         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
14627         when MONO_PATH is set but doesn't contain the install dir.
14628
14629 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14630
14631         * icall.c:
14632         (ves_icall_Type_GetInterfaces): don't return an interface twice when
14633         it's also implemented in base classes. Fixes bug #50927.
14634
14635 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
14636
14637         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
14638         if this method is called from a finalizer. Fixes #50913.
14639
14640 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
14641
14642         * threads.c: Implement VolatileRead/VolatileWrite
14643
14644         * icall.c: Add new icalls for VolatileRead/VolatileWrite
14645
14646 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14647
14648         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
14649         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
14650         2.95.3.
14651
14652         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
14653         from Peter Ross (pro@missioncriticalit.com).
14654         
14655 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
14656
14657         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
14658
14659 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14660
14661         * assembly.c (mono_assembly_load_references): Disable check because it
14662         triggers on older corlibs which lots of people have.
14663
14664 2003-11-12  Jackson Harper  <jackson@ximian.com>
14665
14666         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
14667         load corlib.dll if mscorlib.dll is not found.
14668         * assembly.h: Remove corlib name define.
14669         * class.c:
14670         * domain.c:
14671         * image.c: Change corlib name to mscorlib.
14672         
14673 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
14674
14675         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
14676
14677 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
14678
14679         * appdomain.h: Added loader_optimization here to sync with the C#
14680         code, and add disallow_binding_redirects field.
14681
14682 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14683
14684         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
14685
14686         * reflection.c (mono_image_build_metadata): Fix crash on modules
14687         with no types.
14688
14689         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14690
14691         * icall.c (ves_icall_get_method_info): Return callingConvention as
14692         well.
14693
14694         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14695         namespaces from the EXPORTEDTYPE table as well.
14696
14697         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14698         from all modules inside the assembly.
14699         
14700 2003-11-11  Martin Baulig  <martin@ximian.com>
14701
14702         * reflection.c (mono_reflection_bind_generic_parameters): Make
14703         this work for interfaces.
14704
14705 2003-11-11  Martin Baulig  <martin@ximian.com>
14706
14707         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14708
14709 2003-11-11  Martin Baulig  <martin@ximian.com>
14710
14711         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14712         "MonoInflatedMethod" and "MonoInflatedCtor".
14713
14714 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14715
14716         * reflection.c (resolution_scope_from_image): Use the assembly table
14717         from the manifest module, since other modules don't have it.
14718
14719         * debug-helpers.c (mono_type_full_name): New helper function.
14720
14721         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
14722
14723         * image.c (mono_image_load_file_for_image): New public function which
14724         is a replacement for the load_file_for_image in class.c.
14725
14726         * assembly.c (mono_assembly_load_module): A wrapper for the function
14727         above which does assembly association and reference loading too.
14728
14729         * class.c (mono_class_from_name): Call mono_assembly_load_module.
14730
14731 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14732
14733         * appdomain.c: not all of the attributes for the full assembly name
14734         are required and the order doesn't matter. Fixes bug #50787.
14735
14736 2003-11-10  Dick Porter  <dick@ximian.com>
14737
14738         * locales.c: Use platform-endian UTF16
14739
14740 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14741
14742         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14743         
14744 2003-11-10  Martin Baulig  <martin@ximian.com>
14745
14746         * metadata.c
14747         (mono_metadata_load_generic_params): Make this actually work.
14748
14749         * reflection.c (mono_reflection_bind_generic_parameters): If our
14750         parent is a generic instance, pass all the `types' to it, no
14751         matter whether it has the same number of type parameters or not.
14752
14753 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14754
14755         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14756
14757         * assembly.c (mono_assembly_load_references): Move the image<->assembly
14758         assignment code to this function so it gets called recursively for all
14759         modules.
14760
14761         * image.c (load_modules): Remove the assembly assignment since it is
14762         now done by mono_assembly_load_references.
14763         
14764         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14765         Add 'module' argument.
14766         (mono_module_get_types): New helper function.
14767         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
14768
14769 2003-11-08  Martin Baulig  <martin@ximian.com>
14770
14771         * class.c (mono_class_inflate_generic_method): Interface method
14772         don't have a header.
14773
14774         * reflection.c (mono_image_get_methodspec_token): Take an
14775         additional `MonoGenericInst *' argument instead of reading it from
14776         the header; this is necessary to support interfaces.
14777         (mono_image_create_token): Pass the `MonoGenericInst *' from the
14778         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
14779         (inflated_method_get_object): Take an additional `MonoGenericInst *'
14780         argument.
14781
14782         * reflection.h (MonoReflectionInflatedMethod): Added
14783         `MonoGenericInst *ginst'.
14784
14785 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
14786
14787         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
14788
14789 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
14790
14791         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
14792
14793 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
14794
14795         * reflection.c 
14796         (reflection_methodbuilder_from_method_builder):
14797         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
14798         initialize a ReflectionMethodBuilder structure.
14799         (mono_image_get_methodbuilder_token):
14800         (mono_image_get_ctorbuilder_token): New functions to emit memberref
14801         tokens which point to types in another module inside the same assembly.
14802
14803         * reflection.c: Use the new helper functions.
14804         
14805         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
14806
14807         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
14808         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
14809
14810         * reflection.c (resolution_scope_from_image): Emit a moduleref if
14811         neccesary.
14812
14813         * reflection.c (mono_image_build_metadata): Emit metadata only for the
14814         current module. Emit the manifest only for the main module.
14815
14816         * reflection.c (mono_image_create_token): Add assertion when a 
14817         memberref needs to be created.
14818
14819         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
14820
14821         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
14822         larger buffer for the custom attribute blob. Fixes #50637.
14823         
14824 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14825
14826         * threadpool.c: notify listener on async processing handles after
14827         invoking the async callback. Thanks to Zoltan.
14828
14829 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14830
14831         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
14832         avoid code duplication.
14833
14834         * reflection.h (MonoDynamicImage): New type which is currently unused,
14835         but will be used through the ref.emit code in place of 
14836         MonoDynamicAssembly.
14837
14838         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14839         object layout.
14840
14841         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
14842         a MonoDynamicImage instead of just a MonoImage.
14843         
14844         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
14845         icalls to ModuleBuilder but keep their semantics, so they will work
14846         with moduleb->assemblyb. This will change later.
14847         
14848 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14849
14850         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14851         object layout.
14852
14853         * reflection.c (mono_image_build_metadata): Avoid creation of a default
14854         main module, since it is now done by the managed code.
14855
14856 2003-11-03  Martin Baulig  <martin@ximian.com>
14857
14858         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14859         `ginst->klass' here.
14860         (method_encode_methodspec): Don't use the `ginst->generic_method's
14861         klass if it's a generic instance, use `ginst->klass' in this case.
14862
14863 2003-11-03  Martin Baulig  <martin@ximian.com>
14864
14865         * reflection.c (mono_image_get_generic_method_param_info):
14866         Removed, use mono_image_get_generic_param_info() instead.
14867         (mono_image_get_type_info): Write the GenericParam table before
14868         the Method table.  This is neccessary because in the GenericParam
14869         table, type parameters of the class (ie. '!0' etc.) must come
14870         before the ones from its generic methods (ie. '!!0' etc).
14871
14872 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14873
14874         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14875
14876 2003-11-02  Martin Baulig  <martin@ximian.com>
14877
14878         * reflection.c (create_generic_typespec): Take a
14879         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14880         the generic parameters from it.
14881
14882 2003-11-02  Martin Baulig  <martin@ximian.com>
14883
14884         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14885         instead of a `MonoClassField *' since we just need the type.
14886         (create_generic_typespec): New static function.  Creates a
14887         TypeSpec token for a generic type declaration.
14888         (mono_image_get_generic_field_token): New static function.
14889         (mono_image_create_token): If we're a FieldBuilder in a generic
14890         type declaration, call mono_image_get_generic_field_token() to get
14891         the token.
14892
14893 2003-11-02  Martin Baulig  <martin@ximian.com>
14894
14895         * reflection.h
14896         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14897         `MonoReflectionGenericInst *declaring_type' and
14898         `MonoReflectionGenericInst *reflected_type' fields.
14899
14900         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14901         `MonoReflectionGenericInst *declaring_type' and a
14902         `MonoReflectionGenericInst *reflected_type' argument instead of a
14903         single `MonoReflectionGenericInst *type' one.  Set
14904         `res->declaring_type' and `res->reflected_type' from them.
14905         (mono_reflection_inflate_field): Likewise.      
14906
14907 2003-11-02  Martin Baulig  <martin@ximian.com>
14908
14909         * class.c (mono_class_setup_vtable): Don't store generic methods
14910         in the vtable.  
14911
14912 2003-11-02  Martin Baulig  <martin@ximian.com>
14913
14914         * reflection.h (MonoReflectionGenericInst): Added
14915         `MonoReflectionType *declaring_type'.
14916
14917         * reflection.c (mono_reflection_bind_generic_parameters): Use
14918         `if (tb->parent)' instead of `klass->parent'.
14919
14920 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14921
14922         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14923         with an empty ASSEMBLY table.
14924
14925         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14926         variable in the inner and outer loops.
14927
14928 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14929
14930         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14931         argument.
14932
14933         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14934         
14935         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14936         icalls. Instead, do everything in managed code. This is needed since
14937         it is hard to restore the original domain etc. in unmanaged code in the
14938         presence of undeniable exceptions.
14939
14940         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14941         New icalls to push and pop appdomain refs.
14942
14943 2003-10-31  Martin Baulig  <martin@ximian.com>
14944
14945         * class.c (inflate_generic_type): Renamed to
14946         mono_class_inflate_generic_type() and made it public.
14947
14948         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14949         New interncall.
14950
14951         * loader.c (mono_field_from_memberref): Also set the retklass for
14952         typespecs.
14953
14954         * fielder.c (mono_image_get_inflated_field_token): New static
14955         method; creates a metadata token for an inflated field.
14956         (mono_image_create_token, fixup_method): Added support for
14957         "MonoInflatedField".
14958         (fieldbuilder_to_mono_class_field): New static function.
14959         (mono_reflection_inflate_field): New public function.
14960
14961         * reflection.h
14962         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14963         (MonoReflectionInflatedField): New typedef.     
14964
14965 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14966
14967         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14968         for Solaris and other platforms without s6_addr16
14969
14970 2003-10-30  Martin Baulig  <martin@ximian.com>
14971
14972         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14973         argument instead of two.
14974         (mono_class_inflate_generic_signature): Likewise.
14975         (inflate_generic_header): Likewise.
14976         (mono_class_inflate_generic_method): Likewise.  In addition, if
14977         `ginst->klass' is set, it becomes the new `method->klass'.
14978
14979         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14980         field.
14981
14982         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14983         first byte. [FIXME]
14984         (method_encode_methodspec): If we have generic parameters, create
14985         a MethodSpec instead of a MethodRef.
14986         (fixup_method): Added support for "MonoInflatedMethod" and
14987         "MonoInflatedCtor".
14988         (mono_image_create_token): Added support for "MonoInflatedMethod"
14989         and "MonoInflatedCtor".
14990         (inflated_method_get_object): New static function; returns a
14991         managed "System.Reflection.MonoInflatedMethod" object.
14992         (mono_reflection_bind_generic_method_parameters): Return a
14993         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14994         (mono_reflection_inflate_method_or_ctor): Likewise.
14995         (mono_image_get_generic_method_param_info): Initialize unused
14996         fields to zero.
14997         (mono_image_get_generic_param_info): Likewise.
14998
14999         * reflection.h (MonoReflectionInflatedMethod): New public
15000         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
15001         "S.R.MonoInflatedCtor" classes.
15002
15003         * loader.c (method_from_memberref): If we're a TypeSpec and it
15004         resolves to a generic instance, inflate the method.
15005
15006 2003-10-28  Dick Porter  <dick@ximian.com>
15007
15008         * object.c (mono_runtime_run_main): Convert command-line arguments
15009         into utf8, falling back to the user's locale encoding to do so.
15010
15011 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
15012
15013         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
15014         at this time.
15015
15016         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
15017
15018         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
15019         up icalls at method definition time. Partially fixes #33569.
15020
15021 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
15022
15023         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
15024         marshalling of arrays. Fixes #50116.
15025
15026         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
15027
15028         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
15029         points to a vtable in the dying appdomain.
15030
15031         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
15032         listeners into unmanaged code inside the lock.
15033
15034         * object.c (mono_class_vtable): Turn off typed allocation in non-root
15035         domains and add some comments.
15036
15037 2003-10-25  Martin Baulig  <martin@ximian.com>
15038
15039         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
15040
15041         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
15042
15043         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
15044         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
15045         currently parsing.  Create the generic class and store it in
15046         `generic_inst->klass' before parsing the type arguments.  This is
15047         required to support "recursive" definitions; see mcs/tests/gen-23.cs
15048         for an example.
15049         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
15050         to support recursive typespec entries.
15051
15052         * class.c (mono_class_setup_parent): If our parent is a generic
15053         instance, we may get called before it has its name set.
15054         (mono_class_from_generic): Splitted into
15055         mono_class_create_from_generic() and mono_class_initialize_generic().
15056
15057 2003-10-25  Martin Baulig  <martin@ximian.com>
15058
15059         * icall.c (ves_icall_Type_BindGenericParameters): Return a
15060         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
15061         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
15062         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
15063
15064         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
15065         (create_typespec): Likewise.
15066         (mono_reflection_bind_generic_parameters): Return a
15067         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
15068         (mono_reflection_inflate_method_or_ctor): New public function.
15069
15070         * reflection.h (MonoReflectionGenericInst): New typedef.        
15071
15072 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
15073
15074         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
15075         inside the domain lock. Fixes #49993.
15076         
15077         * object.c (mono_class_vtable): When typed allocation is used, 
15078         allocate vtables in the GC heap instead of in the mempool, since the
15079         vtables contain GC descriptors which are used by the collector even
15080         after the domain owning the mempool is unloaded.
15081
15082         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
15083
15084         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
15085         reflect what it does. Also invalidate mempools instead of freeing
15086         them if a define is set.
15087
15088         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
15089         of the appdomain.
15090         
15091         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
15092         hold the finalizable objects in this domain.
15093
15094         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
15095         appdomain.
15096
15097         * appdomain.c (mono_domain_set): New function to set the current
15098         appdomain, but only if it is not being unloaded.
15099
15100         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
15101         appdomain which is being unloaded.
15102         
15103         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
15104         unloading of the root appdomain.
15105
15106         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
15107         icall to execute a method in another appdomain. Intended as a 
15108         replacement for InternalSetDomain, which can confuse the code 
15109         generation in the JIT.
15110
15111         * appdomain.c (mono_domain_is_unloading): New function to determine
15112         whenever an appdomain is unloading.
15113
15114         * appdomain.c (mono_domain_unload): New function to correctly unload
15115         an appdomain.
15116
15117         * assembly.c (mono_assembly_load_references): Check that an assembly
15118         does not references itself.
15119
15120         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
15121         domain manually, it asks the finalizer thread to do it, then waits for
15122         the result. Also added a timeout.
15123
15124         * icall.c: Register the new icalls.
15125
15126         * threads.h threads.c: Export the mono_gc_stop_world and 
15127         mono_gc_start_world functions.
15128         
15129         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
15130         function to fill out the mempool with 0x2a.
15131
15132 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
15133
15134         * reflection.h (MonoReflectionMethodAux): New structure to store
15135         information which is rarely used, thus is not in the MonoMethod
15136         structure.
15137
15138         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
15139         store the aux info.
15140
15141         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
15142         and marshalling info into the aux structure.
15143
15144         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
15145         from the aux structure.
15146
15147         * loader.c (mono_method_get_param_names): Retrieve the param names from
15148         the aux structure.
15149         
15150 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
15151
15152         * exception.h exception.c: Add AppDomainUnloadedException && fix 
15153         warning.
15154
15155 2003-10-21  Dick Porter  <dick@ximian.com>
15156
15157         * socket-io.c
15158         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
15159         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
15160
15161 2003-10-21  Martin Baulig  <martin@ximian.com>
15162
15163         * reflection.c (mono_reflection_bind_generic_parameters):
15164         `klass->parent' is NULL for interfaces.
15165
15166 2003-10-21  Martin Baulig  <martin@ximian.com>
15167
15168         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15169
15170 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
15171
15172         * exception.c (mono_exception_from_name_msg): New helper function for
15173         creating exceptions and initializing their message field.
15174
15175         * exception.c: Simplify functions using the new helper.
15176
15177         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
15178         New function.
15179
15180         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
15181         mono_raise_exception, since otherwise gcc doesn't generate the function
15182         epilog for raise_exception, confusing the stack unwinding in the JIT.
15183         Fixes #45043.
15184
15185         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
15186         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
15187         Fixes #49499.
15188
15189 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15190
15191         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
15192         utf8.
15193
15194 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
15195
15196         * icall.c: Removed GetUninitializedObject method because
15197           AllocateUninitializedClassInstance does the same.
15198
15199 2003-10-18  Martin Baulig  <martin@ximian.com>
15200
15201         * class.c (inflate_generic_signature): Renamed to
15202         mono_class_inflate_generic_signature() and made it public.
15203         (my_mono_class_from_generic_parameter): New static function; if we
15204         don't already have the generic parameter's MonoClass, create a
15205         very simple one which is just used internally in the runtime and
15206         not passed back to managed code.
15207
15208         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
15209
15210         * metadata.h (MonoMethodSignature): Moved the
15211         `MonoGenericParam *gen_params' to the MonoMethodHeader.
15212         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
15213
15214         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
15215         ves_icall_MonoMethod_GetGenericArguments(); this is now an
15216         interncall on the MonoMethod class, not on MethodInfo.
15217         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
15218         calling mono_reflection_bind_generic_method_parameters() directly.
15219
15220         * loader.c (mono_method_get_signature): If this is a MethodSpec;
15221         return the already computed `method->signature'.
15222         (method_from_methodspec): New static function to load a method
15223         from a MethodSpec entry.
15224         (mono_get_method_from_token): Call the new method_from_methodspec()
15225         for MethodSpec tokens.  
15226         (mono_get_method_from_token): If we're a generic method, load the
15227         type parameters.
15228
15229         * reflection.c (mono_image_get_memberref_token): Allow
15230         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
15231         table.
15232         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
15233         (mono_image_create_token): First check whether it's a generic
15234         method (so we'd need to create a MethodSpec), then do the other
15235         two alternatives.
15236         (mono_reflection_bind_generic_method_parameters): Return a
15237         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
15238         called directly from the interncall.
15239
15240 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
15241
15242         * reflection.c (load_public_key): Move loading of the public key
15243         into managed code.
15244
15245         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
15246
15247         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
15248         fields.
15249
15250         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
15251         culture, hash_alg and public_key. Fixes #49555.
15252
15253 2003-10-17  Martin Baulig  <martin@ximian.com>
15254
15255         * class.h (MonoGenericInst): Moved this declaration here and added
15256         `MonoMethod *generic_method'.
15257
15258         * icall.c
15259         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
15260         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
15261
15262         * metadata.c (mono_metadata_type_equal): Two types of
15263         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
15264         index; ie. don't compare the address of the `MonoGenericParam'
15265         structure.
15266         (mono_metadata_load_generic_params): Removed the `MonoMethod
15267         *method' argument.
15268
15269         * metadata.h (MonoGenericInst): Moved declaration to class.h.
15270         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
15271
15272         * reflection.c (method_encode_signature): Encode the number of
15273         generic parameters.
15274         (encode_generic_method_sig): New static function.
15275         (method_encode_methodspec): New static function; creates an entry
15276         in the MethodSpec table for a generic method.
15277         (mono_image_get_methodspec_token): New static function.
15278         (mono_image_create_token): Call mono_image_get_methodspec_token()
15279         for generic methods.
15280         (mono_reflection_bind_generic_method_parameters): New public
15281         function.  Instantiates a generic method.
15282
15283 2003-10-16  Martin Baulig  <martin@ximian.com>
15284
15285         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
15286         *gen_params' here from MonoMethodHeader.
15287
15288         * metadata.c (mono_metadata_parse_method_signature): If we have
15289         generic parameters, initialize `method->gen_params' and then set
15290         the correct `type->data.generic_param' in all the parameters.
15291
15292 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
15293
15294         * threads.c (mono_threads_get_default_stacksize): New function to 
15295         return the default stacksize.
15296
15297         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
15298         termination of the finalizer thread, since the previous method had
15299         race conditions. Fixes #49628.
15300
15301         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
15302         as for the other managed threads.
15303
15304 2003-10-16  Martin Baulig  <martin@ximian.com>
15305
15306         * class.c (inflate_generic_signature): Copy `generic_param_count'
15307         and `gen_params'.
15308
15309         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
15310         New interncall.
15311
15312         * metadata.c (mono_metadata_parse_method_signature): Actually set
15313         the `method->generic_param_count' here.
15314         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
15315
15316 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
15317
15318         * object.h: Add a new field to TypedRef to simplify the implementation
15319         of the REFANY opcodes in the JIT.
15320
15321         * icall.c: Make use of the new field.
15322
15323         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
15324         dynamically.
15325
15326 2003-10-15  Martin Baulig  <martin@ximian.com>
15327
15328         * class.c (mono_class_from_gen_param): Renamed to
15329         mono_class_from_generic_parameter() and moved most of the
15330         functionality from mono_reflection_define_generic_parameter()
15331         here; ie. we create a "real" class here.
15332         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
15333         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
15334         previously been called.
15335
15336         * class.h (MonoGenericParam): Moved the declaration of this struct
15337         here from metadata.h and added `MonoMethod *method'.
15338
15339         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
15340         interncall.
15341
15342         * loader.c (mono_get_method_from_token): If we have any generic
15343         parameters, call mono_metadata_load_generic_params() to read them
15344         from the MONO_TABLE_GENERICPAR.
15345
15346         * metadata.c (mono_metadata_load_generic_params): Added
15347         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
15348
15349         * metadata.h (MonoMethodSignature): Replaced
15350         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
15351         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
15352
15353         * reflection.c (mono_reflection_define_generic_parameter): Moved
15354         most of the functionality into the new
15355         mono_class_from_generic_parameter(); set the `method' field if
15356         we're a method parameter.       
15357
15358 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
15359
15360         * marshal.c (emit_struct_conv): if native size is 0
15361         emit no code.
15362
15363 2003-10-14  Martin Baulig  <martin@ximian.com>
15364
15365         * icall.c: The generics API has changed in the spec since it was
15366         added to System.Type; these modifications make it match the spec
15367         again.
15368         (ves_icall_Type_GetGenericParameters): Renamed to
15369         `ves_icall_Type_GetGenericArguments'.
15370         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
15371         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
15372         `ves_icall_MonoType_get_HasGenericArguments'.
15373         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
15374         `ves_icall_MonoType_get_IsGenericParameter'.
15375         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
15376         this is no interncall anymore.
15377         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
15378         `ves_icall_TypeBuilder_get_IsGenericParameter'.
15379
15380 2003-10-14  Martin Baulig  <martin@ximian.com>
15381
15382         * reflection.c (mono_reflection_bind_generic_parameters): Also
15383         inflate generic methods if we're reading the class from IL.
15384
15385 2003-10-13  Martin Baulig  <martin@ximian.com>
15386
15387         * reflection.c (mono_reflection_define_generic_parameter): This
15388         method isn't called directly from the icall anymore; take a
15389         `MonoReflectionAssemblyBuilder *' so we can use this for type and
15390         method generic parameters.
15391         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
15392         (method_builder_encode_signature): Encode generic parameters.
15393         (mono_image_get_method_info): Write generic params to the
15394         MONO_TABLE_GENERICPARAM table.
15395
15396         * reflection.h (MonoReflectionMethodBuilder): Added
15397         `MonoArray *generic_params'.
15398
15399         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
15400
15401         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
15402         wrapper for mono_reflection_define_generic_parameter().
15403         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
15404
15405 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
15406
15407         * marshal.h: Add missing function to fix build.
15408
15409         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
15410         the SetLastError pinvoke attribute.
15411
15412         * marshal.c (mono_marshal_set_last_error): New helper function called
15413         by the generated code.
15414         
15415         * marshal.c (mono_mb_emit_branch): New helper function.
15416
15417         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
15418
15419         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15420         classes as parameters and return values of delegates. Fixes #29256. 
15421
15422 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
15423
15424         * locales.c: use gint32 in non HAVE_ICU case
15425
15426 2003-10-11  Martin Baulig  <martin@ximian.com>
15427
15428         * mono-debug.c (mono_debug_add_method): Added a workaround for
15429         bug #48591.
15430
15431 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
15432
15433         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
15434         delegates passed to native code must use the STDCALL calling 
15435         convention. Fixes #35987.
15436
15437 2003-10-10  Martin Baulig  <martin@ximian.com>
15438
15439         * class.c (inflate_generic_type): If we're inflating for a generic
15440         type instance (and not for a generic method), return
15441         MONO_TYPE_MVAR unchanged.
15442
15443 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15444
15445         * string-icalls.c: Join ignores null strings in the source array.
15446         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
15447         * threads.c: GetAvailableTheads is slightly more accurate.
15448
15449 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
15450
15451         * threads.h threads.c : add mono_threads_set_default_stacksize
15452         and pass default to CreateThread calls.
15453
15454 2003-10-09  Dick Porter  <dick@ximian.com>
15455
15456         * icall.c:
15457         * locales.h:
15458         * locales.c: Internal calls for constructing CultureInfo and
15459         related objects from libicu (if its available.)
15460
15461 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
15462
15463         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
15464
15465 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15466
15467         * threadpool.c: added an argument to async_invoke_thread that is the
15468         item to process, pass the MonoAsyncResult to the thread start function
15469         when creating a new thread. This way we don't need to acquire any lock
15470         when we're creating a new thread. Readded a semaphore for faster
15471         response times (instead of that Sleep i added).
15472
15473 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
15474
15475         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
15476         get daylight change dates better on Windows, fix handling
15477         of platforms without tm_gmtoff.
15478
15479 2003-10-06  Martin Baulig  <martin@ximian.com>
15480
15481         * class.c (inflate_generic_method): Renamed to
15482         mono_class_inflate_generic_method() and made public.
15483         (mono_class_init): Don't inflate the generic methods here.
15484         (mono_class_from_generic): Added `gboolean inflate_methods'
15485         argument.  Inflate the methods here.
15486
15487         * loader.c (mono_method_get_param_names): Ignore instances of
15488         generic types for the moment.
15489
15490         * reflection.c (fixup_method): Added support for inflated methods.
15491         (mono_image_create_token): Use mono_image_get_methodref_token()
15492         for inflated methods.
15493         (mono_custom_attrs_from_param): Ignore instances of generic types
15494         for the moment.
15495         (mono_reflection_bind_generic_parameters): New public function.
15496         Moved all the functionality from
15497         ves_icall_Type_BindGenericParameters() here and added support for
15498         dynamic types.
15499         (mono_reflection_define_generic_parameter): Initialize
15500         `klass->methods' here.
15501
15502         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
15503         functionality into mono_reflection_define_generic_parameter().
15504         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
15505         TypeBuilder, return that TypeBuilder.
15506
15507 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15508
15509         * appdomain.c: removed mono_delegate_semaphore.
15510
15511         * threadpool.c:
15512         (mono_thread_pool_add): moved hash table creation inside and the thread 
15513         creation outside of the critical region.
15514         (mono_thread_pool_finish): removed obsolete code.
15515         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
15516         continue or exit the thread depending on the queue.
15517
15518 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
15519
15520         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
15521         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
15522         handle more bool marshalling options
15523
15524 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
15525
15526         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
15527         arrays of structs. Also add a more descriptive error message when
15528         a structure member is marshalled as LPArray.
15529
15530 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
15531
15532         * marshal.c (mono_marshal_get_native_wrapper): Add support for
15533         marshalling arrays of complex types. Fixes #29098. Also remove an
15534         usused and incomplete function.
15535
15536 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15537
15538         * gc.c: report heap_size - free_bytes as total memory allocated
15539         (bug#49362).
15540
15541 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
15542
15543         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
15544         fix timezone handling problems on Windows.
15545         
15546         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
15547         asserts when the year is outside the range handled by ms the functions.
15548
15549         * class.c (setup_interface_offsets): If the class is an interface,
15550         fill out its interface_offsets slot.
15551
15552 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15553
15554         * threadpool.c: mark threadpool threads as background.
15555
15556 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
15557
15558         * decimal.c - define DECINLINE to nothing if not using GCC
15559
15560 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
15561
15562         * assembly.c: More refcount fixes.
15563
15564 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15565
15566         * string-icalls.c: if we're not trimming, return the same string.
15567         When not splitting, don't create a new string.
15568
15569 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15570
15571         * image.c:
15572         (mono_image_open): increment the ref_count inside the critical section.
15573
15574 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
15575
15576         * image.c (mono_image_open): Fix reference counting bug.
15577
15578 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
15579
15580         * marshal.c (mono_marshal_type_size) struct alignment changed for 
15581         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
15582         64bits. Avoid leak in mono_marshal_get_native_wrapper when
15583         mono_lookup_pinvoke_call throws.        
15584
15585 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
15586
15587         * reflection.c (mono_reflection_parse_type): Fix #49114.
15588
15589         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
15590         temporary workaround for cygwin header problem.
15591
15592         * object.c (mono_object_isinst): Synchronize this with the code
15593         generated by the JIT for casts.
15594
15595 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
15596
15597         * reflection.c (encode_type): Fix #38332.
15598
15599 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
15600
15601         * marshal.c (mono_marshal_method_from_wrapper): New function to return
15602         the original method from the wrapper method.
15603
15604 2003-09-25  Martin Baulig  <martin@ximian.com>
15605
15606         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
15607         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
15608         (ves_icall_Type_get_IsGenericInstance): New interncall.
15609
15610 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
15611
15612         * object.c: fix cast warning in big endian code.
15613
15614 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
15615
15616         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
15617         
15618 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15619
15620         * assembly.c: don't call check_env from mono_assembly_load. It's
15621         already done once in mono_assemblies_init and may cause headaches when
15622         multiple threads are loading assemblies.
15623
15624 2003-09-19  Martin Baulig  <martin@ximian.com>
15625
15626         * reflection.c (mono_reflection_define_generic_parameter): Don't
15627         allocate `klass->methods', set `klass->flags' to
15628         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
15629
15630 2003-09-18  Martin Baulig  <martin@ximian.com>
15631
15632         * class.c (mono_class_init): Don't create `class->methods' if it's
15633         already initialized.
15634
15635         * metadata.c (mono_metadata_load_generic_params): Make this
15636         actually work.
15637
15638         * reflection.c (mono_reflection_define_generic_parameter): Set
15639         parent class and interfaces from the constraints.
15640
15641         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
15642         to keep this struct in sync with the declaration in TypeBuilder.cs.
15643
15644 2003-09-17  Martin Baulig  <martin@ximian.com>
15645
15646         * metadata.h (MonoType): Replaced the data's `int type_param'
15647         field with `MonoGenericParam *generic_param'.
15648         (MonoGenericParam): Added `MonoClass *klass'.
15649
15650         * class.c (mono_class_from_gen_param): Removed the
15651         `MonoImage *image' and `int type_num' arguments.
15652
15653         * metadata.c (mono_metadata_parse_generic_param): New static
15654         method; creates a MonoGenericParam which just contains the index.
15655         (do_mono_metadata_parse_type): Call
15656         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
15657         MONO_TYPE_MVAR.
15658
15659         * reflection.c (mono_image_typedef_or_ref): Generic type
15660         parameters may be in the same assembly, but never use a typedef
15661         for them.
15662         (mono_reflection_define_generic_parameter): We're now creating a
15663         "real" class for the type parameter; it's now safe to call
15664         mono_class_from_mono_type() on the class'es type, it'll do the
15665         right thing.
15666
15667 2003-09-16  Martin Baulig  <martin@ximian.com>
15668
15669         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
15670         `symfile->range_entry_size' and `symfile->class_entry_size' here;
15671         the `symfile' data structure must be fully initialized before it
15672         gets added to the table.
15673
15674 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
15675
15676         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
15677
15678         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
15679         class init trampolines.
15680
15681 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
15682
15683         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
15684         to the built-in profiler to turn off time and allocation profiling
15685         respectively.
15686
15687 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15688
15689         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15690         g_direct_equal.
15691
15692         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15693         in human readable form.
15694
15695 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15696
15697         * reflection.c icall.c: Fixed warnings.
15698
15699         * image.c (load_class_names): Use a temporary hash table to hold the
15700         namespaces in order to avoid doing many string comparisons.
15701
15702         * image.h: Fix typo.
15703
15704         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15705         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15706         since the NULL case is short-circuited inside g_hash_table_lookup, 
15707         leading to better performance.  
15708
15709         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15710         obtain the first custom attribute for a given index. Depends on the
15711         CustomAttribute table being sorted by the parent field.
15712
15713         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15714         for better performance.
15715
15716 2003-09-07  Martin Baulig  <martin@ximian.com>
15717
15718         * class.c (mono_class_init): If we're a generic instance, inflate
15719         all our methods instead of loading them from the image.
15720         (mono_class_from_generic): Set `class->methods = gklass->methods'.
15721
15722 2003-09-07  Martin Baulig  <martin@ximian.com>
15723
15724         * mono-debug-debugger.c: Added support for constructors.
15725
15726 2003-09-06  Martin Baulig  <martin@ximian.com>
15727
15728         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
15729         New interncall.
15730
15731         * reflection.c (mono_reflection_setup_generic_class): Call
15732         ensure_runtime_vtable() to create the vtable.
15733
15734 2003-09-05  Martin Baulig  <martin@ximian.com>
15735
15736         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
15737         MONO_TYPE_MVAR.
15738
15739 2003-09-04  Martin Baulig  <martin@ximian.com>
15740
15741         * reflection.c (mono_reflection_define_generic_parameter): Generic
15742         parameters start with zero.
15743
15744 2003-09-04  Martin Baulig  <martin@ximian.com>
15745
15746         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15747
15748         * reflection.h (MonoReflectionGenericParam): New typedef.
15749         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
15750         the generic parameters from the managed TypeBuilder.
15751
15752         * reflection.c (mono_reflection_define_generic_parameter): New function.
15753         (mono_reflection_create_runtime_class): Encode generic parameters.
15754         (mono_reflection_setup_generic_class): New function; this is
15755         called after adding adding all generic params to the TypeBuilder.
15756         (encode_type): Added MONO_TYPE_VAR.
15757
15758 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
15759
15760         * class.h class.c (mono_class_needs_cctor_run): Moved this method
15761         here from the JIT.
15762
15763         * assembly.h assembly.c: Moved the AOT loading code into an assembly
15764         load hook.
15765
15766 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
15767
15768         * reflection.h reflection.c class.h class.c: Delete duplicate 
15769         definition of mono_type_get_name () from reflection.c and export the
15770         one in class.c.
15771
15772         * class.c: Class loading fixes from Bernie Solomon 
15773         (bernard@ugsolutions.com).
15774
15775         * reflection.c: Endianness fixes from Bernie Solomon 
15776         (bernard@ugsolutions.com).
15777         
15778 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
15779
15780         * assembly.h assembly.c: Define a file format version for AOT
15781         libraries.
15782         
15783         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
15784
15785         * appdomain.h (MonoJitInfo): New field to determine whenever the
15786         code is domain neutral.
15787         
15788 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
15789
15790         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
15791
15792 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
15793
15794         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
15795         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
15796         Avoid caching the result since strings must be domain specific. Fixes
15797         #48050.
15798
15799 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
15800
15801         * marshal.c (mono_marshal_init): Make this callable multiple times
15802         since it is hard to find a correct place to call it.
15803
15804         * object.c (mono_runtime_class_init): Execute static constructors in
15805         the correct appdomain.
15806
15807         * image.c (build_guid_table): Handle the case when multiple images have
15808         the same GUID.
15809
15810 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15811
15812         * icall.c: added a couple of icalls for System.Web.
15813
15814 2003-08-28  Martin Baulig  <martin@ximian.com>
15815
15816         * icall.c (ves_icall_Type_BindGenericParameters): Use
15817         `klass->generic_inst' instead of `&klass->byval_arg' in the
15818         mono_type_get_object() call.  The returned type must be
15819         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
15820
15821 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
15822
15823         * NOTES: New file.
15824
15825         * object.c (mono_class_proxy_vtable): Make it thread safe.
15826
15827         * pedump.c: Fix warning.
15828
15829         * object.c appdomain.h: Get rid of metadata_section. 
15830         It is no longer needed and it was causing deadlocks with domain->lock.
15831
15832         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
15833
15834 2003-08-26  Martin Baulig  <martin@ximian.com>
15835
15836         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
15837
15838 2003-08-26  Martin Baulig  <martin@ximian.com>
15839
15840         * pedump.c (main): Call mono_metadata_init(),
15841         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
15842         and mono_loader_init().
15843
15844 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
15845
15846         * loader.h: Add missing include to fix build.
15847
15848         * image.h: mono_image_load_references is no more.
15849
15850         * assembly.c: Reworked assembly loading to make it really thread safe.
15851         After these changes, the assembly returned by mono_assembly_open is
15852         fully initialized, i.e. all its references assemblies are loaded.
15853
15854         * assembly.c (mono_image_load_references): Renamed to 
15855         mono_assembly_load_references, and made private, since clients no
15856         longer need to call it.
15857
15858         * class.c: Removed calls to mono_assembly_load_references, since it was
15859         a source of deadlocks.
15860
15861         * loader.h loader.c class.h class.c: Protect data structures using a 
15862         new lock, the loader lock.
15863
15864         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15865         GPtrArrays only when needed.
15866
15867         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15868         into empty structures by mcs. Fixes pinvoke7.cs.
15869         
15870         * domain.c (mono_init): Call a new initialization function.
15871
15872         * appdomain.c (mono_runtime_init): Call the new initializer function
15873         of the marshal module.
15874
15875         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15876         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15877
15878         * marshal.h marshal.c: Added locks around the wrapper caches to make
15879         this module thread safe.
15880
15881         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15882         this argument. Fixes pinvoke1.exe.
15883
15884 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15885
15886         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15887         enumeration of values. Removed fields to store remote call output values in
15888         MonoAsyncResult. Not needed any more.
15889         * object.c: Initialize call_type and async_result fields in mono_message_init.
15890         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15891         dispatching the message.
15892         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15893         async call to finish. To do it use a message with EndInvoke call type.
15894
15895 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15896
15897         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15898         determines whenever a method has marshalling info.
15899
15900 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15901
15902         * assembly.c: fix the build on windows.
15903
15904 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15905
15906         * object.cs: Fixed bug #47785.
15907
15908 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15909
15910         * string-icalls.c (StringReplace): If their are no occurances of
15911         the old string found return a reference to the supplied
15912         string. This saves some memory and matches MS behavoir.
15913         
15914 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15915
15916         * socket-io.c: fixed compilation for systems that define AF_INET6
15917         and don't define SOL_IP/SOL_IPV6.
15918
15919 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15920
15921         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15922         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15923
15924         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15925
15926         * domain.c: Make this module thread safe.
15927
15928         * domain.c (mono_init): Call new initialization function.
15929
15930         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15931         reference types too. Fixes #38812.
15932
15933         * image.c (mono_image_init): Fixed warnings.
15934
15935         * class.c (mono_class_from_typeref): Handle assembly load failure
15936         correctly.
15937
15938         * appdomain.c (add_assemblies_to_domain): Handle the case when
15939         the references of an assembly are not yet loaded.
15940
15941         * metadata.c image.c assembly.c: Moved initialization of global
15942         variables to a separate function called at startup since lazy 
15943         initialization of these variables is not thread safe.
15944         
15945         * image.c assembly.c: Made this module thread safe by adding locks in 
15946         the appropriate places.
15947
15948         * domain.c (mono_init): Call the new initialization functions of the
15949         three modules.
15950
15951 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15952
15953         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15954           make a direct call. It is proxy's work to make the call asynchronous.
15955           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15956           the return values.
15957         * object.cs: mono_method_call_message_new(): read AsyncResult and
15958           state object from parameters list, if this info is requested.
15959         * object.h: Added fields to store remote call output values in
15960           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15961
15962 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15963
15964         * object.h: add needed fields to MonoThread.
15965         * threads.c, threads.h: allow registering a function to cleanup data
15966         allocated per thread by the JIT.
15967
15968 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15969
15970         * loader.h: portability fix by Bernie Solomon
15971         * <bernard@ugsolutions.com>.
15972
15973 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15974
15975         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15976         return a MonoArray. This simplifies the code and also ensures that
15977         the cache allways contains an object reference as a value.
15978
15979         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15980         function.
15981
15982 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15983
15984         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15985         fixes a problem with byte ordering when getting the address family for
15986         a socket.
15987
15988 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15989
15990         * .cvsignore: Added monosn.
15991
15992         * reflection.h reflection.c loader.c: Added support for parameter
15993         marshalling to dynamically created types. Fixes #47295.
15994
15995 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15996
15997         * rand.c: remove useless warnings.
15998
15999 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16000
16001         * class.c: implemented ldtoken for methods and fieldrefs.
16002
16003 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16004
16005         * threadpool.c: when mono_async_invoke was called, no one took care of
16006         monitoring the queue. So if the method invoked took some time and we
16007         got new async invoke requests after 500 ms (the thread created waited
16008         that long in WaitForSingleObject), the new async invoke was not called
16009         until the previous one finished.
16010
16011         This is fixed now. Thanks to Totte for helping with it.
16012
16013 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16014
16015         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
16016
16017 2003-08-11  Martin Baulig  <martin@ximian.com>
16018
16019         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
16020
16021 2003-08-06  Martin Baulig  <martin@ximian.com>
16022
16023         * mono-debug-debugger.c: Added support for static fields,
16024         properties and methods.
16025
16026 2003-08-06  Martin Baulig  <martin@ximian.com>
16027
16028         * mono-debug-debugger.c: Don't store the MonoString's vtable to
16029         make this work for applications with multiple application domains.
16030
16031 2003-08-04  Martin Baulig  <martin@ximian.com>
16032
16033         * mono-debug-debugger.c: Completely reworked the type support; the
16034         most important thing is that we're now just using one single
16035         `MonoType' instance per type.
16036
16037 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
16038
16039         * mono-endian.h, mono-endian.c, icall.c: Added icall
16040         ves_icall_System_Double_AssertEndianity to assert double word endianity
16041         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
16042
16043 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16044
16045         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
16046         support, icalls and fixes.
16047
16048 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
16049
16050         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
16051         classes that are a punctuation character in .NET is not the same a
16052         g_unichar_ispunct.
16053
16054 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16055
16056         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
16057
16058 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
16059
16060         * icall.c: Add new MemCopy internalcall.
16061         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
16062         Simplified code; It is not necessary to handle all the cases here,
16063         as the C# code takes care of it.  Only handle the case of the name
16064         resource embedded into the assembly.
16065
16066         Changed signature to return the data pointer and the size of the
16067         data. 
16068
16069 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
16070
16071         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
16072         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
16073
16074 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16075
16076         * socket-io.c: ignore EINTR error in select.
16077
16078 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16079
16080         * class.h, class.c: removed unused subclasses field in MonoClass.
16081
16082 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
16083
16084         * icall.c: improve fix of get_base_definition(). If the parent class
16085           doesn't have the mehod, look at the parent of the parent.
16086         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
16087           to check if a parameter is an in or out parameter
16088           (PARAM_ATTRIBUTE_IN is not set by default).
16089           mono_method_return_message_restore(): Use mono_class_value_size to
16090           get the size of a value type. mono_type_stack_size (parameterType)
16091           does not return the correct value if parameterType is byRef.
16092           mono_load_remote_field(), mono_load_remote_field_new(),
16093           mono_store_remote_field(), mono_store_remote_field_new():
16094           raise exception if the remote call returns an exception.
16095
16096 2003-07-28  Martin Baulig  <martin@ximian.com>
16097
16098         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
16099         method.  This is a wrapper around mono_runtime_invoke() which
16100         boxes the instance object if neccessary.
16101
16102 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16103
16104         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
16105         metadata.h, row-indexes.h, verify.c: first cut of generics support.
16106
16107 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16108
16109         * icall.c: disable mcs bug workaround.
16110
16111 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
16112
16113         * object.c (mono_runtime_class_init): Take the metadata_section
16114         mutex before obtaining the domain mutex.
16115
16116         * appdomain.h: Added definition of metadata_section mutex here. 
16117
16118         * object.c: define metadata_mutex here.
16119
16120 2003-07-24  Ravi Pratap  <ravi@ximian.com>
16121
16122         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
16123         fixed.
16124
16125 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
16126
16127         * reflection.c: Fix bug #46669
16128
16129 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16130
16131         * exception.c:
16132         * exception.h:
16133         * icall.c:
16134         * object.h: fill in the type name for TypeLoadException.
16135
16136 2003-07-23  Ravi Pratap  <ravi@ximian.com>
16137
16138         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
16139         relationship between TypeBuilders while compiling corlib) and bug
16140         45993 (Array types returned from the runtime while compiling
16141         corlib were from the loaded corlib).
16142
16143 2003-07-22  Martin Baulig  <martin@ximian.com>
16144
16145         * mono-debug-debugger.c: Reworked the type support a bit more;
16146         distinguish between types and classes.
16147
16148 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
16149
16150         * icall.c: add IsArrayImpl icall.
16151
16152 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
16153
16154         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
16155         initializing real_size only once. Also fix bug #46602.
16156
16157 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
16158
16159         * object.c: Renamed mono_metadata_section to metadata_section.
16160
16161 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
16162
16163         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
16164           empty array if the type is an array. Fixed.
16165           ves_icall_MonoMethod_get_base_definition: if the base method
16166           is abstract, get the MethodInfo from the list of methods of
16167           the class.
16168         * reflection.c: ParameterInfo.PositionImpl should be zero-based
16169           and it was 1-based. Fixed in mono_param_get_objects.
16170
16171 2003-07-20  Martin Baulig  <martin@ximian.com>
16172
16173         * mono-debug.h: Set version number to 31.
16174         (mono_debug_init): Added `MonoDomain *' argument.
16175
16176         * mono-debug-debugger.c: Reworked the type support; explicitly
16177         tell the debugger about builtin types; pass the `klass' address to
16178         the debugger.
16179
16180 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
16181
16182         * image.c: Allow new metadata tables to be loaded without a
16183         warning. Also update the warning message to give the new constant value.
16184                 
16185 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
16186
16187         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
16188         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
16189         array type representation changes.
16190
16191 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16192
16193         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
16194         on Environment.Exit () call.
16195
16196 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
16197
16198         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
16199         requires a matching corlib.
16200
16201 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16202
16203         * Changelog: My editor decided to add a CR to each line. Sorry about that.
16204           Committed again without the CRs.
16205         
16206 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
16207
16208         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
16209           getting it from the "this" socket instance. Did not work
16210           if the socket is a subclass of Socket.
16211           Also fixed bug #35371.
16212
16213 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16214
16215         * metadata.c: fixed size for TypedByRef.
16216         * loader.c: when searching for a method, consider the vararg amrker.
16217         * unicode.c, decimal.c: constify some arrays.
16218
16219 2003-07-15  Dick Porter  <dick@ximian.com>
16220
16221         * socket-io.c: Fixed compilation for gcc < 3.2.
16222
16223         Fixed compilation for machines that don't have AF_INET6 (thanks to
16224         Bernie Solomon <bernard@ugsolutions.com> for that part.)
16225
16226         Fixed compile warnings.
16227         
16228         Fixed formatting and line endings.
16229
16230 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
16231
16232         * socket-io.h:
16233         * socket-io.c: Added IPv6 support.
16234
16235 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
16236
16237         * class.c (mono_class_is_assignable_from): New function to implement
16238         the is_assignable_from logic. Used by mono_object_isinst, 
16239         Type::IsAssignableFrom () and the interpreter.
16240
16241         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
16242         Object, even interfaces.
16243         
16244         * object.c (mono_object_isinst): Implement in terms of 
16245         is_assignable_from.
16246
16247         * icall.c (ves_icall_type_is_assignable_from): New icall.
16248
16249 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
16250
16251         * domain.c (foreach_domain): fix compiler warning.
16252
16253 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
16254
16255         * image.c (load_metadata_ptrs): use g_strndup because strndup is
16256         not available on all plattforms
16257
16258 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
16259
16260         * image.h image.c: Store the metadata version string in MonoImage.
16261         * icall.c: New icall to retrieve the image version.
16262         * reflection.c (create_dynamic_image): Fill in the image version field
16263         * reflection.c (build_compressed_metadata): Use the image version
16264         from the image structure.
16265
16266 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16267
16268         * appdomain.c: modified comment.
16269         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
16270         That will be its last iteration when mono_gc_cleanup is called from
16271         mono_runtime_cleanup and before the domain is unloaded.
16272
16273         Fixes bug #45962.
16274
16275 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
16276
16277         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
16278         attributes.
16279
16280 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16281
16282         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
16283         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
16284         Bernie Solomon <bernard@ugsolutions.com>.
16285
16286 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16287
16288         * object.c, object.h: provide mono_object_new_fast() for faster
16289         allocation in some special cases.
16290
16291 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
16292
16293         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
16294         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
16295
16296 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
16297
16298         * threadpool.c: fix leaks.
16299
16300 2003-07-01  Dick Porter  <dick@ximian.com>
16301
16302         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
16303         using MonoGHashTables.  Fixes threadpool bug posted to list.
16304
16305 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
16306
16307         * image.h, image.c: added support to load an assembly from a byte array.
16308         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
16309         assembly bundle support.
16310
16311 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
16312
16313         * threadpool.c (mono_thread_pool_add): keep a reference to the
16314         AsyncResult to prevent GC
16315
16316 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16317
16318         * class.c: leak fix.
16319
16320 2003-06-25  Dick Porter  <dick@ximian.com>
16321
16322         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
16323         for the async object, the WaitHandle object will close the handle.
16324         Fixes bug 45321.
16325
16326 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16327
16328         * class.c: in mono_array_class_get (), lookup from the hash with the
16329         same type we insert: this works around a bug in
16330         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
16331         lluis. The real fix will have to wait for after the release.
16332
16333 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16334
16335         * icall.c: fix memory leak when getting type members.
16336
16337 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16338
16339         * reflection.c: added more pubtoken special cases.
16340
16341 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
16342
16343         * class.c: handle field offset correctly when class size
16344         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
16345
16346 2003-06-20  Martin Baulig  <martin@ximian.com>
16347
16348         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
16349         *image' field.
16350
16351 2003-06-20  Martin Baulig  <martin@ximian.com>
16352
16353         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
16354
16355 2003-06-20  Martin Baulig  <martin@ximian.com>
16356
16357         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
16358         just distinguish between variables in registers and variables at
16359         an offset relative to a register.
16360
16361 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16362
16363         * icall.c: #ifdef out latest changes until mcs is fixed.
16364
16365 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16366
16367         * icall.c: return members in metadata order.
16368
16369 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
16370
16371         * icall.c: avoid infinite loop in GetTimeZoneData.
16372
16373 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
16374
16375         * icall.c: added Marshal.Prelink/All icalls.
16376
16377 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
16378
16379         * object.c, object.h: fix warnings and do some overflow checking
16380         when creating arrays.
16381
16382 2003-06-17  Dick Porter  <dick@ximian.com>
16383
16384         * file-io.h:
16385         * file-io.c: File attributes need to be tweaked slightly when
16386         passed from the managed to the w32 world.
16387
16388 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16389         * profiler.h profiler-private.h profiler.c: Rework last patch
16390         based on suggestion by Paolo.
16391         
16392 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
16393
16394         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
16395         instruction level coverage data collection.
16396         * profiler.h profiler.c (: Added new callback function which can be
16397         used by the profiler to limit which functions should have coverage
16398         instrumentation.
16399         * profiler.c (mono_profiler_load): Call g_module_build_path to
16400         generate the file name of the profiler library.
16401
16402 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
16403
16404         * profiler.c, profiler.h, profiler-private.h: added basic block 
16405         coverage profiling API.
16406
16407 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
16408
16409         * reflection.c (mono_reflection_create_runtime_class): Add support
16410         for events in dynamically generated code.
16411
16412         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
16413         not allocated.
16414
16415 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
16416
16417         * icall.c: when getting timezone info, return reasonable values if we
16418         can't get the actual data.
16419
16420 2003-06-14  Dick Porter  <dick@ximian.com>
16421
16422         * threads.c (start_wrapper): Remove the reference to the thread
16423         object in the TLS data, so the thread object can be finalized.
16424         This won't be reached if the thread threw an uncaught exception,
16425         so those thread handles will stay referenced :-( (This is due to
16426         missing support for scanning thread-specific data in the Boehm GC
16427         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
16428
16429 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
16430
16431         * reflection.c: ensure streams and tables are first allocated with
16432         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
16433
16434 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
16435
16436         * icall.c: fixed GetElementType for byrefs (bug# 44792).
16437
16438 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
16439
16440         * reflection.c (mono_reflection_create_runtime_class): Add support for
16441         properties to dynamically created classes.
16442         * reflection.c: Fix a few places where non-MonoObjects were inserted
16443         into the tokens hashtable.
16444
16445 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16446
16447         * object.c: some support to handle out of memory exceptions.
16448
16449 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
16450
16451         * marshal.c (mono_marshal_get_native_wrapper): support reference
16452         return types
16453
16454 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16455
16456         * object.h, object.c: more portability stuff from Bernie Solomon.
16457         Unexport mono_object_allocate(). Added mono_object_unbox ().
16458         Set exitcode when an unhandled exception is thrown.
16459
16460 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
16461
16462         * marshal.c (mono_marshal_get_native_wrapper): use custom
16463         marshaler for return types.
16464
16465 2003-06-10  Dick Porter  <dick@ximian.com>
16466
16467         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
16468         ip_mreq is available
16469
16470 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
16471
16472         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
16473         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
16474         by Bernie Solomon <bernard@ugsolutions.com>.
16475
16476 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
16477
16478         * gc.c (mono_gc_init): Avoid error message on shutdown when
16479         GC_DONT_GC=1 is used.
16480
16481         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
16482         New icall to return the GUID of a module.
16483
16484 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
16485
16486         * class.c: ensure instance size always includes the parent's size
16487         even whem class size is set explicitly (fixes bug#44294).
16488
16489 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16490
16491         * profiler.h, profiler.c: made the simple profiler thread-safe,
16492         get more accurate timing info. Allow the loading of an
16493         externally-developed profiler module.
16494
16495 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
16496
16497         * marshal.c (mono_marshal_get_native_wrapper): improved
16498         class/byref arguments.
16499         (mono_marshal_get_native_wrapper): better string marshaling support.
16500
16501 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
16502
16503         * class.c: ensure .pack and .size are handled correctly and
16504         simplified layout of static fields.
16505
16506 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
16507
16508         * appdomain.c
16509         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
16510
16511         * loader.c (mono_lookup_pinvoke_call): look for modules in the
16512         current directory (fix bug 44008)
16513
16514 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
16515
16516         * marshal.c (mono_marshal_get_native_wrapper): started support for
16517         custom marshalers.
16518         (mono_delegate_to_ftnptr): consider marshalling specifications
16519
16520 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
16521
16522         * reflection.c, reflection.h: emit custom marshal info.
16523
16524 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16525
16526         * object.c: free the GError.
16527         * icall.c: added CloseEvent_internal.
16528         * threads.[ch]:
16529         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
16530         call.
16531
16532 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
16533
16534         * loader.c (mono_method_get_signature): Add support for dynamic
16535         assemblies.
16536
16537 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
16538
16539         * reflection.c: fixed bug #43905.
16540
16541 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
16542
16543         * class.c, domain.c, icall.c, metadata.h, object.h: support for
16544         handling TypedReference and ArgIterator.
16545         * loader.c, loader.h: added function to get signature at call site.
16546
16547 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16548
16549         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
16550         data readonly. Buglets and warning fixes. Some MethodSpec support.
16551
16552 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
16553
16554         * class.h, class.c, object.c: remove relative numbering support.
16555
16556 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
16557
16558         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
16559         free the string, until we get a chance to fix Gtk#
16560
16561 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16562
16563         * marshal.c: revert last patch.
16564
16565 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
16566
16567         * icall.c: updates for new mono_class_vtable() not calling
16568         the type constructor anymore.
16569
16570 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16571
16572         * object.h, object.c: separate vtable creation from type
16573         initialization. Make running the .cctor thread safe.
16574
16575 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
16576
16577         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
16578
16579 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
16580
16581         * loader.c (mono_get_method): consider calling convention
16582
16583 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
16584
16585         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
16586         to return the invisible global type for a module.
16587
16588         * reflection.c (mono_image_build_metadata): Emit global fields too.
16589
16590 2003-05-20  Peter Williams  <peterw@ximian.com>
16591
16592         * loader.c (mono_lookup_internal_call): Add a few newlines.
16593
16594 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
16595
16596         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
16597         literal strings.
16598
16599         * appdomain.c (set_domain_search_path): Recalculate search path when
16600         AppDomainSetup.PrivateBinPath changes.
16601
16602         * object.c (mono_class_compute_gc_descriptor): It turns out some
16603         parts of the class libs (like System.Thread) holds pointers to
16604         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
16605         to treat native int a pointer type here.
16606         
16607 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
16608
16609         * appdomain.h, domain.c: add hashtable for jump target resolution.
16610
16611 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
16612
16613         * reflection.h reflection.c icall.c: Added new icalls 
16614         GetManifestResourceInfoInternal, GetModulesInternal and support
16615         infrastructure.
16616
16617 2003-05-16  Dick Porter  <dick@ximian.com>
16618
16619         * icall.c:
16620         * file-io.h:
16621         * file-io.c: Implement System.IO.MonoIO::GetTempPath
16622
16623 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
16624
16625         * object.c: mono_store_remote_field: little fix to previous patch.
16626
16627 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
16628
16629         * class.c: add constructors to array classes.
16630         * icall.c: special case array construction for InternalInvoke (),
16631
16632 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
16633
16634         * class.h class.c reflection.c object.c: Added support for field
16635         defaults in dynamically generated classes.
16636
16637 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
16638
16639         * reflection.c: properly encode charset for ddlimport.
16640
16641 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
16642
16643         * threads.c: allow compiling without GC.
16644
16645 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
16646
16647         * appdomain.h, object.c, object.h, threads.c, threads.h: added
16648         handling of thread static data.
16649
16650 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
16651
16652         * reflection.h, reflection.c: added mono_custom_attrs_free ().
16653
16654 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
16655
16656         * class.c (mono_array_class_get): always set the serializable flags
16657         (mono_array_class_get): always set the SEALED attribute for array types
16658
16659 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
16660
16661         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
16662         attributes (fix for bug 42021).
16663
16664 2003-05-12  Dick Porter  <dick@ximian.com>
16665
16666         * gc.c: Don't run finalizers when the finalizer thread is
16667         finishing up, because the default domain has already been
16668         destroyed.
16669
16670 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
16671
16672         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
16673         value is null, we should throw an exception.   This is slightly
16674         different than the other conventions used for the constructor.
16675
16676 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16677
16678         * socket-io.c: fixed windows build.
16679
16680 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16681
16682         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
16683
16684 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
16685
16686         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16687         compilers.
16688
16689 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16690
16691         * class.c (mono_class_layout_fields): Add experimental GC aware
16692         auto layout facility. Requires class library changes to work correctly.
16693
16694         (mono_class_setup_vtable): Avoid overriding explicit interface
16695         method implementations. Fixes iface3.exe test.
16696
16697         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16698         object reference.
16699         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16700         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16701
16702         * metadata.h: Add new type classification macro which determines
16703         whenever the type holds an object reference.
16704
16705 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16706
16707         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16708
16709 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16710
16711         * gc.c (finalizer_thread): Work around a GC bug.
16712
16713 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16714
16715         * marshal.c (emit_struct_conv): allow unions
16716
16717         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
16718
16719 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
16720
16721         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
16722
16723 2003-05-06  Martin Baulig  <martin@ximian.com>
16724
16725         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
16726
16727 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16728
16729         * socket-io.c:
16730         (Select_internal): allow NULLs, don't create arrays if not needed.
16731         Coupled with Socket.cs changes.
16732
16733         * threadpool.c:
16734         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
16735         register a finalizer for it that will close the semaphore handle. This
16736         fixes the leak and make Lupus' test run with > 4080 loops.
16737
16738 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
16739
16740         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
16741         Jerome Laban (bug #42287)
16742
16743 2003-05-02  Martin Baulig  <martin@ximian.com>
16744
16745         * debug-mono-symfile.h
16746         (MonoSymbolFile): Moved declaration into mono-debug.h.
16747         (MonoDebugMethodJitInfo): Likewise.
16748         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
16749         argument.
16750         (_mono_debug_address_from_il_offset): Take a
16751         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
16752
16753         * mono-debug.h
16754         (MonoDebugDomainData): New struct.
16755         (mono_debug_get_domain_data): New function.
16756         (mono_debug_add_method): Take an additional `MonoDomain *'
16757         argument.
16758         (mono_debug_source_location_from_address): Likewise.
16759         (mono_debug_il_offset_from_address): Likewise.
16760         (mono_debug_address_from_il_offset): Likewise.
16761
16762 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
16763
16764         * reflection.c: one more check for null type in custom attrs.
16765
16766 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16767
16768         * reflection.c: avoid warning (comparison is always false due to limited
16769         range of data type).
16770
16771 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16772
16773         * icall.c: throw an exception in Type.GetField if the argument 'name'
16774         is NULL.
16775
16776 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
16777
16778         * reflection.c: fixed handling of enums in named arguments to custom
16779         attributes (bug #42123).
16780
16781 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
16782
16783         * reflection.c: use the right array element type and handle
16784         a null for a Type argument, too.
16785
16786 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
16787
16788         * reflection.c: handle arrays as arguments to custom attributes.
16789
16790 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16791
16792         * reflection.c: handle a string value in a custom attr
16793         ctor that takes an object.
16794
16795 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
16796
16797         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
16798         (fix bug #42063)
16799
16800 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
16801
16802         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
16803
16804 2003-04-27  Martin Baulig  <martin@ximian.com>
16805
16806         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
16807         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
16808         MONO_DEBUGGER_EVENT_BREAKPOINT.
16809         (mono_breakpoint_trampoline_code): Removed.
16810         (mono_debugger_event_handler): The last argument is now a
16811         `guint32'.
16812         (mono_debugger_insert_breakpoint_full): Removed the
16813         `use_trampoline' argument.
16814         (mono_debugger_method_has_breakpoint): Likewise.
16815         (mono_debugger_trampoline_breakpoint_callback): Renamed to
16816         mono_debugger_breakpoint_callback(); take the method and
16817         breakpoint number as arguments.
16818
16819 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
16820
16821         * metadata.c: fix off by one when loading parameters attributes.
16822
16823 2003-04-24  Martin Baulig  <martin@ximian.com>
16824
16825         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
16826
16827 2003-04-24  Martin Baulig  <martin@ximian.com>
16828
16829         * mono-debug-debugger.c: Moved all code which interacts with the
16830         Mono Debugger here.
16831
16832         * debug-mono-symfile.c: This code now just deals with the symbol
16833         file itself, the debugger code is now in mono-debug-debugger.c.
16834
16835 2003-04-23  Martin Baulig  <martin@ximian.com>
16836
16837         * mono-debug.c (mono_debug_source_location_from_il_offset):
16838         New method; like mono_debug_source_location_from_address(), but
16839         takes an IL offset instead of a machine address.
16840
16841 2003-04-23  Martin Baulig  <martin@ximian.com>
16842
16843         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
16844         `line' field; this is now computed by the debugger.
16845
16846 2003-04-23  Martin Baulig  <martin@ximian.com>
16847
16848         * mono-debug.[ch]: New files.  This is the new debugging interface.
16849
16850         * mono-debug-debugger.[ch]: New files.  Moved all code which
16851         interacts with the Mono Debugger here.
16852
16853 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
16854
16855         * domain.c (mono_init): initialize mono_defaults.monitor_class
16856
16857 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16858
16859         * reflection.c (method_encode_code): Add a spicy exception to help
16860         future compiler authors.
16861
16862 2003-04-21  Martin Baulig  <martin@ximian.com>
16863
16864         * icall.c
16865         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16866         Make this work with relative pathnames; g_filename_to_uri() needs
16867         an absolute filename.
16868
16869 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16870
16871         * icall.c: Track name changes in Object and ValueType.
16872
16873 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16874
16875         * metadata.c (mono_type_stack_size): size should be a multiple of
16876         sizeof (gpointer)
16877
16878 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16879
16880         * gc.c:
16881         (internal_domain_finalize): moved into mono_domain_finalize. No need
16882         to create another thread because the finalizers will be run in the
16883         finalizer thread.
16884         
16885         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16886         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16887         to be run (MS does this too).
16888
16889 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16890
16891         * object.c (mono_class_compute_gc_descriptor): Update comment.
16892
16893         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16894
16895         * image.h: Add synchronized wrapper cache.
16896
16897         * image.c (do_mono_image_open): Initialize cache.
16898
16899         * reflection.c (create_dynamic_mono_image): Initialize cache.
16900
16901 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16902
16903         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16904         ves_icall_System_Buffer_ByteLengthInternal.
16905
16906 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16907
16908         * reflection.c: setup klass->nested_in earlier. Allow
16909         a dash in the assembly name.
16910
16911 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16912
16913         * metadata.c (mono_type_to_unmanaged): dont access
16914         type->data.klass for MONO_TYPE_OBJECT
16915         (mono_type_to_unmanaged): consider System.Delegate class
16916
16917 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16918
16919         * class.c: just setup supertypes in the proper place instead of
16920         initializing the full element class for arrays.
16921
16922 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16923
16924         * class.c: ensure the element class of arrays is initialized.
16925         Setup the supertype info for array classes, too.
16926
16927 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16928
16929         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16930
16931 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16932
16933         * Makefile.am: re-added -m option when running cygpath. This way,
16934         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16935         separator.
16936         * mono-config.c: same codepath for locating mono config file for WIN32
16937         and the rest.
16938         * assembly.c: if mono_assembly_setrootdir is called, don't override
16939         the value set.
16940
16941 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16942
16943         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16944         MONO_ASSEMBLIES variable.
16945
16946 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16947
16948         * icall.c: added Assembly::GetNamespaces() icall.
16949
16950 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16951
16952         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16953
16954 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16955
16956         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16957         * object.c: fixed bug in the construction of vtable for proxies
16958
16959 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16960
16961         * object.c (mono_array_new): Mark mono_array_new as an icall.
16962
16963 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16964
16965         * class.c: fixed test for public method when overriding interfaces.
16966         Closes bug #40970.
16967
16968 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16969
16970         * appdomain.h, domain.c: added mono_domain_foreach() to
16971         be able to access the currently loaded appdomains.
16972         * object.c: make string interning work across sppdomains.
16973         Mark some functions for use as icalls.
16974
16975 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16976
16977         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16978
16979         * reflection.h reflection.c: Allocate long living data using 
16980         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16981
16982         * reflection.c: Double the allocation size in streams instead of
16983         increasing it, to prevent unneccesary copying on large assemblies.
16984         
16985         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16986         creation if the assembly does not have the Run flag set.
16987
16988 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16989
16990         * class.h: avoid the C++ keywords in header files (Jerome Laban
16991         spotted and fixed this).
16992
16993 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16994
16995         * object.c:
16996         (mono_unhandled_exception): fill in the arguments for the
16997         UnhandledException event. Only trigger that event for the default
16998         domain (as MS does).
16999
17000 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
17001
17002         * object.c: Improve typed allocation stuff based on suggestions from
17003         Paolo. Also turn it on if the GC library supports it.
17004
17005 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17006
17007         * object.c object.h class.h: Added experimental typed allocation
17008         facility using the interfaces in gc_gcj.h.
17009
17010         * os/gc_wrapper.h: Added new include files.
17011         
17012 2003-04-03  Martin Baulig  <martin@ximian.com>
17013
17014         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
17015         which is not yet enabled by default.
17016
17017         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
17018         functions.
17019         (mono_gc_lock, mono_gc_unlock): New static functions.
17020
17021         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
17022         functions; stop/start the world for the garbage collector.  This
17023         is using the windows API; we need to complete the SuspendThread()/
17024         ResumeThread() implementation in the io-layer to make this work on Unix.
17025         (mono_gc_push_all_stacks): New public function; tells the garbage
17026         collector about the stack pointers from all managed threads.
17027
17028 2003-04-03  Martin Baulig  <martin@ximian.com>
17029
17030         * object.h (MonoThread): Added `gpointer stack_ptr'.
17031
17032         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
17033
17034 2003-04-03  Martin Baulig  <martin@ximian.com>
17035
17036         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
17037
17038 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
17039
17040         * reflection.c (typebuilder_setup_fields): Initialize field.first and
17041         field.last.
17042
17043 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
17044
17045         * loader.c (mono_lookup_internal_call): Report the corlib that is
17046         out of sync.
17047
17048 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
17049
17050         * icall.c (ves_icall_type_GetTypeCode): fixed check for
17051         System.DBNull (it's class not valuetype).
17052
17053 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
17054
17055         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
17056         if the array method was already assigned a token (fixes bug#40646).
17057
17058 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
17059
17060         * reflection.c (mono_reflection_get_type): Attempt type resolve even
17061         if no assembly is given.
17062
17063 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
17064
17065         * metadata.h: Added the new tables.
17066
17067         * row-indexes.h: Added definitions for new tables.
17068
17069         * metadata.c: Add schemas for new tables, and add support for
17070         computing the sizes of them.
17071
17072         * class.c: Update for handling the new type cases.
17073
17074 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
17075
17076         * metadata.h (MONO_TYPE_IS_VOID): new macro
17077
17078 2003-03-31  Martin Baulig  <martin@ximian.com>
17079
17080         * threads.h (MonoThreadCallbacks): Added `thread_created'.
17081
17082         * threads.c (mono_thread_new_init): Call `thread_created' in the
17083         mono_thread_callbacks.
17084
17085 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
17086
17087         * loader.h: added marshalbyrefobject_class to mono_defaults
17088         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
17089         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
17090           generation of output parameters.
17091           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
17092         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
17093           contextbound and the target object belongs to the context of the caller.
17094         * object.h: added context and unwrapped_server variables in MonoRealProxy.
17095         * object.c: Implemented support for interfaces and abstract classes
17096           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
17097           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
17098
17099 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
17100
17101         * class.h class.c (mono_class_is_subclass_of): New function.
17102         
17103         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
17104         routines for most common case (calls from ArrayList::ToArray).
17105
17106         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
17107         routine so programs which call Environment::Exit() can be profiled.
17108
17109         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
17110         Added MONO_ARCH_SAVE_REGS.
17111
17112         * icall.c (ves_icall_type_is_subtype_of): Use new function.
17113
17114 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
17115
17116         * blob.h: Add a couple of new MonoType types definitions.
17117
17118         * tabledefs.h: Add a couple of new call convs.
17119
17120 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
17121
17122         * reflection.h (MonoReflectionDynamicAssembly): track changes in
17123         the layout of the class.
17124
17125         * reflection.c (alloc_table): double the size on overflow to avoid
17126         unnecessary copying.
17127
17128         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
17129         avoid filling out metadata tables and blobs. Also set mb->ilgen to
17130         null so it can be garbage collected.
17131         
17132 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
17133
17134         * reflection.c (mono_reflection_get_type): Return the resolved type
17135         only if it is in the assembly we searched.
17136
17137         * reflection.c (ensure_runtime_vtable): Initialize method slots.
17138
17139         * class.c (mono_class_setup_vtable): Set the slot of the overriding
17140         method.
17141
17142 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17143
17144         * appdomain.c:
17145         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
17146         the right one is 'file:///blah', but MS allows it.
17147         * assembly.c:
17148         (mono_assembly_open): allow 'file://blah'
17149
17150         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
17151
17152 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
17153
17154         * socket-io.c: fixes bug #40310.
17155
17156 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
17157
17158         * reflection.c (mono_reflection_parse_type): handle deeply nested
17159         types correctly.
17160
17161         * reflection.c (mono_image_create_token): Use unique token values
17162         since they will be put into a hash table.
17163
17164         * class.c (mono_class_setup_vtable): If a method occurs in more than
17165         one place in the vtable, and it gets overriden, then change the
17166         other occurances too.
17167
17168         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
17169         object as return type.
17170
17171 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17172
17173         * icall.c: Deleted "ToString" implementation for double and float
17174         because they are full implemented in managed code.
17175
17176 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17177
17178         * reflection.c, reflection.h: implemented and exported functions
17179         to retrieve info about custom attributes.
17180
17181 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17182
17183         * appdomain.c: moved Uri handling to assembly.c
17184         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
17185         work when using a file Uri in *nix and windows.
17186
17187         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
17188         GetReferencedAssemblies.
17189
17190 2003-03-18  Dick Porter  <dick@ximian.com>
17191
17192         * icall.c: Rename a couple of internal calls
17193
17194         * threads.c: Set the thread state to Stopped when a thread exits.
17195         Fixes bug 39377.
17196
17197 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
17198
17199         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
17200         New icall.
17201
17202         * object.c (mono_class_vtable): fix warning.
17203
17204 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
17205
17206         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
17207
17208         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
17209         memory.
17210         (method_encode_clauses): Create exception info structures in the right
17211         order.
17212         (mono_reflection_setup_internal_class): Initialize supertypes field.
17213
17214         * class.c object.c: Handle interfaces which implement other interfaces 
17215         correctly.
17216
17217         * class.h class.c: Move the supertypes array initialization code into 
17218         a separate function so it can be used for dynamic types too. Also call
17219         it earlier, in mono_class_init(), since it can be used before the
17220         type is initialized.
17221
17222 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17223
17224         * Makefile.am:
17225         * assembly.c:
17226         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
17227
17228         * appdomain.c:
17229         * appdomain.h:
17230         * marshal.c:
17231         * object.c: remove warnings.
17232
17233 2003-03-13  Martin Baulig  <martin@ximian.com>
17234
17235         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
17236         (MonoDebugLexicalBlockEntry): New types.
17237
17238         * debug-mono-symfile.c
17239         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
17240
17241 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17242
17243         * process.c: ret can be any non-zero value accroding to MS doc.
17244
17245 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
17246
17247         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
17248         fixing a warning for a miss-used prototype, would have cause
17249         random memory corruption.
17250
17251 2003-03-07  Martin Baulig  <martin@ximian.com>
17252
17253         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
17254         getting really annoying ....
17255
17256 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
17257
17258         * reflection.c (fixup_method): added support for array methods.
17259
17260 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
17261
17262         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
17263         (pointed out by Michael Adams).
17264
17265 2003-03-04  Dick Porter  <dick@ximian.com>
17266
17267         * icall.c: Temporarily reverted the Double and Single ToString()
17268         change, because it broke nunit.
17269
17270 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
17271
17272         * object.h, threads.h: make include files compatible with C++
17273         (patch by Jerome Laban <jlaban@wanadoo.fr>).
17274
17275 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17276
17277         * icall.c: Erased ToString helper functions for Double and Single.
17278         Now, that implementations ar all in managed code (Double and Single
17279         Formatters).
17280
17281 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
17282
17283         * appdomain.c: Added method for initializing the default context of
17284         a domain. Added internal call for getting the default context.
17285         * appdomain.h: Added context variable in MonoDomain struct.
17286         * domain.c: mono_domain_set also sets the default context of the domain
17287         * icall.c: Mapped internal method InternalGetDefaultContext.
17288         * object.c: mono_object_get_virtual_method returns always a remoting
17289         wrapper if the object is a transparent proxy.
17290         mono_runtime_invoke_array: when creating an object by calling the
17291         constructor, if the created object is a proxy, then the constructor should
17292         be called using the a remoting wrapper.
17293
17294 2003-03-03  Dick Porter  <dick@ximian.com>
17295
17296         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
17297         variable so it compiles on solaris.  Problem spotted by
17298         Christopher Taylor <ct@cs.clemson.edu>
17299
17300 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17301
17302         * appdomain.c:
17303         (get_info_from_assembly_name): don't leak value.
17304
17305         * icall.c:
17306         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
17307         result.
17308
17309 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
17310
17311         * assembly.c: export mono_image_load_references ().
17312         * class.c: handle function pointers. mono_class_from_name() now
17313         supports nested type names directly.
17314
17315 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
17316
17317         * reflection.h reflection.c: Encode already created dynamic methods 
17318         and fields correctly as a DEF instead of a REF.
17319
17320         * reflection.c: Get rid of the force_ref argument to 
17321         mono_image_typedef_or_ref since it was wrong in the first place.
17322
17323         * string-icalls.c: add error checking to string constructors according
17324         to the MSDN docs.
17325
17326         * reflection.c: Emit types in the order their TypeBuilders were 
17327         created. Previously, a new table index was assigned to each type before
17328         the tables were emitted. This was wrong because the signature blob
17329         might already refer to a type by its original table index.
17330
17331 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
17332
17333         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
17334         change.
17335         
17336 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17337
17338         * Makefile.am: make assemblies dir have \ instead of / on windows.
17339
17340 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
17341
17342         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
17343         iterate over the NESTEDCLASS table using a linear search since the
17344         table is not guaranteed to be sorted by the secondary key.
17345
17346         * class.c (mono_class_create_from_typedef): fixed up call to
17347         mono_metadata_nesting_typedef.
17348         
17349 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
17350
17351         * marshal.c (mono_string_to_byvalstr): clear the memory as
17352         suggested by Jerome Laban <jlaban@wanadoo.fr>
17353
17354 2003-02-26  Dick Porter  <dick@ximian.com>
17355
17356         * process.c: Cope with padding in .rsrc blocks
17357
17358 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17359
17360         * metadata.h: reverted the filter_len change, it breaks reflection
17361         
17362 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
17363
17364         * metadata.h: added a new field to store the filter_len
17365         
17366
17367 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
17368
17369         * reflection.c: handle custom attributes for types and members
17370         created with Reflection.Emit (bug#38422).
17371
17372 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
17373
17374         * reflection.c: define RTSpecialName automatically for constructors for
17375         compatibility with MS.NET.
17376
17377         * reflection.c (mono_reflection_create_runtime_class): initialize
17378         nested_in field of dynamically created classes.
17379
17380 2003-02-22  Martin Baulig  <martin@ximian.com>
17381
17382         * debug-mono-symfile.h: Incremented version number.
17383
17384 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17385
17386         * object.h icall.c process.c: fix warnings.
17387
17388 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
17389
17390         * appdomain.h appdomain.c:
17391         (mono_domain_try_type_resolve): split the 
17392         name_or_tb argument into a name and a tb argument.
17393         (mono_domain_has_type_resolve): new function to check whenever the
17394         application has registered a TypeResolve event handler.
17395         
17396         * icall.c reflection.h reflection.c: move the type resolve logic into
17397         mono_reflection_get_type () so it will be invoked when 
17398         Assembly::GetType () is called.
17399
17400         * reflection.c:
17401         (mono_reflection_get_type): renamed to get_type_internal.
17402         (mono_reflection_get_type): fixed type name generation so it works 
17403         for nested types too.
17404         (mono_reflection_get_type): call has_type_resolve () to avoid the 
17405         costly type name generation if there is no resolve event handler.
17406
17407 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17408
17409         * class.c, image.c: load exported types from file references.
17410
17411 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
17412
17413         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
17414           used to cache the managed methods used to create proxies and make 
17415           remote invocation of methods.
17416         * class.h: Added in MonoVTable a flag to indicate that a class needs 
17417           to be remotely created.
17418         * object.c: Modified the method mono_class_vtable(). It now initializes 
17419           the remote flag of the vtable. Modified mono_object_new_specific(), 
17420           so now it checks the remote flag.
17421         * icall.c: Added a couple of internal methods, one for enabling instance 
17422           creation interception for a type, and one for creating objects bypassing
17423           the remote check.
17424
17425 2003-02-18  Martin Baulig  <martin@ximian.com>
17426
17427         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
17428         New interncall to get a method's metadata token.
17429
17430         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
17431         New interncall for the debugger.
17432
17433 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
17434
17435         * class.c (mono_class_setup_vtable): allocate supertype array
17436
17437 2003-02-18  Martin Baulig  <martin@ximian.com>
17438
17439         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
17440
17441 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17442
17443         * reflection.c:
17444         (assembly_name_to_aname): jump over unknown properties (i've found
17445         something like: 'type, assembly, version=xxx, custom=null, public...',
17446         so now will ignore custom=null and still get the rest of the values).
17447
17448 2003-02-17  Dick Porter  <dick@ximian.com>
17449
17450         * threads.c: Have Thread.Start() wait for a semaphore to signal
17451         that the thread has set up all its local data.  This fixes bug
17452         34323, where Abort() raced the new thread's TLS data.
17453
17454         Also removes the handle_store() call from start_wrapper, because
17455         threads are now always created suspended and there is no longer a
17456         race between the parent and child threads to store the info.
17457
17458 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
17459
17460         * image.c: explain the #- heap issue in a message, hopefully
17461         avoiding FAQs on mono-list.
17462
17463 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17464
17465         * icall.c:
17466         (GetEntryAssembly): if the domain has not invoked
17467         AppDomain.ExecuteAssembly yet, return the assembly of the default
17468         AppDomain.
17469
17470 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
17471
17472         * class.c (mono_ldtoken): make it work in dynamic assemblies.
17473
17474 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
17475
17476         * metadata.c, reflection.c: simple speedup to type hash
17477         and equals code.
17478
17479 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
17480
17481         * image.c, image.h, class.c, assembly.c: move module loading
17482         to MonoImage. When loading metadata, consider alignemnet from
17483         the start of metadata, not from the metadata address in memory.
17484
17485 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
17486
17487         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
17488         AssemblyBuilder objects. Factored out custom attribute creation into
17489         a separate function.
17490         (create_custom_attr): new function to create custom attributes.
17491
17492 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
17493
17494         * Makefile.am: Got tired of typing the full pathname to pedump.
17495         Until there is another option, am installing this.
17496
17497 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
17498
17499         * class.c (class_compute_field_layout): always set field->parent 
17500         (mono_ldtoken): use mono_defaults.fieldhandle_class;
17501
17502 2003-02-11  Dick Porter  <dick@ximian.com>
17503
17504         * threads-types.h:
17505         * monitor.c: Rewrote Monitor, making lock much faster and
17506         Pulse/Wait work as specified.  Also uses much fewer handles, and only
17507         creates them as needed.
17508
17509         * exception.c: Added SynchronizationLockException
17510
17511         * threads.c: Deleted old Monitor implementation.  The new one is
17512         in a new file.
17513
17514 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
17515
17516         * class.c: handled TypedReference type code. Set the correct size for
17517         class data. Setup interface_offsets for interface classes, too.
17518
17519 2003-02-09  Martin Baulig  <martin@ximian.com>
17520
17521         * debug-mono-symfile.h: Reflect latest symbol writer changes.
17522
17523 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
17524
17525         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
17526         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
17527         * object.c: fixed mono_object_get_virtual_method () for interfaces.
17528         * verify.c: check for code that runs after the end of the method.
17529
17530 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
17531
17532         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
17533         "System.Math::Round2".
17534         * sysmath.h: Added Floor, Round and Round2 definitions.
17535         * sysmath.c: Modified certain functions that were not 100% compliant
17536         with MS.NET (math precision) and added the implementation of Floor,
17537         Round and Round2.
17538
17539 2003-02-07  Martin Baulig  <martin@ximian.com>
17540
17541         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
17542
17543 2003-02-07  Martin Baulig  <martin@ximian.com>
17544
17545         * debug-mono-symfile.c: Reflected latest symwriter changes.
17546         (mono_debug_create_mono_symbol_file): Removed.
17547         (mono_debug_open_mono_symbol_file): Take an argument which
17548         specifies whether to create a dynamic symbol file.
17549
17550 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
17551
17552         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
17553
17554 2003-02-05  Martin Baulig  <martin@ximian.com>
17555
17556         * reflection.c (mono_image_build_metadata): Make this public,
17557         protect it against being called multiple times, don't create
17558         resources and don't build the compressed metadata here.
17559         (mono_image_create_pefile): Do this here.
17560
17561         * icall.c
17562         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
17563
17564 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17565
17566         * socket-io.c: fixed bug #36322.
17567
17568 2003-02-06  Piers Haken <piersh@friskit.com>
17569
17570         * appdomain.[ch]:
17571         * class.h:
17572         * debug-mono-symfile.c:
17573         * icall.c:
17574         * loader.c:
17575         * mono-config.c:
17576         * monosn.c:
17577         * reflection.c:
17578         * socket-io.c: warning cleanups
17579
17580 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
17581
17582         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
17583         function. works like remoting invoke, but does a check for the Proxy first.
17584
17585 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
17586
17587         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
17588
17589 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
17590
17591         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
17592         array of pointers.
17593         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
17594         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
17595
17596         * object.c (mono_store_remote_field_new): used by the new jit
17597         instead of mono_store_remote_field
17598         (mono_load_remote_field_new): used by the new jit
17599         instead of mono_load_remote_field
17600
17601 2003-02-05  Patrik Torstensson
17602
17603         * appdomain.c: changed unload to take the domain id instead
17604         of domain
17605         
17606         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
17607
17608
17609 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17610
17611         * appdomain.c: don't look for assemblies in ApplicationBase if
17612         PrivateBinPathProbe is set.
17613
17614 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17615
17616         * object.c: make the first argument in main_args contain the absolute
17617         path to the assembly. Fixes bug #37511.
17618
17619 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17620
17621         * icall.c: get correct UTC offset for countries not using daylight
17622         time saving. Fixes bug #30030.
17623
17624 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17625
17626         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
17627         and 1 are the family).
17628
17629 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
17630
17631         * icall.c (ves_icall_InternalExecute): removed wrong assertion
17632
17633         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
17634
17635 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
17636
17637         * reflection.c: added support for SignatureHelper tokens, which is
17638         needed by the Calli opcode.
17639
17640         * reflection.h: track changes to SignatureHelper class.
17641
17642         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
17643
17644 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17645
17646         * appdomain.c: fixed loading assemblies from PrivateBinPath.
17647
17648 2003-02-03  Patrik Torstensson
17649         * appdomain.[c|h], domain.c : 
17650          - Added support for getting a domain via domain id
17651          - Support for setting and getting domain from System.AppDomain 
17652            (used in cross appdomain channel)
17653          - Added support for get/set for a MonoAppContext on a thread 
17654            (Context class in System.Runtime.Remoting.Contexts),
17655          - Removed hack in Get/SetData and ExecuteAssembly.
17656         
17657         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
17658         the managed world to get control when a proxy is created.
17659
17660         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
17661         
17662 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
17663
17664         * icall.c
17665         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
17666         Populate the codebase field as well.
17667
17668 2003-02-02  Martin Baulig  <martin@ximian.com>
17669
17670         * debug-mono-symfile.c
17671         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
17672         (mono_debug_symfile_add_method): Allow interncalls.
17673
17674 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17675
17676         * icall.c: throw parse exception if strtod fails or the string is empty.
17677
17678 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
17679
17680         * marshal.c: handle object type separately from defined
17681         class types.
17682
17683 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
17684
17685         * marshal.c: handle NATIVE_LPSTR for strings when it's
17686         explicitly specified.
17687
17688 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17689
17690         * reflection.c, reflection.h, icall.c: setup the reflection
17691         handle cache for ModuleBuilders and AssemblyBuilders.
17692
17693 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17694
17695         * reflection.c (reflection_methodbuilder_to_mono_method): set
17696         pinvoke flag
17697
17698 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17699
17700         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17701
17702 2003-01-29  Dick Porter  <dick@ximian.com>
17703
17704         * threads.c: No need for the fake_thread kludge now that Thread
17705         doesn't run a class constructor
17706         
17707 2003-01-29  Dick Porter  <dick@ximian.com>
17708
17709         * threads.c: Use g_direct_hash instead of the rather bogus
17710         g_int_hash
17711
17712 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17713
17714         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17715         (fix pinvoke12.exe)
17716         (mono_marshal_get_struct_to_ptr): generate valid IL code
17717         (mono_marshal_get_ptr_to_struct): generate valid IL code
17718         (*): correctly set sig->pinvoke, we need to memdup the signature
17719         to do that
17720
17721 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17722
17723         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
17724         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
17725
17726 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17727
17728         * profiler.c: provide more callers information.
17729
17730 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
17731
17732         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
17733
17734         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
17735
17736         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
17737
17738 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17739
17740         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
17741         exception instead of going into an infinite loop on dates which it 
17742         can't yet handle.
17743
17744         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
17745         out-of-range exception if needed.
17746
17747         * class.c (mono_class_setup_vtable): allow a virtual method to provide
17748         an implementation for an interface method and to override an inherited
17749         method at the same time. 
17750         Imagine a scenario when a virtual method is used to override a
17751         virtual abstract method in a parent class, and this same method 
17752         provides an implementation for an method inherited from an interface. 
17753         In this case, the interface resolution code will set im->slot, which 
17754         means that the virtual method override pass will skip this method 
17755         which means a pointer to the abstract method inherited from the parent
17756         will remain in the vtable of this non-abstract class.
17757
17758         * class.c: (mono_class_setup_vtable): continue search for a real 
17759         method if only an abstract method is found.     
17760
17761 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17762
17763         * reflection.c: add size to encoding for ByValStr and ByValArray
17764         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
17765
17766 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17767
17768         * class.c (mono_class_setup_vtable): pass the override info as an
17769         argument.
17770
17771         * class.c (mono_class_setup_vtable): set the slot of overriding methods
17772         correctly.
17773         
17774         * reflection.c (ensure_runtime_vtable); add support for method 
17775         overrides.
17776         
17777 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17778
17779         * reflection.c (resolution_scope_from_image): Hack to work to work with
17780         dynamic assemblies.
17781
17782         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
17783         added a 'force_ref' argument to force this function to allways return 
17784         a TypeRef. This is needed by mono_image_get_memberref_token ().
17785         
17786 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17787
17788         * reflection.c (mono_image_get_type_info): interfaces really don't have
17789         a parent.
17790
17791         * reflection.c (mono_image_basic_init): fill out missing fields of
17792         image structure.
17793
17794         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
17795         dynamic assemblies. This is required so dynamic assemblies show up in
17796         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
17797         Type::GetType() etc. This is consistent with MS behaviour.
17798
17799         * image.c image.h reflection.c: add newly created classes to the name 
17800         cache so mono_class_get () will find them.      
17801
17802 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17803
17804         First part of changes to get IKVM.NET running under mono.
17805         
17806         * appdomain.h, appdomain.c: added new function 
17807         mono_domain_try_type_resolve() which will emit TypeResolve events. 
17808         This function will call AppDomain::DoTypeResolve to do the actual work.
17809
17810         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
17811         moved existing code dealing with dynamic tokens to a new function 
17812         called mono_reflection_lookup_dynamic_token (). This function will 
17813         raise TypeResolve events when appropriate. Since reflection.c is not 
17814         part of libmetadata, a new hook function called 
17815         mono_lookup_dynamic_token() is added to class.c which will call this.
17816
17817         * assembly.h assembly.c: make the invoke_load_hook function public,
17818         so it can be called for dynamic assemblies.
17819
17820         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
17821
17822         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
17823         type isn't found.
17824
17825         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
17826         MonoGHashTable, since it contains pointers to objects which the GC 
17827         needs to track.
17828
17829         * assembly.c (search_loaded): remove unused variable.
17830         
17831 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
17832
17833         * object.c: fixed issue exposed by gcc-generated IL programs
17834         that use RVA data for pointers.
17835
17836 2003-01-25  Martin Baulig  <martin@ximian.com>
17837
17838         * threads.c (start_wrapper): Moved the initialization of
17839         `start_func' above the mono_new_thread_init() call to which we
17840         pass it as argument.
17841
17842 2003-01-24  Martin Baulig  <martin@ximian.com>
17843
17844         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
17845         the MonoThread pointer.
17846
17847 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
17848
17849         * icall.c: Rename `PowImpl' to Pow.
17850
17851 2003-01-23  Dick Porter  <dick@ximian.com>
17852
17853         * threads.c (start_wrapper): Create a Thread object if needed, so
17854         the Main() thread can do the class initialisation in a subthread
17855         that has been set up to allow managed code execution.
17856
17857         Pass the thread ID instead of the MonoThread pointer to the thread
17858         start and attach callbacks.  This change is required, because the
17859         jit thread start callback must be called _before_ the Thread
17860         object can be created.
17861         
17862         (mono_thread_init): Removed much object creation code that is no
17863         longer needed.  No managed code is called from here now.
17864
17865         * object.c (mono_runtime_exec_managed_code): Create a subthread
17866         for Main, and call back to the runtime to use it.
17867         Set the exit code when Main exits.
17868
17869         * gc.c: Make sure domain finalisation happens in a subthread.
17870         Re-enable threaded GC, fixing bug 31333 (again).
17871
17872         * environment.c: System.Environment internall calls (so far just
17873         ExitCode is here, the others are still in icall.c)
17874
17875         * appdomain.c (mono_runtime_cleanup): All threads running managed
17876         code should have finished before mono_runtime_cleanup() is
17877         reached, so no need to clean up threads.
17878
17879 2003-01-22  Martin Baulig  <martin@ximian.com>
17880
17881         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17882         `gpointer func' arguments.      
17883         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17884         but added `MonoThread *thread' argument.
17885         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17886
17887         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17888         and pass it to the mono_thread_start_cb callback.
17889         (mono_install_thread_callbacks): New public function to install a
17890         set of callbacks which are set by the debugger.
17891         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17892
17893 2003-01-22  Martin Baulig  <martin@ximian.com>
17894
17895         * Makefile.am: Install debug-mono-symfile.h.
17896
17897 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17898
17899         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17900
17901 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17902
17903         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17904         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17905         (mono_array_class_get): correctly set access levels of arrays
17906
17907 2003-01-20      Patrik Torstensson
17908         * image.h (MonoAssemblyName): changed major, minor, build, revision
17909         from signed to unsigned.
17910
17911 2003-01-20  sean kasun <skasun@azstarnet.com>
17912
17913         * reflection.c (load_cattr_value): Now this handles
17914         MONO_TYPE_SZARRAY.  Fixes bug #35629
17915
17916 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17917
17918         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17919         integer value
17920
17921 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17922
17923         * decimal.c: fixed bug #26056.
17924
17925 2003-01-17  Martin Baulig  <martin@ximian.com>
17926
17927         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17928
17929 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17930
17931         * exception.[ch]:
17932         (mono_get_exception_type_initialization): new function.
17933
17934         * object.c: throw a TypeInitializationException when an exception is
17935         thrown invoking the class constructor.
17936
17937 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17938
17939         * reflection.c: fixed attribute reading.
17940
17941 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17942
17943         * icall.c:
17944         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17945         provided, look for the type in the calling assembly and then in
17946         mscorlib; if the assembly name is provided, only try that one.
17947
17948 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17949
17950         * object.c: register the vtable before there is a chance it's
17951         queried again recursively.
17952
17953 2003-01-13  Duncan Mak  <duncan@ximian.com>
17954
17955         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17956         gc-internal.h. 
17957         
17958 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17959
17960         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17961
17962 2003-01-11  Martin Baulig  <martin@ximian.com>
17963
17964         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17965         this to 20 for the release.
17966
17967 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17968
17969         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17970
17971         * loader.c (mono_method_get_marshal_info): bug fix
17972
17973         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17974         structures with explicit layout
17975
17976 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17977
17978         * profiler.c: made the output more readable (and sorted). 
17979         Added caller information for the allocation profiler.
17980
17981 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17982
17983         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17984
17985 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17986
17987         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17988         to get value types.
17989         
17990 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17991
17992         * object.c, profiler.h, profiler.c, profiler-private.h:
17993         Added object allocation profiler.
17994
17995 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17996
17997         * reflection.h, reflection.c: handle global methods.
17998         Compress blob entries.
17999
18000 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
18001
18002         * marshal.c: fix compilation.
18003
18004 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
18005
18006         * loader.c (mono_method_get_marshal_info): impl.
18007
18008         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
18009
18010 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18011
18012         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
18013         for reference types.
18014
18015 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
18016
18017         * loader.c: fixed off by one error in loaded parameter names.
18018
18019 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
18020
18021         * marshal.c (mono_marshal_get_icall_wrapper): like
18022         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
18023         instead of a MonoMethod.
18024
18025 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18026
18027         * decimal.c: fixed bug #36537.
18028
18029 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
18030
18031         * marshal.c: throw a missing method exception if a
18032         P/Invoke method is not found.
18033
18034 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18035
18036         * icall.c: allow a null this for constructors.
18037
18038 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18039
18040         * icall.c: raise the proper exceptions if the arguments to the
18041         internal Invoke are incorrect.
18042
18043 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
18044
18045         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
18046
18047 2003-01-03  Martin Baulig  <martin@ximian.com>
18048
18049         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18050
18051 2002-12-31  Martin Baulig  <martin@ximian.com>
18052
18053         * debug-mono-symfile.c: Completely rewrote the type section.
18054         Instead of using individual malloc()ed fields, we use one big
18055         continuous memory area and offsets into this area.
18056         See the comments in the source code for details.
18057
18058 2002-12-30  Martin Baulig  <martin@ximian.com>
18059
18060         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
18061
18062 2002-12-30  Martin Baulig  <martin@ximian.com>
18063
18064         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
18065         line number table in this data blob instead of using an external
18066         pointer.
18067
18068 2002-12-28  Martin Baulig  <martin@ximian.com>
18069
18070         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
18071
18072 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
18073
18074         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
18075         as a boxed return type.
18076
18077 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
18078
18079         * appdomain.c
18080         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
18081         g_build_filename to properly get separators on the filename created.
18082
18083         * object.h: Small change, introduce MonoMarshalByRefObject to
18084         track the layout of that structure in the C# universe as we make
18085         changes there.
18086
18087 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
18088
18089         * object.c: removed assert to allow static fields on interfaces.
18090         * loader.c: a TypeSpec may be used for any type, not just arrays.
18091
18092 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18093
18094         * class.c, class.h: added mono_class_array_element_size ().
18095         Ignore static methods in interfaces.
18096
18097 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18098
18099         * threads.c: fixed the build under cygwin.
18100
18101 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
18102
18103         * reflection.c: handle nullref constants. Allocate keys for
18104         reflection handles with the GC.
18105
18106 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18107
18108         * threads.c, threads.h: added mono_thread_get_abort_signal()
18109         to get a suitable signal for thread abort.
18110
18111 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18112
18113         * metadata.c: fix handling of ExportedType table.
18114
18115 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18116
18117         * icall.c: added WriteWindowsDebugString internal call.
18118
18119 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18120
18121         * reflection.h: added fields to match C# implementation.
18122
18123 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18124
18125         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
18126
18127 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
18128
18129         * gc.h, gc-internal.h: Rename header for GC internal calls to
18130         gc-internal.h from gc.h as to not clash with Boehm GC having its
18131         header installed as <gc.h> in outside include paths.
18132         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
18133         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
18134
18135 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18136
18137         * icall.c: assign minor, build and revision in FillName.
18138
18139 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
18140
18141         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
18142         Added support for running code generated by Reflection.Emit.
18143
18144 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18145
18146         * appdomain.c: check for NULL argument in LoadFrom.
18147
18148 2002-12-10  Dick Porter  <dick@ximian.com>
18149
18150         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
18151
18152 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18153
18154         * appdomain.c: fix buglet when building exe file name.  Handle full
18155         assembly name (needed after latest changes to AssemblyName).
18156         * image.c:
18157         (mono_image_close): free some hashtables.
18158
18159 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
18160
18161         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
18162         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
18163         on some systems (redhat 7.3) 
18164
18165 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
18166
18167         * threads.c: delete the critical section of a sync block,
18168         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
18169
18170 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
18171
18172         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
18173
18174 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18175
18176         * appdomain.[ch]: handle the assembly preload event to try loading the
18177         assemblies using the paths we have in the current domain.
18178
18179         * assembly.[ch]: created an assembly preload hook that is called to try
18180         loading the assembly by other means that the ones provided here.
18181
18182         * domain.c: initialize the domain search path.
18183
18184         From now on, assemblies (TODO: except corlib and System) are loaded
18185         according to these rules when using mono_assembly_load ():
18186
18187                 1. It tries to load the assembly from the ApplicationBase
18188                 of the current domain appending .dll and .exe (TODO: have to
18189                 try loading from name/name.dll and name/name.exe).
18190
18191                 2. It tries the search path specified in PrivateBinPath for the
18192                 current domain (if any).
18193
18194                 3. Previous behavior.
18195
18196 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
18197
18198         * icall.c: implemented GetInterfaceMap() related icall.
18199         * domain.c, loader.h: load MethodInfo in mono_defaults.
18200
18201 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18202
18203         * gc.c: disable the finalizer thread for now, untill all the issues
18204         with it are resolved.
18205
18206 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18207
18208         * string-icalls.c: handle embedded nulls in string ctor when the
18209         length is specified.
18210
18211 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
18212
18213         * class.c: look for explicit interface implementation in parent
18214         classes, too.
18215
18216 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
18217
18218         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
18219
18220 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
18221
18222         * gc.c: protect handles with a critical section.
18223
18224 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18225
18226         * icall.c:
18227         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
18228         parameters. If no assembly specified, try getting the type from all
18229         the assemblies in the current domain, else, load the assembly and get
18230         the type from it.
18231
18232 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18233
18234         * marshal.c: applied patch from Aleksey Demakov that fixes
18235         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
18236
18237 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18238
18239         * icall.c: fixed get_location.
18240
18241 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
18242
18243         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
18244         declarations to make it work with older gcc. 
18245
18246         * loader.c (mono_get_method): set signature->pinvoke for native calls
18247
18248 2002-11-20  Dick Porter  <dick@ximian.com>
18249
18250         * threads.c (mono_thread_init): Set the main thread's handle
18251
18252 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18253
18254         * gc.c: allow compilation without GC support. Changed to match the
18255         mono coding style.
18256
18257 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18258
18259         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
18260
18261 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
18262
18263         * reflection.c: set a public key token on the core assemblies.
18264
18265 2002-11-18  Dick Porter  <dick@ximian.com>
18266
18267         * threads.c: Split out some thread initialisation so that other
18268         files can set the start callback function.
18269
18270         * gc.c: Run finalisers in a separate thread, to avoid stack
18271         overflow.  Fixes bug 31333.
18272
18273         * appdomain.c: Set up GC finalisation thread.
18274
18275         * reflection.c: 
18276         * object.c: 
18277         * domain.c: Use gc.h macros for GC_malloc
18278         
18279 2002-11-15  Dick Porter  <dick@ximian.com>
18280
18281         * threadpool.c: 
18282         * threads.c:
18283         * appdomain.c: Removed mono_runtime_init_with_attach(),
18284         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
18285         merging the extra parameter with the existing function.  Removed
18286         unneeded code in mono_thread_attach().
18287
18288 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
18289
18290         * image.c (mono_image_loaded_by_guid): a method to get loaded
18291         images by guid. 
18292         (load_metadata_ptrs): we store the guid as string.
18293
18294 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
18295
18296         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
18297
18298         * metadata.c (mono_guid_to_string): imported method form Zoltan
18299         Varga (slightly modified)
18300
18301         * assembly.c (mono_assembly_open): load precompiled code
18302
18303         * loader.h (MonoMethod): we store the method token for use in the
18304         aot compiler. 
18305
18306 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18307
18308         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
18309         the hook function called when an assembly is loaded.
18310         
18311         * domain.c: Modified file.
18312         (mono_domain_assembly_load): removed hash table insertion of assemblies.
18313
18314         Fixes bug #33196.
18315
18316 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
18317
18318         * reflection.c: Map PEFileKind to the value expected by the WinNT
18319         image loader. 
18320
18321 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18322
18323         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
18324         Read until the buffer is filled completely.
18325
18326 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18327
18328         * icall.c: implemented MonoType.InternalGetEvent ().
18329
18330 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18331
18332         * appdomain.c: implemented InitAppDomainSetup. Delayed
18333         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
18334         the entry_assembly.
18335
18336         * assembly.c: base_dir is now an absolute path ending with
18337         G_DIR_SEPARATOR.
18338
18339         * icall.c: modified get_location according to the above changes.
18340
18341         * object.c: init AppDomain.SetupInformation for the default domain after
18342         we have the entry assembly.
18343
18344         * domain.c: when unloading a domain, setup = NULL.
18345
18346 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
18347
18348         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
18349
18350 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
18351
18352         * object.h, object.c: introduced mono_object_get_virtual_method ()
18353         to lookup the method invoked on an object when a callvirt is done on
18354         a method.
18355         * icall.c: make MethodInfo::Invoke() always do a virtual call.
18356
18357 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18358
18359         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
18360         current domain when loaded an assembly and failed to load it.
18361
18362         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
18363
18364 2002-10-31  Dick Porter  <dick@ximian.com>
18365
18366         * icall.c: 
18367         * file-io.h: 
18368         * file-io.c: Return the error status in a parameter, as the
18369         GetLastError() value has long since been blown away if we try and
18370         look it up in a subsequent internal call invocation.  Delete the
18371         GetLastError() internal call, because it's useless.
18372
18373 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
18374
18375         * class.[ch]: added cast_class to fix bug 29517
18376
18377 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
18378
18379         * marshal.c: create valid IL code in the filter clause:
18380         the new JIT is less forgiving:-)
18381
18382 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18383
18384         * icall.c: removed get_property internal call.
18385
18386 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
18387
18388         * appdomain.h domain.c: Added an ID to appdomains.
18389         
18390         * threads.c threads.h icall.c: Implement icall
18391         Thread:GetDomainID(), and remove unused icall 
18392         CurrentThreadDomain_internal.
18393
18394 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18395
18396         * icall.c: Don't recurse through the base types in GetConstructor.
18397         Fixes bug #32063. 
18398
18399 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18400
18401         * mempool.h, mempool.c: added mono_mempool_empty() and
18402         mono_mempool_stats().
18403
18404 2002-10-23  Dick Porter  <dick@ximian.com>
18405
18406         * file-io.c: 
18407         * file-io.h: 
18408         * icall.c: Added MonoIO.GetFileType internal call
18409
18410 2002-10-17  Dick Porter  <dick@ximian.com>
18411
18412         * appdomain.c (mono_runtime_cleanup): Don't signal the async
18413         delegate semaphore before waiting for all threads to finish,
18414         because new threads can also call async delegates.  Fixes bug
18415         32004.
18416
18417         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
18418         of 3 seconds, in case another async job is queued.  (This part is
18419         needed because the bug fix reintroduced the 3s exit lag.)  This
18420         makes the mono_runtime_shutdown flag superfluous.
18421
18422 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18423
18424         * reflection.c: include ehader size in method section headers.
18425         Really check for suplicated modules entries.
18426
18427 2002-10-17  Martin Baulig  <martin@gnome.org>
18428
18429         * debug-mono-symfile.c: Added back support for locals.
18430
18431 2002-10-14  Martin Baulig  <martin@gnome.org>
18432
18433         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
18434         MONO_TYPE_VOID.
18435
18436 2002-10-14  Martin Baulig  <martin@gnome.org>
18437
18438         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
18439         mono_class_get() instead of looking in the class cache. 
18440
18441 2002-10-13  Martin Baulig  <martin@gnome.org>
18442
18443         * debug-mono-symfile.c: Set version number to 28, include the
18444         signature in method names.
18445
18446 2002-10-13  Martin Baulig  <martin@gnome.org>
18447
18448         * debug-mono-symfile.h: Set version number to 27.
18449
18450 2002-10-11  Martin Baulig  <martin@gnome.org>
18451
18452         * gc.c: Don't register/unregister NULL pointers as disappearing links.
18453
18454 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18455
18456         * metadata.c, metadata.h: added helper function to allocate signatures.
18457
18458 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18459
18460         * icall.c: added internal call to get the location of machine.config.
18461
18462 2002-10-08  Martin Baulig  <martin@gnome.org>
18463
18464         * debug-mono-symfile.c: Ignore classes with a pending init for the
18465         moment.
18466
18467 2002-10-03  Dick Porter  <dick@ximian.com>
18468
18469         * threads.c: Freebsd pthread_t is a pointer
18470
18471 2002-10-03  Dick Porter  <dick@ximian.com>
18472
18473         * socket-io.c: Implemented GetHostName_internal
18474
18475 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18476
18477         * mono-config.c:
18478         (mono_config_parse_file): don't leak the text.
18479
18480 2002-10-02  Martin Baulig  <martin@gnome.org>
18481
18482         * debug-mono-symfile.c: Added support for methods.
18483
18484 2002-10-01  Martin Baulig  <martin@gnome.org>
18485
18486         * debug-mono-symfile.c: Don't emit methods and line numbers for
18487         the dynamic symbol file, just write the type table.  We can easily
18488         have an external helper program which creates a symbol file for an
18489         IL file.        
18490
18491 2002-10-01  Dick Porter  <dick@ximian.com>
18492
18493         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
18494         Only add the handle to the cleanup array when we're about to
18495         launch the thread.  Bug 31425 deadlocked when the test was run on
18496         mono under w32.
18497
18498 2002-10-01  Martin Baulig  <martin@gnome.org>
18499
18500         * debug-mono-symfile.c: Added support for properties.
18501
18502 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18503
18504         * reflection.c: unaligned store fix from Mark Crichton
18505         <crichton@gimp.org>.
18506
18507 2002-09-27  Martin Baulig  <martin@gnome.org>
18508
18509         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
18510         New interncall.
18511
18512 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18513
18514         * assembly.h, assembly.c: use a sane API to hook into the assembly
18515         loading process instead of a useless special-purpouse hack
18516         (ngen needs a hook, too, for example).
18517
18518 2002-09-27  Dick Porter  <dick@ximian.com>
18519
18520         * threads.c (mono_thread_init): Call GetCurrentProcess() so
18521         io-layer can set up some process handle info.  Not needed on w32,
18522         but doesn't hurt either.
18523
18524         * process.c: Pass the program name in the second parameter to
18525         CreateProcess, so the path is searched.  Include the working
18526         directory. Implemented process name, process enumeration, and some
18527         process detail internal calls.
18528         
18529         * icall.c: Added internal calls for process lookup, and some
18530         process details
18531
18532 2002-09-26  Martin Baulig  <martin@gnome.org>
18533
18534         * assembly.c (mono_install_open_assembly_hook): New global
18535         function to install a function to be invoked each time a new
18536         assembly is loaded.
18537         (mono_assembly_open): Run this callback function if set.
18538
18539         * debug-mono-symfile.c: Put back line numbers for the dynamic
18540         symbol file and also record the .il file as source file.  This
18541         allows us to install the temporary symbol file as `file.dbg' just
18542         like a compiler-generated one.
18543
18544 2002-09-26  Nick Zigarovich <nick@chemlab.org>
18545
18546         * Corrected typo in gc.c (BOHEM vs BOEHM).
18547
18548 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18549
18550         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
18551         GetProperties. Also avoid calling g_slist_length in GetProperties and
18552         GetMethods.
18553
18554 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18555
18556         * reflection.c: avoid unaligned stores (bug spotted by
18557         Mark Crichton  <crichton@gimp.org>).
18558
18559 2002-09-25  Martin Baulig  <martin@gnome.org>
18560
18561         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
18562         instead of guint64 for addresses and added prologue/epilogue info.
18563
18564 2002-09-25  Martin Baulig  <martin@gnome.org>
18565
18566         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
18567         store line number info.  For the dynamic symbol file, we only need
18568         to provide the JIT generated dynamic line number info for the dynamic
18569         symbol file.
18570
18571 2002-09-25  Martin Baulig  <martin@gnome.org>
18572
18573         * debug-mono-symfile.h: Incremented version number.
18574
18575 2002-09-24  Martin Baulig  <martin@gnome.org>
18576
18577         * class.c (mono_debugger_class_init_func): New global function
18578         pointer variable.
18579         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
18580         call it.
18581
18582         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
18583         function.  This is called via the mono_debugger_class_init_func
18584         hook to add all types to the dynamic type table.
18585         (ves_icall_MonoDebugger_GetType): New interncall to get a class
18586         from its metadata token.
18587
18588         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
18589         New interncall for the debugger.
18590
18591 2002-09-24  Nick Drochak <ndrochak@gol.com>
18592
18593         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
18594         before using it in case it is null.
18595         
18596 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18597
18598         * metadata.c: allow custom modifiers in local var signatures
18599         (bug spotted by Zoltan Varga).
18600
18601 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18602
18603         * class.c: deal with the <Module> class that may have a NULL vtable.
18604         Eliminate warnings.
18605
18606 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18607
18608         * image.c, image.h: more strong name helpers.
18609         * monosn.c: more work: convert pem keys to cryptoapi format.
18610
18611 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18612
18613         * string-icalls.c: speedup IndexOf.
18614
18615 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18616
18617         * icall.c: updates from Zoltan.2.Varga@nokia.com.
18618
18619 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18620
18621         * icall.c: cleanup: use mono_object_domain ().
18622
18623 2002-09-23  Martin Baulig  <martin@gnome.org>
18624
18625         * debug-mono-symfile.c: Improved type support.
18626
18627 2002-09-22  Martin Baulig  <martin@gnome.org>
18628
18629         * debug-mono-symfile.c: Added support for reference types and strings.
18630
18631 2002-09-22  Martin Baulig  <martin@gnome.org>
18632
18633         * debug-mono-symfile.c: Started to work on the type table.
18634
18635 2002-09-21  Martin Baulig  <martin@gnome.org>
18636
18637         * debug-mono-symfile.c: Largely reworked the symbol table format.
18638         The symbol table is now incrementally updated each time a new
18639         method is added.  We're now also using our own magic and version
18640         so that you don't need to recompile all your classes if the
18641         dynamic table changes.
18642         (mono_debug_update_mono_symbol_file): Removed.
18643         (mono_debug_symfile_add_method): New function to add a method.
18644
18645 2002-09-21  Martin Baulig  <martin@gnome.org>
18646
18647         * icall.c
18648         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
18649         New interncall.
18650
18651         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
18652         New interncall to get a method from its metadata token.
18653
18654 2002-09-21  Martin Baulig  <martin@gnome.org>
18655
18656         * debug-mono-symfile.c: Create type table.
18657
18658 2002-09-20  Martin Baulig  <martin@gnome.org>
18659
18660         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
18661
18662 2002-09-20  Martin Baulig  <martin@gnome.org>
18663
18664         * debug-mono-symfile.c: Provide information about params and locals.
18665
18666 2002-09-20  Martin Baulig  <martin@gnome.org>
18667
18668         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
18669         New interncall.
18670
18671         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
18672         interncall to get a method from its metadata token.
18673
18674 2002-09-20  Martin Baulig  <martin@gnome.org>
18675
18676         * debug-mono-symfile.c: Added a few checks for method->header
18677         being non-NULL.  This should never happen, but for the moment
18678         let's use a g_warning() rather than a g_assert().
18679
18680 2002-09-19  Mark Crichton  <crichton@gimp.org>
18681
18682         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
18683         even if support for it isn't present.  Added an #ifdef to fix this.
18684
18685         * socket-io.c: Added checks back for Solaris support.
18686
18687 2002-09-19  Martin Baulig  <martin@gnome.org>
18688
18689         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18690         changes in the symbol file format.
18691
18692 2002-09-18  Martin Baulig  <martin@gnome.org>
18693
18694         * debug-mono-symfile.c: Set version number to 21.
18695
18696 2002-09-18  Dick Porter  <dick@ximian.com>
18697
18698         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18699         on netbsd.  Fixes bug 30051.
18700
18701 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18702
18703         * reflection.c:
18704         (set_version_from_string): little fix.
18705
18706 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18707
18708         * monosn.c, Makefile.am: added strong name utility.
18709         * reflection.h, reflection.c: implemented delayed signing,
18710         locale, version and hash id assembly attributes.
18711
18712 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18713
18714         * loader.c, metadata.c: load param attributes in signatures.
18715
18716 2002-09-16  Martin Baulig  <martin@gnome.org>
18717
18718         * debug-mono-symfile.c: Added string table with all method names.
18719
18720 2002-09-14  Martin Baulig  <martin@gnome.org>
18721
18722         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
18723         fast method lookup.
18724
18725 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18726
18727         * reflection.c: record the public key token of referenced assemblies.
18728
18729 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18730
18731         * image.c, image.h: added functions to get the strong name and the
18732         public key of an assembly.
18733         * pedump.c: use them.
18734
18735 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
18736
18737         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
18738
18739 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
18740
18741         * marshal.c (mono_marshal_get_managed_wrapper): Added
18742         MONO_TYPE_BOOLEAN 
18743
18744 2002-09-11  Martin Baulig  <martin@gnome.org>
18745
18746         * gc.c: Call GC_unregister_disappearing_link() on all links when
18747         finalizing them, this is necessary to aviod a crash in boehm's
18748         finalize handler.
18749
18750 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18751
18752         * gc.c: handle GetTarget for finalized objects spotted and fixed by
18753         nick@chemlab.org.
18754
18755 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18756
18757         * icall.c: implemented MonoType::Module.
18758         * reflection.c, reflection.h: mono_module_get_object () from
18759         Tomi Pakarinen <tomi.pakarinen@welho.com>.
18760
18761 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18762
18763         * icall.c: ignore overridden methods in GetMethods ().
18764         Fix for FieldInfo::SetValue().
18765         * object.c: handle float/double in runtime invoke.
18766
18767 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18768
18769         * object.c: allow a constructor to be called again on an object.
18770
18771 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18772
18773         * class.h, class.c: move field layout code to it's own function and
18774         export it. Get an interface id earlier. Move fields in MonoClass
18775         so they are more cache friendly and align the bitfields.
18776         * loader.c: temporary handle get_param_names() for a runtime method.
18777         * reflection.c, reflection.h: more code to handle runtime creation of
18778         types.
18779
18780 2002-09-09  Martin Baulig  <martin@gnome.org>
18781
18782         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
18783         signature with the pinvoke field being set for the actual call.
18784
18785 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18786
18787         * icall.c: removed some unused icalls. Start of map of glib charsets
18788         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
18789
18790 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18791
18792         * debug-helpers.c: break infinite loop (found and fixed by
18793         Holger Arnold <harnold@gmx.de>).
18794
18795 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18796
18797         * icall.c: target may be null in create_delegate.
18798
18799 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18800
18801         * marshal.c: handle a boolean return type.
18802
18803 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18804
18805         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
18806
18807 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18808
18809         * gc.c: fix weakreferences.
18810
18811 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18812
18813         * icall.c: added icall to get default codepage.
18814
18815 2002-09-03  Dick Porter  <dick@ximian.com>
18816
18817         * threads.h: 
18818         * threads.c: Use MonoThread instead of MonoObject where
18819         apropriate.
18820
18821         Store running thread objects in a hash table, so that we have all
18822         the info to hand when waiting for them to finish
18823         (means we don't need OpenThread() any more, so mingw builds should
18824         be fully functional again.)
18825
18826         * verify.c:
18827         * object.h: Added thread ID to MonoThread
18828
18829 2002-09-03  Martin Baulig  <martin@gnome.org>
18830
18831         * icall.c (System.Reflection.Assembly::get_location): New interncall.
18832
18833 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18834
18835         * icall.c: fixed leak in get_temp_path. Thanks lupus.
18836
18837 2002-09-03  Martin Baulig  <martin@gnome.org>
18838
18839         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
18840         argument to store the end address of the disassembled instruction.
18841
18842         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
18843         here from debug-symfile.h.
18844         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
18845         JIT into this struct.
18846         (MonoSymbolFile): Added `char *image_file' field.
18847         (MonoDebugGetMethodFunc): Removed.
18848         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
18849         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
18850         (mono_debug_find_method): New method.
18851
18852         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
18853         create a full symbol file.
18854         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18855         and static symbol files.
18856         (mono_debug_find_method): The symbol file keeps an internal method hash,
18857         call this to get a MonoDebugMethodInfo from a MonoMethod.
18858
18859         * debug-symfile.[ch]: Removed.
18860
18861 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18862
18863         * image.c (do_mono_image_open): Remove linker version check.
18864
18865 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18866
18867         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18868         wrappers for instance methods.
18869         
18870 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18871
18872         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18873
18874 2002-08-28  Dick Porter  <dick@ximian.com>
18875
18876         * Makefile.am: Export HOST_CC for w32 builds
18877
18878 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18879
18880         * file-io.c process.c: MonoString are null terminated, no
18881         need for mono_string_to_utf16() anymore.
18882
18883 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18884
18885         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18886
18887 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18888
18889         * icall.c, reflection.h: speedup System.MonoType.
18890
18891 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18892
18893         * reflection.c: allow null as the value of a string argument in
18894         custom attributes constructors.
18895
18896 2002-08-27  Martin Baulig  <martin@gnome.org>
18897
18898         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18899         `trampoline_address' field.
18900
18901 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18902
18903         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18904         check (fixes bug #29486) 
18905
18906 2002-08-27  Martin Baulig  <martin@gnome.org>
18907
18908         * debug-mono-symfile.c: Changed the file format in a way that allows us
18909         open it read-only and to use a specially malloced area for all the
18910         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18911         debugging IL code and there is no MCS generated symbol file for it.
18912
18913 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18914
18915         * object.c: added a define for a good string and array
18916         creation speedup (not enabled by default because we need to deal with
18917         the synch stuff).
18918
18919 2002-08-26  Martin Baulig  <martin@gnome.org>
18920
18921         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18922         function to create a dynamic symbol file.  This is used by the
18923         debugger to create a symbol file for IL code on-the-fly.
18924
18925 2002-08-26  Martin Baulig  <martin@gnome.org>
18926
18927         * loader.c (mono_lookup_pinvoke_call): Include the error message
18928         from g_module_error() in the error message.
18929
18930 2002-08-24  Martin Baulig  <martin@gnome.org>
18931
18932         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18933         function to update the symbol file.  The symbol file is mmap()ed
18934         writable, but private.  This allows us to install the symbol file
18935         together with the assembly.
18936
18937 2002-08-24  Martin Baulig  <martin@gnome.org>
18938
18939         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18940         but they can read the new symbol file format which mcs is now creating.
18941
18942         * debug-symfile.c (mono_debug_find_source_location): Moved to
18943         debug-mono-symfile.c; this is now operating on the new symbol file.
18944
18945 2002-08-23  Martin Baulig  <martin@gnome.org>
18946
18947         * debug-helpers.c (mono_method_desc_from_method): New function to get
18948         a MonoMethodDesc from a MonoMethod.
18949
18950 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18951
18952         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18953         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18954
18955 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18956
18957         * string-icalls.[ch]: make helper methods static.
18958
18959 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18960
18961         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18962         types to it and to SetValueInternal.
18963
18964         * object.c: Moved handle_enum label to its proper place. This was the
18965         f... bug! ;-)
18966
18967         This time i compiled mcs and gtk-sharp and they both work.
18968
18969 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18970
18971         * icall.c: reverted partially my previous patch until 
18972         object.c:set_value handles enums correcly.
18973
18974 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18975
18976         * icall.c:
18977         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18978         (ves_icall_System_Environment_get_MachineName): removed warning when
18979         compiling under cygwin.
18980
18981 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18982
18983         * object.c: fixed field_get_value() for reference types.
18984
18985 2002-08-22  Dick Porter  <dick@ximian.com>
18986
18987         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18988         Don't free a buffer while it's still needed.  Patch from Jonathan
18989         Liger <Jonathan.liger@wanadoo.fr>
18990
18991 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18992
18993         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18994         internal call.
18995
18996 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18997
18998         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18999         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
19000
19001         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
19002         we call unmanaged code which throws exceptions.
19003
19004 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19005
19006         * appdomain.h: added per-domain entry_assembly.
19007         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
19008         arguments.
19009         * icall.c: Assembly::GetEntryAssembly icall.
19010         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
19011         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
19012
19013 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19014
19015         * appdomain.h, gc.c: added mono_domain_finalize ().
19016
19017 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19018
19019         * object.c:
19020         (mono_print_unhandled_exception): changed g_warning by g_printerr
19021         because g_log has a 1024 characters limit (yeah, i got a big stack
19022         trace). Don't print exception name, that should be in ToString 
19023         returned string.
19024
19025 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19026
19027         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
19028         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
19029
19030 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19031
19032         * object.c:
19033         (mono_print_unhandled_exception): after previous commit, i realized
19034         that MS calls ToString on the exception. I changed this function to
19035         do that. This way we get stack_trace for free.
19036
19037 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19038
19039         * object.c:
19040         (mono_print_unhandled_exception): invoke Message property instead of
19041         getting 'message' field from Exception. Don't allocate memory for
19042         'trace' and 'message' if not needed.
19043
19044 2002-08-18  Dick Porter  <dick@ximian.com>
19045
19046         * unicode.c: Fix asserts to match Encoder.cs checks
19047
19048 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19049
19050         * marshal.c: fix unaligned store issue and a few wrong
19051         opcode argument types.
19052
19053 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19054
19055         * icall.c: added GetUninitializedObjectInternal internal call.
19056
19057 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
19058
19059         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
19060         to the right domain.
19061
19062 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
19063
19064         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
19065
19066         * class.c (class_compute_field_layout): set blittable to false for Strings
19067
19068         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
19069
19070 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19071
19072         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
19073         first chunk of code to create types at runtime. Code to
19074         handle ReflectedType/DeclaringType. Make reflection handles
19075         domain specific.
19076
19077 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19078
19079         * class.c: set correct name in arrays.
19080
19081 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
19082
19083         * appdomain.c (mono_domain_transfer_object): make it work with
19084         valuetypes. bug fixes.
19085
19086 2002-08-12  Dick Porter  <dick@ximian.com>
19087
19088         * object.h: Rename some parameters to avoid c++ keywords (Patch
19089         from Joseph Wenninger <kde@jowenn.at>)
19090
19091 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
19092
19093         * icall.c: added icall to implement Assembly.GetFile*.
19094
19095 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19096
19097         * reflection.h, reflection.c: code to embed managed resources.
19098
19099 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19100
19101         * class.c: move all the type size stuff into
19102         class_compute_field_layout().
19103
19104 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19105
19106         * class.c: ensure enums have always the correct instance size.
19107         * unicode.c: remove wrong assert.
19108
19109 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19110
19111         * assembly.c: fix mem corruption issue.
19112         * image.h, image.c: added mono_image_get_resource () to access
19113         managed resources.
19114         * icall.c: implemented Assembly.EntryPoint property and some
19115         Managed Resources related internalcalls.
19116
19117
19118 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19119
19120         * image.c, image.h: impemented mono_image_get_entry_point ().
19121         * appdomain.c: use mono_image_get_entry_point.
19122
19123 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19124
19125         * reflection.c: support the object type argument when loading
19126         custom attributes.
19127
19128 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
19129
19130         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
19131         String as return type.
19132
19133 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
19134
19135         * reflection.c: fix encoding of named args for custom attrs to match
19136         the ms implementation. Read them back when instantiating custom
19137         attributes.
19138
19139 2002-08-02  Radek Doulik  <rodo@ximian.com>
19140
19141         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
19142         by Dietmar as quick fix
19143         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
19144         16 as stack size, used on more places as quick fix before Dietmar
19145         will fix it properly
19146
19147 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
19148
19149         * object.h, object.c: added accessors for fields and properties.
19150
19151 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
19152
19153         * class.c, class.h: made mono_class_get_field_from_name ()
19154         loop on parent types.
19155         Added mono_class_get_property_from_name ().
19156
19157 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19158
19159         * class.c, class.h: move the code to setup the type vtable in its own
19160         function so that it can be reused also for types created at runtime.
19161         Eliminate the "class" identifier from the header file.
19162         * reflection.c: setup the vtable for enums so that we can create
19163         objects for use in SetConstant ().
19164
19165 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
19166
19167         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
19168         instead of the delegate itself as this pointer (bug #28383)
19169
19170 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
19171
19172         * marshal.c (mono_marshal_get_managed_wrapper): added return type
19173         conversions.
19174
19175 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19176
19177         * loader.c: don't set the pinvoke bit on icalls.
19178
19179 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
19180
19181         * debug-helpers.c (mono_method_full_name): only print a number to
19182         indicate wrapper type (so that the output is more readable in traces).
19183
19184 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
19185
19186         * class.c (mono_class_init): include method override patch from Paolo
19187
19188 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
19189
19190         * icall.c: fixed GetTypeCode().
19191
19192 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
19193
19194         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
19195         use real delegate invoke function to make it work with multicast
19196         delegates (fix bug# 28291).
19197
19198 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19199
19200         * object.c: load constant strings.
19201
19202 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19203
19204         * reflection.c: no magic numbers.
19205         * tabledefs.h: security action enum.
19206
19207 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19208
19209         * assembly.c: fix possible memory corruption.
19210
19211 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19212
19213         * reflection.h, reflection.c: added support for linking resources.
19214         * verify.c: check we have an updated corlib.
19215
19216 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
19217
19218         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
19219         string arrays.
19220         (mono_marshal_string_array): null terminate unmanaged string arrays.
19221         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
19222
19223 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19224
19225         * icall.c: Type.GetType () can now return also types from the
19226         calling assembly.
19227
19228 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19229
19230         * loader.h, loader.c: stack walking support.
19231         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
19232         GetCallingAssembly.
19233
19234 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
19235
19236         * marshal.c: added optimisations for blittable types 
19237
19238         * class.c (mono_array_class_get): do not set blittable attribute on arrays
19239         (mono_class_setup_mono_type): set blittable attribute for single
19240         and double.
19241
19242         * marshal.c (mono_string_utf8_to_builder): impl.
19243         (mono_string_builder_to_utf8): impl.
19244         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
19245
19246 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
19247
19248         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
19249         (mono_marshal_get_managed_wrapper): impl. byref types
19250
19251 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19252
19253         * icall.c:
19254         (search_method): don't display debug message. 
19255
19256 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19257
19258         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
19259
19260 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
19261
19262         * appdomain.c: set the missing filename when throwing exception.
19263
19264 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
19265
19266         * metadata.c (mono_type_size): code cleanup
19267         (mono_type_stack_size): removed some test code
19268
19269 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
19270
19271         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
19272         mono_get_exception_file_not_found now.
19273
19274         * exception.c (mono_exception_from_name_two_strings): New version
19275         that will call a constructor with two string arguments. 
19276         (mono_get_exception_file_not_found): New helper routine, used to
19277         report file-not-found errors.
19278
19279 2002-07-20  Dick Porter  <dick@ximian.com>
19280
19281         * process.h:
19282         * process.c: Pass file handles to CreateProcess
19283         
19284         * icall.c:
19285         * file-io.h:
19286         * file-io.c: Implemented CreatePipe
19287
19288 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19289
19290         * metadata.c (mono_get_param_info): set alignment for value types
19291
19292 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19293
19294         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
19295         Constify mono_domain_assembly_open().
19296         * loader.c: handle null namespace in icalls.
19297
19298 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
19299
19300         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
19301         (emit_str_to_ptr_conv): marshal object as structs
19302
19303         * metadata.c (mono_type_to_unmanaged): marshal object as structs
19304
19305         * marshal.c (mono_marshal_get_runtime_invoke): support value types
19306
19307 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
19308
19309         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
19310         (mono_marshal_get_native_wrapper): we an now return value types
19311
19312 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19313
19314         * verify.c: more checks implemented.
19315
19316 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
19317
19318         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
19319         (fix bug #27695)
19320         (mono_marshal_get_native_wrapper): allow byref arguments
19321         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
19322         impl. PtrToStringXXX methods
19323         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
19324         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
19325         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
19326         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
19327         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
19328
19329 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19330
19331         * reflection.c: fix buglet in parsing an assembly name.
19332
19333 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19334
19335         * marshal.c (emit_ptr_to_str_conv): first impl.
19336
19337 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19338
19339         * object.c, class.h: cache the vtable in the class as suggested by
19340         vargaz@freemail.hu (Zoltan Varga).
19341
19342 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19343
19344         * class.h, loader.c: added mono_field_from_token().
19345         * verify.c: first cut of type checking code.
19346
19347 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
19348
19349         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
19350
19351 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
19352
19353         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
19354         (fix bug #27782)
19355         (mono_marshal_get_remoting_invoke): impl.
19356         (mono_delegate_begin_invoke): impl.
19357         (mono_mb_emit_save_args): impl.
19358         (mono_delegate_end_invoke): impl.
19359         (mono_marshal_get_delegate_begin_invoke):
19360         (mono_marshal_get_delegate_end_invoke):
19361         (mono_marshal_get_delegate_invoke): generate a special name for
19362         those methods (including the signature) and associate them whith
19363         the delegate class. 
19364
19365 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
19366
19367         * reflection.[ch]: 
19368         (mono_reflection_type_from_name): now it has a MonoImage parameter
19369         which is used as the default image to search the type in. If the image
19370         is NULL or getting the type from it fails, it defaults to corlib.
19371
19372         * icall.c: changed 1 call to mono_reflection_type_from_name to match
19373         new parameter.
19374
19375 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19376
19377         * reflection.c: update the parameter table index.
19378
19379 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19380
19381         * domain.c: don't include the mark byte in the string hash.
19382
19383 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19384
19385         * icall.cs: icall for Type.GetTypeCode ().
19386         * verify: a couple of fixes and disabled local initialization checks.
19387
19388 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
19389
19390         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
19391
19392         * debug-helpers.c (mono_method_full_name): print the type of the
19393         runtime wrapper
19394
19395         * metadata.c (mono_signature_hash): a hash function for signatures
19396         (mono_signature_hash): better hash algorithm
19397
19398         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
19399
19400         * debug-helpers.c (mono_method_full_name): this can now generate
19401         method names with signatures
19402
19403         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
19404         method dont have this pointers.
19405
19406 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19407
19408         * reflection.c: fixup typebuilder tokens.
19409         * image.c: fix buglet.
19410         * marshal.h: remove whitespace.
19411         * metadata.h, metadata.c: reinstate code that was removed.
19412         * verify.c: handle catch directives and fix another couple of bugs.
19413
19414 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
19415
19416         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
19417         (mono_marshal_get_native_wrapper): make it comp. with the old code
19418         (mono_marshal_get_native_wrapper): support boolean
19419         (mono_marshal_get_managed_wrapper): support more types
19420
19421 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
19422
19423         * class.c (class_compute_field_layout): compute class->blittable attribute.
19424
19425 2002-07-09  Dick Porter  <dick@ximian.com>
19426
19427         * threads.c: Make the thread cleaning up cope with threads that
19428         call ExitThread()
19429
19430 2002-07-08  Radek Doulik  <rodo@ximian.com>
19431
19432         * reflection.c (method_encode_code): use non-translated values to
19433         compute finally_start, this fixes exception handling on ppc, yay!
19434
19435         * decimal.h (struct signscale): fix endianess
19436
19437 2002-07-07  Radek Doulik  <rodo@ximian.com>
19438
19439         * reflection.c: swap box_val and not val
19440
19441 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19442
19443         * reflection.c, reflection.h: handle full assembly info in type name.
19444         Handle Type arguments when loading custom attributes.
19445         * icall.c: updated to use new mono_reflection_type_from_name () method.
19446
19447 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19448
19449         * loader.c:
19450         (method_from_memberref): also print assembly name when method not found.
19451
19452 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19453
19454         * icall.c:
19455         (ves_icall_TypeGetProperties): fixed bug #27473. 
19456
19457 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19458
19459         * reflection.c: display image name and token when cannot find the
19460         .ctor for an attribute.
19461
19462 2002-07-05  Martin Baulig  <martin@gnome.org>
19463
19464         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19465
19466 2002-07-04  Dick Porter  <dick@ximian.com>
19467
19468         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
19469         compile on mingw.  This will cause mingw builds to not wait for
19470         subthreads to terminate after the main thread does.  I've lodged a
19471         bug with the mingw developers for them to wrap OpenThread().
19472
19473 2002-07-03  Dick Porter  <dick@ximian.com>
19474
19475         * threads.c: Store thread IDs instead of handles, because
19476         GetCurrentThread() returns a pseudohandle and therefore stores
19477         useless values.  mono_thread_cleanup() continues checking the
19478         array of threads until it is empty, to cope with subthreads
19479         spawning new threads after the main thread has finished.
19480
19481         * profiler.h:
19482         * profiler.c:
19483         * profiler-private.h: Pass the thread ID to thread profiler
19484         functions, instead of a handle
19485
19486 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19487
19488         * verify.c: fixes to make it more usable.
19489         * pedump.c: added --verify code to verify IL code in an assembly.
19490
19491 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19492
19493         * reflection.c: turn errors into warnings to allow compiling corlib.
19494
19495 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
19496
19497         * reflection.c: add special cases to compile corlib.
19498
19499 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19500
19501         * reflection.c: handle properties with only a set method.
19502
19503 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19504
19505         * opcodes.h: add enum with opcodes in opval order.
19506
19507 2002-07-01  Dick Porter  <dick@ximian.com>
19508         
19509         * object.h:
19510         * object.c (mono_runtime_run_main): Removed unneeded argument
19511
19512 2002-06-28  Martin Baulig  <martin@gnome.org>
19513
19514         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
19515
19516 2002-06-27  Dick Porter  <dick@ximian.com>
19517
19518         * threads.c: Store the handle in both the parent thread and in the
19519         subthread, to minimise the time between starting a new thread and
19520         storing its ID.
19521
19522 2002-06-26  Dick Porter  <dick@ximian.com>
19523
19524         * appdomain.c (mono_runtime_cleanup): Close the socket library
19525         after all the threads have finished, not before
19526
19527 2002-06-26  Martin Baulig  <martin@gnome.org>
19528
19529         * debug-symfile.c (mono_debug_find_source_location): Added
19530         `guint32 *line_number' argument.  If it's not NULL, store the line number
19531         there and return the file name without the line number.
19532
19533 2002-06-25  Dick Porter  <dick@ximian.com>
19534
19535         * icall.c:
19536         * process.h:
19537         * process.c: Process forking and other support functions
19538
19539 2002-06-25  Dick Porter  <dick@ximian.com>
19540
19541         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
19542         things dont happen when the image is closed.
19543         (mono_image_lookup_resource): Walk the resource section looking
19544         for a particular entry
19545
19546         * cil-coff.h: PE resource section decoding
19547
19548 2002-06-25  Dick Porter  <dick@ximian.com>
19549         
19550         * assembly.h:
19551         * assembly.c: 
19552         (mono_assembly_foreach): Accessor functions to walk the list of
19553         loaded assemblies
19554         (mono_assembly_set_main):
19555         (mono_assembly_get_main): Process methods need to know which
19556         assembly is the "main" one
19557
19558         * object.c (mono_runtime_run_main): Record the main assembly
19559
19560         * debug-helpers.c: Fix typo
19561
19562 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
19563
19564         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
19565         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
19566
19567 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19568
19569         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
19570
19571 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
19572
19573         * image.c (do_mono_image_open): Initialize reference count,
19574         otherwise we leak the MonoImage.
19575
19576 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19577
19578         * reflection.c: small tweak to handle self-hosting.
19579
19580 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
19581
19582         * reflection.c: fix type name parse code.
19583
19584 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19585
19586         * reflection.c: break out of the loop.
19587         * image.c: special case corlib.
19588
19589 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19590
19591         * reflection.c: add all the custom attrs at the end to ensure the
19592         ctors have been properly initialized when the attributes are defined
19593         in the current assembly.
19594
19595 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19596
19597         * reflection.c: handle correctly multiple-nested types.
19598
19599 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
19600
19601         * row-indexes.h: fix typos.
19602         * reflection.c: adjust for typos and fix method_def_or_ref
19603         encoding in MethodImpl table.
19604
19605 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19606
19607         * reflection.c: fix entry point patching (thanks Serge!).
19608
19609 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
19610
19611         * verify.c: add check for System.Exception
19612
19613 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
19614
19615         * image.c, class.c: minifix for code just c&p'ed.
19616         * reflection.c: warning fix.
19617         * object.h, loader.h, domain.c: load also StringBuilder.
19618
19619 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
19620
19621         * marshal.h, marshal.c: some support code to handle complex marshaling.
19622
19623 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19624
19625         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
19626         Better signatures with vtable error dump.
19627
19628 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
19629
19630         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
19631
19632 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
19633
19634         * icall.c (ves_icall_Type_GetField): impl.
19635
19636 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19637
19638         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
19639         to retrieve a marshal description blob for a field or param.
19640
19641 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
19642
19643         * reflection.h, reflection.c: change order of nested type emission
19644         to avoid table corruption. The NestedTypes table is sorted.
19645         * icall.c: change order of GetConstructor results to workaround mcs bug.
19646
19647 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19648
19649         * reflection.h, reflection.c: handle field and param marshal
19650         information.
19651
19652 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19653
19654         * icall.c, marshal.c marshal.h: more Marshal class implementation.
19655
19656 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19657
19658         * reflection.c: fix call convention.
19659
19660 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19661
19662         * reflection.h, reflection.c: mono_image_get_memberref_token()
19663         takes a type instead of a class, now. Added
19664         mono_image_get_array_token() to create tokens for the special
19665         multi-dim array methods.
19666
19667 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19668
19669         * assembly.c: handle modules (no assembly table). Split
19670         loading references in its own function.
19671         * class.c: handle moduleref resolution scope.
19672         * image.c, image.h: cache module name in image.
19673
19674 2002-06-07  Martin Baulig  <martin@gnome.org>
19675
19676         * reflection.c (mono_image_get_type_info): Only add a class layout entry
19677         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
19678
19679 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19680
19681         * icall.c: more signature fixes that used uint instead of int.
19682
19683 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19684
19685         * reflection.c: fixed signature of field refs.
19686
19687 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19688
19689         * class.c, reflection.c: handle typerefs of nested types
19690         (both on read and when writing files).
19691
19692 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19693
19694         * icall.c: fix method signatures that tried to workaround the previous
19695         typo, d'oh!
19696
19697 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19698
19699         * debug-helpers.c: fix typo.
19700
19701 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19702
19703         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19704         rewrote the PE/COFF writing code (our programs are understood by the
19705         ms runtime, now).
19706
19707 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19708
19709         * gc.c, gc.h, icall.c: weakreference support.
19710
19711 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19712
19713         * Makefile.am, mono-config.c: use $(sysconfdir).
19714
19715 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19716
19717         * icall.c: changed default precision of Double.ToString() to 15.
19718         Fixed memory leak. Unified with Single.ToString.
19719
19720 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19721
19722         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
19723
19724 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19725
19726         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
19727         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
19728         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
19729         and myself.
19730
19731 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19732
19733         * debug-symfile.c, sysmath.c: yet more compilation fixes.
19734
19735 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19736
19737         * reflection.c, socket-io.c: more compilation fixes.
19738
19739 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19740
19741         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
19742         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
19743         unicode.c: warning and compiler compatibility fixes.
19744
19745 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19746
19747         * class.h, metadata.c: fixed warnings/compilation errors.
19748
19749 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19750
19751         * Makefile.am, mono-config.c, mono-config.h: configuration file
19752         support routines.
19753         * loader.c, loader.h: make Dll mapping configurable at runtime in the
19754         config file. Export methods to insert and lookup mappings.
19755
19756 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19757
19758         * reflection.c: handle types and boxed objects in custom attr
19759         constructors.
19760
19761 2002-05-30  Martin Baulig  <martin@gnome.org>
19762
19763         * debug-symfile.c
19764         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
19765
19766 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
19767
19768         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
19769         to lookup the implmap row for a P/Invoke method.
19770         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
19771         P/Invoke method from the runtime on an as needed basis.
19772
19773 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
19774
19775         * metadata.c (mono_metadata_parse_signature): impl.
19776
19777 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19778
19779         * class.c: handle .pack directive.
19780
19781 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19782
19783         * object.c: initialize static fields with RVA data.
19784
19785 2002-05-25  Martin Baulig  <martin@gnome.org>
19786
19787         * debug-symfile.c
19788         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
19789
19790 2002-05-24  Martin Baulig  <martin@gnome.org>
19791
19792         * debug-symfile.c
19793         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
19794         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
19795         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
19796
19797 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19798
19799         * object.c: special case string ctros in invoke.
19800         * gc.c: silly whitespace changes.
19801
19802 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
19803
19804         * threadpool.[ch]: impl. a threadpool that can
19805         be used by mint and mono.
19806
19807 2002-05-22  Martin Baulig  <martin@gnome.org>
19808
19809         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
19810         The first argument is now a `MonoReflectionModuleBuilder *', the return
19811         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
19812         `methods' field to get the method builder.  The `token' argument is the
19813         unfixed token.
19814
19815         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
19816         invalid characters instead of g_assert_not_reached()ing.  This seems
19817         to be the behaviour of mscorlib.
19818
19819 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
19820
19821         * object.c (mono_runtime_invoke_array): applied patch from Rachel
19822         Hestilow to fix bug #25104
19823
19824 2002-05-21  Martin Baulig  <martin@gnome.org>
19825
19826         * debug-symfile.c (mono_debug_find_source_location): New function.
19827         Looks up an IL offset in the line number table and returns the source
19828         location as a string.
19829
19830 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19831
19832         * icall.c:
19833         (mono_double_ToStringImpl): changed %f by %g until we have something
19834         better.
19835
19836 2002-05-21  Nick Drochak  <ndrochak@gol.com>
19837
19838         * icall.c : Use different name for Math.Pow's icall.  Needed to check
19839         parameters first in C#.
19840
19841 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19842
19843         * icall.c, reflection.h: added icall to get info about an event.
19844
19845 2002-05-20  Radek Doulik  <rodo@ximian.com>
19846
19847         * object.c (mono_value_box): don't use memcpy for boxing on BIG
19848         endian
19849         (mono_value_box): don't use memcpy for small sizes on
19850         architectures with unaligned access
19851
19852 2002-05-20  Martin Baulig  <martin@gnome.org>
19853
19854         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19855         if `tb->parent == NULL'.
19856         (mono_reflection_create_internal_class): New function.  This is
19857         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19858         for enum types.
19859
19860         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19861         New interncall.
19862
19863 2002-05-19  Martin Baulig  <martin@gnome.org>
19864
19865         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19866         argument to get the length, don't default to the array length.
19867
19868 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19869
19870         * assembly.c (mono_assembly_setrootdir): New function used to
19871         override the MONO_ASSEMBLIES directory.
19872
19873 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19874
19875         * icall.c: ValueType_GetHashCode() initialize local var.
19876
19877 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19878
19879         * reflection.c: sort custom attributes table.
19880
19881 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19882
19883         * reflection.c: support named args in custom attributes (write support).
19884
19885 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19886
19887         * reflection.c: fix finally position calculation.
19888
19889 2002-05-15  Radek Doulik  <rodo@ximian.com>
19890
19891         * reflection.c: fixed endianess at many places
19892
19893         * icall.c (ves_icall_InitializeArray): comment out debug msg
19894
19895 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19896
19897         * object.c (mono_unhandled_exception): new function to handle
19898         unhandled exceptions.
19899         (mono_unhandled_exception): call the UnhandledException event.
19900         (mono_runtime_delegate_invoke): impl.
19901
19902 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19903
19904         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19905         returns the RVA, not the direct pointer to the data. Handle the case
19906         when the class size is fixed.
19907
19908 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19909
19910         * reflection.c: fix some endianess issues.
19911
19912 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19913
19914         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19915
19916         * threads.c (mono_thread_init): added a callback which is invoked
19917         at thread start.
19918
19919 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19920         
19921         * icall.c: make GetHashCode return non-negative values.
19922
19923 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19924
19925         * object.c, icall.c, gc.c: revert to address-based hashcode.
19926
19927 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19928
19929         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19930
19931 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19932
19933         * icall.c, class.c: special case <Module>.
19934
19935 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19936
19937         * icall.c: fix bug in GetNow().
19938
19939 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19940
19941         * object.c (mono_runtime_class_init): make sure that we call all
19942         static class constructors.
19943
19944 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19945
19946         * reflection.c: sort methodsemantics table.
19947
19948 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19949
19950         * reflection.h, reflection.c: honour init locals setting.
19951
19952 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19953
19954         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19955
19956 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19957
19958         * reflection.c: support ContructorBuilders in attribute blob creation.
19959
19960 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19961
19962         * reflection.c: some changes to build a binary that can be run
19963         directly in windows.
19964
19965 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19966
19967         * loader.c: print a big message when an icall can't be found.
19968
19969 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19970
19971         * string-icalls.c: fix bug 24248.
19972
19973 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19974
19975         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19976         icall.c, reflection.h: separate assembly loading by pathname and by
19977         assembly name. Use the MONO_PATH env var to search for assemblies.
19978
19979 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19980
19981         * assembly.c, image.h: add some support for assemblies
19982         with multiple modules.
19983         * class.c, class.h: export mono_class_from_typeref().
19984         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19985         instead.
19986
19987 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19988
19989         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19990         documentation says (the ECMA one is correct).
19991
19992 2002-05-02  Dick Porter  <dick@ximian.com>
19993
19994         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19995         Don't name the synchronisation mutex.
19996
19997 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19998
19999         * rand.c
20000         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
20001         Make the prototypes match.
20002         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
20003         Same.
20004
20005         * icall.c
20006         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
20007         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
20008         all systems have tm.tm_zone, so use strftime() with %Z to print
20009         the timezone abreviation into a temp string.
20010
20011         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
20012         rather than mono_array_addr() on a MonoString on Big Endian
20013         machines.
20014
20015 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
20016
20017         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
20018         fix bug 24041
20019
20020 2002-04-30  Dick Porter  <dick@ximian.com>
20021
20022         * socket-io.c: Cope with SOCKET being an integer rather than a
20023         pointer now.
20024
20025         * threads.c: Added Thread_free_internal, to deal with thread
20026         handle cleanup.  Moved calls to handle_store() and handle_remove()
20027         to start_wrapper(), so each can only be called once.  Allocate
20028         synchronisation blocks with GC_malloc(), and use GC finalisation
20029         to close the handles.
20030
20031         * icall.c: added System.Threading.Thread::Thread_free_internal
20032
20033 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20034
20035         * icall.c: support Environment.Exit, CommandLineArgs().
20036
20037 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
20038
20039         * object.c, object.h: added mono_runtime_run_main () and
20040         mono_runtime_get_main_args () for use in System.Environment.
20041
20042 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
20043
20044         * gc.c: fix thinko, enable actual finalization since the jit is now
20045         fixed.
20046
20047 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20048
20049         * gc.c, object.c: take into account that an object may be offset wrt the address
20050         returned by GC_malloc().
20051
20052 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
20053
20054         * image.c: handle files without entries in the assembly table (modules).
20055
20056 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
20057
20058         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
20059         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
20060         allowed to be null when it's System.Object class setup.
20061
20062 2002-04-27  Martin Baulig  <martin@gnome.org>
20063
20064         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
20065         if `tb->parent == NULL' rather than crashing.
20066
20067 2002-04-28  Nick Drochak  <ndrochak@gol.com>
20068
20069         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
20070         calling acos() where asin() should have been called.
20071
20072 2002-04-26  Martin Baulig  <martin@gnome.org>
20073
20074         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
20075         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
20076         there's a subdirectory called `System', but we don't want to read that
20077         subdirectory as an assembly.
20078
20079 2002-04-25  Martin Baulig  <martin@gnome.org>
20080
20081         * debug-symfile.c: Reflect latest MonoString changes.
20082
20083 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
20084
20085         * rand.c, rand.h: instance method icalls need to have an explicit
20086         this pointer as first argument in the C implementation.
20087
20088 2002-04-25  Nick Drochak <ndrochak@gol.com>
20089
20090         * icall.c: Fix typo in map for GetNonZeroBytes
20091
20092 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20093
20094         * string-icalls.c : String does now passes unit tests without any 
20095         errors, the following changes has been made:
20096         
20097         Implemented replace methods.
20098         Renaming of methods to (try) follow the standard.
20099         Fixed compare ordinal
20100         Made all memory allocated directly to function instead of via icall function.
20101         Small performance fix in is_in_array function
20102                         
20103  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
20104
20105         c (mono_string_Internal_ctor_charp_int_int):
20106         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
20107         sindex < 0, throw ArgumentOutOfRangeException instead of
20108         ArgumentNullException.
20109
20110         Added new check for length == 0, however
20111         I need to make it return String.Empty from the C code.
20112         
20113         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
20114         that calculate the length for us here.
20115         
20116         (mono_string_Internal_ctor_sbytep_int_int): Replaced
20117         mono_string_new_utf16 with mono_string_new, since value is utf8.
20118
20119 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20120
20121         * object.c: register the object for finalization if needed.
20122         Allocate one more char in the string for the terminating 0 char.
20123
20124 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
20125
20126         * class.c, class.h, image.c: check if a type implemenst a destructor.
20127         Use the proper key for array class lookups.
20128         * icall.c: register the icalls in the System.GC class.
20129         * gc.c, gc.h: GC-related functions and icalls.
20130
20131 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20132
20133         * icall.c:
20134         * socket-io.c:
20135         * unicode.c: free some strings gotten from mono_string_to_utf8 and
20136         changed a couple of free () by g_free ().
20137
20138         * decimal.c: one-liner in the comments for decimal2string ().
20139
20140 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20141
20142         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
20143
20144 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
20145
20146         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
20147         * object.c (mono_runtime_invoke_array) : handle null in params
20148
20149 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20150
20151         * string-icalls.c: fixed bug in split (one off bug)
20152
20153 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20154
20155         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
20156         * icalls.c: added String::Equals as internal method
20157
20158 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
20159
20160         * threads.c: fixed bug in the double interlocked functions
20161
20162 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
20163
20164         * threads.c: implemented all of the new interlocked icalls.
20165         * string-icalls.c: fix a bug in insert.
20166         * icalls.c: added the icalls for interlocked, removed old string functions.
20167         
20168 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20169
20170         * loader.c: fix off-by-one error when reading argument names.
20171
20172 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20173
20174         * profiler.c: win32 counter implementation (untested).
20175         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
20176         (the latter needs testing and more complete impl. from win32 folks).
20177
20178 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
20179
20180         * object.c: mono_array_new_full workaround mono_array_class_get
20181         problem.
20182
20183 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20184
20185         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
20186         * object.h (mono_string_chars): Changed casting type.
20187
20188 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20189
20190         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
20191                            method signatures to use gunichar2 instead of gint16.
20192
20193 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
20194
20195         * object.h, object.c: domain-specific versions of mono_object_new and
20196         mono_array_new.
20197
20198 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
20199
20200         * object.c: changed String layout
20201
20202         * string-icalls.c (mono_string_Internal_ctor_chara): added
20203         internal string constructors.
20204
20205 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
20206
20207         * threads.c: pass 'this' to the thread start routine.
20208
20209 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20210
20211         * string-icalls.c: fix IndexOf and LastIndexOf. Now
20212         InternalCompareStr don't call twice mono_string_cmp_char for the last
20213         character. Improved performance in mono_string_cmp_char.
20214
20215 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
20216
20217         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
20218         code into its own library: libmonoruntime.
20219
20220 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
20221
20222         * object.h, object.c: changed array format so that szarrays do not
20223         require a bounds structure.
20224         * icall.c, appdomain.c: support for new szarray format.
20225
20226 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
20227
20228         * metadata.c: compare also the retuns type when comparing signatures:
20229         we didn't do this as an optimization since really overloaded methods
20230         must differ also in the arguments, but this doesn't work with
20231         low-level IL code (or when using explicit conversion operators: see
20232         bug#23498 for an example).
20233
20234 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
20235
20236         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
20237
20238 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
20239
20240         * icall.c: make MonoType::GetElementType its own icall.
20241
20242 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
20243
20244         * icall.c: remove MonoMethod_get_Name().
20245         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
20246         object.
20247
20248 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20249
20250         * string-icalls.c: optimized a few methods.
20251
20252 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
20253
20254         * icall.c: added all new string internal calls
20255         * string-icalls.c: added, new string internal call implementation.
20256         * object.c: added mono_string_new_size for allocating a string a size
20257
20258 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
20259
20260         * object.c (mono_object_isinst): use the same code as in the
20261         optimized x86 version.
20262
20263 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
20264
20265         * profiler.c: TSC-based timer code (faster and more accurate).
20266         Not hooked up in configure, yet (set USE_X86TSC to 1).
20267
20268 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
20269
20270         * profiler.c, profiler.h: track time spent compiling methods.
20271         * threads.c: track thread creation/destruction.
20272
20273 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
20274
20275         * profiler.c, profiler.h, profiler-private.h: profiling interface
20276         and sample implementation. Moved here so that it can be used also by
20277         the jit.
20278
20279 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
20280
20281         * reflection.c, reflection.h: keep types and other handles separate in
20282         the hash tables for referred tokens. Add guid for modules.
20283
20284 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
20285
20286         * assembly.c: fix bugs found with valgrind.
20287         * metadata.h, metadata.c: added mono_metadata_guid_heap().
20288
20289 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
20290
20291         * threads: added icall support for getting current domain for
20292                    the thread.
20293  
20294 2002-04-13  Martin Baulig  <martin@gnome.org>
20295
20296         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
20297         (MonoDebugVarInfo): Added `index' field for register based addresses.
20298         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
20299         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
20300         `MonoDebugVarInfo *params' and `guint32 this_offset' with
20301         `MonoDebugVarInfo *this_var'.
20302
20303         * debug-symfile.c (relocate_variable): New static function to write
20304         a location description for a local variable or method parameter.
20305
20306 2002-04-12  Martin Baulig  <martin@gnome.org>
20307
20308         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
20309         stack offset and begin/end scope address of a local variable.
20310         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
20311         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
20312         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
20313
20314         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
20315         Added new relocation types for start/end scope of a local variable.
20316
20317 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
20318
20319         * object.h: add mono_object_domain() macro.
20320         * reflection.c: handle typespecs.
20321         * icall.c: MonoMethod::get_Name() implementation.
20322
20323 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20324
20325         * icall.c: String::GetHashCode() icall implementation.
20326
20327 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20328
20329         * icall.c: String::IndexOfAny icall.
20330         * object.c, object.h: make array->max_length more useful.
20331         Intrduced mono_object_class() and mono_string_length() macros.
20332
20333 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20334
20335         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
20336         instead of g_unichar_isdigit.
20337
20338 2002-04-11  Nick Drochak  <ndrochak@gol.com>
20339
20340         * icall.c: Implement a simple Double.ToString().
20341
20342 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
20343
20344         * appdomain.h: only io-layer.h is supposed to be included.
20345         * icall.c: explicitly import environ. Fix warning.
20346
20347 2002-04-10  Nick Drochak  <ndrochak@gol.com>
20348
20349         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
20350                 return true even if it's not Daylight Savings time.
20351                 Only return false for the case where the function isn't
20352                 implemented for a plaform (read Windows).
20353
20354 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
20355
20356         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
20357         data with a mutex.
20358
20359 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
20360
20361         * mempool.c (mono_mempool_alloc): only use g_malloc when
20362         absolutely necessary.
20363
20364 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20365
20366         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
20367
20368         * class.c (mono_class_vtable): use domain mempool to allocate vtable
20369         (mono_class_proxy_vtable): use domain mempool
20370
20371 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
20372
20373         * appdomain.h, appdomain.c: split initialization that requires the
20374         execution engine support into mono_runtime_init().
20375
20376 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
20377
20378         * class.c (mono_class_init): don't include vtable inside MonoClass
20379         to save some memory, gather some statistics.
20380         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
20381
20382 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20383
20384         * icall.c: internalcall implementation for ValueType.Equals().
20385
20386 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
20387
20388         * object.c (mono_message_init): moved 
20389         (mono_runtime_exec_main): new arch. independent impl.
20390         (mono_runtime_invoke_array): new method - like
20391         mono_runtime_invoke, but you can pass an array of objects.
20392         (mono_remoting_invoke): new arch. independent impl.
20393         (mono_message_invoke): new arch. independent impl.
20394         (mono_runtime_class_init): new arch. independent impl.
20395         (mono_runtime_object_init): new arch. independent impl.
20396
20397 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
20398
20399         * metadata.c, object.c, reflection.c: documented the exported
20400         functions.
20401
20402 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
20403
20404         * icall.c: simpler code to pass the assembly builder data to corlib.
20405         Implement GetNestedTypes() internalcall.
20406
20407 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
20408
20409         * class.c: warn if a type can't be loaded.
20410
20411 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
20412
20413         * image.h: typedef MonoImageOpenStatus
20414         * types.h: removed unused file
20415         
20416 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
20417
20418         * icall.c: Enum_ToObject accepts enum value arguments.
20419
20420 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
20421
20422         * class.c: move initialization of properties, events and nested
20423         classes, so that they happen for interfaces, too.
20424
20425 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
20426
20427         * icall.c: cleanup some ugly casts in Array_SetValue*.
20428
20429 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
20430
20431         * icall.c: the values array fro enums is of the correct type, now.
20432         Implement (correctly) getFullName instead of assQualifiedName for
20433         MonoType.
20434         * reflection.h, reflection.c: added mono_type_get_name ().
20435
20436 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
20437
20438         * assembly.c, image.h: for each MonoImage, record from wich assembly
20439         it was loaded.
20440         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
20441         Make Type.Assembly work.
20442
20443 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
20444
20445         * debug-symfile.h: use char* instead of gpointer to avoid
20446         unnecessary casts.
20447
20448         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
20449
20450         * icall.c (ves_icall_InternalExecute): impl. FielSetter
20451         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
20452
20453 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
20454
20455         * icall.c (mono_message_init): impl. (code cleanup)
20456         (ves_icall_InternalExecute): impl. FieldGetter
20457
20458         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
20459         defined we call all (non-static)methods through the vtable. 
20460
20461 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
20462
20463         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
20464         finalizer even though the memory is still referenced (and the chunk of
20465         memory is not freed).
20466
20467 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20468
20469         * assembly.c: fix brokeness.
20470
20471 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
20472
20473         * class.c: kill some warnings. Check explicit interface method
20474         implementation also without considering the namespace.
20475         Load also literal strings in static class data.
20476
20477 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
20478
20479         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
20480         (default_assembly_name_resolver): Make the resolver take the
20481         "base" directory where the assembly was originally defined, so we
20482         can load DLLs that are in the same directory as the assembly that
20483         is being referenced.
20484
20485 2002-03-28  Dick Porter  <dick@ximian.com>
20486
20487         * file-io.h: 
20488         * file-io.c:
20489         * socket-io.c: 
20490         * unicode.h: 
20491         * unicode.c: Warning cleanups
20492
20493 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
20494
20495         * object.h, reflection.h: use the correct type instead of MonoObject.
20496
20497 2002-03-28  Martin Baulig  <martin@gnome.org>
20498
20499         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
20500         (mono_debug_update_symbol_file): Initialize classes if necessary.
20501
20502 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20503
20504         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
20505         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
20506
20507 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
20508
20509         * assembly.h: fix function prototype.
20510         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
20511         * mono-endian.h: use const cast.
20512
20513 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20514
20515         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
20516
20517 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20518
20519         * loader.c: don't assert when a typeref can't be loaded, give
20520         a chance to the runtime to trow an exception instead.
20521         * loader.h: fix warning.
20522
20523 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
20524
20525         * class.c (mono_class_proxy_vtable): added proxy support
20526
20527 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
20528
20529         * icall.c: removed last of PAL calls, added System.Environment
20530         * file-io.h, file-io.c: MonoIO implementation
20531         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
20532
20533 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20534
20535         * appdomain.c: do not use the byte marker in ldstr table lookup.
20536         * debug-helpers.c: allow two ':' to separate class and method name.
20537         * object.c: allocate arrays bounds with the GC, too.
20538         * verify: add a few more checks.
20539
20540 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
20541
20542         * reflection.c: output also literal strings. Allocate parameter data
20543         with GC_malloc() (thanks, Martin, for catching this!).
20544
20545 2002-03-26  Martin Baulig  <martin@gnome.org>
20546
20547         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
20548         include the `this' offset in the `param_offsets'.
20549
20550 2002-03-25  Martin Baulig  <martin@gnome.org>
20551
20552         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
20553         mono_debug_get_class() function to get the classes. Added new
20554         relocation types for arrays and strings.
20555         (mono_debug_get_class): New static function to search in all
20556         referenced assemblies for a metadata token.
20557
20558         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
20559
20560 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
20561
20562         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
20563         hold gc-allocated objects. Make the string heap a stream like the
20564         others. Removed duplicated code when writing stream info.
20565         Added asserts to catch possible buffer overflows. Set the sorted map
20566         for tables that need sorting. Added some documentation.
20567
20568 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
20569
20570         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
20571         for interned strings and vtables.
20572
20573 2002-03-24  Martin Baulig  <martin@gnome.org>
20574
20575         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
20576         it in the array since it was created with g_slist_prepend().
20577
20578 2002-03-24  Martin Baulig  <martin@gnome.org>
20579
20580         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
20581         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
20582         (mono_debug_method_from_token): Renamed to
20583         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
20584         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
20585
20586         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
20587         relocation types.
20588
20589         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
20590
20591 2002-03-24  Martin Baulig  <martin@gnome.org>
20592
20593         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
20594         (mono_debug_method_from_token): New func.
20595
20596         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
20597         New interncall, calls mono_debug_local_type_from_signature().
20598         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
20599         calls mono_debug_method_from_token().
20600
20601 2002-03-23  Martin Baulig  <martin@gnome.org>
20602
20603         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
20604         specifies the number of bytes to be converted, not the array size.
20605         Return the number of chars, not the number of bytes.
20606         (ves_icall_iconv_get_chars): The `byteCount' argument
20607         specifies the number of bytes to be converted, not the array size.
20608
20609 2002-03-23  Martin Baulig  <martin@gnome.org>
20610
20611         * reflection.h (MonoReflectionSigHelper): New type.
20612
20613         * reflection.c (mono_reflection_sighelper_get_signature_local),
20614         (mono_reflection_sighelper_get_signature_local): New functions.
20615
20616         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
20617         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
20618         interncalls.
20619
20620 2002-03-23  Martin Baulig  <martin@gnome.org>
20621
20622         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
20623         is_writeable is set.
20624         (mono_raw_buffer_update): New function to write the modified map
20625         back to disk.
20626
20627         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
20628
20629         * debug-symfile.c (mono_debug_update_symbol_file): Call
20630         mono_raw_buffer_update() when done writing.
20631
20632 2002-03-23  Martin Baulig  <martin@gnome.org>
20633
20634         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
20635
20636         * debug-symfile.c: Added support for arguments and local variables.
20637
20638 2002-03-23  Dick Porter  <dick@ximian.com>
20639
20640         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
20641         protected by ifdefs, hence breaking the w32 build.
20642
20643 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20644
20645         * object.c: implement is_interned() the right way.
20646
20647 2002-03-21  Martin Baulig  <martin@gnome.org>
20648
20649         * debug-symfile.[ch]: New files to handle debugging information
20650         files. There's also support to dynamically update these symbol
20651         files to include machine dependent information.
20652
20653 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
20654
20655         * threads.c (mono_thread_create): new function to create thread
20656         from C
20657
20658 2002-03-20  Martin Baulig  <martin@gnome.org>
20659
20660         * icall.c (ves_icall_InternalInvoke): Create a new object if the
20661         method is a constructor.
20662         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
20663         points to ves_icall_InternalInvoke().
20664
20665 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
20666
20667         * file-io.c: Flush shouldn't throw exceptions.
20668
20669 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
20670
20671         * file-io.c: FileStream flush support; FileSetLength now
20672         restores file pointer.
20673
20674 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20675
20676         * class.c: set image for pointer classes.
20677
20678 2002/03/19  Nick Drochak <ndrochak@gol.com>
20679
20680         * sysmath.c: Forgot one.
20681
20682 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
20683
20684         * sysmath.c: Avoid redefining existing names.
20685
20686 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20687
20688         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20689         handled by runtime as icall rather than dllimport from libm.so
20690         * file-io.c, file-io.h: fixed handle argument type.
20691
20692 2002-03-18  Dick Porter  <dick@ximian.com>
20693
20694         * reflection.c (mono_image_get_type_info): rename interface to
20695         iface, because of "#define interface struct" on windows.
20696
20697 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20698
20699         * class.c, class.h: rename and export mono_ptr_class_get().
20700         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20701         * reflection.c, reflection.h, icall.c: better/saner type name
20702         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20703         method signatures.
20704
20705 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20706
20707         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20708
20709         * icall.c (ves_icall_InternalInvoke): impl.
20710
20711 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20712
20713         * reflection.c: output the interface map table, too.
20714
20715 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20716
20717         * class.c (class_compute_field_layout): separate computation of 
20718         static field layout
20719
20720 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
20721
20722         * icall.c: added System.Buffer support.
20723         * file-io.c: moved file icalls from PAL to FileStream.
20724
20725 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20726
20727         * icall.c (ves_icall_System_Object_GetHashCode): impl.
20728
20729 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
20730
20731         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
20732
20733 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20734
20735         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
20736
20737 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20738
20739         * debug-helpers.{c,h}: moved here from monograph some useful functions
20740         to locate a method by name/signature in a class or image. Included
20741         also a small and flexible IL disassembler.
20742
20743 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20744
20745         * reflection.c: fixup tokens in methods with small header size, too.
20746
20747 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
20748
20749         * object.c (mono_string_to_utf8): remove assert(!error), instead
20750         print a warning. 
20751
20752 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
20753
20754         * icall.c: update to the new mono_Array_class_get interface.
20755
20756 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20757
20758         * appdomain.c, object.c: Boehm-GC enable.
20759         * icall.c: make get_data_chunk() support split data requests.
20760         Ensure a class is initialized in more cases. Return only the first
20761         property found in GetProperties() or the compiler gets confused. 
20762         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
20763         * reflection.h, reflection.c: add fixup mechanism for field and method
20764         tokens. Initialize assembly->typeref in a single place. Output
20765         properties after events. Support custom attributes for events, too.
20766         Typo fix for paramter custom attrs.
20767
20768 2002-03-07  Martin Baulig  <martin@gnome.org>
20769
20770         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
20771
20772 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
20773
20774         * class.c (mono_array_class_get): fix. for multi. dim. arrays
20775
20776 2002-03-06  Martin Baulig  <martin@gnome.org>
20777
20778         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
20779         non-zero lower bounds. See testcases #F10-#F13.
20780
20781 2002-03-05  Martin Baulig  <martin@gnome.org>
20782
20783         * exception.c (mono_get_exception_argument_out_of_range): New exception.
20784
20785         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
20786         ves_icall_System_Array_GetValue(), only calculate the absolute array position
20787         here.
20788         (ves_icall_System_Array_SetValue): Likewise.
20789         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
20790         as argument and does the actual work. This function is used when copying a
20791         multi-dimensional array.
20792         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
20793         now do all the widening conversions of value types.
20794         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
20795
20796 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20797
20798         * class.c: remove some magic numbers and use the smbolic names,
20799         instead. Added init_events() to load event info at class init time.
20800         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
20801         and mono_metadata_methods_from_event().
20802         * reflection.h, reflection.c: added support for writing out the evnets
20803         related information.
20804
20805 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20806
20807         * reflection.h, icall.c: use a different method (GetInterfaces)
20808         to gather interface info and add isbyref, isprimitive and
20809         ispointer to the ves_icall_get_type_info() return value.
20810
20811 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20812
20813         * class.h: stared adding support for events.
20814         * icall.c: split find_members implementation. Added debug icall to get
20815         the address of an object.
20816         * reflection.c: handle TypeBuilders in mono_type_get_object().
20817
20818 2002-03-01  Martin Baulig  <martin@gnome.org>
20819
20820         * icall.c (ves_icall_System_Array_GetLength): This must throw an
20821         ArgumentOutOfRangeException(), not an ArgumentException().
20822         (ves_icall_System_Array_GetLowerBound): Likewise.
20823         (ves_icall_System_Array_GetValue): Improved argument checking.
20824         (ves_icall_System_Array_SetValue): Improved argument checking.
20825
20826 2002-03-01  Martin Baulig  <martin@gnome.org>
20827
20828         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
20829         called with invalid arguments rather than just dying with g_assert().
20830         (ves_icall_System_Array_SetValue): Likewise.
20831         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
20832         raise a NotImplementedException instead.
20833         (ves_icall_System_Array_GetLength): Added argument checking.
20834         (ves_icall_System_Array_GetLowerBound): Added argument checking.
20835
20836 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
20837
20838         * object.h (mono_assert): new macros mono_assert and
20839         mono_assert_not_reached
20840
20841 2002-02-28  Martin Baulig  <martin@gnome.org>
20842
20843         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
20844         and "System::String::IsInterned" to "System::String::_IsInterned".
20845
20846 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
20847
20848         * icall.c: remove hacks for typebuilder. Added icall to create a
20849         modified type from a tybebuilder.
20850         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
20851         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
20852         to create a backing MonoClass for a TypeBuilder.
20853
20854 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20855
20856         * class.c, class.h: more refactoring of class init.
20857         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20858
20859 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20860
20861         * marshal.c, marshal.h: start of marshaling interface.
20862
20863 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20864
20865         * icall.c: fix order in assembly qualified name icall.
20866
20867 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20868
20869         * class.c: do not free str, since we store it in the hash table.
20870         * reflection.h: add label field to MonoILExceptionInfo.
20871         * reflection.c: handle references to more than one assembly. Handle
20872         case when there isn't a module created in the assembly.
20873
20874 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20875
20876         * class.c: Fix typo. Start refactoring of class init code.
20877
20878 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20879
20880         * appdomain.c: exit with 1 on error.
20881         * class.c: we already have the name in MonoClassField.
20882         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20883         MonoStreamHeader instead of an offset of image->raw_metadata.
20884
20885 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20886
20887         * appdomain.c (mono_init): Be even more descriptive about the error.
20888
20889 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20890
20891         * appdomain.c: give the user an informative message when corlib can't
20892         be loaded.
20893
20894 2002-02-26  Martin Baulig  <martin@gnome.org>
20895
20896         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20897         New icall to get the time zone data.
20898
20899 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20900
20901         * reflection.c: set virtual and raw size of section correctly.
20902         * threads.c: transfer domain information to newly created threads.
20903
20904 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20905
20906         * class.c: when instancing a class in a domain, load the default
20907         vaules for static fields from the constant table. Fix System.Enum to
20908         not be an enum.
20909         * icall.c: implement Object::GetType() internalcall. Implemented
20910         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20911         Fixed checking of binding flags in find_members().
20912         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20913         * reflection.c: handle enumerations when writing to the constant
20914         table. Use a different object cache for types.
20915
20916
20917 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20918
20919         * object.c (mono_object_isinst): fix for arrays
20920
20921         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20922
20923 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20924
20925         * object.c: don't use mprotect ()  and fix intern pool hash table
20926         lookup for big endian systems.
20927
20928 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20929
20930         * icall.c: change type_is_subtype_of () signature.
20931
20932 2002-02-21  Mark Crichton  <crichton@gimp.org>
20933
20934         * rand.c, rand.h: Added random number generator for
20935         System.Security.Cryptography classes.
20936
20937         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20938
20939         * icall.c: Added System.Security.Cryptography calls.
20940
20941 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20942
20943         * class.c, icall.c, metadata.c: better support for pointer types.
20944         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20945         * reflection.c: Add support for getting custom attrs for properties
20946         and simplify some code.
20947
20948 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20949
20950         * icall.c: change getToken () and add custom attribute GetBlob()helper
20951         method.
20952         * reflection.h: add custom attrs array to the reflection builder structures.
20953         * reflection.c: encode and emit custom attributes for all the relevant
20954         reflection objects. Cache fieldref and methodref tokens. Change
20955         mono_image_create_token() interface to take a MonoDynamicAssembly.
20956         More complete custom attributes decoder. Load custom attributes for
20957         Assembly, Field, Method and Constructor objects, too. Make the
20958         returned array an Attribute[] one, not object[]. Added
20959         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20960         custom attribute constructor.
20961
20962 2002-02-20  Dick Porter  <dick@ximian.com>
20963
20964         * icall.c:
20965         * rawbuffer.c:
20966         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20967         problem code out for now).
20968
20969 2002-02-19  Radek Doulik  <rodo@ximian.com>
20970
20971         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20972
20973 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20974
20975         * icall.c: register the GetCustomAttributes method.
20976         * object.c, object.h: add mono_string_new_len ().
20977         * reflection.h, reflection.c: added mono_runtime_invoke(),
20978         mono_install_runtime_invoke(). Added
20979         mono_reflection_get_custom_attrs () to load custom attributes and
20980         create the attribute objects.
20981
20982 2002-02-19  Dick Porter  <dick@ximian.com>
20983         * threads-dummy-types.c:
20984         * threads-dummy-types.h:
20985         * threads-dummy.c:
20986         * threads-dummy.h:
20987         * threads-pthread-types.c:
20988         * threads-pthread-types.h:
20989         * threads-pthread.c:
20990         * threads-pthread.h:  Deleted obsolete files
20991
20992 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20993
20994         * class.c (mono_class_vtable): runtime init the class when we
20995         allocate static class data.
20996
20997         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20998
20999         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
21000         and String - but we will need generic marshalling support in the
21001         future. 
21002         (mono_init): set the domain name in a ms compatible way
21003
21004         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
21005         String[].
21006
21007 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
21008
21009         * object.c (mono_array_clone): use alloca() instead of g_malloc  
21010         for sizes
21011
21012         * appdomain.c (mono_domain_unload): impl.
21013
21014 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21015
21016         * appdomain.c, object.c: fix intern pool implementation.
21017         * class.c: fix alignment code.
21018
21019 2002-02-16  Radek Doulik  <rodo@ximian.com>
21020
21021         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
21022         and s2 > s1, just copy lower bytes to be compatible with little
21023         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
21024         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
21025
21026         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
21027         force big_endian to be 1 for big endian machines 
21028         (ves_icall_iconv_new_decoder): ditto
21029
21030 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
21031
21032         * socket-io.c (convert_sockopt_level_and_name): If the system
21033         doesn't define SOL_IP or SOL_TCP, get them by hand using
21034         getprotobyname() and caching the values (because this could be a
21035         slow operation).
21036         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
21037         Use the appropriate struct when the system does support it. Ie,
21038         not all systems have struct ip_mreqn so use struct ip_mreq when
21039         appropriate.
21040
21041 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
21042
21043         * reflection.c: handle finally clauses.
21044
21045 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
21046
21047         * socket-io.c: use g_snprintf() instead of snprintf.
21048
21049 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21050
21051         * reflection.c (mono_param_get_objects): Cast second argument to
21052         mono_method_get_param_names to a const char** to silence the
21053         compiler warning.
21054
21055         * appdomain.c (mono_domain_assembly_open): Put parens around the
21056         truth statement in the for-loop.
21057
21058         * unicode.c (iconv_convert): Got rid of a compiler warning about
21059         int i being unused when the system has a new iconv.
21060         (iconv_get_length): Same.
21061
21062         * image.c (load_class_names): Cast the second argument to
21063         g_hash_table_insert() to char* to hush compiler warnings about the
21064         arg being a const.
21065         (mono_image_open): Same here.
21066
21067         * socket-io.c: Don't conditionally include sys/filio.h or
21068         sys/sockio.h here anymore since we now get them from
21069         io-layer/io-layer.h
21070         (inet_pton): If the system doesn't support inet_aton, implement
21071         using inet_addr and also #define INADDR_NONE if it isn't defined
21072         by the system.
21073
21074 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21075
21076         * metadata.c, metadata.h: added function to get packing and size info
21077         of a typedef.
21078         * reflection.h, reflection.c: handle field RVA data. Save info about
21079         the table layout if needed. Assign typedef indexes to all the types
21080         before dumping the info about them to avoid forward reference problems.
21081
21082 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
21083
21084         * socket-io.c (convert_sockopt_level_and_name): ifdef
21085         SO_ACCEPTCONN because it is not defined on my system (old debian)
21086
21087 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21088
21089         * opcode.c: use stddef.h to get NULL.
21090
21091 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
21092
21093         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
21094         for FIONBIO, FIONREAD and SIOCATMARK.
21095         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
21096         define INADDR_NONE and besides, inet_addr() is deprecated and
21097         should not be used. Use inet_pton() instead - it also has the
21098         added bonus that it can easily handle IPv6 addresses as well.
21099         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
21100
21101 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
21102
21103         * decimal.c: remove _MSC_VER conditional.
21104
21105 2002-02-13  Dick Porter  <dick@ximian.com>
21106
21107         * socket-io.c: 
21108         * icall.c: Internal calls for Blocking, Select, Shutdown,
21109         GetSocketOption and SetSocketOption
21110
21111 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21112
21113         * assembly.cs: better resolver: use it instead of some kludgy
21114         code.
21115
21116 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
21117
21118         * reflection.c: the best way to speed-up the compiler is to avoid
21119         infinite loops.
21120
21121 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
21122
21123         * class.c (mono_class_vtable): changed the object layout
21124         (obj->vtable->class). 
21125         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
21126
21127 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21128
21129         * assembly.c: look for assemblies in the assembly dir, too.
21130
21131 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21132
21133         * class.c: fix thinko in mono_class_from_type().
21134
21135 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21136
21137         * exception.h, exception.c: added TypeLoadException.
21138         * object.h, object.c: added mono_array_clone ().
21139         * icall.c: handle throwOnError in AssemblyGetType().
21140         Added Array.Clone().
21141         * opcode.h, opcode.c: use a single value for the opcode val.
21142         Compile fix for non-gcc compilers.
21143
21144 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
21145
21146         * opcodes.c, opcodes.h: export interesting info about opcodes.
21147
21148 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
21149
21150         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
21151         icalls. 
21152
21153         * class.c (class_compute_field_layout): set element_class for enums
21154         (mono_class_create_from_typedef): set element_class for normal classes
21155
21156         * icall.c (ves_icall_System_Enum_get_value): impl.
21157
21158         * class.c (mono_class_create_from_typedef): do not set valuetype
21159         flag for System.ValueType and System.Enum
21160
21161 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
21162
21163         * unicode.c (iconv_convert): fix big endian problem.
21164
21165 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21166
21167         * class.c: add asserts if we are ever going to scribble over memory.
21168         * socket-io.c: not all systems have AF_IRDA defined.
21169
21170 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
21171
21172         * class.c (class_compute_field_layout): do not consider static
21173         fields to compute alignment
21174
21175 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
21176
21177         * appdomain.c (mono_appdomain_get): impl.
21178         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
21179
21180 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
21181
21182         * icall.c: ignore "file://" prefix when loading an assembly.
21183
21184 2002-01-23  Dick Porter  <dick@ximian.com>
21185
21186         * socket-io.c:
21187         * icall.c:
21188         * Makefile.am: Added socket support
21189
21190 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21191
21192         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
21193         code back.  This should return the assemblies that are loaded by
21194         the runtime on behalf of an application domain. 
21195
21196         The current implementation is still broken, it just returns every
21197         assembly loaded, but until we get real applications domain this
21198         will do.
21199
21200 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
21201
21202         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
21203         AppDomain object.
21204
21205 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
21206
21207         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
21208         the mono_class_from_name lookup.
21209         (ves_icall_get_parameter_info): ditto.
21210         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
21211         method.
21212         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
21213
21214 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21215
21216         * class.c: load also nested classes on class init.
21217         System.ValueType instance methods gets passed boxed
21218         values, unless methods in derived classed that get a pointer to the
21219         data.
21220         * icall.c: use better name parsing code in GetType().
21221         * image.c, image.h: add mono_image_loaded ().
21222         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
21223         * reflection.c, reflection.h: added mono_reflection_parse_type().
21224
21225 2002-01-22  Veronica De Santis <veron78@interfree.it>
21226
21227         * icall.c : Added mapping of internal calls for Manual and Auto reset events
21228         * threads.c : Added the implementation of internal calls for events
21229         * threads.h : Added prototypes of internal calls for events
21230         
21231 2002-01-21  Radek Doulik  <rodo@ximian.com>
21232
21233         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
21234
21235 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
21236
21237         * class.c (mono_class_init): set min_align to 1 (instead of 0)
21238         (mono_class_value_size): use min_align
21239
21240 2002-01-20  Dick Porter  <dick@ximian.com>
21241
21242         * threads.h:
21243         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
21244         so it compiles on w32.
21245
21246 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
21247
21248         * metadata.c (mono_type_stack_size): impl.
21249
21250         * class.c (mono_class_get_field): impl. memberref token
21251
21252 2002-01-16 Veronica De Santis <veron78@@interfree.it>
21253
21254         * icall.h : Added the internal calls mapping for CreateMutex_internal
21255                     and ReleaseMutex_internal.
21256         * threads.h : Added the prototype of mutexes internal calls.
21257         * threads.c : Added the implementations of mutexes internal calls.
21258
21259 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
21260
21261         * metaparse.h: removed unused file.
21262         * reflection.c, reflection.h: added stream_data_align () function 
21263         to align data in streams and keep stream aligned. Add support for
21264         exception support in method headers.
21265
21266 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
21267
21268         * unicode.c: make iconv_convert () return the number of bytess written
21269         in the output buffer.
21270
21271 2002-01-15  Dick Porter  <dick@ximian.com>
21272         * threads.c: Make the runtime's idea of infinite timeouts coincide
21273         with the class library's
21274
21275         Fix a particularly egregious bug in mono_thread_cleanup(). That
21276         code was so utterly bogus it must have been written on a Monday.
21277
21278 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
21279
21280         * reflection.h: add subtypes field to TypeBuilder.
21281         * reflection.c: encode constants for literal fields.
21282         Handle subtypes. Fix user string token (and add a zero byte)
21283         at the end.
21284         
21285 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
21286
21287         * class.c (mono_class_init): bug fix: assign slot numbers for
21288         abstract methods.
21289
21290 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21291
21292         * reflection.c: don't try to output a code RVA for abstract methods.
21293         Small fixes for method header format. Output parameter info to the
21294         ParamDef table. Save method overriding info to MethodImpl table.
21295         Fix property support. Allow typedef.extends to be a type in the
21296         building assembly.
21297         * verify.c: fix off-by-one error.
21298
21299 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
21300
21301         * class.c: fix mono_class_from_mono_type () for szarray types.
21302         Remove unused cache check in mono_class_from_type_spec().
21303         * icall.c: *type_from_name () functions handle simple arrays and byref.
21304         * reflection.c: handle byref and szarray types. Handle methods without
21305         body (gets P/Invoke compilation working). Handle types and fields in
21306         get_token ().
21307         * reflection.h: add rank to MonoTypeInfo.
21308
21309 2002-01-10  Dick Porter  <dick@ximian.com>
21310
21311         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
21312         internal calls
21313
21314 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
21315
21316         * icall.c: initialize class in type_from_handle ().
21317         Loop also in parent classes for get_method ().
21318         * reflection.c: properly encode class and valuetype types.
21319         Start on encoding TypeBuilder types. Handle fieldrefs.
21320         Use correct length when registering a user string.
21321         Handle ConstructorBuilder and MonoMethod in get_token ().
21322         Make mono_type_get_object () aware of cached types.
21323         * object.c: back out change to mono_string_new ().
21324
21325 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
21326         * object.c: mono_string_new should return a NULL when the string 
21327         passed in is NULL -- not try to deference it.
21328         
21329 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
21330
21331         * icall.c: hack to make IsSubType work for TypeBuilders.
21332         * reflection.c: emit constructors before methods.
21333         Retrieve param names in mono_param_get_objects().
21334
21335 2002/01/05  Nick Drochak  <ndrochak@gol.com>
21336
21337         * Makefile.am: fix list of headers and sources so automake 1.5
21338         doesn't complain. Removed \# at end of list.
21339
21340 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
21341
21342         * reflection.c: get token for a method ref. Set return type of
21343         constructor to void.
21344         * loader.c: debug message.
21345         * class.c: typo fix.
21346
21347 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
21348
21349         * icall.c: fix array init with rank > 1. FindMembers
21350         loops in parent class as well.
21351         * image.c: do not insert nested types in name cache.
21352         * reflection.c: warning fix.
21353         * reflection.h: add override method (for interface impl).
21354
21355 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
21356
21357         * metadata.c: fix customattr decoding.
21358
21359 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
21360
21361         * rawbuffer.cs: Added native Win32 implementation, avoids using
21362         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
21363
21364 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
21365
21366         * class.c: make the low-level routines handle the cache.
21367
21368 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
21369
21370         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
21371
21372 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
21373
21374         * class.c: fix mono_array_element_size() for objects.
21375         * class.h, class.c: add properties to MonoClass and load them
21376         at init time.
21377         * icall.c: check with isinst() when assigning a value to an array
21378         instead of requiring the classes to match exactly.
21379         Implemented icall for System.Type::GetType().
21380         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
21381         enums. Handle bindingflags when looking for methods and fields.
21382         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
21383         and mono_metadata_methods_from_property().
21384         * reflection.h, reflection.c: added structures for propreties,
21385         parameters and enums. Implemented mono_property_get_object() and
21386         mono_param_get_objects().
21387
21388 2001-12-18  Dick Porter  <dick@ximian.com>
21389
21390         * file-io.c: Use mono_string_to_utf16() instead of
21391         mono_string_chars()
21392
21393         * object.c: Added mono_string_to_utf16(), which copies the non
21394         NULL-terminated MonoString into a new double-null-terminated
21395         buffer.
21396
21397 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
21398
21399         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
21400
21401 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
21402
21403         * file-io.c: raise exceptions if handle is invalid.
21404
21405 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
21406
21407         * assembly.c: yet another check for mscorlib.
21408         * class.c, class.h: load nesting info for classes.
21409         * icall.c: many new functions to support the Reflection classes.
21410         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
21411         * reflection.h, reflection.c: mono_image_create_token(),
21412         mono_assembly_get_object(), mono_type_get_object(),
21413         mono_method_get_object(), mono_field_get_object(): methods to return
21414         objects that parallel the C representation of assemblies, types,
21415         methods, fields.
21416
21417 2001-12-11  Dick Porter  <dick@ximian.com>
21418
21419         * icall.c:
21420         * file-io.c: Internal calls for file IO.
21421
21422 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
21423
21424         * tabledefs.h: missing FileAttributes.
21425         * verify.h, verify.c: use is_valid_string () to simplify and check for
21426         valid strings more correctly. Fix warnings and speeling.
21427         Check more tables: Filed, File, ModuleRef, StandAloneSig.
21428         Check code: branches, maxstack, method calls.
21429
21430 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
21431
21432         * object.c (mono_object_allocate): removed static, so that the jit
21433         can allocate value types.
21434
21435         * icall.c (ves_icall_System_DateTime_GetNow): impl.
21436
21437 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21438
21439         * class.c: init enum types right away and register the
21440         token->MonoClass map in mono_class_create_from_typedef ().
21441         * verify.h, verify.c: first cut of the verifier.
21442         * pedump.c: add --verify switch to verify metadata tables.
21443         * tabledefs.h: add some missing enums.
21444
21445 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
21446
21447         * class.c (mono_install_runtime_class_init): impl.
21448         (mono_class_init): renamed mono_class_metadata_init to
21449         mono_class_init, also removed the metadata_inited flag
21450
21451         * object.c (mono_object_isinst): use faster algorithm
21452
21453 2001-11-30  Radek Doulik  <rodo@ximian.com>
21454
21455         * mono-endian.h: reverted last change
21456         added function prototypes
21457
21458         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
21459         add mono-endian.c back
21460
21461         * mono-endian.c: returned back, as Paolo pointed out, it's needed
21462         for unaligned access, I've mistaked it with endianess. I am
21463         sorry.
21464         (mono_read16): fix reverted endianess
21465         (mono_read64): ditto
21466         (mono_read32): ditto
21467
21468 2001-11-30  Dick Porter  <dick@ximian.com>
21469
21470         * exception.c: Implement mono_exception_from_name()
21471
21472 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21473
21474         * metadata.h, metadata.c: remove params_size and locals_size and their
21475         calculation from the metadata code: they are only usefult to the
21476         interp.
21477
21478 2001-11-29  Radek Doulik  <rodo@ximian.com>
21479
21480         * object.c (mono_ldstr): swap bytes here, it's probably not the
21481         best place, but works for me now, I'll redo it once I know mono
21482         better, also note that I add PROT_WRITE and don't reset back, also
21483         note that it's only affects big endians, so x86 should be OK
21484
21485         * mono-endian.h (read16): use just glib macros for both endians
21486
21487         * mono-endian.c: removed as glib macros are used in in
21488         mono-endian.h so we don't need to care about endianess for read
21489         macros as glib does that for us already
21490
21491 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
21492
21493         * class.h, class.h: take minimum alignment into consideration so
21494         that the fields of a class remain aligned also when in an array.
21495
21496 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21497
21498         * loader.h, loader.c: add mono_method_get_param_names().
21499         * class.c: 0-init class fields.
21500
21501 2001-11-26  Dick Porter  <dick@ximian.com>
21502
21503         * icall.c:
21504         * threads-types.h:
21505         * threads.c: New file that handles System.Threading on all platforms
21506
21507         * object.c: 
21508         * object.h: Remove the synchronisation struct from MonoObject,
21509         replace it with a pointer that gets initialised on demand
21510
21511         * Makefile.am: Replace all the system-specific threading code with
21512         a single file that uses the new wrapper library
21513
21514 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
21515
21516         * class.c, class.h: add mono_install_trampoline() so that the runtime
21517         can register a function to create a trampoline: removes the ugly
21518         requirement that a runtime needed to export arch_create_jit_trampoline.
21519         * object.h, object.c: added mono_install_handler() so that the runtime
21520         can install an handler for exceptions generated in C code (with
21521         mono_raise_exception()). Added C struct for System.Delegate.
21522         * pedump.c: removed arch_create_jit_trampoline.
21523         * reflection.c: some cleanups to allow registering user strings and
21524         later getting a token for methodrefs and fieldrefs before the assembly
21525         is built.
21526         * row-indexes.h: updates and fixes from the new ECMA specs.
21527
21528 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
21529
21530         * class.h, class.c: add enum_basetype field to MonoClass.
21531         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
21532         to get index in the constant table reated to a field, param or
21533         property.
21534         * reflection.h, reflection.c: handle constructors. Set public-key and
21535         version number of the built assembly to 0.
21536         * row-indexes.h: update from new ECMA spec.
21537
21538 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21539
21540         * class.h, class.c: add a max_interface_id to MonoClass.
21541         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
21542         since it's used to do that. Added mono_type_type_from_obj().
21543         Make GetType() return NULL instead of segfaulting if the type was not
21544         found. Handle simple arrays in assQualifiedName.
21545         * object.h: add a struct to represent an Exception.
21546         * reflection.c: output call convention in method signature.
21547         Add code to support P/Invoke methods and fixed offsets for fields.
21548
21549 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
21550
21551         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
21552         the value.
21553         * icall.c: use mono_array_addr instead of array->vector: fixes the
21554         reflection image writing.
21555         * reflection.c: init call convention byte to 0 in method signature.
21556         Encode the property signature. Don't output property-related methods
21557         twice. Really process the properties for a type (don't cast a field to
21558         a property, my mom always told me that).
21559         Fix 64 bit issues in pointer alignment in a different and more
21560         readable way.
21561
21562 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
21563
21564         * loader.h: Removed type class from MonoDefaults, added monotype
21565
21566         * loader.c: Loaded MonoType, removed loading of Type
21567
21568         * icall.c (my_mono_new_object): Now returns a System.MonoType,
21569         and fills in System.Type._impl with a RuntimeTypeHandle rather
21570         than the actual MonoClass *
21571
21572         (ves_icall_type_from_handle): change from type_class to
21573         monotype_class
21574
21575         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
21576         implemented
21577
21578         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
21579         implemented
21580
21581         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
21582
21583         (ves_icall_System_Reflection_Assembly_GetType): implemented
21584
21585         (ves_icall_System_MonoType_assQualifiedName): implemented
21586
21587         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
21588
21589 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
21590
21591         * assembly.c (mono_assembly_open): Implement a cache for the
21592         assemblies. 
21593
21594         (mono_assembly_close): only destroy the assembly when the last
21595         reference is gone.
21596         
21597 2001-11-09  Dick Porter  <dick@ximian.com>
21598
21599         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
21600
21601 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
21602
21603         * class.c (mono_class_metadata_init): bug fix: compute the right slot
21604
21605 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
21606
21607         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
21608         from Martin Weindel.
21609         * object.h: add mono_string_chars ().
21610
21611 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
21612
21613         * reflection.c (build_compressed_metadata): Eliminates warnings
21614         and uses 64-bit clean code.
21615
21616         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
21617         (mono_type_equal): Change signature to eliminate warnings.
21618
21619 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
21620
21621         * icall.c, loader.c: remove the internalcall array constructors.
21622         Changes to match the new MonoArray structure.
21623         * object.h, object.c: an array object doesn't allocate an extra
21624         vector. Add mono_array_new_full () to create jagged arrays easily.
21625
21626 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
21627
21628         * metadata.h, metadata.c: add mono_metadata_field_info () to
21629         retreive all the info about a field from vairous tables.
21630         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
21631         * class.h, class.c: augment MonoClassField with more info.
21632         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
21633         policy and load a field's RVA if needed.
21634
21635 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
21636
21637         * class.c (mono_class_metadata_init): create a trampoline for all
21638         virtual functions instead of actually compiling them.
21639
21640 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
21641
21642         * class.h, class.c: include name in MonoClassField.
21643         * class.c: fix fundamental type of System.Object and System.String.
21644         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
21645         tokens in ldtoken.
21646         * icall.c: remove internalcalls for the Reflection stuff that is now
21647         done in C# code.
21648         * loader.c: mono_field_from_memberref () implementation.
21649         * mono-endian.c: thinko (s/struct/union/g).
21650         * object.c, object.h: make the mono_string_* prototypes actually use
21651         MonoString instead of MonoObject.
21652         * reflection.c, reflection.h: updates for changes in the reflection
21653         code in corlib: we use C structures that map to the actual C# classes.
21654         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
21655         fat method header if needed and use the info from the ILGenerator for
21656         methods. Handle fields in types. Misc fixes.
21657
21658 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
21659
21660         * class.c (mono_class_metadata_init): bug fix: always allocate
21661         space for static class data
21662
21663 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
21664
21665         * class.c (mono_compute_relative_numbering): use relative
21666         numbering to support fast runtime type checks.
21667
21668 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
21669
21670         * class.c (mono_class_create_from_typeref): added debugging output
21671         to print class name when MonoDummy is returned instead of real class
21672
21673 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
21674
21675         * class.c (mono_class_metadata_init): interface offset table now
21676         contains pointers into the vtable - this is more efficient for the jit
21677
21678 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
21679
21680         * class.c (mono_class_metadata_init): use a temporary vtable (the
21681         old algorithm only worked for the interpreter, but not for the jit)
21682
21683 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
21684
21685         * loader.c (method_from_memberref): use mono_class_get to get the
21686         class of an array instead of using System.Array directly.
21687         (mono_get_method): also add MEMBERREF methods to the method cache
21688         which usefull for arrays.
21689
21690 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21691
21692         * pedump.c (arch_compile_method): added to compute vtable entry
21693
21694         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21695         number of interfaces.
21696         
21697         * class.h: merged MonoArrayClass into MonoClass
21698
21699         * class.c (mono_class_create_from_typedef): compute the vtable size and
21700         allocate space to include the vtable inside MonoClass
21701         (mono_class_metadata_init): initialize the vtable
21702
21703 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21704
21705         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21706         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21707         * image.c: endian fixes by Laurent Rioux.
21708         * object.h, object.c: rename MonoStringObject to MonoString and
21709         MonoArrayObject to MonoArray. Change some function names to conform to
21710         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21711         guint16* as first argument, so don't use char*.
21712         Provide macros to do the interesting things on arrays in a portable way.
21713         * threads-pthread.c: updates for the API changes and #include <sched.h>
21714         (required for sched_yield()).
21715         * icall.c: updates for the API changes above.
21716         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21717         platforms that need them.
21718
21719 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21720
21721         * class.c: set the correct type for all the fundamental
21722         type when loading the class.
21723
21724 2001-10-05  Dick Porter  <dick@ximian.com>
21725
21726         * threads-pthread.c (pthread_mutex_timedlock): Simple
21727         compatibility version for C libraries that lack this call.
21728
21729 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21730
21731         * class.c: MonoTypes stored in MonoClass are stored as
21732         fundamental MonoTypes when the class represents a
21733         fundamental type (System.Int32, ...).
21734         The TypeHandle return by ldtoken is a MonoType*.
21735         * icall.c: ves_icall_get_data_chunk () write out all the
21736         PE/COFF stuff. Implement ves_icall_define_method (),
21737         ves_icall_set_method_body (), ves_icall_type_from_handle ().
21738         * image.c: properly skip unknown streams.
21739         * loader.h, loader.c: add type_class to mono_defaults.
21740         * metadata.c, metadata.h: export compute_size () as
21741         mono_metadata_compute_size () with a better interface.
21742         Typo and C&P fixes.
21743         * pedump.c: don't try to print the entry point RVA if there is no entry point.
21744         * reflection.c, reflection.h: many cleanups, fixes, output method
21745         signatures and headers, typedef and typeref info, compress the metadata
21746         tables, output all the heap streams, cli header etc.
21747         * row-indexes.h: typo fixes.
21748
21749 2001-10-04  Dick Porter  <dick@ximian.com>
21750
21751         * object.h: Add a synchronisation mutex struct to MonoObject
21752
21753         * object.c (mono_new_object): Initialise the object
21754         synchronisation mutexes
21755
21756         * icall.c: System.Threading.Monitor internal calls
21757         
21758         * threads-pthread.h:
21759         * threads-pthread.c: System.Threading.Monitor internal calls
21760
21761         * threads-types.h: New file, includes the system-specific thread
21762         structures
21763         
21764         * threads-pthread-types.h:
21765         * threads-pthread-types.c: New files, handle pthread-specific
21766         synchronisation types
21767
21768         * threads-dummy-types.h: 
21769         * threads-dummy-types.c: New files of dummy support for
21770         thread-specific types
21771
21772         * metadata.c:
21773         * image.c:
21774         * pedump.c: include mono-endian.h not endian.h
21775         
21776         * Makefile.am: More threads files.
21777         Name mono-endian.h not endian.h
21778
21779 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
21780
21781         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
21782         stuff and implement a few more bits.
21783         * icall.c: a field needs to be dereferenced twice. Do not use the same
21784         name for two variables in the same scope.
21785         * image.c, image.h: cleanups.
21786
21787 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
21788
21789         * class.c (mono_class_metadata_init): bug fix: compute the right size
21790
21791 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
21792
21793         * icall.c: implemented some of the Reflection internalcalls.
21794         * image.c, image.h: start writing out the PE/COFF image.
21795         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
21796         that does the reverse than decode_blob_size ().
21797         * object.c: use mono_metadata_encode_value (). Move here
21798         temporary implementation of mono_string_to_utf8 ().
21799         * rawbuffer.c: make malloc_map static.
21800
21801 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21802
21803         * metadata.c: fix type comparison for arrays.
21804         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
21805         Added a couple of new classes to monodefaults.
21806         * icall.c: added a couple of Reflection-related internalcalls.
21807         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
21808         Added a byval_arg MonoType to MonoClass.
21809
21810 2001-09-28  Dick Porter  <dick@ximian.com>
21811
21812         * icall.c:
21813         * threads-pthread.h: 
21814         * threads-pthread.c: Implemented internal calls for
21815         LocalDataStoreSlot operations.  Applied mutexes around all shared
21816         data.  Reworked the thread creation and Start() operations to
21817         avoid a race condition.
21818         
21819         * threads-dummy.h:
21820         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
21821
21822 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
21823
21824         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
21825
21826 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
21827
21828         * class.c, loader.c: warn and return NULL instead of erroring out.
21829         * icall.c: added System.AppDomain::getCurDomain().
21830         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
21831
21832 2001-09-25  Dick Porter  <dick@ximian.com>
21833
21834         * threads-pthread.h:
21835         * threads-pthread.c: Implemented timed thread joining and added
21836         System.Threading.Thread::Join_internal internal call
21837
21838         * icall.c: Added System.Threading.Thread::Join_internal internal call
21839
21840         * threads-dummy.h:
21841         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
21842
21843 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
21844
21845         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
21846         mono_string_intern () to implement the semantics of the ldstr opcode
21847         and the interning of System.Strings.
21848         * icall.c: provide hooks to make String::IsIntern and String::Intern
21849         internalcalls.
21850
21851 2001-09-23  Dick Porter  <dick@ximian.com>
21852
21853         * threads-dummy.c: 
21854         * threads-dummy.h: New files of dummy threading routines
21855
21856         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21857         support code based on system specifics
21858
21859         Rename PTHREAD_LIBS to THREAD_LIBS
21860         
21861 2001-09-23  Dick Porter  <dick@ximian.com>
21862
21863         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21864         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21865         internal calls.
21866         (mono_thread_init): Set up a Thread object instance to return when
21867         the main thread calls Thread.CurrentThread
21868         (mono_thread_cleanup): Wait for all subthreads to exit
21869
21870         * icall.c: New internal calls for System.Threading.Thread::Sleep
21871         (including Schedule) and CurrentThread
21872
21873         * threads.h: New file, to insulate thread-specific stuff from the
21874         rest of the code
21875
21876 2001-09-21  Dick Porter  <dick@ximian.com>
21877
21878         * threads-pthread.h: 
21879         * threads-pthread.c: New file, for handling pthreads-style
21880         threading support.  Start() now starts a new thread and executes
21881         the ThreadStart delegate instance.
21882
21883         * icall.c: Added the internalcall for
21884         System.Threading.Thread::Start_internal
21885
21886         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21887
21888 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21889
21890         * loader.c: work around the different signatures for delegates
21891         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21892
21893 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21894
21895         * class.h, class.c: add mono_class_get_field_from_name ().
21896         * *: Fix C comments and other ANSI C issues.
21897
21898 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21899
21900         * endian.h, assembly.c: fix some endianness issues.
21901
21902 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21903
21904         * loader.h, load.c: add delegate_class to mono_defaults.
21905         Handle runtime provided methods in mono_get_method ().
21906
21907 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21908
21909         * loader.c (mono_get_method): use pinvoke for internal call
21910
21911         * icall.c: use pinvoke for internal call
21912
21913         * loader.c (method_from_memberref): set the method name
21914
21915 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21916
21917         * metadata.c: help the compiler generate better code for
21918         mono_class_from_mono_type ().
21919
21920 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21921
21922         * class.c (mono_class_metadata_init): delayed computing of the
21923         class size to mono_class_metadata_init ()
21924
21925 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21926
21927         * class.c, class.h: add an interfaces member to MonoClass.
21928         * image.c, image.h: add assembly_name field to MonoImage
21929         from the assembly table.
21930         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21931
21932 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21933
21934         * class.c: Handle Array in mono_class_from_mono_type ().
21935         * metadata.c, pedump.c: some endian fixes.
21936
21937 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21938
21939         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21940         * metadata.c: fix small problem introduced with the latest commit.
21941
21942 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21943
21944         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21945         We don't need a MonoMetadata pointer anymore to compare signatures in
21946         mono_metadata_signature_equal (), update callers.
21947         Reduced memory usage an number of allocations for MonoMethodHeader and
21948         MonoMethodSignature.
21949
21950 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21951
21952         * metadata.c: added compare for szarray.
21953
21954 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21955
21956         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21957         and add a couple more types to it and mono_defaults. Give an hint on
21958         classes that need implementing in our corlib and are referenced
21959         in mscorlib.
21960
21961 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21962
21963         * class.h, class.c: keep track if a class is also an Enum.
21964         * loader.c: Implement a couple more types for use in libffi
21965         marshalling. Gives better diagnostics when failing to dlopen
21966         a library. Set method->klass for P/Invoke methods, too.
21967
21968 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21969
21970         * class.c, class.h: add a MonoType this_arg to MonoClass that
21971         represents a pointer to an object of the class' type that
21972         can be used by the interpreter and later the type cache.
21973         Add best guess alignment info for valuetype objects.
21974
21975 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21976
21977         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21978         into MonoType: one less level of indirection and allocation and
21979         simplifies quite a bit of code. Added cache for MonoTypes that are
21980         used frequently, so that we don't need to allocate them all the time.
21981
21982 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21983
21984         * class.c (mono_class_create_from_typedef): System.Enum is also a
21985         value type, although it does not derive from System.ValueType
21986         (maybe a bug in the ms compiler?)
21987
21988         * metadata.c (mono_type_size): return the right size for value types
21989
21990         * loader.c (mono_get_method): only initialize method header if not abstract
21991
21992         * class.c (mono_class_from_mono_type): use mono_default values. 
21993
21994 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21995
21996         * *: use MonoClass pointers instead of <type_tokens>
21997         
21998         * class.h: new flag: metadata_inited.
21999
22000         * class.c (mono_class_metadata_init): impl.
22001         (mono_class_instance_size): impl.
22002         (mono_class_data_size): impl.
22003
22004 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
22005
22006         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
22007         MonoClass now has the name and name_space fields. 
22008         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
22009         mono_get_method () takes and optional MonoClass as argument.
22010         Removed mono_typedef_from_name() and added mono_class_token_from_name()
22011         instead that takes advantage of a map from class names to typedef
22012         tokens in MonoImage.
22013
22014 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
22015
22016         * metadata.c: zero is not a valid alignment boundary.
22017         Merge MONO_TYPE_VOID in default decoding code.
22018
22019 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
22020
22021         * image.h: merged MonoMetadata into MonoImage
22022
22023         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
22024         identify the type of elements.
22025
22026 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
22027
22028         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
22029         * cil-coff.h: split MonoMSDOSHeader and add size info.
22030         * image.c: add some consistency checks.
22031         * metadata.c: fix row size computation: one programmer
22032         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
22033         add explanation for the locator routine.
22034         Fix decoding of size in method header.
22035         
22036 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
22037
22038         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
22039         (g_concat_dir_and_file): Bring g_concat_dir_and_file
22040         function from gnome-libs.  This uses the right path separator
22041         based on the OS, and also works around a bug in some systems where
22042         a double slash is not allowed. 
22043         (default_assembly_name_resolver): Use g_concat_dir_and_file
22044         (mono_assembly_open): ditto.
22045
22046 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
22047
22048         * metadata.c (mono_metadata_signature_equal): impl.
22049
22050         * *: void is now a realy MonoType (instead of using NULL)
22051         
22052         * metadata.c (do_mono_metadata_parse_type): use
22053         mono_metadata_parse_type to parse void value.
22054
22055 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
22056
22057         * metadata.c, metadata.h: in the signature and method header store
22058         only the space required for holding the loca vars and incoming arguments.
22059
22060 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
22061
22062         * metadata.c (do_mono_metadata_parse_type): treat void like any
22063         other type (instead of assigning NULL);
22064
22065 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
22066
22067         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
22068
22069 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
22070
22071         * image.c (do_mono_image_open): added a cache for arrays.
22072
22073 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22074
22075         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
22076         decode a single column from a row in a metadata table and changes
22077         to take advantage of it in the typedef locator (gives a nice speed up).
22078         Store offset info for function params.
22079
22080 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
22081
22082         * image.h (MONO_IMAGE_IS_CORLIB): removed 
22083
22084 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
22085
22086         * assembly.c: how could mono_assembly_close () had ever worked?
22087         * metadata.c, metadata.h: provide offset info for local vars.
22088         Implement mono_type_size () to take care of alignment as well
22089         as size (it was mono_field_type_size in cli/class.c before).
22090
22091 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
22092
22093         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
22094
22095         * assembly.h (CORLIB_NAME): set to corlib.dll
22096
22097         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
22098
22099 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
22100
22101         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
22102         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
22103         tokentype.h: massive namespace cleanup.
22104
22105 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
22106
22107         * metadata.h, metadata.c: decode exception clauses when parsing method header.
22108
22109 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
22110
22111         * metadata.c (mono_metadata_free_type): added check for type !=
22112         NULL (void) before calling mono_metadata_free_type()
22113
22114 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
22115
22116         * metadata.h, row_indexes.h: added header with enumerations to use
22117         to index in the columns from tables in metadata and to decode coded
22118         tokens: we should start using this instead of embedding magic numbers
22119         all over the code.
22120
22121 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
22122
22123         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
22124         Move metadata_t info from cli_image_info_t to MonoImage, where
22125         it's easily accessible. Changed all the uses accordingly.
22126         Added the method and class caches to MonoImage.
22127         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
22128         and mono_metadata_decode_value () signature to be more consistent
22129         with the other parse functions (and simplify code). Taken advantage
22130         of zero-length array allocation with GCC. Removed reduntant (and
22131         wrong) MonoFieldType struct and use MonoParam instead. Changed
22132         mono_metadata_parse_field_type () to use common code for parsing.
22133         Added mono_metadata_typedef_from_field () and
22134         mono_metadata_typedef_from_method () to lookup a typedef index from a
22135         field or method token.
22136         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
22137
22138 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
22139
22140         * metadata.c (mono_metadata_parse_field_type): Implement. 
22141         (do_mono_metadata_parse_type): Split engine from
22142         mono_metadata_parse_type, so that we can create smaller structures
22143         for things that just have one pointer to the MonoType (look at
22144         the MonoFieldType)
22145
22146 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
22147
22148         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
22149         as Jan Gray found out, it is incorrect. 
22150
22151 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
22152
22153         * assembly.c: Implement asssembly loading.  This loads an image
22154         and loads all the referenced assemblies.  Come to think of it, we
22155         could always do lazy loading of the assemblies. 
22156
22157         * image.c (mono_image_open): Keep loaded images in a hashtable.
22158
22159         * image.h (MonoImage): Add reference count.
22160
22161 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
22162
22163         * assembly.c (mono_assembly_open): Keep track of the file name in
22164         case the assembly has no ASSEMBLY table.
22165
22166         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
22167         from get.c here.
22168
22169 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
22170
22171         * metadata.c, metadata.h: decode local vars in method header
22172         parse function. Change callers accordingly.
22173
22174 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
22175
22176         * metadata.h, cil-coff.h: protect against multiple inclusion.
22177         Added some new structures to hold information decoded from metadata:
22178         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
22179         and relevant decoding/free functions.
22180         * metadata.c: implement decoding functions. Add warning for out of bounds
22181         index in mono_metadata_locate(). Implement mono_get_method () to retreive
22182         all the info about a method signature and invocation. Remove check on
22183         uninitialized local var in parse_mh() and fix memory leak.
22184
22185 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
22186
22187         * metadata.h: More macros.
22188
22189         * tokentype.h: New file.
22190
22191 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
22192
22193         * assembly.c: added a consistency check and initialize
22194         some structures with g_new0().
22195         * metadata.c: fixed a couple more bugs in table size computation
22196         and add other checks for out-of bound access to metadata.
22197
22198 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
22199
22200         * metatada.c: fix bugs computing table sizes. Spew a
22201         warning when index in string heap is out of bounds.
22202
22203 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
22204
22205         * metadata.h: Add a couple of macros to manipulate tokens. 
22206
22207 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
22208
22209         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
22210         cli_section_tables).
22211
22212 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
22213
22214         * metadata.c (mono_metadata_user_string): New function, provides
22215         access to the UserString heap. 
22216
22217 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
22218
22219         * metadata.c: Add inline documentation.
22220
22221 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
22222
22223         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
22224         files. 
22225
22226 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
22227
22228         * typeattr.h: New file, TypeAttribute flags. 
22229
22230 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
22231
22232         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
22233         mono_assembly_ensure_section): Section loading code.
22234         (load_section_tables): Load the sections.
22235
22236         * mono/metadata/metadata.c (mono_metadata_locate_token,
22237         mono_metadata_locate): Functions to locate the information
22238         definition given a token or a table and an index.
22239         (mono_metadata_compute_table_bases): New.
22240         (compute_size): New function to compute the sizes of the various
22241         tables.
22242
22243         * mono/metadata/metadata.h: Finish listing the different index
22244         types. 
22245
22246         * mono/metadata/pedump.c: Improve to dump new information.
22247
22248 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
22249
22250         * mono/metadata/metadata.c: Entered all the tables matching
22251         Beta2. 
22252
22253         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
22254
22255
22256